diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/CHANGELOG.md b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/CHANGELOG.md index d2d030a75f7c..f142052a9c66 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/CHANGELOG.md +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/CHANGELOG.md @@ -1,7 +1,11 @@ # Release History -## 1.0.0-preview.11 (Unreleased) - +## 1.0.0-preview.11 (2021-10-05) +- Upgrade to [package-artifacts-composite-v1](https://github.com/Azure/azure-rest-api-specs/blob/bee724836ffdeb5458274037dc75f4d43576b5e3/specification/synapse/data-plane/readme.md#tag-package-artifacts-composite-v1) +- Added `SparkConfigurationClient`, `KqlScriptsClient` and associated support types. +- Update type of many modles from string to object +- `SparkJobDefinition`, `Notebook` and `SqlScript` now has a folder property +- `SqlScript` now has poolName and databaseName properties ## 1.0.0-preview.10 (2021-05-13) ### Key Bug Fixes diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/api/Azure.Analytics.Synapse.Artifacts.netstandard2.0.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/api/Azure.Analytics.Synapse.Artifacts.netstandard2.0.cs index aadd185bfc4b..23a2fa418747 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/api/Azure.Analytics.Synapse.Artifacts.netstandard2.0.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/api/Azure.Analytics.Synapse.Artifacts.netstandard2.0.cs @@ -2,10 +2,11 @@ namespace Azure.Analytics.Synapse.Artifacts { public partial class ArtifactsClientOptions : Azure.Core.ClientOptions { - public ArtifactsClientOptions(Azure.Analytics.Synapse.Artifacts.ArtifactsClientOptions.ServiceVersion version = Azure.Analytics.Synapse.Artifacts.ArtifactsClientOptions.ServiceVersion.V2019_06_01_preview) { } + public ArtifactsClientOptions(Azure.Analytics.Synapse.Artifacts.ArtifactsClientOptions.ServiceVersion version = Azure.Analytics.Synapse.Artifacts.ArtifactsClientOptions.ServiceVersion.V2021_06_01_preview) { } public enum ServiceVersion { - V2019_06_01_preview = 1, + V2020_12_01 = 1, + V2021_06_01_preview = 2, } } public partial class BigDataPoolsClient @@ -167,6 +168,61 @@ public IntegrationRuntimesClient(System.Uri endpoint, Azure.Core.TokenCredential public virtual Azure.Response List(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public virtual System.Threading.Tasks.Task> ListAsync(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } } + public partial class KqlScriptClient + { + protected KqlScriptClient() { } + public KqlScriptClient(System.Uri endpoint, Azure.Core.TokenCredential credential, Azure.Analytics.Synapse.Artifacts.ArtifactsClientOptions options = null) { } + public virtual Azure.Response GetByName(string kqlScriptName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual System.Threading.Tasks.Task> GetByNameAsync(string kqlScriptName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual Azure.Analytics.Synapse.Artifacts.KqlScriptCreateOrUpdateOperation StartCreateOrUpdate(string kqlScriptName, Azure.Analytics.Synapse.Artifacts.Models.KqlScriptResource kqlScript, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual System.Threading.Tasks.Task StartCreateOrUpdateAsync(string kqlScriptName, Azure.Analytics.Synapse.Artifacts.Models.KqlScriptResource kqlScript, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual Azure.Analytics.Synapse.Artifacts.KqlScriptDeleteByNameOperation StartDeleteByName(string kqlScriptName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual System.Threading.Tasks.Task StartDeleteByNameAsync(string kqlScriptName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual Azure.Analytics.Synapse.Artifacts.KqlScriptRenameOperation StartRename(string kqlScriptName, Azure.Analytics.Synapse.Artifacts.Models.ArtifactRenameRequest renameRequest, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual System.Threading.Tasks.Task StartRenameAsync(string kqlScriptName, Azure.Analytics.Synapse.Artifacts.Models.ArtifactRenameRequest renameRequest, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + } + public partial class KqlScriptCreateOrUpdateOperation : Azure.Operation + { + protected KqlScriptCreateOrUpdateOperation() { } + public override bool HasCompleted { get { throw null; } } + public override bool HasValue { get { throw null; } } + public override string Id { get { throw null; } } + public override Azure.Analytics.Synapse.Artifacts.Models.KqlScriptResource Value { get { throw null; } } + public override Azure.Response GetRawResponse() { throw null; } + public override Azure.Response UpdateStatus(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public override System.Threading.Tasks.ValueTask UpdateStatusAsync(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public override System.Threading.Tasks.ValueTask> WaitForCompletionAsync(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public override System.Threading.Tasks.ValueTask> WaitForCompletionAsync(System.TimeSpan pollingInterval, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + } + public partial class KqlScriptDeleteByNameOperation : Azure.Operation + { + protected KqlScriptDeleteByNameOperation() { } + public override bool HasCompleted { get { throw null; } } + public override string Id { get { throw null; } } + public override Azure.Response GetRawResponse() { throw null; } + public override Azure.Response UpdateStatus(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public override System.Threading.Tasks.ValueTask UpdateStatusAsync(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public override System.Threading.Tasks.ValueTask WaitForCompletionResponseAsync(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public override System.Threading.Tasks.ValueTask WaitForCompletionResponseAsync(System.TimeSpan pollingInterval, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + } + public partial class KqlScriptRenameOperation : Azure.Operation + { + protected KqlScriptRenameOperation() { } + public override bool HasCompleted { get { throw null; } } + public override string Id { get { throw null; } } + public override Azure.Response GetRawResponse() { throw null; } + public override Azure.Response UpdateStatus(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public override System.Threading.Tasks.ValueTask UpdateStatusAsync(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public override System.Threading.Tasks.ValueTask WaitForCompletionResponseAsync(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public override System.Threading.Tasks.ValueTask WaitForCompletionResponseAsync(System.TimeSpan pollingInterval, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + } + public partial class KqlScriptsClient + { + protected KqlScriptsClient() { } + public KqlScriptsClient(System.Uri endpoint, Azure.Core.TokenCredential credential, Azure.Analytics.Synapse.Artifacts.ArtifactsClientOptions options = null) { } + public virtual Azure.Pageable GetAll(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual Azure.AsyncPageable GetAllAsync(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + } public partial class LibraryClient { protected LibraryClient() { } @@ -327,6 +383,13 @@ protected NotebookDeleteNotebookOperation() { } public override System.Threading.Tasks.ValueTask WaitForCompletionResponseAsync(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public override System.Threading.Tasks.ValueTask WaitForCompletionResponseAsync(System.TimeSpan pollingInterval, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } } + public partial class NotebookOperationResultClient + { + protected NotebookOperationResultClient() { } + public NotebookOperationResultClient(System.Uri endpoint, Azure.Core.TokenCredential credential, Azure.Analytics.Synapse.Artifacts.ArtifactsClientOptions options = null) { } + public virtual Azure.Response Get(string operationId, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual System.Threading.Tasks.Task GetAsync(string operationId, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + } public partial class NotebookRenameNotebookOperation : Azure.Operation { protected NotebookRenameNotebookOperation() { } @@ -403,6 +466,56 @@ public PipelineRunClient(System.Uri endpoint, Azure.Core.TokenCredential credent public virtual Azure.Response QueryPipelineRunsByWorkspace(Azure.Analytics.Synapse.Artifacts.Models.RunFilterParameters filterParameters, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public virtual System.Threading.Tasks.Task> QueryPipelineRunsByWorkspaceAsync(Azure.Analytics.Synapse.Artifacts.Models.RunFilterParameters filterParameters, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } } + public partial class SparkConfigurationClient + { + protected SparkConfigurationClient() { } + public SparkConfigurationClient(System.Uri endpoint, Azure.Core.TokenCredential credential, Azure.Analytics.Synapse.Artifacts.ArtifactsClientOptions options = null) { } + public virtual Azure.Response GetSparkConfiguration(string sparkConfigurationName, string ifNoneMatch = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual System.Threading.Tasks.Task> GetSparkConfigurationAsync(string sparkConfigurationName, string ifNoneMatch = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual Azure.Pageable GetSparkConfigurationsByWorkspace(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual Azure.AsyncPageable GetSparkConfigurationsByWorkspaceAsync(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual Azure.Analytics.Synapse.Artifacts.SparkConfigurationCreateOrUpdateSparkConfigurationOperation StartCreateOrUpdateSparkConfiguration(string sparkConfigurationName, Azure.Analytics.Synapse.Artifacts.Models.SparkConfigurationResource sparkConfiguration, string ifMatch = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual System.Threading.Tasks.Task StartCreateOrUpdateSparkConfigurationAsync(string sparkConfigurationName, Azure.Analytics.Synapse.Artifacts.Models.SparkConfigurationResource sparkConfiguration, string ifMatch = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual Azure.Analytics.Synapse.Artifacts.SparkConfigurationDeleteSparkConfigurationOperation StartDeleteSparkConfiguration(string sparkConfigurationName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual System.Threading.Tasks.Task StartDeleteSparkConfigurationAsync(string sparkConfigurationName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual Azure.Analytics.Synapse.Artifacts.SparkConfigurationRenameSparkConfigurationOperation StartRenameSparkConfiguration(string sparkConfigurationName, Azure.Analytics.Synapse.Artifacts.Models.ArtifactRenameRequest request, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual System.Threading.Tasks.Task StartRenameSparkConfigurationAsync(string sparkConfigurationName, Azure.Analytics.Synapse.Artifacts.Models.ArtifactRenameRequest request, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + } + public partial class SparkConfigurationCreateOrUpdateSparkConfigurationOperation : Azure.Operation + { + protected SparkConfigurationCreateOrUpdateSparkConfigurationOperation() { } + public override bool HasCompleted { get { throw null; } } + public override bool HasValue { get { throw null; } } + public override string Id { get { throw null; } } + public override Azure.Analytics.Synapse.Artifacts.Models.SparkConfigurationResource Value { get { throw null; } } + public override Azure.Response GetRawResponse() { throw null; } + public override Azure.Response UpdateStatus(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public override System.Threading.Tasks.ValueTask UpdateStatusAsync(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public override System.Threading.Tasks.ValueTask> WaitForCompletionAsync(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public override System.Threading.Tasks.ValueTask> WaitForCompletionAsync(System.TimeSpan pollingInterval, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + } + public partial class SparkConfigurationDeleteSparkConfigurationOperation : Azure.Operation + { + protected SparkConfigurationDeleteSparkConfigurationOperation() { } + public override bool HasCompleted { get { throw null; } } + public override string Id { get { throw null; } } + public override Azure.Response GetRawResponse() { throw null; } + public override Azure.Response UpdateStatus(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public override System.Threading.Tasks.ValueTask UpdateStatusAsync(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public override System.Threading.Tasks.ValueTask WaitForCompletionResponseAsync(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public override System.Threading.Tasks.ValueTask WaitForCompletionResponseAsync(System.TimeSpan pollingInterval, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + } + public partial class SparkConfigurationRenameSparkConfigurationOperation : Azure.Operation + { + protected SparkConfigurationRenameSparkConfigurationOperation() { } + public override bool HasCompleted { get { throw null; } } + public override string Id { get { throw null; } } + public override Azure.Response GetRawResponse() { throw null; } + public override Azure.Response UpdateStatus(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public override System.Threading.Tasks.ValueTask UpdateStatusAsync(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public override System.Threading.Tasks.ValueTask WaitForCompletionResponseAsync(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public override System.Threading.Tasks.ValueTask WaitForCompletionResponseAsync(System.TimeSpan pollingInterval, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + } public partial class SparkJobDefinitionClient { protected SparkJobDefinitionClient() { } @@ -720,12 +833,6 @@ public partial class AddDataFlowToDebugSessionResponse internal AddDataFlowToDebugSessionResponse() { } public string JobVersion { get { throw null; } } } - public partial class AdditionalColumns - { - public AdditionalColumns() { } - public object Name { get { throw null; } set { } } - public object Value { get { throw null; } set { } } - } public partial class AmazonMWSLinkedService : Azure.Analytics.Synapse.Artifacts.Models.LinkedService { public AmazonMWSLinkedService(object endpoint, object marketplaceID, object sellerID, object accessKeyId) { } @@ -750,6 +857,60 @@ public partial class AmazonMWSSource : Azure.Analytics.Synapse.Artifacts.Models. public AmazonMWSSource() { } public object Query { get { throw null; } set { } } } + public partial class AmazonRdsForOracleLinkedService : Azure.Analytics.Synapse.Artifacts.Models.LinkedService + { + public AmazonRdsForOracleLinkedService(object connectionString) { } + public object ConnectionString { get { throw null; } set { } } + public object EncryptedCredential { get { throw null; } set { } } + public Azure.Analytics.Synapse.Artifacts.Models.SecretBase Password { get { throw null; } set { } } + } + public partial class AmazonRdsForOraclePartitionSettings + { + public AmazonRdsForOraclePartitionSettings() { } + public object PartitionColumnName { get { throw null; } set { } } + public object PartitionLowerBound { get { throw null; } set { } } + public object PartitionNames { get { throw null; } set { } } + public object PartitionUpperBound { get { throw null; } set { } } + } + public partial class AmazonRdsForOracleSource : Azure.Analytics.Synapse.Artifacts.Models.CopySource + { + public AmazonRdsForOracleSource() { } + public object AdditionalColumns { get { throw null; } set { } } + public object OracleReaderQuery { get { throw null; } set { } } + public object PartitionOption { get { throw null; } set { } } + public Azure.Analytics.Synapse.Artifacts.Models.AmazonRdsForOraclePartitionSettings PartitionSettings { get { throw null; } set { } } + public object QueryTimeout { get { throw null; } set { } } + } + public partial class AmazonRdsForOracleTableDataset : Azure.Analytics.Synapse.Artifacts.Models.Dataset + { + public AmazonRdsForOracleTableDataset(Azure.Analytics.Synapse.Artifacts.Models.LinkedServiceReference linkedServiceName) : base (default(Azure.Analytics.Synapse.Artifacts.Models.LinkedServiceReference)) { } + public object SchemaTypePropertiesSchema { get { throw null; } set { } } + public object Table { get { throw null; } set { } } + } + public partial class AmazonRdsForSqlServerLinkedService : Azure.Analytics.Synapse.Artifacts.Models.LinkedService + { + public AmazonRdsForSqlServerLinkedService(object connectionString) { } + public object ConnectionString { get { throw null; } set { } } + public object EncryptedCredential { get { throw null; } set { } } + public Azure.Analytics.Synapse.Artifacts.Models.SecretBase Password { get { throw null; } set { } } + public object UserName { get { throw null; } set { } } + } + public partial class AmazonRdsForSqlServerSource : Azure.Analytics.Synapse.Artifacts.Models.TabularSource + { + public AmazonRdsForSqlServerSource() { } + public object PartitionOption { get { throw null; } set { } } + public Azure.Analytics.Synapse.Artifacts.Models.SqlPartitionSettings PartitionSettings { get { throw null; } set { } } + public object ProduceAdditionalTypes { get { throw null; } set { } } + public object SqlReaderQuery { get { throw null; } set { } } + public object SqlReaderStoredProcedureName { get { throw null; } set { } } + public System.Collections.Generic.IDictionary StoredProcedureParameters { get { throw null; } } + } + public partial class AmazonRdsForSqlServerTableDataset : Azure.Analytics.Synapse.Artifacts.Models.Dataset + { + public AmazonRdsForSqlServerTableDataset(Azure.Analytics.Synapse.Artifacts.Models.LinkedServiceReference linkedServiceName) : base (default(Azure.Analytics.Synapse.Artifacts.Models.LinkedServiceReference)) { } + public object SchemaTypePropertiesSchema { get { throw null; } set { } } + public object Table { get { throw null; } set { } } + } public partial class AmazonRedshiftLinkedService : Azure.Analytics.Synapse.Artifacts.Models.LinkedService { public AmazonRedshiftLinkedService(object server, object database) { } @@ -834,7 +995,7 @@ public static partial class ArtifactsModelFactory public static Azure.Analytics.Synapse.Artifacts.Models.AzureEntityResource AzureEntityResource(string id = null, string name = null, string type = null, string etag = null) { throw null; } public static Azure.Analytics.Synapse.Artifacts.Models.BigDataPoolResourceInfo BigDataPoolResourceInfo(string id = null, string name = null, string type = null, System.Collections.Generic.IDictionary tags = null, string location = null, string provisioningState = null, Azure.Analytics.Synapse.Artifacts.Models.AutoScaleProperties autoScale = null, System.DateTimeOffset? creationDate = default(System.DateTimeOffset?), Azure.Analytics.Synapse.Artifacts.Models.AutoPauseProperties autoPause = null, bool? isComputeIsolationEnabled = default(bool?), bool? sessionLevelPackagesEnabled = default(bool?), int? cacheSize = default(int?), Azure.Analytics.Synapse.Artifacts.Models.DynamicExecutorAllocation dynamicExecutorAllocation = null, string sparkEventsFolder = null, int? nodeCount = default(int?), Azure.Analytics.Synapse.Artifacts.Models.LibraryRequirements libraryRequirements = null, System.Collections.Generic.IEnumerable customLibraries = null, Azure.Analytics.Synapse.Artifacts.Models.LibraryRequirements sparkConfigProperties = null, string sparkVersion = null, string defaultSparkLogFolder = null, Azure.Analytics.Synapse.Artifacts.Models.NodeSize? nodeSize = default(Azure.Analytics.Synapse.Artifacts.Models.NodeSize?), Azure.Analytics.Synapse.Artifacts.Models.NodeSizeFamily? nodeSizeFamily = default(Azure.Analytics.Synapse.Artifacts.Models.NodeSizeFamily?), System.DateTimeOffset? lastSucceededTimestamp = default(System.DateTimeOffset?)) { throw null; } public static Azure.Analytics.Synapse.Artifacts.Models.BigDataPoolResourceInfoListResult BigDataPoolResourceInfoListResult(string nextLink = null, System.Collections.Generic.IEnumerable value = null) { throw null; } - public static Azure.Analytics.Synapse.Artifacts.Models.CloudError CloudError(string code = null, string message = null, string target = null, System.Collections.Generic.IEnumerable details = null) { throw null; } + public static Azure.Analytics.Synapse.Artifacts.Models.CloudErrorAutoGenerated CloudErrorAutoGenerated(string code = null, string message = null, string target = null, System.Collections.Generic.IEnumerable details = null) { throw null; } public static Azure.Analytics.Synapse.Artifacts.Models.CreateDataFlowDebugSessionResponse CreateDataFlowDebugSessionResponse(string sessionId = null) { throw null; } public static Azure.Analytics.Synapse.Artifacts.Models.CreateRunResponse CreateRunResponse(string runId = null) { throw null; } public static Azure.Analytics.Synapse.Artifacts.Models.CustomerManagedKeyDetails CustomerManagedKeyDetails(string status = null, Azure.Analytics.Synapse.Artifacts.Models.WorkspaceKeyDetails key = null) { throw null; } @@ -851,7 +1012,7 @@ public static partial class ArtifactsModelFactory public static Azure.Analytics.Synapse.Artifacts.Models.ManagedIdentity ManagedIdentity(string principalId = null, System.Guid? tenantId = default(System.Guid?), Azure.Analytics.Synapse.Artifacts.Models.ResourceIdentityType? type = default(Azure.Analytics.Synapse.Artifacts.Models.ResourceIdentityType?)) { throw null; } public static Azure.Analytics.Synapse.Artifacts.Models.ManagedIntegrationRuntime ManagedIntegrationRuntime(Azure.Analytics.Synapse.Artifacts.Models.IntegrationRuntimeType type = default(Azure.Analytics.Synapse.Artifacts.Models.IntegrationRuntimeType), string description = null, System.Collections.Generic.IDictionary additionalProperties = null, Azure.Analytics.Synapse.Artifacts.Models.IntegrationRuntimeState? state = default(Azure.Analytics.Synapse.Artifacts.Models.IntegrationRuntimeState?), Azure.Analytics.Synapse.Artifacts.Models.ManagedVirtualNetworkReference managedVirtualNetwork = null, Azure.Analytics.Synapse.Artifacts.Models.IntegrationRuntimeComputeProperties computeProperties = null, Azure.Analytics.Synapse.Artifacts.Models.IntegrationRuntimeSsisProperties ssisProperties = null) { throw null; } public static Azure.Analytics.Synapse.Artifacts.Models.NotebookResource NotebookResource(string id = null, string name = null, string type = null, string etag = null, Azure.Analytics.Synapse.Artifacts.Models.Notebook properties = null) { throw null; } - public static Azure.Analytics.Synapse.Artifacts.Models.OperationResult OperationResult(string status = null, string code = null, string message = null, string target = null, System.Collections.Generic.IEnumerable details = null) { throw null; } + public static Azure.Analytics.Synapse.Artifacts.Models.OperationResult OperationResult(string status = null, string code = null, string message = null, string target = null, System.Collections.Generic.IEnumerable details = null) { throw null; } public static Azure.Analytics.Synapse.Artifacts.Models.PipelineRun PipelineRun(string runId = null, string runGroupId = null, bool? isLatest = default(bool?), string pipelineName = null, System.Collections.Generic.IReadOnlyDictionary parameters = null, Azure.Analytics.Synapse.Artifacts.Models.PipelineRunInvokedBy invokedBy = null, System.DateTimeOffset? lastUpdated = default(System.DateTimeOffset?), System.DateTimeOffset? runStart = default(System.DateTimeOffset?), System.DateTimeOffset? runEnd = default(System.DateTimeOffset?), int? durationInMs = default(int?), string status = null, string message = null, System.Collections.Generic.IReadOnlyDictionary additionalProperties = null) { throw null; } public static Azure.Analytics.Synapse.Artifacts.Models.PipelineRunInvokedBy PipelineRunInvokedBy(string name = null, string id = null, string invokedByType = null) { throw null; } public static Azure.Analytics.Synapse.Artifacts.Models.PipelineRunsQueryResponse PipelineRunsQueryResponse(System.Collections.Generic.IEnumerable value = null, string continuationToken = null) { throw null; } @@ -860,7 +1021,7 @@ public static partial class ArtifactsModelFactory public static Azure.Analytics.Synapse.Artifacts.Models.PrivateLinkServiceConnectionState PrivateLinkServiceConnectionState(string status = null, string description = null, string actionsRequired = null) { throw null; } public static Azure.Analytics.Synapse.Artifacts.Models.RerunTriggerListResponse RerunTriggerListResponse(System.Collections.Generic.IEnumerable value = null, string nextLink = null) { throw null; } public static Azure.Analytics.Synapse.Artifacts.Models.Resource Resource(string id = null, string name = null, string type = null) { throw null; } - public static Azure.Analytics.Synapse.Artifacts.Models.SparkBatchJob SparkBatchJob(Azure.Analytics.Synapse.Artifacts.Models.SparkBatchJobState livyInfo = null, string name = null, string workspaceName = null, string sparkPoolName = null, string submitterName = null, string submitterId = null, string artifactId = null, Azure.Analytics.Synapse.Artifacts.Models.SparkJobType? jobType = default(Azure.Analytics.Synapse.Artifacts.Models.SparkJobType?), Azure.Analytics.Synapse.Artifacts.Models.SparkBatchJobResultType? result = default(Azure.Analytics.Synapse.Artifacts.Models.SparkBatchJobResultType?), Azure.Analytics.Synapse.Artifacts.Models.SparkScheduler scheduler = null, Azure.Analytics.Synapse.Artifacts.Models.SparkServicePlugin plugin = null, System.Collections.Generic.IEnumerable errors = null, System.Collections.Generic.IReadOnlyDictionary tags = null, int id = 0, string appId = null, System.Collections.Generic.IReadOnlyDictionary appInfo = null, string state = null, System.Collections.Generic.IEnumerable logLines = null) { throw null; } + public static Azure.Analytics.Synapse.Artifacts.Models.SparkBatchJob SparkBatchJob(Azure.Analytics.Synapse.Artifacts.Models.SparkBatchJobState livyInfo = null, string name = null, string workspaceName = null, string sparkPoolName = null, string submitterName = null, string submitterId = null, string artifactId = null, Azure.Analytics.Synapse.Artifacts.Models.SparkJobType? jobType = default(Azure.Analytics.Synapse.Artifacts.Models.SparkJobType?), Azure.Analytics.Synapse.Artifacts.Models.SparkBatchJobResultType? result = default(Azure.Analytics.Synapse.Artifacts.Models.SparkBatchJobResultType?), Azure.Analytics.Synapse.Artifacts.Models.SparkScheduler scheduler = null, Azure.Analytics.Synapse.Artifacts.Models.SparkServicePlugin plugin = null, System.Collections.Generic.IEnumerable errors = null, System.Collections.Generic.IReadOnlyDictionary tags = null, int id = 0, string appId = null, System.Collections.Generic.IReadOnlyDictionary appInfo = null, Azure.Analytics.Synapse.Artifacts.Models.LivyStates? state = default(Azure.Analytics.Synapse.Artifacts.Models.LivyStates?), System.Collections.Generic.IEnumerable logLines = null) { throw null; } public static Azure.Analytics.Synapse.Artifacts.Models.SparkBatchJobState SparkBatchJobState(System.DateTimeOffset? notStartedAt = default(System.DateTimeOffset?), System.DateTimeOffset? startingAt = default(System.DateTimeOffset?), System.DateTimeOffset? runningAt = default(System.DateTimeOffset?), System.DateTimeOffset? deadAt = default(System.DateTimeOffset?), System.DateTimeOffset? successAt = default(System.DateTimeOffset?), System.DateTimeOffset? terminatedAt = default(System.DateTimeOffset?), System.DateTimeOffset? recoveringAt = default(System.DateTimeOffset?), string currentState = null, Azure.Analytics.Synapse.Artifacts.Models.SparkRequest jobCreationRequest = null) { throw null; } public static Azure.Analytics.Synapse.Artifacts.Models.SparkRequest SparkRequest(string name = null, string file = null, string className = null, System.Collections.Generic.IEnumerable arguments = null, System.Collections.Generic.IEnumerable jars = null, System.Collections.Generic.IEnumerable pythonFiles = null, System.Collections.Generic.IEnumerable files = null, System.Collections.Generic.IEnumerable archives = null, System.Collections.Generic.IReadOnlyDictionary configuration = null, string driverMemory = null, int? driverCores = default(int?), string executorMemory = null, int? executorCores = default(int?), int? executorCount = default(int?)) { throw null; } public static Azure.Analytics.Synapse.Artifacts.Models.SparkScheduler SparkScheduler(System.DateTimeOffset? submittedAt = default(System.DateTimeOffset?), System.DateTimeOffset? scheduledAt = default(System.DateTimeOffset?), System.DateTimeOffset? endedAt = default(System.DateTimeOffset?), System.DateTimeOffset? cancellationRequestedAt = default(System.DateTimeOffset?), Azure.Analytics.Synapse.Artifacts.Models.SchedulerCurrentState? currentState = default(Azure.Analytics.Synapse.Artifacts.Models.SchedulerCurrentState?)) { throw null; } @@ -908,7 +1069,7 @@ public AvroSink() { } public partial class AvroSource : Azure.Analytics.Synapse.Artifacts.Models.CopySource { public AvroSource() { } - public System.Collections.Generic.IList AdditionalColumns { get { throw null; } } + public object AdditionalColumns { get { throw null; } set { } } public Azure.Analytics.Synapse.Artifacts.Models.StoreReadSettings StoreSettings { get { throw null; } set { } } } public partial class AvroWriteSettings : Azure.Analytics.Synapse.Artifacts.Models.FormatWriteSettings @@ -998,6 +1159,7 @@ public partial class AzureBlobStorageLinkedService : Azure.Analytics.Synapse.Art { public AzureBlobStorageLinkedService() { } public Azure.Analytics.Synapse.Artifacts.Models.AzureKeyVaultSecretReference AccountKey { get { throw null; } set { } } + public string AccountKind { get { throw null; } set { } } public object AzureCloudType { get { throw null; } set { } } public object ConnectionString { get { throw null; } set { } } public string EncryptedCredential { get { throw null; } set { } } @@ -1100,7 +1262,7 @@ public AzureDataExplorerCommandActivity(string name, object command) : base (def } public partial class AzureDataExplorerLinkedService : Azure.Analytics.Synapse.Artifacts.Models.LinkedService { - public AzureDataExplorerLinkedService(object endpoint, object servicePrincipalId, Azure.Analytics.Synapse.Artifacts.Models.SecretBase servicePrincipalKey, object database, object tenant) { } + public AzureDataExplorerLinkedService(object endpoint, object database) { } public object Database { get { throw null; } set { } } public object Endpoint { get { throw null; } set { } } public object ServicePrincipalId { get { throw null; } set { } } @@ -1117,7 +1279,7 @@ public AzureDataExplorerSink() { } public partial class AzureDataExplorerSource : Azure.Analytics.Synapse.Artifacts.Models.CopySource { public AzureDataExplorerSource(object query) { } - public System.Collections.Generic.IList AdditionalColumns { get { throw null; } } + public object AdditionalColumns { get { throw null; } set { } } public object NoTruncation { get { throw null; } set { } } public object Query { get { throw null; } set { } } public object QueryTimeout { get { throw null; } set { } } @@ -1748,11 +1910,11 @@ public ChainingTrigger(Azure.Analytics.Synapse.Artifacts.Models.TriggerPipelineR public Azure.Analytics.Synapse.Artifacts.Models.TriggerPipelineReference Pipeline { get { throw null; } set { } } public string RunDimension { get { throw null; } set { } } } - public partial class CloudError + public partial class CloudErrorAutoGenerated { - internal CloudError() { } + internal CloudErrorAutoGenerated() { } public string Code { get { throw null; } } - public System.Collections.Generic.IReadOnlyList Details { get { throw null; } } + public System.Collections.Generic.IReadOnlyList Details { get { throw null; } } public string Message { get { throw null; } } public string Target { get { throw null; } } } @@ -1763,9 +1925,9 @@ public CommonDataServiceForAppsEntityDataset(Azure.Analytics.Synapse.Artifacts.M } public partial class CommonDataServiceForAppsLinkedService : Azure.Analytics.Synapse.Artifacts.Models.LinkedService { - public CommonDataServiceForAppsLinkedService(Azure.Analytics.Synapse.Artifacts.Models.DynamicsDeploymentType deploymentType, Azure.Analytics.Synapse.Artifacts.Models.DynamicsAuthenticationType authenticationType) { } - public Azure.Analytics.Synapse.Artifacts.Models.DynamicsAuthenticationType AuthenticationType { get { throw null; } set { } } - public Azure.Analytics.Synapse.Artifacts.Models.DynamicsDeploymentType DeploymentType { get { throw null; } set { } } + public CommonDataServiceForAppsLinkedService(object deploymentType, object authenticationType) { } + public object AuthenticationType { get { throw null; } set { } } + public object DeploymentType { get { throw null; } set { } } public object EncryptedCredential { get { throw null; } set { } } public object HostName { get { throw null; } set { } } public object OrganizationName { get { throw null; } set { } } @@ -1787,33 +1949,9 @@ public CommonDataServiceForAppsSink(Azure.Analytics.Synapse.Artifacts.Models.Dyn public partial class CommonDataServiceForAppsSource : Azure.Analytics.Synapse.Artifacts.Models.CopySource { public CommonDataServiceForAppsSource() { } - public System.Collections.Generic.IList AdditionalColumns { get { throw null; } } + public object AdditionalColumns { get { throw null; } set { } } public object Query { get { throw null; } set { } } } - [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] - public readonly partial struct CompressionCodec : System.IEquatable - { - private readonly object _dummy; - private readonly int _dummyPrimitive; - public CompressionCodec(string value) { throw null; } - public static Azure.Analytics.Synapse.Artifacts.Models.CompressionCodec Bzip2 { get { throw null; } } - public static Azure.Analytics.Synapse.Artifacts.Models.CompressionCodec Deflate { get { throw null; } } - public static Azure.Analytics.Synapse.Artifacts.Models.CompressionCodec Gzip { get { throw null; } } - public static Azure.Analytics.Synapse.Artifacts.Models.CompressionCodec Lz4 { get { throw null; } } - public static Azure.Analytics.Synapse.Artifacts.Models.CompressionCodec Snappy { get { throw null; } } - public static Azure.Analytics.Synapse.Artifacts.Models.CompressionCodec Tar { get { throw null; } } - public static Azure.Analytics.Synapse.Artifacts.Models.CompressionCodec TarGZip { get { throw null; } } - public static Azure.Analytics.Synapse.Artifacts.Models.CompressionCodec ZipDeflate { get { throw null; } } - public bool Equals(Azure.Analytics.Synapse.Artifacts.Models.CompressionCodec other) { throw null; } - [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] - public override bool Equals(object obj) { throw null; } - [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] - public override int GetHashCode() { throw null; } - public static bool operator ==(Azure.Analytics.Synapse.Artifacts.Models.CompressionCodec left, Azure.Analytics.Synapse.Artifacts.Models.CompressionCodec right) { throw null; } - public static implicit operator Azure.Analytics.Synapse.Artifacts.Models.CompressionCodec (string value) { throw null; } - public static bool operator !=(Azure.Analytics.Synapse.Artifacts.Models.CompressionCodec left, Azure.Analytics.Synapse.Artifacts.Models.CompressionCodec right) { throw null; } - public override string ToString() { throw null; } - } public partial class CompressionReadSettings { public CompressionReadSettings() { } @@ -1923,7 +2061,7 @@ public CosmosDbMongoDbApiSink() { } public partial class CosmosDbMongoDbApiSource : Azure.Analytics.Synapse.Artifacts.Models.CopySource { public CosmosDbMongoDbApiSource() { } - public System.Collections.Generic.IList AdditionalColumns { get { throw null; } } + public object AdditionalColumns { get { throw null; } set { } } public object BatchSize { get { throw null; } set { } } public Azure.Analytics.Synapse.Artifacts.Models.MongoDbCursorMethodsProperties CursorMethods { get { throw null; } set { } } public object Filter { get { throw null; } set { } } @@ -1942,7 +2080,7 @@ public CosmosDbSqlApiSink() { } public partial class CosmosDbSqlApiSource : Azure.Analytics.Synapse.Artifacts.Models.CopySource { public CosmosDbSqlApiSource() { } - public System.Collections.Generic.IList AdditionalColumns { get { throw null; } } + public object AdditionalColumns { get { throw null; } set { } } public object DetectDatetime { get { throw null; } set { } } public object PageSize { get { throw null; } set { } } public object PreferredRegions { get { throw null; } set { } } @@ -1968,12 +2106,10 @@ public CouchbaseTableDataset(Azure.Analytics.Synapse.Artifacts.Models.LinkedServ public partial class CreateDataFlowDebugSessionRequest { public CreateDataFlowDebugSessionRequest() { } - public int? ClusterTimeout { get { throw null; } set { } } - public Azure.Analytics.Synapse.Artifacts.Models.LinkedServiceResource DataBricksLinkedService { get { throw null; } set { } } - public string DataFlowName { get { throw null; } set { } } - public string ExistingClusterId { get { throw null; } set { } } - public string NewClusterName { get { throw null; } set { } } - public string NewClusterNodeType { get { throw null; } set { } } + public string ComputeType { get { throw null; } set { } } + public int? CoreCount { get { throw null; } set { } } + public Azure.Analytics.Synapse.Artifacts.Models.IntegrationRuntimeDebugResource IntegrationRuntime { get { throw null; } set { } } + public int? TimeToLive { get { throw null; } set { } } } public partial class CreateDataFlowDebugSessionResponse { @@ -2077,13 +2213,20 @@ public DataFlow() { } public static bool operator !=(Azure.Analytics.Synapse.Artifacts.Models.DataFlowComputeType left, Azure.Analytics.Synapse.Artifacts.Models.DataFlowComputeType right) { throw null; } public override string ToString() { throw null; } } + public partial class DataFlowDebugCommandPayload + { + public DataFlowDebugCommandPayload(string streamName) { } + public System.Collections.Generic.IList Columns { get { throw null; } } + public string Expression { get { throw null; } set { } } + public int? RowLimits { get { throw null; } set { } } + public string StreamName { get { throw null; } } + } public partial class DataFlowDebugCommandRequest { - public DataFlowDebugCommandRequest(string sessionId, object commandPayload) { } - public string CommandName { get { throw null; } set { } } - public object CommandPayload { get { throw null; } } - public string DataFlowName { get { throw null; } set { } } - public string SessionId { get { throw null; } } + public DataFlowDebugCommandRequest() { } + public Azure.Analytics.Synapse.Artifacts.Models.DataFlowDebugCommandType? Command { get { throw null; } set { } } + public Azure.Analytics.Synapse.Artifacts.Models.DataFlowDebugCommandPayload CommandPayload { get { throw null; } set { } } + public string SessionId { get { throw null; } set { } } } public partial class DataFlowDebugCommandResponse { @@ -2091,6 +2234,25 @@ internal DataFlowDebugCommandResponse() { } public string Data { get { throw null; } } public string Status { get { throw null; } } } + [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] + public readonly partial struct DataFlowDebugCommandType : System.IEquatable + { + private readonly object _dummy; + private readonly int _dummyPrimitive; + public DataFlowDebugCommandType(string value) { throw null; } + public static Azure.Analytics.Synapse.Artifacts.Models.DataFlowDebugCommandType ExecuteExpressionQuery { get { throw null; } } + public static Azure.Analytics.Synapse.Artifacts.Models.DataFlowDebugCommandType ExecutePreviewQuery { get { throw null; } } + public static Azure.Analytics.Synapse.Artifacts.Models.DataFlowDebugCommandType ExecuteStatisticsQuery { get { throw null; } } + public bool Equals(Azure.Analytics.Synapse.Artifacts.Models.DataFlowDebugCommandType other) { throw null; } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public override bool Equals(object obj) { throw null; } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public override int GetHashCode() { throw null; } + public static bool operator ==(Azure.Analytics.Synapse.Artifacts.Models.DataFlowDebugCommandType left, Azure.Analytics.Synapse.Artifacts.Models.DataFlowDebugCommandType right) { throw null; } + public static implicit operator Azure.Analytics.Synapse.Artifacts.Models.DataFlowDebugCommandType (string value) { throw null; } + public static bool operator !=(Azure.Analytics.Synapse.Artifacts.Models.DataFlowDebugCommandType left, Azure.Analytics.Synapse.Artifacts.Models.DataFlowDebugCommandType right) { throw null; } + public override string ToString() { throw null; } + } public partial class DataFlowDebugPackage { public DataFlowDebugPackage() { } @@ -2417,7 +2579,7 @@ public partial class DelimitedTextDataset : Azure.Analytics.Synapse.Artifacts.Mo { public DelimitedTextDataset(Azure.Analytics.Synapse.Artifacts.Models.LinkedServiceReference linkedServiceName) : base (default(Azure.Analytics.Synapse.Artifacts.Models.LinkedServiceReference)) { } public object ColumnDelimiter { get { throw null; } set { } } - public Azure.Analytics.Synapse.Artifacts.Models.CompressionCodec? CompressionCodec { get { throw null; } set { } } + public object CompressionCodec { get { throw null; } set { } } public object CompressionLevel { get { throw null; } set { } } public object EncodingName { get { throw null; } set { } } public object EscapeChar { get { throw null; } set { } } @@ -2442,7 +2604,7 @@ public DelimitedTextSink() { } public partial class DelimitedTextSource : Azure.Analytics.Synapse.Artifacts.Models.CopySource { public DelimitedTextSource() { } - public System.Collections.Generic.IList AdditionalColumns { get { throw null; } } + public object AdditionalColumns { get { throw null; } set { } } public Azure.Analytics.Synapse.Artifacts.Models.DelimitedTextReadSettings FormatSettings { get { throw null; } set { } } public Azure.Analytics.Synapse.Artifacts.Models.StoreReadSettings StoreSettings { get { throw null; } set { } } } @@ -2499,7 +2661,7 @@ public DocumentDbCollectionSink() { } public partial class DocumentDbCollectionSource : Azure.Analytics.Synapse.Artifacts.Models.CopySource { public DocumentDbCollectionSource() { } - public System.Collections.Generic.IList AdditionalColumns { get { throw null; } } + public object AdditionalColumns { get { throw null; } set { } } public object NestingSeparator { get { throw null; } set { } } public object Query { get { throw null; } set { } } public object QueryTimeout { get { throw null; } set { } } @@ -2540,25 +2702,6 @@ public partial class DynamicExecutorAllocation public DynamicExecutorAllocation() { } public bool? Enabled { get { throw null; } set { } } } - [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] - public readonly partial struct DynamicsAuthenticationType : System.IEquatable - { - private readonly object _dummy; - private readonly int _dummyPrimitive; - public DynamicsAuthenticationType(string value) { throw null; } - public static Azure.Analytics.Synapse.Artifacts.Models.DynamicsAuthenticationType AADServicePrincipal { get { throw null; } } - public static Azure.Analytics.Synapse.Artifacts.Models.DynamicsAuthenticationType Ifd { get { throw null; } } - public static Azure.Analytics.Synapse.Artifacts.Models.DynamicsAuthenticationType Office365 { get { throw null; } } - public bool Equals(Azure.Analytics.Synapse.Artifacts.Models.DynamicsAuthenticationType other) { throw null; } - [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] - public override bool Equals(object obj) { throw null; } - [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] - public override int GetHashCode() { throw null; } - public static bool operator ==(Azure.Analytics.Synapse.Artifacts.Models.DynamicsAuthenticationType left, Azure.Analytics.Synapse.Artifacts.Models.DynamicsAuthenticationType right) { throw null; } - public static implicit operator Azure.Analytics.Synapse.Artifacts.Models.DynamicsAuthenticationType (string value) { throw null; } - public static bool operator !=(Azure.Analytics.Synapse.Artifacts.Models.DynamicsAuthenticationType left, Azure.Analytics.Synapse.Artifacts.Models.DynamicsAuthenticationType right) { throw null; } - public override string ToString() { throw null; } - } public partial class DynamicsAXLinkedService : Azure.Analytics.Synapse.Artifacts.Models.LinkedService { public DynamicsAXLinkedService(object url, object servicePrincipalId, Azure.Analytics.Synapse.Artifacts.Models.SecretBase servicePrincipalKey, object tenant, object aadResourceId) { } @@ -2587,9 +2730,9 @@ public DynamicsCrmEntityDataset(Azure.Analytics.Synapse.Artifacts.Models.LinkedS } public partial class DynamicsCrmLinkedService : Azure.Analytics.Synapse.Artifacts.Models.LinkedService { - public DynamicsCrmLinkedService(Azure.Analytics.Synapse.Artifacts.Models.DynamicsDeploymentType deploymentType, Azure.Analytics.Synapse.Artifacts.Models.DynamicsAuthenticationType authenticationType) { } - public Azure.Analytics.Synapse.Artifacts.Models.DynamicsAuthenticationType AuthenticationType { get { throw null; } set { } } - public Azure.Analytics.Synapse.Artifacts.Models.DynamicsDeploymentType DeploymentType { get { throw null; } set { } } + public DynamicsCrmLinkedService(object deploymentType, object authenticationType) { } + public object AuthenticationType { get { throw null; } set { } } + public object DeploymentType { get { throw null; } set { } } public object EncryptedCredential { get { throw null; } set { } } public object HostName { get { throw null; } set { } } public object OrganizationName { get { throw null; } set { } } @@ -2611,27 +2754,9 @@ public DynamicsCrmSink(Azure.Analytics.Synapse.Artifacts.Models.DynamicsSinkWrit public partial class DynamicsCrmSource : Azure.Analytics.Synapse.Artifacts.Models.CopySource { public DynamicsCrmSource() { } - public System.Collections.Generic.IList AdditionalColumns { get { throw null; } } + public object AdditionalColumns { get { throw null; } set { } } public object Query { get { throw null; } set { } } } - [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] - public readonly partial struct DynamicsDeploymentType : System.IEquatable - { - private readonly object _dummy; - private readonly int _dummyPrimitive; - public DynamicsDeploymentType(string value) { throw null; } - public static Azure.Analytics.Synapse.Artifacts.Models.DynamicsDeploymentType Online { get { throw null; } } - public static Azure.Analytics.Synapse.Artifacts.Models.DynamicsDeploymentType OnPremisesWithIfd { get { throw null; } } - public bool Equals(Azure.Analytics.Synapse.Artifacts.Models.DynamicsDeploymentType other) { throw null; } - [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] - public override bool Equals(object obj) { throw null; } - [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] - public override int GetHashCode() { throw null; } - public static bool operator ==(Azure.Analytics.Synapse.Artifacts.Models.DynamicsDeploymentType left, Azure.Analytics.Synapse.Artifacts.Models.DynamicsDeploymentType right) { throw null; } - public static implicit operator Azure.Analytics.Synapse.Artifacts.Models.DynamicsDeploymentType (string value) { throw null; } - public static bool operator !=(Azure.Analytics.Synapse.Artifacts.Models.DynamicsDeploymentType left, Azure.Analytics.Synapse.Artifacts.Models.DynamicsDeploymentType right) { throw null; } - public override string ToString() { throw null; } - } public partial class DynamicsEntityDataset : Azure.Analytics.Synapse.Artifacts.Models.Dataset { public DynamicsEntityDataset(Azure.Analytics.Synapse.Artifacts.Models.LinkedServiceReference linkedServiceName) : base (default(Azure.Analytics.Synapse.Artifacts.Models.LinkedServiceReference)) { } @@ -2639,38 +2764,20 @@ public DynamicsEntityDataset(Azure.Analytics.Synapse.Artifacts.Models.LinkedServ } public partial class DynamicsLinkedService : Azure.Analytics.Synapse.Artifacts.Models.LinkedService { - public DynamicsLinkedService(Azure.Analytics.Synapse.Artifacts.Models.DynamicsDeploymentType deploymentType, Azure.Analytics.Synapse.Artifacts.Models.DynamicsAuthenticationType authenticationType) { } - public Azure.Analytics.Synapse.Artifacts.Models.DynamicsAuthenticationType AuthenticationType { get { throw null; } set { } } - public Azure.Analytics.Synapse.Artifacts.Models.DynamicsDeploymentType DeploymentType { get { throw null; } set { } } + public DynamicsLinkedService(object deploymentType, object authenticationType) { } + public object AuthenticationType { get { throw null; } set { } } + public object DeploymentType { get { throw null; } set { } } public object EncryptedCredential { get { throw null; } set { } } public object HostName { get { throw null; } set { } } public object OrganizationName { get { throw null; } set { } } public Azure.Analytics.Synapse.Artifacts.Models.SecretBase Password { get { throw null; } set { } } public object Port { get { throw null; } set { } } public Azure.Analytics.Synapse.Artifacts.Models.SecretBase ServicePrincipalCredential { get { throw null; } set { } } - public Azure.Analytics.Synapse.Artifacts.Models.DynamicsServicePrincipalCredentialType? ServicePrincipalCredentialType { get { throw null; } set { } } + public object ServicePrincipalCredentialType { get { throw null; } set { } } public object ServicePrincipalId { get { throw null; } set { } } public object ServiceUri { get { throw null; } set { } } public object Username { get { throw null; } set { } } } - [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] - public readonly partial struct DynamicsServicePrincipalCredentialType : System.IEquatable - { - private readonly object _dummy; - private readonly int _dummyPrimitive; - public DynamicsServicePrincipalCredentialType(string value) { throw null; } - public static Azure.Analytics.Synapse.Artifacts.Models.DynamicsServicePrincipalCredentialType ServicePrincipalCert { get { throw null; } } - public static Azure.Analytics.Synapse.Artifacts.Models.DynamicsServicePrincipalCredentialType ServicePrincipalKey { get { throw null; } } - public bool Equals(Azure.Analytics.Synapse.Artifacts.Models.DynamicsServicePrincipalCredentialType other) { throw null; } - [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] - public override bool Equals(object obj) { throw null; } - [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] - public override int GetHashCode() { throw null; } - public static bool operator ==(Azure.Analytics.Synapse.Artifacts.Models.DynamicsServicePrincipalCredentialType left, Azure.Analytics.Synapse.Artifacts.Models.DynamicsServicePrincipalCredentialType right) { throw null; } - public static implicit operator Azure.Analytics.Synapse.Artifacts.Models.DynamicsServicePrincipalCredentialType (string value) { throw null; } - public static bool operator !=(Azure.Analytics.Synapse.Artifacts.Models.DynamicsServicePrincipalCredentialType left, Azure.Analytics.Synapse.Artifacts.Models.DynamicsServicePrincipalCredentialType right) { throw null; } - public override string ToString() { throw null; } - } public partial class DynamicsSink : Azure.Analytics.Synapse.Artifacts.Models.CopySink { public DynamicsSink(Azure.Analytics.Synapse.Artifacts.Models.DynamicsSinkWriteBehavior writeBehavior) { } @@ -2698,7 +2805,7 @@ public DynamicsSink(Azure.Analytics.Synapse.Artifacts.Models.DynamicsSinkWriteBe public partial class DynamicsSource : Azure.Analytics.Synapse.Artifacts.Models.CopySource { public DynamicsSource() { } - public System.Collections.Generic.IList AdditionalColumns { get { throw null; } } + public object AdditionalColumns { get { throw null; } set { } } public object Query { get { throw null; } set { } } } public partial class EloquaLinkedService : Azure.Analytics.Synapse.Artifacts.Models.LinkedService @@ -2777,7 +2884,7 @@ public ExcelDataset(Azure.Analytics.Synapse.Artifacts.Models.LinkedServiceRefere public partial class ExcelSource : Azure.Analytics.Synapse.Artifacts.Models.CopySource { public ExcelSource() { } - public System.Collections.Generic.IList AdditionalColumns { get { throw null; } } + public object AdditionalColumns { get { throw null; } set { } } public Azure.Analytics.Synapse.Artifacts.Models.StoreReadSettings StoreSettings { get { throw null; } set { } } } public partial class ExecuteDataFlowActivity : Azure.Analytics.Synapse.Artifacts.Models.ExecutionActivity @@ -2915,7 +3022,7 @@ public FileSystemSink() { } public partial class FileSystemSource : Azure.Analytics.Synapse.Artifacts.Models.CopySource { public FileSystemSource() { } - public System.Collections.Generic.IList AdditionalColumns { get { throw null; } } + public object AdditionalColumns { get { throw null; } set { } } public object Recursive { get { throw null; } set { } } } public partial class FilterActivity : Azure.Analytics.Synapse.Artifacts.Models.ControlActivity @@ -3013,6 +3120,12 @@ public partial class GitHubAccessTokenResponse internal GitHubAccessTokenResponse() { } public string GitHubAccessToken { get { throw null; } } } + public partial class GitHubClientSecret + { + public GitHubClientSecret() { } + public string ByoaSecretAkvUrl { get { throw null; } set { } } + public string ByoaSecretName { get { throw null; } set { } } + } [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public readonly partial struct GoogleAdWordsAuthenticationType : System.IEquatable { @@ -3226,25 +3339,6 @@ public HdfsSource() { } public object Recursive { get { throw null; } set { } } } [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] - public readonly partial struct HdiNodeTypes : System.IEquatable - { - private readonly object _dummy; - private readonly int _dummyPrimitive; - public HdiNodeTypes(string value) { throw null; } - public static Azure.Analytics.Synapse.Artifacts.Models.HdiNodeTypes Headnode { get { throw null; } } - public static Azure.Analytics.Synapse.Artifacts.Models.HdiNodeTypes Workernode { get { throw null; } } - public static Azure.Analytics.Synapse.Artifacts.Models.HdiNodeTypes Zookeeper { get { throw null; } } - public bool Equals(Azure.Analytics.Synapse.Artifacts.Models.HdiNodeTypes other) { throw null; } - [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] - public override bool Equals(object obj) { throw null; } - [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] - public override int GetHashCode() { throw null; } - public static bool operator ==(Azure.Analytics.Synapse.Artifacts.Models.HdiNodeTypes left, Azure.Analytics.Synapse.Artifacts.Models.HdiNodeTypes right) { throw null; } - public static implicit operator Azure.Analytics.Synapse.Artifacts.Models.HdiNodeTypes (string value) { throw null; } - public static bool operator !=(Azure.Analytics.Synapse.Artifacts.Models.HdiNodeTypes left, Azure.Analytics.Synapse.Artifacts.Models.HdiNodeTypes right) { throw null; } - public override string ToString() { throw null; } - } - [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public readonly partial struct HDInsightActivityDebugInfoOption : System.IEquatable { private readonly object _dummy; @@ -3660,6 +3754,7 @@ public partial class IntegrationRuntimeDataFlowProperties { public IntegrationRuntimeDataFlowProperties() { } public System.Collections.Generic.IDictionary AdditionalProperties { get { throw null; } } + public bool? Cleanup { get { throw null; } set { } } public Azure.Analytics.Synapse.Artifacts.Models.DataFlowComputeType? ComputeType { get { throw null; } set { } } public int? CoreCount { get { throw null; } set { } } public int? TimeToLive { get { throw null; } set { } } @@ -3671,6 +3766,11 @@ public IntegrationRuntimeDataProxyProperties() { } public string Path { get { throw null; } set { } } public Azure.Analytics.Synapse.Artifacts.Models.EntityReference StagingLinkedService { get { throw null; } set { } } } + public partial class IntegrationRuntimeDebugResource : Azure.Analytics.Synapse.Artifacts.Models.SubResourceDebugResource + { + public IntegrationRuntimeDebugResource(Azure.Analytics.Synapse.Artifacts.Models.IntegrationRuntime properties) { } + public Azure.Analytics.Synapse.Artifacts.Models.IntegrationRuntime Properties { get { throw null; } set { } } + } [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public readonly partial struct IntegrationRuntimeEdition : System.IEquatable { @@ -3885,29 +3985,11 @@ public partial class JsonFormat : Azure.Analytics.Synapse.Artifacts.Models.Datas { public JsonFormat() { } public object EncodingName { get { throw null; } set { } } - public Azure.Analytics.Synapse.Artifacts.Models.JsonFormatFilePattern? FilePattern { get { throw null; } set { } } + public object FilePattern { get { throw null; } set { } } public object JsonNodeReference { get { throw null; } set { } } public object JsonPathDefinition { get { throw null; } set { } } public object NestingSeparator { get { throw null; } set { } } } - [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] - public readonly partial struct JsonFormatFilePattern : System.IEquatable - { - private readonly object _dummy; - private readonly int _dummyPrimitive; - public JsonFormatFilePattern(string value) { throw null; } - public static Azure.Analytics.Synapse.Artifacts.Models.JsonFormatFilePattern ArrayOfObjects { get { throw null; } } - public static Azure.Analytics.Synapse.Artifacts.Models.JsonFormatFilePattern SetOfObjects { get { throw null; } } - public bool Equals(Azure.Analytics.Synapse.Artifacts.Models.JsonFormatFilePattern other) { throw null; } - [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] - public override bool Equals(object obj) { throw null; } - [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] - public override int GetHashCode() { throw null; } - public static bool operator ==(Azure.Analytics.Synapse.Artifacts.Models.JsonFormatFilePattern left, Azure.Analytics.Synapse.Artifacts.Models.JsonFormatFilePattern right) { throw null; } - public static implicit operator Azure.Analytics.Synapse.Artifacts.Models.JsonFormatFilePattern (string value) { throw null; } - public static bool operator !=(Azure.Analytics.Synapse.Artifacts.Models.JsonFormatFilePattern left, Azure.Analytics.Synapse.Artifacts.Models.JsonFormatFilePattern right) { throw null; } - public override string ToString() { throw null; } - } public partial class JsonReadSettings : Azure.Analytics.Synapse.Artifacts.Models.FormatReadSettings { public JsonReadSettings() { } @@ -3922,32 +4004,45 @@ public JsonSink() { } public partial class JsonSource : Azure.Analytics.Synapse.Artifacts.Models.CopySource { public JsonSource() { } - public System.Collections.Generic.IList AdditionalColumns { get { throw null; } } + public object AdditionalColumns { get { throw null; } set { } } public Azure.Analytics.Synapse.Artifacts.Models.JsonReadSettings FormatSettings { get { throw null; } set { } } public Azure.Analytics.Synapse.Artifacts.Models.StoreReadSettings StoreSettings { get { throw null; } set { } } } - [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] - public readonly partial struct JsonWriteFilePattern : System.IEquatable - { - private readonly object _dummy; - private readonly int _dummyPrimitive; - public JsonWriteFilePattern(string value) { throw null; } - public static Azure.Analytics.Synapse.Artifacts.Models.JsonWriteFilePattern ArrayOfObjects { get { throw null; } } - public static Azure.Analytics.Synapse.Artifacts.Models.JsonWriteFilePattern SetOfObjects { get { throw null; } } - public bool Equals(Azure.Analytics.Synapse.Artifacts.Models.JsonWriteFilePattern other) { throw null; } - [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] - public override bool Equals(object obj) { throw null; } - [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] - public override int GetHashCode() { throw null; } - public static bool operator ==(Azure.Analytics.Synapse.Artifacts.Models.JsonWriteFilePattern left, Azure.Analytics.Synapse.Artifacts.Models.JsonWriteFilePattern right) { throw null; } - public static implicit operator Azure.Analytics.Synapse.Artifacts.Models.JsonWriteFilePattern (string value) { throw null; } - public static bool operator !=(Azure.Analytics.Synapse.Artifacts.Models.JsonWriteFilePattern left, Azure.Analytics.Synapse.Artifacts.Models.JsonWriteFilePattern right) { throw null; } - public override string ToString() { throw null; } - } public partial class JsonWriteSettings : Azure.Analytics.Synapse.Artifacts.Models.FormatWriteSettings { public JsonWriteSettings() { } - public Azure.Analytics.Synapse.Artifacts.Models.JsonWriteFilePattern? FilePattern { get { throw null; } set { } } + public object FilePattern { get { throw null; } set { } } + } + public partial class KqlScript + { + public KqlScript() { } + public Azure.Analytics.Synapse.Artifacts.Models.KqlScriptContent Content { get { throw null; } set { } } + } + public partial class KqlScriptContent + { + public KqlScriptContent() { } + public Azure.Analytics.Synapse.Artifacts.Models.KqlScriptContentCurrentConnection CurrentConnection { get { throw null; } set { } } + public Azure.Analytics.Synapse.Artifacts.Models.KqlScriptContentMetadata Metadata { get { throw null; } set { } } + public string Query { get { throw null; } set { } } + } + public partial class KqlScriptContentCurrentConnection + { + public KqlScriptContentCurrentConnection() { } + public string Name { get { throw null; } set { } } + public string Type { get { throw null; } set { } } + } + public partial class KqlScriptContentMetadata + { + public KqlScriptContentMetadata() { } + public string Language { get { throw null; } set { } } + } + public partial class KqlScriptResource + { + public KqlScriptResource() { } + public string Id { get { throw null; } set { } } + public string Name { get { throw null; } set { } } + public Azure.Analytics.Synapse.Artifacts.Models.KqlScript Properties { get { throw null; } set { } } + public string Type { get { throw null; } set { } } } public partial class LibraryInfo { @@ -3958,7 +4053,7 @@ public LibraryInfo() { } public string Path { get { throw null; } set { } } public string ProvisioningStatus { get { throw null; } } public string Type { get { throw null; } set { } } - public System.DateTimeOffset? UploadedTimestamp { get { throw null; } } + public System.DateTimeOffset? UploadedTimestamp { get { throw null; } set { } } } public partial class LibraryRequirements { @@ -4036,6 +4131,33 @@ public partial class LinkedServiceResource : Azure.Analytics.Synapse.Artifacts.M public LinkedServiceResource(Azure.Analytics.Synapse.Artifacts.Models.LinkedService properties) { } public Azure.Analytics.Synapse.Artifacts.Models.LinkedService Properties { get { throw null; } set { } } } + [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] + public readonly partial struct LivyStates : System.IEquatable + { + private readonly object _dummy; + private readonly int _dummyPrimitive; + public LivyStates(string value) { throw null; } + public static Azure.Analytics.Synapse.Artifacts.Models.LivyStates Busy { get { throw null; } } + public static Azure.Analytics.Synapse.Artifacts.Models.LivyStates Dead { get { throw null; } } + public static Azure.Analytics.Synapse.Artifacts.Models.LivyStates Error { get { throw null; } } + public static Azure.Analytics.Synapse.Artifacts.Models.LivyStates Idle { get { throw null; } } + public static Azure.Analytics.Synapse.Artifacts.Models.LivyStates Killed { get { throw null; } } + public static Azure.Analytics.Synapse.Artifacts.Models.LivyStates NotStarted { get { throw null; } } + public static Azure.Analytics.Synapse.Artifacts.Models.LivyStates Recovering { get { throw null; } } + public static Azure.Analytics.Synapse.Artifacts.Models.LivyStates Running { get { throw null; } } + public static Azure.Analytics.Synapse.Artifacts.Models.LivyStates ShuttingDown { get { throw null; } } + public static Azure.Analytics.Synapse.Artifacts.Models.LivyStates Starting { get { throw null; } } + public static Azure.Analytics.Synapse.Artifacts.Models.LivyStates Success { get { throw null; } } + public bool Equals(Azure.Analytics.Synapse.Artifacts.Models.LivyStates other) { throw null; } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public override bool Equals(object obj) { throw null; } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public override int GetHashCode() { throw null; } + public static bool operator ==(Azure.Analytics.Synapse.Artifacts.Models.LivyStates left, Azure.Analytics.Synapse.Artifacts.Models.LivyStates right) { throw null; } + public static implicit operator Azure.Analytics.Synapse.Artifacts.Models.LivyStates (string value) { throw null; } + public static bool operator !=(Azure.Analytics.Synapse.Artifacts.Models.LivyStates left, Azure.Analytics.Synapse.Artifacts.Models.LivyStates right) { throw null; } + public override string ToString() { throw null; } + } public partial class LogLocationSettings { public LogLocationSettings(Azure.Analytics.Synapse.Artifacts.Models.LinkedServiceReference linkedServiceName) { } @@ -4177,7 +4299,7 @@ public MicrosoftAccessSink() { } public partial class MicrosoftAccessSource : Azure.Analytics.Synapse.Artifacts.Models.CopySource { public MicrosoftAccessSource() { } - public System.Collections.Generic.IList AdditionalColumns { get { throw null; } } + public object AdditionalColumns { get { throw null; } set { } } public object Query { get { throw null; } set { } } } public partial class MicrosoftAccessTableDataset : Azure.Analytics.Synapse.Artifacts.Models.Dataset @@ -4199,7 +4321,7 @@ public MongoDbAtlasLinkedService(object connectionString, object database) { } public partial class MongoDbAtlasSource : Azure.Analytics.Synapse.Artifacts.Models.CopySource { public MongoDbAtlasSource() { } - public System.Collections.Generic.IList AdditionalColumns { get { throw null; } } + public object AdditionalColumns { get { throw null; } set { } } public object BatchSize { get { throw null; } set { } } public Azure.Analytics.Synapse.Artifacts.Models.MongoDbCursorMethodsProperties CursorMethods { get { throw null; } set { } } public object Filter { get { throw null; } set { } } @@ -4254,7 +4376,7 @@ public MongoDbLinkedService(object server, object databaseName) { } public partial class MongoDbSource : Azure.Analytics.Synapse.Artifacts.Models.CopySource { public MongoDbSource() { } - public System.Collections.Generic.IList AdditionalColumns { get { throw null; } } + public object AdditionalColumns { get { throw null; } set { } } public object Query { get { throw null; } set { } } } public partial class MongoDbV2CollectionDataset : Azure.Analytics.Synapse.Artifacts.Models.Dataset @@ -4271,7 +4393,7 @@ public MongoDbV2LinkedService(object connectionString, object database) { } public partial class MongoDbV2Source : Azure.Analytics.Synapse.Artifacts.Models.CopySource { public MongoDbV2Source() { } - public System.Collections.Generic.IList AdditionalColumns { get { throw null; } } + public object AdditionalColumns { get { throw null; } set { } } public object BatchSize { get { throw null; } set { } } public Azure.Analytics.Synapse.Artifacts.Models.MongoDbCursorMethodsProperties CursorMethods { get { throw null; } set { } } public object Filter { get { throw null; } set { } } @@ -4394,6 +4516,7 @@ public Notebook(Azure.Analytics.Synapse.Artifacts.Models.NotebookMetadata metada public Azure.Analytics.Synapse.Artifacts.Models.BigDataPoolReference BigDataPool { get { throw null; } set { } } public System.Collections.Generic.IList Cells { get { throw null; } } public string Description { get { throw null; } set { } } + public Azure.Analytics.Synapse.Artifacts.Models.NotebookFolder Folder { get { throw null; } set { } } public Azure.Analytics.Synapse.Artifacts.Models.NotebookMetadata Metadata { get { throw null; } set { } } public int Nbformat { get { throw null; } set { } } public int NbformatMinor { get { throw null; } set { } } @@ -4419,6 +4542,11 @@ public NotebookCellOutputItem(Azure.Analytics.Synapse.Artifacts.Models.CellOutpu public Azure.Analytics.Synapse.Artifacts.Models.CellOutputType OutputType { get { throw null; } set { } } public object Text { get { throw null; } set { } } } + public partial class NotebookFolder + { + public NotebookFolder() { } + public string Name { get { throw null; } set { } } + } public partial class NotebookKernelSpec { public NotebookKernelSpec(string name, string displayName) { } @@ -4539,7 +4667,7 @@ public ODataResourceDataset(Azure.Analytics.Synapse.Artifacts.Models.LinkedServi public partial class ODataSource : Azure.Analytics.Synapse.Artifacts.Models.CopySource { public ODataSource() { } - public System.Collections.Generic.IList AdditionalColumns { get { throw null; } } + public object AdditionalColumns { get { throw null; } set { } } public object HttpRequestTimeout { get { throw null; } set { } } public object Query { get { throw null; } set { } } } @@ -4597,7 +4725,7 @@ public partial class OperationResult { internal OperationResult() { } public string Code { get { throw null; } } - public System.Collections.Generic.IReadOnlyList Details { get { throw null; } } + public System.Collections.Generic.IReadOnlyList Details { get { throw null; } } public string Message { get { throw null; } } public string Status { get { throw null; } } public string Target { get { throw null; } } @@ -4665,7 +4793,7 @@ public OracleSink() { } public partial class OracleSource : Azure.Analytics.Synapse.Artifacts.Models.CopySource { public OracleSource() { } - public System.Collections.Generic.IList AdditionalColumns { get { throw null; } } + public object AdditionalColumns { get { throw null; } set { } } public object OracleReaderQuery { get { throw null; } set { } } public Azure.Analytics.Synapse.Artifacts.Models.OraclePartitionOption? PartitionOption { get { throw null; } set { } } public Azure.Analytics.Synapse.Artifacts.Models.OraclePartitionSettings PartitionSettings { get { throw null; } set { } } @@ -4678,31 +4806,11 @@ public OracleTableDataset(Azure.Analytics.Synapse.Artifacts.Models.LinkedService public object Table { get { throw null; } set { } } public object TableName { get { throw null; } set { } } } - [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] - public readonly partial struct OrcCompressionCodec : System.IEquatable - { - private readonly object _dummy; - private readonly int _dummyPrimitive; - public OrcCompressionCodec(string value) { throw null; } - public static Azure.Analytics.Synapse.Artifacts.Models.OrcCompressionCodec Lzo { get { throw null; } } - public static Azure.Analytics.Synapse.Artifacts.Models.OrcCompressionCodec None { get { throw null; } } - public static Azure.Analytics.Synapse.Artifacts.Models.OrcCompressionCodec Snappy { get { throw null; } } - public static Azure.Analytics.Synapse.Artifacts.Models.OrcCompressionCodec Zlib { get { throw null; } } - public bool Equals(Azure.Analytics.Synapse.Artifacts.Models.OrcCompressionCodec other) { throw null; } - [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] - public override bool Equals(object obj) { throw null; } - [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] - public override int GetHashCode() { throw null; } - public static bool operator ==(Azure.Analytics.Synapse.Artifacts.Models.OrcCompressionCodec left, Azure.Analytics.Synapse.Artifacts.Models.OrcCompressionCodec right) { throw null; } - public static implicit operator Azure.Analytics.Synapse.Artifacts.Models.OrcCompressionCodec (string value) { throw null; } - public static bool operator !=(Azure.Analytics.Synapse.Artifacts.Models.OrcCompressionCodec left, Azure.Analytics.Synapse.Artifacts.Models.OrcCompressionCodec right) { throw null; } - public override string ToString() { throw null; } - } public partial class OrcDataset : Azure.Analytics.Synapse.Artifacts.Models.Dataset { public OrcDataset(Azure.Analytics.Synapse.Artifacts.Models.LinkedServiceReference linkedServiceName) : base (default(Azure.Analytics.Synapse.Artifacts.Models.LinkedServiceReference)) { } public Azure.Analytics.Synapse.Artifacts.Models.DatasetLocation Location { get { throw null; } set { } } - public Azure.Analytics.Synapse.Artifacts.Models.OrcCompressionCodec? OrcCompressionCodec { get { throw null; } set { } } + public object OrcCompressionCodec { get { throw null; } set { } } } public partial class OrcFormat : Azure.Analytics.Synapse.Artifacts.Models.DatasetStorageFormat { @@ -4717,7 +4825,7 @@ public OrcSink() { } public partial class OrcSource : Azure.Analytics.Synapse.Artifacts.Models.CopySource { public OrcSource() { } - public System.Collections.Generic.IList AdditionalColumns { get { throw null; } } + public object AdditionalColumns { get { throw null; } set { } } public Azure.Analytics.Synapse.Artifacts.Models.StoreReadSettings StoreSettings { get { throw null; } set { } } } public partial class OrcWriteSettings : Azure.Analytics.Synapse.Artifacts.Models.FormatWriteSettings @@ -4774,7 +4882,7 @@ public ParquetSink() { } public partial class ParquetSource : Azure.Analytics.Synapse.Artifacts.Models.CopySource { public ParquetSource() { } - public System.Collections.Generic.IList AdditionalColumns { get { throw null; } } + public object AdditionalColumns { get { throw null; } set { } } public Azure.Analytics.Synapse.Artifacts.Models.StoreReadSettings StoreSettings { get { throw null; } set { } } } public partial class ParquetWriteSettings : Azure.Analytics.Synapse.Artifacts.Models.FormatWriteSettings @@ -5147,7 +5255,7 @@ public RedshiftUnloadSettings(Azure.Analytics.Synapse.Artifacts.Models.LinkedSer public partial class RelationalSource : Azure.Analytics.Synapse.Artifacts.Models.CopySource { public RelationalSource() { } - public System.Collections.Generic.IList AdditionalColumns { get { throw null; } } + public object AdditionalColumns { get { throw null; } set { } } public object Query { get { throw null; } set { } } } public partial class RelationalTableDataset : Azure.Analytics.Synapse.Artifacts.Models.Dataset @@ -5263,7 +5371,7 @@ public RestSink() { } public partial class RestSource : Azure.Analytics.Synapse.Artifacts.Models.CopySource { public RestSource() { } - public System.Collections.Generic.IList AdditionalColumns { get { throw null; } } + public object AdditionalColumns { get { throw null; } set { } } public object AdditionalHeaders { get { throw null; } set { } } public object HttpRequestTimeout { get { throw null; } set { } } public object PaginationRules { get { throw null; } set { } } @@ -5452,7 +5560,7 @@ public SalesforceServiceCloudSink() { } public partial class SalesforceServiceCloudSource : Azure.Analytics.Synapse.Artifacts.Models.CopySource { public SalesforceServiceCloudSource() { } - public System.Collections.Generic.IList AdditionalColumns { get { throw null; } } + public object AdditionalColumns { get { throw null; } set { } } public object Query { get { throw null; } set { } } public Azure.Analytics.Synapse.Artifacts.Models.SalesforceSourceReadBehavior? ReadBehavior { get { throw null; } set { } } } @@ -5787,10 +5895,10 @@ public ScheduleTriggerRecurrence() { } } public partial class ScriptAction { - public ScriptAction(string name, string uri, Azure.Analytics.Synapse.Artifacts.Models.HdiNodeTypes roles) { } + public ScriptAction(string name, string uri, object roles) { } public string Name { get { throw null; } set { } } public string Parameters { get { throw null; } set { } } - public Azure.Analytics.Synapse.Artifacts.Models.HdiNodeTypes Roles { get { throw null; } set { } } + public object Roles { get { throw null; } set { } } public string Uri { get { throw null; } set { } } } public partial class SecretBase @@ -6043,7 +6151,7 @@ internal SparkBatchJob() { } public Azure.Analytics.Synapse.Artifacts.Models.SparkBatchJobResultType? Result { get { throw null; } } public Azure.Analytics.Synapse.Artifacts.Models.SparkScheduler Scheduler { get { throw null; } } public string SparkPoolName { get { throw null; } } - public string State { get { throw null; } } + public Azure.Analytics.Synapse.Artifacts.Models.LivyStates? State { get { throw null; } } public string SubmitterId { get { throw null; } } public string SubmitterName { get { throw null; } } public System.Collections.Generic.IReadOnlyDictionary Tags { get { throw null; } } @@ -6082,6 +6190,22 @@ internal SparkBatchJobState() { } public System.DateTimeOffset? SuccessAt { get { throw null; } } public System.DateTimeOffset? TerminatedAt { get { throw null; } } } + public partial class SparkConfiguration + { + public SparkConfiguration(System.Collections.Generic.IDictionary configs) { } + public System.Collections.Generic.IList Annotations { get { throw null; } } + public System.Collections.Generic.IDictionary ConfigMergeRule { get { throw null; } } + public System.Collections.Generic.IDictionary Configs { get { throw null; } } + public System.DateTimeOffset? Created { get { throw null; } set { } } + public string CreatedBy { get { throw null; } set { } } + public string Description { get { throw null; } set { } } + public string Notes { get { throw null; } set { } } + } + public partial class SparkConfigurationResource : Azure.Analytics.Synapse.Artifacts.Models.SubResource + { + public SparkConfigurationResource(Azure.Analytics.Synapse.Artifacts.Models.SparkConfiguration properties) { } + public Azure.Analytics.Synapse.Artifacts.Models.SparkConfiguration Properties { get { throw null; } set { } } + } [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public readonly partial struct SparkErrorSource : System.IEquatable { @@ -6107,11 +6231,17 @@ public partial class SparkJobDefinition public SparkJobDefinition(Azure.Analytics.Synapse.Artifacts.Models.BigDataPoolReference targetBigDataPool, Azure.Analytics.Synapse.Artifacts.Models.SparkJobProperties jobProperties) { } public System.Collections.Generic.IDictionary AdditionalProperties { get { throw null; } } public string Description { get { throw null; } set { } } + public Azure.Analytics.Synapse.Artifacts.Models.SparkJobDefinitionFolder Folder { get { throw null; } set { } } public Azure.Analytics.Synapse.Artifacts.Models.SparkJobProperties JobProperties { get { throw null; } set { } } public string Language { get { throw null; } set { } } public string RequiredSparkVersion { get { throw null; } set { } } public Azure.Analytics.Synapse.Artifacts.Models.BigDataPoolReference TargetBigDataPool { get { throw null; } set { } } } + public partial class SparkJobDefinitionFolder + { + public SparkJobDefinitionFolder() { } + public string Name { get { throw null; } set { } } + } public partial class SparkJobDefinitionResource : Azure.Analytics.Synapse.Artifacts.Models.SubResource { public SparkJobDefinitionResource(Azure.Analytics.Synapse.Artifacts.Models.SparkJobDefinition properties) { } @@ -6284,10 +6414,12 @@ public SparkSource() { } } public partial class SqlConnection { - public SqlConnection(Azure.Analytics.Synapse.Artifacts.Models.SqlConnectionType type, string name) { } + public SqlConnection() { } public System.Collections.Generic.IDictionary AdditionalProperties { get { throw null; } } + public string DatabaseName { get { throw null; } set { } } public string Name { get { throw null; } set { } } - public Azure.Analytics.Synapse.Artifacts.Models.SqlConnectionType Type { get { throw null; } set { } } + public string PoolName { get { throw null; } set { } } + public Azure.Analytics.Synapse.Artifacts.Models.SqlConnectionType? Type { get { throw null; } set { } } } [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public readonly partial struct SqlConnectionType : System.IEquatable @@ -6409,15 +6541,22 @@ public SqlScript(Azure.Analytics.Synapse.Artifacts.Models.SqlScriptContent conte public System.Collections.Generic.IDictionary AdditionalProperties { get { throw null; } } public Azure.Analytics.Synapse.Artifacts.Models.SqlScriptContent Content { get { throw null; } set { } } public string Description { get { throw null; } set { } } + public Azure.Analytics.Synapse.Artifacts.Models.SqlScriptFolder Folder { get { throw null; } set { } } public Azure.Analytics.Synapse.Artifacts.Models.SqlScriptType? Type { get { throw null; } set { } } } public partial class SqlScriptContent { - public SqlScriptContent(string query, Azure.Analytics.Synapse.Artifacts.Models.SqlConnection currentConnection) { } + public SqlScriptContent(string query) { } public System.Collections.Generic.IDictionary AdditionalProperties { get { throw null; } } public Azure.Analytics.Synapse.Artifacts.Models.SqlConnection CurrentConnection { get { throw null; } set { } } public Azure.Analytics.Synapse.Artifacts.Models.SqlScriptMetadata Metadata { get { throw null; } set { } } public string Query { get { throw null; } set { } } + public int? ResultLimit { get { throw null; } set { } } + } + public partial class SqlScriptFolder + { + public SqlScriptFolder() { } + public string Name { get { throw null; } set { } } } public partial class SqlScriptMetadata { @@ -6777,6 +6916,7 @@ public SynapseNotebookReference(Azure.Analytics.Synapse.Artifacts.Models.Noteboo public partial class SynapseSparkJobDefinitionActivity : Azure.Analytics.Synapse.Artifacts.Models.ExecutionActivity { public SynapseSparkJobDefinitionActivity(string name, Azure.Analytics.Synapse.Artifacts.Models.SynapseSparkJobReference sparkJob) : base (default(string)) { } + public System.Collections.Generic.IList Arguments { get { throw null; } } public Azure.Analytics.Synapse.Artifacts.Models.SynapseSparkJobReference SparkJob { get { throw null; } set { } } } public partial class SynapseSparkJobReference @@ -6788,7 +6928,7 @@ public SynapseSparkJobReference(Azure.Analytics.Synapse.Artifacts.Models.SparkJo public partial class TabularSource : Azure.Analytics.Synapse.Artifacts.Models.CopySource { public TabularSource() { } - public System.Collections.Generic.IList AdditionalColumns { get { throw null; } } + public object AdditionalColumns { get { throw null; } set { } } public object QueryTimeout { get { throw null; } set { } } } public partial class TabularTranslator : Azure.Analytics.Synapse.Artifacts.Models.CopyTranslator @@ -7262,7 +7402,7 @@ public WebLinkedServiceTypeProperties(object url) { } public partial class WebSource : Azure.Analytics.Synapse.Artifacts.Models.CopySource { public WebSource() { } - public System.Collections.Generic.IList AdditionalColumns { get { throw null; } } + public object AdditionalColumns { get { throw null; } set { } } } public partial class WebTableDataset : Azure.Analytics.Synapse.Artifacts.Models.Dataset { @@ -7308,6 +7448,8 @@ public partial class WorkspaceRepositoryConfiguration { public WorkspaceRepositoryConfiguration() { } public string AccountName { get { throw null; } set { } } + public string ClientId { get { throw null; } set { } } + public Azure.Analytics.Synapse.Artifacts.Models.GitHubClientSecret ClientSecret { get { throw null; } set { } } public string CollaborationBranch { get { throw null; } set { } } public string HostName { get { throw null; } set { } } public string LastCommitId { get { throw null; } set { } } @@ -7365,7 +7507,7 @@ public XmlReadSettings() { } public partial class XmlSource : Azure.Analytics.Synapse.Artifacts.Models.CopySource { public XmlSource() { } - public System.Collections.Generic.IList AdditionalColumns { get { throw null; } } + public object AdditionalColumns { get { throw null; } set { } } public Azure.Analytics.Synapse.Artifacts.Models.XmlReadSettings FormatSettings { get { throw null; } set { } } public Azure.Analytics.Synapse.Artifacts.Models.StoreReadSettings StoreSettings { get { throw null; } set { } } } diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/ArtifactsClientOptions.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/ArtifactsClientOptions.cs index 12a9651de7f9..a0e232f892ba 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/ArtifactsClientOptions.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/ArtifactsClientOptions.cs @@ -13,13 +13,15 @@ namespace Azure.Analytics.Synapse.Artifacts /// Client options for ArtifactsClient. public partial class ArtifactsClientOptions : ClientOptions { - private const ServiceVersion LatestVersion = ServiceVersion.V2019_06_01_preview; + private const ServiceVersion LatestVersion = ServiceVersion.V2021_06_01_preview; /// The version of the service to use. public enum ServiceVersion { - /// Service version "2019-06-01-preview". - V2019_06_01_preview = 1, + /// Service version "2020-12-01". + V2020_12_01 = 1, + /// Service version "2021-06-01-preview". + V2021_06_01_preview = 2, } internal string Version { get; } @@ -29,7 +31,8 @@ public ArtifactsClientOptions(ServiceVersion version = LatestVersion) { Version = version switch { - ServiceVersion.V2019_06_01_preview => "2019-06-01-preview", + ServiceVersion.V2020_12_01 => "2020-12-01", + ServiceVersion.V2021_06_01_preview => "2021-06-01-preview", _ => throw new NotSupportedException() }; } diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/ArtifactsModelFactory.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/ArtifactsModelFactory.cs index f70f90aaae7e..ce9488732ca5 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/ArtifactsModelFactory.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/ArtifactsModelFactory.cs @@ -35,17 +35,204 @@ public static AzureEntityResource AzureEntityResource(string id = null, string n return new AzureEntityResource(id, name, type, etag); } - /// Initializes a new instance of CloudError. + /// Initializes a new instance of BigDataPoolResourceInfoListResult. + /// Link to the next page of results. + /// List of Big Data pools. + /// A new instance for mocking. + public static BigDataPoolResourceInfoListResult BigDataPoolResourceInfoListResult(string nextLink = null, IEnumerable value = null) + { + value ??= new List(); + + return new BigDataPoolResourceInfoListResult(nextLink, value?.ToList()); + } + + /// Initializes a new instance of BigDataPoolResourceInfo. + /// Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}. + /// The name of the resource. + /// The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts". + /// Resource tags. + /// The geo-location where the resource lives. + /// The state of the Big Data pool. + /// Auto-scaling properties. + /// The time when the Big Data pool was created. + /// Auto-pausing properties. + /// Whether compute isolation is required or not. + /// Whether session level packages enabled. + /// The cache size. + /// Dynamic Executor Allocation. + /// The Spark events folder. + /// The number of nodes in the Big Data pool. + /// Library version requirements. + /// List of custom libraries/packages associated with the spark pool. + /// Spark configuration file to specify additional properties. + /// The Apache Spark version. + /// The default folder where Spark logs will be written. + /// The level of compute power that each node in the Big Data pool has. + /// The kind of nodes that the Big Data pool provides. + /// The time when the Big Data pool was updated successfully. + /// A new instance for mocking. + public static BigDataPoolResourceInfo BigDataPoolResourceInfo(string id = null, string name = null, string type = null, IDictionary tags = null, string location = null, string provisioningState = null, AutoScaleProperties autoScale = null, DateTimeOffset? creationDate = null, AutoPauseProperties autoPause = null, bool? isComputeIsolationEnabled = null, bool? sessionLevelPackagesEnabled = null, int? cacheSize = null, DynamicExecutorAllocation dynamicExecutorAllocation = null, string sparkEventsFolder = null, int? nodeCount = null, LibraryRequirements libraryRequirements = null, IEnumerable customLibraries = null, LibraryRequirements sparkConfigProperties = null, string sparkVersion = null, string defaultSparkLogFolder = null, NodeSize? nodeSize = null, NodeSizeFamily? nodeSizeFamily = null, DateTimeOffset? lastSucceededTimestamp = null) + { + tags ??= new Dictionary(); + customLibraries ??= new List(); + + return new BigDataPoolResourceInfo(id, name, type, tags, location, provisioningState, autoScale, creationDate, autoPause, isComputeIsolationEnabled, sessionLevelPackagesEnabled, cacheSize, dynamicExecutorAllocation, sparkEventsFolder, nodeCount, libraryRequirements, customLibraries?.ToList(), sparkConfigProperties, sparkVersion, defaultSparkLogFolder, nodeSize, nodeSizeFamily, lastSucceededTimestamp); + } + + /// Initializes a new instance of LibraryRequirements. + /// The last update time of the library requirements file. + /// The library requirements. + /// The filename of the library requirements file. + /// A new instance for mocking. + public static LibraryRequirements LibraryRequirements(DateTimeOffset? time = null, string content = null, string filename = null) + { + return new LibraryRequirements(time, content, filename); + } + + /// Initializes a new instance of LibraryInfo. + /// Name of the library. + /// Storage blob path of library. + /// Storage blob container name. + /// The last update time of the library. + /// Type of the library. + /// Provisioning status of the library/package. + /// Creator Id of the library/package. + /// A new instance for mocking. + public static LibraryInfo LibraryInfo(string name = null, string path = null, string containerName = null, DateTimeOffset? uploadedTimestamp = null, string type = null, string provisioningStatus = null, string creatorId = null) + { + return new LibraryInfo(name, path, containerName, uploadedTimestamp, type, provisioningStatus, creatorId); + } + + /// Initializes a new instance of CloudErrorAutoGenerated. + /// Error code. + /// Error message. + /// Property name/path in request associated with error. + /// Array with additional error details. + /// A new instance for mocking. + public static CloudErrorAutoGenerated CloudErrorAutoGenerated(string code = null, string message = null, string target = null, IEnumerable details = null) + { + details ??= new List(); + + return new CloudErrorAutoGenerated(code, message, target, details?.ToList()); + } + + /// Initializes a new instance of CreateDataFlowDebugSessionResponse. + /// The ID of data flow debug session. + /// A new instance for mocking. + public static CreateDataFlowDebugSessionResponse CreateDataFlowDebugSessionResponse(string sessionId = null) + { + return new CreateDataFlowDebugSessionResponse(sessionId); + } + + /// Initializes a new instance of DataFlowDebugSessionInfo. + /// The name of the data flow. + /// Compute type of the cluster. + /// Core count of the cluster. + /// Node count of the cluster. (deprecated property). + /// Attached integration runtime name of data flow debug session. + /// The ID of data flow debug session. + /// Start time of data flow debug session. + /// Compute type of the cluster. + /// Last activity time of data flow debug session. + /// Additional Properties. + /// A new instance for mocking. + public static DataFlowDebugSessionInfo DataFlowDebugSessionInfo(string dataFlowName = null, string computeType = null, int? coreCount = null, int? nodeCount = null, string integrationRuntimeName = null, string sessionId = null, string startTime = null, int? timeToLiveInMinutes = null, string lastActivityTime = null, IReadOnlyDictionary additionalProperties = null) + { + additionalProperties ??= new Dictionary(); + + return new DataFlowDebugSessionInfo(dataFlowName, computeType, coreCount, nodeCount, integrationRuntimeName, sessionId, startTime, timeToLiveInMinutes, lastActivityTime, additionalProperties); + } + + /// Initializes a new instance of AddDataFlowToDebugSessionResponse. + /// The ID of data flow debug job version. + /// A new instance for mocking. + public static AddDataFlowToDebugSessionResponse AddDataFlowToDebugSessionResponse(string jobVersion = null) + { + return new AddDataFlowToDebugSessionResponse(jobVersion); + } + + /// Initializes a new instance of DataFlowDebugCommandResponse. + /// The run status of data preview, statistics or expression preview. + /// The result data of data preview, statistics or expression preview. + /// A new instance for mocking. + public static DataFlowDebugCommandResponse DataFlowDebugCommandResponse(string status = null, string data = null) + { + return new DataFlowDebugCommandResponse(status, data); + } + + /// Initializes a new instance of GitHubAccessTokenResponse. + /// + /// A new instance for mocking. + public static GitHubAccessTokenResponse GitHubAccessTokenResponse(string gitHubAccessToken = null) + { + return new GitHubAccessTokenResponse(gitHubAccessToken); + } + + /// Initializes a new instance of IntegrationRuntimeListResponse. + /// List of integration runtimes. + /// The link to the next page of results, if any remaining results exist. + /// A new instance for mocking. + public static IntegrationRuntimeListResponse IntegrationRuntimeListResponse(IEnumerable value = null, string nextLink = null) + { + value ??= new List(); + + return new IntegrationRuntimeListResponse(value?.ToList(), nextLink); + } + + /// Initializes a new instance of LibraryResourceProperties. + /// Name of the library/package. + /// Location of library/package in storage account. + /// Container name of the library/package. + /// The last update time of the library/package. + /// Type of the library/package. + /// Provisioning status of the library/package. + /// Creator Id of the library/package. + /// A new instance for mocking. + public static LibraryResourceProperties LibraryResourceProperties(string name = null, string path = null, string containerName = null, string uploadedTimestamp = null, string type = null, string provisioningStatus = null, string creatorId = null) + { + return new LibraryResourceProperties(name, path, containerName, uploadedTimestamp, type, provisioningStatus, creatorId); + } + + /// Initializes a new instance of LibraryResourceInfo. + /// Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}. + /// record Id of the library/package. + /// Provisioning status of the library/package. + /// The creation time of the library/package. + /// The last updated time of the library/package. + /// The type of the resource. E.g. LibraryArtifact. + /// Name of the library/package. + /// Operation Id of the operation performed on library/package. + /// artifact Id of the library/package. + /// A new instance for mocking. + public static LibraryResourceInfo LibraryResourceInfo(string id = null, int? recordId = null, string state = null, string created = null, string changed = null, string type = null, string name = null, string operationId = null, string artifactId = null) + { + return new LibraryResourceInfo(id, recordId, state, created, changed, type, name, operationId, artifactId); + } + + /// Initializes a new instance of OperationResult. + /// Operation status. /// Error code. /// Error message. /// Property name/path in request associated with error. /// Array with additional error details. - /// A new instance for mocking. - public static CloudError CloudError(string code = null, string message = null, string target = null, IEnumerable details = null) + /// A new instance for mocking. + public static OperationResult OperationResult(string status = null, string code = null, string message = null, string target = null, IEnumerable details = null) { - details ??= new List(); + details ??= new List(); - return new CloudError(code, message, target, details?.ToList()); + return new OperationResult(status, code, message, target, details?.ToList()); + } + + /// Initializes a new instance of NotebookResource. + /// Fully qualified resource Id for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}. + /// The name of the resource. + /// The type of the resource. Ex- Microsoft.Compute/virtualMachines or Microsoft.Storage/storageAccounts. + /// Resource Etag. + /// Properties of Notebook. + /// A new instance for mocking. + public static NotebookResource NotebookResource(string id = null, string name = null, string type = null, string etag = null, Notebook properties = null) + { + return new NotebookResource(id, name, type, etag, properties); } /// Initializes a new instance of CreateRunResponse. @@ -134,117 +321,6 @@ public static ActivityRun ActivityRun(string pipelineName = null, string pipelin return new ActivityRun(pipelineName, pipelineRunId, activityName, activityType, activityRunId, linkedServiceName, status, activityRunStart, activityRunEnd, durationInMs, input, output, error, additionalProperties); } - /// Initializes a new instance of Trigger. - /// Trigger type. - /// Trigger description. - /// Indicates if trigger is running or not. Updated when Start/Stop APIs are called on the Trigger. - /// List of tags that can be used for describing the trigger. - /// Additional Properties. - /// A new instance for mocking. - public static Trigger Trigger(string type = null, string description = null, TriggerRuntimeState? runtimeState = null, IEnumerable annotations = null, IDictionary additionalProperties = null) - { - annotations ??= new List(); - additionalProperties ??= new Dictionary(); - - return new Trigger(type, description, runtimeState, annotations?.ToList(), additionalProperties); - } - - /// Initializes a new instance of TriggerSubscriptionOperationStatus. - /// Trigger name. - /// Event Subscription Status. - /// A new instance for mocking. - public static TriggerSubscriptionOperationStatus TriggerSubscriptionOperationStatus(string triggerName = null, EventSubscriptionStatus? status = null) - { - return new TriggerSubscriptionOperationStatus(triggerName, status); - } - - /// Initializes a new instance of TriggerRunsQueryResponse. - /// List of trigger runs. - /// The continuation token for getting the next page of results, if any remaining results exist, null otherwise. - /// A new instance for mocking. - public static TriggerRunsQueryResponse TriggerRunsQueryResponse(IEnumerable value = null, string continuationToken = null) - { - value ??= new List(); - - return new TriggerRunsQueryResponse(value?.ToList(), continuationToken); - } - - /// Initializes a new instance of TriggerRun. - /// Trigger run id. - /// Trigger name. - /// Trigger type. - /// Trigger run start time. - /// Trigger run status. - /// Trigger error message. - /// List of property name and value related to trigger run. Name, value pair depends on type of trigger. - /// List of pipeline name and run Id triggered by the trigger run. - /// Additional Properties. - /// A new instance for mocking. - public static TriggerRun TriggerRun(string triggerRunId = null, string triggerName = null, string triggerType = null, DateTimeOffset? triggerRunTimestamp = null, TriggerRunStatus? status = null, string message = null, IReadOnlyDictionary properties = null, IReadOnlyDictionary triggeredPipelines = null, IReadOnlyDictionary additionalProperties = null) - { - properties ??= new Dictionary(); - triggeredPipelines ??= new Dictionary(); - additionalProperties ??= new Dictionary(); - - return new TriggerRun(triggerRunId, triggerName, triggerType, triggerRunTimestamp, status, message, properties, triggeredPipelines, additionalProperties); - } - - /// Initializes a new instance of CreateDataFlowDebugSessionResponse. - /// The ID of data flow debug session. - /// A new instance for mocking. - public static CreateDataFlowDebugSessionResponse CreateDataFlowDebugSessionResponse(string sessionId = null) - { - return new CreateDataFlowDebugSessionResponse(sessionId); - } - - /// Initializes a new instance of DataFlowDebugSessionInfo. - /// The name of the data flow. - /// Compute type of the cluster. - /// Core count of the cluster. - /// Node count of the cluster. (deprecated property). - /// Attached integration runtime name of data flow debug session. - /// The ID of data flow debug session. - /// Start time of data flow debug session. - /// Compute type of the cluster. - /// Last activity time of data flow debug session. - /// Additional Properties. - /// A new instance for mocking. - public static DataFlowDebugSessionInfo DataFlowDebugSessionInfo(string dataFlowName = null, string computeType = null, int? coreCount = null, int? nodeCount = null, string integrationRuntimeName = null, string sessionId = null, string startTime = null, int? timeToLiveInMinutes = null, string lastActivityTime = null, IReadOnlyDictionary additionalProperties = null) - { - additionalProperties ??= new Dictionary(); - - return new DataFlowDebugSessionInfo(dataFlowName, computeType, coreCount, nodeCount, integrationRuntimeName, sessionId, startTime, timeToLiveInMinutes, lastActivityTime, additionalProperties); - } - - /// Initializes a new instance of AddDataFlowToDebugSessionResponse. - /// The ID of data flow debug job version. - /// A new instance for mocking. - public static AddDataFlowToDebugSessionResponse AddDataFlowToDebugSessionResponse(string jobVersion = null) - { - return new AddDataFlowToDebugSessionResponse(jobVersion); - } - - /// Initializes a new instance of DataFlowDebugCommandResponse. - /// The run status of data preview, statistics or expression preview. - /// The result data of data preview, statistics or expression preview. - /// A new instance for mocking. - public static DataFlowDebugCommandResponse DataFlowDebugCommandResponse(string status = null, string data = null) - { - return new DataFlowDebugCommandResponse(status, data); - } - - /// Initializes a new instance of SqlScriptResource. - /// Fully qualified resource Id for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}. - /// The name of the resource. - /// The type of the resource. Ex- Microsoft.Compute/virtualMachines or Microsoft.Storage/storageAccounts. - /// Resource Etag. - /// Properties of sql script. - /// A new instance for mocking. - public static SqlScriptResource SqlScriptResource(string id = null, string name = null, string type = null, string etag = null, SqlScript properties = null) - { - return new SqlScriptResource(id, name, type, etag, properties); - } - /// Initializes a new instance of SparkBatchJob. /// /// The batch name. @@ -265,7 +341,7 @@ public static SqlScriptResource SqlScriptResource(string id = null, string name /// The batch state. /// The log lines. /// A new instance for mocking. - public static SparkBatchJob SparkBatchJob(SparkBatchJobState livyInfo = null, string name = null, string workspaceName = null, string sparkPoolName = null, string submitterName = null, string submitterId = null, string artifactId = null, SparkJobType? jobType = null, SparkBatchJobResultType? result = null, SparkScheduler scheduler = null, SparkServicePlugin plugin = null, IEnumerable errors = null, IReadOnlyDictionary tags = null, int id = default, string appId = null, IReadOnlyDictionary appInfo = null, string state = null, IEnumerable logLines = null) + public static SparkBatchJob SparkBatchJob(SparkBatchJobState livyInfo = null, string name = null, string workspaceName = null, string sparkPoolName = null, string submitterName = null, string submitterId = null, string artifactId = null, SparkJobType? jobType = null, SparkBatchJobResultType? result = null, SparkScheduler scheduler = null, SparkServicePlugin plugin = null, IEnumerable errors = null, IReadOnlyDictionary tags = null, int id = default, string appId = null, IReadOnlyDictionary appInfo = null, LivyStates? state = null, IEnumerable logLines = null) { errors ??= new List(); tags ??= new Dictionary(); @@ -354,16 +430,82 @@ public static SparkServiceError SparkServiceError(string message = null, string return new SparkServiceError(message, errorCode, source); } - /// Initializes a new instance of NotebookResource. + /// Initializes a new instance of SqlPoolInfoListResult. + /// Link to the next page of results. + /// List of SQL pools. + /// A new instance for mocking. + public static SqlPoolInfoListResult SqlPoolInfoListResult(string nextLink = null, IEnumerable value = null) + { + value ??= new List(); + + return new SqlPoolInfoListResult(nextLink, value?.ToList()); + } + + /// Initializes a new instance of SqlScriptResource. /// Fully qualified resource Id for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}. /// The name of the resource. /// The type of the resource. Ex- Microsoft.Compute/virtualMachines or Microsoft.Storage/storageAccounts. /// Resource Etag. - /// Properties of Notebook. - /// A new instance for mocking. - public static NotebookResource NotebookResource(string id = null, string name = null, string type = null, string etag = null, Notebook properties = null) + /// Properties of sql script. + /// A new instance for mocking. + public static SqlScriptResource SqlScriptResource(string id = null, string name = null, string type = null, string etag = null, SqlScript properties = null) { - return new NotebookResource(id, name, type, etag, properties); + return new SqlScriptResource(id, name, type, etag, properties); + } + + /// Initializes a new instance of Trigger. + /// Trigger type. + /// Trigger description. + /// Indicates if trigger is running or not. Updated when Start/Stop APIs are called on the Trigger. + /// List of tags that can be used for describing the trigger. + /// Additional Properties. + /// A new instance for mocking. + public static Trigger Trigger(string type = null, string description = null, TriggerRuntimeState? runtimeState = null, IEnumerable annotations = null, IDictionary additionalProperties = null) + { + annotations ??= new List(); + additionalProperties ??= new Dictionary(); + + return new Trigger(type, description, runtimeState, annotations?.ToList(), additionalProperties); + } + + /// Initializes a new instance of TriggerSubscriptionOperationStatus. + /// Trigger name. + /// Event Subscription Status. + /// A new instance for mocking. + public static TriggerSubscriptionOperationStatus TriggerSubscriptionOperationStatus(string triggerName = null, EventSubscriptionStatus? status = null) + { + return new TriggerSubscriptionOperationStatus(triggerName, status); + } + + /// Initializes a new instance of TriggerRunsQueryResponse. + /// List of trigger runs. + /// The continuation token for getting the next page of results, if any remaining results exist, null otherwise. + /// A new instance for mocking. + public static TriggerRunsQueryResponse TriggerRunsQueryResponse(IEnumerable value = null, string continuationToken = null) + { + value ??= new List(); + + return new TriggerRunsQueryResponse(value?.ToList(), continuationToken); + } + + /// Initializes a new instance of TriggerRun. + /// Trigger run id. + /// Trigger name. + /// Trigger type. + /// Trigger run start time. + /// Trigger run status. + /// Trigger error message. + /// List of property name and value related to trigger run. Name, value pair depends on type of trigger. + /// List of pipeline name and run Id triggered by the trigger run. + /// Additional Properties. + /// A new instance for mocking. + public static TriggerRun TriggerRun(string triggerRunId = null, string triggerName = null, string triggerType = null, DateTimeOffset? triggerRunTimestamp = null, TriggerRunStatus? status = null, string message = null, IReadOnlyDictionary properties = null, IReadOnlyDictionary triggeredPipelines = null, IReadOnlyDictionary additionalProperties = null) + { + properties ??= new Dictionary(); + triggeredPipelines ??= new Dictionary(); + additionalProperties ??= new Dictionary(); + + return new TriggerRun(triggerRunId, triggerName, triggerType, triggerRunTimestamp, status, message, properties, triggeredPipelines, additionalProperties); } /// Initializes a new instance of Workspace. @@ -459,148 +601,6 @@ public static ManagedIdentity ManagedIdentity(string principalId = null, Guid? t return new ManagedIdentity(principalId, tenantId, type); } - /// Initializes a new instance of SqlPoolInfoListResult. - /// Link to the next page of results. - /// List of SQL pools. - /// A new instance for mocking. - public static SqlPoolInfoListResult SqlPoolInfoListResult(string nextLink = null, IEnumerable value = null) - { - value ??= new List(); - - return new SqlPoolInfoListResult(nextLink, value?.ToList()); - } - - /// Initializes a new instance of BigDataPoolResourceInfoListResult. - /// Link to the next page of results. - /// List of Big Data pools. - /// A new instance for mocking. - public static BigDataPoolResourceInfoListResult BigDataPoolResourceInfoListResult(string nextLink = null, IEnumerable value = null) - { - value ??= new List(); - - return new BigDataPoolResourceInfoListResult(nextLink, value?.ToList()); - } - - /// Initializes a new instance of BigDataPoolResourceInfo. - /// Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}. - /// The name of the resource. - /// The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts". - /// Resource tags. - /// The geo-location where the resource lives. - /// The state of the Big Data pool. - /// Auto-scaling properties. - /// The time when the Big Data pool was created. - /// Auto-pausing properties. - /// Whether compute isolation is required or not. - /// Whether session level packages enabled. - /// The cache size. - /// Dynamic Executor Allocation. - /// The Spark events folder. - /// The number of nodes in the Big Data pool. - /// Library version requirements. - /// List of custom libraries/packages associated with the spark pool. - /// Spark configuration file to specify additional properties. - /// The Apache Spark version. - /// The default folder where Spark logs will be written. - /// The level of compute power that each node in the Big Data pool has. - /// The kind of nodes that the Big Data pool provides. - /// The time when the Big Data pool was updated successfully. - /// A new instance for mocking. - public static BigDataPoolResourceInfo BigDataPoolResourceInfo(string id = null, string name = null, string type = null, IDictionary tags = null, string location = null, string provisioningState = null, AutoScaleProperties autoScale = null, DateTimeOffset? creationDate = null, AutoPauseProperties autoPause = null, bool? isComputeIsolationEnabled = null, bool? sessionLevelPackagesEnabled = null, int? cacheSize = null, DynamicExecutorAllocation dynamicExecutorAllocation = null, string sparkEventsFolder = null, int? nodeCount = null, LibraryRequirements libraryRequirements = null, IEnumerable customLibraries = null, LibraryRequirements sparkConfigProperties = null, string sparkVersion = null, string defaultSparkLogFolder = null, NodeSize? nodeSize = null, NodeSizeFamily? nodeSizeFamily = null, DateTimeOffset? lastSucceededTimestamp = null) - { - tags ??= new Dictionary(); - customLibraries ??= new List(); - - return new BigDataPoolResourceInfo(id, name, type, tags, location, provisioningState, autoScale, creationDate, autoPause, isComputeIsolationEnabled, sessionLevelPackagesEnabled, cacheSize, dynamicExecutorAllocation, sparkEventsFolder, nodeCount, libraryRequirements, customLibraries?.ToList(), sparkConfigProperties, sparkVersion, defaultSparkLogFolder, nodeSize, nodeSizeFamily, lastSucceededTimestamp); - } - - /// Initializes a new instance of LibraryRequirements. - /// The last update time of the library requirements file. - /// The library requirements. - /// The filename of the library requirements file. - /// A new instance for mocking. - public static LibraryRequirements LibraryRequirements(DateTimeOffset? time = null, string content = null, string filename = null) - { - return new LibraryRequirements(time, content, filename); - } - - /// Initializes a new instance of LibraryInfo. - /// Name of the library. - /// Storage blob path of library. - /// Storage blob container name. - /// The last update time of the library. - /// Type of the library. - /// Provisioning status of the library/package. - /// Creator Id of the library/package. - /// A new instance for mocking. - public static LibraryInfo LibraryInfo(string name = null, string path = null, string containerName = null, DateTimeOffset? uploadedTimestamp = null, string type = null, string provisioningStatus = null, string creatorId = null) - { - return new LibraryInfo(name, path, containerName, uploadedTimestamp, type, provisioningStatus, creatorId); - } - - /// Initializes a new instance of IntegrationRuntimeListResponse. - /// List of integration runtimes. - /// The link to the next page of results, if any remaining results exist. - /// A new instance for mocking. - public static IntegrationRuntimeListResponse IntegrationRuntimeListResponse(IEnumerable value = null, string nextLink = null) - { - value ??= new List(); - - return new IntegrationRuntimeListResponse(value?.ToList(), nextLink); - } - - /// Initializes a new instance of LibraryResourceProperties. - /// Name of the library/package. - /// Location of library/package in storage account. - /// Container name of the library/package. - /// The last update time of the library/package. - /// Type of the library/package. - /// Provisioning status of the library/package. - /// Creator Id of the library/package. - /// A new instance for mocking. - public static LibraryResourceProperties LibraryResourceProperties(string name = null, string path = null, string containerName = null, string uploadedTimestamp = null, string type = null, string provisioningStatus = null, string creatorId = null) - { - return new LibraryResourceProperties(name, path, containerName, uploadedTimestamp, type, provisioningStatus, creatorId); - } - - /// Initializes a new instance of LibraryResourceInfo. - /// Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}. - /// record Id of the library/package. - /// Provisioning status of the library/package. - /// The creation time of the library/package. - /// The last updated time of the library/package. - /// The type of the resource. E.g. LibraryArtifact. - /// Name of the library/package. - /// Operation Id of the operation performed on library/package. - /// artifact Id of the library/package. - /// A new instance for mocking. - public static LibraryResourceInfo LibraryResourceInfo(string id = null, int? recordId = null, string state = null, string created = null, string changed = null, string type = null, string name = null, string operationId = null, string artifactId = null) - { - return new LibraryResourceInfo(id, recordId, state, created, changed, type, name, operationId, artifactId); - } - - /// Initializes a new instance of OperationResult. - /// Operation status. - /// Error code. - /// Error message. - /// Property name/path in request associated with error. - /// Array with additional error details. - /// A new instance for mocking. - public static OperationResult OperationResult(string status = null, string code = null, string message = null, string target = null, IEnumerable details = null) - { - details ??= new List(); - - return new OperationResult(status, code, message, target, details?.ToList()); - } - - /// Initializes a new instance of GitHubAccessTokenResponse. - /// - /// A new instance for mocking. - public static GitHubAccessTokenResponse GitHubAccessTokenResponse(string gitHubAccessToken = null) - { - return new GitHubAccessTokenResponse(gitHubAccessToken); - } - /// Initializes a new instance of WorkspaceIdentity. /// The identity type. Currently the only supported type is 'SystemAssigned'. /// The principal id of the identity. diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/BigDataPoolsClient.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/BigDataPoolsClient.cs index f2320e66bfcc..6823094e1b36 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/BigDataPoolsClient.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/BigDataPoolsClient.cs @@ -46,17 +46,16 @@ public BigDataPoolsClient(Uri endpoint, TokenCredential credential, ArtifactsCli _clientDiagnostics = new ClientDiagnostics(options); string[] scopes = { "https://dev.azuresynapse.net/.default" }; _pipeline = HttpPipelineBuilder.Build(options, new BearerTokenAuthenticationPolicy(credential, scopes)); - RestClient = new BigDataPoolsRestClient(_clientDiagnostics, _pipeline, endpoint, options.Version); + RestClient = new BigDataPoolsRestClient(_clientDiagnostics, _pipeline, endpoint); } /// Initializes a new instance of BigDataPoolsClient. /// The handler for diagnostic messaging in the client. /// The HTTP pipeline for sending and receiving REST requests and responses. /// The workspace development endpoint, for example https://myworkspace.dev.azuresynapse.net. - /// Api Version. - internal BigDataPoolsClient(ClientDiagnostics clientDiagnostics, HttpPipeline pipeline, Uri endpoint, string apiVersion = "2019-06-01-preview") + internal BigDataPoolsClient(ClientDiagnostics clientDiagnostics, HttpPipeline pipeline, Uri endpoint) { - RestClient = new BigDataPoolsRestClient(clientDiagnostics, pipeline, endpoint, apiVersion); + RestClient = new BigDataPoolsRestClient(clientDiagnostics, pipeline, endpoint); _clientDiagnostics = clientDiagnostics; _pipeline = pipeline; } diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/BigDataPoolsRestClient.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/BigDataPoolsRestClient.cs index 86bfe5fc6cb3..df1e2e94ea77 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/BigDataPoolsRestClient.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/BigDataPoolsRestClient.cs @@ -19,7 +19,6 @@ namespace Azure.Analytics.Synapse.Artifacts internal partial class BigDataPoolsRestClient { private Uri endpoint; - private string apiVersion; private ClientDiagnostics _clientDiagnostics; private HttpPipeline _pipeline; @@ -27,12 +26,10 @@ internal partial class BigDataPoolsRestClient /// The handler for diagnostic messaging in the client. /// The HTTP pipeline for sending and receiving REST requests and responses. /// The workspace development endpoint, for example https://myworkspace.dev.azuresynapse.net. - /// Api Version. - /// or is null. - public BigDataPoolsRestClient(ClientDiagnostics clientDiagnostics, HttpPipeline pipeline, Uri endpoint, string apiVersion = "2019-06-01-preview") + /// is null. + public BigDataPoolsRestClient(ClientDiagnostics clientDiagnostics, HttpPipeline pipeline, Uri endpoint) { this.endpoint = endpoint ?? throw new ArgumentNullException(nameof(endpoint)); - this.apiVersion = apiVersion ?? throw new ArgumentNullException(nameof(apiVersion)); _clientDiagnostics = clientDiagnostics; _pipeline = pipeline; } @@ -45,7 +42,7 @@ internal HttpMessage CreateListRequest() var uri = new RawRequestUriBuilder(); uri.Reset(endpoint); uri.AppendPath("/bigDataPools", false); - uri.AppendQuery("api-version", apiVersion, true); + uri.AppendQuery("api-version", "2020-12-01", true); request.Uri = uri; request.Headers.Add("Accept", "application/json"); return message; @@ -100,7 +97,7 @@ internal HttpMessage CreateGetRequest(string bigDataPoolName) uri.Reset(endpoint); uri.AppendPath("/bigDataPools/", false); uri.AppendPath(bigDataPoolName, true); - uri.AppendQuery("api-version", apiVersion, true); + uri.AppendQuery("api-version", "2020-12-01", true); request.Uri = uri; request.Headers.Add("Accept", "application/json"); return message; diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/DataFlowClient.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/DataFlowClient.cs index c56fc6e45fa0..ca0678cdbda8 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/DataFlowClient.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/DataFlowClient.cs @@ -46,17 +46,16 @@ public DataFlowClient(Uri endpoint, TokenCredential credential, ArtifactsClientO _clientDiagnostics = new ClientDiagnostics(options); string[] scopes = { "https://dev.azuresynapse.net/.default" }; _pipeline = HttpPipelineBuilder.Build(options, new BearerTokenAuthenticationPolicy(credential, scopes)); - RestClient = new DataFlowRestClient(_clientDiagnostics, _pipeline, endpoint, options.Version); + RestClient = new DataFlowRestClient(_clientDiagnostics, _pipeline, endpoint); } /// Initializes a new instance of DataFlowClient. /// The handler for diagnostic messaging in the client. /// The HTTP pipeline for sending and receiving REST requests and responses. /// The workspace development endpoint, for example https://myworkspace.dev.azuresynapse.net. - /// Api Version. - internal DataFlowClient(ClientDiagnostics clientDiagnostics, HttpPipeline pipeline, Uri endpoint, string apiVersion = "2019-06-01-preview") + internal DataFlowClient(ClientDiagnostics clientDiagnostics, HttpPipeline pipeline, Uri endpoint) { - RestClient = new DataFlowRestClient(clientDiagnostics, pipeline, endpoint, apiVersion); + RestClient = new DataFlowRestClient(clientDiagnostics, pipeline, endpoint); _clientDiagnostics = clientDiagnostics; _pipeline = pipeline; } diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/DataFlowDebugSessionClient.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/DataFlowDebugSessionClient.cs index b2a99b9f7440..38d4f640a439 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/DataFlowDebugSessionClient.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/DataFlowDebugSessionClient.cs @@ -46,17 +46,16 @@ public DataFlowDebugSessionClient(Uri endpoint, TokenCredential credential, Arti _clientDiagnostics = new ClientDiagnostics(options); string[] scopes = { "https://dev.azuresynapse.net/.default" }; _pipeline = HttpPipelineBuilder.Build(options, new BearerTokenAuthenticationPolicy(credential, scopes)); - RestClient = new DataFlowDebugSessionRestClient(_clientDiagnostics, _pipeline, endpoint, options.Version); + RestClient = new DataFlowDebugSessionRestClient(_clientDiagnostics, _pipeline, endpoint); } /// Initializes a new instance of DataFlowDebugSessionClient. /// The handler for diagnostic messaging in the client. /// The HTTP pipeline for sending and receiving REST requests and responses. /// The workspace development endpoint, for example https://myworkspace.dev.azuresynapse.net. - /// Api Version. - internal DataFlowDebugSessionClient(ClientDiagnostics clientDiagnostics, HttpPipeline pipeline, Uri endpoint, string apiVersion = "2019-06-01-preview") + internal DataFlowDebugSessionClient(ClientDiagnostics clientDiagnostics, HttpPipeline pipeline, Uri endpoint) { - RestClient = new DataFlowDebugSessionRestClient(clientDiagnostics, pipeline, endpoint, apiVersion); + RestClient = new DataFlowDebugSessionRestClient(clientDiagnostics, pipeline, endpoint); _clientDiagnostics = clientDiagnostics; _pipeline = pipeline; } diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/DataFlowDebugSessionRestClient.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/DataFlowDebugSessionRestClient.cs index e88e4547e4e3..b3e7a9fc90bf 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/DataFlowDebugSessionRestClient.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/DataFlowDebugSessionRestClient.cs @@ -19,7 +19,6 @@ namespace Azure.Analytics.Synapse.Artifacts internal partial class DataFlowDebugSessionRestClient { private Uri endpoint; - private string apiVersion; private ClientDiagnostics _clientDiagnostics; private HttpPipeline _pipeline; @@ -27,12 +26,10 @@ internal partial class DataFlowDebugSessionRestClient /// The handler for diagnostic messaging in the client. /// The HTTP pipeline for sending and receiving REST requests and responses. /// The workspace development endpoint, for example https://myworkspace.dev.azuresynapse.net. - /// Api Version. - /// or is null. - public DataFlowDebugSessionRestClient(ClientDiagnostics clientDiagnostics, HttpPipeline pipeline, Uri endpoint, string apiVersion = "2019-06-01-preview") + /// is null. + public DataFlowDebugSessionRestClient(ClientDiagnostics clientDiagnostics, HttpPipeline pipeline, Uri endpoint) { this.endpoint = endpoint ?? throw new ArgumentNullException(nameof(endpoint)); - this.apiVersion = apiVersion ?? throw new ArgumentNullException(nameof(apiVersion)); _clientDiagnostics = clientDiagnostics; _pipeline = pipeline; } @@ -45,7 +42,7 @@ internal HttpMessage CreateCreateDataFlowDebugSessionRequest(CreateDataFlowDebug var uri = new RawRequestUriBuilder(); uri.Reset(endpoint); uri.AppendPath("/createDataFlowDebugSession", false); - uri.AppendQuery("api-version", apiVersion, true); + uri.AppendQuery("api-version", "2020-12-01", true); request0.Uri = uri; request0.Headers.Add("Accept", "application/json"); request0.Headers.Add("Content-Type", "application/json"); @@ -111,7 +108,7 @@ internal HttpMessage CreateQueryDataFlowDebugSessionsByWorkspaceRequest() var uri = new RawRequestUriBuilder(); uri.Reset(endpoint); uri.AppendPath("/queryDataFlowDebugSessions", false); - uri.AppendQuery("api-version", apiVersion, true); + uri.AppendQuery("api-version", "2020-12-01", true); request.Uri = uri; request.Headers.Add("Accept", "application/json"); return message; @@ -165,7 +162,7 @@ internal HttpMessage CreateAddDataFlowRequest(DataFlowDebugPackage request) var uri = new RawRequestUriBuilder(); uri.Reset(endpoint); uri.AppendPath("/addDataFlowToDebugSession", false); - uri.AppendQuery("api-version", apiVersion, true); + uri.AppendQuery("api-version", "2020-12-01", true); request0.Uri = uri; request0.Headers.Add("Accept", "application/json"); request0.Headers.Add("Content-Type", "application/json"); @@ -237,7 +234,7 @@ internal HttpMessage CreateDeleteDataFlowDebugSessionRequest(DeleteDataFlowDebug var uri = new RawRequestUriBuilder(); uri.Reset(endpoint); uri.AppendPath("/deleteDataFlowDebugSession", false); - uri.AppendQuery("api-version", apiVersion, true); + uri.AppendQuery("api-version", "2020-12-01", true); request0.Uri = uri; request0.Headers.Add("Accept", "application/json"); request0.Headers.Add("Content-Type", "application/json"); @@ -299,7 +296,7 @@ internal HttpMessage CreateExecuteCommandRequest(DataFlowDebugCommandRequest req var uri = new RawRequestUriBuilder(); uri.Reset(endpoint); uri.AppendPath("/executeDataFlowDebugCommand", false); - uri.AppendQuery("api-version", apiVersion, true); + uri.AppendQuery("api-version", "2020-12-01", true); request0.Uri = uri; request0.Headers.Add("Accept", "application/json"); request0.Headers.Add("Content-Type", "application/json"); diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/DataFlowRestClient.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/DataFlowRestClient.cs index 4c504038caa7..a8bdd58e617d 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/DataFlowRestClient.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/DataFlowRestClient.cs @@ -19,7 +19,6 @@ namespace Azure.Analytics.Synapse.Artifacts internal partial class DataFlowRestClient { private Uri endpoint; - private string apiVersion; private ClientDiagnostics _clientDiagnostics; private HttpPipeline _pipeline; @@ -27,12 +26,10 @@ internal partial class DataFlowRestClient /// The handler for diagnostic messaging in the client. /// The HTTP pipeline for sending and receiving REST requests and responses. /// The workspace development endpoint, for example https://myworkspace.dev.azuresynapse.net. - /// Api Version. - /// or is null. - public DataFlowRestClient(ClientDiagnostics clientDiagnostics, HttpPipeline pipeline, Uri endpoint, string apiVersion = "2019-06-01-preview") + /// is null. + public DataFlowRestClient(ClientDiagnostics clientDiagnostics, HttpPipeline pipeline, Uri endpoint) { this.endpoint = endpoint ?? throw new ArgumentNullException(nameof(endpoint)); - this.apiVersion = apiVersion ?? throw new ArgumentNullException(nameof(apiVersion)); _clientDiagnostics = clientDiagnostics; _pipeline = pipeline; } @@ -46,7 +43,7 @@ internal HttpMessage CreateCreateOrUpdateDataFlowRequest(string dataFlowName, Da uri.Reset(endpoint); uri.AppendPath("/dataflows/", false); uri.AppendPath(dataFlowName, true); - uri.AppendQuery("api-version", apiVersion, true); + uri.AppendQuery("api-version", "2020-12-01", true); request.Uri = uri; if (ifMatch != null) { @@ -127,7 +124,7 @@ internal HttpMessage CreateGetDataFlowRequest(string dataFlowName, string ifNone uri.Reset(endpoint); uri.AppendPath("/dataflows/", false); uri.AppendPath(dataFlowName, true); - uri.AppendQuery("api-version", apiVersion, true); + uri.AppendQuery("api-version", "2020-12-01", true); request.Uri = uri; if (ifNoneMatch != null) { @@ -202,7 +199,7 @@ internal HttpMessage CreateDeleteDataFlowRequest(string dataFlowName) uri.Reset(endpoint); uri.AppendPath("/dataflows/", false); uri.AppendPath(dataFlowName, true); - uri.AppendQuery("api-version", apiVersion, true); + uri.AppendQuery("api-version", "2020-12-01", true); request.Uri = uri; request.Headers.Add("Accept", "application/json"); return message; @@ -266,7 +263,7 @@ internal HttpMessage CreateRenameDataFlowRequest(string dataFlowName, ArtifactRe uri.AppendPath("/dataflows/", false); uri.AppendPath(dataFlowName, true); uri.AppendPath("/rename", false); - uri.AppendQuery("api-version", apiVersion, true); + uri.AppendQuery("api-version", "2020-12-01", true); request0.Uri = uri; request0.Headers.Add("Accept", "application/json"); request0.Headers.Add("Content-Type", "application/json"); @@ -340,7 +337,7 @@ internal HttpMessage CreateGetDataFlowsByWorkspaceRequest() var uri = new RawRequestUriBuilder(); uri.Reset(endpoint); uri.AppendPath("/dataflows", false); - uri.AppendQuery("api-version", apiVersion, true); + uri.AppendQuery("api-version", "2020-12-01", true); request.Uri = uri; request.Headers.Add("Accept", "application/json"); return message; diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/DatasetClient.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/DatasetClient.cs index c525700e624e..03adf353d0f8 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/DatasetClient.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/DatasetClient.cs @@ -46,17 +46,16 @@ public DatasetClient(Uri endpoint, TokenCredential credential, ArtifactsClientOp _clientDiagnostics = new ClientDiagnostics(options); string[] scopes = { "https://dev.azuresynapse.net/.default" }; _pipeline = HttpPipelineBuilder.Build(options, new BearerTokenAuthenticationPolicy(credential, scopes)); - RestClient = new DatasetRestClient(_clientDiagnostics, _pipeline, endpoint, options.Version); + RestClient = new DatasetRestClient(_clientDiagnostics, _pipeline, endpoint); } /// Initializes a new instance of DatasetClient. /// The handler for diagnostic messaging in the client. /// The HTTP pipeline for sending and receiving REST requests and responses. /// The workspace development endpoint, for example https://myworkspace.dev.azuresynapse.net. - /// Api Version. - internal DatasetClient(ClientDiagnostics clientDiagnostics, HttpPipeline pipeline, Uri endpoint, string apiVersion = "2019-06-01-preview") + internal DatasetClient(ClientDiagnostics clientDiagnostics, HttpPipeline pipeline, Uri endpoint) { - RestClient = new DatasetRestClient(clientDiagnostics, pipeline, endpoint, apiVersion); + RestClient = new DatasetRestClient(clientDiagnostics, pipeline, endpoint); _clientDiagnostics = clientDiagnostics; _pipeline = pipeline; } diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/DatasetRestClient.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/DatasetRestClient.cs index 51fea7b39ff8..b01480c65da8 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/DatasetRestClient.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/DatasetRestClient.cs @@ -19,7 +19,6 @@ namespace Azure.Analytics.Synapse.Artifacts internal partial class DatasetRestClient { private Uri endpoint; - private string apiVersion; private ClientDiagnostics _clientDiagnostics; private HttpPipeline _pipeline; @@ -27,12 +26,10 @@ internal partial class DatasetRestClient /// The handler for diagnostic messaging in the client. /// The HTTP pipeline for sending and receiving REST requests and responses. /// The workspace development endpoint, for example https://myworkspace.dev.azuresynapse.net. - /// Api Version. - /// or is null. - public DatasetRestClient(ClientDiagnostics clientDiagnostics, HttpPipeline pipeline, Uri endpoint, string apiVersion = "2019-06-01-preview") + /// is null. + public DatasetRestClient(ClientDiagnostics clientDiagnostics, HttpPipeline pipeline, Uri endpoint) { this.endpoint = endpoint ?? throw new ArgumentNullException(nameof(endpoint)); - this.apiVersion = apiVersion ?? throw new ArgumentNullException(nameof(apiVersion)); _clientDiagnostics = clientDiagnostics; _pipeline = pipeline; } @@ -45,7 +42,7 @@ internal HttpMessage CreateGetDatasetsByWorkspaceRequest() var uri = new RawRequestUriBuilder(); uri.Reset(endpoint); uri.AppendPath("/datasets", false); - uri.AppendQuery("api-version", apiVersion, true); + uri.AppendQuery("api-version", "2020-12-01", true); request.Uri = uri; request.Headers.Add("Accept", "application/json"); return message; @@ -100,7 +97,7 @@ internal HttpMessage CreateCreateOrUpdateDatasetRequest(string datasetName, Data uri.Reset(endpoint); uri.AppendPath("/datasets/", false); uri.AppendPath(datasetName, true); - uri.AppendQuery("api-version", apiVersion, true); + uri.AppendQuery("api-version", "2020-12-01", true); request.Uri = uri; if (ifMatch != null) { @@ -181,7 +178,7 @@ internal HttpMessage CreateGetDatasetRequest(string datasetName, string ifNoneMa uri.Reset(endpoint); uri.AppendPath("/datasets/", false); uri.AppendPath(datasetName, true); - uri.AppendQuery("api-version", apiVersion, true); + uri.AppendQuery("api-version", "2020-12-01", true); request.Uri = uri; if (ifNoneMatch != null) { @@ -260,7 +257,7 @@ internal HttpMessage CreateDeleteDatasetRequest(string datasetName) uri.Reset(endpoint); uri.AppendPath("/datasets/", false); uri.AppendPath(datasetName, true); - uri.AppendQuery("api-version", apiVersion, true); + uri.AppendQuery("api-version", "2020-12-01", true); request.Uri = uri; request.Headers.Add("Accept", "application/json"); return message; @@ -324,7 +321,7 @@ internal HttpMessage CreateRenameDatasetRequest(string datasetName, ArtifactRena uri.AppendPath("/datasets/", false); uri.AppendPath(datasetName, true); uri.AppendPath("/rename", false); - uri.AppendQuery("api-version", apiVersion, true); + uri.AppendQuery("api-version", "2020-12-01", true); request0.Uri = uri; request0.Headers.Add("Accept", "application/json"); request0.Headers.Add("Content-Type", "application/json"); diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/IntegrationRuntimesClient.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/IntegrationRuntimesClient.cs index f133a2748977..7f9727193474 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/IntegrationRuntimesClient.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/IntegrationRuntimesClient.cs @@ -46,17 +46,16 @@ public IntegrationRuntimesClient(Uri endpoint, TokenCredential credential, Artif _clientDiagnostics = new ClientDiagnostics(options); string[] scopes = { "https://dev.azuresynapse.net/.default" }; _pipeline = HttpPipelineBuilder.Build(options, new BearerTokenAuthenticationPolicy(credential, scopes)); - RestClient = new IntegrationRuntimesRestClient(_clientDiagnostics, _pipeline, endpoint, options.Version); + RestClient = new IntegrationRuntimesRestClient(_clientDiagnostics, _pipeline, endpoint); } /// Initializes a new instance of IntegrationRuntimesClient. /// The handler for diagnostic messaging in the client. /// The HTTP pipeline for sending and receiving REST requests and responses. /// The workspace development endpoint, for example https://myworkspace.dev.azuresynapse.net. - /// Api Version. - internal IntegrationRuntimesClient(ClientDiagnostics clientDiagnostics, HttpPipeline pipeline, Uri endpoint, string apiVersion = "2019-06-01-preview") + internal IntegrationRuntimesClient(ClientDiagnostics clientDiagnostics, HttpPipeline pipeline, Uri endpoint) { - RestClient = new IntegrationRuntimesRestClient(clientDiagnostics, pipeline, endpoint, apiVersion); + RestClient = new IntegrationRuntimesRestClient(clientDiagnostics, pipeline, endpoint); _clientDiagnostics = clientDiagnostics; _pipeline = pipeline; } diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/IntegrationRuntimesRestClient.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/IntegrationRuntimesRestClient.cs index a47bcbeb1573..a7c1fe0e50bd 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/IntegrationRuntimesRestClient.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/IntegrationRuntimesRestClient.cs @@ -19,7 +19,6 @@ namespace Azure.Analytics.Synapse.Artifacts internal partial class IntegrationRuntimesRestClient { private Uri endpoint; - private string apiVersion; private ClientDiagnostics _clientDiagnostics; private HttpPipeline _pipeline; @@ -27,12 +26,10 @@ internal partial class IntegrationRuntimesRestClient /// The handler for diagnostic messaging in the client. /// The HTTP pipeline for sending and receiving REST requests and responses. /// The workspace development endpoint, for example https://myworkspace.dev.azuresynapse.net. - /// Api Version. - /// or is null. - public IntegrationRuntimesRestClient(ClientDiagnostics clientDiagnostics, HttpPipeline pipeline, Uri endpoint, string apiVersion = "2019-06-01-preview") + /// is null. + public IntegrationRuntimesRestClient(ClientDiagnostics clientDiagnostics, HttpPipeline pipeline, Uri endpoint) { this.endpoint = endpoint ?? throw new ArgumentNullException(nameof(endpoint)); - this.apiVersion = apiVersion ?? throw new ArgumentNullException(nameof(apiVersion)); _clientDiagnostics = clientDiagnostics; _pipeline = pipeline; } @@ -45,7 +42,7 @@ internal HttpMessage CreateListRequest() var uri = new RawRequestUriBuilder(); uri.Reset(endpoint); uri.AppendPath("/integrationRuntimes", false); - uri.AppendQuery("api-version", apiVersion, true); + uri.AppendQuery("api-version", "2020-12-01", true); request.Uri = uri; request.Headers.Add("Accept", "application/json"); return message; @@ -100,7 +97,7 @@ internal HttpMessage CreateGetRequest(string integrationRuntimeName) uri.Reset(endpoint); uri.AppendPath("/integrationRuntimes/", false); uri.AppendPath(integrationRuntimeName, true); - uri.AppendQuery("api-version", apiVersion, true); + uri.AppendQuery("api-version", "2020-12-01", true); request.Uri = uri; request.Headers.Add("Accept", "application/json"); return message; diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/KqlScriptClient.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/KqlScriptClient.cs new file mode 100644 index 000000000000..2cb386bef117 --- /dev/null +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/KqlScriptClient.cs @@ -0,0 +1,269 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System; +using System.Threading; +using System.Threading.Tasks; +using Azure; +using Azure.Analytics.Synapse.Artifacts.Models; +using Azure.Core; +using Azure.Core.Pipeline; + +namespace Azure.Analytics.Synapse.Artifacts +{ + /// The KqlScript service client. + public partial class KqlScriptClient + { + private readonly ClientDiagnostics _clientDiagnostics; + private readonly HttpPipeline _pipeline; + internal KqlScriptRestClient RestClient { get; } + + /// Initializes a new instance of KqlScriptClient for mocking. + protected KqlScriptClient() + { + } + + /// Initializes a new instance of KqlScriptClient. + /// The workspace development endpoint, for example https://myworkspace.dev.azuresynapse.net. + /// A credential used to authenticate to an Azure Service. + /// The options for configuring the client. + public KqlScriptClient(Uri endpoint, TokenCredential credential, ArtifactsClientOptions options = null) + { + if (endpoint == null) + { + throw new ArgumentNullException(nameof(endpoint)); + } + if (credential == null) + { + throw new ArgumentNullException(nameof(credential)); + } + + options ??= new ArtifactsClientOptions(); + _clientDiagnostics = new ClientDiagnostics(options); + string[] scopes = { "https://dev.azuresynapse.net/.default" }; + _pipeline = HttpPipelineBuilder.Build(options, new BearerTokenAuthenticationPolicy(credential, scopes)); + RestClient = new KqlScriptRestClient(_clientDiagnostics, _pipeline, endpoint); + } + + /// Initializes a new instance of KqlScriptClient. + /// The handler for diagnostic messaging in the client. + /// The HTTP pipeline for sending and receiving REST requests and responses. + /// The workspace development endpoint, for example https://myworkspace.dev.azuresynapse.net. + internal KqlScriptClient(ClientDiagnostics clientDiagnostics, HttpPipeline pipeline, Uri endpoint) + { + RestClient = new KqlScriptRestClient(clientDiagnostics, pipeline, endpoint); + _clientDiagnostics = clientDiagnostics; + _pipeline = pipeline; + } + + /// Get KQL script by name. + /// KQL script name. + /// The cancellation token to use. + public virtual async Task> GetByNameAsync(string kqlScriptName, CancellationToken cancellationToken = default) + { + using var scope = _clientDiagnostics.CreateScope("KqlScriptClient.GetByName"); + scope.Start(); + try + { + return await RestClient.GetByNameAsync(kqlScriptName, cancellationToken).ConfigureAwait(false); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + /// Get KQL script by name. + /// KQL script name. + /// The cancellation token to use. + public virtual Response GetByName(string kqlScriptName, CancellationToken cancellationToken = default) + { + using var scope = _clientDiagnostics.CreateScope("KqlScriptClient.GetByName"); + scope.Start(); + try + { + return RestClient.GetByName(kqlScriptName, cancellationToken); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + /// Creates or updates a KQL Script. + /// KQL script name. + /// KQL script. + /// The cancellation token to use. + /// or is null. + public virtual async Task StartCreateOrUpdateAsync(string kqlScriptName, KqlScriptResource kqlScript, CancellationToken cancellationToken = default) + { + if (kqlScriptName == null) + { + throw new ArgumentNullException(nameof(kqlScriptName)); + } + if (kqlScript == null) + { + throw new ArgumentNullException(nameof(kqlScript)); + } + + using var scope = _clientDiagnostics.CreateScope("KqlScriptClient.StartCreateOrUpdate"); + scope.Start(); + try + { + var originalResponse = await RestClient.CreateOrUpdateAsync(kqlScriptName, kqlScript, cancellationToken).ConfigureAwait(false); + return new KqlScriptCreateOrUpdateOperation(_clientDiagnostics, _pipeline, RestClient.CreateCreateOrUpdateRequest(kqlScriptName, kqlScript).Request, originalResponse); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + /// Creates or updates a KQL Script. + /// KQL script name. + /// KQL script. + /// The cancellation token to use. + /// or is null. + public virtual KqlScriptCreateOrUpdateOperation StartCreateOrUpdate(string kqlScriptName, KqlScriptResource kqlScript, CancellationToken cancellationToken = default) + { + if (kqlScriptName == null) + { + throw new ArgumentNullException(nameof(kqlScriptName)); + } + if (kqlScript == null) + { + throw new ArgumentNullException(nameof(kqlScript)); + } + + using var scope = _clientDiagnostics.CreateScope("KqlScriptClient.StartCreateOrUpdate"); + scope.Start(); + try + { + var originalResponse = RestClient.CreateOrUpdate(kqlScriptName, kqlScript, cancellationToken); + return new KqlScriptCreateOrUpdateOperation(_clientDiagnostics, _pipeline, RestClient.CreateCreateOrUpdateRequest(kqlScriptName, kqlScript).Request, originalResponse); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + /// Delete KQL script by name. + /// KQL script name. + /// The cancellation token to use. + /// is null. + public virtual async Task StartDeleteByNameAsync(string kqlScriptName, CancellationToken cancellationToken = default) + { + if (kqlScriptName == null) + { + throw new ArgumentNullException(nameof(kqlScriptName)); + } + + using var scope = _clientDiagnostics.CreateScope("KqlScriptClient.StartDeleteByName"); + scope.Start(); + try + { + var originalResponse = await RestClient.DeleteByNameAsync(kqlScriptName, cancellationToken).ConfigureAwait(false); + return new KqlScriptDeleteByNameOperation(_clientDiagnostics, _pipeline, RestClient.CreateDeleteByNameRequest(kqlScriptName).Request, originalResponse); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + /// Delete KQL script by name. + /// KQL script name. + /// The cancellation token to use. + /// is null. + public virtual KqlScriptDeleteByNameOperation StartDeleteByName(string kqlScriptName, CancellationToken cancellationToken = default) + { + if (kqlScriptName == null) + { + throw new ArgumentNullException(nameof(kqlScriptName)); + } + + using var scope = _clientDiagnostics.CreateScope("KqlScriptClient.StartDeleteByName"); + scope.Start(); + try + { + var originalResponse = RestClient.DeleteByName(kqlScriptName, cancellationToken); + return new KqlScriptDeleteByNameOperation(_clientDiagnostics, _pipeline, RestClient.CreateDeleteByNameRequest(kqlScriptName).Request, originalResponse); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + /// Rename KQL script. + /// KQL script name. + /// Rename request. + /// The cancellation token to use. + /// or is null. + public virtual async Task StartRenameAsync(string kqlScriptName, ArtifactRenameRequest renameRequest, CancellationToken cancellationToken = default) + { + if (kqlScriptName == null) + { + throw new ArgumentNullException(nameof(kqlScriptName)); + } + if (renameRequest == null) + { + throw new ArgumentNullException(nameof(renameRequest)); + } + + using var scope = _clientDiagnostics.CreateScope("KqlScriptClient.StartRename"); + scope.Start(); + try + { + var originalResponse = await RestClient.RenameAsync(kqlScriptName, renameRequest, cancellationToken).ConfigureAwait(false); + return new KqlScriptRenameOperation(_clientDiagnostics, _pipeline, RestClient.CreateRenameRequest(kqlScriptName, renameRequest).Request, originalResponse); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + /// Rename KQL script. + /// KQL script name. + /// Rename request. + /// The cancellation token to use. + /// or is null. + public virtual KqlScriptRenameOperation StartRename(string kqlScriptName, ArtifactRenameRequest renameRequest, CancellationToken cancellationToken = default) + { + if (kqlScriptName == null) + { + throw new ArgumentNullException(nameof(kqlScriptName)); + } + if (renameRequest == null) + { + throw new ArgumentNullException(nameof(renameRequest)); + } + + using var scope = _clientDiagnostics.CreateScope("KqlScriptClient.StartRename"); + scope.Start(); + try + { + var originalResponse = RestClient.Rename(kqlScriptName, renameRequest, cancellationToken); + return new KqlScriptRenameOperation(_clientDiagnostics, _pipeline, RestClient.CreateRenameRequest(kqlScriptName, renameRequest).Request, originalResponse); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + } +} diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/KqlScriptCreateOrUpdateOperation.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/KqlScriptCreateOrUpdateOperation.cs new file mode 100644 index 000000000000..4b58f186b91e --- /dev/null +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/KqlScriptCreateOrUpdateOperation.cs @@ -0,0 +1,73 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System; +using System.Text.Json; +using System.Threading; +using System.Threading.Tasks; +using Azure; +using Azure.Analytics.Synapse.Artifacts.Models; +using Azure.Core; +using Azure.Core.Pipeline; + +namespace Azure.Analytics.Synapse.Artifacts +{ + /// Creates or updates a KQL Script. + public partial class KqlScriptCreateOrUpdateOperation : Operation, IOperationSource + { + private readonly OperationInternals _operation; + + /// Initializes a new instance of KqlScriptCreateOrUpdateOperation for mocking. + protected KqlScriptCreateOrUpdateOperation() + { + } + + internal KqlScriptCreateOrUpdateOperation(ClientDiagnostics clientDiagnostics, HttpPipeline pipeline, Request request, Response response) + { + _operation = new OperationInternals(this, clientDiagnostics, pipeline, request, response, OperationFinalStateVia.Location, "KqlScriptCreateOrUpdateOperation"); + } + + /// + public override string Id => _operation.Id; + + /// + public override KqlScriptResource Value => _operation.Value; + + /// + public override bool HasCompleted => _operation.HasCompleted; + + /// + public override bool HasValue => _operation.HasValue; + + /// + public override Response GetRawResponse() => _operation.GetRawResponse(); + + /// + public override Response UpdateStatus(CancellationToken cancellationToken = default) => _operation.UpdateStatus(cancellationToken); + + /// + public override ValueTask UpdateStatusAsync(CancellationToken cancellationToken = default) => _operation.UpdateStatusAsync(cancellationToken); + + /// + public override ValueTask> WaitForCompletionAsync(CancellationToken cancellationToken = default) => _operation.WaitForCompletionAsync(cancellationToken); + + /// + public override ValueTask> WaitForCompletionAsync(TimeSpan pollingInterval, CancellationToken cancellationToken = default) => _operation.WaitForCompletionAsync(pollingInterval, cancellationToken); + + KqlScriptResource IOperationSource.CreateResult(Response response, CancellationToken cancellationToken) + { + using var document = JsonDocument.Parse(response.ContentStream); + return KqlScriptResource.DeserializeKqlScriptResource(document.RootElement); + } + + async ValueTask IOperationSource.CreateResultAsync(Response response, CancellationToken cancellationToken) + { + using var document = await JsonDocument.ParseAsync(response.ContentStream, default, cancellationToken).ConfigureAwait(false); + return KqlScriptResource.DeserializeKqlScriptResource(document.RootElement); + } + } +} diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/KqlScriptDeleteByNameOperation.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/KqlScriptDeleteByNameOperation.cs new file mode 100644 index 000000000000..f98ce108cc98 --- /dev/null +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/KqlScriptDeleteByNameOperation.cs @@ -0,0 +1,53 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System; +using System.Threading; +using System.Threading.Tasks; +using Azure; +using Azure.Core; +using Azure.Core.Pipeline; + +namespace Azure.Analytics.Synapse.Artifacts +{ + /// Delete KQL script by name. + public partial class KqlScriptDeleteByNameOperation : Operation + { + private readonly OperationInternals _operation; + + /// Initializes a new instance of KqlScriptDeleteByNameOperation for mocking. + protected KqlScriptDeleteByNameOperation() + { + } + + internal KqlScriptDeleteByNameOperation(ClientDiagnostics clientDiagnostics, HttpPipeline pipeline, Request request, Response response) + { + _operation = new OperationInternals(clientDiagnostics, pipeline, request, response, OperationFinalStateVia.Location, "KqlScriptDeleteByNameOperation"); + } + + /// + public override string Id => _operation.Id; + + /// + public override bool HasCompleted => _operation.HasCompleted; + + /// + public override Response GetRawResponse() => _operation.GetRawResponse(); + + /// + public override Response UpdateStatus(CancellationToken cancellationToken = default) => _operation.UpdateStatus(cancellationToken); + + /// + public override ValueTask UpdateStatusAsync(CancellationToken cancellationToken = default) => _operation.UpdateStatusAsync(cancellationToken); + + /// + public override ValueTask WaitForCompletionResponseAsync(CancellationToken cancellationToken = default) => _operation.WaitForCompletionResponseAsync(cancellationToken); + + /// + public override ValueTask WaitForCompletionResponseAsync(TimeSpan pollingInterval, CancellationToken cancellationToken = default) => _operation.WaitForCompletionResponseAsync(pollingInterval, cancellationToken); + } +} diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/KqlScriptRenameOperation.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/KqlScriptRenameOperation.cs new file mode 100644 index 000000000000..b7e76115a45a --- /dev/null +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/KqlScriptRenameOperation.cs @@ -0,0 +1,53 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System; +using System.Threading; +using System.Threading.Tasks; +using Azure; +using Azure.Core; +using Azure.Core.Pipeline; + +namespace Azure.Analytics.Synapse.Artifacts +{ + /// Rename KQL script. + public partial class KqlScriptRenameOperation : Operation + { + private readonly OperationInternals _operation; + + /// Initializes a new instance of KqlScriptRenameOperation for mocking. + protected KqlScriptRenameOperation() + { + } + + internal KqlScriptRenameOperation(ClientDiagnostics clientDiagnostics, HttpPipeline pipeline, Request request, Response response) + { + _operation = new OperationInternals(clientDiagnostics, pipeline, request, response, OperationFinalStateVia.Location, "KqlScriptRenameOperation"); + } + + /// + public override string Id => _operation.Id; + + /// + public override bool HasCompleted => _operation.HasCompleted; + + /// + public override Response GetRawResponse() => _operation.GetRawResponse(); + + /// + public override Response UpdateStatus(CancellationToken cancellationToken = default) => _operation.UpdateStatus(cancellationToken); + + /// + public override ValueTask UpdateStatusAsync(CancellationToken cancellationToken = default) => _operation.UpdateStatusAsync(cancellationToken); + + /// + public override ValueTask WaitForCompletionResponseAsync(CancellationToken cancellationToken = default) => _operation.WaitForCompletionResponseAsync(cancellationToken); + + /// + public override ValueTask WaitForCompletionResponseAsync(TimeSpan pollingInterval, CancellationToken cancellationToken = default) => _operation.WaitForCompletionResponseAsync(pollingInterval, cancellationToken); + } +} diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/KqlScriptRestClient.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/KqlScriptRestClient.cs new file mode 100644 index 000000000000..29092cc1ac6a --- /dev/null +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/KqlScriptRestClient.cs @@ -0,0 +1,320 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System; +using System.Text.Json; +using System.Threading; +using System.Threading.Tasks; +using Azure; +using Azure.Analytics.Synapse.Artifacts.Models; +using Azure.Core; +using Azure.Core.Pipeline; + +namespace Azure.Analytics.Synapse.Artifacts +{ + internal partial class KqlScriptRestClient + { + private Uri endpoint; + private ClientDiagnostics _clientDiagnostics; + private HttpPipeline _pipeline; + + /// Initializes a new instance of KqlScriptRestClient. + /// The handler for diagnostic messaging in the client. + /// The HTTP pipeline for sending and receiving REST requests and responses. + /// The workspace development endpoint, for example https://myworkspace.dev.azuresynapse.net. + /// is null. + public KqlScriptRestClient(ClientDiagnostics clientDiagnostics, HttpPipeline pipeline, Uri endpoint) + { + this.endpoint = endpoint ?? throw new ArgumentNullException(nameof(endpoint)); + _clientDiagnostics = clientDiagnostics; + _pipeline = pipeline; + } + + internal HttpMessage CreateCreateOrUpdateRequest(string kqlScriptName, KqlScriptResource kqlScript) + { + var message = _pipeline.CreateMessage(); + var request = message.Request; + request.Method = RequestMethod.Put; + var uri = new RawRequestUriBuilder(); + uri.Reset(endpoint); + uri.AppendPath("/kqlScripts/", false); + uri.AppendPath(kqlScriptName, true); + uri.AppendQuery("api-version", "2021-06-01-preview", true); + request.Uri = uri; + request.Headers.Add("Accept", "application/json"); + request.Headers.Add("Content-Type", "application/json"); + var content = new Utf8JsonRequestContent(); + content.JsonWriter.WriteObjectValue(kqlScript); + request.Content = content; + return message; + } + + /// Creates or updates a KQL Script. + /// KQL script name. + /// KQL script. + /// The cancellation token to use. + /// or is null. + public async Task CreateOrUpdateAsync(string kqlScriptName, KqlScriptResource kqlScript, CancellationToken cancellationToken = default) + { + if (kqlScriptName == null) + { + throw new ArgumentNullException(nameof(kqlScriptName)); + } + if (kqlScript == null) + { + throw new ArgumentNullException(nameof(kqlScript)); + } + + using var message = CreateCreateOrUpdateRequest(kqlScriptName, kqlScript); + await _pipeline.SendAsync(message, cancellationToken).ConfigureAwait(false); + switch (message.Response.Status) + { + case 200: + case 202: + return message.Response; + default: + throw await _clientDiagnostics.CreateRequestFailedExceptionAsync(message.Response).ConfigureAwait(false); + } + } + + /// Creates or updates a KQL Script. + /// KQL script name. + /// KQL script. + /// The cancellation token to use. + /// or is null. + public Response CreateOrUpdate(string kqlScriptName, KqlScriptResource kqlScript, CancellationToken cancellationToken = default) + { + if (kqlScriptName == null) + { + throw new ArgumentNullException(nameof(kqlScriptName)); + } + if (kqlScript == null) + { + throw new ArgumentNullException(nameof(kqlScript)); + } + + using var message = CreateCreateOrUpdateRequest(kqlScriptName, kqlScript); + _pipeline.Send(message, cancellationToken); + switch (message.Response.Status) + { + case 200: + case 202: + return message.Response; + default: + throw _clientDiagnostics.CreateRequestFailedException(message.Response); + } + } + + internal HttpMessage CreateGetByNameRequest(string kqlScriptName) + { + var message = _pipeline.CreateMessage(); + var request = message.Request; + request.Method = RequestMethod.Get; + var uri = new RawRequestUriBuilder(); + uri.Reset(endpoint); + uri.AppendPath("/kqlScripts/", false); + uri.AppendPath(kqlScriptName, true); + uri.AppendQuery("api-version", "2021-06-01-preview", true); + request.Uri = uri; + request.Headers.Add("Accept", "application/json"); + return message; + } + + /// Get KQL script by name. + /// KQL script name. + /// The cancellation token to use. + /// is null. + public async Task> GetByNameAsync(string kqlScriptName, CancellationToken cancellationToken = default) + { + if (kqlScriptName == null) + { + throw new ArgumentNullException(nameof(kqlScriptName)); + } + + using var message = CreateGetByNameRequest(kqlScriptName); + await _pipeline.SendAsync(message, cancellationToken).ConfigureAwait(false); + switch (message.Response.Status) + { + case 200: + { + KqlScriptResource value = default; + using var document = await JsonDocument.ParseAsync(message.Response.ContentStream, default, cancellationToken).ConfigureAwait(false); + value = KqlScriptResource.DeserializeKqlScriptResource(document.RootElement); + return Response.FromValue(value, message.Response); + } + default: + throw await _clientDiagnostics.CreateRequestFailedExceptionAsync(message.Response).ConfigureAwait(false); + } + } + + /// Get KQL script by name. + /// KQL script name. + /// The cancellation token to use. + /// is null. + public Response GetByName(string kqlScriptName, CancellationToken cancellationToken = default) + { + if (kqlScriptName == null) + { + throw new ArgumentNullException(nameof(kqlScriptName)); + } + + using var message = CreateGetByNameRequest(kqlScriptName); + _pipeline.Send(message, cancellationToken); + switch (message.Response.Status) + { + case 200: + { + KqlScriptResource value = default; + using var document = JsonDocument.Parse(message.Response.ContentStream); + value = KqlScriptResource.DeserializeKqlScriptResource(document.RootElement); + return Response.FromValue(value, message.Response); + } + default: + throw _clientDiagnostics.CreateRequestFailedException(message.Response); + } + } + + internal HttpMessage CreateDeleteByNameRequest(string kqlScriptName) + { + var message = _pipeline.CreateMessage(); + var request = message.Request; + request.Method = RequestMethod.Delete; + var uri = new RawRequestUriBuilder(); + uri.Reset(endpoint); + uri.AppendPath("/kqlScripts/", false); + uri.AppendPath(kqlScriptName, true); + uri.AppendQuery("api-version", "2021-06-01-preview", true); + request.Uri = uri; + request.Headers.Add("Accept", "application/json"); + return message; + } + + /// Delete KQL script by name. + /// KQL script name. + /// The cancellation token to use. + /// is null. + public async Task DeleteByNameAsync(string kqlScriptName, CancellationToken cancellationToken = default) + { + if (kqlScriptName == null) + { + throw new ArgumentNullException(nameof(kqlScriptName)); + } + + using var message = CreateDeleteByNameRequest(kqlScriptName); + await _pipeline.SendAsync(message, cancellationToken).ConfigureAwait(false); + switch (message.Response.Status) + { + case 200: + case 202: + case 204: + return message.Response; + default: + throw await _clientDiagnostics.CreateRequestFailedExceptionAsync(message.Response).ConfigureAwait(false); + } + } + + /// Delete KQL script by name. + /// KQL script name. + /// The cancellation token to use. + /// is null. + public Response DeleteByName(string kqlScriptName, CancellationToken cancellationToken = default) + { + if (kqlScriptName == null) + { + throw new ArgumentNullException(nameof(kqlScriptName)); + } + + using var message = CreateDeleteByNameRequest(kqlScriptName); + _pipeline.Send(message, cancellationToken); + switch (message.Response.Status) + { + case 200: + case 202: + case 204: + return message.Response; + default: + throw _clientDiagnostics.CreateRequestFailedException(message.Response); + } + } + + internal HttpMessage CreateRenameRequest(string kqlScriptName, ArtifactRenameRequest renameRequest) + { + var message = _pipeline.CreateMessage(); + var request = message.Request; + request.Method = RequestMethod.Post; + var uri = new RawRequestUriBuilder(); + uri.Reset(endpoint); + uri.AppendPath("/kqlScripts/", false); + uri.AppendPath(kqlScriptName, true); + uri.AppendPath("/rename", false); + uri.AppendQuery("api-version", "2021-06-01-preview", true); + request.Uri = uri; + request.Headers.Add("Accept", "application/json"); + request.Headers.Add("Content-Type", "application/json"); + var content = new Utf8JsonRequestContent(); + content.JsonWriter.WriteObjectValue(renameRequest); + request.Content = content; + return message; + } + + /// Rename KQL script. + /// KQL script name. + /// Rename request. + /// The cancellation token to use. + /// or is null. + public async Task RenameAsync(string kqlScriptName, ArtifactRenameRequest renameRequest, CancellationToken cancellationToken = default) + { + if (kqlScriptName == null) + { + throw new ArgumentNullException(nameof(kqlScriptName)); + } + if (renameRequest == null) + { + throw new ArgumentNullException(nameof(renameRequest)); + } + + using var message = CreateRenameRequest(kqlScriptName, renameRequest); + await _pipeline.SendAsync(message, cancellationToken).ConfigureAwait(false); + switch (message.Response.Status) + { + case 200: + case 202: + return message.Response; + default: + throw await _clientDiagnostics.CreateRequestFailedExceptionAsync(message.Response).ConfigureAwait(false); + } + } + + /// Rename KQL script. + /// KQL script name. + /// Rename request. + /// The cancellation token to use. + /// or is null. + public Response Rename(string kqlScriptName, ArtifactRenameRequest renameRequest, CancellationToken cancellationToken = default) + { + if (kqlScriptName == null) + { + throw new ArgumentNullException(nameof(kqlScriptName)); + } + if (renameRequest == null) + { + throw new ArgumentNullException(nameof(renameRequest)); + } + + using var message = CreateRenameRequest(kqlScriptName, renameRequest); + _pipeline.Send(message, cancellationToken); + switch (message.Response.Status) + { + case 200: + case 202: + return message.Response; + default: + throw _clientDiagnostics.CreateRequestFailedException(message.Response); + } + } + } +} diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/KqlScriptsClient.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/KqlScriptsClient.cs new file mode 100644 index 000000000000..3bdfef3311e8 --- /dev/null +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/KqlScriptsClient.cs @@ -0,0 +1,137 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System; +using System.Threading; +using System.Threading.Tasks; +using Azure; +using Azure.Analytics.Synapse.Artifacts.Models; +using Azure.Core; +using Azure.Core.Pipeline; + +namespace Azure.Analytics.Synapse.Artifacts +{ + /// The KqlScripts service client. + public partial class KqlScriptsClient + { + private readonly ClientDiagnostics _clientDiagnostics; + private readonly HttpPipeline _pipeline; + internal KqlScriptsRestClient RestClient { get; } + + /// Initializes a new instance of KqlScriptsClient for mocking. + protected KqlScriptsClient() + { + } + + /// Initializes a new instance of KqlScriptsClient. + /// The workspace development endpoint, for example https://myworkspace.dev.azuresynapse.net. + /// A credential used to authenticate to an Azure Service. + /// The options for configuring the client. + public KqlScriptsClient(Uri endpoint, TokenCredential credential, ArtifactsClientOptions options = null) + { + if (endpoint == null) + { + throw new ArgumentNullException(nameof(endpoint)); + } + if (credential == null) + { + throw new ArgumentNullException(nameof(credential)); + } + + options ??= new ArtifactsClientOptions(); + _clientDiagnostics = new ClientDiagnostics(options); + string[] scopes = { "https://dev.azuresynapse.net/.default" }; + _pipeline = HttpPipelineBuilder.Build(options, new BearerTokenAuthenticationPolicy(credential, scopes)); + RestClient = new KqlScriptsRestClient(_clientDiagnostics, _pipeline, endpoint); + } + + /// Initializes a new instance of KqlScriptsClient. + /// The handler for diagnostic messaging in the client. + /// The HTTP pipeline for sending and receiving REST requests and responses. + /// The workspace development endpoint, for example https://myworkspace.dev.azuresynapse.net. + internal KqlScriptsClient(ClientDiagnostics clientDiagnostics, HttpPipeline pipeline, Uri endpoint) + { + RestClient = new KqlScriptsRestClient(clientDiagnostics, pipeline, endpoint); + _clientDiagnostics = clientDiagnostics; + _pipeline = pipeline; + } + + /// Get all KQL scripts. + /// The cancellation token to use. + public virtual AsyncPageable GetAllAsync(CancellationToken cancellationToken = default) + { + async Task> FirstPageFunc(int? pageSizeHint) + { + using var scope = _clientDiagnostics.CreateScope("KqlScriptsClient.GetAll"); + scope.Start(); + try + { + var response = await RestClient.GetAllAsync(cancellationToken).ConfigureAwait(false); + return Page.FromValues(response.Value.Value, response.Value.NextLink, response.GetRawResponse()); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + async Task> NextPageFunc(string nextLink, int? pageSizeHint) + { + using var scope = _clientDiagnostics.CreateScope("KqlScriptsClient.GetAll"); + scope.Start(); + try + { + var response = await RestClient.GetAllNextPageAsync(nextLink, cancellationToken).ConfigureAwait(false); + return Page.FromValues(response.Value.Value, response.Value.NextLink, response.GetRawResponse()); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + return PageableHelpers.CreateAsyncEnumerable(FirstPageFunc, NextPageFunc); + } + + /// Get all KQL scripts. + /// The cancellation token to use. + public virtual Pageable GetAll(CancellationToken cancellationToken = default) + { + Page FirstPageFunc(int? pageSizeHint) + { + using var scope = _clientDiagnostics.CreateScope("KqlScriptsClient.GetAll"); + scope.Start(); + try + { + var response = RestClient.GetAll(cancellationToken); + return Page.FromValues(response.Value.Value, response.Value.NextLink, response.GetRawResponse()); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + Page NextPageFunc(string nextLink, int? pageSizeHint) + { + using var scope = _clientDiagnostics.CreateScope("KqlScriptsClient.GetAll"); + scope.Start(); + try + { + var response = RestClient.GetAllNextPage(nextLink, cancellationToken); + return Page.FromValues(response.Value.Value, response.Value.NextLink, response.GetRawResponse()); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + return PageableHelpers.CreateEnumerable(FirstPageFunc, NextPageFunc); + } + } +} diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/KqlScriptsRestClient.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/KqlScriptsRestClient.cs new file mode 100644 index 000000000000..668b1e8fa8f5 --- /dev/null +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/KqlScriptsRestClient.cs @@ -0,0 +1,158 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System; +using System.Text.Json; +using System.Threading; +using System.Threading.Tasks; +using Azure; +using Azure.Analytics.Synapse.Artifacts.Models; +using Azure.Core; +using Azure.Core.Pipeline; + +namespace Azure.Analytics.Synapse.Artifacts +{ + internal partial class KqlScriptsRestClient + { + private Uri endpoint; + private ClientDiagnostics _clientDiagnostics; + private HttpPipeline _pipeline; + + /// Initializes a new instance of KqlScriptsRestClient. + /// The handler for diagnostic messaging in the client. + /// The HTTP pipeline for sending and receiving REST requests and responses. + /// The workspace development endpoint, for example https://myworkspace.dev.azuresynapse.net. + /// is null. + public KqlScriptsRestClient(ClientDiagnostics clientDiagnostics, HttpPipeline pipeline, Uri endpoint) + { + this.endpoint = endpoint ?? throw new ArgumentNullException(nameof(endpoint)); + _clientDiagnostics = clientDiagnostics; + _pipeline = pipeline; + } + + internal HttpMessage CreateGetAllRequest() + { + var message = _pipeline.CreateMessage(); + var request = message.Request; + request.Method = RequestMethod.Get; + var uri = new RawRequestUriBuilder(); + uri.Reset(endpoint); + uri.AppendPath("/kqlScripts", false); + uri.AppendQuery("api-version", "2021-06-01-preview", true); + request.Uri = uri; + request.Headers.Add("Accept", "application/json"); + return message; + } + + /// Get all KQL scripts. + /// The cancellation token to use. + public async Task> GetAllAsync(CancellationToken cancellationToken = default) + { + using var message = CreateGetAllRequest(); + await _pipeline.SendAsync(message, cancellationToken).ConfigureAwait(false); + switch (message.Response.Status) + { + case 200: + { + KqlScriptsResourceCollectionResponse value = default; + using var document = await JsonDocument.ParseAsync(message.Response.ContentStream, default, cancellationToken).ConfigureAwait(false); + value = KqlScriptsResourceCollectionResponse.DeserializeKqlScriptsResourceCollectionResponse(document.RootElement); + return Response.FromValue(value, message.Response); + } + default: + throw await _clientDiagnostics.CreateRequestFailedExceptionAsync(message.Response).ConfigureAwait(false); + } + } + + /// Get all KQL scripts. + /// The cancellation token to use. + public Response GetAll(CancellationToken cancellationToken = default) + { + using var message = CreateGetAllRequest(); + _pipeline.Send(message, cancellationToken); + switch (message.Response.Status) + { + case 200: + { + KqlScriptsResourceCollectionResponse value = default; + using var document = JsonDocument.Parse(message.Response.ContentStream); + value = KqlScriptsResourceCollectionResponse.DeserializeKqlScriptsResourceCollectionResponse(document.RootElement); + return Response.FromValue(value, message.Response); + } + default: + throw _clientDiagnostics.CreateRequestFailedException(message.Response); + } + } + + internal HttpMessage CreateGetAllNextPageRequest(string nextLink) + { + var message = _pipeline.CreateMessage(); + var request = message.Request; + request.Method = RequestMethod.Get; + var uri = new RawRequestUriBuilder(); + uri.Reset(endpoint); + uri.AppendRawNextLink(nextLink, false); + request.Uri = uri; + request.Headers.Add("Accept", "application/json"); + return message; + } + + /// Get all KQL scripts. + /// The URL to the next page of results. + /// The cancellation token to use. + /// is null. + public async Task> GetAllNextPageAsync(string nextLink, CancellationToken cancellationToken = default) + { + if (nextLink == null) + { + throw new ArgumentNullException(nameof(nextLink)); + } + + using var message = CreateGetAllNextPageRequest(nextLink); + await _pipeline.SendAsync(message, cancellationToken).ConfigureAwait(false); + switch (message.Response.Status) + { + case 200: + { + KqlScriptsResourceCollectionResponse value = default; + using var document = await JsonDocument.ParseAsync(message.Response.ContentStream, default, cancellationToken).ConfigureAwait(false); + value = KqlScriptsResourceCollectionResponse.DeserializeKqlScriptsResourceCollectionResponse(document.RootElement); + return Response.FromValue(value, message.Response); + } + default: + throw await _clientDiagnostics.CreateRequestFailedExceptionAsync(message.Response).ConfigureAwait(false); + } + } + + /// Get all KQL scripts. + /// The URL to the next page of results. + /// The cancellation token to use. + /// is null. + public Response GetAllNextPage(string nextLink, CancellationToken cancellationToken = default) + { + if (nextLink == null) + { + throw new ArgumentNullException(nameof(nextLink)); + } + + using var message = CreateGetAllNextPageRequest(nextLink); + _pipeline.Send(message, cancellationToken); + switch (message.Response.Status) + { + case 200: + { + KqlScriptsResourceCollectionResponse value = default; + using var document = JsonDocument.Parse(message.Response.ContentStream); + value = KqlScriptsResourceCollectionResponse.DeserializeKqlScriptsResourceCollectionResponse(document.RootElement); + return Response.FromValue(value, message.Response); + } + default: + throw _clientDiagnostics.CreateRequestFailedException(message.Response); + } + } + } +} diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/LibraryClient.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/LibraryClient.cs index 3f1eba4fd538..ed640618f774 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/LibraryClient.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/LibraryClient.cs @@ -47,17 +47,16 @@ public LibraryClient(Uri endpoint, TokenCredential credential, ArtifactsClientOp _clientDiagnostics = new ClientDiagnostics(options); string[] scopes = { "https://dev.azuresynapse.net/.default" }; _pipeline = HttpPipelineBuilder.Build(options, new BearerTokenAuthenticationPolicy(credential, scopes)); - RestClient = new LibraryRestClient(_clientDiagnostics, _pipeline, endpoint, options.Version); + RestClient = new LibraryRestClient(_clientDiagnostics, _pipeline, endpoint); } /// Initializes a new instance of LibraryClient. /// The handler for diagnostic messaging in the client. /// The HTTP pipeline for sending and receiving REST requests and responses. /// The workspace development endpoint, for example https://myworkspace.dev.azuresynapse.net. - /// Api Version. - internal LibraryClient(ClientDiagnostics clientDiagnostics, HttpPipeline pipeline, Uri endpoint, string apiVersion = "2019-06-01-preview") + internal LibraryClient(ClientDiagnostics clientDiagnostics, HttpPipeline pipeline, Uri endpoint) { - RestClient = new LibraryRestClient(clientDiagnostics, pipeline, endpoint, apiVersion); + RestClient = new LibraryRestClient(clientDiagnostics, pipeline, endpoint); _clientDiagnostics = clientDiagnostics; _pipeline = pipeline; } diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/LibraryRestClient.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/LibraryRestClient.cs index 2228e3aa46b9..bc6946a14149 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/LibraryRestClient.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/LibraryRestClient.cs @@ -20,7 +20,6 @@ namespace Azure.Analytics.Synapse.Artifacts internal partial class LibraryRestClient { private Uri endpoint; - private string apiVersion; private ClientDiagnostics _clientDiagnostics; private HttpPipeline _pipeline; @@ -28,12 +27,10 @@ internal partial class LibraryRestClient /// The handler for diagnostic messaging in the client. /// The HTTP pipeline for sending and receiving REST requests and responses. /// The workspace development endpoint, for example https://myworkspace.dev.azuresynapse.net. - /// Api Version. - /// or is null. - public LibraryRestClient(ClientDiagnostics clientDiagnostics, HttpPipeline pipeline, Uri endpoint, string apiVersion = "2019-06-01-preview") + /// is null. + public LibraryRestClient(ClientDiagnostics clientDiagnostics, HttpPipeline pipeline, Uri endpoint) { this.endpoint = endpoint ?? throw new ArgumentNullException(nameof(endpoint)); - this.apiVersion = apiVersion ?? throw new ArgumentNullException(nameof(apiVersion)); _clientDiagnostics = clientDiagnostics; _pipeline = pipeline; } @@ -46,7 +43,7 @@ internal HttpMessage CreateListRequest() var uri = new RawRequestUriBuilder(); uri.Reset(endpoint); uri.AppendPath("/libraries", false); - uri.AppendQuery("api-version", apiVersion, true); + uri.AppendQuery("api-version", "2020-12-01", true); request.Uri = uri; request.Headers.Add("Accept", "application/json"); return message; @@ -102,7 +99,7 @@ internal HttpMessage CreateFlushRequest(string libraryName) uri.AppendPath("/libraries/", false); uri.AppendPath(libraryName, true); uri.AppendPath("/flush", false); - uri.AppendQuery("api-version", apiVersion, true); + uri.AppendQuery("api-version", "2020-12-01", true); request.Uri = uri; request.Headers.Add("Accept", "application/json"); return message; @@ -163,7 +160,7 @@ internal HttpMessage CreateGetOperationResultRequest(string operationId) uri.Reset(endpoint); uri.AppendPath("/libraryOperationResults/", false); uri.AppendPath(operationId, true); - uri.AppendQuery("api-version", apiVersion, true); + uri.AppendQuery("api-version", "2020-12-01", true); request.Uri = uri; request.Headers.Add("Accept", "application/json"); return message; @@ -246,7 +243,7 @@ internal HttpMessage CreateDeleteRequest(string libraryName) uri.Reset(endpoint); uri.AppendPath("/libraries/", false); uri.AppendPath(libraryName, true); - uri.AppendQuery("api-version", apiVersion, true); + uri.AppendQuery("api-version", "2020-12-01", true); request.Uri = uri; request.Headers.Add("Accept", "application/json"); return message; @@ -309,7 +306,7 @@ internal HttpMessage CreateGetRequest(string libraryName) uri.Reset(endpoint); uri.AppendPath("/libraries/", false); uri.AppendPath(libraryName, true); - uri.AppendQuery("api-version", apiVersion, true); + uri.AppendQuery("api-version", "2020-12-01", true); request.Uri = uri; request.Headers.Add("Accept", "application/json"); return message; @@ -382,7 +379,7 @@ internal HttpMessage CreateCreateRequest(string libraryName) uri.Reset(endpoint); uri.AppendPath("/libraries/", false); uri.AppendPath(libraryName, true); - uri.AppendQuery("api-version", apiVersion, true); + uri.AppendQuery("api-version", "2020-12-01", true); request.Uri = uri; request.Headers.Add("Accept", "application/json"); return message; @@ -444,7 +441,7 @@ internal HttpMessage CreateAppendRequest(string libraryName, Stream content, lon uri.AppendPath("/libraries/", false); uri.AppendPath(libraryName, true); uri.AppendQuery("comp", "appendblock", true); - uri.AppendQuery("api-version", apiVersion, true); + uri.AppendQuery("api-version", "2020-12-01", true); request.Uri = uri; if (blobConditionAppendPosition != null) { diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/LinkedServiceClient.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/LinkedServiceClient.cs index 7ed5d1db4aa9..b70f6e895ce2 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/LinkedServiceClient.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/LinkedServiceClient.cs @@ -46,17 +46,16 @@ public LinkedServiceClient(Uri endpoint, TokenCredential credential, ArtifactsCl _clientDiagnostics = new ClientDiagnostics(options); string[] scopes = { "https://dev.azuresynapse.net/.default" }; _pipeline = HttpPipelineBuilder.Build(options, new BearerTokenAuthenticationPolicy(credential, scopes)); - RestClient = new LinkedServiceRestClient(_clientDiagnostics, _pipeline, endpoint, options.Version); + RestClient = new LinkedServiceRestClient(_clientDiagnostics, _pipeline, endpoint); } /// Initializes a new instance of LinkedServiceClient. /// The handler for diagnostic messaging in the client. /// The HTTP pipeline for sending and receiving REST requests and responses. /// The workspace development endpoint, for example https://myworkspace.dev.azuresynapse.net. - /// Api Version. - internal LinkedServiceClient(ClientDiagnostics clientDiagnostics, HttpPipeline pipeline, Uri endpoint, string apiVersion = "2019-06-01-preview") + internal LinkedServiceClient(ClientDiagnostics clientDiagnostics, HttpPipeline pipeline, Uri endpoint) { - RestClient = new LinkedServiceRestClient(clientDiagnostics, pipeline, endpoint, apiVersion); + RestClient = new LinkedServiceRestClient(clientDiagnostics, pipeline, endpoint); _clientDiagnostics = clientDiagnostics; _pipeline = pipeline; } diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/LinkedServiceRestClient.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/LinkedServiceRestClient.cs index 8e17f09dcd56..7c1463779fc8 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/LinkedServiceRestClient.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/LinkedServiceRestClient.cs @@ -19,7 +19,6 @@ namespace Azure.Analytics.Synapse.Artifacts internal partial class LinkedServiceRestClient { private Uri endpoint; - private string apiVersion; private ClientDiagnostics _clientDiagnostics; private HttpPipeline _pipeline; @@ -27,12 +26,10 @@ internal partial class LinkedServiceRestClient /// The handler for diagnostic messaging in the client. /// The HTTP pipeline for sending and receiving REST requests and responses. /// The workspace development endpoint, for example https://myworkspace.dev.azuresynapse.net. - /// Api Version. - /// or is null. - public LinkedServiceRestClient(ClientDiagnostics clientDiagnostics, HttpPipeline pipeline, Uri endpoint, string apiVersion = "2019-06-01-preview") + /// is null. + public LinkedServiceRestClient(ClientDiagnostics clientDiagnostics, HttpPipeline pipeline, Uri endpoint) { this.endpoint = endpoint ?? throw new ArgumentNullException(nameof(endpoint)); - this.apiVersion = apiVersion ?? throw new ArgumentNullException(nameof(apiVersion)); _clientDiagnostics = clientDiagnostics; _pipeline = pipeline; } @@ -45,7 +42,7 @@ internal HttpMessage CreateGetLinkedServicesByWorkspaceRequest() var uri = new RawRequestUriBuilder(); uri.Reset(endpoint); uri.AppendPath("/linkedservices", false); - uri.AppendQuery("api-version", apiVersion, true); + uri.AppendQuery("api-version", "2020-12-01", true); request.Uri = uri; request.Headers.Add("Accept", "application/json"); return message; @@ -100,7 +97,7 @@ internal HttpMessage CreateCreateOrUpdateLinkedServiceRequest(string linkedServi uri.Reset(endpoint); uri.AppendPath("/linkedservices/", false); uri.AppendPath(linkedServiceName, true); - uri.AppendQuery("api-version", apiVersion, true); + uri.AppendQuery("api-version", "2020-12-01", true); request.Uri = uri; if (ifMatch != null) { @@ -181,7 +178,7 @@ internal HttpMessage CreateGetLinkedServiceRequest(string linkedServiceName, str uri.Reset(endpoint); uri.AppendPath("/linkedservices/", false); uri.AppendPath(linkedServiceName, true); - uri.AppendQuery("api-version", apiVersion, true); + uri.AppendQuery("api-version", "2020-12-01", true); request.Uri = uri; if (ifNoneMatch != null) { @@ -260,7 +257,7 @@ internal HttpMessage CreateDeleteLinkedServiceRequest(string linkedServiceName) uri.Reset(endpoint); uri.AppendPath("/linkedservices/", false); uri.AppendPath(linkedServiceName, true); - uri.AppendQuery("api-version", apiVersion, true); + uri.AppendQuery("api-version", "2020-12-01", true); request.Uri = uri; request.Headers.Add("Accept", "application/json"); return message; @@ -324,7 +321,7 @@ internal HttpMessage CreateRenameLinkedServiceRequest(string linkedServiceName, uri.AppendPath("/linkedservices/", false); uri.AppendPath(linkedServiceName, true); uri.AppendPath("/rename", false); - uri.AppendQuery("api-version", apiVersion, true); + uri.AppendQuery("api-version", "2020-12-01", true); request0.Uri = uri; request0.Headers.Add("Accept", "application/json"); request0.Headers.Add("Content-Type", "application/json"); diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/AdditionalColumns.Serialization.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/AdditionalColumns.Serialization.cs deleted file mode 100644 index 0da8037a14bf..000000000000 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/AdditionalColumns.Serialization.cs +++ /dev/null @@ -1,77 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. - -// - -#nullable disable - -using System; -using System.Text.Json; -using System.Text.Json.Serialization; -using Azure.Core; - -namespace Azure.Analytics.Synapse.Artifacts.Models -{ - [JsonConverter(typeof(AdditionalColumnsConverter))] - public partial class AdditionalColumns : IUtf8JsonSerializable - { - void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) - { - writer.WriteStartObject(); - if (Optional.IsDefined(Name)) - { - writer.WritePropertyName("name"); - writer.WriteObjectValue(Name); - } - if (Optional.IsDefined(Value)) - { - writer.WritePropertyName("value"); - writer.WriteObjectValue(Value); - } - writer.WriteEndObject(); - } - - internal static AdditionalColumns DeserializeAdditionalColumns(JsonElement element) - { - Optional name = default; - Optional value = default; - foreach (var property in element.EnumerateObject()) - { - if (property.NameEquals("name")) - { - if (property.Value.ValueKind == JsonValueKind.Null) - { - property.ThrowNonNullablePropertyIsNull(); - continue; - } - name = property.Value.GetObject(); - continue; - } - if (property.NameEquals("value")) - { - if (property.Value.ValueKind == JsonValueKind.Null) - { - property.ThrowNonNullablePropertyIsNull(); - continue; - } - value = property.Value.GetObject(); - continue; - } - } - return new AdditionalColumns(name.Value, value.Value); - } - - internal partial class AdditionalColumnsConverter : JsonConverter - { - public override void Write(Utf8JsonWriter writer, AdditionalColumns model, JsonSerializerOptions options) - { - writer.WriteObjectValue(model); - } - public override AdditionalColumns Read(ref Utf8JsonReader reader, Type typeToConvert, JsonSerializerOptions options) - { - using var document = JsonDocument.ParseValue(ref reader); - return DeserializeAdditionalColumns(document.RootElement); - } - } - } -} diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/AdditionalColumns.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/AdditionalColumns.cs index 29ede2836946..62796a2f1511 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/AdditionalColumns.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/AdditionalColumns.cs @@ -8,25 +8,16 @@ namespace Azure.Analytics.Synapse.Artifacts.Models { /// Specify the column name and value of additional columns. - public partial class AdditionalColumns + internal partial class AdditionalColumns { /// Initializes a new instance of AdditionalColumns. - public AdditionalColumns() + internal AdditionalColumns() { } - /// Initializes a new instance of AdditionalColumns. - /// Additional column name. Type: string (or Expression with resultType string). - /// Additional column value. Type: string (or Expression with resultType string). - internal AdditionalColumns(object name, object value) - { - Name = name; - Value = value; - } - /// Additional column name. Type: string (or Expression with resultType string). - public object Name { get; set; } + public object Name { get; } /// Additional column value. Type: string (or Expression with resultType string). - public object Value { get; set; } + public object Value { get; } } } diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/AmazonMWSSource.Serialization.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/AmazonMWSSource.Serialization.cs index cf222331f81f..c585745a1aab 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/AmazonMWSSource.Serialization.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/AmazonMWSSource.Serialization.cs @@ -29,15 +29,10 @@ void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) writer.WritePropertyName("queryTimeout"); writer.WriteObjectValue(QueryTimeout); } - if (Optional.IsCollectionDefined(AdditionalColumns)) + if (Optional.IsDefined(AdditionalColumns)) { writer.WritePropertyName("additionalColumns"); - writer.WriteStartArray(); - foreach (var item in AdditionalColumns) - { - writer.WriteObjectValue(item); - } - writer.WriteEndArray(); + writer.WriteObjectValue(AdditionalColumns); } writer.WritePropertyName("type"); writer.WriteStringValue(Type); @@ -68,7 +63,7 @@ internal static AmazonMWSSource DeserializeAmazonMWSSource(JsonElement element) { Optional query = default; Optional queryTimeout = default; - Optional> additionalColumns = default; + Optional additionalColumns = default; string type = default; Optional sourceRetryCount = default; Optional sourceRetryWait = default; @@ -104,12 +99,7 @@ internal static AmazonMWSSource DeserializeAmazonMWSSource(JsonElement element) property.ThrowNonNullablePropertyIsNull(); continue; } - List array = new List(); - foreach (var item in property.Value.EnumerateArray()) - { - array.Add(Models.AdditionalColumns.DeserializeAdditionalColumns(item)); - } - additionalColumns = array; + additionalColumns = property.Value.GetObject(); continue; } if (property.NameEquals("type")) @@ -150,7 +140,7 @@ internal static AmazonMWSSource DeserializeAmazonMWSSource(JsonElement element) additionalPropertiesDictionary.Add(property.Name, property.Value.GetObject()); } additionalProperties = additionalPropertiesDictionary; - return new AmazonMWSSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, queryTimeout.Value, Optional.ToList(additionalColumns), query.Value); + return new AmazonMWSSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, queryTimeout.Value, additionalColumns.Value, query.Value); } internal partial class AmazonMWSSourceConverter : JsonConverter diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/AmazonMWSSource.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/AmazonMWSSource.cs index c0f694e678db..ebea1af66bb9 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/AmazonMWSSource.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/AmazonMWSSource.cs @@ -25,9 +25,9 @@ public AmazonMWSSource() /// The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer). /// Additional Properties. /// Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])). - /// Specifies the additional columns to be added to source data. Type: array of objects (or Expression with resultType array of objects). + /// Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects). /// A query to retrieve data from source. Type: string (or Expression with resultType string). - internal AmazonMWSSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object queryTimeout, IList additionalColumns, object query) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties, queryTimeout, additionalColumns) + internal AmazonMWSSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object queryTimeout, object additionalColumns, object query) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties, queryTimeout, additionalColumns) { Query = query; Type = type ?? "AmazonMWSSource"; diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/AmazonRdsForOracleLinkedService.Serialization.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/AmazonRdsForOracleLinkedService.Serialization.cs new file mode 100644 index 000000000000..255902845877 --- /dev/null +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/AmazonRdsForOracleLinkedService.Serialization.cs @@ -0,0 +1,198 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System; +using System.Collections.Generic; +using System.Text.Json; +using System.Text.Json.Serialization; +using Azure.Core; + +namespace Azure.Analytics.Synapse.Artifacts.Models +{ + [JsonConverter(typeof(AmazonRdsForOracleLinkedServiceConverter))] + public partial class AmazonRdsForOracleLinkedService : IUtf8JsonSerializable + { + void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) + { + writer.WriteStartObject(); + writer.WritePropertyName("type"); + writer.WriteStringValue(Type); + if (Optional.IsDefined(ConnectVia)) + { + writer.WritePropertyName("connectVia"); + writer.WriteObjectValue(ConnectVia); + } + if (Optional.IsDefined(Description)) + { + writer.WritePropertyName("description"); + writer.WriteStringValue(Description); + } + if (Optional.IsCollectionDefined(Parameters)) + { + writer.WritePropertyName("parameters"); + writer.WriteStartObject(); + foreach (var item in Parameters) + { + writer.WritePropertyName(item.Key); + writer.WriteObjectValue(item.Value); + } + writer.WriteEndObject(); + } + if (Optional.IsCollectionDefined(Annotations)) + { + writer.WritePropertyName("annotations"); + writer.WriteStartArray(); + foreach (var item in Annotations) + { + writer.WriteObjectValue(item); + } + writer.WriteEndArray(); + } + writer.WritePropertyName("typeProperties"); + writer.WriteStartObject(); + writer.WritePropertyName("connectionString"); + writer.WriteObjectValue(ConnectionString); + if (Optional.IsDefined(Password)) + { + writer.WritePropertyName("password"); + writer.WriteObjectValue(Password); + } + if (Optional.IsDefined(EncryptedCredential)) + { + writer.WritePropertyName("encryptedCredential"); + writer.WriteObjectValue(EncryptedCredential); + } + writer.WriteEndObject(); + foreach (var item in AdditionalProperties) + { + writer.WritePropertyName(item.Key); + writer.WriteObjectValue(item.Value); + } + writer.WriteEndObject(); + } + + internal static AmazonRdsForOracleLinkedService DeserializeAmazonRdsForOracleLinkedService(JsonElement element) + { + string type = default; + Optional connectVia = default; + Optional description = default; + Optional> parameters = default; + Optional> annotations = default; + object connectionString = default; + Optional password = default; + Optional encryptedCredential = default; + IDictionary additionalProperties = default; + Dictionary additionalPropertiesDictionary = new Dictionary(); + foreach (var property in element.EnumerateObject()) + { + if (property.NameEquals("type")) + { + type = property.Value.GetString(); + continue; + } + if (property.NameEquals("connectVia")) + { + if (property.Value.ValueKind == JsonValueKind.Null) + { + property.ThrowNonNullablePropertyIsNull(); + continue; + } + connectVia = IntegrationRuntimeReference.DeserializeIntegrationRuntimeReference(property.Value); + continue; + } + if (property.NameEquals("description")) + { + description = property.Value.GetString(); + continue; + } + if (property.NameEquals("parameters")) + { + if (property.Value.ValueKind == JsonValueKind.Null) + { + property.ThrowNonNullablePropertyIsNull(); + continue; + } + Dictionary dictionary = new Dictionary(); + foreach (var property0 in property.Value.EnumerateObject()) + { + dictionary.Add(property0.Name, ParameterSpecification.DeserializeParameterSpecification(property0.Value)); + } + parameters = dictionary; + continue; + } + if (property.NameEquals("annotations")) + { + if (property.Value.ValueKind == JsonValueKind.Null) + { + property.ThrowNonNullablePropertyIsNull(); + continue; + } + List array = new List(); + foreach (var item in property.Value.EnumerateArray()) + { + array.Add(item.GetObject()); + } + annotations = array; + continue; + } + if (property.NameEquals("typeProperties")) + { + if (property.Value.ValueKind == JsonValueKind.Null) + { + property.ThrowNonNullablePropertyIsNull(); + continue; + } + foreach (var property0 in property.Value.EnumerateObject()) + { + if (property0.NameEquals("connectionString")) + { + connectionString = property0.Value.GetObject(); + continue; + } + if (property0.NameEquals("password")) + { + if (property0.Value.ValueKind == JsonValueKind.Null) + { + property0.ThrowNonNullablePropertyIsNull(); + continue; + } + password = SecretBase.DeserializeSecretBase(property0.Value); + continue; + } + if (property0.NameEquals("encryptedCredential")) + { + if (property0.Value.ValueKind == JsonValueKind.Null) + { + property0.ThrowNonNullablePropertyIsNull(); + continue; + } + encryptedCredential = property0.Value.GetObject(); + continue; + } + } + continue; + } + additionalPropertiesDictionary.Add(property.Name, property.Value.GetObject()); + } + additionalProperties = additionalPropertiesDictionary; + return new AmazonRdsForOracleLinkedService(type, connectVia.Value, description.Value, Optional.ToDictionary(parameters), Optional.ToList(annotations), additionalProperties, connectionString, password.Value, encryptedCredential.Value); + } + + internal partial class AmazonRdsForOracleLinkedServiceConverter : JsonConverter + { + public override void Write(Utf8JsonWriter writer, AmazonRdsForOracleLinkedService model, JsonSerializerOptions options) + { + writer.WriteObjectValue(model); + } + public override AmazonRdsForOracleLinkedService Read(ref Utf8JsonReader reader, Type typeToConvert, JsonSerializerOptions options) + { + using var document = JsonDocument.ParseValue(ref reader); + return DeserializeAmazonRdsForOracleLinkedService(document.RootElement); + } + } + } +} diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/AmazonRdsForOracleLinkedService.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/AmazonRdsForOracleLinkedService.cs new file mode 100644 index 000000000000..7ca311247b30 --- /dev/null +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/AmazonRdsForOracleLinkedService.cs @@ -0,0 +1,55 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System; +using System.Collections.Generic; + +namespace Azure.Analytics.Synapse.Artifacts.Models +{ + /// AmazonRdsForOracle database. + public partial class AmazonRdsForOracleLinkedService : LinkedService + { + /// Initializes a new instance of AmazonRdsForOracleLinkedService. + /// The connection string. Type: string, SecureString or AzureKeyVaultSecretReference. + /// is null. + public AmazonRdsForOracleLinkedService(object connectionString) + { + if (connectionString == null) + { + throw new ArgumentNullException(nameof(connectionString)); + } + + ConnectionString = connectionString; + Type = "AmazonRdsForOracle"; + } + + /// Initializes a new instance of AmazonRdsForOracleLinkedService. + /// Type of linked service. + /// The integration runtime reference. + /// Linked service description. + /// Parameters for linked service. + /// List of tags that can be used for describing the linked service. + /// Additional Properties. + /// The connection string. Type: string, SecureString or AzureKeyVaultSecretReference. + /// The Azure key vault secret reference of password in connection string. + /// The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). + internal AmazonRdsForOracleLinkedService(string type, IntegrationRuntimeReference connectVia, string description, IDictionary parameters, IList annotations, IDictionary additionalProperties, object connectionString, SecretBase password, object encryptedCredential) : base(type, connectVia, description, parameters, annotations, additionalProperties) + { + ConnectionString = connectionString; + Password = password; + EncryptedCredential = encryptedCredential; + Type = type ?? "AmazonRdsForOracle"; + } + + /// The connection string. Type: string, SecureString or AzureKeyVaultSecretReference. + public object ConnectionString { get; set; } + /// The Azure key vault secret reference of password in connection string. + public SecretBase Password { get; set; } + /// The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). + public object EncryptedCredential { get; set; } + } +} diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/AmazonRdsForOraclePartitionOption.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/AmazonRdsForOraclePartitionOption.cs new file mode 100644 index 000000000000..0961d9a9669f --- /dev/null +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/AmazonRdsForOraclePartitionOption.cs @@ -0,0 +1,54 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System; +using System.ComponentModel; + +namespace Azure.Analytics.Synapse.Artifacts.Models +{ + /// The AmazonRdsForOraclePartitionOption. + internal readonly partial struct AmazonRdsForOraclePartitionOption : IEquatable + { + private readonly string _value; + + /// Initializes a new instance of . + /// is null. + public AmazonRdsForOraclePartitionOption(string value) + { + _value = value ?? throw new ArgumentNullException(nameof(value)); + } + + private const string NoneValue = "None"; + private const string PhysicalPartitionsOfTableValue = "PhysicalPartitionsOfTable"; + private const string DynamicRangeValue = "DynamicRange"; + + /// None. + public static AmazonRdsForOraclePartitionOption None { get; } = new AmazonRdsForOraclePartitionOption(NoneValue); + /// PhysicalPartitionsOfTable. + public static AmazonRdsForOraclePartitionOption PhysicalPartitionsOfTable { get; } = new AmazonRdsForOraclePartitionOption(PhysicalPartitionsOfTableValue); + /// DynamicRange. + public static AmazonRdsForOraclePartitionOption DynamicRange { get; } = new AmazonRdsForOraclePartitionOption(DynamicRangeValue); + /// Determines if two values are the same. + public static bool operator ==(AmazonRdsForOraclePartitionOption left, AmazonRdsForOraclePartitionOption right) => left.Equals(right); + /// Determines if two values are not the same. + public static bool operator !=(AmazonRdsForOraclePartitionOption left, AmazonRdsForOraclePartitionOption right) => !left.Equals(right); + /// Converts a string to a . + public static implicit operator AmazonRdsForOraclePartitionOption(string value) => new AmazonRdsForOraclePartitionOption(value); + + /// + [EditorBrowsable(EditorBrowsableState.Never)] + public override bool Equals(object obj) => obj is AmazonRdsForOraclePartitionOption other && Equals(other); + /// + public bool Equals(AmazonRdsForOraclePartitionOption other) => string.Equals(_value, other._value, StringComparison.InvariantCultureIgnoreCase); + + /// + [EditorBrowsable(EditorBrowsableState.Never)] + public override int GetHashCode() => _value?.GetHashCode() ?? 0; + /// + public override string ToString() => _value; + } +} diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/AmazonRdsForOraclePartitionSettings.Serialization.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/AmazonRdsForOraclePartitionSettings.Serialization.cs new file mode 100644 index 000000000000..e64519e215c5 --- /dev/null +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/AmazonRdsForOraclePartitionSettings.Serialization.cs @@ -0,0 +1,109 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System; +using System.Text.Json; +using System.Text.Json.Serialization; +using Azure.Core; + +namespace Azure.Analytics.Synapse.Artifacts.Models +{ + [JsonConverter(typeof(AmazonRdsForOraclePartitionSettingsConverter))] + public partial class AmazonRdsForOraclePartitionSettings : IUtf8JsonSerializable + { + void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) + { + writer.WriteStartObject(); + if (Optional.IsDefined(PartitionNames)) + { + writer.WritePropertyName("partitionNames"); + writer.WriteObjectValue(PartitionNames); + } + if (Optional.IsDefined(PartitionColumnName)) + { + writer.WritePropertyName("partitionColumnName"); + writer.WriteObjectValue(PartitionColumnName); + } + if (Optional.IsDefined(PartitionUpperBound)) + { + writer.WritePropertyName("partitionUpperBound"); + writer.WriteObjectValue(PartitionUpperBound); + } + if (Optional.IsDefined(PartitionLowerBound)) + { + writer.WritePropertyName("partitionLowerBound"); + writer.WriteObjectValue(PartitionLowerBound); + } + writer.WriteEndObject(); + } + + internal static AmazonRdsForOraclePartitionSettings DeserializeAmazonRdsForOraclePartitionSettings(JsonElement element) + { + Optional partitionNames = default; + Optional partitionColumnName = default; + Optional partitionUpperBound = default; + Optional partitionLowerBound = default; + foreach (var property in element.EnumerateObject()) + { + if (property.NameEquals("partitionNames")) + { + if (property.Value.ValueKind == JsonValueKind.Null) + { + property.ThrowNonNullablePropertyIsNull(); + continue; + } + partitionNames = property.Value.GetObject(); + continue; + } + if (property.NameEquals("partitionColumnName")) + { + if (property.Value.ValueKind == JsonValueKind.Null) + { + property.ThrowNonNullablePropertyIsNull(); + continue; + } + partitionColumnName = property.Value.GetObject(); + continue; + } + if (property.NameEquals("partitionUpperBound")) + { + if (property.Value.ValueKind == JsonValueKind.Null) + { + property.ThrowNonNullablePropertyIsNull(); + continue; + } + partitionUpperBound = property.Value.GetObject(); + continue; + } + if (property.NameEquals("partitionLowerBound")) + { + if (property.Value.ValueKind == JsonValueKind.Null) + { + property.ThrowNonNullablePropertyIsNull(); + continue; + } + partitionLowerBound = property.Value.GetObject(); + continue; + } + } + return new AmazonRdsForOraclePartitionSettings(partitionNames.Value, partitionColumnName.Value, partitionUpperBound.Value, partitionLowerBound.Value); + } + + internal partial class AmazonRdsForOraclePartitionSettingsConverter : JsonConverter + { + public override void Write(Utf8JsonWriter writer, AmazonRdsForOraclePartitionSettings model, JsonSerializerOptions options) + { + writer.WriteObjectValue(model); + } + public override AmazonRdsForOraclePartitionSettings Read(ref Utf8JsonReader reader, Type typeToConvert, JsonSerializerOptions options) + { + using var document = JsonDocument.ParseValue(ref reader); + return DeserializeAmazonRdsForOraclePartitionSettings(document.RootElement); + } + } + } +} diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/AmazonRdsForOraclePartitionSettings.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/AmazonRdsForOraclePartitionSettings.cs new file mode 100644 index 000000000000..7e712cc5b57b --- /dev/null +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/AmazonRdsForOraclePartitionSettings.cs @@ -0,0 +1,40 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +namespace Azure.Analytics.Synapse.Artifacts.Models +{ + /// The settings that will be leveraged for AmazonRdsForOracle source partitioning. + public partial class AmazonRdsForOraclePartitionSettings + { + /// Initializes a new instance of AmazonRdsForOraclePartitionSettings. + public AmazonRdsForOraclePartitionSettings() + { + } + + /// Initializes a new instance of AmazonRdsForOraclePartitionSettings. + /// Names of the physical partitions of AmazonRdsForOracle table. + /// The name of the column in integer type that will be used for proceeding range partitioning. Type: string (or Expression with resultType string). + /// The maximum value of column specified in partitionColumnName that will be used for proceeding range partitioning. Type: string (or Expression with resultType string). + /// The minimum value of column specified in partitionColumnName that will be used for proceeding range partitioning. Type: string (or Expression with resultType string). + internal AmazonRdsForOraclePartitionSettings(object partitionNames, object partitionColumnName, object partitionUpperBound, object partitionLowerBound) + { + PartitionNames = partitionNames; + PartitionColumnName = partitionColumnName; + PartitionUpperBound = partitionUpperBound; + PartitionLowerBound = partitionLowerBound; + } + + /// Names of the physical partitions of AmazonRdsForOracle table. + public object PartitionNames { get; set; } + /// The name of the column in integer type that will be used for proceeding range partitioning. Type: string (or Expression with resultType string). + public object PartitionColumnName { get; set; } + /// The maximum value of column specified in partitionColumnName that will be used for proceeding range partitioning. Type: string (or Expression with resultType string). + public object PartitionUpperBound { get; set; } + /// The minimum value of column specified in partitionColumnName that will be used for proceeding range partitioning. Type: string (or Expression with resultType string). + public object PartitionLowerBound { get; set; } + } +} diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/AmazonRdsForOracleSource.Serialization.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/AmazonRdsForOracleSource.Serialization.cs new file mode 100644 index 000000000000..6bdda86a105c --- /dev/null +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/AmazonRdsForOracleSource.Serialization.cs @@ -0,0 +1,191 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System; +using System.Collections.Generic; +using System.Text.Json; +using System.Text.Json.Serialization; +using Azure.Core; + +namespace Azure.Analytics.Synapse.Artifacts.Models +{ + [JsonConverter(typeof(AmazonRdsForOracleSourceConverter))] + public partial class AmazonRdsForOracleSource : IUtf8JsonSerializable + { + void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) + { + writer.WriteStartObject(); + if (Optional.IsDefined(OracleReaderQuery)) + { + writer.WritePropertyName("oracleReaderQuery"); + writer.WriteObjectValue(OracleReaderQuery); + } + if (Optional.IsDefined(QueryTimeout)) + { + writer.WritePropertyName("queryTimeout"); + writer.WriteObjectValue(QueryTimeout); + } + if (Optional.IsDefined(PartitionOption)) + { + writer.WritePropertyName("partitionOption"); + writer.WriteObjectValue(PartitionOption); + } + if (Optional.IsDefined(PartitionSettings)) + { + writer.WritePropertyName("partitionSettings"); + writer.WriteObjectValue(PartitionSettings); + } + if (Optional.IsDefined(AdditionalColumns)) + { + writer.WritePropertyName("additionalColumns"); + writer.WriteObjectValue(AdditionalColumns); + } + writer.WritePropertyName("type"); + writer.WriteStringValue(Type); + if (Optional.IsDefined(SourceRetryCount)) + { + writer.WritePropertyName("sourceRetryCount"); + writer.WriteObjectValue(SourceRetryCount); + } + if (Optional.IsDefined(SourceRetryWait)) + { + writer.WritePropertyName("sourceRetryWait"); + writer.WriteObjectValue(SourceRetryWait); + } + if (Optional.IsDefined(MaxConcurrentConnections)) + { + writer.WritePropertyName("maxConcurrentConnections"); + writer.WriteObjectValue(MaxConcurrentConnections); + } + foreach (var item in AdditionalProperties) + { + writer.WritePropertyName(item.Key); + writer.WriteObjectValue(item.Value); + } + writer.WriteEndObject(); + } + + internal static AmazonRdsForOracleSource DeserializeAmazonRdsForOracleSource(JsonElement element) + { + Optional oracleReaderQuery = default; + Optional queryTimeout = default; + Optional partitionOption = default; + Optional partitionSettings = default; + Optional additionalColumns = default; + string type = default; + Optional sourceRetryCount = default; + Optional sourceRetryWait = default; + Optional maxConcurrentConnections = default; + IDictionary additionalProperties = default; + Dictionary additionalPropertiesDictionary = new Dictionary(); + foreach (var property in element.EnumerateObject()) + { + if (property.NameEquals("oracleReaderQuery")) + { + if (property.Value.ValueKind == JsonValueKind.Null) + { + property.ThrowNonNullablePropertyIsNull(); + continue; + } + oracleReaderQuery = property.Value.GetObject(); + continue; + } + if (property.NameEquals("queryTimeout")) + { + if (property.Value.ValueKind == JsonValueKind.Null) + { + property.ThrowNonNullablePropertyIsNull(); + continue; + } + queryTimeout = property.Value.GetObject(); + continue; + } + if (property.NameEquals("partitionOption")) + { + if (property.Value.ValueKind == JsonValueKind.Null) + { + property.ThrowNonNullablePropertyIsNull(); + continue; + } + partitionOption = property.Value.GetObject(); + continue; + } + if (property.NameEquals("partitionSettings")) + { + if (property.Value.ValueKind == JsonValueKind.Null) + { + property.ThrowNonNullablePropertyIsNull(); + continue; + } + partitionSettings = AmazonRdsForOraclePartitionSettings.DeserializeAmazonRdsForOraclePartitionSettings(property.Value); + continue; + } + if (property.NameEquals("additionalColumns")) + { + if (property.Value.ValueKind == JsonValueKind.Null) + { + property.ThrowNonNullablePropertyIsNull(); + continue; + } + additionalColumns = property.Value.GetObject(); + continue; + } + if (property.NameEquals("type")) + { + type = property.Value.GetString(); + continue; + } + if (property.NameEquals("sourceRetryCount")) + { + if (property.Value.ValueKind == JsonValueKind.Null) + { + property.ThrowNonNullablePropertyIsNull(); + continue; + } + sourceRetryCount = property.Value.GetObject(); + continue; + } + if (property.NameEquals("sourceRetryWait")) + { + if (property.Value.ValueKind == JsonValueKind.Null) + { + property.ThrowNonNullablePropertyIsNull(); + continue; + } + sourceRetryWait = property.Value.GetObject(); + continue; + } + if (property.NameEquals("maxConcurrentConnections")) + { + if (property.Value.ValueKind == JsonValueKind.Null) + { + property.ThrowNonNullablePropertyIsNull(); + continue; + } + maxConcurrentConnections = property.Value.GetObject(); + continue; + } + additionalPropertiesDictionary.Add(property.Name, property.Value.GetObject()); + } + additionalProperties = additionalPropertiesDictionary; + return new AmazonRdsForOracleSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, oracleReaderQuery.Value, queryTimeout.Value, partitionOption.Value, partitionSettings.Value, additionalColumns.Value); + } + + internal partial class AmazonRdsForOracleSourceConverter : JsonConverter + { + public override void Write(Utf8JsonWriter writer, AmazonRdsForOracleSource model, JsonSerializerOptions options) + { + writer.WriteObjectValue(model); + } + public override AmazonRdsForOracleSource Read(ref Utf8JsonReader reader, Type typeToConvert, JsonSerializerOptions options) + { + using var document = JsonDocument.ParseValue(ref reader); + return DeserializeAmazonRdsForOracleSource(document.RootElement); + } + } + } +} diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/AmazonRdsForOracleSource.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/AmazonRdsForOracleSource.cs new file mode 100644 index 000000000000..bcf20d99cf0c --- /dev/null +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/AmazonRdsForOracleSource.cs @@ -0,0 +1,53 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System.Collections.Generic; + +namespace Azure.Analytics.Synapse.Artifacts.Models +{ + /// A copy activity AmazonRdsForOracle source. + public partial class AmazonRdsForOracleSource : CopySource + { + /// Initializes a new instance of AmazonRdsForOracleSource. + public AmazonRdsForOracleSource() + { + Type = "AmazonRdsForOracleSource"; + } + + /// Initializes a new instance of AmazonRdsForOracleSource. + /// Copy source type. + /// Source retry count. Type: integer (or Expression with resultType integer). + /// Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])). + /// The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer). + /// Additional Properties. + /// AmazonRdsForOracle reader query. Type: string (or Expression with resultType string). + /// Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])). + /// The partition mechanism that will be used for AmazonRdsForOracle read in parallel. Type: string (or Expression with resultType string). + /// The settings that will be leveraged for AmazonRdsForOracle source partitioning. + /// Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects). + internal AmazonRdsForOracleSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object oracleReaderQuery, object queryTimeout, object partitionOption, AmazonRdsForOraclePartitionSettings partitionSettings, object additionalColumns) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties) + { + OracleReaderQuery = oracleReaderQuery; + QueryTimeout = queryTimeout; + PartitionOption = partitionOption; + PartitionSettings = partitionSettings; + AdditionalColumns = additionalColumns; + Type = type ?? "AmazonRdsForOracleSource"; + } + + /// AmazonRdsForOracle reader query. Type: string (or Expression with resultType string). + public object OracleReaderQuery { get; set; } + /// Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])). + public object QueryTimeout { get; set; } + /// The partition mechanism that will be used for AmazonRdsForOracle read in parallel. Type: string (or Expression with resultType string). + public object PartitionOption { get; set; } + /// The settings that will be leveraged for AmazonRdsForOracle source partitioning. + public AmazonRdsForOraclePartitionSettings PartitionSettings { get; set; } + /// Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects). + public object AdditionalColumns { get; set; } + } +} diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/AmazonRdsForOracleTableDataset.Serialization.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/AmazonRdsForOracleTableDataset.Serialization.cs new file mode 100644 index 000000000000..0c502dd786f1 --- /dev/null +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/AmazonRdsForOracleTableDataset.Serialization.cs @@ -0,0 +1,230 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System; +using System.Collections.Generic; +using System.Text.Json; +using System.Text.Json.Serialization; +using Azure.Core; + +namespace Azure.Analytics.Synapse.Artifacts.Models +{ + [JsonConverter(typeof(AmazonRdsForOracleTableDatasetConverter))] + public partial class AmazonRdsForOracleTableDataset : IUtf8JsonSerializable + { + void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) + { + writer.WriteStartObject(); + writer.WritePropertyName("type"); + writer.WriteStringValue(Type); + if (Optional.IsDefined(Description)) + { + writer.WritePropertyName("description"); + writer.WriteStringValue(Description); + } + if (Optional.IsDefined(Structure)) + { + writer.WritePropertyName("structure"); + writer.WriteObjectValue(Structure); + } + if (Optional.IsDefined(Schema)) + { + writer.WritePropertyName("schema"); + writer.WriteObjectValue(Schema); + } + writer.WritePropertyName("linkedServiceName"); + writer.WriteObjectValue(LinkedServiceName); + if (Optional.IsCollectionDefined(Parameters)) + { + writer.WritePropertyName("parameters"); + writer.WriteStartObject(); + foreach (var item in Parameters) + { + writer.WritePropertyName(item.Key); + writer.WriteObjectValue(item.Value); + } + writer.WriteEndObject(); + } + if (Optional.IsCollectionDefined(Annotations)) + { + writer.WritePropertyName("annotations"); + writer.WriteStartArray(); + foreach (var item in Annotations) + { + writer.WriteObjectValue(item); + } + writer.WriteEndArray(); + } + if (Optional.IsDefined(Folder)) + { + writer.WritePropertyName("folder"); + writer.WriteObjectValue(Folder); + } + writer.WritePropertyName("typeProperties"); + writer.WriteStartObject(); + if (Optional.IsDefined(SchemaTypePropertiesSchema)) + { + writer.WritePropertyName("schema"); + writer.WriteObjectValue(SchemaTypePropertiesSchema); + } + if (Optional.IsDefined(Table)) + { + writer.WritePropertyName("table"); + writer.WriteObjectValue(Table); + } + writer.WriteEndObject(); + foreach (var item in AdditionalProperties) + { + writer.WritePropertyName(item.Key); + writer.WriteObjectValue(item.Value); + } + writer.WriteEndObject(); + } + + internal static AmazonRdsForOracleTableDataset DeserializeAmazonRdsForOracleTableDataset(JsonElement element) + { + string type = default; + Optional description = default; + Optional structure = default; + Optional schema = default; + LinkedServiceReference linkedServiceName = default; + Optional> parameters = default; + Optional> annotations = default; + Optional folder = default; + Optional schema0 = default; + Optional table = default; + IDictionary additionalProperties = default; + Dictionary additionalPropertiesDictionary = new Dictionary(); + foreach (var property in element.EnumerateObject()) + { + if (property.NameEquals("type")) + { + type = property.Value.GetString(); + continue; + } + if (property.NameEquals("description")) + { + description = property.Value.GetString(); + continue; + } + if (property.NameEquals("structure")) + { + if (property.Value.ValueKind == JsonValueKind.Null) + { + property.ThrowNonNullablePropertyIsNull(); + continue; + } + structure = property.Value.GetObject(); + continue; + } + if (property.NameEquals("schema")) + { + if (property.Value.ValueKind == JsonValueKind.Null) + { + property.ThrowNonNullablePropertyIsNull(); + continue; + } + schema = property.Value.GetObject(); + continue; + } + if (property.NameEquals("linkedServiceName")) + { + linkedServiceName = LinkedServiceReference.DeserializeLinkedServiceReference(property.Value); + continue; + } + if (property.NameEquals("parameters")) + { + if (property.Value.ValueKind == JsonValueKind.Null) + { + property.ThrowNonNullablePropertyIsNull(); + continue; + } + Dictionary dictionary = new Dictionary(); + foreach (var property0 in property.Value.EnumerateObject()) + { + dictionary.Add(property0.Name, ParameterSpecification.DeserializeParameterSpecification(property0.Value)); + } + parameters = dictionary; + continue; + } + if (property.NameEquals("annotations")) + { + if (property.Value.ValueKind == JsonValueKind.Null) + { + property.ThrowNonNullablePropertyIsNull(); + continue; + } + List array = new List(); + foreach (var item in property.Value.EnumerateArray()) + { + array.Add(item.GetObject()); + } + annotations = array; + continue; + } + if (property.NameEquals("folder")) + { + if (property.Value.ValueKind == JsonValueKind.Null) + { + property.ThrowNonNullablePropertyIsNull(); + continue; + } + folder = DatasetFolder.DeserializeDatasetFolder(property.Value); + continue; + } + if (property.NameEquals("typeProperties")) + { + if (property.Value.ValueKind == JsonValueKind.Null) + { + property.ThrowNonNullablePropertyIsNull(); + continue; + } + foreach (var property0 in property.Value.EnumerateObject()) + { + if (property0.NameEquals("schema")) + { + if (property0.Value.ValueKind == JsonValueKind.Null) + { + property0.ThrowNonNullablePropertyIsNull(); + continue; + } + schema0 = property0.Value.GetObject(); + continue; + } + if (property0.NameEquals("table")) + { + if (property0.Value.ValueKind == JsonValueKind.Null) + { + property0.ThrowNonNullablePropertyIsNull(); + continue; + } + table = property0.Value.GetObject(); + continue; + } + } + continue; + } + additionalPropertiesDictionary.Add(property.Name, property.Value.GetObject()); + } + additionalProperties = additionalPropertiesDictionary; + return new AmazonRdsForOracleTableDataset(type, description.Value, structure.Value, schema.Value, linkedServiceName, Optional.ToDictionary(parameters), Optional.ToList(annotations), folder.Value, additionalProperties, schema0.Value, table.Value); + } + + internal partial class AmazonRdsForOracleTableDatasetConverter : JsonConverter + { + public override void Write(Utf8JsonWriter writer, AmazonRdsForOracleTableDataset model, JsonSerializerOptions options) + { + writer.WriteObjectValue(model); + } + public override AmazonRdsForOracleTableDataset Read(ref Utf8JsonReader reader, Type typeToConvert, JsonSerializerOptions options) + { + using var document = JsonDocument.ParseValue(ref reader); + return DeserializeAmazonRdsForOracleTableDataset(document.RootElement); + } + } + } +} diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/AmazonRdsForOracleTableDataset.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/AmazonRdsForOracleTableDataset.cs new file mode 100644 index 000000000000..36158b7401d8 --- /dev/null +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/AmazonRdsForOracleTableDataset.cs @@ -0,0 +1,53 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System; +using System.Collections.Generic; + +namespace Azure.Analytics.Synapse.Artifacts.Models +{ + /// The AmazonRdsForOracle database dataset. + public partial class AmazonRdsForOracleTableDataset : Dataset + { + /// Initializes a new instance of AmazonRdsForOracleTableDataset. + /// Linked service reference. + /// is null. + public AmazonRdsForOracleTableDataset(LinkedServiceReference linkedServiceName) : base(linkedServiceName) + { + if (linkedServiceName == null) + { + throw new ArgumentNullException(nameof(linkedServiceName)); + } + + Type = "AmazonRdsForOracleTable"; + } + + /// Initializes a new instance of AmazonRdsForOracleTableDataset. + /// Type of dataset. + /// Dataset description. + /// Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement. + /// Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement. + /// Linked service reference. + /// Parameters for dataset. + /// List of tags that can be used for describing the Dataset. + /// The folder that this Dataset is in. If not specified, Dataset will appear at the root level. + /// Additional Properties. + /// The schema name of the AmazonRdsForOracle database. Type: string (or Expression with resultType string). + /// The table name of the AmazonRdsForOracle database. Type: string (or Expression with resultType string). + internal AmazonRdsForOracleTableDataset(string type, string description, object structure, object schema, LinkedServiceReference linkedServiceName, IDictionary parameters, IList annotations, DatasetFolder folder, IDictionary additionalProperties, object schemaTypePropertiesSchema, object table) : base(type, description, structure, schema, linkedServiceName, parameters, annotations, folder, additionalProperties) + { + SchemaTypePropertiesSchema = schemaTypePropertiesSchema; + Table = table; + Type = type ?? "AmazonRdsForOracleTable"; + } + + /// The schema name of the AmazonRdsForOracle database. Type: string (or Expression with resultType string). + public object SchemaTypePropertiesSchema { get; set; } + /// The table name of the AmazonRdsForOracle database. Type: string (or Expression with resultType string). + public object Table { get; set; } + } +} diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/AmazonRdsForSqlServerLinkedService.Serialization.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/AmazonRdsForSqlServerLinkedService.Serialization.cs new file mode 100644 index 000000000000..51699d079d29 --- /dev/null +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/AmazonRdsForSqlServerLinkedService.Serialization.cs @@ -0,0 +1,214 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System; +using System.Collections.Generic; +using System.Text.Json; +using System.Text.Json.Serialization; +using Azure.Core; + +namespace Azure.Analytics.Synapse.Artifacts.Models +{ + [JsonConverter(typeof(AmazonRdsForSqlServerLinkedServiceConverter))] + public partial class AmazonRdsForSqlServerLinkedService : IUtf8JsonSerializable + { + void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) + { + writer.WriteStartObject(); + writer.WritePropertyName("type"); + writer.WriteStringValue(Type); + if (Optional.IsDefined(ConnectVia)) + { + writer.WritePropertyName("connectVia"); + writer.WriteObjectValue(ConnectVia); + } + if (Optional.IsDefined(Description)) + { + writer.WritePropertyName("description"); + writer.WriteStringValue(Description); + } + if (Optional.IsCollectionDefined(Parameters)) + { + writer.WritePropertyName("parameters"); + writer.WriteStartObject(); + foreach (var item in Parameters) + { + writer.WritePropertyName(item.Key); + writer.WriteObjectValue(item.Value); + } + writer.WriteEndObject(); + } + if (Optional.IsCollectionDefined(Annotations)) + { + writer.WritePropertyName("annotations"); + writer.WriteStartArray(); + foreach (var item in Annotations) + { + writer.WriteObjectValue(item); + } + writer.WriteEndArray(); + } + writer.WritePropertyName("typeProperties"); + writer.WriteStartObject(); + writer.WritePropertyName("connectionString"); + writer.WriteObjectValue(ConnectionString); + if (Optional.IsDefined(UserName)) + { + writer.WritePropertyName("userName"); + writer.WriteObjectValue(UserName); + } + if (Optional.IsDefined(Password)) + { + writer.WritePropertyName("password"); + writer.WriteObjectValue(Password); + } + if (Optional.IsDefined(EncryptedCredential)) + { + writer.WritePropertyName("encryptedCredential"); + writer.WriteObjectValue(EncryptedCredential); + } + writer.WriteEndObject(); + foreach (var item in AdditionalProperties) + { + writer.WritePropertyName(item.Key); + writer.WriteObjectValue(item.Value); + } + writer.WriteEndObject(); + } + + internal static AmazonRdsForSqlServerLinkedService DeserializeAmazonRdsForSqlServerLinkedService(JsonElement element) + { + string type = default; + Optional connectVia = default; + Optional description = default; + Optional> parameters = default; + Optional> annotations = default; + object connectionString = default; + Optional userName = default; + Optional password = default; + Optional encryptedCredential = default; + IDictionary additionalProperties = default; + Dictionary additionalPropertiesDictionary = new Dictionary(); + foreach (var property in element.EnumerateObject()) + { + if (property.NameEquals("type")) + { + type = property.Value.GetString(); + continue; + } + if (property.NameEquals("connectVia")) + { + if (property.Value.ValueKind == JsonValueKind.Null) + { + property.ThrowNonNullablePropertyIsNull(); + continue; + } + connectVia = IntegrationRuntimeReference.DeserializeIntegrationRuntimeReference(property.Value); + continue; + } + if (property.NameEquals("description")) + { + description = property.Value.GetString(); + continue; + } + if (property.NameEquals("parameters")) + { + if (property.Value.ValueKind == JsonValueKind.Null) + { + property.ThrowNonNullablePropertyIsNull(); + continue; + } + Dictionary dictionary = new Dictionary(); + foreach (var property0 in property.Value.EnumerateObject()) + { + dictionary.Add(property0.Name, ParameterSpecification.DeserializeParameterSpecification(property0.Value)); + } + parameters = dictionary; + continue; + } + if (property.NameEquals("annotations")) + { + if (property.Value.ValueKind == JsonValueKind.Null) + { + property.ThrowNonNullablePropertyIsNull(); + continue; + } + List array = new List(); + foreach (var item in property.Value.EnumerateArray()) + { + array.Add(item.GetObject()); + } + annotations = array; + continue; + } + if (property.NameEquals("typeProperties")) + { + if (property.Value.ValueKind == JsonValueKind.Null) + { + property.ThrowNonNullablePropertyIsNull(); + continue; + } + foreach (var property0 in property.Value.EnumerateObject()) + { + if (property0.NameEquals("connectionString")) + { + connectionString = property0.Value.GetObject(); + continue; + } + if (property0.NameEquals("userName")) + { + if (property0.Value.ValueKind == JsonValueKind.Null) + { + property0.ThrowNonNullablePropertyIsNull(); + continue; + } + userName = property0.Value.GetObject(); + continue; + } + if (property0.NameEquals("password")) + { + if (property0.Value.ValueKind == JsonValueKind.Null) + { + property0.ThrowNonNullablePropertyIsNull(); + continue; + } + password = SecretBase.DeserializeSecretBase(property0.Value); + continue; + } + if (property0.NameEquals("encryptedCredential")) + { + if (property0.Value.ValueKind == JsonValueKind.Null) + { + property0.ThrowNonNullablePropertyIsNull(); + continue; + } + encryptedCredential = property0.Value.GetObject(); + continue; + } + } + continue; + } + additionalPropertiesDictionary.Add(property.Name, property.Value.GetObject()); + } + additionalProperties = additionalPropertiesDictionary; + return new AmazonRdsForSqlServerLinkedService(type, connectVia.Value, description.Value, Optional.ToDictionary(parameters), Optional.ToList(annotations), additionalProperties, connectionString, userName.Value, password.Value, encryptedCredential.Value); + } + + internal partial class AmazonRdsForSqlServerLinkedServiceConverter : JsonConverter + { + public override void Write(Utf8JsonWriter writer, AmazonRdsForSqlServerLinkedService model, JsonSerializerOptions options) + { + writer.WriteObjectValue(model); + } + public override AmazonRdsForSqlServerLinkedService Read(ref Utf8JsonReader reader, Type typeToConvert, JsonSerializerOptions options) + { + using var document = JsonDocument.ParseValue(ref reader); + return DeserializeAmazonRdsForSqlServerLinkedService(document.RootElement); + } + } + } +} diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/AmazonRdsForSqlServerLinkedService.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/AmazonRdsForSqlServerLinkedService.cs new file mode 100644 index 000000000000..336c38e0c454 --- /dev/null +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/AmazonRdsForSqlServerLinkedService.cs @@ -0,0 +1,59 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System; +using System.Collections.Generic; + +namespace Azure.Analytics.Synapse.Artifacts.Models +{ + /// Amazon RDS for SQL Server linked service. + public partial class AmazonRdsForSqlServerLinkedService : LinkedService + { + /// Initializes a new instance of AmazonRdsForSqlServerLinkedService. + /// The connection string. Type: string, SecureString or AzureKeyVaultSecretReference. + /// is null. + public AmazonRdsForSqlServerLinkedService(object connectionString) + { + if (connectionString == null) + { + throw new ArgumentNullException(nameof(connectionString)); + } + + ConnectionString = connectionString; + Type = "AmazonRdsForSqlServer"; + } + + /// Initializes a new instance of AmazonRdsForSqlServerLinkedService. + /// Type of linked service. + /// The integration runtime reference. + /// Linked service description. + /// Parameters for linked service. + /// List of tags that can be used for describing the linked service. + /// Additional Properties. + /// The connection string. Type: string, SecureString or AzureKeyVaultSecretReference. + /// The on-premises Windows authentication user name. Type: string (or Expression with resultType string). + /// The on-premises Windows authentication password. + /// The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). + internal AmazonRdsForSqlServerLinkedService(string type, IntegrationRuntimeReference connectVia, string description, IDictionary parameters, IList annotations, IDictionary additionalProperties, object connectionString, object userName, SecretBase password, object encryptedCredential) : base(type, connectVia, description, parameters, annotations, additionalProperties) + { + ConnectionString = connectionString; + UserName = userName; + Password = password; + EncryptedCredential = encryptedCredential; + Type = type ?? "AmazonRdsForSqlServer"; + } + + /// The connection string. Type: string, SecureString or AzureKeyVaultSecretReference. + public object ConnectionString { get; set; } + /// The on-premises Windows authentication user name. Type: string (or Expression with resultType string). + public object UserName { get; set; } + /// The on-premises Windows authentication password. + public SecretBase Password { get; set; } + /// The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). + public object EncryptedCredential { get; set; } + } +} diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/AmazonRdsForSqlServerSource.Serialization.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/AmazonRdsForSqlServerSource.Serialization.cs new file mode 100644 index 000000000000..0659f94186a8 --- /dev/null +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/AmazonRdsForSqlServerSource.Serialization.cs @@ -0,0 +1,250 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System; +using System.Collections.Generic; +using System.Text.Json; +using System.Text.Json.Serialization; +using Azure.Core; + +namespace Azure.Analytics.Synapse.Artifacts.Models +{ + [JsonConverter(typeof(AmazonRdsForSqlServerSourceConverter))] + public partial class AmazonRdsForSqlServerSource : IUtf8JsonSerializable + { + void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) + { + writer.WriteStartObject(); + if (Optional.IsDefined(SqlReaderQuery)) + { + writer.WritePropertyName("sqlReaderQuery"); + writer.WriteObjectValue(SqlReaderQuery); + } + if (Optional.IsDefined(SqlReaderStoredProcedureName)) + { + writer.WritePropertyName("sqlReaderStoredProcedureName"); + writer.WriteObjectValue(SqlReaderStoredProcedureName); + } + if (Optional.IsCollectionDefined(StoredProcedureParameters)) + { + writer.WritePropertyName("storedProcedureParameters"); + writer.WriteStartObject(); + foreach (var item in StoredProcedureParameters) + { + writer.WritePropertyName(item.Key); + writer.WriteObjectValue(item.Value); + } + writer.WriteEndObject(); + } + if (Optional.IsDefined(ProduceAdditionalTypes)) + { + writer.WritePropertyName("produceAdditionalTypes"); + writer.WriteObjectValue(ProduceAdditionalTypes); + } + if (Optional.IsDefined(PartitionOption)) + { + writer.WritePropertyName("partitionOption"); + writer.WriteObjectValue(PartitionOption); + } + if (Optional.IsDefined(PartitionSettings)) + { + writer.WritePropertyName("partitionSettings"); + writer.WriteObjectValue(PartitionSettings); + } + if (Optional.IsDefined(QueryTimeout)) + { + writer.WritePropertyName("queryTimeout"); + writer.WriteObjectValue(QueryTimeout); + } + if (Optional.IsDefined(AdditionalColumns)) + { + writer.WritePropertyName("additionalColumns"); + writer.WriteObjectValue(AdditionalColumns); + } + writer.WritePropertyName("type"); + writer.WriteStringValue(Type); + if (Optional.IsDefined(SourceRetryCount)) + { + writer.WritePropertyName("sourceRetryCount"); + writer.WriteObjectValue(SourceRetryCount); + } + if (Optional.IsDefined(SourceRetryWait)) + { + writer.WritePropertyName("sourceRetryWait"); + writer.WriteObjectValue(SourceRetryWait); + } + if (Optional.IsDefined(MaxConcurrentConnections)) + { + writer.WritePropertyName("maxConcurrentConnections"); + writer.WriteObjectValue(MaxConcurrentConnections); + } + foreach (var item in AdditionalProperties) + { + writer.WritePropertyName(item.Key); + writer.WriteObjectValue(item.Value); + } + writer.WriteEndObject(); + } + + internal static AmazonRdsForSqlServerSource DeserializeAmazonRdsForSqlServerSource(JsonElement element) + { + Optional sqlReaderQuery = default; + Optional sqlReaderStoredProcedureName = default; + Optional> storedProcedureParameters = default; + Optional produceAdditionalTypes = default; + Optional partitionOption = default; + Optional partitionSettings = default; + Optional queryTimeout = default; + Optional additionalColumns = default; + string type = default; + Optional sourceRetryCount = default; + Optional sourceRetryWait = default; + Optional maxConcurrentConnections = default; + IDictionary additionalProperties = default; + Dictionary additionalPropertiesDictionary = new Dictionary(); + foreach (var property in element.EnumerateObject()) + { + if (property.NameEquals("sqlReaderQuery")) + { + if (property.Value.ValueKind == JsonValueKind.Null) + { + property.ThrowNonNullablePropertyIsNull(); + continue; + } + sqlReaderQuery = property.Value.GetObject(); + continue; + } + if (property.NameEquals("sqlReaderStoredProcedureName")) + { + if (property.Value.ValueKind == JsonValueKind.Null) + { + property.ThrowNonNullablePropertyIsNull(); + continue; + } + sqlReaderStoredProcedureName = property.Value.GetObject(); + continue; + } + if (property.NameEquals("storedProcedureParameters")) + { + if (property.Value.ValueKind == JsonValueKind.Null) + { + property.ThrowNonNullablePropertyIsNull(); + continue; + } + Dictionary dictionary = new Dictionary(); + foreach (var property0 in property.Value.EnumerateObject()) + { + dictionary.Add(property0.Name, StoredProcedureParameter.DeserializeStoredProcedureParameter(property0.Value)); + } + storedProcedureParameters = dictionary; + continue; + } + if (property.NameEquals("produceAdditionalTypes")) + { + if (property.Value.ValueKind == JsonValueKind.Null) + { + property.ThrowNonNullablePropertyIsNull(); + continue; + } + produceAdditionalTypes = property.Value.GetObject(); + continue; + } + if (property.NameEquals("partitionOption")) + { + if (property.Value.ValueKind == JsonValueKind.Null) + { + property.ThrowNonNullablePropertyIsNull(); + continue; + } + partitionOption = property.Value.GetObject(); + continue; + } + if (property.NameEquals("partitionSettings")) + { + if (property.Value.ValueKind == JsonValueKind.Null) + { + property.ThrowNonNullablePropertyIsNull(); + continue; + } + partitionSettings = SqlPartitionSettings.DeserializeSqlPartitionSettings(property.Value); + continue; + } + if (property.NameEquals("queryTimeout")) + { + if (property.Value.ValueKind == JsonValueKind.Null) + { + property.ThrowNonNullablePropertyIsNull(); + continue; + } + queryTimeout = property.Value.GetObject(); + continue; + } + if (property.NameEquals("additionalColumns")) + { + if (property.Value.ValueKind == JsonValueKind.Null) + { + property.ThrowNonNullablePropertyIsNull(); + continue; + } + additionalColumns = property.Value.GetObject(); + continue; + } + if (property.NameEquals("type")) + { + type = property.Value.GetString(); + continue; + } + if (property.NameEquals("sourceRetryCount")) + { + if (property.Value.ValueKind == JsonValueKind.Null) + { + property.ThrowNonNullablePropertyIsNull(); + continue; + } + sourceRetryCount = property.Value.GetObject(); + continue; + } + if (property.NameEquals("sourceRetryWait")) + { + if (property.Value.ValueKind == JsonValueKind.Null) + { + property.ThrowNonNullablePropertyIsNull(); + continue; + } + sourceRetryWait = property.Value.GetObject(); + continue; + } + if (property.NameEquals("maxConcurrentConnections")) + { + if (property.Value.ValueKind == JsonValueKind.Null) + { + property.ThrowNonNullablePropertyIsNull(); + continue; + } + maxConcurrentConnections = property.Value.GetObject(); + continue; + } + additionalPropertiesDictionary.Add(property.Name, property.Value.GetObject()); + } + additionalProperties = additionalPropertiesDictionary; + return new AmazonRdsForSqlServerSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, queryTimeout.Value, additionalColumns.Value, sqlReaderQuery.Value, sqlReaderStoredProcedureName.Value, Optional.ToDictionary(storedProcedureParameters), produceAdditionalTypes.Value, partitionOption.Value, partitionSettings.Value); + } + + internal partial class AmazonRdsForSqlServerSourceConverter : JsonConverter + { + public override void Write(Utf8JsonWriter writer, AmazonRdsForSqlServerSource model, JsonSerializerOptions options) + { + writer.WriteObjectValue(model); + } + public override AmazonRdsForSqlServerSource Read(ref Utf8JsonReader reader, Type typeToConvert, JsonSerializerOptions options) + { + using var document = JsonDocument.ParseValue(ref reader); + return DeserializeAmazonRdsForSqlServerSource(document.RootElement); + } + } + } +} diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/AmazonRdsForSqlServerSource.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/AmazonRdsForSqlServerSource.cs new file mode 100644 index 000000000000..7b8510474a7e --- /dev/null +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/AmazonRdsForSqlServerSource.cs @@ -0,0 +1,61 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System.Collections.Generic; +using Azure.Core; + +namespace Azure.Analytics.Synapse.Artifacts.Models +{ + /// A copy activity Amazon RDS for SQL Server source. + public partial class AmazonRdsForSqlServerSource : TabularSource + { + /// Initializes a new instance of AmazonRdsForSqlServerSource. + public AmazonRdsForSqlServerSource() + { + StoredProcedureParameters = new ChangeTrackingDictionary(); + Type = "AmazonRdsForSqlServerSource"; + } + + /// Initializes a new instance of AmazonRdsForSqlServerSource. + /// Copy source type. + /// Source retry count. Type: integer (or Expression with resultType integer). + /// Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])). + /// The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer). + /// Additional Properties. + /// Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])). + /// Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects). + /// SQL reader query. Type: string (or Expression with resultType string). + /// Name of the stored procedure for a SQL Database source. This cannot be used at the same time as SqlReaderQuery. Type: string (or Expression with resultType string). + /// Value and type setting for stored procedure parameters. Example: "{Parameter1: {value: "1", type: "int"}}". + /// Which additional types to produce. + /// The partition mechanism that will be used for Sql read in parallel. Possible values include: "None", "PhysicalPartitionsOfTable", "DynamicRange". + /// The settings that will be leveraged for Sql source partitioning. + internal AmazonRdsForSqlServerSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object queryTimeout, object additionalColumns, object sqlReaderQuery, object sqlReaderStoredProcedureName, IDictionary storedProcedureParameters, object produceAdditionalTypes, object partitionOption, SqlPartitionSettings partitionSettings) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties, queryTimeout, additionalColumns) + { + SqlReaderQuery = sqlReaderQuery; + SqlReaderStoredProcedureName = sqlReaderStoredProcedureName; + StoredProcedureParameters = storedProcedureParameters; + ProduceAdditionalTypes = produceAdditionalTypes; + PartitionOption = partitionOption; + PartitionSettings = partitionSettings; + Type = type ?? "AmazonRdsForSqlServerSource"; + } + + /// SQL reader query. Type: string (or Expression with resultType string). + public object SqlReaderQuery { get; set; } + /// Name of the stored procedure for a SQL Database source. This cannot be used at the same time as SqlReaderQuery. Type: string (or Expression with resultType string). + public object SqlReaderStoredProcedureName { get; set; } + /// Value and type setting for stored procedure parameters. Example: "{Parameter1: {value: "1", type: "int"}}". + public IDictionary StoredProcedureParameters { get; } + /// Which additional types to produce. + public object ProduceAdditionalTypes { get; set; } + /// The partition mechanism that will be used for Sql read in parallel. Possible values include: "None", "PhysicalPartitionsOfTable", "DynamicRange". + public object PartitionOption { get; set; } + /// The settings that will be leveraged for Sql source partitioning. + public SqlPartitionSettings PartitionSettings { get; set; } + } +} diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/AmazonRdsForSqlServerTableDataset.Serialization.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/AmazonRdsForSqlServerTableDataset.Serialization.cs new file mode 100644 index 000000000000..98d15e60de27 --- /dev/null +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/AmazonRdsForSqlServerTableDataset.Serialization.cs @@ -0,0 +1,230 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System; +using System.Collections.Generic; +using System.Text.Json; +using System.Text.Json.Serialization; +using Azure.Core; + +namespace Azure.Analytics.Synapse.Artifacts.Models +{ + [JsonConverter(typeof(AmazonRdsForSqlServerTableDatasetConverter))] + public partial class AmazonRdsForSqlServerTableDataset : IUtf8JsonSerializable + { + void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) + { + writer.WriteStartObject(); + writer.WritePropertyName("type"); + writer.WriteStringValue(Type); + if (Optional.IsDefined(Description)) + { + writer.WritePropertyName("description"); + writer.WriteStringValue(Description); + } + if (Optional.IsDefined(Structure)) + { + writer.WritePropertyName("structure"); + writer.WriteObjectValue(Structure); + } + if (Optional.IsDefined(Schema)) + { + writer.WritePropertyName("schema"); + writer.WriteObjectValue(Schema); + } + writer.WritePropertyName("linkedServiceName"); + writer.WriteObjectValue(LinkedServiceName); + if (Optional.IsCollectionDefined(Parameters)) + { + writer.WritePropertyName("parameters"); + writer.WriteStartObject(); + foreach (var item in Parameters) + { + writer.WritePropertyName(item.Key); + writer.WriteObjectValue(item.Value); + } + writer.WriteEndObject(); + } + if (Optional.IsCollectionDefined(Annotations)) + { + writer.WritePropertyName("annotations"); + writer.WriteStartArray(); + foreach (var item in Annotations) + { + writer.WriteObjectValue(item); + } + writer.WriteEndArray(); + } + if (Optional.IsDefined(Folder)) + { + writer.WritePropertyName("folder"); + writer.WriteObjectValue(Folder); + } + writer.WritePropertyName("typeProperties"); + writer.WriteStartObject(); + if (Optional.IsDefined(SchemaTypePropertiesSchema)) + { + writer.WritePropertyName("schema"); + writer.WriteObjectValue(SchemaTypePropertiesSchema); + } + if (Optional.IsDefined(Table)) + { + writer.WritePropertyName("table"); + writer.WriteObjectValue(Table); + } + writer.WriteEndObject(); + foreach (var item in AdditionalProperties) + { + writer.WritePropertyName(item.Key); + writer.WriteObjectValue(item.Value); + } + writer.WriteEndObject(); + } + + internal static AmazonRdsForSqlServerTableDataset DeserializeAmazonRdsForSqlServerTableDataset(JsonElement element) + { + string type = default; + Optional description = default; + Optional structure = default; + Optional schema = default; + LinkedServiceReference linkedServiceName = default; + Optional> parameters = default; + Optional> annotations = default; + Optional folder = default; + Optional schema0 = default; + Optional table = default; + IDictionary additionalProperties = default; + Dictionary additionalPropertiesDictionary = new Dictionary(); + foreach (var property in element.EnumerateObject()) + { + if (property.NameEquals("type")) + { + type = property.Value.GetString(); + continue; + } + if (property.NameEquals("description")) + { + description = property.Value.GetString(); + continue; + } + if (property.NameEquals("structure")) + { + if (property.Value.ValueKind == JsonValueKind.Null) + { + property.ThrowNonNullablePropertyIsNull(); + continue; + } + structure = property.Value.GetObject(); + continue; + } + if (property.NameEquals("schema")) + { + if (property.Value.ValueKind == JsonValueKind.Null) + { + property.ThrowNonNullablePropertyIsNull(); + continue; + } + schema = property.Value.GetObject(); + continue; + } + if (property.NameEquals("linkedServiceName")) + { + linkedServiceName = LinkedServiceReference.DeserializeLinkedServiceReference(property.Value); + continue; + } + if (property.NameEquals("parameters")) + { + if (property.Value.ValueKind == JsonValueKind.Null) + { + property.ThrowNonNullablePropertyIsNull(); + continue; + } + Dictionary dictionary = new Dictionary(); + foreach (var property0 in property.Value.EnumerateObject()) + { + dictionary.Add(property0.Name, ParameterSpecification.DeserializeParameterSpecification(property0.Value)); + } + parameters = dictionary; + continue; + } + if (property.NameEquals("annotations")) + { + if (property.Value.ValueKind == JsonValueKind.Null) + { + property.ThrowNonNullablePropertyIsNull(); + continue; + } + List array = new List(); + foreach (var item in property.Value.EnumerateArray()) + { + array.Add(item.GetObject()); + } + annotations = array; + continue; + } + if (property.NameEquals("folder")) + { + if (property.Value.ValueKind == JsonValueKind.Null) + { + property.ThrowNonNullablePropertyIsNull(); + continue; + } + folder = DatasetFolder.DeserializeDatasetFolder(property.Value); + continue; + } + if (property.NameEquals("typeProperties")) + { + if (property.Value.ValueKind == JsonValueKind.Null) + { + property.ThrowNonNullablePropertyIsNull(); + continue; + } + foreach (var property0 in property.Value.EnumerateObject()) + { + if (property0.NameEquals("schema")) + { + if (property0.Value.ValueKind == JsonValueKind.Null) + { + property0.ThrowNonNullablePropertyIsNull(); + continue; + } + schema0 = property0.Value.GetObject(); + continue; + } + if (property0.NameEquals("table")) + { + if (property0.Value.ValueKind == JsonValueKind.Null) + { + property0.ThrowNonNullablePropertyIsNull(); + continue; + } + table = property0.Value.GetObject(); + continue; + } + } + continue; + } + additionalPropertiesDictionary.Add(property.Name, property.Value.GetObject()); + } + additionalProperties = additionalPropertiesDictionary; + return new AmazonRdsForSqlServerTableDataset(type, description.Value, structure.Value, schema.Value, linkedServiceName, Optional.ToDictionary(parameters), Optional.ToList(annotations), folder.Value, additionalProperties, schema0.Value, table.Value); + } + + internal partial class AmazonRdsForSqlServerTableDatasetConverter : JsonConverter + { + public override void Write(Utf8JsonWriter writer, AmazonRdsForSqlServerTableDataset model, JsonSerializerOptions options) + { + writer.WriteObjectValue(model); + } + public override AmazonRdsForSqlServerTableDataset Read(ref Utf8JsonReader reader, Type typeToConvert, JsonSerializerOptions options) + { + using var document = JsonDocument.ParseValue(ref reader); + return DeserializeAmazonRdsForSqlServerTableDataset(document.RootElement); + } + } + } +} diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/AmazonRdsForSqlServerTableDataset.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/AmazonRdsForSqlServerTableDataset.cs new file mode 100644 index 000000000000..a3dfd1b65539 --- /dev/null +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/AmazonRdsForSqlServerTableDataset.cs @@ -0,0 +1,53 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System; +using System.Collections.Generic; + +namespace Azure.Analytics.Synapse.Artifacts.Models +{ + /// The Amazon RDS for SQL Server dataset. + public partial class AmazonRdsForSqlServerTableDataset : Dataset + { + /// Initializes a new instance of AmazonRdsForSqlServerTableDataset. + /// Linked service reference. + /// is null. + public AmazonRdsForSqlServerTableDataset(LinkedServiceReference linkedServiceName) : base(linkedServiceName) + { + if (linkedServiceName == null) + { + throw new ArgumentNullException(nameof(linkedServiceName)); + } + + Type = "AmazonRdsForSqlServerTable"; + } + + /// Initializes a new instance of AmazonRdsForSqlServerTableDataset. + /// Type of dataset. + /// Dataset description. + /// Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement. + /// Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement. + /// Linked service reference. + /// Parameters for dataset. + /// List of tags that can be used for describing the Dataset. + /// The folder that this Dataset is in. If not specified, Dataset will appear at the root level. + /// Additional Properties. + /// The schema name of the SQL Server dataset. Type: string (or Expression with resultType string). + /// The table name of the SQL Server dataset. Type: string (or Expression with resultType string). + internal AmazonRdsForSqlServerTableDataset(string type, string description, object structure, object schema, LinkedServiceReference linkedServiceName, IDictionary parameters, IList annotations, DatasetFolder folder, IDictionary additionalProperties, object schemaTypePropertiesSchema, object table) : base(type, description, structure, schema, linkedServiceName, parameters, annotations, folder, additionalProperties) + { + SchemaTypePropertiesSchema = schemaTypePropertiesSchema; + Table = table; + Type = type ?? "AmazonRdsForSqlServerTable"; + } + + /// The schema name of the SQL Server dataset. Type: string (or Expression with resultType string). + public object SchemaTypePropertiesSchema { get; set; } + /// The table name of the SQL Server dataset. Type: string (or Expression with resultType string). + public object Table { get; set; } + } +} diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/AmazonRedshiftSource.Serialization.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/AmazonRedshiftSource.Serialization.cs index d4edf1af8f41..dac56e7097e7 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/AmazonRedshiftSource.Serialization.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/AmazonRedshiftSource.Serialization.cs @@ -34,15 +34,10 @@ void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) writer.WritePropertyName("queryTimeout"); writer.WriteObjectValue(QueryTimeout); } - if (Optional.IsCollectionDefined(AdditionalColumns)) + if (Optional.IsDefined(AdditionalColumns)) { writer.WritePropertyName("additionalColumns"); - writer.WriteStartArray(); - foreach (var item in AdditionalColumns) - { - writer.WriteObjectValue(item); - } - writer.WriteEndArray(); + writer.WriteObjectValue(AdditionalColumns); } writer.WritePropertyName("type"); writer.WriteStringValue(Type); @@ -74,7 +69,7 @@ internal static AmazonRedshiftSource DeserializeAmazonRedshiftSource(JsonElement Optional query = default; Optional redshiftUnloadSettings = default; Optional queryTimeout = default; - Optional> additionalColumns = default; + Optional additionalColumns = default; string type = default; Optional sourceRetryCount = default; Optional sourceRetryWait = default; @@ -120,12 +115,7 @@ internal static AmazonRedshiftSource DeserializeAmazonRedshiftSource(JsonElement property.ThrowNonNullablePropertyIsNull(); continue; } - List array = new List(); - foreach (var item in property.Value.EnumerateArray()) - { - array.Add(Models.AdditionalColumns.DeserializeAdditionalColumns(item)); - } - additionalColumns = array; + additionalColumns = property.Value.GetObject(); continue; } if (property.NameEquals("type")) @@ -166,7 +156,7 @@ internal static AmazonRedshiftSource DeserializeAmazonRedshiftSource(JsonElement additionalPropertiesDictionary.Add(property.Name, property.Value.GetObject()); } additionalProperties = additionalPropertiesDictionary; - return new AmazonRedshiftSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, queryTimeout.Value, Optional.ToList(additionalColumns), query.Value, redshiftUnloadSettings.Value); + return new AmazonRedshiftSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, queryTimeout.Value, additionalColumns.Value, query.Value, redshiftUnloadSettings.Value); } internal partial class AmazonRedshiftSourceConverter : JsonConverter diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/AmazonRedshiftSource.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/AmazonRedshiftSource.cs index 7f1e048de00b..1d57065034c5 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/AmazonRedshiftSource.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/AmazonRedshiftSource.cs @@ -25,10 +25,10 @@ public AmazonRedshiftSource() /// The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer). /// Additional Properties. /// Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])). - /// Specifies the additional columns to be added to source data. Type: array of objects (or Expression with resultType array of objects). + /// Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects). /// Database query. Type: string (or Expression with resultType string). /// The Amazon S3 settings needed for the interim Amazon S3 when copying from Amazon Redshift with unload. With this, data from Amazon Redshift source will be unloaded into S3 first and then copied into the targeted sink from the interim S3. - internal AmazonRedshiftSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object queryTimeout, IList additionalColumns, object query, RedshiftUnloadSettings redshiftUnloadSettings) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties, queryTimeout, additionalColumns) + internal AmazonRedshiftSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object queryTimeout, object additionalColumns, object query, RedshiftUnloadSettings redshiftUnloadSettings) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties, queryTimeout, additionalColumns) { Query = query; RedshiftUnloadSettings = redshiftUnloadSettings; diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/AvroSource.Serialization.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/AvroSource.Serialization.cs index b73f785c02b7..7128f088544f 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/AvroSource.Serialization.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/AvroSource.Serialization.cs @@ -24,15 +24,10 @@ void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) writer.WritePropertyName("storeSettings"); writer.WriteObjectValue(StoreSettings); } - if (Optional.IsCollectionDefined(AdditionalColumns)) + if (Optional.IsDefined(AdditionalColumns)) { writer.WritePropertyName("additionalColumns"); - writer.WriteStartArray(); - foreach (var item in AdditionalColumns) - { - writer.WriteObjectValue(item); - } - writer.WriteEndArray(); + writer.WriteObjectValue(AdditionalColumns); } writer.WritePropertyName("type"); writer.WriteStringValue(Type); @@ -62,7 +57,7 @@ void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) internal static AvroSource DeserializeAvroSource(JsonElement element) { Optional storeSettings = default; - Optional> additionalColumns = default; + Optional additionalColumns = default; string type = default; Optional sourceRetryCount = default; Optional sourceRetryWait = default; @@ -88,12 +83,7 @@ internal static AvroSource DeserializeAvroSource(JsonElement element) property.ThrowNonNullablePropertyIsNull(); continue; } - List array = new List(); - foreach (var item in property.Value.EnumerateArray()) - { - array.Add(Models.AdditionalColumns.DeserializeAdditionalColumns(item)); - } - additionalColumns = array; + additionalColumns = property.Value.GetObject(); continue; } if (property.NameEquals("type")) @@ -134,7 +124,7 @@ internal static AvroSource DeserializeAvroSource(JsonElement element) additionalPropertiesDictionary.Add(property.Name, property.Value.GetObject()); } additionalProperties = additionalPropertiesDictionary; - return new AvroSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, storeSettings.Value, Optional.ToList(additionalColumns)); + return new AvroSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, storeSettings.Value, additionalColumns.Value); } internal partial class AvroSourceConverter : JsonConverter diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/AvroSource.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/AvroSource.cs index 328af1d44b8d..24100a7a1fdf 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/AvroSource.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/AvroSource.cs @@ -6,7 +6,6 @@ #nullable disable using System.Collections.Generic; -using Azure.Core; namespace Azure.Analytics.Synapse.Artifacts.Models { @@ -16,7 +15,6 @@ public partial class AvroSource : CopySource /// Initializes a new instance of AvroSource. public AvroSource() { - AdditionalColumns = new ChangeTrackingList(); Type = "AvroSource"; } @@ -27,8 +25,8 @@ public AvroSource() /// The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer). /// Additional Properties. /// Avro store settings. - /// Specifies the additional columns to be added to source data. Type: array of objects (or Expression with resultType array of objects). - internal AvroSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, StoreReadSettings storeSettings, IList additionalColumns) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties) + /// Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects). + internal AvroSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, StoreReadSettings storeSettings, object additionalColumns) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties) { StoreSettings = storeSettings; AdditionalColumns = additionalColumns; @@ -37,7 +35,7 @@ internal AvroSource(string type, object sourceRetryCount, object sourceRetryWait /// Avro store settings. public StoreReadSettings StoreSettings { get; set; } - /// Specifies the additional columns to be added to source data. Type: array of objects (or Expression with resultType array of objects). - public IList AdditionalColumns { get; } + /// Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects). + public object AdditionalColumns { get; set; } } } diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/AzureBlobStorageLinkedService.Serialization.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/AzureBlobStorageLinkedService.Serialization.cs index 490823facf79..c75ca581a715 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/AzureBlobStorageLinkedService.Serialization.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/AzureBlobStorageLinkedService.Serialization.cs @@ -99,6 +99,11 @@ void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) writer.WritePropertyName("azureCloudType"); writer.WriteObjectValue(AzureCloudType); } + if (Optional.IsDefined(AccountKind)) + { + writer.WritePropertyName("accountKind"); + writer.WriteStringValue(AccountKind); + } if (Optional.IsDefined(EncryptedCredential)) { writer.WritePropertyName("encryptedCredential"); @@ -129,6 +134,7 @@ internal static AzureBlobStorageLinkedService DeserializeAzureBlobStorageLinkedS Optional servicePrincipalKey = default; Optional tenant = default; Optional azureCloudType = default; + Optional accountKind = default; Optional encryptedCredential = default; IDictionary additionalProperties = default; Dictionary additionalPropertiesDictionary = new Dictionary(); @@ -278,6 +284,11 @@ internal static AzureBlobStorageLinkedService DeserializeAzureBlobStorageLinkedS azureCloudType = property0.Value.GetObject(); continue; } + if (property0.NameEquals("accountKind")) + { + accountKind = property0.Value.GetString(); + continue; + } if (property0.NameEquals("encryptedCredential")) { encryptedCredential = property0.Value.GetString(); @@ -289,7 +300,7 @@ internal static AzureBlobStorageLinkedService DeserializeAzureBlobStorageLinkedS additionalPropertiesDictionary.Add(property.Name, property.Value.GetObject()); } additionalProperties = additionalPropertiesDictionary; - return new AzureBlobStorageLinkedService(type, connectVia.Value, description.Value, Optional.ToDictionary(parameters), Optional.ToList(annotations), additionalProperties, connectionString.Value, accountKey.Value, sasUri.Value, sasToken.Value, serviceEndpoint.Value, servicePrincipalId.Value, servicePrincipalKey.Value, tenant.Value, azureCloudType.Value, encryptedCredential.Value); + return new AzureBlobStorageLinkedService(type, connectVia.Value, description.Value, Optional.ToDictionary(parameters), Optional.ToList(annotations), additionalProperties, connectionString.Value, accountKey.Value, sasUri.Value, sasToken.Value, serviceEndpoint.Value, servicePrincipalId.Value, servicePrincipalKey.Value, tenant.Value, azureCloudType.Value, accountKind.Value, encryptedCredential.Value); } internal partial class AzureBlobStorageLinkedServiceConverter : JsonConverter diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/AzureBlobStorageLinkedService.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/AzureBlobStorageLinkedService.cs index 5921c3b6b048..fcdb72672015 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/AzureBlobStorageLinkedService.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/AzureBlobStorageLinkedService.cs @@ -34,8 +34,9 @@ public AzureBlobStorageLinkedService() /// The key of the service principal used to authenticate against Azure SQL Data Warehouse. /// The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string). /// Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string). + /// Specify the kind of your storage account. Allowed values are: Storage (general purpose v1), StorageV2 (general purpose v2), BlobStorage, or BlockBlobStorage. Type: string (or Expression with resultType string). /// The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). - internal AzureBlobStorageLinkedService(string type, IntegrationRuntimeReference connectVia, string description, IDictionary parameters, IList annotations, IDictionary additionalProperties, object connectionString, AzureKeyVaultSecretReference accountKey, object sasUri, AzureKeyVaultSecretReference sasToken, string serviceEndpoint, object servicePrincipalId, SecretBase servicePrincipalKey, object tenant, object azureCloudType, string encryptedCredential) : base(type, connectVia, description, parameters, annotations, additionalProperties) + internal AzureBlobStorageLinkedService(string type, IntegrationRuntimeReference connectVia, string description, IDictionary parameters, IList annotations, IDictionary additionalProperties, object connectionString, AzureKeyVaultSecretReference accountKey, object sasUri, AzureKeyVaultSecretReference sasToken, string serviceEndpoint, object servicePrincipalId, SecretBase servicePrincipalKey, object tenant, object azureCloudType, string accountKind, string encryptedCredential) : base(type, connectVia, description, parameters, annotations, additionalProperties) { ConnectionString = connectionString; AccountKey = accountKey; @@ -46,6 +47,7 @@ internal AzureBlobStorageLinkedService(string type, IntegrationRuntimeReference ServicePrincipalKey = servicePrincipalKey; Tenant = tenant; AzureCloudType = azureCloudType; + AccountKind = accountKind; EncryptedCredential = encryptedCredential; Type = type ?? "AzureBlobStorage"; } @@ -68,6 +70,8 @@ internal AzureBlobStorageLinkedService(string type, IntegrationRuntimeReference public object Tenant { get; set; } /// Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string). public object AzureCloudType { get; set; } + /// Specify the kind of your storage account. Allowed values are: Storage (general purpose v1), StorageV2 (general purpose v2), BlobStorage, or BlockBlobStorage. Type: string (or Expression with resultType string). + public string AccountKind { get; set; } /// The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). public string EncryptedCredential { get; set; } } diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/AzureDataExplorerLinkedService.Serialization.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/AzureDataExplorerLinkedService.Serialization.cs index 705988dc02bf..f71a6513c75a 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/AzureDataExplorerLinkedService.Serialization.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/AzureDataExplorerLinkedService.Serialization.cs @@ -56,14 +56,23 @@ void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) writer.WriteStartObject(); writer.WritePropertyName("endpoint"); writer.WriteObjectValue(Endpoint); - writer.WritePropertyName("servicePrincipalId"); - writer.WriteObjectValue(ServicePrincipalId); - writer.WritePropertyName("servicePrincipalKey"); - writer.WriteObjectValue(ServicePrincipalKey); + if (Optional.IsDefined(ServicePrincipalId)) + { + writer.WritePropertyName("servicePrincipalId"); + writer.WriteObjectValue(ServicePrincipalId); + } + if (Optional.IsDefined(ServicePrincipalKey)) + { + writer.WritePropertyName("servicePrincipalKey"); + writer.WriteObjectValue(ServicePrincipalKey); + } writer.WritePropertyName("database"); writer.WriteObjectValue(Database); - writer.WritePropertyName("tenant"); - writer.WriteObjectValue(Tenant); + if (Optional.IsDefined(Tenant)) + { + writer.WritePropertyName("tenant"); + writer.WriteObjectValue(Tenant); + } writer.WriteEndObject(); foreach (var item in AdditionalProperties) { @@ -81,10 +90,10 @@ internal static AzureDataExplorerLinkedService DeserializeAzureDataExplorerLinke Optional> parameters = default; Optional> annotations = default; object endpoint = default; - object servicePrincipalId = default; - SecretBase servicePrincipalKey = default; + Optional servicePrincipalId = default; + Optional servicePrincipalKey = default; object database = default; - object tenant = default; + Optional tenant = default; IDictionary additionalProperties = default; Dictionary additionalPropertiesDictionary = new Dictionary(); foreach (var property in element.EnumerateObject()) @@ -155,11 +164,21 @@ internal static AzureDataExplorerLinkedService DeserializeAzureDataExplorerLinke } if (property0.NameEquals("servicePrincipalId")) { + if (property0.Value.ValueKind == JsonValueKind.Null) + { + property0.ThrowNonNullablePropertyIsNull(); + continue; + } servicePrincipalId = property0.Value.GetObject(); continue; } if (property0.NameEquals("servicePrincipalKey")) { + if (property0.Value.ValueKind == JsonValueKind.Null) + { + property0.ThrowNonNullablePropertyIsNull(); + continue; + } servicePrincipalKey = SecretBase.DeserializeSecretBase(property0.Value); continue; } @@ -170,6 +189,11 @@ internal static AzureDataExplorerLinkedService DeserializeAzureDataExplorerLinke } if (property0.NameEquals("tenant")) { + if (property0.Value.ValueKind == JsonValueKind.Null) + { + property0.ThrowNonNullablePropertyIsNull(); + continue; + } tenant = property0.Value.GetObject(); continue; } @@ -179,7 +203,7 @@ internal static AzureDataExplorerLinkedService DeserializeAzureDataExplorerLinke additionalPropertiesDictionary.Add(property.Name, property.Value.GetObject()); } additionalProperties = additionalPropertiesDictionary; - return new AzureDataExplorerLinkedService(type, connectVia.Value, description.Value, Optional.ToDictionary(parameters), Optional.ToList(annotations), additionalProperties, endpoint, servicePrincipalId, servicePrincipalKey, database, tenant); + return new AzureDataExplorerLinkedService(type, connectVia.Value, description.Value, Optional.ToDictionary(parameters), Optional.ToList(annotations), additionalProperties, endpoint, servicePrincipalId.Value, servicePrincipalKey.Value, database, tenant.Value); } internal partial class AzureDataExplorerLinkedServiceConverter : JsonConverter diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/AzureDataExplorerLinkedService.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/AzureDataExplorerLinkedService.cs index 120ea1348d1a..5f8f93164d5c 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/AzureDataExplorerLinkedService.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/AzureDataExplorerLinkedService.cs @@ -15,39 +15,21 @@ public partial class AzureDataExplorerLinkedService : LinkedService { /// Initializes a new instance of AzureDataExplorerLinkedService. /// The endpoint of Azure Data Explorer (the engine's endpoint). URL will be in the format https://<clusterName>.<regionName>.kusto.windows.net. Type: string (or Expression with resultType string). - /// The ID of the service principal used to authenticate against Azure Data Explorer. Type: string (or Expression with resultType string). - /// The key of the service principal used to authenticate against Kusto. /// Database name for connection. Type: string (or Expression with resultType string). - /// The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string). - /// , , , , or is null. - public AzureDataExplorerLinkedService(object endpoint, object servicePrincipalId, SecretBase servicePrincipalKey, object database, object tenant) + /// or is null. + public AzureDataExplorerLinkedService(object endpoint, object database) { if (endpoint == null) { throw new ArgumentNullException(nameof(endpoint)); } - if (servicePrincipalId == null) - { - throw new ArgumentNullException(nameof(servicePrincipalId)); - } - if (servicePrincipalKey == null) - { - throw new ArgumentNullException(nameof(servicePrincipalKey)); - } if (database == null) { throw new ArgumentNullException(nameof(database)); } - if (tenant == null) - { - throw new ArgumentNullException(nameof(tenant)); - } Endpoint = endpoint; - ServicePrincipalId = servicePrincipalId; - ServicePrincipalKey = servicePrincipalKey; Database = database; - Tenant = tenant; Type = "AzureDataExplorer"; } diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/AzureDataExplorerSource.Serialization.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/AzureDataExplorerSource.Serialization.cs index 8094858888bd..cf08159930b4 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/AzureDataExplorerSource.Serialization.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/AzureDataExplorerSource.Serialization.cs @@ -31,15 +31,10 @@ void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) writer.WritePropertyName("queryTimeout"); writer.WriteObjectValue(QueryTimeout); } - if (Optional.IsCollectionDefined(AdditionalColumns)) + if (Optional.IsDefined(AdditionalColumns)) { writer.WritePropertyName("additionalColumns"); - writer.WriteStartArray(); - foreach (var item in AdditionalColumns) - { - writer.WriteObjectValue(item); - } - writer.WriteEndArray(); + writer.WriteObjectValue(AdditionalColumns); } writer.WritePropertyName("type"); writer.WriteStringValue(Type); @@ -71,7 +66,7 @@ internal static AzureDataExplorerSource DeserializeAzureDataExplorerSource(JsonE object query = default; Optional noTruncation = default; Optional queryTimeout = default; - Optional> additionalColumns = default; + Optional additionalColumns = default; string type = default; Optional sourceRetryCount = default; Optional sourceRetryWait = default; @@ -112,12 +107,7 @@ internal static AzureDataExplorerSource DeserializeAzureDataExplorerSource(JsonE property.ThrowNonNullablePropertyIsNull(); continue; } - List array = new List(); - foreach (var item in property.Value.EnumerateArray()) - { - array.Add(Models.AdditionalColumns.DeserializeAdditionalColumns(item)); - } - additionalColumns = array; + additionalColumns = property.Value.GetObject(); continue; } if (property.NameEquals("type")) @@ -158,7 +148,7 @@ internal static AzureDataExplorerSource DeserializeAzureDataExplorerSource(JsonE additionalPropertiesDictionary.Add(property.Name, property.Value.GetObject()); } additionalProperties = additionalPropertiesDictionary; - return new AzureDataExplorerSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, query, noTruncation.Value, queryTimeout.Value, Optional.ToList(additionalColumns)); + return new AzureDataExplorerSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, query, noTruncation.Value, queryTimeout.Value, additionalColumns.Value); } internal partial class AzureDataExplorerSourceConverter : JsonConverter diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/AzureDataExplorerSource.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/AzureDataExplorerSource.cs index f956cc3f6202..1e516ae9e3ae 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/AzureDataExplorerSource.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/AzureDataExplorerSource.cs @@ -7,7 +7,6 @@ using System; using System.Collections.Generic; -using Azure.Core; namespace Azure.Analytics.Synapse.Artifacts.Models { @@ -25,7 +24,6 @@ public AzureDataExplorerSource(object query) } Query = query; - AdditionalColumns = new ChangeTrackingList(); Type = "AzureDataExplorerSource"; } @@ -38,8 +36,8 @@ public AzureDataExplorerSource(object query) /// Database query. Should be a Kusto Query Language (KQL) query. Type: string (or Expression with resultType string). /// The name of the Boolean option that controls whether truncation is applied to result-sets that go beyond a certain row-count limit. /// Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).. - /// Specifies the additional columns to be added to source data. Type: array of objects (or Expression with resultType array of objects). - internal AzureDataExplorerSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object query, object noTruncation, object queryTimeout, IList additionalColumns) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties) + /// Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects). + internal AzureDataExplorerSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object query, object noTruncation, object queryTimeout, object additionalColumns) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties) { Query = query; NoTruncation = noTruncation; @@ -54,7 +52,7 @@ internal AzureDataExplorerSource(string type, object sourceRetryCount, object so public object NoTruncation { get; set; } /// Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).. public object QueryTimeout { get; set; } - /// Specifies the additional columns to be added to source data. Type: array of objects (or Expression with resultType array of objects). - public IList AdditionalColumns { get; } + /// Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects). + public object AdditionalColumns { get; set; } } } diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/AzureMariaDBSource.Serialization.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/AzureMariaDBSource.Serialization.cs index 05586cbd7b49..54fa16c42092 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/AzureMariaDBSource.Serialization.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/AzureMariaDBSource.Serialization.cs @@ -29,15 +29,10 @@ void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) writer.WritePropertyName("queryTimeout"); writer.WriteObjectValue(QueryTimeout); } - if (Optional.IsCollectionDefined(AdditionalColumns)) + if (Optional.IsDefined(AdditionalColumns)) { writer.WritePropertyName("additionalColumns"); - writer.WriteStartArray(); - foreach (var item in AdditionalColumns) - { - writer.WriteObjectValue(item); - } - writer.WriteEndArray(); + writer.WriteObjectValue(AdditionalColumns); } writer.WritePropertyName("type"); writer.WriteStringValue(Type); @@ -68,7 +63,7 @@ internal static AzureMariaDBSource DeserializeAzureMariaDBSource(JsonElement ele { Optional query = default; Optional queryTimeout = default; - Optional> additionalColumns = default; + Optional additionalColumns = default; string type = default; Optional sourceRetryCount = default; Optional sourceRetryWait = default; @@ -104,12 +99,7 @@ internal static AzureMariaDBSource DeserializeAzureMariaDBSource(JsonElement ele property.ThrowNonNullablePropertyIsNull(); continue; } - List array = new List(); - foreach (var item in property.Value.EnumerateArray()) - { - array.Add(Models.AdditionalColumns.DeserializeAdditionalColumns(item)); - } - additionalColumns = array; + additionalColumns = property.Value.GetObject(); continue; } if (property.NameEquals("type")) @@ -150,7 +140,7 @@ internal static AzureMariaDBSource DeserializeAzureMariaDBSource(JsonElement ele additionalPropertiesDictionary.Add(property.Name, property.Value.GetObject()); } additionalProperties = additionalPropertiesDictionary; - return new AzureMariaDBSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, queryTimeout.Value, Optional.ToList(additionalColumns), query.Value); + return new AzureMariaDBSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, queryTimeout.Value, additionalColumns.Value, query.Value); } internal partial class AzureMariaDBSourceConverter : JsonConverter diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/AzureMariaDBSource.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/AzureMariaDBSource.cs index 195c2deb003f..739aae7b6d2b 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/AzureMariaDBSource.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/AzureMariaDBSource.cs @@ -25,9 +25,9 @@ public AzureMariaDBSource() /// The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer). /// Additional Properties. /// Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])). - /// Specifies the additional columns to be added to source data. Type: array of objects (or Expression with resultType array of objects). + /// Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects). /// A query to retrieve data from source. Type: string (or Expression with resultType string). - internal AzureMariaDBSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object queryTimeout, IList additionalColumns, object query) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties, queryTimeout, additionalColumns) + internal AzureMariaDBSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object queryTimeout, object additionalColumns, object query) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties, queryTimeout, additionalColumns) { Query = query; Type = type ?? "AzureMariaDBSource"; diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/AzureMySqlSource.Serialization.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/AzureMySqlSource.Serialization.cs index a11729fa4df0..61a9b3ee3eeb 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/AzureMySqlSource.Serialization.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/AzureMySqlSource.Serialization.cs @@ -29,15 +29,10 @@ void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) writer.WritePropertyName("queryTimeout"); writer.WriteObjectValue(QueryTimeout); } - if (Optional.IsCollectionDefined(AdditionalColumns)) + if (Optional.IsDefined(AdditionalColumns)) { writer.WritePropertyName("additionalColumns"); - writer.WriteStartArray(); - foreach (var item in AdditionalColumns) - { - writer.WriteObjectValue(item); - } - writer.WriteEndArray(); + writer.WriteObjectValue(AdditionalColumns); } writer.WritePropertyName("type"); writer.WriteStringValue(Type); @@ -68,7 +63,7 @@ internal static AzureMySqlSource DeserializeAzureMySqlSource(JsonElement element { Optional query = default; Optional queryTimeout = default; - Optional> additionalColumns = default; + Optional additionalColumns = default; string type = default; Optional sourceRetryCount = default; Optional sourceRetryWait = default; @@ -104,12 +99,7 @@ internal static AzureMySqlSource DeserializeAzureMySqlSource(JsonElement element property.ThrowNonNullablePropertyIsNull(); continue; } - List array = new List(); - foreach (var item in property.Value.EnumerateArray()) - { - array.Add(Models.AdditionalColumns.DeserializeAdditionalColumns(item)); - } - additionalColumns = array; + additionalColumns = property.Value.GetObject(); continue; } if (property.NameEquals("type")) @@ -150,7 +140,7 @@ internal static AzureMySqlSource DeserializeAzureMySqlSource(JsonElement element additionalPropertiesDictionary.Add(property.Name, property.Value.GetObject()); } additionalProperties = additionalPropertiesDictionary; - return new AzureMySqlSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, queryTimeout.Value, Optional.ToList(additionalColumns), query.Value); + return new AzureMySqlSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, queryTimeout.Value, additionalColumns.Value, query.Value); } internal partial class AzureMySqlSourceConverter : JsonConverter diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/AzureMySqlSource.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/AzureMySqlSource.cs index 542f949ebea2..46ce40577ab4 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/AzureMySqlSource.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/AzureMySqlSource.cs @@ -25,9 +25,9 @@ public AzureMySqlSource() /// The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer). /// Additional Properties. /// Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])). - /// Specifies the additional columns to be added to source data. Type: array of objects (or Expression with resultType array of objects). + /// Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects). /// Database query. Type: string (or Expression with resultType string). - internal AzureMySqlSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object queryTimeout, IList additionalColumns, object query) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties, queryTimeout, additionalColumns) + internal AzureMySqlSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object queryTimeout, object additionalColumns, object query) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties, queryTimeout, additionalColumns) { Query = query; Type = type ?? "AzureMySqlSource"; diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/AzurePostgreSqlSource.Serialization.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/AzurePostgreSqlSource.Serialization.cs index c089d824e0c1..a324505056db 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/AzurePostgreSqlSource.Serialization.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/AzurePostgreSqlSource.Serialization.cs @@ -29,15 +29,10 @@ void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) writer.WritePropertyName("queryTimeout"); writer.WriteObjectValue(QueryTimeout); } - if (Optional.IsCollectionDefined(AdditionalColumns)) + if (Optional.IsDefined(AdditionalColumns)) { writer.WritePropertyName("additionalColumns"); - writer.WriteStartArray(); - foreach (var item in AdditionalColumns) - { - writer.WriteObjectValue(item); - } - writer.WriteEndArray(); + writer.WriteObjectValue(AdditionalColumns); } writer.WritePropertyName("type"); writer.WriteStringValue(Type); @@ -68,7 +63,7 @@ internal static AzurePostgreSqlSource DeserializeAzurePostgreSqlSource(JsonEleme { Optional query = default; Optional queryTimeout = default; - Optional> additionalColumns = default; + Optional additionalColumns = default; string type = default; Optional sourceRetryCount = default; Optional sourceRetryWait = default; @@ -104,12 +99,7 @@ internal static AzurePostgreSqlSource DeserializeAzurePostgreSqlSource(JsonEleme property.ThrowNonNullablePropertyIsNull(); continue; } - List array = new List(); - foreach (var item in property.Value.EnumerateArray()) - { - array.Add(Models.AdditionalColumns.DeserializeAdditionalColumns(item)); - } - additionalColumns = array; + additionalColumns = property.Value.GetObject(); continue; } if (property.NameEquals("type")) @@ -150,7 +140,7 @@ internal static AzurePostgreSqlSource DeserializeAzurePostgreSqlSource(JsonEleme additionalPropertiesDictionary.Add(property.Name, property.Value.GetObject()); } additionalProperties = additionalPropertiesDictionary; - return new AzurePostgreSqlSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, queryTimeout.Value, Optional.ToList(additionalColumns), query.Value); + return new AzurePostgreSqlSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, queryTimeout.Value, additionalColumns.Value, query.Value); } internal partial class AzurePostgreSqlSourceConverter : JsonConverter diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/AzurePostgreSqlSource.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/AzurePostgreSqlSource.cs index 90f3ee9a402d..da7cce71e0e5 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/AzurePostgreSqlSource.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/AzurePostgreSqlSource.cs @@ -25,9 +25,9 @@ public AzurePostgreSqlSource() /// The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer). /// Additional Properties. /// Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])). - /// Specifies the additional columns to be added to source data. Type: array of objects (or Expression with resultType array of objects). + /// Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects). /// A query to retrieve data from source. Type: string (or Expression with resultType string). - internal AzurePostgreSqlSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object queryTimeout, IList additionalColumns, object query) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties, queryTimeout, additionalColumns) + internal AzurePostgreSqlSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object queryTimeout, object additionalColumns, object query) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties, queryTimeout, additionalColumns) { Query = query; Type = type ?? "AzurePostgreSqlSource"; diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/AzureSqlSource.Serialization.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/AzureSqlSource.Serialization.cs index 75632205b773..835c51ed633c 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/AzureSqlSource.Serialization.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/AzureSqlSource.Serialization.cs @@ -60,15 +60,10 @@ void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) writer.WritePropertyName("queryTimeout"); writer.WriteObjectValue(QueryTimeout); } - if (Optional.IsCollectionDefined(AdditionalColumns)) + if (Optional.IsDefined(AdditionalColumns)) { writer.WritePropertyName("additionalColumns"); - writer.WriteStartArray(); - foreach (var item in AdditionalColumns) - { - writer.WriteObjectValue(item); - } - writer.WriteEndArray(); + writer.WriteObjectValue(AdditionalColumns); } writer.WritePropertyName("type"); writer.WriteStringValue(Type); @@ -104,7 +99,7 @@ internal static AzureSqlSource DeserializeAzureSqlSource(JsonElement element) Optional partitionOption = default; Optional partitionSettings = default; Optional queryTimeout = default; - Optional> additionalColumns = default; + Optional additionalColumns = default; string type = default; Optional sourceRetryCount = default; Optional sourceRetryWait = default; @@ -195,12 +190,7 @@ internal static AzureSqlSource DeserializeAzureSqlSource(JsonElement element) property.ThrowNonNullablePropertyIsNull(); continue; } - List array = new List(); - foreach (var item in property.Value.EnumerateArray()) - { - array.Add(Models.AdditionalColumns.DeserializeAdditionalColumns(item)); - } - additionalColumns = array; + additionalColumns = property.Value.GetObject(); continue; } if (property.NameEquals("type")) @@ -241,7 +231,7 @@ internal static AzureSqlSource DeserializeAzureSqlSource(JsonElement element) additionalPropertiesDictionary.Add(property.Name, property.Value.GetObject()); } additionalProperties = additionalPropertiesDictionary; - return new AzureSqlSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, queryTimeout.Value, Optional.ToList(additionalColumns), sqlReaderQuery.Value, sqlReaderStoredProcedureName.Value, Optional.ToDictionary(storedProcedureParameters), produceAdditionalTypes.Value, partitionOption.Value, partitionSettings.Value); + return new AzureSqlSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, queryTimeout.Value, additionalColumns.Value, sqlReaderQuery.Value, sqlReaderStoredProcedureName.Value, Optional.ToDictionary(storedProcedureParameters), produceAdditionalTypes.Value, partitionOption.Value, partitionSettings.Value); } internal partial class AzureSqlSourceConverter : JsonConverter diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/AzureSqlSource.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/AzureSqlSource.cs index 796babd06b0e..96e1333173c0 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/AzureSqlSource.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/AzureSqlSource.cs @@ -27,14 +27,14 @@ public AzureSqlSource() /// The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer). /// Additional Properties. /// Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])). - /// Specifies the additional columns to be added to source data. Type: array of objects (or Expression with resultType array of objects). + /// Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects). /// SQL reader query. Type: string (or Expression with resultType string). /// Name of the stored procedure for a SQL Database source. This cannot be used at the same time as SqlReaderQuery. Type: string (or Expression with resultType string). /// Value and type setting for stored procedure parameters. Example: "{Parameter1: {value: "1", type: "int"}}". /// Which additional types to produce. /// The partition mechanism that will be used for Sql read in parallel. Possible values include: "None", "PhysicalPartitionsOfTable", "DynamicRange". /// The settings that will be leveraged for Sql source partitioning. - internal AzureSqlSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object queryTimeout, IList additionalColumns, object sqlReaderQuery, object sqlReaderStoredProcedureName, IDictionary storedProcedureParameters, object produceAdditionalTypes, object partitionOption, SqlPartitionSettings partitionSettings) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties, queryTimeout, additionalColumns) + internal AzureSqlSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object queryTimeout, object additionalColumns, object sqlReaderQuery, object sqlReaderStoredProcedureName, IDictionary storedProcedureParameters, object produceAdditionalTypes, object partitionOption, SqlPartitionSettings partitionSettings) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties, queryTimeout, additionalColumns) { SqlReaderQuery = sqlReaderQuery; SqlReaderStoredProcedureName = sqlReaderStoredProcedureName; diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/AzureTableSource.Serialization.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/AzureTableSource.Serialization.cs index 22b36f25f874..98dea70a44cb 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/AzureTableSource.Serialization.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/AzureTableSource.Serialization.cs @@ -34,15 +34,10 @@ void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) writer.WritePropertyName("queryTimeout"); writer.WriteObjectValue(QueryTimeout); } - if (Optional.IsCollectionDefined(AdditionalColumns)) + if (Optional.IsDefined(AdditionalColumns)) { writer.WritePropertyName("additionalColumns"); - writer.WriteStartArray(); - foreach (var item in AdditionalColumns) - { - writer.WriteObjectValue(item); - } - writer.WriteEndArray(); + writer.WriteObjectValue(AdditionalColumns); } writer.WritePropertyName("type"); writer.WriteStringValue(Type); @@ -74,7 +69,7 @@ internal static AzureTableSource DeserializeAzureTableSource(JsonElement element Optional azureTableSourceQuery = default; Optional azureTableSourceIgnoreTableNotFound = default; Optional queryTimeout = default; - Optional> additionalColumns = default; + Optional additionalColumns = default; string type = default; Optional sourceRetryCount = default; Optional sourceRetryWait = default; @@ -120,12 +115,7 @@ internal static AzureTableSource DeserializeAzureTableSource(JsonElement element property.ThrowNonNullablePropertyIsNull(); continue; } - List array = new List(); - foreach (var item in property.Value.EnumerateArray()) - { - array.Add(Models.AdditionalColumns.DeserializeAdditionalColumns(item)); - } - additionalColumns = array; + additionalColumns = property.Value.GetObject(); continue; } if (property.NameEquals("type")) @@ -166,7 +156,7 @@ internal static AzureTableSource DeserializeAzureTableSource(JsonElement element additionalPropertiesDictionary.Add(property.Name, property.Value.GetObject()); } additionalProperties = additionalPropertiesDictionary; - return new AzureTableSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, queryTimeout.Value, Optional.ToList(additionalColumns), azureTableSourceQuery.Value, azureTableSourceIgnoreTableNotFound.Value); + return new AzureTableSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, queryTimeout.Value, additionalColumns.Value, azureTableSourceQuery.Value, azureTableSourceIgnoreTableNotFound.Value); } internal partial class AzureTableSourceConverter : JsonConverter diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/AzureTableSource.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/AzureTableSource.cs index f22cea78054b..7cc86d93e907 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/AzureTableSource.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/AzureTableSource.cs @@ -25,10 +25,10 @@ public AzureTableSource() /// The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer). /// Additional Properties. /// Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])). - /// Specifies the additional columns to be added to source data. Type: array of objects (or Expression with resultType array of objects). + /// Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects). /// Azure Table source query. Type: string (or Expression with resultType string). /// Azure Table source ignore table not found. Type: boolean (or Expression with resultType boolean). - internal AzureTableSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object queryTimeout, IList additionalColumns, object azureTableSourceQuery, object azureTableSourceIgnoreTableNotFound) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties, queryTimeout, additionalColumns) + internal AzureTableSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object queryTimeout, object additionalColumns, object azureTableSourceQuery, object azureTableSourceIgnoreTableNotFound) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties, queryTimeout, additionalColumns) { AzureTableSourceQuery = azureTableSourceQuery; AzureTableSourceIgnoreTableNotFound = azureTableSourceIgnoreTableNotFound; diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/CassandraSource.Serialization.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/CassandraSource.Serialization.cs index 93a2b3b081fe..d17eb8f2e29b 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/CassandraSource.Serialization.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/CassandraSource.Serialization.cs @@ -34,15 +34,10 @@ void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) writer.WritePropertyName("queryTimeout"); writer.WriteObjectValue(QueryTimeout); } - if (Optional.IsCollectionDefined(AdditionalColumns)) + if (Optional.IsDefined(AdditionalColumns)) { writer.WritePropertyName("additionalColumns"); - writer.WriteStartArray(); - foreach (var item in AdditionalColumns) - { - writer.WriteObjectValue(item); - } - writer.WriteEndArray(); + writer.WriteObjectValue(AdditionalColumns); } writer.WritePropertyName("type"); writer.WriteStringValue(Type); @@ -74,7 +69,7 @@ internal static CassandraSource DeserializeCassandraSource(JsonElement element) Optional query = default; Optional consistencyLevel = default; Optional queryTimeout = default; - Optional> additionalColumns = default; + Optional additionalColumns = default; string type = default; Optional sourceRetryCount = default; Optional sourceRetryWait = default; @@ -120,12 +115,7 @@ internal static CassandraSource DeserializeCassandraSource(JsonElement element) property.ThrowNonNullablePropertyIsNull(); continue; } - List array = new List(); - foreach (var item in property.Value.EnumerateArray()) - { - array.Add(Models.AdditionalColumns.DeserializeAdditionalColumns(item)); - } - additionalColumns = array; + additionalColumns = property.Value.GetObject(); continue; } if (property.NameEquals("type")) @@ -166,7 +156,7 @@ internal static CassandraSource DeserializeCassandraSource(JsonElement element) additionalPropertiesDictionary.Add(property.Name, property.Value.GetObject()); } additionalProperties = additionalPropertiesDictionary; - return new CassandraSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, queryTimeout.Value, Optional.ToList(additionalColumns), query.Value, Optional.ToNullable(consistencyLevel)); + return new CassandraSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, queryTimeout.Value, additionalColumns.Value, query.Value, Optional.ToNullable(consistencyLevel)); } internal partial class CassandraSourceConverter : JsonConverter diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/CassandraSource.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/CassandraSource.cs index 1e2837c9a78e..6612f2d32d1f 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/CassandraSource.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/CassandraSource.cs @@ -25,10 +25,10 @@ public CassandraSource() /// The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer). /// Additional Properties. /// Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])). - /// Specifies the additional columns to be added to source data. Type: array of objects (or Expression with resultType array of objects). + /// Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects). /// Database query. Should be a SQL-92 query expression or Cassandra Query Language (CQL) command. Type: string (or Expression with resultType string). /// The consistency level specifies how many Cassandra servers must respond to a read request before returning data to the client application. Cassandra checks the specified number of Cassandra servers for data to satisfy the read request. Must be one of cassandraSourceReadConsistencyLevels. The default value is 'ONE'. It is case-insensitive. - internal CassandraSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object queryTimeout, IList additionalColumns, object query, CassandraSourceReadConsistencyLevels? consistencyLevel) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties, queryTimeout, additionalColumns) + internal CassandraSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object queryTimeout, object additionalColumns, object query, CassandraSourceReadConsistencyLevels? consistencyLevel) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties, queryTimeout, additionalColumns) { Query = query; ConsistencyLevel = consistencyLevel; diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/CloudError.Serialization.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/CloudError.Serialization.cs index 1f00f7d86ed1..28075da1cbc9 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/CloudError.Serialization.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/CloudError.Serialization.cs @@ -14,7 +14,7 @@ namespace Azure.Analytics.Synapse.Artifacts.Models { [JsonConverter(typeof(CloudErrorConverter))] - public partial class CloudError + internal partial class CloudError { internal static CloudError DeserializeCloudError(JsonElement element) { diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/CloudError.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/CloudError.cs index 8b4840b2d71e..c980085b3d4b 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/CloudError.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/CloudError.cs @@ -12,7 +12,7 @@ namespace Azure.Analytics.Synapse.Artifacts.Models { /// The object that defines the structure of an Azure Synapse error response. - public partial class CloudError + internal partial class CloudError { /// Initializes a new instance of CloudError. /// Error code. diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/CloudErrorAutoGenerated.Serialization.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/CloudErrorAutoGenerated.Serialization.cs new file mode 100644 index 000000000000..6dd96e660603 --- /dev/null +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/CloudErrorAutoGenerated.Serialization.cs @@ -0,0 +1,86 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System; +using System.Collections.Generic; +using System.Text.Json; +using System.Text.Json.Serialization; +using Azure.Core; + +namespace Azure.Analytics.Synapse.Artifacts.Models +{ + [JsonConverter(typeof(CloudErrorAutoGeneratedConverter))] + public partial class CloudErrorAutoGenerated + { + internal static CloudErrorAutoGenerated DeserializeCloudErrorAutoGenerated(JsonElement element) + { + string code = default; + string message = default; + Optional target = default; + Optional> details = default; + foreach (var property in element.EnumerateObject()) + { + if (property.NameEquals("error")) + { + if (property.Value.ValueKind == JsonValueKind.Null) + { + property.ThrowNonNullablePropertyIsNull(); + continue; + } + foreach (var property0 in property.Value.EnumerateObject()) + { + if (property0.NameEquals("code")) + { + code = property0.Value.GetString(); + continue; + } + if (property0.NameEquals("message")) + { + message = property0.Value.GetString(); + continue; + } + if (property0.NameEquals("target")) + { + target = property0.Value.GetString(); + continue; + } + if (property0.NameEquals("details")) + { + if (property0.Value.ValueKind == JsonValueKind.Null) + { + property0.ThrowNonNullablePropertyIsNull(); + continue; + } + List array = new List(); + foreach (var item in property0.Value.EnumerateArray()) + { + array.Add(DeserializeCloudErrorAutoGenerated(item)); + } + details = array; + continue; + } + } + continue; + } + } + return new CloudErrorAutoGenerated(code, message, target.Value, Optional.ToList(details)); + } + + internal partial class CloudErrorAutoGeneratedConverter : JsonConverter + { + public override void Write(Utf8JsonWriter writer, CloudErrorAutoGenerated model, JsonSerializerOptions options) + { + throw new NotImplementedException(); + } + public override CloudErrorAutoGenerated Read(ref Utf8JsonReader reader, Type typeToConvert, JsonSerializerOptions options) + { + using var document = JsonDocument.ParseValue(ref reader); + return DeserializeCloudErrorAutoGenerated(document.RootElement); + } + } + } +} diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/CloudErrorAutoGenerated.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/CloudErrorAutoGenerated.cs new file mode 100644 index 000000000000..135147da40c6 --- /dev/null +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/CloudErrorAutoGenerated.cs @@ -0,0 +1,59 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System; +using System.Collections.Generic; +using Azure.Core; + +namespace Azure.Analytics.Synapse.Artifacts.Models +{ + /// The object that defines the structure of an Azure Synapse error response. + public partial class CloudErrorAutoGenerated + { + /// Initializes a new instance of CloudErrorAutoGenerated. + /// Error code. + /// Error message. + /// or is null. + internal CloudErrorAutoGenerated(string code, string message) + { + if (code == null) + { + throw new ArgumentNullException(nameof(code)); + } + if (message == null) + { + throw new ArgumentNullException(nameof(message)); + } + + Code = code; + Message = message; + Details = new ChangeTrackingList(); + } + + /// Initializes a new instance of CloudErrorAutoGenerated. + /// Error code. + /// Error message. + /// Property name/path in request associated with error. + /// Array with additional error details. + internal CloudErrorAutoGenerated(string code, string message, string target, IReadOnlyList details) + { + Code = code; + Message = message; + Target = target; + Details = details; + } + + /// Error code. + public string Code { get; } + /// Error message. + public string Message { get; } + /// Property name/path in request associated with error. + public string Target { get; } + /// Array with additional error details. + public IReadOnlyList Details { get; } + } +} diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/CommonDataServiceForAppsLinkedService.Serialization.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/CommonDataServiceForAppsLinkedService.Serialization.cs index 125a57b33707..809a54e0ec38 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/CommonDataServiceForAppsLinkedService.Serialization.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/CommonDataServiceForAppsLinkedService.Serialization.cs @@ -55,7 +55,7 @@ void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) writer.WritePropertyName("typeProperties"); writer.WriteStartObject(); writer.WritePropertyName("deploymentType"); - writer.WriteStringValue(DeploymentType.ToString()); + writer.WriteObjectValue(DeploymentType); if (Optional.IsDefined(HostName)) { writer.WritePropertyName("hostName"); @@ -77,7 +77,7 @@ void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) writer.WriteObjectValue(OrganizationName); } writer.WritePropertyName("authenticationType"); - writer.WriteStringValue(AuthenticationType.ToString()); + writer.WriteObjectValue(AuthenticationType); if (Optional.IsDefined(Username)) { writer.WritePropertyName("username"); @@ -124,12 +124,12 @@ internal static CommonDataServiceForAppsLinkedService DeserializeCommonDataServi Optional description = default; Optional> parameters = default; Optional> annotations = default; - DynamicsDeploymentType deploymentType = default; + object deploymentType = default; Optional hostName = default; Optional port = default; Optional serviceUri = default; Optional organizationName = default; - DynamicsAuthenticationType authenticationType = default; + object authenticationType = default; Optional username = default; Optional password = default; Optional servicePrincipalId = default; @@ -201,7 +201,7 @@ internal static CommonDataServiceForAppsLinkedService DeserializeCommonDataServi { if (property0.NameEquals("deploymentType")) { - deploymentType = new DynamicsDeploymentType(property0.Value.GetString()); + deploymentType = property0.Value.GetObject(); continue; } if (property0.NameEquals("hostName")) @@ -246,7 +246,7 @@ internal static CommonDataServiceForAppsLinkedService DeserializeCommonDataServi } if (property0.NameEquals("authenticationType")) { - authenticationType = new DynamicsAuthenticationType(property0.Value.GetString()); + authenticationType = property0.Value.GetObject(); continue; } if (property0.NameEquals("username")) diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/CommonDataServiceForAppsLinkedService.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/CommonDataServiceForAppsLinkedService.cs index d7e2477fe545..f14494704d4a 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/CommonDataServiceForAppsLinkedService.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/CommonDataServiceForAppsLinkedService.cs @@ -5,6 +5,7 @@ #nullable disable +using System; using System.Collections.Generic; namespace Azure.Analytics.Synapse.Artifacts.Models @@ -15,8 +16,18 @@ public partial class CommonDataServiceForAppsLinkedService : LinkedService /// Initializes a new instance of CommonDataServiceForAppsLinkedService. /// The deployment type of the Common Data Service for Apps instance. 'Online' for Common Data Service for Apps Online and 'OnPremisesWithIfd' for Common Data Service for Apps on-premises with Ifd. Type: string (or Expression with resultType string). /// The authentication type to connect to Common Data Service for Apps server. 'Office365' for online scenario, 'Ifd' for on-premises with Ifd scenario. 'AADServicePrincipal' for Server-To-Server authentication in online scenario. Type: string (or Expression with resultType string). - public CommonDataServiceForAppsLinkedService(DynamicsDeploymentType deploymentType, DynamicsAuthenticationType authenticationType) + /// or is null. + public CommonDataServiceForAppsLinkedService(object deploymentType, object authenticationType) { + if (deploymentType == null) + { + throw new ArgumentNullException(nameof(deploymentType)); + } + if (authenticationType == null) + { + throw new ArgumentNullException(nameof(authenticationType)); + } + DeploymentType = deploymentType; AuthenticationType = authenticationType; Type = "CommonDataServiceForApps"; @@ -41,7 +52,7 @@ public CommonDataServiceForAppsLinkedService(DynamicsDeploymentType deploymentTy /// A string from ServicePrincipalCredentialEnum or an expression. /// The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference. /// The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). - internal CommonDataServiceForAppsLinkedService(string type, IntegrationRuntimeReference connectVia, string description, IDictionary parameters, IList annotations, IDictionary additionalProperties, DynamicsDeploymentType deploymentType, object hostName, object port, object serviceUri, object organizationName, DynamicsAuthenticationType authenticationType, object username, SecretBase password, object servicePrincipalId, object servicePrincipalCredentialType, SecretBase servicePrincipalCredential, object encryptedCredential) : base(type, connectVia, description, parameters, annotations, additionalProperties) + internal CommonDataServiceForAppsLinkedService(string type, IntegrationRuntimeReference connectVia, string description, IDictionary parameters, IList annotations, IDictionary additionalProperties, object deploymentType, object hostName, object port, object serviceUri, object organizationName, object authenticationType, object username, SecretBase password, object servicePrincipalId, object servicePrincipalCredentialType, SecretBase servicePrincipalCredential, object encryptedCredential) : base(type, connectVia, description, parameters, annotations, additionalProperties) { DeploymentType = deploymentType; HostName = hostName; @@ -59,7 +70,7 @@ internal CommonDataServiceForAppsLinkedService(string type, IntegrationRuntimeRe } /// The deployment type of the Common Data Service for Apps instance. 'Online' for Common Data Service for Apps Online and 'OnPremisesWithIfd' for Common Data Service for Apps on-premises with Ifd. Type: string (or Expression with resultType string). - public DynamicsDeploymentType DeploymentType { get; set; } + public object DeploymentType { get; set; } /// The host name of the on-premises Common Data Service for Apps server. The property is required for on-prem and not allowed for online. Type: string (or Expression with resultType string). public object HostName { get; set; } /// The port of on-premises Common Data Service for Apps server. The property is required for on-prem and not allowed for online. Default is 443. Type: integer (or Expression with resultType integer), minimum: 0. @@ -69,7 +80,7 @@ internal CommonDataServiceForAppsLinkedService(string type, IntegrationRuntimeRe /// The organization name of the Common Data Service for Apps instance. The property is required for on-prem and required for online when there are more than one Common Data Service for Apps instances associated with the user. Type: string (or Expression with resultType string). public object OrganizationName { get; set; } /// The authentication type to connect to Common Data Service for Apps server. 'Office365' for online scenario, 'Ifd' for on-premises with Ifd scenario. 'AADServicePrincipal' for Server-To-Server authentication in online scenario. Type: string (or Expression with resultType string). - public DynamicsAuthenticationType AuthenticationType { get; set; } + public object AuthenticationType { get; set; } /// User name to access the Common Data Service for Apps instance. Type: string (or Expression with resultType string). public object Username { get; set; } /// Password to access the Common Data Service for Apps instance. diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/CommonDataServiceForAppsSource.Serialization.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/CommonDataServiceForAppsSource.Serialization.cs index 1db10136f39e..616e7c7a6635 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/CommonDataServiceForAppsSource.Serialization.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/CommonDataServiceForAppsSource.Serialization.cs @@ -24,15 +24,10 @@ void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) writer.WritePropertyName("query"); writer.WriteObjectValue(Query); } - if (Optional.IsCollectionDefined(AdditionalColumns)) + if (Optional.IsDefined(AdditionalColumns)) { writer.WritePropertyName("additionalColumns"); - writer.WriteStartArray(); - foreach (var item in AdditionalColumns) - { - writer.WriteObjectValue(item); - } - writer.WriteEndArray(); + writer.WriteObjectValue(AdditionalColumns); } writer.WritePropertyName("type"); writer.WriteStringValue(Type); @@ -62,7 +57,7 @@ void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) internal static CommonDataServiceForAppsSource DeserializeCommonDataServiceForAppsSource(JsonElement element) { Optional query = default; - Optional> additionalColumns = default; + Optional additionalColumns = default; string type = default; Optional sourceRetryCount = default; Optional sourceRetryWait = default; @@ -88,12 +83,7 @@ internal static CommonDataServiceForAppsSource DeserializeCommonDataServiceForAp property.ThrowNonNullablePropertyIsNull(); continue; } - List array = new List(); - foreach (var item in property.Value.EnumerateArray()) - { - array.Add(Models.AdditionalColumns.DeserializeAdditionalColumns(item)); - } - additionalColumns = array; + additionalColumns = property.Value.GetObject(); continue; } if (property.NameEquals("type")) @@ -134,7 +124,7 @@ internal static CommonDataServiceForAppsSource DeserializeCommonDataServiceForAp additionalPropertiesDictionary.Add(property.Name, property.Value.GetObject()); } additionalProperties = additionalPropertiesDictionary; - return new CommonDataServiceForAppsSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, query.Value, Optional.ToList(additionalColumns)); + return new CommonDataServiceForAppsSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, query.Value, additionalColumns.Value); } internal partial class CommonDataServiceForAppsSourceConverter : JsonConverter diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/CommonDataServiceForAppsSource.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/CommonDataServiceForAppsSource.cs index 1d00652806a4..3abc0027c9f2 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/CommonDataServiceForAppsSource.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/CommonDataServiceForAppsSource.cs @@ -6,7 +6,6 @@ #nullable disable using System.Collections.Generic; -using Azure.Core; namespace Azure.Analytics.Synapse.Artifacts.Models { @@ -16,7 +15,6 @@ public partial class CommonDataServiceForAppsSource : CopySource /// Initializes a new instance of CommonDataServiceForAppsSource. public CommonDataServiceForAppsSource() { - AdditionalColumns = new ChangeTrackingList(); Type = "CommonDataServiceForAppsSource"; } @@ -27,8 +25,8 @@ public CommonDataServiceForAppsSource() /// The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer). /// Additional Properties. /// FetchXML is a proprietary query language that is used in Microsoft Common Data Service for Apps (online & on-premises). Type: string (or Expression with resultType string). - /// Specifies the additional columns to be added to source data. Type: array of objects (or Expression with resultType array of objects). - internal CommonDataServiceForAppsSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object query, IList additionalColumns) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties) + /// Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects). + internal CommonDataServiceForAppsSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object query, object additionalColumns) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties) { Query = query; AdditionalColumns = additionalColumns; @@ -37,7 +35,7 @@ internal CommonDataServiceForAppsSource(string type, object sourceRetryCount, ob /// FetchXML is a proprietary query language that is used in Microsoft Common Data Service for Apps (online & on-premises). Type: string (or Expression with resultType string). public object Query { get; set; } - /// Specifies the additional columns to be added to source data. Type: array of objects (or Expression with resultType array of objects). - public IList AdditionalColumns { get; } + /// Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects). + public object AdditionalColumns { get; set; } } } diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/CompressionCodec.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/CompressionCodec.cs index 7d2fb209c928..0e0db8d4b4d5 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/CompressionCodec.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/CompressionCodec.cs @@ -10,8 +10,8 @@ namespace Azure.Analytics.Synapse.Artifacts.Models { - /// The CompressionCodec. - public readonly partial struct CompressionCodec : IEquatable + /// All available compressionCodec values. + internal readonly partial struct CompressionCodec : IEquatable { private readonly string _value; @@ -22,6 +22,8 @@ public CompressionCodec(string value) _value = value ?? throw new ArgumentNullException(nameof(value)); } + private const string NoneValue = "none"; + private const string LzoValue = "lzo"; private const string Bzip2Value = "bzip2"; private const string GzipValue = "gzip"; private const string DeflateValue = "deflate"; @@ -31,6 +33,10 @@ public CompressionCodec(string value) private const string TarValue = "tar"; private const string TarGZipValue = "tarGZip"; + /// none. + public static CompressionCodec None { get; } = new CompressionCodec(NoneValue); + /// lzo. + public static CompressionCodec Lzo { get; } = new CompressionCodec(LzoValue); /// bzip2. public static CompressionCodec Bzip2 { get; } = new CompressionCodec(Bzip2Value); /// gzip. diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/ConcurSource.Serialization.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/ConcurSource.Serialization.cs index 5fc7ffc5d851..e838e95df995 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/ConcurSource.Serialization.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/ConcurSource.Serialization.cs @@ -29,15 +29,10 @@ void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) writer.WritePropertyName("queryTimeout"); writer.WriteObjectValue(QueryTimeout); } - if (Optional.IsCollectionDefined(AdditionalColumns)) + if (Optional.IsDefined(AdditionalColumns)) { writer.WritePropertyName("additionalColumns"); - writer.WriteStartArray(); - foreach (var item in AdditionalColumns) - { - writer.WriteObjectValue(item); - } - writer.WriteEndArray(); + writer.WriteObjectValue(AdditionalColumns); } writer.WritePropertyName("type"); writer.WriteStringValue(Type); @@ -68,7 +63,7 @@ internal static ConcurSource DeserializeConcurSource(JsonElement element) { Optional query = default; Optional queryTimeout = default; - Optional> additionalColumns = default; + Optional additionalColumns = default; string type = default; Optional sourceRetryCount = default; Optional sourceRetryWait = default; @@ -104,12 +99,7 @@ internal static ConcurSource DeserializeConcurSource(JsonElement element) property.ThrowNonNullablePropertyIsNull(); continue; } - List array = new List(); - foreach (var item in property.Value.EnumerateArray()) - { - array.Add(Models.AdditionalColumns.DeserializeAdditionalColumns(item)); - } - additionalColumns = array; + additionalColumns = property.Value.GetObject(); continue; } if (property.NameEquals("type")) @@ -150,7 +140,7 @@ internal static ConcurSource DeserializeConcurSource(JsonElement element) additionalPropertiesDictionary.Add(property.Name, property.Value.GetObject()); } additionalProperties = additionalPropertiesDictionary; - return new ConcurSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, queryTimeout.Value, Optional.ToList(additionalColumns), query.Value); + return new ConcurSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, queryTimeout.Value, additionalColumns.Value, query.Value); } internal partial class ConcurSourceConverter : JsonConverter diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/ConcurSource.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/ConcurSource.cs index 3ab9506c8938..b89b42dc376d 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/ConcurSource.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/ConcurSource.cs @@ -25,9 +25,9 @@ public ConcurSource() /// The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer). /// Additional Properties. /// Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])). - /// Specifies the additional columns to be added to source data. Type: array of objects (or Expression with resultType array of objects). + /// Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects). /// A query to retrieve data from source. Type: string (or Expression with resultType string). - internal ConcurSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object queryTimeout, IList additionalColumns, object query) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties, queryTimeout, additionalColumns) + internal ConcurSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object queryTimeout, object additionalColumns, object query) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties, queryTimeout, additionalColumns) { Query = query; Type = type ?? "ConcurSource"; diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/CopySource.Serialization.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/CopySource.Serialization.cs index 87102824b7ba..00db2171b723 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/CopySource.Serialization.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/CopySource.Serialization.cs @@ -51,6 +51,8 @@ internal static CopySource DeserializeCopySource(JsonElement element) switch (discriminator.GetString()) { case "AmazonMWSSource": return AmazonMWSSource.DeserializeAmazonMWSSource(element); + case "AmazonRdsForOracleSource": return AmazonRdsForOracleSource.DeserializeAmazonRdsForOracleSource(element); + case "AmazonRdsForSqlServerSource": return AmazonRdsForSqlServerSource.DeserializeAmazonRdsForSqlServerSource(element); case "AmazonRedshiftSource": return AmazonRedshiftSource.DeserializeAmazonRedshiftSource(element); case "AvroSource": return AvroSource.DeserializeAvroSource(element); case "AzureBlobFSSource": return AzureBlobFSSource.DeserializeAzureBlobFSSource(element); diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/CosmosDbMongoDbApiSource.Serialization.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/CosmosDbMongoDbApiSource.Serialization.cs index da5f76dfcda7..4e7814b745e4 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/CosmosDbMongoDbApiSource.Serialization.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/CosmosDbMongoDbApiSource.Serialization.cs @@ -39,15 +39,10 @@ void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) writer.WritePropertyName("queryTimeout"); writer.WriteObjectValue(QueryTimeout); } - if (Optional.IsCollectionDefined(AdditionalColumns)) + if (Optional.IsDefined(AdditionalColumns)) { writer.WritePropertyName("additionalColumns"); - writer.WriteStartArray(); - foreach (var item in AdditionalColumns) - { - writer.WriteObjectValue(item); - } - writer.WriteEndArray(); + writer.WriteObjectValue(AdditionalColumns); } writer.WritePropertyName("type"); writer.WriteStringValue(Type); @@ -80,7 +75,7 @@ internal static CosmosDbMongoDbApiSource DeserializeCosmosDbMongoDbApiSource(Jso Optional cursorMethods = default; Optional batchSize = default; Optional queryTimeout = default; - Optional> additionalColumns = default; + Optional additionalColumns = default; string type = default; Optional sourceRetryCount = default; Optional sourceRetryWait = default; @@ -136,12 +131,7 @@ internal static CosmosDbMongoDbApiSource DeserializeCosmosDbMongoDbApiSource(Jso property.ThrowNonNullablePropertyIsNull(); continue; } - List array = new List(); - foreach (var item in property.Value.EnumerateArray()) - { - array.Add(Models.AdditionalColumns.DeserializeAdditionalColumns(item)); - } - additionalColumns = array; + additionalColumns = property.Value.GetObject(); continue; } if (property.NameEquals("type")) @@ -182,7 +172,7 @@ internal static CosmosDbMongoDbApiSource DeserializeCosmosDbMongoDbApiSource(Jso additionalPropertiesDictionary.Add(property.Name, property.Value.GetObject()); } additionalProperties = additionalPropertiesDictionary; - return new CosmosDbMongoDbApiSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, filter.Value, cursorMethods.Value, batchSize.Value, queryTimeout.Value, Optional.ToList(additionalColumns)); + return new CosmosDbMongoDbApiSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, filter.Value, cursorMethods.Value, batchSize.Value, queryTimeout.Value, additionalColumns.Value); } internal partial class CosmosDbMongoDbApiSourceConverter : JsonConverter diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/CosmosDbMongoDbApiSource.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/CosmosDbMongoDbApiSource.cs index 7317e6007f5d..5046329e3aa2 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/CosmosDbMongoDbApiSource.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/CosmosDbMongoDbApiSource.cs @@ -6,7 +6,6 @@ #nullable disable using System.Collections.Generic; -using Azure.Core; namespace Azure.Analytics.Synapse.Artifacts.Models { @@ -16,7 +15,6 @@ public partial class CosmosDbMongoDbApiSource : CopySource /// Initializes a new instance of CosmosDbMongoDbApiSource. public CosmosDbMongoDbApiSource() { - AdditionalColumns = new ChangeTrackingList(); Type = "CosmosDbMongoDbApiSource"; } @@ -30,8 +28,8 @@ public CosmosDbMongoDbApiSource() /// Cursor methods for Mongodb query. /// Specifies the number of documents to return in each batch of the response from MongoDB instance. In most cases, modifying the batch size will not affect the user or the application. This property's main purpose is to avoid hit the limitation of response size. Type: integer (or Expression with resultType integer). /// Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])). - /// Specifies the additional columns to be added to source data. Type: array of objects (or Expression with resultType array of objects). - internal CosmosDbMongoDbApiSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object filter, MongoDbCursorMethodsProperties cursorMethods, object batchSize, object queryTimeout, IList additionalColumns) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties) + /// Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects). + internal CosmosDbMongoDbApiSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object filter, MongoDbCursorMethodsProperties cursorMethods, object batchSize, object queryTimeout, object additionalColumns) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties) { Filter = filter; CursorMethods = cursorMethods; @@ -49,7 +47,7 @@ internal CosmosDbMongoDbApiSource(string type, object sourceRetryCount, object s public object BatchSize { get; set; } /// Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])). public object QueryTimeout { get; set; } - /// Specifies the additional columns to be added to source data. Type: array of objects (or Expression with resultType array of objects). - public IList AdditionalColumns { get; } + /// Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects). + public object AdditionalColumns { get; set; } } } diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/CosmosDbSqlApiSource.Serialization.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/CosmosDbSqlApiSource.Serialization.cs index 30a45743c642..67f4ab7a69cc 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/CosmosDbSqlApiSource.Serialization.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/CosmosDbSqlApiSource.Serialization.cs @@ -39,15 +39,10 @@ void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) writer.WritePropertyName("detectDatetime"); writer.WriteObjectValue(DetectDatetime); } - if (Optional.IsCollectionDefined(AdditionalColumns)) + if (Optional.IsDefined(AdditionalColumns)) { writer.WritePropertyName("additionalColumns"); - writer.WriteStartArray(); - foreach (var item in AdditionalColumns) - { - writer.WriteObjectValue(item); - } - writer.WriteEndArray(); + writer.WriteObjectValue(AdditionalColumns); } writer.WritePropertyName("type"); writer.WriteStringValue(Type); @@ -80,7 +75,7 @@ internal static CosmosDbSqlApiSource DeserializeCosmosDbSqlApiSource(JsonElement Optional pageSize = default; Optional preferredRegions = default; Optional detectDatetime = default; - Optional> additionalColumns = default; + Optional additionalColumns = default; string type = default; Optional sourceRetryCount = default; Optional sourceRetryWait = default; @@ -136,12 +131,7 @@ internal static CosmosDbSqlApiSource DeserializeCosmosDbSqlApiSource(JsonElement property.ThrowNonNullablePropertyIsNull(); continue; } - List array = new List(); - foreach (var item in property.Value.EnumerateArray()) - { - array.Add(Models.AdditionalColumns.DeserializeAdditionalColumns(item)); - } - additionalColumns = array; + additionalColumns = property.Value.GetObject(); continue; } if (property.NameEquals("type")) @@ -182,7 +172,7 @@ internal static CosmosDbSqlApiSource DeserializeCosmosDbSqlApiSource(JsonElement additionalPropertiesDictionary.Add(property.Name, property.Value.GetObject()); } additionalProperties = additionalPropertiesDictionary; - return new CosmosDbSqlApiSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, query.Value, pageSize.Value, preferredRegions.Value, detectDatetime.Value, Optional.ToList(additionalColumns)); + return new CosmosDbSqlApiSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, query.Value, pageSize.Value, preferredRegions.Value, detectDatetime.Value, additionalColumns.Value); } internal partial class CosmosDbSqlApiSourceConverter : JsonConverter diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/CosmosDbSqlApiSource.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/CosmosDbSqlApiSource.cs index 951729ab82ca..a8b5b9f82691 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/CosmosDbSqlApiSource.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/CosmosDbSqlApiSource.cs @@ -6,7 +6,6 @@ #nullable disable using System.Collections.Generic; -using Azure.Core; namespace Azure.Analytics.Synapse.Artifacts.Models { @@ -16,7 +15,6 @@ public partial class CosmosDbSqlApiSource : CopySource /// Initializes a new instance of CosmosDbSqlApiSource. public CosmosDbSqlApiSource() { - AdditionalColumns = new ChangeTrackingList(); Type = "CosmosDbSqlApiSource"; } @@ -30,8 +28,8 @@ public CosmosDbSqlApiSource() /// Page size of the result. Type: integer (or Expression with resultType integer). /// Preferred regions. Type: array of strings (or Expression with resultType array of strings). /// Whether detect primitive values as datetime values. Type: boolean (or Expression with resultType boolean). - /// Specifies the additional columns to be added to source data. Type: array of objects (or Expression with resultType array of objects). - internal CosmosDbSqlApiSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object query, object pageSize, object preferredRegions, object detectDatetime, IList additionalColumns) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties) + /// Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects). + internal CosmosDbSqlApiSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object query, object pageSize, object preferredRegions, object detectDatetime, object additionalColumns) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties) { Query = query; PageSize = pageSize; @@ -49,7 +47,7 @@ internal CosmosDbSqlApiSource(string type, object sourceRetryCount, object sourc public object PreferredRegions { get; set; } /// Whether detect primitive values as datetime values. Type: boolean (or Expression with resultType boolean). public object DetectDatetime { get; set; } - /// Specifies the additional columns to be added to source data. Type: array of objects (or Expression with resultType array of objects). - public IList AdditionalColumns { get; } + /// Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects). + public object AdditionalColumns { get; set; } } } diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/CouchbaseSource.Serialization.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/CouchbaseSource.Serialization.cs index 7973737b51d8..f0ffc217cd0a 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/CouchbaseSource.Serialization.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/CouchbaseSource.Serialization.cs @@ -29,15 +29,10 @@ void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) writer.WritePropertyName("queryTimeout"); writer.WriteObjectValue(QueryTimeout); } - if (Optional.IsCollectionDefined(AdditionalColumns)) + if (Optional.IsDefined(AdditionalColumns)) { writer.WritePropertyName("additionalColumns"); - writer.WriteStartArray(); - foreach (var item in AdditionalColumns) - { - writer.WriteObjectValue(item); - } - writer.WriteEndArray(); + writer.WriteObjectValue(AdditionalColumns); } writer.WritePropertyName("type"); writer.WriteStringValue(Type); @@ -68,7 +63,7 @@ internal static CouchbaseSource DeserializeCouchbaseSource(JsonElement element) { Optional query = default; Optional queryTimeout = default; - Optional> additionalColumns = default; + Optional additionalColumns = default; string type = default; Optional sourceRetryCount = default; Optional sourceRetryWait = default; @@ -104,12 +99,7 @@ internal static CouchbaseSource DeserializeCouchbaseSource(JsonElement element) property.ThrowNonNullablePropertyIsNull(); continue; } - List array = new List(); - foreach (var item in property.Value.EnumerateArray()) - { - array.Add(Models.AdditionalColumns.DeserializeAdditionalColumns(item)); - } - additionalColumns = array; + additionalColumns = property.Value.GetObject(); continue; } if (property.NameEquals("type")) @@ -150,7 +140,7 @@ internal static CouchbaseSource DeserializeCouchbaseSource(JsonElement element) additionalPropertiesDictionary.Add(property.Name, property.Value.GetObject()); } additionalProperties = additionalPropertiesDictionary; - return new CouchbaseSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, queryTimeout.Value, Optional.ToList(additionalColumns), query.Value); + return new CouchbaseSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, queryTimeout.Value, additionalColumns.Value, query.Value); } internal partial class CouchbaseSourceConverter : JsonConverter diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/CouchbaseSource.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/CouchbaseSource.cs index da43d0dd90f3..d9086e721fa0 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/CouchbaseSource.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/CouchbaseSource.cs @@ -25,9 +25,9 @@ public CouchbaseSource() /// The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer). /// Additional Properties. /// Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])). - /// Specifies the additional columns to be added to source data. Type: array of objects (or Expression with resultType array of objects). + /// Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects). /// A query to retrieve data from source. Type: string (or Expression with resultType string). - internal CouchbaseSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object queryTimeout, IList additionalColumns, object query) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties, queryTimeout, additionalColumns) + internal CouchbaseSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object queryTimeout, object additionalColumns, object query) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties, queryTimeout, additionalColumns) { Query = query; Type = type ?? "CouchbaseSource"; diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/CreateDataFlowDebugSessionRequest.Serialization.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/CreateDataFlowDebugSessionRequest.Serialization.cs index 5ba604b3b90b..cf56cbdca87b 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/CreateDataFlowDebugSessionRequest.Serialization.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/CreateDataFlowDebugSessionRequest.Serialization.cs @@ -18,91 +18,74 @@ public partial class CreateDataFlowDebugSessionRequest : IUtf8JsonSerializable void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) { writer.WriteStartObject(); - if (Optional.IsDefined(DataFlowName)) + if (Optional.IsDefined(ComputeType)) { - writer.WritePropertyName("dataFlowName"); - writer.WriteStringValue(DataFlowName); + writer.WritePropertyName("computeType"); + writer.WriteStringValue(ComputeType); } - if (Optional.IsDefined(ExistingClusterId)) + if (Optional.IsDefined(CoreCount)) { - writer.WritePropertyName("existingClusterId"); - writer.WriteStringValue(ExistingClusterId); + writer.WritePropertyName("coreCount"); + writer.WriteNumberValue(CoreCount.Value); } - if (Optional.IsDefined(ClusterTimeout)) + if (Optional.IsDefined(TimeToLive)) { - writer.WritePropertyName("clusterTimeout"); - writer.WriteNumberValue(ClusterTimeout.Value); + writer.WritePropertyName("timeToLive"); + writer.WriteNumberValue(TimeToLive.Value); } - if (Optional.IsDefined(NewClusterName)) + if (Optional.IsDefined(IntegrationRuntime)) { - writer.WritePropertyName("newClusterName"); - writer.WriteStringValue(NewClusterName); - } - if (Optional.IsDefined(NewClusterNodeType)) - { - writer.WritePropertyName("newClusterNodeType"); - writer.WriteStringValue(NewClusterNodeType); - } - if (Optional.IsDefined(DataBricksLinkedService)) - { - writer.WritePropertyName("dataBricksLinkedService"); - writer.WriteObjectValue(DataBricksLinkedService); + writer.WritePropertyName("integrationRuntime"); + writer.WriteObjectValue(IntegrationRuntime); } writer.WriteEndObject(); } internal static CreateDataFlowDebugSessionRequest DeserializeCreateDataFlowDebugSessionRequest(JsonElement element) { - Optional dataFlowName = default; - Optional existingClusterId = default; - Optional clusterTimeout = default; - Optional newClusterName = default; - Optional newClusterNodeType = default; - Optional dataBricksLinkedService = default; + Optional computeType = default; + Optional coreCount = default; + Optional timeToLive = default; + Optional integrationRuntime = default; foreach (var property in element.EnumerateObject()) { - if (property.NameEquals("dataFlowName")) + if (property.NameEquals("computeType")) { - dataFlowName = property.Value.GetString(); + computeType = property.Value.GetString(); continue; } - if (property.NameEquals("existingClusterId")) - { - existingClusterId = property.Value.GetString(); - continue; - } - if (property.NameEquals("clusterTimeout")) + if (property.NameEquals("coreCount")) { if (property.Value.ValueKind == JsonValueKind.Null) { property.ThrowNonNullablePropertyIsNull(); continue; } - clusterTimeout = property.Value.GetInt32(); + coreCount = property.Value.GetInt32(); continue; } - if (property.NameEquals("newClusterName")) + if (property.NameEquals("timeToLive")) { - newClusterName = property.Value.GetString(); - continue; - } - if (property.NameEquals("newClusterNodeType")) - { - newClusterNodeType = property.Value.GetString(); + if (property.Value.ValueKind == JsonValueKind.Null) + { + property.ThrowNonNullablePropertyIsNull(); + continue; + } + timeToLive = property.Value.GetInt32(); continue; } - if (property.NameEquals("dataBricksLinkedService")) + if (property.NameEquals("integrationRuntime")) { if (property.Value.ValueKind == JsonValueKind.Null) { property.ThrowNonNullablePropertyIsNull(); continue; } - dataBricksLinkedService = LinkedServiceResource.DeserializeLinkedServiceResource(property.Value); + integrationRuntime = IntegrationRuntimeDebugResource.DeserializeIntegrationRuntimeDebugResource(property.Value); continue; } } - return new CreateDataFlowDebugSessionRequest(dataFlowName.Value, existingClusterId.Value, Optional.ToNullable(clusterTimeout), newClusterName.Value, newClusterNodeType.Value, dataBricksLinkedService.Value); + return new CreateDataFlowDebugSessionRequest(computeType.Value, Optional.ToNullable(coreCount), Optional.ToNullable(timeToLive), integrationRuntime.Value); } internal partial class CreateDataFlowDebugSessionRequestConverter : JsonConverter diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/CreateDataFlowDebugSessionRequest.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/CreateDataFlowDebugSessionRequest.cs index 572ed79a6a13..6cbadc78d7cb 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/CreateDataFlowDebugSessionRequest.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/CreateDataFlowDebugSessionRequest.cs @@ -16,33 +16,25 @@ public CreateDataFlowDebugSessionRequest() } /// Initializes a new instance of CreateDataFlowDebugSessionRequest. - /// The name of the data flow. - /// The ID of existing Databricks cluster. - /// Timeout setting for Databricks cluster. - /// The name of new Databricks cluster. - /// The type of new Databricks cluster. - /// Data bricks linked service. - internal CreateDataFlowDebugSessionRequest(string dataFlowName, string existingClusterId, int? clusterTimeout, string newClusterName, string newClusterNodeType, LinkedServiceResource dataBricksLinkedService) + /// Compute type of the cluster. The value will be overwritten by the same setting in integration runtime if provided. + /// Core count of the cluster. The value will be overwritten by the same setting in integration runtime if provided. + /// Time to live setting of the cluster in minutes. + /// Set to use integration runtime setting for data flow debug session. + internal CreateDataFlowDebugSessionRequest(string computeType, int? coreCount, int? timeToLive, IntegrationRuntimeDebugResource integrationRuntime) { - DataFlowName = dataFlowName; - ExistingClusterId = existingClusterId; - ClusterTimeout = clusterTimeout; - NewClusterName = newClusterName; - NewClusterNodeType = newClusterNodeType; - DataBricksLinkedService = dataBricksLinkedService; + ComputeType = computeType; + CoreCount = coreCount; + TimeToLive = timeToLive; + IntegrationRuntime = integrationRuntime; } - /// The name of the data flow. - public string DataFlowName { get; set; } - /// The ID of existing Databricks cluster. - public string ExistingClusterId { get; set; } - /// Timeout setting for Databricks cluster. - public int? ClusterTimeout { get; set; } - /// The name of new Databricks cluster. - public string NewClusterName { get; set; } - /// The type of new Databricks cluster. - public string NewClusterNodeType { get; set; } - /// Data bricks linked service. - public LinkedServiceResource DataBricksLinkedService { get; set; } + /// Compute type of the cluster. The value will be overwritten by the same setting in integration runtime if provided. + public string ComputeType { get; set; } + /// Core count of the cluster. The value will be overwritten by the same setting in integration runtime if provided. + public int? CoreCount { get; set; } + /// Time to live setting of the cluster in minutes. + public int? TimeToLive { get; set; } + /// Set to use integration runtime setting for data flow debug session. + public IntegrationRuntimeDebugResource IntegrationRuntime { get; set; } } } diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/DataFlowDebugCommandPayload.Serialization.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/DataFlowDebugCommandPayload.Serialization.cs new file mode 100644 index 000000000000..c3dd7cea568b --- /dev/null +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/DataFlowDebugCommandPayload.Serialization.cs @@ -0,0 +1,58 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System; +using System.Text.Json; +using System.Text.Json.Serialization; +using Azure.Core; + +namespace Azure.Analytics.Synapse.Artifacts.Models +{ + [JsonConverter(typeof(DataFlowDebugCommandPayloadConverter))] + public partial class DataFlowDebugCommandPayload : IUtf8JsonSerializable + { + void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) + { + writer.WriteStartObject(); + writer.WritePropertyName("streamName"); + writer.WriteStringValue(StreamName); + if (Optional.IsDefined(RowLimits)) + { + writer.WritePropertyName("rowLimits"); + writer.WriteNumberValue(RowLimits.Value); + } + if (Optional.IsCollectionDefined(Columns)) + { + writer.WritePropertyName("columns"); + writer.WriteStartArray(); + foreach (var item in Columns) + { + writer.WriteStringValue(item); + } + writer.WriteEndArray(); + } + if (Optional.IsDefined(Expression)) + { + writer.WritePropertyName("expression"); + writer.WriteStringValue(Expression); + } + writer.WriteEndObject(); + } + + internal partial class DataFlowDebugCommandPayloadConverter : JsonConverter + { + public override void Write(Utf8JsonWriter writer, DataFlowDebugCommandPayload model, JsonSerializerOptions options) + { + writer.WriteObjectValue(model); + } + public override DataFlowDebugCommandPayload Read(ref Utf8JsonReader reader, Type typeToConvert, JsonSerializerOptions options) + { + throw new NotImplementedException(); + } + } + } +} diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/DataFlowDebugCommandPayload.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/DataFlowDebugCommandPayload.cs new file mode 100644 index 000000000000..0b09ba703291 --- /dev/null +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/DataFlowDebugCommandPayload.cs @@ -0,0 +1,40 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System; +using System.Collections.Generic; +using Azure.Core; + +namespace Azure.Analytics.Synapse.Artifacts.Models +{ + /// Structure of command payload. + public partial class DataFlowDebugCommandPayload + { + /// Initializes a new instance of DataFlowDebugCommandPayload. + /// The stream name which is used for preview. + /// is null. + public DataFlowDebugCommandPayload(string streamName) + { + if (streamName == null) + { + throw new ArgumentNullException(nameof(streamName)); + } + + StreamName = streamName; + Columns = new ChangeTrackingList(); + } + + /// The stream name which is used for preview. + public string StreamName { get; } + /// Row limits for preview response. + public int? RowLimits { get; set; } + /// Array of column names. + public IList Columns { get; } + /// The expression which is used for preview. + public string Expression { get; set; } + } +} diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/DataFlowDebugCommandRequest.Serialization.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/DataFlowDebugCommandRequest.Serialization.cs index 82738dc744e1..079217a569de 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/DataFlowDebugCommandRequest.Serialization.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/DataFlowDebugCommandRequest.Serialization.cs @@ -18,20 +18,21 @@ public partial class DataFlowDebugCommandRequest : IUtf8JsonSerializable void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) { writer.WriteStartObject(); - writer.WritePropertyName("sessionId"); - writer.WriteStringValue(SessionId); - if (Optional.IsDefined(DataFlowName)) + if (Optional.IsDefined(SessionId)) { - writer.WritePropertyName("dataFlowName"); - writer.WriteStringValue(DataFlowName); + writer.WritePropertyName("sessionId"); + writer.WriteStringValue(SessionId); } - if (Optional.IsDefined(CommandName)) + if (Optional.IsDefined(Command)) { - writer.WritePropertyName("commandName"); - writer.WriteStringValue(CommandName); + writer.WritePropertyName("command"); + writer.WriteStringValue(Command.Value.ToString()); + } + if (Optional.IsDefined(CommandPayload)) + { + writer.WritePropertyName("commandPayload"); + writer.WriteObjectValue(CommandPayload); } - writer.WritePropertyName("commandPayload"); - writer.WriteObjectValue(CommandPayload); writer.WriteEndObject(); } diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/DataFlowDebugCommandRequest.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/DataFlowDebugCommandRequest.cs index 6a53d1e13164..cf93a2c15045 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/DataFlowDebugCommandRequest.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/DataFlowDebugCommandRequest.cs @@ -5,39 +5,21 @@ #nullable disable -using System; - namespace Azure.Analytics.Synapse.Artifacts.Models { /// Request body structure for data flow expression preview. public partial class DataFlowDebugCommandRequest { /// Initializes a new instance of DataFlowDebugCommandRequest. - /// The ID of data flow debug session. - /// The command payload object. - /// or is null. - public DataFlowDebugCommandRequest(string sessionId, object commandPayload) + public DataFlowDebugCommandRequest() { - if (sessionId == null) - { - throw new ArgumentNullException(nameof(sessionId)); - } - if (commandPayload == null) - { - throw new ArgumentNullException(nameof(commandPayload)); - } - - SessionId = sessionId; - CommandPayload = commandPayload; } /// The ID of data flow debug session. - public string SessionId { get; } - /// The data flow which contains the debug session. - public string DataFlowName { get; set; } - /// The command name. - public string CommandName { get; set; } + public string SessionId { get; set; } + /// The command type. + public DataFlowDebugCommandType? Command { get; set; } /// The command payload object. - public object CommandPayload { get; } + public DataFlowDebugCommandPayload CommandPayload { get; set; } } } diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/DataFlowDebugCommandType.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/DataFlowDebugCommandType.cs new file mode 100644 index 000000000000..a8256df8f1ce --- /dev/null +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/DataFlowDebugCommandType.cs @@ -0,0 +1,54 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System; +using System.ComponentModel; + +namespace Azure.Analytics.Synapse.Artifacts.Models +{ + /// The command type. + public readonly partial struct DataFlowDebugCommandType : IEquatable + { + private readonly string _value; + + /// Initializes a new instance of . + /// is null. + public DataFlowDebugCommandType(string value) + { + _value = value ?? throw new ArgumentNullException(nameof(value)); + } + + private const string ExecutePreviewQueryValue = "executePreviewQuery"; + private const string ExecuteStatisticsQueryValue = "executeStatisticsQuery"; + private const string ExecuteExpressionQueryValue = "executeExpressionQuery"; + + /// executePreviewQuery. + public static DataFlowDebugCommandType ExecutePreviewQuery { get; } = new DataFlowDebugCommandType(ExecutePreviewQueryValue); + /// executeStatisticsQuery. + public static DataFlowDebugCommandType ExecuteStatisticsQuery { get; } = new DataFlowDebugCommandType(ExecuteStatisticsQueryValue); + /// executeExpressionQuery. + public static DataFlowDebugCommandType ExecuteExpressionQuery { get; } = new DataFlowDebugCommandType(ExecuteExpressionQueryValue); + /// Determines if two values are the same. + public static bool operator ==(DataFlowDebugCommandType left, DataFlowDebugCommandType right) => left.Equals(right); + /// Determines if two values are not the same. + public static bool operator !=(DataFlowDebugCommandType left, DataFlowDebugCommandType right) => !left.Equals(right); + /// Converts a string to a . + public static implicit operator DataFlowDebugCommandType(string value) => new DataFlowDebugCommandType(value); + + /// + [EditorBrowsable(EditorBrowsableState.Never)] + public override bool Equals(object obj) => obj is DataFlowDebugCommandType other && Equals(other); + /// + public bool Equals(DataFlowDebugCommandType other) => string.Equals(_value, other._value, StringComparison.InvariantCultureIgnoreCase); + + /// + [EditorBrowsable(EditorBrowsableState.Never)] + public override int GetHashCode() => _value?.GetHashCode() ?? 0; + /// + public override string ToString() => _value; + } +} diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/Dataset.Serialization.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/Dataset.Serialization.cs index 910e765990ef..1d0c553fb515 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/Dataset.Serialization.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/Dataset.Serialization.cs @@ -79,6 +79,8 @@ internal static Dataset DeserializeDataset(JsonElement element) switch (discriminator.GetString()) { case "AmazonMWSObject": return AmazonMWSObjectDataset.DeserializeAmazonMWSObjectDataset(element); + case "AmazonRdsForOracleTable": return AmazonRdsForOracleTableDataset.DeserializeAmazonRdsForOracleTableDataset(element); + case "AmazonRdsForSqlServerTable": return AmazonRdsForSqlServerTableDataset.DeserializeAmazonRdsForSqlServerTableDataset(element); case "AmazonRedshiftTable": return AmazonRedshiftTableDataset.DeserializeAmazonRedshiftTableDataset(element); case "AmazonS3Object": return AmazonS3Dataset.DeserializeAmazonS3Dataset(element); case "Avro": return AvroDataset.DeserializeAvroDataset(element); diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/DatasetDeflateCompression.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/DatasetDeflateCompression.cs index fbaf6257eab1..e2f4736ad820 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/DatasetDeflateCompression.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/DatasetDeflateCompression.cs @@ -21,14 +21,14 @@ public DatasetDeflateCompression() /// Initializes a new instance of DatasetDeflateCompression. /// Type of dataset compression. /// Additional Properties. - /// The Deflate compression level. + /// The Deflate compression level. Type: string (or Expression with resultType string). internal DatasetDeflateCompression(string type, IDictionary additionalProperties, object level) : base(type, additionalProperties) { Level = level; Type = type ?? "Deflate"; } - /// The Deflate compression level. + /// The Deflate compression level. Type: string (or Expression with resultType string). public object Level { get; set; } } } diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/DatasetGZipCompression.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/DatasetGZipCompression.cs index e5d75a5cda00..caf729fc9b95 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/DatasetGZipCompression.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/DatasetGZipCompression.cs @@ -21,14 +21,14 @@ public DatasetGZipCompression() /// Initializes a new instance of DatasetGZipCompression. /// Type of dataset compression. /// Additional Properties. - /// The GZip compression level. + /// The GZip compression level. Type: string (or Expression with resultType string). internal DatasetGZipCompression(string type, IDictionary additionalProperties, object level) : base(type, additionalProperties) { Level = level; Type = type ?? "GZip"; } - /// The GZip compression level. + /// The GZip compression level. Type: string (or Expression with resultType string). public object Level { get; set; } } } diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/DatasetTarGZipCompression.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/DatasetTarGZipCompression.cs index 6714f8f314ba..2df976b8ff0b 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/DatasetTarGZipCompression.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/DatasetTarGZipCompression.cs @@ -21,14 +21,14 @@ public DatasetTarGZipCompression() /// Initializes a new instance of DatasetTarGZipCompression. /// Type of dataset compression. /// Additional Properties. - /// The TarGZip compression level. + /// The TarGZip compression level. Type: string (or Expression with resultType string). internal DatasetTarGZipCompression(string type, IDictionary additionalProperties, object level) : base(type, additionalProperties) { Level = level; Type = type ?? "TarGZip"; } - /// The TarGZip compression level. + /// The TarGZip compression level. Type: string (or Expression with resultType string). public object Level { get; set; } } } diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/DatasetZipDeflateCompression.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/DatasetZipDeflateCompression.cs index a61b06532407..c44c5db45842 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/DatasetZipDeflateCompression.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/DatasetZipDeflateCompression.cs @@ -21,14 +21,14 @@ public DatasetZipDeflateCompression() /// Initializes a new instance of DatasetZipDeflateCompression. /// Type of dataset compression. /// Additional Properties. - /// The ZipDeflate compression level. + /// The ZipDeflate compression level. Type: string (or Expression with resultType string). internal DatasetZipDeflateCompression(string type, IDictionary additionalProperties, object level) : base(type, additionalProperties) { Level = level; Type = type ?? "ZipDeflate"; } - /// The ZipDeflate compression level. + /// The ZipDeflate compression level. Type: string (or Expression with resultType string). public object Level { get; set; } } } diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/Db2Source.Serialization.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/Db2Source.Serialization.cs index fcf422dd8e17..9c0586fd77d9 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/Db2Source.Serialization.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/Db2Source.Serialization.cs @@ -29,15 +29,10 @@ void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) writer.WritePropertyName("queryTimeout"); writer.WriteObjectValue(QueryTimeout); } - if (Optional.IsCollectionDefined(AdditionalColumns)) + if (Optional.IsDefined(AdditionalColumns)) { writer.WritePropertyName("additionalColumns"); - writer.WriteStartArray(); - foreach (var item in AdditionalColumns) - { - writer.WriteObjectValue(item); - } - writer.WriteEndArray(); + writer.WriteObjectValue(AdditionalColumns); } writer.WritePropertyName("type"); writer.WriteStringValue(Type); @@ -68,7 +63,7 @@ internal static Db2Source DeserializeDb2Source(JsonElement element) { Optional query = default; Optional queryTimeout = default; - Optional> additionalColumns = default; + Optional additionalColumns = default; string type = default; Optional sourceRetryCount = default; Optional sourceRetryWait = default; @@ -104,12 +99,7 @@ internal static Db2Source DeserializeDb2Source(JsonElement element) property.ThrowNonNullablePropertyIsNull(); continue; } - List array = new List(); - foreach (var item in property.Value.EnumerateArray()) - { - array.Add(Models.AdditionalColumns.DeserializeAdditionalColumns(item)); - } - additionalColumns = array; + additionalColumns = property.Value.GetObject(); continue; } if (property.NameEquals("type")) @@ -150,7 +140,7 @@ internal static Db2Source DeserializeDb2Source(JsonElement element) additionalPropertiesDictionary.Add(property.Name, property.Value.GetObject()); } additionalProperties = additionalPropertiesDictionary; - return new Db2Source(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, queryTimeout.Value, Optional.ToList(additionalColumns), query.Value); + return new Db2Source(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, queryTimeout.Value, additionalColumns.Value, query.Value); } internal partial class Db2SourceConverter : JsonConverter diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/Db2Source.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/Db2Source.cs index f41aaa8910a0..04eed1eda52e 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/Db2Source.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/Db2Source.cs @@ -25,9 +25,9 @@ public Db2Source() /// The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer). /// Additional Properties. /// Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])). - /// Specifies the additional columns to be added to source data. Type: array of objects (or Expression with resultType array of objects). + /// Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects). /// Database query. Type: string (or Expression with resultType string). - internal Db2Source(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object queryTimeout, IList additionalColumns, object query) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties, queryTimeout, additionalColumns) + internal Db2Source(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object queryTimeout, object additionalColumns, object query) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties, queryTimeout, additionalColumns) { Query = query; Type = type ?? "Db2Source"; diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/DelimitedTextDataset.Serialization.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/DelimitedTextDataset.Serialization.cs index d4447e490d39..6a48433e3055 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/DelimitedTextDataset.Serialization.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/DelimitedTextDataset.Serialization.cs @@ -89,7 +89,7 @@ void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) if (Optional.IsDefined(CompressionCodec)) { writer.WritePropertyName("compressionCodec"); - writer.WriteStringValue(CompressionCodec.Value.ToString()); + writer.WriteObjectValue(CompressionCodec); } if (Optional.IsDefined(CompressionLevel)) { @@ -139,7 +139,7 @@ internal static DelimitedTextDataset DeserializeDelimitedTextDataset(JsonElement Optional columnDelimiter = default; Optional rowDelimiter = default; Optional encodingName = default; - Optional compressionCodec = default; + Optional compressionCodec = default; Optional compressionLevel = default; Optional quoteChar = default; Optional escapeChar = default; @@ -280,7 +280,7 @@ internal static DelimitedTextDataset DeserializeDelimitedTextDataset(JsonElement property0.ThrowNonNullablePropertyIsNull(); continue; } - compressionCodec = new CompressionCodec(property0.Value.GetString()); + compressionCodec = property0.Value.GetObject(); continue; } if (property0.NameEquals("compressionLevel")) @@ -339,7 +339,7 @@ internal static DelimitedTextDataset DeserializeDelimitedTextDataset(JsonElement additionalPropertiesDictionary.Add(property.Name, property.Value.GetObject()); } additionalProperties = additionalPropertiesDictionary; - return new DelimitedTextDataset(type, description.Value, structure.Value, schema.Value, linkedServiceName, Optional.ToDictionary(parameters), Optional.ToList(annotations), folder.Value, additionalProperties, location.Value, columnDelimiter.Value, rowDelimiter.Value, encodingName.Value, Optional.ToNullable(compressionCodec), compressionLevel.Value, quoteChar.Value, escapeChar.Value, firstRowAsHeader.Value, nullValue.Value); + return new DelimitedTextDataset(type, description.Value, structure.Value, schema.Value, linkedServiceName, Optional.ToDictionary(parameters), Optional.ToList(annotations), folder.Value, additionalProperties, location.Value, columnDelimiter.Value, rowDelimiter.Value, encodingName.Value, compressionCodec.Value, compressionLevel.Value, quoteChar.Value, escapeChar.Value, firstRowAsHeader.Value, nullValue.Value); } internal partial class DelimitedTextDatasetConverter : JsonConverter diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/DelimitedTextDataset.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/DelimitedTextDataset.cs index 7e8e94113bbf..ce18fa4a060f 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/DelimitedTextDataset.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/DelimitedTextDataset.cs @@ -40,13 +40,13 @@ public DelimitedTextDataset(LinkedServiceReference linkedServiceName) : base(lin /// The column delimiter. Type: string (or Expression with resultType string). /// The row delimiter. Type: string (or Expression with resultType string). /// The code page name of the preferred encoding. If miss, the default value is UTF-8, unless BOM denotes another Unicode encoding. Refer to the name column of the table in the following link to set supported values: https://msdn.microsoft.com/library/system.text.encoding.aspx. Type: string (or Expression with resultType string). - /// + /// The data compressionCodec. Type: string (or Expression with resultType string). /// The data compression method used for DelimitedText. /// The quote character. Type: string (or Expression with resultType string). /// The escape character. Type: string (or Expression with resultType string). /// When used as input, treat the first row of data as headers. When used as output,write the headers into the output as the first row of data. The default value is false. Type: boolean (or Expression with resultType boolean). /// The null value string. Type: string (or Expression with resultType string). - internal DelimitedTextDataset(string type, string description, object structure, object schema, LinkedServiceReference linkedServiceName, IDictionary parameters, IList annotations, DatasetFolder folder, IDictionary additionalProperties, DatasetLocation location, object columnDelimiter, object rowDelimiter, object encodingName, CompressionCodec? compressionCodec, object compressionLevel, object quoteChar, object escapeChar, object firstRowAsHeader, object nullValue) : base(type, description, structure, schema, linkedServiceName, parameters, annotations, folder, additionalProperties) + internal DelimitedTextDataset(string type, string description, object structure, object schema, LinkedServiceReference linkedServiceName, IDictionary parameters, IList annotations, DatasetFolder folder, IDictionary additionalProperties, DatasetLocation location, object columnDelimiter, object rowDelimiter, object encodingName, object compressionCodec, object compressionLevel, object quoteChar, object escapeChar, object firstRowAsHeader, object nullValue) : base(type, description, structure, schema, linkedServiceName, parameters, annotations, folder, additionalProperties) { Location = location; ColumnDelimiter = columnDelimiter; @@ -69,8 +69,8 @@ internal DelimitedTextDataset(string type, string description, object structure, public object RowDelimiter { get; set; } /// The code page name of the preferred encoding. If miss, the default value is UTF-8, unless BOM denotes another Unicode encoding. Refer to the name column of the table in the following link to set supported values: https://msdn.microsoft.com/library/system.text.encoding.aspx. Type: string (or Expression with resultType string). public object EncodingName { get; set; } - /// Gets or sets the compression codec. - public CompressionCodec? CompressionCodec { get; set; } + /// The data compressionCodec. Type: string (or Expression with resultType string). + public object CompressionCodec { get; set; } /// The data compression method used for DelimitedText. public object CompressionLevel { get; set; } /// The quote character. Type: string (or Expression with resultType string). diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/DelimitedTextSource.Serialization.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/DelimitedTextSource.Serialization.cs index 7c7d00691b0d..6a317e1521c0 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/DelimitedTextSource.Serialization.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/DelimitedTextSource.Serialization.cs @@ -29,15 +29,10 @@ void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) writer.WritePropertyName("formatSettings"); writer.WriteObjectValue(FormatSettings); } - if (Optional.IsCollectionDefined(AdditionalColumns)) + if (Optional.IsDefined(AdditionalColumns)) { writer.WritePropertyName("additionalColumns"); - writer.WriteStartArray(); - foreach (var item in AdditionalColumns) - { - writer.WriteObjectValue(item); - } - writer.WriteEndArray(); + writer.WriteObjectValue(AdditionalColumns); } writer.WritePropertyName("type"); writer.WriteStringValue(Type); @@ -68,7 +63,7 @@ internal static DelimitedTextSource DeserializeDelimitedTextSource(JsonElement e { Optional storeSettings = default; Optional formatSettings = default; - Optional> additionalColumns = default; + Optional additionalColumns = default; string type = default; Optional sourceRetryCount = default; Optional sourceRetryWait = default; @@ -104,12 +99,7 @@ internal static DelimitedTextSource DeserializeDelimitedTextSource(JsonElement e property.ThrowNonNullablePropertyIsNull(); continue; } - List array = new List(); - foreach (var item in property.Value.EnumerateArray()) - { - array.Add(Models.AdditionalColumns.DeserializeAdditionalColumns(item)); - } - additionalColumns = array; + additionalColumns = property.Value.GetObject(); continue; } if (property.NameEquals("type")) @@ -150,7 +140,7 @@ internal static DelimitedTextSource DeserializeDelimitedTextSource(JsonElement e additionalPropertiesDictionary.Add(property.Name, property.Value.GetObject()); } additionalProperties = additionalPropertiesDictionary; - return new DelimitedTextSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, storeSettings.Value, formatSettings.Value, Optional.ToList(additionalColumns)); + return new DelimitedTextSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, storeSettings.Value, formatSettings.Value, additionalColumns.Value); } internal partial class DelimitedTextSourceConverter : JsonConverter diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/DelimitedTextSource.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/DelimitedTextSource.cs index c84c63dbb0de..90ac6def752a 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/DelimitedTextSource.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/DelimitedTextSource.cs @@ -6,7 +6,6 @@ #nullable disable using System.Collections.Generic; -using Azure.Core; namespace Azure.Analytics.Synapse.Artifacts.Models { @@ -16,7 +15,6 @@ public partial class DelimitedTextSource : CopySource /// Initializes a new instance of DelimitedTextSource. public DelimitedTextSource() { - AdditionalColumns = new ChangeTrackingList(); Type = "DelimitedTextSource"; } @@ -28,8 +26,8 @@ public DelimitedTextSource() /// Additional Properties. /// DelimitedText store settings. /// DelimitedText format settings. - /// Specifies the additional columns to be added to source data. Type: array of objects (or Expression with resultType array of objects). - internal DelimitedTextSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, StoreReadSettings storeSettings, DelimitedTextReadSettings formatSettings, IList additionalColumns) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties) + /// Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects). + internal DelimitedTextSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, StoreReadSettings storeSettings, DelimitedTextReadSettings formatSettings, object additionalColumns) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties) { StoreSettings = storeSettings; FormatSettings = formatSettings; @@ -41,7 +39,7 @@ internal DelimitedTextSource(string type, object sourceRetryCount, object source public StoreReadSettings StoreSettings { get; set; } /// DelimitedText format settings. public DelimitedTextReadSettings FormatSettings { get; set; } - /// Specifies the additional columns to be added to source data. Type: array of objects (or Expression with resultType array of objects). - public IList AdditionalColumns { get; } + /// Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects). + public object AdditionalColumns { get; set; } } } diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/DocumentDbCollectionSource.Serialization.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/DocumentDbCollectionSource.Serialization.cs index 0dde98186706..a377a5363d4b 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/DocumentDbCollectionSource.Serialization.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/DocumentDbCollectionSource.Serialization.cs @@ -34,15 +34,10 @@ void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) writer.WritePropertyName("queryTimeout"); writer.WriteObjectValue(QueryTimeout); } - if (Optional.IsCollectionDefined(AdditionalColumns)) + if (Optional.IsDefined(AdditionalColumns)) { writer.WritePropertyName("additionalColumns"); - writer.WriteStartArray(); - foreach (var item in AdditionalColumns) - { - writer.WriteObjectValue(item); - } - writer.WriteEndArray(); + writer.WriteObjectValue(AdditionalColumns); } writer.WritePropertyName("type"); writer.WriteStringValue(Type); @@ -74,7 +69,7 @@ internal static DocumentDbCollectionSource DeserializeDocumentDbCollectionSource Optional query = default; Optional nestingSeparator = default; Optional queryTimeout = default; - Optional> additionalColumns = default; + Optional additionalColumns = default; string type = default; Optional sourceRetryCount = default; Optional sourceRetryWait = default; @@ -120,12 +115,7 @@ internal static DocumentDbCollectionSource DeserializeDocumentDbCollectionSource property.ThrowNonNullablePropertyIsNull(); continue; } - List array = new List(); - foreach (var item in property.Value.EnumerateArray()) - { - array.Add(Models.AdditionalColumns.DeserializeAdditionalColumns(item)); - } - additionalColumns = array; + additionalColumns = property.Value.GetObject(); continue; } if (property.NameEquals("type")) @@ -166,7 +156,7 @@ internal static DocumentDbCollectionSource DeserializeDocumentDbCollectionSource additionalPropertiesDictionary.Add(property.Name, property.Value.GetObject()); } additionalProperties = additionalPropertiesDictionary; - return new DocumentDbCollectionSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, query.Value, nestingSeparator.Value, queryTimeout.Value, Optional.ToList(additionalColumns)); + return new DocumentDbCollectionSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, query.Value, nestingSeparator.Value, queryTimeout.Value, additionalColumns.Value); } internal partial class DocumentDbCollectionSourceConverter : JsonConverter diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/DocumentDbCollectionSource.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/DocumentDbCollectionSource.cs index 190d94803e5c..2b22702afed4 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/DocumentDbCollectionSource.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/DocumentDbCollectionSource.cs @@ -6,7 +6,6 @@ #nullable disable using System.Collections.Generic; -using Azure.Core; namespace Azure.Analytics.Synapse.Artifacts.Models { @@ -16,7 +15,6 @@ public partial class DocumentDbCollectionSource : CopySource /// Initializes a new instance of DocumentDbCollectionSource. public DocumentDbCollectionSource() { - AdditionalColumns = new ChangeTrackingList(); Type = "DocumentDbCollectionSource"; } @@ -29,8 +27,8 @@ public DocumentDbCollectionSource() /// Documents query. Type: string (or Expression with resultType string). /// Nested properties separator. Type: string (or Expression with resultType string). /// Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])). - /// Specifies the additional columns to be added to source data. Type: array of objects (or Expression with resultType array of objects). - internal DocumentDbCollectionSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object query, object nestingSeparator, object queryTimeout, IList additionalColumns) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties) + /// Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects). + internal DocumentDbCollectionSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object query, object nestingSeparator, object queryTimeout, object additionalColumns) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties) { Query = query; NestingSeparator = nestingSeparator; @@ -45,7 +43,7 @@ internal DocumentDbCollectionSource(string type, object sourceRetryCount, object public object NestingSeparator { get; set; } /// Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])). public object QueryTimeout { get; set; } - /// Specifies the additional columns to be added to source data. Type: array of objects (or Expression with resultType array of objects). - public IList AdditionalColumns { get; } + /// Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects). + public object AdditionalColumns { get; set; } } } diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/DrillSource.Serialization.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/DrillSource.Serialization.cs index e2b61571f19a..aeeafd56e755 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/DrillSource.Serialization.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/DrillSource.Serialization.cs @@ -29,15 +29,10 @@ void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) writer.WritePropertyName("queryTimeout"); writer.WriteObjectValue(QueryTimeout); } - if (Optional.IsCollectionDefined(AdditionalColumns)) + if (Optional.IsDefined(AdditionalColumns)) { writer.WritePropertyName("additionalColumns"); - writer.WriteStartArray(); - foreach (var item in AdditionalColumns) - { - writer.WriteObjectValue(item); - } - writer.WriteEndArray(); + writer.WriteObjectValue(AdditionalColumns); } writer.WritePropertyName("type"); writer.WriteStringValue(Type); @@ -68,7 +63,7 @@ internal static DrillSource DeserializeDrillSource(JsonElement element) { Optional query = default; Optional queryTimeout = default; - Optional> additionalColumns = default; + Optional additionalColumns = default; string type = default; Optional sourceRetryCount = default; Optional sourceRetryWait = default; @@ -104,12 +99,7 @@ internal static DrillSource DeserializeDrillSource(JsonElement element) property.ThrowNonNullablePropertyIsNull(); continue; } - List array = new List(); - foreach (var item in property.Value.EnumerateArray()) - { - array.Add(Models.AdditionalColumns.DeserializeAdditionalColumns(item)); - } - additionalColumns = array; + additionalColumns = property.Value.GetObject(); continue; } if (property.NameEquals("type")) @@ -150,7 +140,7 @@ internal static DrillSource DeserializeDrillSource(JsonElement element) additionalPropertiesDictionary.Add(property.Name, property.Value.GetObject()); } additionalProperties = additionalPropertiesDictionary; - return new DrillSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, queryTimeout.Value, Optional.ToList(additionalColumns), query.Value); + return new DrillSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, queryTimeout.Value, additionalColumns.Value, query.Value); } internal partial class DrillSourceConverter : JsonConverter diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/DrillSource.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/DrillSource.cs index 5c502c8610c2..ff1ecd2c57bf 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/DrillSource.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/DrillSource.cs @@ -25,9 +25,9 @@ public DrillSource() /// The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer). /// Additional Properties. /// Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])). - /// Specifies the additional columns to be added to source data. Type: array of objects (or Expression with resultType array of objects). + /// Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects). /// A query to retrieve data from source. Type: string (or Expression with resultType string). - internal DrillSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object queryTimeout, IList additionalColumns, object query) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties, queryTimeout, additionalColumns) + internal DrillSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object queryTimeout, object additionalColumns, object query) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties, queryTimeout, additionalColumns) { Query = query; Type = type ?? "DrillSource"; diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/DynamicsAXSource.Serialization.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/DynamicsAXSource.Serialization.cs index 38a5919ccde4..27f98630b87f 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/DynamicsAXSource.Serialization.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/DynamicsAXSource.Serialization.cs @@ -34,15 +34,10 @@ void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) writer.WritePropertyName("queryTimeout"); writer.WriteObjectValue(QueryTimeout); } - if (Optional.IsCollectionDefined(AdditionalColumns)) + if (Optional.IsDefined(AdditionalColumns)) { writer.WritePropertyName("additionalColumns"); - writer.WriteStartArray(); - foreach (var item in AdditionalColumns) - { - writer.WriteObjectValue(item); - } - writer.WriteEndArray(); + writer.WriteObjectValue(AdditionalColumns); } writer.WritePropertyName("type"); writer.WriteStringValue(Type); @@ -74,7 +69,7 @@ internal static DynamicsAXSource DeserializeDynamicsAXSource(JsonElement element Optional query = default; Optional httpRequestTimeout = default; Optional queryTimeout = default; - Optional> additionalColumns = default; + Optional additionalColumns = default; string type = default; Optional sourceRetryCount = default; Optional sourceRetryWait = default; @@ -120,12 +115,7 @@ internal static DynamicsAXSource DeserializeDynamicsAXSource(JsonElement element property.ThrowNonNullablePropertyIsNull(); continue; } - List array = new List(); - foreach (var item in property.Value.EnumerateArray()) - { - array.Add(Models.AdditionalColumns.DeserializeAdditionalColumns(item)); - } - additionalColumns = array; + additionalColumns = property.Value.GetObject(); continue; } if (property.NameEquals("type")) @@ -166,7 +156,7 @@ internal static DynamicsAXSource DeserializeDynamicsAXSource(JsonElement element additionalPropertiesDictionary.Add(property.Name, property.Value.GetObject()); } additionalProperties = additionalPropertiesDictionary; - return new DynamicsAXSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, queryTimeout.Value, Optional.ToList(additionalColumns), query.Value, httpRequestTimeout.Value); + return new DynamicsAXSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, queryTimeout.Value, additionalColumns.Value, query.Value, httpRequestTimeout.Value); } internal partial class DynamicsAXSourceConverter : JsonConverter diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/DynamicsAXSource.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/DynamicsAXSource.cs index 37d7dba86812..124feee75993 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/DynamicsAXSource.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/DynamicsAXSource.cs @@ -25,10 +25,10 @@ public DynamicsAXSource() /// The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer). /// Additional Properties. /// Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])). - /// Specifies the additional columns to be added to source data. Type: array of objects (or Expression with resultType array of objects). + /// Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects). /// A query to retrieve data from source. Type: string (or Expression with resultType string). /// The timeout (TimeSpan) to get an HTTP response. It is the timeout to get a response, not the timeout to read response data. Default value: 00:05:00. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])). - internal DynamicsAXSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object queryTimeout, IList additionalColumns, object query, object httpRequestTimeout) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties, queryTimeout, additionalColumns) + internal DynamicsAXSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object queryTimeout, object additionalColumns, object query, object httpRequestTimeout) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties, queryTimeout, additionalColumns) { Query = query; HttpRequestTimeout = httpRequestTimeout; diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/DynamicsAuthenticationType.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/DynamicsAuthenticationType.cs index 528cfd504c40..831897bf4862 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/DynamicsAuthenticationType.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/DynamicsAuthenticationType.cs @@ -10,8 +10,8 @@ namespace Azure.Analytics.Synapse.Artifacts.Models { - /// The authentication type to connect to Dynamics server. 'Office365' for online scenario, 'Ifd' for on-premises with Ifd scenario, 'AADServicePrincipal' for Server-To-Server authentication in online scenario. Type: string (or Expression with resultType string). - public readonly partial struct DynamicsAuthenticationType : IEquatable + /// All available dynamicsAuthenticationType values. + internal readonly partial struct DynamicsAuthenticationType : IEquatable { private readonly string _value; diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/DynamicsCrmLinkedService.Serialization.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/DynamicsCrmLinkedService.Serialization.cs index c19482228b08..8affea3ce64c 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/DynamicsCrmLinkedService.Serialization.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/DynamicsCrmLinkedService.Serialization.cs @@ -55,7 +55,7 @@ void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) writer.WritePropertyName("typeProperties"); writer.WriteStartObject(); writer.WritePropertyName("deploymentType"); - writer.WriteStringValue(DeploymentType.ToString()); + writer.WriteObjectValue(DeploymentType); if (Optional.IsDefined(HostName)) { writer.WritePropertyName("hostName"); @@ -77,7 +77,7 @@ void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) writer.WriteObjectValue(OrganizationName); } writer.WritePropertyName("authenticationType"); - writer.WriteStringValue(AuthenticationType.ToString()); + writer.WriteObjectValue(AuthenticationType); if (Optional.IsDefined(Username)) { writer.WritePropertyName("username"); @@ -124,12 +124,12 @@ internal static DynamicsCrmLinkedService DeserializeDynamicsCrmLinkedService(Jso Optional description = default; Optional> parameters = default; Optional> annotations = default; - DynamicsDeploymentType deploymentType = default; + object deploymentType = default; Optional hostName = default; Optional port = default; Optional serviceUri = default; Optional organizationName = default; - DynamicsAuthenticationType authenticationType = default; + object authenticationType = default; Optional username = default; Optional password = default; Optional servicePrincipalId = default; @@ -201,7 +201,7 @@ internal static DynamicsCrmLinkedService DeserializeDynamicsCrmLinkedService(Jso { if (property0.NameEquals("deploymentType")) { - deploymentType = new DynamicsDeploymentType(property0.Value.GetString()); + deploymentType = property0.Value.GetObject(); continue; } if (property0.NameEquals("hostName")) @@ -246,7 +246,7 @@ internal static DynamicsCrmLinkedService DeserializeDynamicsCrmLinkedService(Jso } if (property0.NameEquals("authenticationType")) { - authenticationType = new DynamicsAuthenticationType(property0.Value.GetString()); + authenticationType = property0.Value.GetObject(); continue; } if (property0.NameEquals("username")) diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/DynamicsCrmLinkedService.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/DynamicsCrmLinkedService.cs index cb451af5d8cb..3cecc6c9b2e3 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/DynamicsCrmLinkedService.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/DynamicsCrmLinkedService.cs @@ -5,6 +5,7 @@ #nullable disable +using System; using System.Collections.Generic; namespace Azure.Analytics.Synapse.Artifacts.Models @@ -15,8 +16,18 @@ public partial class DynamicsCrmLinkedService : LinkedService /// Initializes a new instance of DynamicsCrmLinkedService. /// The deployment type of the Dynamics CRM instance. 'Online' for Dynamics CRM Online and 'OnPremisesWithIfd' for Dynamics CRM on-premises with Ifd. Type: string (or Expression with resultType string). /// The authentication type to connect to Dynamics CRM server. 'Office365' for online scenario, 'Ifd' for on-premises with Ifd scenario, 'AADServicePrincipal' for Server-To-Server authentication in online scenario. Type: string (or Expression with resultType string). - public DynamicsCrmLinkedService(DynamicsDeploymentType deploymentType, DynamicsAuthenticationType authenticationType) + /// or is null. + public DynamicsCrmLinkedService(object deploymentType, object authenticationType) { + if (deploymentType == null) + { + throw new ArgumentNullException(nameof(deploymentType)); + } + if (authenticationType == null) + { + throw new ArgumentNullException(nameof(authenticationType)); + } + DeploymentType = deploymentType; AuthenticationType = authenticationType; Type = "DynamicsCrm"; @@ -41,7 +52,7 @@ public DynamicsCrmLinkedService(DynamicsDeploymentType deploymentType, DynamicsA /// A string from ServicePrincipalCredentialEnum or an expression. /// The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference. /// The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). - internal DynamicsCrmLinkedService(string type, IntegrationRuntimeReference connectVia, string description, IDictionary parameters, IList annotations, IDictionary additionalProperties, DynamicsDeploymentType deploymentType, object hostName, object port, object serviceUri, object organizationName, DynamicsAuthenticationType authenticationType, object username, SecretBase password, object servicePrincipalId, object servicePrincipalCredentialType, SecretBase servicePrincipalCredential, object encryptedCredential) : base(type, connectVia, description, parameters, annotations, additionalProperties) + internal DynamicsCrmLinkedService(string type, IntegrationRuntimeReference connectVia, string description, IDictionary parameters, IList annotations, IDictionary additionalProperties, object deploymentType, object hostName, object port, object serviceUri, object organizationName, object authenticationType, object username, SecretBase password, object servicePrincipalId, object servicePrincipalCredentialType, SecretBase servicePrincipalCredential, object encryptedCredential) : base(type, connectVia, description, parameters, annotations, additionalProperties) { DeploymentType = deploymentType; HostName = hostName; @@ -59,7 +70,7 @@ internal DynamicsCrmLinkedService(string type, IntegrationRuntimeReference conne } /// The deployment type of the Dynamics CRM instance. 'Online' for Dynamics CRM Online and 'OnPremisesWithIfd' for Dynamics CRM on-premises with Ifd. Type: string (or Expression with resultType string). - public DynamicsDeploymentType DeploymentType { get; set; } + public object DeploymentType { get; set; } /// The host name of the on-premises Dynamics CRM server. The property is required for on-prem and not allowed for online. Type: string (or Expression with resultType string). public object HostName { get; set; } /// The port of on-premises Dynamics CRM server. The property is required for on-prem and not allowed for online. Default is 443. Type: integer (or Expression with resultType integer), minimum: 0. @@ -69,7 +80,7 @@ internal DynamicsCrmLinkedService(string type, IntegrationRuntimeReference conne /// The organization name of the Dynamics CRM instance. The property is required for on-prem and required for online when there are more than one Dynamics CRM instances associated with the user. Type: string (or Expression with resultType string). public object OrganizationName { get; set; } /// The authentication type to connect to Dynamics CRM server. 'Office365' for online scenario, 'Ifd' for on-premises with Ifd scenario, 'AADServicePrincipal' for Server-To-Server authentication in online scenario. Type: string (or Expression with resultType string). - public DynamicsAuthenticationType AuthenticationType { get; set; } + public object AuthenticationType { get; set; } /// User name to access the Dynamics CRM instance. Type: string (or Expression with resultType string). public object Username { get; set; } /// Password to access the Dynamics CRM instance. diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/DynamicsCrmSource.Serialization.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/DynamicsCrmSource.Serialization.cs index 8503ba8a2dd5..3fe483426e58 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/DynamicsCrmSource.Serialization.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/DynamicsCrmSource.Serialization.cs @@ -24,15 +24,10 @@ void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) writer.WritePropertyName("query"); writer.WriteObjectValue(Query); } - if (Optional.IsCollectionDefined(AdditionalColumns)) + if (Optional.IsDefined(AdditionalColumns)) { writer.WritePropertyName("additionalColumns"); - writer.WriteStartArray(); - foreach (var item in AdditionalColumns) - { - writer.WriteObjectValue(item); - } - writer.WriteEndArray(); + writer.WriteObjectValue(AdditionalColumns); } writer.WritePropertyName("type"); writer.WriteStringValue(Type); @@ -62,7 +57,7 @@ void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) internal static DynamicsCrmSource DeserializeDynamicsCrmSource(JsonElement element) { Optional query = default; - Optional> additionalColumns = default; + Optional additionalColumns = default; string type = default; Optional sourceRetryCount = default; Optional sourceRetryWait = default; @@ -88,12 +83,7 @@ internal static DynamicsCrmSource DeserializeDynamicsCrmSource(JsonElement eleme property.ThrowNonNullablePropertyIsNull(); continue; } - List array = new List(); - foreach (var item in property.Value.EnumerateArray()) - { - array.Add(Models.AdditionalColumns.DeserializeAdditionalColumns(item)); - } - additionalColumns = array; + additionalColumns = property.Value.GetObject(); continue; } if (property.NameEquals("type")) @@ -134,7 +124,7 @@ internal static DynamicsCrmSource DeserializeDynamicsCrmSource(JsonElement eleme additionalPropertiesDictionary.Add(property.Name, property.Value.GetObject()); } additionalProperties = additionalPropertiesDictionary; - return new DynamicsCrmSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, query.Value, Optional.ToList(additionalColumns)); + return new DynamicsCrmSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, query.Value, additionalColumns.Value); } internal partial class DynamicsCrmSourceConverter : JsonConverter diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/DynamicsCrmSource.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/DynamicsCrmSource.cs index 54e11e51361b..6f13d7a6f15b 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/DynamicsCrmSource.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/DynamicsCrmSource.cs @@ -6,7 +6,6 @@ #nullable disable using System.Collections.Generic; -using Azure.Core; namespace Azure.Analytics.Synapse.Artifacts.Models { @@ -16,7 +15,6 @@ public partial class DynamicsCrmSource : CopySource /// Initializes a new instance of DynamicsCrmSource. public DynamicsCrmSource() { - AdditionalColumns = new ChangeTrackingList(); Type = "DynamicsCrmSource"; } @@ -27,8 +25,8 @@ public DynamicsCrmSource() /// The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer). /// Additional Properties. /// FetchXML is a proprietary query language that is used in Microsoft Dynamics CRM (online & on-premises). Type: string (or Expression with resultType string). - /// Specifies the additional columns to be added to source data. Type: array of objects (or Expression with resultType array of objects). - internal DynamicsCrmSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object query, IList additionalColumns) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties) + /// Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects). + internal DynamicsCrmSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object query, object additionalColumns) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties) { Query = query; AdditionalColumns = additionalColumns; @@ -37,7 +35,7 @@ internal DynamicsCrmSource(string type, object sourceRetryCount, object sourceRe /// FetchXML is a proprietary query language that is used in Microsoft Dynamics CRM (online & on-premises). Type: string (or Expression with resultType string). public object Query { get; set; } - /// Specifies the additional columns to be added to source data. Type: array of objects (or Expression with resultType array of objects). - public IList AdditionalColumns { get; } + /// Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects). + public object AdditionalColumns { get; set; } } } diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/DynamicsDeploymentType.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/DynamicsDeploymentType.cs index 22956e747dfe..7568c95276eb 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/DynamicsDeploymentType.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/DynamicsDeploymentType.cs @@ -10,8 +10,8 @@ namespace Azure.Analytics.Synapse.Artifacts.Models { - /// The deployment type of the Dynamics instance. 'Online' for Dynamics Online and 'OnPremisesWithIfd' for Dynamics on-premises with Ifd. Type: string (or Expression with resultType string). - public readonly partial struct DynamicsDeploymentType : IEquatable + /// All available dynamicsDeploymentType values. + internal readonly partial struct DynamicsDeploymentType : IEquatable { private readonly string _value; diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/DynamicsLinkedService.Serialization.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/DynamicsLinkedService.Serialization.cs index 1bbde1dd936a..543a07362c6a 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/DynamicsLinkedService.Serialization.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/DynamicsLinkedService.Serialization.cs @@ -55,7 +55,7 @@ void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) writer.WritePropertyName("typeProperties"); writer.WriteStartObject(); writer.WritePropertyName("deploymentType"); - writer.WriteStringValue(DeploymentType.ToString()); + writer.WriteObjectValue(DeploymentType); if (Optional.IsDefined(HostName)) { writer.WritePropertyName("hostName"); @@ -77,7 +77,7 @@ void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) writer.WriteObjectValue(OrganizationName); } writer.WritePropertyName("authenticationType"); - writer.WriteStringValue(AuthenticationType.ToString()); + writer.WriteObjectValue(AuthenticationType); if (Optional.IsDefined(Username)) { writer.WritePropertyName("username"); @@ -96,7 +96,7 @@ void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) if (Optional.IsDefined(ServicePrincipalCredentialType)) { writer.WritePropertyName("servicePrincipalCredentialType"); - writer.WriteStringValue(ServicePrincipalCredentialType.Value.ToString()); + writer.WriteObjectValue(ServicePrincipalCredentialType); } if (Optional.IsDefined(ServicePrincipalCredential)) { @@ -124,16 +124,16 @@ internal static DynamicsLinkedService DeserializeDynamicsLinkedService(JsonEleme Optional description = default; Optional> parameters = default; Optional> annotations = default; - DynamicsDeploymentType deploymentType = default; + object deploymentType = default; Optional hostName = default; Optional port = default; Optional serviceUri = default; Optional organizationName = default; - DynamicsAuthenticationType authenticationType = default; + object authenticationType = default; Optional username = default; Optional password = default; Optional servicePrincipalId = default; - Optional servicePrincipalCredentialType = default; + Optional servicePrincipalCredentialType = default; Optional servicePrincipalCredential = default; Optional encryptedCredential = default; IDictionary additionalProperties = default; @@ -201,7 +201,7 @@ internal static DynamicsLinkedService DeserializeDynamicsLinkedService(JsonEleme { if (property0.NameEquals("deploymentType")) { - deploymentType = new DynamicsDeploymentType(property0.Value.GetString()); + deploymentType = property0.Value.GetObject(); continue; } if (property0.NameEquals("hostName")) @@ -246,7 +246,7 @@ internal static DynamicsLinkedService DeserializeDynamicsLinkedService(JsonEleme } if (property0.NameEquals("authenticationType")) { - authenticationType = new DynamicsAuthenticationType(property0.Value.GetString()); + authenticationType = property0.Value.GetObject(); continue; } if (property0.NameEquals("username")) @@ -286,7 +286,7 @@ internal static DynamicsLinkedService DeserializeDynamicsLinkedService(JsonEleme property0.ThrowNonNullablePropertyIsNull(); continue; } - servicePrincipalCredentialType = new DynamicsServicePrincipalCredentialType(property0.Value.GetString()); + servicePrincipalCredentialType = property0.Value.GetObject(); continue; } if (property0.NameEquals("servicePrincipalCredential")) @@ -315,7 +315,7 @@ internal static DynamicsLinkedService DeserializeDynamicsLinkedService(JsonEleme additionalPropertiesDictionary.Add(property.Name, property.Value.GetObject()); } additionalProperties = additionalPropertiesDictionary; - return new DynamicsLinkedService(type, connectVia.Value, description.Value, Optional.ToDictionary(parameters), Optional.ToList(annotations), additionalProperties, deploymentType, hostName.Value, port.Value, serviceUri.Value, organizationName.Value, authenticationType, username.Value, password.Value, servicePrincipalId.Value, Optional.ToNullable(servicePrincipalCredentialType), servicePrincipalCredential.Value, encryptedCredential.Value); + return new DynamicsLinkedService(type, connectVia.Value, description.Value, Optional.ToDictionary(parameters), Optional.ToList(annotations), additionalProperties, deploymentType, hostName.Value, port.Value, serviceUri.Value, organizationName.Value, authenticationType, username.Value, password.Value, servicePrincipalId.Value, servicePrincipalCredentialType.Value, servicePrincipalCredential.Value, encryptedCredential.Value); } internal partial class DynamicsLinkedServiceConverter : JsonConverter diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/DynamicsLinkedService.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/DynamicsLinkedService.cs index de1bfc60822b..914605cafce9 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/DynamicsLinkedService.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/DynamicsLinkedService.cs @@ -5,6 +5,7 @@ #nullable disable +using System; using System.Collections.Generic; namespace Azure.Analytics.Synapse.Artifacts.Models @@ -15,8 +16,18 @@ public partial class DynamicsLinkedService : LinkedService /// Initializes a new instance of DynamicsLinkedService. /// The deployment type of the Dynamics instance. 'Online' for Dynamics Online and 'OnPremisesWithIfd' for Dynamics on-premises with Ifd. Type: string (or Expression with resultType string). /// The authentication type to connect to Dynamics server. 'Office365' for online scenario, 'Ifd' for on-premises with Ifd scenario, 'AADServicePrincipal' for Server-To-Server authentication in online scenario. Type: string (or Expression with resultType string). - public DynamicsLinkedService(DynamicsDeploymentType deploymentType, DynamicsAuthenticationType authenticationType) + /// or is null. + public DynamicsLinkedService(object deploymentType, object authenticationType) { + if (deploymentType == null) + { + throw new ArgumentNullException(nameof(deploymentType)); + } + if (authenticationType == null) + { + throw new ArgumentNullException(nameof(authenticationType)); + } + DeploymentType = deploymentType; AuthenticationType = authenticationType; Type = "Dynamics"; @@ -41,7 +52,7 @@ public DynamicsLinkedService(DynamicsDeploymentType deploymentType, DynamicsAuth /// The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string). /// The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference. /// The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). - internal DynamicsLinkedService(string type, IntegrationRuntimeReference connectVia, string description, IDictionary parameters, IList annotations, IDictionary additionalProperties, DynamicsDeploymentType deploymentType, object hostName, object port, object serviceUri, object organizationName, DynamicsAuthenticationType authenticationType, object username, SecretBase password, object servicePrincipalId, DynamicsServicePrincipalCredentialType? servicePrincipalCredentialType, SecretBase servicePrincipalCredential, object encryptedCredential) : base(type, connectVia, description, parameters, annotations, additionalProperties) + internal DynamicsLinkedService(string type, IntegrationRuntimeReference connectVia, string description, IDictionary parameters, IList annotations, IDictionary additionalProperties, object deploymentType, object hostName, object port, object serviceUri, object organizationName, object authenticationType, object username, SecretBase password, object servicePrincipalId, object servicePrincipalCredentialType, SecretBase servicePrincipalCredential, object encryptedCredential) : base(type, connectVia, description, parameters, annotations, additionalProperties) { DeploymentType = deploymentType; HostName = hostName; @@ -59,7 +70,7 @@ internal DynamicsLinkedService(string type, IntegrationRuntimeReference connectV } /// The deployment type of the Dynamics instance. 'Online' for Dynamics Online and 'OnPremisesWithIfd' for Dynamics on-premises with Ifd. Type: string (or Expression with resultType string). - public DynamicsDeploymentType DeploymentType { get; set; } + public object DeploymentType { get; set; } /// The host name of the on-premises Dynamics server. The property is required for on-prem and not allowed for online. Type: string (or Expression with resultType string). public object HostName { get; set; } /// The port of on-premises Dynamics server. The property is required for on-prem and not allowed for online. Default is 443. Type: integer (or Expression with resultType integer), minimum: 0. @@ -69,7 +80,7 @@ internal DynamicsLinkedService(string type, IntegrationRuntimeReference connectV /// The organization name of the Dynamics instance. The property is required for on-prem and required for online when there are more than one Dynamics instances associated with the user. Type: string (or Expression with resultType string). public object OrganizationName { get; set; } /// The authentication type to connect to Dynamics server. 'Office365' for online scenario, 'Ifd' for on-premises with Ifd scenario, 'AADServicePrincipal' for Server-To-Server authentication in online scenario. Type: string (or Expression with resultType string). - public DynamicsAuthenticationType AuthenticationType { get; set; } + public object AuthenticationType { get; set; } /// User name to access the Dynamics instance. Type: string (or Expression with resultType string). public object Username { get; set; } /// Password to access the Dynamics instance. @@ -77,7 +88,7 @@ internal DynamicsLinkedService(string type, IntegrationRuntimeReference connectV /// The client ID of the application in Azure Active Directory used for Server-To-Server authentication. Type: string (or Expression with resultType string). public object ServicePrincipalId { get; set; } /// The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string). - public DynamicsServicePrincipalCredentialType? ServicePrincipalCredentialType { get; set; } + public object ServicePrincipalCredentialType { get; set; } /// The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference. public SecretBase ServicePrincipalCredential { get; set; } /// The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/DynamicsServicePrincipalCredentialType.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/DynamicsServicePrincipalCredentialType.cs deleted file mode 100644 index 83d4623c173d..000000000000 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/DynamicsServicePrincipalCredentialType.cs +++ /dev/null @@ -1,51 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. - -// - -#nullable disable - -using System; -using System.ComponentModel; - -namespace Azure.Analytics.Synapse.Artifacts.Models -{ - /// The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string). - public readonly partial struct DynamicsServicePrincipalCredentialType : IEquatable - { - private readonly string _value; - - /// Initializes a new instance of . - /// is null. - public DynamicsServicePrincipalCredentialType(string value) - { - _value = value ?? throw new ArgumentNullException(nameof(value)); - } - - private const string ServicePrincipalKeyValue = "ServicePrincipalKey"; - private const string ServicePrincipalCertValue = "ServicePrincipalCert"; - - /// ServicePrincipalKey. - public static DynamicsServicePrincipalCredentialType ServicePrincipalKey { get; } = new DynamicsServicePrincipalCredentialType(ServicePrincipalKeyValue); - /// ServicePrincipalCert. - public static DynamicsServicePrincipalCredentialType ServicePrincipalCert { get; } = new DynamicsServicePrincipalCredentialType(ServicePrincipalCertValue); - /// Determines if two values are the same. - public static bool operator ==(DynamicsServicePrincipalCredentialType left, DynamicsServicePrincipalCredentialType right) => left.Equals(right); - /// Determines if two values are not the same. - public static bool operator !=(DynamicsServicePrincipalCredentialType left, DynamicsServicePrincipalCredentialType right) => !left.Equals(right); - /// Converts a string to a . - public static implicit operator DynamicsServicePrincipalCredentialType(string value) => new DynamicsServicePrincipalCredentialType(value); - - /// - [EditorBrowsable(EditorBrowsableState.Never)] - public override bool Equals(object obj) => obj is DynamicsServicePrincipalCredentialType other && Equals(other); - /// - public bool Equals(DynamicsServicePrincipalCredentialType other) => string.Equals(_value, other._value, StringComparison.InvariantCultureIgnoreCase); - - /// - [EditorBrowsable(EditorBrowsableState.Never)] - public override int GetHashCode() => _value?.GetHashCode() ?? 0; - /// - public override string ToString() => _value; - } -} diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/DynamicsSource.Serialization.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/DynamicsSource.Serialization.cs index 58c79faca9ac..ca7df99b1bd7 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/DynamicsSource.Serialization.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/DynamicsSource.Serialization.cs @@ -24,15 +24,10 @@ void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) writer.WritePropertyName("query"); writer.WriteObjectValue(Query); } - if (Optional.IsCollectionDefined(AdditionalColumns)) + if (Optional.IsDefined(AdditionalColumns)) { writer.WritePropertyName("additionalColumns"); - writer.WriteStartArray(); - foreach (var item in AdditionalColumns) - { - writer.WriteObjectValue(item); - } - writer.WriteEndArray(); + writer.WriteObjectValue(AdditionalColumns); } writer.WritePropertyName("type"); writer.WriteStringValue(Type); @@ -62,7 +57,7 @@ void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) internal static DynamicsSource DeserializeDynamicsSource(JsonElement element) { Optional query = default; - Optional> additionalColumns = default; + Optional additionalColumns = default; string type = default; Optional sourceRetryCount = default; Optional sourceRetryWait = default; @@ -88,12 +83,7 @@ internal static DynamicsSource DeserializeDynamicsSource(JsonElement element) property.ThrowNonNullablePropertyIsNull(); continue; } - List array = new List(); - foreach (var item in property.Value.EnumerateArray()) - { - array.Add(Models.AdditionalColumns.DeserializeAdditionalColumns(item)); - } - additionalColumns = array; + additionalColumns = property.Value.GetObject(); continue; } if (property.NameEquals("type")) @@ -134,7 +124,7 @@ internal static DynamicsSource DeserializeDynamicsSource(JsonElement element) additionalPropertiesDictionary.Add(property.Name, property.Value.GetObject()); } additionalProperties = additionalPropertiesDictionary; - return new DynamicsSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, query.Value, Optional.ToList(additionalColumns)); + return new DynamicsSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, query.Value, additionalColumns.Value); } internal partial class DynamicsSourceConverter : JsonConverter diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/DynamicsSource.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/DynamicsSource.cs index 3dd0be1d429c..cc58fa5906aa 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/DynamicsSource.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/DynamicsSource.cs @@ -6,7 +6,6 @@ #nullable disable using System.Collections.Generic; -using Azure.Core; namespace Azure.Analytics.Synapse.Artifacts.Models { @@ -16,7 +15,6 @@ public partial class DynamicsSource : CopySource /// Initializes a new instance of DynamicsSource. public DynamicsSource() { - AdditionalColumns = new ChangeTrackingList(); Type = "DynamicsSource"; } @@ -27,8 +25,8 @@ public DynamicsSource() /// The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer). /// Additional Properties. /// FetchXML is a proprietary query language that is used in Microsoft Dynamics (online & on-premises). Type: string (or Expression with resultType string). - /// Specifies the additional columns to be added to source data. Type: array of objects (or Expression with resultType array of objects). - internal DynamicsSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object query, IList additionalColumns) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties) + /// Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects). + internal DynamicsSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object query, object additionalColumns) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties) { Query = query; AdditionalColumns = additionalColumns; @@ -37,7 +35,7 @@ internal DynamicsSource(string type, object sourceRetryCount, object sourceRetry /// FetchXML is a proprietary query language that is used in Microsoft Dynamics (online & on-premises). Type: string (or Expression with resultType string). public object Query { get; set; } - /// Specifies the additional columns to be added to source data. Type: array of objects (or Expression with resultType array of objects). - public IList AdditionalColumns { get; } + /// Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects). + public object AdditionalColumns { get; set; } } } diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/EloquaSource.Serialization.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/EloquaSource.Serialization.cs index e322bbf6b375..218c3f90c354 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/EloquaSource.Serialization.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/EloquaSource.Serialization.cs @@ -29,15 +29,10 @@ void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) writer.WritePropertyName("queryTimeout"); writer.WriteObjectValue(QueryTimeout); } - if (Optional.IsCollectionDefined(AdditionalColumns)) + if (Optional.IsDefined(AdditionalColumns)) { writer.WritePropertyName("additionalColumns"); - writer.WriteStartArray(); - foreach (var item in AdditionalColumns) - { - writer.WriteObjectValue(item); - } - writer.WriteEndArray(); + writer.WriteObjectValue(AdditionalColumns); } writer.WritePropertyName("type"); writer.WriteStringValue(Type); @@ -68,7 +63,7 @@ internal static EloquaSource DeserializeEloquaSource(JsonElement element) { Optional query = default; Optional queryTimeout = default; - Optional> additionalColumns = default; + Optional additionalColumns = default; string type = default; Optional sourceRetryCount = default; Optional sourceRetryWait = default; @@ -104,12 +99,7 @@ internal static EloquaSource DeserializeEloquaSource(JsonElement element) property.ThrowNonNullablePropertyIsNull(); continue; } - List array = new List(); - foreach (var item in property.Value.EnumerateArray()) - { - array.Add(Models.AdditionalColumns.DeserializeAdditionalColumns(item)); - } - additionalColumns = array; + additionalColumns = property.Value.GetObject(); continue; } if (property.NameEquals("type")) @@ -150,7 +140,7 @@ internal static EloquaSource DeserializeEloquaSource(JsonElement element) additionalPropertiesDictionary.Add(property.Name, property.Value.GetObject()); } additionalProperties = additionalPropertiesDictionary; - return new EloquaSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, queryTimeout.Value, Optional.ToList(additionalColumns), query.Value); + return new EloquaSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, queryTimeout.Value, additionalColumns.Value, query.Value); } internal partial class EloquaSourceConverter : JsonConverter diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/EloquaSource.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/EloquaSource.cs index db210533d27e..d29f85f1dc27 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/EloquaSource.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/EloquaSource.cs @@ -25,9 +25,9 @@ public EloquaSource() /// The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer). /// Additional Properties. /// Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])). - /// Specifies the additional columns to be added to source data. Type: array of objects (or Expression with resultType array of objects). + /// Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects). /// A query to retrieve data from source. Type: string (or Expression with resultType string). - internal EloquaSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object queryTimeout, IList additionalColumns, object query) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties, queryTimeout, additionalColumns) + internal EloquaSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object queryTimeout, object additionalColumns, object query) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties, queryTimeout, additionalColumns) { Query = query; Type = type ?? "EloquaSource"; diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/ExcelSource.Serialization.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/ExcelSource.Serialization.cs index 2ac96044bf8f..e4929a70c91c 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/ExcelSource.Serialization.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/ExcelSource.Serialization.cs @@ -24,15 +24,10 @@ void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) writer.WritePropertyName("storeSettings"); writer.WriteObjectValue(StoreSettings); } - if (Optional.IsCollectionDefined(AdditionalColumns)) + if (Optional.IsDefined(AdditionalColumns)) { writer.WritePropertyName("additionalColumns"); - writer.WriteStartArray(); - foreach (var item in AdditionalColumns) - { - writer.WriteObjectValue(item); - } - writer.WriteEndArray(); + writer.WriteObjectValue(AdditionalColumns); } writer.WritePropertyName("type"); writer.WriteStringValue(Type); @@ -62,7 +57,7 @@ void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) internal static ExcelSource DeserializeExcelSource(JsonElement element) { Optional storeSettings = default; - Optional> additionalColumns = default; + Optional additionalColumns = default; string type = default; Optional sourceRetryCount = default; Optional sourceRetryWait = default; @@ -88,12 +83,7 @@ internal static ExcelSource DeserializeExcelSource(JsonElement element) property.ThrowNonNullablePropertyIsNull(); continue; } - List array = new List(); - foreach (var item in property.Value.EnumerateArray()) - { - array.Add(Models.AdditionalColumns.DeserializeAdditionalColumns(item)); - } - additionalColumns = array; + additionalColumns = property.Value.GetObject(); continue; } if (property.NameEquals("type")) @@ -134,7 +124,7 @@ internal static ExcelSource DeserializeExcelSource(JsonElement element) additionalPropertiesDictionary.Add(property.Name, property.Value.GetObject()); } additionalProperties = additionalPropertiesDictionary; - return new ExcelSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, storeSettings.Value, Optional.ToList(additionalColumns)); + return new ExcelSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, storeSettings.Value, additionalColumns.Value); } internal partial class ExcelSourceConverter : JsonConverter diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/ExcelSource.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/ExcelSource.cs index c6e1d77b4aad..15fb49f4a796 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/ExcelSource.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/ExcelSource.cs @@ -6,7 +6,6 @@ #nullable disable using System.Collections.Generic; -using Azure.Core; namespace Azure.Analytics.Synapse.Artifacts.Models { @@ -16,7 +15,6 @@ public partial class ExcelSource : CopySource /// Initializes a new instance of ExcelSource. public ExcelSource() { - AdditionalColumns = new ChangeTrackingList(); Type = "ExcelSource"; } @@ -27,8 +25,8 @@ public ExcelSource() /// The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer). /// Additional Properties. /// Excel store settings. - /// Specifies the additional columns to be added to source data. Type: array of objects (or Expression with resultType array of objects). - internal ExcelSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, StoreReadSettings storeSettings, IList additionalColumns) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties) + /// Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects). + internal ExcelSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, StoreReadSettings storeSettings, object additionalColumns) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties) { StoreSettings = storeSettings; AdditionalColumns = additionalColumns; @@ -37,7 +35,7 @@ internal ExcelSource(string type, object sourceRetryCount, object sourceRetryWai /// Excel store settings. public StoreReadSettings StoreSettings { get; set; } - /// Specifies the additional columns to be added to source data. Type: array of objects (or Expression with resultType array of objects). - public IList AdditionalColumns { get; } + /// Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects). + public object AdditionalColumns { get; set; } } } diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/FileSystemSource.Serialization.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/FileSystemSource.Serialization.cs index 2a029de9c297..3e833e4017e7 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/FileSystemSource.Serialization.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/FileSystemSource.Serialization.cs @@ -24,15 +24,10 @@ void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) writer.WritePropertyName("recursive"); writer.WriteObjectValue(Recursive); } - if (Optional.IsCollectionDefined(AdditionalColumns)) + if (Optional.IsDefined(AdditionalColumns)) { writer.WritePropertyName("additionalColumns"); - writer.WriteStartArray(); - foreach (var item in AdditionalColumns) - { - writer.WriteObjectValue(item); - } - writer.WriteEndArray(); + writer.WriteObjectValue(AdditionalColumns); } writer.WritePropertyName("type"); writer.WriteStringValue(Type); @@ -62,7 +57,7 @@ void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) internal static FileSystemSource DeserializeFileSystemSource(JsonElement element) { Optional recursive = default; - Optional> additionalColumns = default; + Optional additionalColumns = default; string type = default; Optional sourceRetryCount = default; Optional sourceRetryWait = default; @@ -88,12 +83,7 @@ internal static FileSystemSource DeserializeFileSystemSource(JsonElement element property.ThrowNonNullablePropertyIsNull(); continue; } - List array = new List(); - foreach (var item in property.Value.EnumerateArray()) - { - array.Add(Models.AdditionalColumns.DeserializeAdditionalColumns(item)); - } - additionalColumns = array; + additionalColumns = property.Value.GetObject(); continue; } if (property.NameEquals("type")) @@ -134,7 +124,7 @@ internal static FileSystemSource DeserializeFileSystemSource(JsonElement element additionalPropertiesDictionary.Add(property.Name, property.Value.GetObject()); } additionalProperties = additionalPropertiesDictionary; - return new FileSystemSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, recursive.Value, Optional.ToList(additionalColumns)); + return new FileSystemSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, recursive.Value, additionalColumns.Value); } internal partial class FileSystemSourceConverter : JsonConverter diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/FileSystemSource.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/FileSystemSource.cs index 9cea57d60ed0..27ae76ce1c70 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/FileSystemSource.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/FileSystemSource.cs @@ -6,7 +6,6 @@ #nullable disable using System.Collections.Generic; -using Azure.Core; namespace Azure.Analytics.Synapse.Artifacts.Models { @@ -16,7 +15,6 @@ public partial class FileSystemSource : CopySource /// Initializes a new instance of FileSystemSource. public FileSystemSource() { - AdditionalColumns = new ChangeTrackingList(); Type = "FileSystemSource"; } @@ -27,8 +25,8 @@ public FileSystemSource() /// The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer). /// Additional Properties. /// If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean). - /// Specifies the additional columns to be added to source data. Type: array of objects (or Expression with resultType array of objects). - internal FileSystemSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object recursive, IList additionalColumns) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties) + /// Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects). + internal FileSystemSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object recursive, object additionalColumns) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties) { Recursive = recursive; AdditionalColumns = additionalColumns; @@ -37,7 +35,7 @@ internal FileSystemSource(string type, object sourceRetryCount, object sourceRet /// If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean). public object Recursive { get; set; } - /// Specifies the additional columns to be added to source data. Type: array of objects (or Expression with resultType array of objects). - public IList AdditionalColumns { get; } + /// Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects). + public object AdditionalColumns { get; set; } } } diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/GitHubClientSecret.Serialization.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/GitHubClientSecret.Serialization.cs new file mode 100644 index 000000000000..3091b04368ce --- /dev/null +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/GitHubClientSecret.Serialization.cs @@ -0,0 +1,67 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System; +using System.Text.Json; +using System.Text.Json.Serialization; +using Azure.Core; + +namespace Azure.Analytics.Synapse.Artifacts.Models +{ + [JsonConverter(typeof(GitHubClientSecretConverter))] + public partial class GitHubClientSecret : IUtf8JsonSerializable + { + void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) + { + writer.WriteStartObject(); + if (Optional.IsDefined(ByoaSecretAkvUrl)) + { + writer.WritePropertyName("byoaSecretAkvUrl"); + writer.WriteStringValue(ByoaSecretAkvUrl); + } + if (Optional.IsDefined(ByoaSecretName)) + { + writer.WritePropertyName("byoaSecretName"); + writer.WriteStringValue(ByoaSecretName); + } + writer.WriteEndObject(); + } + + internal static GitHubClientSecret DeserializeGitHubClientSecret(JsonElement element) + { + Optional byoaSecretAkvUrl = default; + Optional byoaSecretName = default; + foreach (var property in element.EnumerateObject()) + { + if (property.NameEquals("byoaSecretAkvUrl")) + { + byoaSecretAkvUrl = property.Value.GetString(); + continue; + } + if (property.NameEquals("byoaSecretName")) + { + byoaSecretName = property.Value.GetString(); + continue; + } + } + return new GitHubClientSecret(byoaSecretAkvUrl.Value, byoaSecretName.Value); + } + + internal partial class GitHubClientSecretConverter : JsonConverter + { + public override void Write(Utf8JsonWriter writer, GitHubClientSecret model, JsonSerializerOptions options) + { + writer.WriteObjectValue(model); + } + public override GitHubClientSecret Read(ref Utf8JsonReader reader, Type typeToConvert, JsonSerializerOptions options) + { + using var document = JsonDocument.ParseValue(ref reader); + return DeserializeGitHubClientSecret(document.RootElement); + } + } + } +} diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/GitHubClientSecret.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/GitHubClientSecret.cs new file mode 100644 index 000000000000..5b0bf33336d2 --- /dev/null +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/GitHubClientSecret.cs @@ -0,0 +1,32 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +namespace Azure.Analytics.Synapse.Artifacts.Models +{ + /// Client secret information for factory's bring your own app repository configuration. + public partial class GitHubClientSecret + { + /// Initializes a new instance of GitHubClientSecret. + public GitHubClientSecret() + { + } + + /// Initializes a new instance of GitHubClientSecret. + /// Bring your own app client secret AKV URL. + /// Bring your own app client secret name in AKV. + internal GitHubClientSecret(string byoaSecretAkvUrl, string byoaSecretName) + { + ByoaSecretAkvUrl = byoaSecretAkvUrl; + ByoaSecretName = byoaSecretName; + } + + /// Bring your own app client secret AKV URL. + public string ByoaSecretAkvUrl { get; set; } + /// Bring your own app client secret name in AKV. + public string ByoaSecretName { get; set; } + } +} diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/GoogleAdWordsSource.Serialization.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/GoogleAdWordsSource.Serialization.cs index c240cf6cc2bf..185ff3e9335f 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/GoogleAdWordsSource.Serialization.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/GoogleAdWordsSource.Serialization.cs @@ -29,15 +29,10 @@ void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) writer.WritePropertyName("queryTimeout"); writer.WriteObjectValue(QueryTimeout); } - if (Optional.IsCollectionDefined(AdditionalColumns)) + if (Optional.IsDefined(AdditionalColumns)) { writer.WritePropertyName("additionalColumns"); - writer.WriteStartArray(); - foreach (var item in AdditionalColumns) - { - writer.WriteObjectValue(item); - } - writer.WriteEndArray(); + writer.WriteObjectValue(AdditionalColumns); } writer.WritePropertyName("type"); writer.WriteStringValue(Type); @@ -68,7 +63,7 @@ internal static GoogleAdWordsSource DeserializeGoogleAdWordsSource(JsonElement e { Optional query = default; Optional queryTimeout = default; - Optional> additionalColumns = default; + Optional additionalColumns = default; string type = default; Optional sourceRetryCount = default; Optional sourceRetryWait = default; @@ -104,12 +99,7 @@ internal static GoogleAdWordsSource DeserializeGoogleAdWordsSource(JsonElement e property.ThrowNonNullablePropertyIsNull(); continue; } - List array = new List(); - foreach (var item in property.Value.EnumerateArray()) - { - array.Add(Models.AdditionalColumns.DeserializeAdditionalColumns(item)); - } - additionalColumns = array; + additionalColumns = property.Value.GetObject(); continue; } if (property.NameEquals("type")) @@ -150,7 +140,7 @@ internal static GoogleAdWordsSource DeserializeGoogleAdWordsSource(JsonElement e additionalPropertiesDictionary.Add(property.Name, property.Value.GetObject()); } additionalProperties = additionalPropertiesDictionary; - return new GoogleAdWordsSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, queryTimeout.Value, Optional.ToList(additionalColumns), query.Value); + return new GoogleAdWordsSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, queryTimeout.Value, additionalColumns.Value, query.Value); } internal partial class GoogleAdWordsSourceConverter : JsonConverter diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/GoogleAdWordsSource.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/GoogleAdWordsSource.cs index 7e998848be25..60d52fe441b2 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/GoogleAdWordsSource.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/GoogleAdWordsSource.cs @@ -25,9 +25,9 @@ public GoogleAdWordsSource() /// The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer). /// Additional Properties. /// Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])). - /// Specifies the additional columns to be added to source data. Type: array of objects (or Expression with resultType array of objects). + /// Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects). /// A query to retrieve data from source. Type: string (or Expression with resultType string). - internal GoogleAdWordsSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object queryTimeout, IList additionalColumns, object query) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties, queryTimeout, additionalColumns) + internal GoogleAdWordsSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object queryTimeout, object additionalColumns, object query) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties, queryTimeout, additionalColumns) { Query = query; Type = type ?? "GoogleAdWordsSource"; diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/GoogleBigQuerySource.Serialization.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/GoogleBigQuerySource.Serialization.cs index b740e1c3346b..2464d0f875fb 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/GoogleBigQuerySource.Serialization.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/GoogleBigQuerySource.Serialization.cs @@ -29,15 +29,10 @@ void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) writer.WritePropertyName("queryTimeout"); writer.WriteObjectValue(QueryTimeout); } - if (Optional.IsCollectionDefined(AdditionalColumns)) + if (Optional.IsDefined(AdditionalColumns)) { writer.WritePropertyName("additionalColumns"); - writer.WriteStartArray(); - foreach (var item in AdditionalColumns) - { - writer.WriteObjectValue(item); - } - writer.WriteEndArray(); + writer.WriteObjectValue(AdditionalColumns); } writer.WritePropertyName("type"); writer.WriteStringValue(Type); @@ -68,7 +63,7 @@ internal static GoogleBigQuerySource DeserializeGoogleBigQuerySource(JsonElement { Optional query = default; Optional queryTimeout = default; - Optional> additionalColumns = default; + Optional additionalColumns = default; string type = default; Optional sourceRetryCount = default; Optional sourceRetryWait = default; @@ -104,12 +99,7 @@ internal static GoogleBigQuerySource DeserializeGoogleBigQuerySource(JsonElement property.ThrowNonNullablePropertyIsNull(); continue; } - List array = new List(); - foreach (var item in property.Value.EnumerateArray()) - { - array.Add(Models.AdditionalColumns.DeserializeAdditionalColumns(item)); - } - additionalColumns = array; + additionalColumns = property.Value.GetObject(); continue; } if (property.NameEquals("type")) @@ -150,7 +140,7 @@ internal static GoogleBigQuerySource DeserializeGoogleBigQuerySource(JsonElement additionalPropertiesDictionary.Add(property.Name, property.Value.GetObject()); } additionalProperties = additionalPropertiesDictionary; - return new GoogleBigQuerySource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, queryTimeout.Value, Optional.ToList(additionalColumns), query.Value); + return new GoogleBigQuerySource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, queryTimeout.Value, additionalColumns.Value, query.Value); } internal partial class GoogleBigQuerySourceConverter : JsonConverter diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/GoogleBigQuerySource.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/GoogleBigQuerySource.cs index da906b393242..f7cef6c40c93 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/GoogleBigQuerySource.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/GoogleBigQuerySource.cs @@ -25,9 +25,9 @@ public GoogleBigQuerySource() /// The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer). /// Additional Properties. /// Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])). - /// Specifies the additional columns to be added to source data. Type: array of objects (or Expression with resultType array of objects). + /// Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects). /// A query to retrieve data from source. Type: string (or Expression with resultType string). - internal GoogleBigQuerySource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object queryTimeout, IList additionalColumns, object query) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties, queryTimeout, additionalColumns) + internal GoogleBigQuerySource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object queryTimeout, object additionalColumns, object query) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties, queryTimeout, additionalColumns) { Query = query; Type = type ?? "GoogleBigQuerySource"; diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/GreenplumSource.Serialization.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/GreenplumSource.Serialization.cs index 6920a3b40491..f822c322f13d 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/GreenplumSource.Serialization.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/GreenplumSource.Serialization.cs @@ -29,15 +29,10 @@ void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) writer.WritePropertyName("queryTimeout"); writer.WriteObjectValue(QueryTimeout); } - if (Optional.IsCollectionDefined(AdditionalColumns)) + if (Optional.IsDefined(AdditionalColumns)) { writer.WritePropertyName("additionalColumns"); - writer.WriteStartArray(); - foreach (var item in AdditionalColumns) - { - writer.WriteObjectValue(item); - } - writer.WriteEndArray(); + writer.WriteObjectValue(AdditionalColumns); } writer.WritePropertyName("type"); writer.WriteStringValue(Type); @@ -68,7 +63,7 @@ internal static GreenplumSource DeserializeGreenplumSource(JsonElement element) { Optional query = default; Optional queryTimeout = default; - Optional> additionalColumns = default; + Optional additionalColumns = default; string type = default; Optional sourceRetryCount = default; Optional sourceRetryWait = default; @@ -104,12 +99,7 @@ internal static GreenplumSource DeserializeGreenplumSource(JsonElement element) property.ThrowNonNullablePropertyIsNull(); continue; } - List array = new List(); - foreach (var item in property.Value.EnumerateArray()) - { - array.Add(Models.AdditionalColumns.DeserializeAdditionalColumns(item)); - } - additionalColumns = array; + additionalColumns = property.Value.GetObject(); continue; } if (property.NameEquals("type")) @@ -150,7 +140,7 @@ internal static GreenplumSource DeserializeGreenplumSource(JsonElement element) additionalPropertiesDictionary.Add(property.Name, property.Value.GetObject()); } additionalProperties = additionalPropertiesDictionary; - return new GreenplumSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, queryTimeout.Value, Optional.ToList(additionalColumns), query.Value); + return new GreenplumSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, queryTimeout.Value, additionalColumns.Value, query.Value); } internal partial class GreenplumSourceConverter : JsonConverter diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/GreenplumSource.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/GreenplumSource.cs index 2004ae6112b7..effb4587e189 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/GreenplumSource.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/GreenplumSource.cs @@ -25,9 +25,9 @@ public GreenplumSource() /// The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer). /// Additional Properties. /// Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])). - /// Specifies the additional columns to be added to source data. Type: array of objects (or Expression with resultType array of objects). + /// Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects). /// A query to retrieve data from source. Type: string (or Expression with resultType string). - internal GreenplumSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object queryTimeout, IList additionalColumns, object query) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties, queryTimeout, additionalColumns) + internal GreenplumSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object queryTimeout, object additionalColumns, object query) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties, queryTimeout, additionalColumns) { Query = query; Type = type ?? "GreenplumSource"; diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/HBaseSource.Serialization.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/HBaseSource.Serialization.cs index 7068821f96e9..318b5818c880 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/HBaseSource.Serialization.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/HBaseSource.Serialization.cs @@ -29,15 +29,10 @@ void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) writer.WritePropertyName("queryTimeout"); writer.WriteObjectValue(QueryTimeout); } - if (Optional.IsCollectionDefined(AdditionalColumns)) + if (Optional.IsDefined(AdditionalColumns)) { writer.WritePropertyName("additionalColumns"); - writer.WriteStartArray(); - foreach (var item in AdditionalColumns) - { - writer.WriteObjectValue(item); - } - writer.WriteEndArray(); + writer.WriteObjectValue(AdditionalColumns); } writer.WritePropertyName("type"); writer.WriteStringValue(Type); @@ -68,7 +63,7 @@ internal static HBaseSource DeserializeHBaseSource(JsonElement element) { Optional query = default; Optional queryTimeout = default; - Optional> additionalColumns = default; + Optional additionalColumns = default; string type = default; Optional sourceRetryCount = default; Optional sourceRetryWait = default; @@ -104,12 +99,7 @@ internal static HBaseSource DeserializeHBaseSource(JsonElement element) property.ThrowNonNullablePropertyIsNull(); continue; } - List array = new List(); - foreach (var item in property.Value.EnumerateArray()) - { - array.Add(Models.AdditionalColumns.DeserializeAdditionalColumns(item)); - } - additionalColumns = array; + additionalColumns = property.Value.GetObject(); continue; } if (property.NameEquals("type")) @@ -150,7 +140,7 @@ internal static HBaseSource DeserializeHBaseSource(JsonElement element) additionalPropertiesDictionary.Add(property.Name, property.Value.GetObject()); } additionalProperties = additionalPropertiesDictionary; - return new HBaseSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, queryTimeout.Value, Optional.ToList(additionalColumns), query.Value); + return new HBaseSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, queryTimeout.Value, additionalColumns.Value, query.Value); } internal partial class HBaseSourceConverter : JsonConverter diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/HBaseSource.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/HBaseSource.cs index be99971458e6..9778c35e21bc 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/HBaseSource.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/HBaseSource.cs @@ -25,9 +25,9 @@ public HBaseSource() /// The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer). /// Additional Properties. /// Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])). - /// Specifies the additional columns to be added to source data. Type: array of objects (or Expression with resultType array of objects). + /// Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects). /// A query to retrieve data from source. Type: string (or Expression with resultType string). - internal HBaseSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object queryTimeout, IList additionalColumns, object query) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties, queryTimeout, additionalColumns) + internal HBaseSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object queryTimeout, object additionalColumns, object query) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties, queryTimeout, additionalColumns) { Query = query; Type = type ?? "HBaseSource"; diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/HdiNodeTypes.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/HdiNodeTypes.cs index a172a3686385..8bc6fd4607a0 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/HdiNodeTypes.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/HdiNodeTypes.cs @@ -10,8 +10,8 @@ namespace Azure.Analytics.Synapse.Artifacts.Models { - /// The node types on which the script action should be executed. - public readonly partial struct HdiNodeTypes : IEquatable + /// All available HdiNodeTypes values. + internal readonly partial struct HdiNodeTypes : IEquatable { private readonly string _value; diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/HiveSource.Serialization.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/HiveSource.Serialization.cs index 3261a7b729ca..e25b8455afb6 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/HiveSource.Serialization.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/HiveSource.Serialization.cs @@ -29,15 +29,10 @@ void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) writer.WritePropertyName("queryTimeout"); writer.WriteObjectValue(QueryTimeout); } - if (Optional.IsCollectionDefined(AdditionalColumns)) + if (Optional.IsDefined(AdditionalColumns)) { writer.WritePropertyName("additionalColumns"); - writer.WriteStartArray(); - foreach (var item in AdditionalColumns) - { - writer.WriteObjectValue(item); - } - writer.WriteEndArray(); + writer.WriteObjectValue(AdditionalColumns); } writer.WritePropertyName("type"); writer.WriteStringValue(Type); @@ -68,7 +63,7 @@ internal static HiveSource DeserializeHiveSource(JsonElement element) { Optional query = default; Optional queryTimeout = default; - Optional> additionalColumns = default; + Optional additionalColumns = default; string type = default; Optional sourceRetryCount = default; Optional sourceRetryWait = default; @@ -104,12 +99,7 @@ internal static HiveSource DeserializeHiveSource(JsonElement element) property.ThrowNonNullablePropertyIsNull(); continue; } - List array = new List(); - foreach (var item in property.Value.EnumerateArray()) - { - array.Add(Models.AdditionalColumns.DeserializeAdditionalColumns(item)); - } - additionalColumns = array; + additionalColumns = property.Value.GetObject(); continue; } if (property.NameEquals("type")) @@ -150,7 +140,7 @@ internal static HiveSource DeserializeHiveSource(JsonElement element) additionalPropertiesDictionary.Add(property.Name, property.Value.GetObject()); } additionalProperties = additionalPropertiesDictionary; - return new HiveSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, queryTimeout.Value, Optional.ToList(additionalColumns), query.Value); + return new HiveSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, queryTimeout.Value, additionalColumns.Value, query.Value); } internal partial class HiveSourceConverter : JsonConverter diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/HiveSource.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/HiveSource.cs index c599b9d5dd12..2e0a62658a89 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/HiveSource.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/HiveSource.cs @@ -25,9 +25,9 @@ public HiveSource() /// The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer). /// Additional Properties. /// Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])). - /// Specifies the additional columns to be added to source data. Type: array of objects (or Expression with resultType array of objects). + /// Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects). /// A query to retrieve data from source. Type: string (or Expression with resultType string). - internal HiveSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object queryTimeout, IList additionalColumns, object query) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties, queryTimeout, additionalColumns) + internal HiveSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object queryTimeout, object additionalColumns, object query) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties, queryTimeout, additionalColumns) { Query = query; Type = type ?? "HiveSource"; diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/HubspotSource.Serialization.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/HubspotSource.Serialization.cs index cc37c297da94..8893e8549552 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/HubspotSource.Serialization.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/HubspotSource.Serialization.cs @@ -29,15 +29,10 @@ void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) writer.WritePropertyName("queryTimeout"); writer.WriteObjectValue(QueryTimeout); } - if (Optional.IsCollectionDefined(AdditionalColumns)) + if (Optional.IsDefined(AdditionalColumns)) { writer.WritePropertyName("additionalColumns"); - writer.WriteStartArray(); - foreach (var item in AdditionalColumns) - { - writer.WriteObjectValue(item); - } - writer.WriteEndArray(); + writer.WriteObjectValue(AdditionalColumns); } writer.WritePropertyName("type"); writer.WriteStringValue(Type); @@ -68,7 +63,7 @@ internal static HubspotSource DeserializeHubspotSource(JsonElement element) { Optional query = default; Optional queryTimeout = default; - Optional> additionalColumns = default; + Optional additionalColumns = default; string type = default; Optional sourceRetryCount = default; Optional sourceRetryWait = default; @@ -104,12 +99,7 @@ internal static HubspotSource DeserializeHubspotSource(JsonElement element) property.ThrowNonNullablePropertyIsNull(); continue; } - List array = new List(); - foreach (var item in property.Value.EnumerateArray()) - { - array.Add(Models.AdditionalColumns.DeserializeAdditionalColumns(item)); - } - additionalColumns = array; + additionalColumns = property.Value.GetObject(); continue; } if (property.NameEquals("type")) @@ -150,7 +140,7 @@ internal static HubspotSource DeserializeHubspotSource(JsonElement element) additionalPropertiesDictionary.Add(property.Name, property.Value.GetObject()); } additionalProperties = additionalPropertiesDictionary; - return new HubspotSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, queryTimeout.Value, Optional.ToList(additionalColumns), query.Value); + return new HubspotSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, queryTimeout.Value, additionalColumns.Value, query.Value); } internal partial class HubspotSourceConverter : JsonConverter diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/HubspotSource.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/HubspotSource.cs index 2fa4daeaa4e0..ad3e2e95b023 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/HubspotSource.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/HubspotSource.cs @@ -25,9 +25,9 @@ public HubspotSource() /// The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer). /// Additional Properties. /// Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])). - /// Specifies the additional columns to be added to source data. Type: array of objects (or Expression with resultType array of objects). + /// Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects). /// A query to retrieve data from source. Type: string (or Expression with resultType string). - internal HubspotSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object queryTimeout, IList additionalColumns, object query) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties, queryTimeout, additionalColumns) + internal HubspotSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object queryTimeout, object additionalColumns, object query) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties, queryTimeout, additionalColumns) { Query = query; Type = type ?? "HubspotSource"; diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/ImpalaSource.Serialization.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/ImpalaSource.Serialization.cs index 7a827ad8bdf2..9af96cc3a6b3 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/ImpalaSource.Serialization.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/ImpalaSource.Serialization.cs @@ -29,15 +29,10 @@ void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) writer.WritePropertyName("queryTimeout"); writer.WriteObjectValue(QueryTimeout); } - if (Optional.IsCollectionDefined(AdditionalColumns)) + if (Optional.IsDefined(AdditionalColumns)) { writer.WritePropertyName("additionalColumns"); - writer.WriteStartArray(); - foreach (var item in AdditionalColumns) - { - writer.WriteObjectValue(item); - } - writer.WriteEndArray(); + writer.WriteObjectValue(AdditionalColumns); } writer.WritePropertyName("type"); writer.WriteStringValue(Type); @@ -68,7 +63,7 @@ internal static ImpalaSource DeserializeImpalaSource(JsonElement element) { Optional query = default; Optional queryTimeout = default; - Optional> additionalColumns = default; + Optional additionalColumns = default; string type = default; Optional sourceRetryCount = default; Optional sourceRetryWait = default; @@ -104,12 +99,7 @@ internal static ImpalaSource DeserializeImpalaSource(JsonElement element) property.ThrowNonNullablePropertyIsNull(); continue; } - List array = new List(); - foreach (var item in property.Value.EnumerateArray()) - { - array.Add(Models.AdditionalColumns.DeserializeAdditionalColumns(item)); - } - additionalColumns = array; + additionalColumns = property.Value.GetObject(); continue; } if (property.NameEquals("type")) @@ -150,7 +140,7 @@ internal static ImpalaSource DeserializeImpalaSource(JsonElement element) additionalPropertiesDictionary.Add(property.Name, property.Value.GetObject()); } additionalProperties = additionalPropertiesDictionary; - return new ImpalaSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, queryTimeout.Value, Optional.ToList(additionalColumns), query.Value); + return new ImpalaSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, queryTimeout.Value, additionalColumns.Value, query.Value); } internal partial class ImpalaSourceConverter : JsonConverter diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/ImpalaSource.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/ImpalaSource.cs index 8eda9e92f8ee..72ee531284ee 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/ImpalaSource.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/ImpalaSource.cs @@ -25,9 +25,9 @@ public ImpalaSource() /// The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer). /// Additional Properties. /// Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])). - /// Specifies the additional columns to be added to source data. Type: array of objects (or Expression with resultType array of objects). + /// Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects). /// A query to retrieve data from source. Type: string (or Expression with resultType string). - internal ImpalaSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object queryTimeout, IList additionalColumns, object query) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties, queryTimeout, additionalColumns) + internal ImpalaSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object queryTimeout, object additionalColumns, object query) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties, queryTimeout, additionalColumns) { Query = query; Type = type ?? "ImpalaSource"; diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/InformixSource.Serialization.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/InformixSource.Serialization.cs index 7b296ff046df..964b49381b78 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/InformixSource.Serialization.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/InformixSource.Serialization.cs @@ -29,15 +29,10 @@ void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) writer.WritePropertyName("queryTimeout"); writer.WriteObjectValue(QueryTimeout); } - if (Optional.IsCollectionDefined(AdditionalColumns)) + if (Optional.IsDefined(AdditionalColumns)) { writer.WritePropertyName("additionalColumns"); - writer.WriteStartArray(); - foreach (var item in AdditionalColumns) - { - writer.WriteObjectValue(item); - } - writer.WriteEndArray(); + writer.WriteObjectValue(AdditionalColumns); } writer.WritePropertyName("type"); writer.WriteStringValue(Type); @@ -68,7 +63,7 @@ internal static InformixSource DeserializeInformixSource(JsonElement element) { Optional query = default; Optional queryTimeout = default; - Optional> additionalColumns = default; + Optional additionalColumns = default; string type = default; Optional sourceRetryCount = default; Optional sourceRetryWait = default; @@ -104,12 +99,7 @@ internal static InformixSource DeserializeInformixSource(JsonElement element) property.ThrowNonNullablePropertyIsNull(); continue; } - List array = new List(); - foreach (var item in property.Value.EnumerateArray()) - { - array.Add(Models.AdditionalColumns.DeserializeAdditionalColumns(item)); - } - additionalColumns = array; + additionalColumns = property.Value.GetObject(); continue; } if (property.NameEquals("type")) @@ -150,7 +140,7 @@ internal static InformixSource DeserializeInformixSource(JsonElement element) additionalPropertiesDictionary.Add(property.Name, property.Value.GetObject()); } additionalProperties = additionalPropertiesDictionary; - return new InformixSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, queryTimeout.Value, Optional.ToList(additionalColumns), query.Value); + return new InformixSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, queryTimeout.Value, additionalColumns.Value, query.Value); } internal partial class InformixSourceConverter : JsonConverter diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/InformixSource.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/InformixSource.cs index dfb947e67c02..1208314e2383 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/InformixSource.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/InformixSource.cs @@ -25,9 +25,9 @@ public InformixSource() /// The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer). /// Additional Properties. /// Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])). - /// Specifies the additional columns to be added to source data. Type: array of objects (or Expression with resultType array of objects). + /// Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects). /// Database query. Type: string (or Expression with resultType string). - internal InformixSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object queryTimeout, IList additionalColumns, object query) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties, queryTimeout, additionalColumns) + internal InformixSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object queryTimeout, object additionalColumns, object query) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties, queryTimeout, additionalColumns) { Query = query; Type = type ?? "InformixSource"; diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/IntegrationRuntimeDataFlowProperties.Serialization.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/IntegrationRuntimeDataFlowProperties.Serialization.cs index feec531518ef..cac5bd1e2b33 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/IntegrationRuntimeDataFlowProperties.Serialization.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/IntegrationRuntimeDataFlowProperties.Serialization.cs @@ -34,6 +34,11 @@ void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) writer.WritePropertyName("timeToLive"); writer.WriteNumberValue(TimeToLive.Value); } + if (Optional.IsDefined(Cleanup)) + { + writer.WritePropertyName("cleanup"); + writer.WriteBooleanValue(Cleanup.Value); + } foreach (var item in AdditionalProperties) { writer.WritePropertyName(item.Key); @@ -47,6 +52,7 @@ internal static IntegrationRuntimeDataFlowProperties DeserializeIntegrationRunti Optional computeType = default; Optional coreCount = default; Optional timeToLive = default; + Optional cleanup = default; IDictionary additionalProperties = default; Dictionary additionalPropertiesDictionary = new Dictionary(); foreach (var property in element.EnumerateObject()) @@ -81,10 +87,20 @@ internal static IntegrationRuntimeDataFlowProperties DeserializeIntegrationRunti timeToLive = property.Value.GetInt32(); continue; } + if (property.NameEquals("cleanup")) + { + if (property.Value.ValueKind == JsonValueKind.Null) + { + property.ThrowNonNullablePropertyIsNull(); + continue; + } + cleanup = property.Value.GetBoolean(); + continue; + } additionalPropertiesDictionary.Add(property.Name, property.Value.GetObject()); } additionalProperties = additionalPropertiesDictionary; - return new IntegrationRuntimeDataFlowProperties(Optional.ToNullable(computeType), Optional.ToNullable(coreCount), Optional.ToNullable(timeToLive), additionalProperties); + return new IntegrationRuntimeDataFlowProperties(Optional.ToNullable(computeType), Optional.ToNullable(coreCount), Optional.ToNullable(timeToLive), Optional.ToNullable(cleanup), additionalProperties); } internal partial class IntegrationRuntimeDataFlowPropertiesConverter : JsonConverter diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/IntegrationRuntimeDataFlowProperties.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/IntegrationRuntimeDataFlowProperties.cs index bdb85202afe7..99ba4f0660d0 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/IntegrationRuntimeDataFlowProperties.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/IntegrationRuntimeDataFlowProperties.cs @@ -23,12 +23,14 @@ public IntegrationRuntimeDataFlowProperties() /// Compute type of the cluster which will execute data flow job. /// Core count of the cluster which will execute data flow job. Supported values are: 8, 16, 32, 48, 80, 144 and 272. /// Time to live (in minutes) setting of the cluster which will execute data flow job. + /// Cluster will not be recycled and it will be used in next data flow activity run until TTL (time to live) is reached if this is set as false. Default is true. /// Additional Properties. - internal IntegrationRuntimeDataFlowProperties(DataFlowComputeType? computeType, int? coreCount, int? timeToLive, IDictionary additionalProperties) + internal IntegrationRuntimeDataFlowProperties(DataFlowComputeType? computeType, int? coreCount, int? timeToLive, bool? cleanup, IDictionary additionalProperties) { ComputeType = computeType; CoreCount = coreCount; TimeToLive = timeToLive; + Cleanup = cleanup; AdditionalProperties = additionalProperties; } @@ -38,6 +40,8 @@ internal IntegrationRuntimeDataFlowProperties(DataFlowComputeType? computeType, public int? CoreCount { get; set; } /// Time to live (in minutes) setting of the cluster which will execute data flow job. public int? TimeToLive { get; set; } + /// Cluster will not be recycled and it will be used in next data flow activity run until TTL (time to live) is reached if this is set as false. Default is true. + public bool? Cleanup { get; set; } /// Additional Properties. public IDictionary AdditionalProperties { get; } } diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/IntegrationRuntimeDebugResource.Serialization.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/IntegrationRuntimeDebugResource.Serialization.cs new file mode 100644 index 000000000000..f964d6cb689b --- /dev/null +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/IntegrationRuntimeDebugResource.Serialization.cs @@ -0,0 +1,64 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System; +using System.Text.Json; +using System.Text.Json.Serialization; +using Azure.Core; + +namespace Azure.Analytics.Synapse.Artifacts.Models +{ + [JsonConverter(typeof(IntegrationRuntimeDebugResourceConverter))] + public partial class IntegrationRuntimeDebugResource : IUtf8JsonSerializable + { + void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) + { + writer.WriteStartObject(); + writer.WritePropertyName("properties"); + writer.WriteObjectValue(Properties); + if (Optional.IsDefined(Name)) + { + writer.WritePropertyName("name"); + writer.WriteStringValue(Name); + } + writer.WriteEndObject(); + } + + internal static IntegrationRuntimeDebugResource DeserializeIntegrationRuntimeDebugResource(JsonElement element) + { + IntegrationRuntime properties = default; + Optional name = default; + foreach (var property in element.EnumerateObject()) + { + if (property.NameEquals("properties")) + { + properties = IntegrationRuntime.DeserializeIntegrationRuntime(property.Value); + continue; + } + if (property.NameEquals("name")) + { + name = property.Value.GetString(); + continue; + } + } + return new IntegrationRuntimeDebugResource(name.Value, properties); + } + + internal partial class IntegrationRuntimeDebugResourceConverter : JsonConverter + { + public override void Write(Utf8JsonWriter writer, IntegrationRuntimeDebugResource model, JsonSerializerOptions options) + { + writer.WriteObjectValue(model); + } + public override IntegrationRuntimeDebugResource Read(ref Utf8JsonReader reader, Type typeToConvert, JsonSerializerOptions options) + { + using var document = JsonDocument.ParseValue(ref reader); + return DeserializeIntegrationRuntimeDebugResource(document.RootElement); + } + } + } +} diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/IntegrationRuntimeDebugResource.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/IntegrationRuntimeDebugResource.cs new file mode 100644 index 000000000000..b0ee15675efb --- /dev/null +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/IntegrationRuntimeDebugResource.cs @@ -0,0 +1,39 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System; + +namespace Azure.Analytics.Synapse.Artifacts.Models +{ + /// Integration runtime debug resource. + public partial class IntegrationRuntimeDebugResource : SubResourceDebugResource + { + /// Initializes a new instance of IntegrationRuntimeDebugResource. + /// Integration runtime properties. + /// is null. + public IntegrationRuntimeDebugResource(IntegrationRuntime properties) + { + if (properties == null) + { + throw new ArgumentNullException(nameof(properties)); + } + + Properties = properties; + } + + /// Initializes a new instance of IntegrationRuntimeDebugResource. + /// The resource name. + /// Integration runtime properties. + internal IntegrationRuntimeDebugResource(string name, IntegrationRuntime properties) : base(name) + { + Properties = properties; + } + + /// Integration runtime properties. + public IntegrationRuntime Properties { get; set; } + } +} diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/JiraSource.Serialization.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/JiraSource.Serialization.cs index 5665e8f96762..d5644162496d 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/JiraSource.Serialization.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/JiraSource.Serialization.cs @@ -29,15 +29,10 @@ void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) writer.WritePropertyName("queryTimeout"); writer.WriteObjectValue(QueryTimeout); } - if (Optional.IsCollectionDefined(AdditionalColumns)) + if (Optional.IsDefined(AdditionalColumns)) { writer.WritePropertyName("additionalColumns"); - writer.WriteStartArray(); - foreach (var item in AdditionalColumns) - { - writer.WriteObjectValue(item); - } - writer.WriteEndArray(); + writer.WriteObjectValue(AdditionalColumns); } writer.WritePropertyName("type"); writer.WriteStringValue(Type); @@ -68,7 +63,7 @@ internal static JiraSource DeserializeJiraSource(JsonElement element) { Optional query = default; Optional queryTimeout = default; - Optional> additionalColumns = default; + Optional additionalColumns = default; string type = default; Optional sourceRetryCount = default; Optional sourceRetryWait = default; @@ -104,12 +99,7 @@ internal static JiraSource DeserializeJiraSource(JsonElement element) property.ThrowNonNullablePropertyIsNull(); continue; } - List array = new List(); - foreach (var item in property.Value.EnumerateArray()) - { - array.Add(Models.AdditionalColumns.DeserializeAdditionalColumns(item)); - } - additionalColumns = array; + additionalColumns = property.Value.GetObject(); continue; } if (property.NameEquals("type")) @@ -150,7 +140,7 @@ internal static JiraSource DeserializeJiraSource(JsonElement element) additionalPropertiesDictionary.Add(property.Name, property.Value.GetObject()); } additionalProperties = additionalPropertiesDictionary; - return new JiraSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, queryTimeout.Value, Optional.ToList(additionalColumns), query.Value); + return new JiraSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, queryTimeout.Value, additionalColumns.Value, query.Value); } internal partial class JiraSourceConverter : JsonConverter diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/JiraSource.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/JiraSource.cs index 02752b37c25f..c083fb778d1a 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/JiraSource.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/JiraSource.cs @@ -25,9 +25,9 @@ public JiraSource() /// The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer). /// Additional Properties. /// Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])). - /// Specifies the additional columns to be added to source data. Type: array of objects (or Expression with resultType array of objects). + /// Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects). /// A query to retrieve data from source. Type: string (or Expression with resultType string). - internal JiraSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object queryTimeout, IList additionalColumns, object query) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties, queryTimeout, additionalColumns) + internal JiraSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object queryTimeout, object additionalColumns, object query) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties, queryTimeout, additionalColumns) { Query = query; Type = type ?? "JiraSource"; diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/JsonFormat.Serialization.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/JsonFormat.Serialization.cs index 89dee8392251..a099140b5c3c 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/JsonFormat.Serialization.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/JsonFormat.Serialization.cs @@ -22,7 +22,7 @@ void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) if (Optional.IsDefined(FilePattern)) { writer.WritePropertyName("filePattern"); - writer.WriteStringValue(FilePattern.Value.ToString()); + writer.WriteObjectValue(FilePattern); } if (Optional.IsDefined(NestingSeparator)) { @@ -66,7 +66,7 @@ void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) internal static JsonFormat DeserializeJsonFormat(JsonElement element) { - Optional filePattern = default; + Optional filePattern = default; Optional nestingSeparator = default; Optional encodingName = default; Optional jsonNodeReference = default; @@ -85,7 +85,7 @@ internal static JsonFormat DeserializeJsonFormat(JsonElement element) property.ThrowNonNullablePropertyIsNull(); continue; } - filePattern = new JsonFormatFilePattern(property.Value.GetString()); + filePattern = property.Value.GetObject(); continue; } if (property.NameEquals("nestingSeparator")) @@ -156,7 +156,7 @@ internal static JsonFormat DeserializeJsonFormat(JsonElement element) additionalPropertiesDictionary.Add(property.Name, property.Value.GetObject()); } additionalProperties = additionalPropertiesDictionary; - return new JsonFormat(type, serializer.Value, deserializer.Value, additionalProperties, Optional.ToNullable(filePattern), nestingSeparator.Value, encodingName.Value, jsonNodeReference.Value, jsonPathDefinition.Value); + return new JsonFormat(type, serializer.Value, deserializer.Value, additionalProperties, filePattern.Value, nestingSeparator.Value, encodingName.Value, jsonNodeReference.Value, jsonPathDefinition.Value); } internal partial class JsonFormatConverter : JsonConverter diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/JsonFormat.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/JsonFormat.cs index e8447265b274..5d2dc32a4aa9 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/JsonFormat.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/JsonFormat.cs @@ -28,7 +28,7 @@ public JsonFormat() /// The code page name of the preferred encoding. If not provided, the default value is 'utf-8', unless the byte order mark (BOM) denotes another Unicode encoding. The full list of supported values can be found in the 'Name' column of the table of encodings in the following reference: https://go.microsoft.com/fwlink/?linkid=861078. Type: string (or Expression with resultType string). /// The JSONPath of the JSON array element to be flattened. Example: "$.ArrayPath". Type: string (or Expression with resultType string). /// The JSONPath definition for each column mapping with a customized column name to extract data from JSON file. For fields under root object, start with "$"; for fields inside the array chosen by jsonNodeReference property, start from the array element. Example: {"Column1": "$.Column1Path", "Column2": "Column2PathInArray"}. Type: object (or Expression with resultType object). - internal JsonFormat(string type, object serializer, object deserializer, IDictionary additionalProperties, JsonFormatFilePattern? filePattern, object nestingSeparator, object encodingName, object jsonNodeReference, object jsonPathDefinition) : base(type, serializer, deserializer, additionalProperties) + internal JsonFormat(string type, object serializer, object deserializer, IDictionary additionalProperties, object filePattern, object nestingSeparator, object encodingName, object jsonNodeReference, object jsonPathDefinition) : base(type, serializer, deserializer, additionalProperties) { FilePattern = filePattern; NestingSeparator = nestingSeparator; @@ -39,7 +39,7 @@ internal JsonFormat(string type, object serializer, object deserializer, IDictio } /// File pattern of JSON. To be more specific, the way of separating a collection of JSON objects. The default value is 'setOfObjects'. It is case-sensitive. - public JsonFormatFilePattern? FilePattern { get; set; } + public object FilePattern { get; set; } /// The character used to separate nesting levels. Default value is '.' (dot). Type: string (or Expression with resultType string). public object NestingSeparator { get; set; } /// The code page name of the preferred encoding. If not provided, the default value is 'utf-8', unless the byte order mark (BOM) denotes another Unicode encoding. The full list of supported values can be found in the 'Name' column of the table of encodings in the following reference: https://go.microsoft.com/fwlink/?linkid=861078. Type: string (or Expression with resultType string). diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/JsonFormatFilePattern.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/JsonFormatFilePattern.cs index 8f82effb0373..5f9132caf686 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/JsonFormatFilePattern.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/JsonFormatFilePattern.cs @@ -11,7 +11,7 @@ namespace Azure.Analytics.Synapse.Artifacts.Models { /// JSON format file pattern. A property of JsonFormat. - public readonly partial struct JsonFormatFilePattern : IEquatable + internal readonly partial struct JsonFormatFilePattern : IEquatable { private readonly string _value; diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/JsonSource.Serialization.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/JsonSource.Serialization.cs index 1432fe51448d..88904ceda961 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/JsonSource.Serialization.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/JsonSource.Serialization.cs @@ -29,15 +29,10 @@ void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) writer.WritePropertyName("formatSettings"); writer.WriteObjectValue(FormatSettings); } - if (Optional.IsCollectionDefined(AdditionalColumns)) + if (Optional.IsDefined(AdditionalColumns)) { writer.WritePropertyName("additionalColumns"); - writer.WriteStartArray(); - foreach (var item in AdditionalColumns) - { - writer.WriteObjectValue(item); - } - writer.WriteEndArray(); + writer.WriteObjectValue(AdditionalColumns); } writer.WritePropertyName("type"); writer.WriteStringValue(Type); @@ -68,7 +63,7 @@ internal static JsonSource DeserializeJsonSource(JsonElement element) { Optional storeSettings = default; Optional formatSettings = default; - Optional> additionalColumns = default; + Optional additionalColumns = default; string type = default; Optional sourceRetryCount = default; Optional sourceRetryWait = default; @@ -104,12 +99,7 @@ internal static JsonSource DeserializeJsonSource(JsonElement element) property.ThrowNonNullablePropertyIsNull(); continue; } - List array = new List(); - foreach (var item in property.Value.EnumerateArray()) - { - array.Add(Models.AdditionalColumns.DeserializeAdditionalColumns(item)); - } - additionalColumns = array; + additionalColumns = property.Value.GetObject(); continue; } if (property.NameEquals("type")) @@ -150,7 +140,7 @@ internal static JsonSource DeserializeJsonSource(JsonElement element) additionalPropertiesDictionary.Add(property.Name, property.Value.GetObject()); } additionalProperties = additionalPropertiesDictionary; - return new JsonSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, storeSettings.Value, formatSettings.Value, Optional.ToList(additionalColumns)); + return new JsonSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, storeSettings.Value, formatSettings.Value, additionalColumns.Value); } internal partial class JsonSourceConverter : JsonConverter diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/JsonSource.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/JsonSource.cs index dd6ab8d33b12..e723a5990460 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/JsonSource.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/JsonSource.cs @@ -6,7 +6,6 @@ #nullable disable using System.Collections.Generic; -using Azure.Core; namespace Azure.Analytics.Synapse.Artifacts.Models { @@ -16,7 +15,6 @@ public partial class JsonSource : CopySource /// Initializes a new instance of JsonSource. public JsonSource() { - AdditionalColumns = new ChangeTrackingList(); Type = "JsonSource"; } @@ -28,8 +26,8 @@ public JsonSource() /// Additional Properties. /// Json store settings. /// Json format settings. - /// Specifies the additional columns to be added to source data. Type: array of objects (or Expression with resultType array of objects). - internal JsonSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, StoreReadSettings storeSettings, JsonReadSettings formatSettings, IList additionalColumns) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties) + /// Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects). + internal JsonSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, StoreReadSettings storeSettings, JsonReadSettings formatSettings, object additionalColumns) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties) { StoreSettings = storeSettings; FormatSettings = formatSettings; @@ -41,7 +39,7 @@ internal JsonSource(string type, object sourceRetryCount, object sourceRetryWait public StoreReadSettings StoreSettings { get; set; } /// Json format settings. public JsonReadSettings FormatSettings { get; set; } - /// Specifies the additional columns to be added to source data. Type: array of objects (or Expression with resultType array of objects). - public IList AdditionalColumns { get; } + /// Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects). + public object AdditionalColumns { get; set; } } } diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/JsonWriteFilePattern.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/JsonWriteFilePattern.cs index 9e54709f7d90..a946787d310a 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/JsonWriteFilePattern.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/JsonWriteFilePattern.cs @@ -10,8 +10,8 @@ namespace Azure.Analytics.Synapse.Artifacts.Models { - /// File pattern of JSON. This setting controls the way a collection of JSON objects will be treated. The default value is 'setOfObjects'. It is case-sensitive. - public readonly partial struct JsonWriteFilePattern : IEquatable + /// All available filePatterns. + internal readonly partial struct JsonWriteFilePattern : IEquatable { private readonly string _value; diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/JsonWriteSettings.Serialization.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/JsonWriteSettings.Serialization.cs index 975a474265ec..7d7dd53f4cfd 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/JsonWriteSettings.Serialization.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/JsonWriteSettings.Serialization.cs @@ -22,7 +22,7 @@ void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) if (Optional.IsDefined(FilePattern)) { writer.WritePropertyName("filePattern"); - writer.WriteStringValue(FilePattern.Value.ToString()); + writer.WriteObjectValue(FilePattern); } writer.WritePropertyName("type"); writer.WriteStringValue(Type); @@ -36,7 +36,7 @@ void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) internal static JsonWriteSettings DeserializeJsonWriteSettings(JsonElement element) { - Optional filePattern = default; + Optional filePattern = default; string type = default; IDictionary additionalProperties = default; Dictionary additionalPropertiesDictionary = new Dictionary(); @@ -49,7 +49,7 @@ internal static JsonWriteSettings DeserializeJsonWriteSettings(JsonElement eleme property.ThrowNonNullablePropertyIsNull(); continue; } - filePattern = new JsonWriteFilePattern(property.Value.GetString()); + filePattern = property.Value.GetObject(); continue; } if (property.NameEquals("type")) @@ -60,7 +60,7 @@ internal static JsonWriteSettings DeserializeJsonWriteSettings(JsonElement eleme additionalPropertiesDictionary.Add(property.Name, property.Value.GetObject()); } additionalProperties = additionalPropertiesDictionary; - return new JsonWriteSettings(type, additionalProperties, Optional.ToNullable(filePattern)); + return new JsonWriteSettings(type, additionalProperties, filePattern.Value); } internal partial class JsonWriteSettingsConverter : JsonConverter diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/JsonWriteSettings.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/JsonWriteSettings.cs index 52d1849188fe..74253fa29bca 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/JsonWriteSettings.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/JsonWriteSettings.cs @@ -22,13 +22,13 @@ public JsonWriteSettings() /// The write setting type. /// Additional Properties. /// File pattern of JSON. This setting controls the way a collection of JSON objects will be treated. The default value is 'setOfObjects'. It is case-sensitive. - internal JsonWriteSettings(string type, IDictionary additionalProperties, JsonWriteFilePattern? filePattern) : base(type, additionalProperties) + internal JsonWriteSettings(string type, IDictionary additionalProperties, object filePattern) : base(type, additionalProperties) { FilePattern = filePattern; Type = type ?? "JsonWriteSettings"; } /// File pattern of JSON. This setting controls the way a collection of JSON objects will be treated. The default value is 'setOfObjects'. It is case-sensitive. - public JsonWriteFilePattern? FilePattern { get; set; } + public object FilePattern { get; set; } } } diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/KqlScript.Serialization.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/KqlScript.Serialization.cs new file mode 100644 index 000000000000..1282ee1f004a --- /dev/null +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/KqlScript.Serialization.cs @@ -0,0 +1,61 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System; +using System.Text.Json; +using System.Text.Json.Serialization; +using Azure.Core; + +namespace Azure.Analytics.Synapse.Artifacts.Models +{ + [JsonConverter(typeof(KqlScriptConverter))] + public partial class KqlScript : IUtf8JsonSerializable + { + void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) + { + writer.WriteStartObject(); + if (Optional.IsDefined(Content)) + { + writer.WritePropertyName("content"); + writer.WriteObjectValue(Content); + } + writer.WriteEndObject(); + } + + internal static KqlScript DeserializeKqlScript(JsonElement element) + { + Optional content = default; + foreach (var property in element.EnumerateObject()) + { + if (property.NameEquals("content")) + { + if (property.Value.ValueKind == JsonValueKind.Null) + { + property.ThrowNonNullablePropertyIsNull(); + continue; + } + content = KqlScriptContent.DeserializeKqlScriptContent(property.Value); + continue; + } + } + return new KqlScript(content.Value); + } + + internal partial class KqlScriptConverter : JsonConverter + { + public override void Write(Utf8JsonWriter writer, KqlScript model, JsonSerializerOptions options) + { + writer.WriteObjectValue(model); + } + public override KqlScript Read(ref Utf8JsonReader reader, Type typeToConvert, JsonSerializerOptions options) + { + using var document = JsonDocument.ParseValue(ref reader); + return DeserializeKqlScript(document.RootElement); + } + } + } +} diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/KqlScript.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/KqlScript.cs new file mode 100644 index 000000000000..fb088cc0e6d9 --- /dev/null +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/KqlScript.cs @@ -0,0 +1,28 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +namespace Azure.Analytics.Synapse.Artifacts.Models +{ + /// The KqlScript. + public partial class KqlScript + { + /// Initializes a new instance of KqlScript. + public KqlScript() + { + } + + /// Initializes a new instance of KqlScript. + /// + internal KqlScript(KqlScriptContent content) + { + Content = content; + } + + /// Gets or sets the content. + public KqlScriptContent Content { get; set; } + } +} diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/KqlScriptContent.Serialization.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/KqlScriptContent.Serialization.cs new file mode 100644 index 000000000000..cbe67775a690 --- /dev/null +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/KqlScriptContent.Serialization.cs @@ -0,0 +1,72 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System.Text.Json; +using Azure.Core; + +namespace Azure.Analytics.Synapse.Artifacts.Models +{ + public partial class KqlScriptContent : IUtf8JsonSerializable + { + void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) + { + writer.WriteStartObject(); + if (Optional.IsDefined(Query)) + { + writer.WritePropertyName("query"); + writer.WriteStringValue(Query); + } + if (Optional.IsDefined(Metadata)) + { + writer.WritePropertyName("metadata"); + writer.WriteObjectValue(Metadata); + } + if (Optional.IsDefined(CurrentConnection)) + { + writer.WritePropertyName("currentConnection"); + writer.WriteObjectValue(CurrentConnection); + } + writer.WriteEndObject(); + } + + internal static KqlScriptContent DeserializeKqlScriptContent(JsonElement element) + { + Optional query = default; + Optional metadata = default; + Optional currentConnection = default; + foreach (var property in element.EnumerateObject()) + { + if (property.NameEquals("query")) + { + query = property.Value.GetString(); + continue; + } + if (property.NameEquals("metadata")) + { + if (property.Value.ValueKind == JsonValueKind.Null) + { + property.ThrowNonNullablePropertyIsNull(); + continue; + } + metadata = KqlScriptContentMetadata.DeserializeKqlScriptContentMetadata(property.Value); + continue; + } + if (property.NameEquals("currentConnection")) + { + if (property.Value.ValueKind == JsonValueKind.Null) + { + property.ThrowNonNullablePropertyIsNull(); + continue; + } + currentConnection = KqlScriptContentCurrentConnection.DeserializeKqlScriptContentCurrentConnection(property.Value); + continue; + } + } + return new KqlScriptContent(query.Value, metadata.Value, currentConnection.Value); + } + } +} diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/KqlScriptContent.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/KqlScriptContent.cs new file mode 100644 index 000000000000..5a82d309f349 --- /dev/null +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/KqlScriptContent.cs @@ -0,0 +1,36 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +namespace Azure.Analytics.Synapse.Artifacts.Models +{ + /// The KqlScriptContent. + public partial class KqlScriptContent + { + /// Initializes a new instance of KqlScriptContent. + public KqlScriptContent() + { + } + + /// Initializes a new instance of KqlScriptContent. + /// + /// + /// + internal KqlScriptContent(string query, KqlScriptContentMetadata metadata, KqlScriptContentCurrentConnection currentConnection) + { + Query = query; + Metadata = metadata; + CurrentConnection = currentConnection; + } + + /// Gets or sets the query. + public string Query { get; set; } + /// Gets or sets the metadata. + public KqlScriptContentMetadata Metadata { get; set; } + /// Gets or sets the current connection. + public KqlScriptContentCurrentConnection CurrentConnection { get; set; } + } +} diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/KqlScriptContentCurrentConnection.Serialization.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/KqlScriptContentCurrentConnection.Serialization.cs new file mode 100644 index 000000000000..51b7f27cccd9 --- /dev/null +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/KqlScriptContentCurrentConnection.Serialization.cs @@ -0,0 +1,51 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System.Text.Json; +using Azure.Core; + +namespace Azure.Analytics.Synapse.Artifacts.Models +{ + public partial class KqlScriptContentCurrentConnection : IUtf8JsonSerializable + { + void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) + { + writer.WriteStartObject(); + if (Optional.IsDefined(Name)) + { + writer.WritePropertyName("name"); + writer.WriteStringValue(Name); + } + if (Optional.IsDefined(Type)) + { + writer.WritePropertyName("type"); + writer.WriteStringValue(Type); + } + writer.WriteEndObject(); + } + + internal static KqlScriptContentCurrentConnection DeserializeKqlScriptContentCurrentConnection(JsonElement element) + { + Optional name = default; + Optional type = default; + foreach (var property in element.EnumerateObject()) + { + if (property.NameEquals("name")) + { + name = property.Value.GetString(); + continue; + } + if (property.NameEquals("type")) + { + type = property.Value.GetString(); + continue; + } + } + return new KqlScriptContentCurrentConnection(name.Value, type.Value); + } + } +} diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/KqlScriptContentCurrentConnection.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/KqlScriptContentCurrentConnection.cs new file mode 100644 index 000000000000..e912a11faaaf --- /dev/null +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/KqlScriptContentCurrentConnection.cs @@ -0,0 +1,32 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +namespace Azure.Analytics.Synapse.Artifacts.Models +{ + /// The KqlScriptContentCurrentConnection. + public partial class KqlScriptContentCurrentConnection + { + /// Initializes a new instance of KqlScriptContentCurrentConnection. + public KqlScriptContentCurrentConnection() + { + } + + /// Initializes a new instance of KqlScriptContentCurrentConnection. + /// + /// + internal KqlScriptContentCurrentConnection(string name, string type) + { + Name = name; + Type = type; + } + + /// Gets or sets the name. + public string Name { get; set; } + /// Gets or sets the type. + public string Type { get; set; } + } +} diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/KqlScriptContentMetadata.Serialization.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/KqlScriptContentMetadata.Serialization.cs new file mode 100644 index 000000000000..3f0064de91c0 --- /dev/null +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/KqlScriptContentMetadata.Serialization.cs @@ -0,0 +1,40 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System.Text.Json; +using Azure.Core; + +namespace Azure.Analytics.Synapse.Artifacts.Models +{ + public partial class KqlScriptContentMetadata : IUtf8JsonSerializable + { + void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) + { + writer.WriteStartObject(); + if (Optional.IsDefined(Language)) + { + writer.WritePropertyName("language"); + writer.WriteStringValue(Language); + } + writer.WriteEndObject(); + } + + internal static KqlScriptContentMetadata DeserializeKqlScriptContentMetadata(JsonElement element) + { + Optional language = default; + foreach (var property in element.EnumerateObject()) + { + if (property.NameEquals("language")) + { + language = property.Value.GetString(); + continue; + } + } + return new KqlScriptContentMetadata(language.Value); + } + } +} diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/KqlScriptContentMetadata.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/KqlScriptContentMetadata.cs new file mode 100644 index 000000000000..ff29f61f6f77 --- /dev/null +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/KqlScriptContentMetadata.cs @@ -0,0 +1,28 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +namespace Azure.Analytics.Synapse.Artifacts.Models +{ + /// The KqlScriptContentMetadata. + public partial class KqlScriptContentMetadata + { + /// Initializes a new instance of KqlScriptContentMetadata. + public KqlScriptContentMetadata() + { + } + + /// Initializes a new instance of KqlScriptContentMetadata. + /// + internal KqlScriptContentMetadata(string language) + { + Language = language; + } + + /// Gets or sets the language. + public string Language { get; set; } + } +} diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/KqlScriptResource.Serialization.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/KqlScriptResource.Serialization.cs new file mode 100644 index 000000000000..a068ced3d8a5 --- /dev/null +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/KqlScriptResource.Serialization.cs @@ -0,0 +1,94 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System; +using System.Text.Json; +using System.Text.Json.Serialization; +using Azure.Core; + +namespace Azure.Analytics.Synapse.Artifacts.Models +{ + [JsonConverter(typeof(KqlScriptResourceConverter))] + public partial class KqlScriptResource : IUtf8JsonSerializable + { + void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) + { + writer.WriteStartObject(); + if (Optional.IsDefined(Id)) + { + writer.WritePropertyName("id"); + writer.WriteStringValue(Id); + } + if (Optional.IsDefined(Name)) + { + writer.WritePropertyName("name"); + writer.WriteStringValue(Name); + } + if (Optional.IsDefined(Type)) + { + writer.WritePropertyName("type"); + writer.WriteStringValue(Type); + } + if (Optional.IsDefined(Properties)) + { + writer.WritePropertyName("properties"); + writer.WriteObjectValue(Properties); + } + writer.WriteEndObject(); + } + + internal static KqlScriptResource DeserializeKqlScriptResource(JsonElement element) + { + Optional id = default; + Optional name = default; + Optional type = default; + Optional properties = default; + foreach (var property in element.EnumerateObject()) + { + if (property.NameEquals("id")) + { + id = property.Value.GetString(); + continue; + } + if (property.NameEquals("name")) + { + name = property.Value.GetString(); + continue; + } + if (property.NameEquals("type")) + { + type = property.Value.GetString(); + continue; + } + if (property.NameEquals("properties")) + { + if (property.Value.ValueKind == JsonValueKind.Null) + { + property.ThrowNonNullablePropertyIsNull(); + continue; + } + properties = KqlScript.DeserializeKqlScript(property.Value); + continue; + } + } + return new KqlScriptResource(id.Value, name.Value, type.Value, properties.Value); + } + + internal partial class KqlScriptResourceConverter : JsonConverter + { + public override void Write(Utf8JsonWriter writer, KqlScriptResource model, JsonSerializerOptions options) + { + writer.WriteObjectValue(model); + } + public override KqlScriptResource Read(ref Utf8JsonReader reader, Type typeToConvert, JsonSerializerOptions options) + { + using var document = JsonDocument.ParseValue(ref reader); + return DeserializeKqlScriptResource(document.RootElement); + } + } + } +} diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/KqlScriptResource.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/KqlScriptResource.cs new file mode 100644 index 000000000000..9c39e92578ea --- /dev/null +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/KqlScriptResource.cs @@ -0,0 +1,40 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +namespace Azure.Analytics.Synapse.Artifacts.Models +{ + /// The KqlScriptResource. + public partial class KqlScriptResource + { + /// Initializes a new instance of KqlScriptResource. + public KqlScriptResource() + { + } + + /// Initializes a new instance of KqlScriptResource. + /// + /// + /// + /// Properties of sql script. + internal KqlScriptResource(string id, string name, string type, KqlScript properties) + { + Id = id; + Name = name; + Type = type; + Properties = properties; + } + + /// Gets or sets the id. + public string Id { get; set; } + /// Gets or sets the name. + public string Name { get; set; } + /// Gets or sets the type. + public string Type { get; set; } + /// Properties of sql script. + public KqlScript Properties { get; set; } + } +} diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/KqlScriptsResourceCollectionResponse.Serialization.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/KqlScriptsResourceCollectionResponse.Serialization.cs new file mode 100644 index 000000000000..2b790460647b --- /dev/null +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/KqlScriptsResourceCollectionResponse.Serialization.cs @@ -0,0 +1,62 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System; +using System.Collections.Generic; +using System.Text.Json; +using System.Text.Json.Serialization; +using Azure.Core; + +namespace Azure.Analytics.Synapse.Artifacts.Models +{ + [JsonConverter(typeof(KqlScriptsResourceCollectionResponseConverter))] + internal partial class KqlScriptsResourceCollectionResponse + { + internal static KqlScriptsResourceCollectionResponse DeserializeKqlScriptsResourceCollectionResponse(JsonElement element) + { + Optional> value = default; + Optional nextLink = default; + foreach (var property in element.EnumerateObject()) + { + if (property.NameEquals("value")) + { + if (property.Value.ValueKind == JsonValueKind.Null) + { + property.ThrowNonNullablePropertyIsNull(); + continue; + } + List array = new List(); + foreach (var item in property.Value.EnumerateArray()) + { + array.Add(KqlScriptResource.DeserializeKqlScriptResource(item)); + } + value = array; + continue; + } + if (property.NameEquals("nextLink")) + { + nextLink = property.Value.GetString(); + continue; + } + } + return new KqlScriptsResourceCollectionResponse(Optional.ToList(value), nextLink.Value); + } + + internal partial class KqlScriptsResourceCollectionResponseConverter : JsonConverter + { + public override void Write(Utf8JsonWriter writer, KqlScriptsResourceCollectionResponse model, JsonSerializerOptions options) + { + throw new NotImplementedException(); + } + public override KqlScriptsResourceCollectionResponse Read(ref Utf8JsonReader reader, Type typeToConvert, JsonSerializerOptions options) + { + using var document = JsonDocument.ParseValue(ref reader); + return DeserializeKqlScriptsResourceCollectionResponse(document.RootElement); + } + } + } +} diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/KqlScriptsResourceCollectionResponse.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/KqlScriptsResourceCollectionResponse.cs new file mode 100644 index 000000000000..d1f6a277130a --- /dev/null +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/KqlScriptsResourceCollectionResponse.cs @@ -0,0 +1,36 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System.Collections.Generic; +using Azure.Core; + +namespace Azure.Analytics.Synapse.Artifacts.Models +{ + /// The KqlScriptsResourceCollectionResponse. + internal partial class KqlScriptsResourceCollectionResponse + { + /// Initializes a new instance of KqlScriptsResourceCollectionResponse. + internal KqlScriptsResourceCollectionResponse() + { + Value = new ChangeTrackingList(); + } + + /// Initializes a new instance of KqlScriptsResourceCollectionResponse. + /// + /// + internal KqlScriptsResourceCollectionResponse(IReadOnlyList value, string nextLink) + { + Value = value; + NextLink = nextLink; + } + + /// Gets the value. + public IReadOnlyList Value { get; } + /// Gets the next link. + public string NextLink { get; } + } +} diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/LibraryInfo.Serialization.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/LibraryInfo.Serialization.cs index 6ae088923d3e..2c92f53517bf 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/LibraryInfo.Serialization.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/LibraryInfo.Serialization.cs @@ -33,6 +33,11 @@ void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) writer.WritePropertyName("containerName"); writer.WriteStringValue(ContainerName); } + if (Optional.IsDefined(UploadedTimestamp)) + { + writer.WritePropertyName("uploadedTimestamp"); + writer.WriteStringValue(UploadedTimestamp.Value, "O"); + } if (Optional.IsDefined(Type)) { writer.WritePropertyName("type"); diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/LibraryInfo.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/LibraryInfo.cs index c8fd6fce1f39..cb97a7f6c822 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/LibraryInfo.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/LibraryInfo.cs @@ -43,7 +43,7 @@ internal LibraryInfo(string name, string path, string containerName, DateTimeOff /// Storage blob container name. public string ContainerName { get; set; } /// The last update time of the library. - public DateTimeOffset? UploadedTimestamp { get; } + public DateTimeOffset? UploadedTimestamp { get; set; } /// Type of the library. public string Type { get; set; } /// Provisioning status of the library/package. diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/LinkedService.Serialization.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/LinkedService.Serialization.cs index 2f5ae1aac912..3b1e57a8ba31 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/LinkedService.Serialization.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/LinkedService.Serialization.cs @@ -67,6 +67,8 @@ internal static LinkedService DeserializeLinkedService(JsonElement element) switch (discriminator.GetString()) { case "AmazonMWS": return AmazonMWSLinkedService.DeserializeAmazonMWSLinkedService(element); + case "AmazonRdsForOracle": return AmazonRdsForOracleLinkedService.DeserializeAmazonRdsForOracleLinkedService(element); + case "AmazonRdsForSqlServer": return AmazonRdsForSqlServerLinkedService.DeserializeAmazonRdsForSqlServerLinkedService(element); case "AmazonRedshift": return AmazonRedshiftLinkedService.DeserializeAmazonRedshiftLinkedService(element); case "AmazonS3": return AmazonS3LinkedService.DeserializeAmazonS3LinkedService(element); case "AzureBatch": return AzureBatchLinkedService.DeserializeAzureBatchLinkedService(element); diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/LivyStates.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/LivyStates.cs new file mode 100644 index 000000000000..c0be980dc109 --- /dev/null +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/LivyStates.cs @@ -0,0 +1,78 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System; +using System.ComponentModel; + +namespace Azure.Analytics.Synapse.Artifacts.Models +{ + /// The batch state. + public readonly partial struct LivyStates : IEquatable + { + private readonly string _value; + + /// Initializes a new instance of . + /// is null. + public LivyStates(string value) + { + _value = value ?? throw new ArgumentNullException(nameof(value)); + } + + private const string NotStartedValue = "not_started"; + private const string StartingValue = "starting"; + private const string IdleValue = "idle"; + private const string BusyValue = "busy"; + private const string ShuttingDownValue = "shutting_down"; + private const string ErrorValue = "error"; + private const string DeadValue = "dead"; + private const string KilledValue = "killed"; + private const string SuccessValue = "success"; + private const string RunningValue = "running"; + private const string RecoveringValue = "recovering"; + + /// not_started. + public static LivyStates NotStarted { get; } = new LivyStates(NotStartedValue); + /// starting. + public static LivyStates Starting { get; } = new LivyStates(StartingValue); + /// idle. + public static LivyStates Idle { get; } = new LivyStates(IdleValue); + /// busy. + public static LivyStates Busy { get; } = new LivyStates(BusyValue); + /// shutting_down. + public static LivyStates ShuttingDown { get; } = new LivyStates(ShuttingDownValue); + /// error. + public static LivyStates Error { get; } = new LivyStates(ErrorValue); + /// dead. + public static LivyStates Dead { get; } = new LivyStates(DeadValue); + /// killed. + public static LivyStates Killed { get; } = new LivyStates(KilledValue); + /// success. + public static LivyStates Success { get; } = new LivyStates(SuccessValue); + /// running. + public static LivyStates Running { get; } = new LivyStates(RunningValue); + /// recovering. + public static LivyStates Recovering { get; } = new LivyStates(RecoveringValue); + /// Determines if two values are the same. + public static bool operator ==(LivyStates left, LivyStates right) => left.Equals(right); + /// Determines if two values are not the same. + public static bool operator !=(LivyStates left, LivyStates right) => !left.Equals(right); + /// Converts a string to a . + public static implicit operator LivyStates(string value) => new LivyStates(value); + + /// + [EditorBrowsable(EditorBrowsableState.Never)] + public override bool Equals(object obj) => obj is LivyStates other && Equals(other); + /// + public bool Equals(LivyStates other) => string.Equals(_value, other._value, StringComparison.InvariantCultureIgnoreCase); + + /// + [EditorBrowsable(EditorBrowsableState.Never)] + public override int GetHashCode() => _value?.GetHashCode() ?? 0; + /// + public override string ToString() => _value; + } +} diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/MagentoSource.Serialization.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/MagentoSource.Serialization.cs index 7ee85ca36d3e..48312b24a9cf 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/MagentoSource.Serialization.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/MagentoSource.Serialization.cs @@ -29,15 +29,10 @@ void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) writer.WritePropertyName("queryTimeout"); writer.WriteObjectValue(QueryTimeout); } - if (Optional.IsCollectionDefined(AdditionalColumns)) + if (Optional.IsDefined(AdditionalColumns)) { writer.WritePropertyName("additionalColumns"); - writer.WriteStartArray(); - foreach (var item in AdditionalColumns) - { - writer.WriteObjectValue(item); - } - writer.WriteEndArray(); + writer.WriteObjectValue(AdditionalColumns); } writer.WritePropertyName("type"); writer.WriteStringValue(Type); @@ -68,7 +63,7 @@ internal static MagentoSource DeserializeMagentoSource(JsonElement element) { Optional query = default; Optional queryTimeout = default; - Optional> additionalColumns = default; + Optional additionalColumns = default; string type = default; Optional sourceRetryCount = default; Optional sourceRetryWait = default; @@ -104,12 +99,7 @@ internal static MagentoSource DeserializeMagentoSource(JsonElement element) property.ThrowNonNullablePropertyIsNull(); continue; } - List array = new List(); - foreach (var item in property.Value.EnumerateArray()) - { - array.Add(Models.AdditionalColumns.DeserializeAdditionalColumns(item)); - } - additionalColumns = array; + additionalColumns = property.Value.GetObject(); continue; } if (property.NameEquals("type")) @@ -150,7 +140,7 @@ internal static MagentoSource DeserializeMagentoSource(JsonElement element) additionalPropertiesDictionary.Add(property.Name, property.Value.GetObject()); } additionalProperties = additionalPropertiesDictionary; - return new MagentoSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, queryTimeout.Value, Optional.ToList(additionalColumns), query.Value); + return new MagentoSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, queryTimeout.Value, additionalColumns.Value, query.Value); } internal partial class MagentoSourceConverter : JsonConverter diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/MagentoSource.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/MagentoSource.cs index 3afab2273548..8c7c88496a10 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/MagentoSource.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/MagentoSource.cs @@ -25,9 +25,9 @@ public MagentoSource() /// The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer). /// Additional Properties. /// Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])). - /// Specifies the additional columns to be added to source data. Type: array of objects (or Expression with resultType array of objects). + /// Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects). /// A query to retrieve data from source. Type: string (or Expression with resultType string). - internal MagentoSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object queryTimeout, IList additionalColumns, object query) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties, queryTimeout, additionalColumns) + internal MagentoSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object queryTimeout, object additionalColumns, object query) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties, queryTimeout, additionalColumns) { Query = query; Type = type ?? "MagentoSource"; diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/MariaDBSource.Serialization.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/MariaDBSource.Serialization.cs index 50e5a1ae8540..f6590917d85f 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/MariaDBSource.Serialization.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/MariaDBSource.Serialization.cs @@ -29,15 +29,10 @@ void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) writer.WritePropertyName("queryTimeout"); writer.WriteObjectValue(QueryTimeout); } - if (Optional.IsCollectionDefined(AdditionalColumns)) + if (Optional.IsDefined(AdditionalColumns)) { writer.WritePropertyName("additionalColumns"); - writer.WriteStartArray(); - foreach (var item in AdditionalColumns) - { - writer.WriteObjectValue(item); - } - writer.WriteEndArray(); + writer.WriteObjectValue(AdditionalColumns); } writer.WritePropertyName("type"); writer.WriteStringValue(Type); @@ -68,7 +63,7 @@ internal static MariaDBSource DeserializeMariaDBSource(JsonElement element) { Optional query = default; Optional queryTimeout = default; - Optional> additionalColumns = default; + Optional additionalColumns = default; string type = default; Optional sourceRetryCount = default; Optional sourceRetryWait = default; @@ -104,12 +99,7 @@ internal static MariaDBSource DeserializeMariaDBSource(JsonElement element) property.ThrowNonNullablePropertyIsNull(); continue; } - List array = new List(); - foreach (var item in property.Value.EnumerateArray()) - { - array.Add(Models.AdditionalColumns.DeserializeAdditionalColumns(item)); - } - additionalColumns = array; + additionalColumns = property.Value.GetObject(); continue; } if (property.NameEquals("type")) @@ -150,7 +140,7 @@ internal static MariaDBSource DeserializeMariaDBSource(JsonElement element) additionalPropertiesDictionary.Add(property.Name, property.Value.GetObject()); } additionalProperties = additionalPropertiesDictionary; - return new MariaDBSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, queryTimeout.Value, Optional.ToList(additionalColumns), query.Value); + return new MariaDBSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, queryTimeout.Value, additionalColumns.Value, query.Value); } internal partial class MariaDBSourceConverter : JsonConverter diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/MariaDBSource.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/MariaDBSource.cs index b80a41bbb171..1dc271d7f9e3 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/MariaDBSource.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/MariaDBSource.cs @@ -25,9 +25,9 @@ public MariaDBSource() /// The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer). /// Additional Properties. /// Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])). - /// Specifies the additional columns to be added to source data. Type: array of objects (or Expression with resultType array of objects). + /// Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects). /// A query to retrieve data from source. Type: string (or Expression with resultType string). - internal MariaDBSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object queryTimeout, IList additionalColumns, object query) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties, queryTimeout, additionalColumns) + internal MariaDBSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object queryTimeout, object additionalColumns, object query) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties, queryTimeout, additionalColumns) { Query = query; Type = type ?? "MariaDBSource"; diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/MarketoSource.Serialization.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/MarketoSource.Serialization.cs index a051b444f870..a84dd0efbd14 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/MarketoSource.Serialization.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/MarketoSource.Serialization.cs @@ -29,15 +29,10 @@ void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) writer.WritePropertyName("queryTimeout"); writer.WriteObjectValue(QueryTimeout); } - if (Optional.IsCollectionDefined(AdditionalColumns)) + if (Optional.IsDefined(AdditionalColumns)) { writer.WritePropertyName("additionalColumns"); - writer.WriteStartArray(); - foreach (var item in AdditionalColumns) - { - writer.WriteObjectValue(item); - } - writer.WriteEndArray(); + writer.WriteObjectValue(AdditionalColumns); } writer.WritePropertyName("type"); writer.WriteStringValue(Type); @@ -68,7 +63,7 @@ internal static MarketoSource DeserializeMarketoSource(JsonElement element) { Optional query = default; Optional queryTimeout = default; - Optional> additionalColumns = default; + Optional additionalColumns = default; string type = default; Optional sourceRetryCount = default; Optional sourceRetryWait = default; @@ -104,12 +99,7 @@ internal static MarketoSource DeserializeMarketoSource(JsonElement element) property.ThrowNonNullablePropertyIsNull(); continue; } - List array = new List(); - foreach (var item in property.Value.EnumerateArray()) - { - array.Add(Models.AdditionalColumns.DeserializeAdditionalColumns(item)); - } - additionalColumns = array; + additionalColumns = property.Value.GetObject(); continue; } if (property.NameEquals("type")) @@ -150,7 +140,7 @@ internal static MarketoSource DeserializeMarketoSource(JsonElement element) additionalPropertiesDictionary.Add(property.Name, property.Value.GetObject()); } additionalProperties = additionalPropertiesDictionary; - return new MarketoSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, queryTimeout.Value, Optional.ToList(additionalColumns), query.Value); + return new MarketoSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, queryTimeout.Value, additionalColumns.Value, query.Value); } internal partial class MarketoSourceConverter : JsonConverter diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/MarketoSource.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/MarketoSource.cs index 7fa98ae6c634..5c546efb20a9 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/MarketoSource.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/MarketoSource.cs @@ -25,9 +25,9 @@ public MarketoSource() /// The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer). /// Additional Properties. /// Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])). - /// Specifies the additional columns to be added to source data. Type: array of objects (or Expression with resultType array of objects). + /// Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects). /// A query to retrieve data from source. Type: string (or Expression with resultType string). - internal MarketoSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object queryTimeout, IList additionalColumns, object query) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties, queryTimeout, additionalColumns) + internal MarketoSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object queryTimeout, object additionalColumns, object query) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties, queryTimeout, additionalColumns) { Query = query; Type = type ?? "MarketoSource"; diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/MicrosoftAccessSource.Serialization.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/MicrosoftAccessSource.Serialization.cs index 363c7c7ab605..261e67bec479 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/MicrosoftAccessSource.Serialization.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/MicrosoftAccessSource.Serialization.cs @@ -24,15 +24,10 @@ void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) writer.WritePropertyName("query"); writer.WriteObjectValue(Query); } - if (Optional.IsCollectionDefined(AdditionalColumns)) + if (Optional.IsDefined(AdditionalColumns)) { writer.WritePropertyName("additionalColumns"); - writer.WriteStartArray(); - foreach (var item in AdditionalColumns) - { - writer.WriteObjectValue(item); - } - writer.WriteEndArray(); + writer.WriteObjectValue(AdditionalColumns); } writer.WritePropertyName("type"); writer.WriteStringValue(Type); @@ -62,7 +57,7 @@ void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) internal static MicrosoftAccessSource DeserializeMicrosoftAccessSource(JsonElement element) { Optional query = default; - Optional> additionalColumns = default; + Optional additionalColumns = default; string type = default; Optional sourceRetryCount = default; Optional sourceRetryWait = default; @@ -88,12 +83,7 @@ internal static MicrosoftAccessSource DeserializeMicrosoftAccessSource(JsonEleme property.ThrowNonNullablePropertyIsNull(); continue; } - List array = new List(); - foreach (var item in property.Value.EnumerateArray()) - { - array.Add(Models.AdditionalColumns.DeserializeAdditionalColumns(item)); - } - additionalColumns = array; + additionalColumns = property.Value.GetObject(); continue; } if (property.NameEquals("type")) @@ -134,7 +124,7 @@ internal static MicrosoftAccessSource DeserializeMicrosoftAccessSource(JsonEleme additionalPropertiesDictionary.Add(property.Name, property.Value.GetObject()); } additionalProperties = additionalPropertiesDictionary; - return new MicrosoftAccessSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, query.Value, Optional.ToList(additionalColumns)); + return new MicrosoftAccessSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, query.Value, additionalColumns.Value); } internal partial class MicrosoftAccessSourceConverter : JsonConverter diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/MicrosoftAccessSource.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/MicrosoftAccessSource.cs index 72cd6a84e28f..ba3d56d5ec8f 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/MicrosoftAccessSource.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/MicrosoftAccessSource.cs @@ -6,7 +6,6 @@ #nullable disable using System.Collections.Generic; -using Azure.Core; namespace Azure.Analytics.Synapse.Artifacts.Models { @@ -16,7 +15,6 @@ public partial class MicrosoftAccessSource : CopySource /// Initializes a new instance of MicrosoftAccessSource. public MicrosoftAccessSource() { - AdditionalColumns = new ChangeTrackingList(); Type = "MicrosoftAccessSource"; } @@ -27,8 +25,8 @@ public MicrosoftAccessSource() /// The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer). /// Additional Properties. /// Database query. Type: string (or Expression with resultType string). - /// Specifies the additional columns to be added to source data. Type: array of objects (or Expression with resultType array of objects). - internal MicrosoftAccessSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object query, IList additionalColumns) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties) + /// Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects). + internal MicrosoftAccessSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object query, object additionalColumns) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties) { Query = query; AdditionalColumns = additionalColumns; @@ -37,7 +35,7 @@ internal MicrosoftAccessSource(string type, object sourceRetryCount, object sour /// Database query. Type: string (or Expression with resultType string). public object Query { get; set; } - /// Specifies the additional columns to be added to source data. Type: array of objects (or Expression with resultType array of objects). - public IList AdditionalColumns { get; } + /// Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects). + public object AdditionalColumns { get; set; } } } diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/MongoDbAtlasSource.Serialization.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/MongoDbAtlasSource.Serialization.cs index 363d419131ae..b50c11a755ae 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/MongoDbAtlasSource.Serialization.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/MongoDbAtlasSource.Serialization.cs @@ -39,15 +39,10 @@ void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) writer.WritePropertyName("queryTimeout"); writer.WriteObjectValue(QueryTimeout); } - if (Optional.IsCollectionDefined(AdditionalColumns)) + if (Optional.IsDefined(AdditionalColumns)) { writer.WritePropertyName("additionalColumns"); - writer.WriteStartArray(); - foreach (var item in AdditionalColumns) - { - writer.WriteObjectValue(item); - } - writer.WriteEndArray(); + writer.WriteObjectValue(AdditionalColumns); } writer.WritePropertyName("type"); writer.WriteStringValue(Type); @@ -80,7 +75,7 @@ internal static MongoDbAtlasSource DeserializeMongoDbAtlasSource(JsonElement ele Optional cursorMethods = default; Optional batchSize = default; Optional queryTimeout = default; - Optional> additionalColumns = default; + Optional additionalColumns = default; string type = default; Optional sourceRetryCount = default; Optional sourceRetryWait = default; @@ -136,12 +131,7 @@ internal static MongoDbAtlasSource DeserializeMongoDbAtlasSource(JsonElement ele property.ThrowNonNullablePropertyIsNull(); continue; } - List array = new List(); - foreach (var item in property.Value.EnumerateArray()) - { - array.Add(Models.AdditionalColumns.DeserializeAdditionalColumns(item)); - } - additionalColumns = array; + additionalColumns = property.Value.GetObject(); continue; } if (property.NameEquals("type")) @@ -182,7 +172,7 @@ internal static MongoDbAtlasSource DeserializeMongoDbAtlasSource(JsonElement ele additionalPropertiesDictionary.Add(property.Name, property.Value.GetObject()); } additionalProperties = additionalPropertiesDictionary; - return new MongoDbAtlasSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, filter.Value, cursorMethods.Value, batchSize.Value, queryTimeout.Value, Optional.ToList(additionalColumns)); + return new MongoDbAtlasSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, filter.Value, cursorMethods.Value, batchSize.Value, queryTimeout.Value, additionalColumns.Value); } internal partial class MongoDbAtlasSourceConverter : JsonConverter diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/MongoDbAtlasSource.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/MongoDbAtlasSource.cs index a90dd76522d6..15195784c2ab 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/MongoDbAtlasSource.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/MongoDbAtlasSource.cs @@ -6,7 +6,6 @@ #nullable disable using System.Collections.Generic; -using Azure.Core; namespace Azure.Analytics.Synapse.Artifacts.Models { @@ -16,7 +15,6 @@ public partial class MongoDbAtlasSource : CopySource /// Initializes a new instance of MongoDbAtlasSource. public MongoDbAtlasSource() { - AdditionalColumns = new ChangeTrackingList(); Type = "MongoDbAtlasSource"; } @@ -30,8 +28,8 @@ public MongoDbAtlasSource() /// Cursor methods for Mongodb query. /// Specifies the number of documents to return in each batch of the response from MongoDB Atlas instance. In most cases, modifying the batch size will not affect the user or the application. This property's main purpose is to avoid hit the limitation of response size. Type: integer (or Expression with resultType integer). /// Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])). - /// Specifies the additional columns to be added to source data. Type: array of objects (or Expression with resultType array of objects). - internal MongoDbAtlasSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object filter, MongoDbCursorMethodsProperties cursorMethods, object batchSize, object queryTimeout, IList additionalColumns) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties) + /// Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects). + internal MongoDbAtlasSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object filter, MongoDbCursorMethodsProperties cursorMethods, object batchSize, object queryTimeout, object additionalColumns) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties) { Filter = filter; CursorMethods = cursorMethods; @@ -49,7 +47,7 @@ internal MongoDbAtlasSource(string type, object sourceRetryCount, object sourceR public object BatchSize { get; set; } /// Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])). public object QueryTimeout { get; set; } - /// Specifies the additional columns to be added to source data. Type: array of objects (or Expression with resultType array of objects). - public IList AdditionalColumns { get; } + /// Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects). + public object AdditionalColumns { get; set; } } } diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/MongoDbSource.Serialization.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/MongoDbSource.Serialization.cs index bb27d880e08d..726a3c5056cb 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/MongoDbSource.Serialization.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/MongoDbSource.Serialization.cs @@ -24,15 +24,10 @@ void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) writer.WritePropertyName("query"); writer.WriteObjectValue(Query); } - if (Optional.IsCollectionDefined(AdditionalColumns)) + if (Optional.IsDefined(AdditionalColumns)) { writer.WritePropertyName("additionalColumns"); - writer.WriteStartArray(); - foreach (var item in AdditionalColumns) - { - writer.WriteObjectValue(item); - } - writer.WriteEndArray(); + writer.WriteObjectValue(AdditionalColumns); } writer.WritePropertyName("type"); writer.WriteStringValue(Type); @@ -62,7 +57,7 @@ void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) internal static MongoDbSource DeserializeMongoDbSource(JsonElement element) { Optional query = default; - Optional> additionalColumns = default; + Optional additionalColumns = default; string type = default; Optional sourceRetryCount = default; Optional sourceRetryWait = default; @@ -88,12 +83,7 @@ internal static MongoDbSource DeserializeMongoDbSource(JsonElement element) property.ThrowNonNullablePropertyIsNull(); continue; } - List array = new List(); - foreach (var item in property.Value.EnumerateArray()) - { - array.Add(Models.AdditionalColumns.DeserializeAdditionalColumns(item)); - } - additionalColumns = array; + additionalColumns = property.Value.GetObject(); continue; } if (property.NameEquals("type")) @@ -134,7 +124,7 @@ internal static MongoDbSource DeserializeMongoDbSource(JsonElement element) additionalPropertiesDictionary.Add(property.Name, property.Value.GetObject()); } additionalProperties = additionalPropertiesDictionary; - return new MongoDbSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, query.Value, Optional.ToList(additionalColumns)); + return new MongoDbSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, query.Value, additionalColumns.Value); } internal partial class MongoDbSourceConverter : JsonConverter diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/MongoDbSource.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/MongoDbSource.cs index 8c2bca96f0a3..9b45db42e201 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/MongoDbSource.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/MongoDbSource.cs @@ -6,7 +6,6 @@ #nullable disable using System.Collections.Generic; -using Azure.Core; namespace Azure.Analytics.Synapse.Artifacts.Models { @@ -16,7 +15,6 @@ public partial class MongoDbSource : CopySource /// Initializes a new instance of MongoDbSource. public MongoDbSource() { - AdditionalColumns = new ChangeTrackingList(); Type = "MongoDbSource"; } @@ -27,8 +25,8 @@ public MongoDbSource() /// The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer). /// Additional Properties. /// Database query. Should be a SQL-92 query expression. Type: string (or Expression with resultType string). - /// Specifies the additional columns to be added to source data. Type: array of objects (or Expression with resultType array of objects). - internal MongoDbSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object query, IList additionalColumns) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties) + /// Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects). + internal MongoDbSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object query, object additionalColumns) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties) { Query = query; AdditionalColumns = additionalColumns; @@ -37,7 +35,7 @@ internal MongoDbSource(string type, object sourceRetryCount, object sourceRetryW /// Database query. Should be a SQL-92 query expression. Type: string (or Expression with resultType string). public object Query { get; set; } - /// Specifies the additional columns to be added to source data. Type: array of objects (or Expression with resultType array of objects). - public IList AdditionalColumns { get; } + /// Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects). + public object AdditionalColumns { get; set; } } } diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/MongoDbV2Source.Serialization.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/MongoDbV2Source.Serialization.cs index 3765e413e8b7..83a9d7821679 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/MongoDbV2Source.Serialization.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/MongoDbV2Source.Serialization.cs @@ -39,15 +39,10 @@ void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) writer.WritePropertyName("queryTimeout"); writer.WriteObjectValue(QueryTimeout); } - if (Optional.IsCollectionDefined(AdditionalColumns)) + if (Optional.IsDefined(AdditionalColumns)) { writer.WritePropertyName("additionalColumns"); - writer.WriteStartArray(); - foreach (var item in AdditionalColumns) - { - writer.WriteObjectValue(item); - } - writer.WriteEndArray(); + writer.WriteObjectValue(AdditionalColumns); } writer.WritePropertyName("type"); writer.WriteStringValue(Type); @@ -80,7 +75,7 @@ internal static MongoDbV2Source DeserializeMongoDbV2Source(JsonElement element) Optional cursorMethods = default; Optional batchSize = default; Optional queryTimeout = default; - Optional> additionalColumns = default; + Optional additionalColumns = default; string type = default; Optional sourceRetryCount = default; Optional sourceRetryWait = default; @@ -136,12 +131,7 @@ internal static MongoDbV2Source DeserializeMongoDbV2Source(JsonElement element) property.ThrowNonNullablePropertyIsNull(); continue; } - List array = new List(); - foreach (var item in property.Value.EnumerateArray()) - { - array.Add(Models.AdditionalColumns.DeserializeAdditionalColumns(item)); - } - additionalColumns = array; + additionalColumns = property.Value.GetObject(); continue; } if (property.NameEquals("type")) @@ -182,7 +172,7 @@ internal static MongoDbV2Source DeserializeMongoDbV2Source(JsonElement element) additionalPropertiesDictionary.Add(property.Name, property.Value.GetObject()); } additionalProperties = additionalPropertiesDictionary; - return new MongoDbV2Source(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, filter.Value, cursorMethods.Value, batchSize.Value, queryTimeout.Value, Optional.ToList(additionalColumns)); + return new MongoDbV2Source(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, filter.Value, cursorMethods.Value, batchSize.Value, queryTimeout.Value, additionalColumns.Value); } internal partial class MongoDbV2SourceConverter : JsonConverter diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/MongoDbV2Source.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/MongoDbV2Source.cs index 1bdaec17d920..f54507f94c92 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/MongoDbV2Source.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/MongoDbV2Source.cs @@ -6,7 +6,6 @@ #nullable disable using System.Collections.Generic; -using Azure.Core; namespace Azure.Analytics.Synapse.Artifacts.Models { @@ -16,7 +15,6 @@ public partial class MongoDbV2Source : CopySource /// Initializes a new instance of MongoDbV2Source. public MongoDbV2Source() { - AdditionalColumns = new ChangeTrackingList(); Type = "MongoDbV2Source"; } @@ -30,8 +28,8 @@ public MongoDbV2Source() /// Cursor methods for Mongodb query. /// Specifies the number of documents to return in each batch of the response from MongoDB instance. In most cases, modifying the batch size will not affect the user or the application. This property's main purpose is to avoid hit the limitation of response size. Type: integer (or Expression with resultType integer). /// Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])). - /// Specifies the additional columns to be added to source data. Type: array of objects (or Expression with resultType array of objects). - internal MongoDbV2Source(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object filter, MongoDbCursorMethodsProperties cursorMethods, object batchSize, object queryTimeout, IList additionalColumns) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties) + /// Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects). + internal MongoDbV2Source(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object filter, MongoDbCursorMethodsProperties cursorMethods, object batchSize, object queryTimeout, object additionalColumns) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties) { Filter = filter; CursorMethods = cursorMethods; @@ -49,7 +47,7 @@ internal MongoDbV2Source(string type, object sourceRetryCount, object sourceRetr public object BatchSize { get; set; } /// Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])). public object QueryTimeout { get; set; } - /// Specifies the additional columns to be added to source data. Type: array of objects (or Expression with resultType array of objects). - public IList AdditionalColumns { get; } + /// Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects). + public object AdditionalColumns { get; set; } } } diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/MySqlSource.Serialization.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/MySqlSource.Serialization.cs index de4fd43b6749..f8c08f8b6c5b 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/MySqlSource.Serialization.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/MySqlSource.Serialization.cs @@ -29,15 +29,10 @@ void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) writer.WritePropertyName("queryTimeout"); writer.WriteObjectValue(QueryTimeout); } - if (Optional.IsCollectionDefined(AdditionalColumns)) + if (Optional.IsDefined(AdditionalColumns)) { writer.WritePropertyName("additionalColumns"); - writer.WriteStartArray(); - foreach (var item in AdditionalColumns) - { - writer.WriteObjectValue(item); - } - writer.WriteEndArray(); + writer.WriteObjectValue(AdditionalColumns); } writer.WritePropertyName("type"); writer.WriteStringValue(Type); @@ -68,7 +63,7 @@ internal static MySqlSource DeserializeMySqlSource(JsonElement element) { Optional query = default; Optional queryTimeout = default; - Optional> additionalColumns = default; + Optional additionalColumns = default; string type = default; Optional sourceRetryCount = default; Optional sourceRetryWait = default; @@ -104,12 +99,7 @@ internal static MySqlSource DeserializeMySqlSource(JsonElement element) property.ThrowNonNullablePropertyIsNull(); continue; } - List array = new List(); - foreach (var item in property.Value.EnumerateArray()) - { - array.Add(Models.AdditionalColumns.DeserializeAdditionalColumns(item)); - } - additionalColumns = array; + additionalColumns = property.Value.GetObject(); continue; } if (property.NameEquals("type")) @@ -150,7 +140,7 @@ internal static MySqlSource DeserializeMySqlSource(JsonElement element) additionalPropertiesDictionary.Add(property.Name, property.Value.GetObject()); } additionalProperties = additionalPropertiesDictionary; - return new MySqlSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, queryTimeout.Value, Optional.ToList(additionalColumns), query.Value); + return new MySqlSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, queryTimeout.Value, additionalColumns.Value, query.Value); } internal partial class MySqlSourceConverter : JsonConverter diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/MySqlSource.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/MySqlSource.cs index d02aa7c74450..7e6d5dee5b5a 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/MySqlSource.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/MySqlSource.cs @@ -25,9 +25,9 @@ public MySqlSource() /// The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer). /// Additional Properties. /// Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])). - /// Specifies the additional columns to be added to source data. Type: array of objects (or Expression with resultType array of objects). + /// Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects). /// Database query. Type: string (or Expression with resultType string). - internal MySqlSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object queryTimeout, IList additionalColumns, object query) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties, queryTimeout, additionalColumns) + internal MySqlSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object queryTimeout, object additionalColumns, object query) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties, queryTimeout, additionalColumns) { Query = query; Type = type ?? "MySqlSource"; diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/NetezzaSource.Serialization.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/NetezzaSource.Serialization.cs index 9e5ea68f648d..bdce3e1db6f3 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/NetezzaSource.Serialization.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/NetezzaSource.Serialization.cs @@ -39,15 +39,10 @@ void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) writer.WritePropertyName("queryTimeout"); writer.WriteObjectValue(QueryTimeout); } - if (Optional.IsCollectionDefined(AdditionalColumns)) + if (Optional.IsDefined(AdditionalColumns)) { writer.WritePropertyName("additionalColumns"); - writer.WriteStartArray(); - foreach (var item in AdditionalColumns) - { - writer.WriteObjectValue(item); - } - writer.WriteEndArray(); + writer.WriteObjectValue(AdditionalColumns); } writer.WritePropertyName("type"); writer.WriteStringValue(Type); @@ -80,7 +75,7 @@ internal static NetezzaSource DeserializeNetezzaSource(JsonElement element) Optional partitionOption = default; Optional partitionSettings = default; Optional queryTimeout = default; - Optional> additionalColumns = default; + Optional additionalColumns = default; string type = default; Optional sourceRetryCount = default; Optional sourceRetryWait = default; @@ -136,12 +131,7 @@ internal static NetezzaSource DeserializeNetezzaSource(JsonElement element) property.ThrowNonNullablePropertyIsNull(); continue; } - List array = new List(); - foreach (var item in property.Value.EnumerateArray()) - { - array.Add(Models.AdditionalColumns.DeserializeAdditionalColumns(item)); - } - additionalColumns = array; + additionalColumns = property.Value.GetObject(); continue; } if (property.NameEquals("type")) @@ -182,7 +172,7 @@ internal static NetezzaSource DeserializeNetezzaSource(JsonElement element) additionalPropertiesDictionary.Add(property.Name, property.Value.GetObject()); } additionalProperties = additionalPropertiesDictionary; - return new NetezzaSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, queryTimeout.Value, Optional.ToList(additionalColumns), query.Value, Optional.ToNullable(partitionOption), partitionSettings.Value); + return new NetezzaSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, queryTimeout.Value, additionalColumns.Value, query.Value, Optional.ToNullable(partitionOption), partitionSettings.Value); } internal partial class NetezzaSourceConverter : JsonConverter diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/NetezzaSource.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/NetezzaSource.cs index 3cd37fdabf39..4a8810f5bf44 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/NetezzaSource.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/NetezzaSource.cs @@ -25,11 +25,11 @@ public NetezzaSource() /// The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer). /// Additional Properties. /// Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])). - /// Specifies the additional columns to be added to source data. Type: array of objects (or Expression with resultType array of objects). + /// Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects). /// A query to retrieve data from source. Type: string (or Expression with resultType string). /// The partition mechanism that will be used for Netezza read in parallel. /// The settings that will be leveraged for Netezza source partitioning. - internal NetezzaSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object queryTimeout, IList additionalColumns, object query, NetezzaPartitionOption? partitionOption, NetezzaPartitionSettings partitionSettings) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties, queryTimeout, additionalColumns) + internal NetezzaSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object queryTimeout, object additionalColumns, object query, NetezzaPartitionOption? partitionOption, NetezzaPartitionSettings partitionSettings) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties, queryTimeout, additionalColumns) { Query = query; PartitionOption = partitionOption; diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/Notebook.Serialization.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/Notebook.Serialization.cs index 62f4c8853c96..94c31c2e5cd5 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/Notebook.Serialization.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/Notebook.Serialization.cs @@ -61,6 +61,18 @@ void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) writer.WriteObjectValue(item); } writer.WriteEndArray(); + if (Optional.IsDefined(Folder)) + { + if (Folder != null) + { + writer.WritePropertyName("folder"); + writer.WriteObjectValue(Folder); + } + else + { + writer.WriteNull("folder"); + } + } foreach (var item in AdditionalProperties) { writer.WritePropertyName(item.Key); @@ -78,6 +90,7 @@ internal static Notebook DeserializeNotebook(JsonElement element) int nbformat = default; int nbformatMinor = default; IList cells = default; + Optional folder = default; IDictionary additionalProperties = default; Dictionary additionalPropertiesDictionary = new Dictionary(); foreach (var property in element.EnumerateObject()) @@ -132,10 +145,20 @@ internal static Notebook DeserializeNotebook(JsonElement element) cells = array; continue; } + if (property.NameEquals("folder")) + { + if (property.Value.ValueKind == JsonValueKind.Null) + { + folder = null; + continue; + } + folder = NotebookFolder.DeserializeNotebookFolder(property.Value); + continue; + } additionalPropertiesDictionary.Add(property.Name, property.Value.GetObject()); } additionalProperties = additionalPropertiesDictionary; - return new Notebook(description.Value, bigDataPool.Value, sessionProperties.Value, metadata, nbformat, nbformatMinor, cells, additionalProperties); + return new Notebook(description.Value, bigDataPool.Value, sessionProperties.Value, metadata, nbformat, nbformatMinor, cells, folder.Value, additionalProperties); } internal partial class NotebookConverter : JsonConverter diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/Notebook.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/Notebook.cs index e0e17baacaef..05b7e13b3f10 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/Notebook.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/Notebook.cs @@ -47,8 +47,9 @@ public Notebook(NotebookMetadata metadata, int nbformat, int nbformatMinor, IEnu /// Notebook format (major number). Incremented between backwards incompatible changes to the notebook format. /// Notebook format (minor number). Incremented for backward compatible changes to the notebook format. /// Array of cells of the current notebook. + /// The folder that this notebook is in. If not specified, this notebook will appear at the root level. /// Additional Properties. - internal Notebook(string description, BigDataPoolReference bigDataPool, NotebookSessionProperties sessionProperties, NotebookMetadata metadata, int nbformat, int nbformatMinor, IList cells, IDictionary additionalProperties) + internal Notebook(string description, BigDataPoolReference bigDataPool, NotebookSessionProperties sessionProperties, NotebookMetadata metadata, int nbformat, int nbformatMinor, IList cells, NotebookFolder folder, IDictionary additionalProperties) { Description = description; BigDataPool = bigDataPool; @@ -57,6 +58,7 @@ internal Notebook(string description, BigDataPoolReference bigDataPool, Notebook Nbformat = nbformat; NbformatMinor = nbformatMinor; Cells = cells; + Folder = folder; AdditionalProperties = additionalProperties; } @@ -74,6 +76,8 @@ internal Notebook(string description, BigDataPoolReference bigDataPool, Notebook public int NbformatMinor { get; set; } /// Array of cells of the current notebook. public IList Cells { get; } + /// The folder that this notebook is in. If not specified, this notebook will appear at the root level. + public NotebookFolder Folder { get; set; } /// Additional Properties. public IDictionary AdditionalProperties { get; } } diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/NotebookFolder.Serialization.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/NotebookFolder.Serialization.cs new file mode 100644 index 000000000000..6e1850aaada4 --- /dev/null +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/NotebookFolder.Serialization.cs @@ -0,0 +1,40 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System.Text.Json; +using Azure.Core; + +namespace Azure.Analytics.Synapse.Artifacts.Models +{ + public partial class NotebookFolder : IUtf8JsonSerializable + { + void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) + { + writer.WriteStartObject(); + if (Optional.IsDefined(Name)) + { + writer.WritePropertyName("name"); + writer.WriteStringValue(Name); + } + writer.WriteEndObject(); + } + + internal static NotebookFolder DeserializeNotebookFolder(JsonElement element) + { + Optional name = default; + foreach (var property in element.EnumerateObject()) + { + if (property.NameEquals("name")) + { + name = property.Value.GetString(); + continue; + } + } + return new NotebookFolder(name.Value); + } + } +} diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/NotebookFolder.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/NotebookFolder.cs new file mode 100644 index 000000000000..1e12faa18929 --- /dev/null +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/NotebookFolder.cs @@ -0,0 +1,28 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +namespace Azure.Analytics.Synapse.Artifacts.Models +{ + /// The folder that this notebook is in. If not specified, this notebook will appear at the root level. + public partial class NotebookFolder + { + /// Initializes a new instance of NotebookFolder. + public NotebookFolder() + { + } + + /// Initializes a new instance of NotebookFolder. + /// The name of the folder that this notebook is in. + internal NotebookFolder(string name) + { + Name = name; + } + + /// The name of the folder that this notebook is in. + public string Name { get; set; } + } +} diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/ODataSource.Serialization.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/ODataSource.Serialization.cs index 220fedba5731..73995408cb97 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/ODataSource.Serialization.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/ODataSource.Serialization.cs @@ -29,15 +29,10 @@ void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) writer.WritePropertyName("httpRequestTimeout"); writer.WriteObjectValue(HttpRequestTimeout); } - if (Optional.IsCollectionDefined(AdditionalColumns)) + if (Optional.IsDefined(AdditionalColumns)) { writer.WritePropertyName("additionalColumns"); - writer.WriteStartArray(); - foreach (var item in AdditionalColumns) - { - writer.WriteObjectValue(item); - } - writer.WriteEndArray(); + writer.WriteObjectValue(AdditionalColumns); } writer.WritePropertyName("type"); writer.WriteStringValue(Type); @@ -68,7 +63,7 @@ internal static ODataSource DeserializeODataSource(JsonElement element) { Optional query = default; Optional httpRequestTimeout = default; - Optional> additionalColumns = default; + Optional additionalColumns = default; string type = default; Optional sourceRetryCount = default; Optional sourceRetryWait = default; @@ -104,12 +99,7 @@ internal static ODataSource DeserializeODataSource(JsonElement element) property.ThrowNonNullablePropertyIsNull(); continue; } - List array = new List(); - foreach (var item in property.Value.EnumerateArray()) - { - array.Add(Models.AdditionalColumns.DeserializeAdditionalColumns(item)); - } - additionalColumns = array; + additionalColumns = property.Value.GetObject(); continue; } if (property.NameEquals("type")) @@ -150,7 +140,7 @@ internal static ODataSource DeserializeODataSource(JsonElement element) additionalPropertiesDictionary.Add(property.Name, property.Value.GetObject()); } additionalProperties = additionalPropertiesDictionary; - return new ODataSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, query.Value, httpRequestTimeout.Value, Optional.ToList(additionalColumns)); + return new ODataSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, query.Value, httpRequestTimeout.Value, additionalColumns.Value); } internal partial class ODataSourceConverter : JsonConverter diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/ODataSource.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/ODataSource.cs index e76dd87ab071..18100eb99d09 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/ODataSource.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/ODataSource.cs @@ -6,7 +6,6 @@ #nullable disable using System.Collections.Generic; -using Azure.Core; namespace Azure.Analytics.Synapse.Artifacts.Models { @@ -16,7 +15,6 @@ public partial class ODataSource : CopySource /// Initializes a new instance of ODataSource. public ODataSource() { - AdditionalColumns = new ChangeTrackingList(); Type = "ODataSource"; } @@ -28,8 +26,8 @@ public ODataSource() /// Additional Properties. /// OData query. For example, "$top=1". Type: string (or Expression with resultType string). /// The timeout (TimeSpan) to get an HTTP response. It is the timeout to get a response, not the timeout to read response data. Default value: 00:05:00. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])). - /// Specifies the additional columns to be added to source data. Type: array of objects (or Expression with resultType array of objects). - internal ODataSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object query, object httpRequestTimeout, IList additionalColumns) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties) + /// Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects). + internal ODataSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object query, object httpRequestTimeout, object additionalColumns) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties) { Query = query; HttpRequestTimeout = httpRequestTimeout; @@ -41,7 +39,7 @@ internal ODataSource(string type, object sourceRetryCount, object sourceRetryWai public object Query { get; set; } /// The timeout (TimeSpan) to get an HTTP response. It is the timeout to get a response, not the timeout to read response data. Default value: 00:05:00. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])). public object HttpRequestTimeout { get; set; } - /// Specifies the additional columns to be added to source data. Type: array of objects (or Expression with resultType array of objects). - public IList AdditionalColumns { get; } + /// Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects). + public object AdditionalColumns { get; set; } } } diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/OdbcSource.Serialization.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/OdbcSource.Serialization.cs index c2ed875452e6..7a39bdcabc9f 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/OdbcSource.Serialization.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/OdbcSource.Serialization.cs @@ -29,15 +29,10 @@ void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) writer.WritePropertyName("queryTimeout"); writer.WriteObjectValue(QueryTimeout); } - if (Optional.IsCollectionDefined(AdditionalColumns)) + if (Optional.IsDefined(AdditionalColumns)) { writer.WritePropertyName("additionalColumns"); - writer.WriteStartArray(); - foreach (var item in AdditionalColumns) - { - writer.WriteObjectValue(item); - } - writer.WriteEndArray(); + writer.WriteObjectValue(AdditionalColumns); } writer.WritePropertyName("type"); writer.WriteStringValue(Type); @@ -68,7 +63,7 @@ internal static OdbcSource DeserializeOdbcSource(JsonElement element) { Optional query = default; Optional queryTimeout = default; - Optional> additionalColumns = default; + Optional additionalColumns = default; string type = default; Optional sourceRetryCount = default; Optional sourceRetryWait = default; @@ -104,12 +99,7 @@ internal static OdbcSource DeserializeOdbcSource(JsonElement element) property.ThrowNonNullablePropertyIsNull(); continue; } - List array = new List(); - foreach (var item in property.Value.EnumerateArray()) - { - array.Add(Models.AdditionalColumns.DeserializeAdditionalColumns(item)); - } - additionalColumns = array; + additionalColumns = property.Value.GetObject(); continue; } if (property.NameEquals("type")) @@ -150,7 +140,7 @@ internal static OdbcSource DeserializeOdbcSource(JsonElement element) additionalPropertiesDictionary.Add(property.Name, property.Value.GetObject()); } additionalProperties = additionalPropertiesDictionary; - return new OdbcSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, queryTimeout.Value, Optional.ToList(additionalColumns), query.Value); + return new OdbcSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, queryTimeout.Value, additionalColumns.Value, query.Value); } internal partial class OdbcSourceConverter : JsonConverter diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/OdbcSource.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/OdbcSource.cs index 576d7a38538f..062011d2af48 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/OdbcSource.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/OdbcSource.cs @@ -25,9 +25,9 @@ public OdbcSource() /// The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer). /// Additional Properties. /// Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])). - /// Specifies the additional columns to be added to source data. Type: array of objects (or Expression with resultType array of objects). + /// Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects). /// Database query. Type: string (or Expression with resultType string). - internal OdbcSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object queryTimeout, IList additionalColumns, object query) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties, queryTimeout, additionalColumns) + internal OdbcSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object queryTimeout, object additionalColumns, object query) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties, queryTimeout, additionalColumns) { Query = query; Type = type ?? "OdbcSource"; diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/OperationResult.Serialization.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/OperationResult.Serialization.cs index 180ee4d54ef1..b6f3b5812bd7 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/OperationResult.Serialization.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/OperationResult.Serialization.cs @@ -22,7 +22,7 @@ internal static OperationResult DeserializeOperationResult(JsonElement element) Optional code = default; Optional message = default; Optional target = default; - Optional> details = default; + Optional> details = default; foreach (var property in element.EnumerateObject()) { if (property.NameEquals("status")) @@ -61,10 +61,10 @@ internal static OperationResult DeserializeOperationResult(JsonElement element) property0.ThrowNonNullablePropertyIsNull(); continue; } - List array = new List(); + List array = new List(); foreach (var item in property0.Value.EnumerateArray()) { - array.Add(CloudError.DeserializeCloudError(item)); + array.Add(CloudErrorAutoGenerated.DeserializeCloudErrorAutoGenerated(item)); } details = array; continue; diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/OperationResult.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/OperationResult.cs index 580382e7c607..fbb35c1fd09f 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/OperationResult.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/OperationResult.cs @@ -16,7 +16,7 @@ public partial class OperationResult /// Initializes a new instance of OperationResult. internal OperationResult() { - Details = new ChangeTrackingList(); + Details = new ChangeTrackingList(); } /// Initializes a new instance of OperationResult. @@ -25,7 +25,7 @@ internal OperationResult() /// Error message. /// Property name/path in request associated with error. /// Array with additional error details. - internal OperationResult(string status, string code, string message, string target, IReadOnlyList details) + internal OperationResult(string status, string code, string message, string target, IReadOnlyList details) { Status = status; Code = code; @@ -43,6 +43,6 @@ internal OperationResult(string status, string code, string message, string targ /// Property name/path in request associated with error. public string Target { get; } /// Array with additional error details. - public IReadOnlyList Details { get; } + public IReadOnlyList Details { get; } } } diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/OracleServiceCloudSource.Serialization.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/OracleServiceCloudSource.Serialization.cs index aa549d89c79e..a8cef2c2c94f 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/OracleServiceCloudSource.Serialization.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/OracleServiceCloudSource.Serialization.cs @@ -29,15 +29,10 @@ void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) writer.WritePropertyName("queryTimeout"); writer.WriteObjectValue(QueryTimeout); } - if (Optional.IsCollectionDefined(AdditionalColumns)) + if (Optional.IsDefined(AdditionalColumns)) { writer.WritePropertyName("additionalColumns"); - writer.WriteStartArray(); - foreach (var item in AdditionalColumns) - { - writer.WriteObjectValue(item); - } - writer.WriteEndArray(); + writer.WriteObjectValue(AdditionalColumns); } writer.WritePropertyName("type"); writer.WriteStringValue(Type); @@ -68,7 +63,7 @@ internal static OracleServiceCloudSource DeserializeOracleServiceCloudSource(Jso { Optional query = default; Optional queryTimeout = default; - Optional> additionalColumns = default; + Optional additionalColumns = default; string type = default; Optional sourceRetryCount = default; Optional sourceRetryWait = default; @@ -104,12 +99,7 @@ internal static OracleServiceCloudSource DeserializeOracleServiceCloudSource(Jso property.ThrowNonNullablePropertyIsNull(); continue; } - List array = new List(); - foreach (var item in property.Value.EnumerateArray()) - { - array.Add(Models.AdditionalColumns.DeserializeAdditionalColumns(item)); - } - additionalColumns = array; + additionalColumns = property.Value.GetObject(); continue; } if (property.NameEquals("type")) @@ -150,7 +140,7 @@ internal static OracleServiceCloudSource DeserializeOracleServiceCloudSource(Jso additionalPropertiesDictionary.Add(property.Name, property.Value.GetObject()); } additionalProperties = additionalPropertiesDictionary; - return new OracleServiceCloudSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, queryTimeout.Value, Optional.ToList(additionalColumns), query.Value); + return new OracleServiceCloudSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, queryTimeout.Value, additionalColumns.Value, query.Value); } internal partial class OracleServiceCloudSourceConverter : JsonConverter diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/OracleServiceCloudSource.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/OracleServiceCloudSource.cs index 9a3110d0ada6..fc416727f6b5 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/OracleServiceCloudSource.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/OracleServiceCloudSource.cs @@ -25,9 +25,9 @@ public OracleServiceCloudSource() /// The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer). /// Additional Properties. /// Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])). - /// Specifies the additional columns to be added to source data. Type: array of objects (or Expression with resultType array of objects). + /// Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects). /// A query to retrieve data from source. Type: string (or Expression with resultType string). - internal OracleServiceCloudSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object queryTimeout, IList additionalColumns, object query) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties, queryTimeout, additionalColumns) + internal OracleServiceCloudSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object queryTimeout, object additionalColumns, object query) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties, queryTimeout, additionalColumns) { Query = query; Type = type ?? "OracleServiceCloudSource"; diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/OracleSource.Serialization.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/OracleSource.Serialization.cs index 01c90a0968cb..2cd021fccdd4 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/OracleSource.Serialization.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/OracleSource.Serialization.cs @@ -39,15 +39,10 @@ void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) writer.WritePropertyName("partitionSettings"); writer.WriteObjectValue(PartitionSettings); } - if (Optional.IsCollectionDefined(AdditionalColumns)) + if (Optional.IsDefined(AdditionalColumns)) { writer.WritePropertyName("additionalColumns"); - writer.WriteStartArray(); - foreach (var item in AdditionalColumns) - { - writer.WriteObjectValue(item); - } - writer.WriteEndArray(); + writer.WriteObjectValue(AdditionalColumns); } writer.WritePropertyName("type"); writer.WriteStringValue(Type); @@ -80,7 +75,7 @@ internal static OracleSource DeserializeOracleSource(JsonElement element) Optional queryTimeout = default; Optional partitionOption = default; Optional partitionSettings = default; - Optional> additionalColumns = default; + Optional additionalColumns = default; string type = default; Optional sourceRetryCount = default; Optional sourceRetryWait = default; @@ -136,12 +131,7 @@ internal static OracleSource DeserializeOracleSource(JsonElement element) property.ThrowNonNullablePropertyIsNull(); continue; } - List array = new List(); - foreach (var item in property.Value.EnumerateArray()) - { - array.Add(Models.AdditionalColumns.DeserializeAdditionalColumns(item)); - } - additionalColumns = array; + additionalColumns = property.Value.GetObject(); continue; } if (property.NameEquals("type")) @@ -182,7 +172,7 @@ internal static OracleSource DeserializeOracleSource(JsonElement element) additionalPropertiesDictionary.Add(property.Name, property.Value.GetObject()); } additionalProperties = additionalPropertiesDictionary; - return new OracleSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, oracleReaderQuery.Value, queryTimeout.Value, Optional.ToNullable(partitionOption), partitionSettings.Value, Optional.ToList(additionalColumns)); + return new OracleSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, oracleReaderQuery.Value, queryTimeout.Value, Optional.ToNullable(partitionOption), partitionSettings.Value, additionalColumns.Value); } internal partial class OracleSourceConverter : JsonConverter diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/OracleSource.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/OracleSource.cs index f66565833c35..a24261d06fb3 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/OracleSource.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/OracleSource.cs @@ -6,7 +6,6 @@ #nullable disable using System.Collections.Generic; -using Azure.Core; namespace Azure.Analytics.Synapse.Artifacts.Models { @@ -16,7 +15,6 @@ public partial class OracleSource : CopySource /// Initializes a new instance of OracleSource. public OracleSource() { - AdditionalColumns = new ChangeTrackingList(); Type = "OracleSource"; } @@ -30,8 +28,8 @@ public OracleSource() /// Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])). /// The partition mechanism that will be used for Oracle read in parallel. /// The settings that will be leveraged for Oracle source partitioning. - /// Specifies the additional columns to be added to source data. Type: array of objects (or Expression with resultType array of objects). - internal OracleSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object oracleReaderQuery, object queryTimeout, OraclePartitionOption? partitionOption, OraclePartitionSettings partitionSettings, IList additionalColumns) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties) + /// Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects). + internal OracleSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object oracleReaderQuery, object queryTimeout, OraclePartitionOption? partitionOption, OraclePartitionSettings partitionSettings, object additionalColumns) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties) { OracleReaderQuery = oracleReaderQuery; QueryTimeout = queryTimeout; @@ -49,7 +47,7 @@ internal OracleSource(string type, object sourceRetryCount, object sourceRetryWa public OraclePartitionOption? PartitionOption { get; set; } /// The settings that will be leveraged for Oracle source partitioning. public OraclePartitionSettings PartitionSettings { get; set; } - /// Specifies the additional columns to be added to source data. Type: array of objects (or Expression with resultType array of objects). - public IList AdditionalColumns { get; } + /// Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects). + public object AdditionalColumns { get; set; } } } diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/OrcCompressionCodec.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/OrcCompressionCodec.cs index 6e959bbf3612..c61ca6e51391 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/OrcCompressionCodec.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/OrcCompressionCodec.cs @@ -11,7 +11,7 @@ namespace Azure.Analytics.Synapse.Artifacts.Models { /// The OrcCompressionCodec. - public readonly partial struct OrcCompressionCodec : IEquatable + internal readonly partial struct OrcCompressionCodec : IEquatable { private readonly string _value; diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/OrcDataset.Serialization.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/OrcDataset.Serialization.cs index 7473f3238c69..8daef8578e40 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/OrcDataset.Serialization.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/OrcDataset.Serialization.cs @@ -74,7 +74,7 @@ void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) if (Optional.IsDefined(OrcCompressionCodec)) { writer.WritePropertyName("orcCompressionCodec"); - writer.WriteStringValue(OrcCompressionCodec.Value.ToString()); + writer.WriteObjectValue(OrcCompressionCodec); } writer.WriteEndObject(); foreach (var item in AdditionalProperties) @@ -96,7 +96,7 @@ internal static OrcDataset DeserializeOrcDataset(JsonElement element) Optional> annotations = default; Optional folder = default; Optional location = default; - Optional orcCompressionCodec = default; + Optional orcCompressionCodec = default; IDictionary additionalProperties = default; Dictionary additionalPropertiesDictionary = new Dictionary(); foreach (var property in element.EnumerateObject()) @@ -202,7 +202,7 @@ internal static OrcDataset DeserializeOrcDataset(JsonElement element) property0.ThrowNonNullablePropertyIsNull(); continue; } - orcCompressionCodec = new OrcCompressionCodec(property0.Value.GetString()); + orcCompressionCodec = property0.Value.GetObject(); continue; } } @@ -211,7 +211,7 @@ internal static OrcDataset DeserializeOrcDataset(JsonElement element) additionalPropertiesDictionary.Add(property.Name, property.Value.GetObject()); } additionalProperties = additionalPropertiesDictionary; - return new OrcDataset(type, description.Value, structure.Value, schema.Value, linkedServiceName, Optional.ToDictionary(parameters), Optional.ToList(annotations), folder.Value, additionalProperties, location.Value, Optional.ToNullable(orcCompressionCodec)); + return new OrcDataset(type, description.Value, structure.Value, schema.Value, linkedServiceName, Optional.ToDictionary(parameters), Optional.ToList(annotations), folder.Value, additionalProperties, location.Value, orcCompressionCodec.Value); } internal partial class OrcDatasetConverter : JsonConverter diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/OrcDataset.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/OrcDataset.cs index 6bb2f098d604..b817a13f2afe 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/OrcDataset.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/OrcDataset.cs @@ -37,8 +37,8 @@ public OrcDataset(LinkedServiceReference linkedServiceName) : base(linkedService /// The folder that this Dataset is in. If not specified, Dataset will appear at the root level. /// Additional Properties. /// The location of the ORC data storage. - /// - internal OrcDataset(string type, string description, object structure, object schema, LinkedServiceReference linkedServiceName, IDictionary parameters, IList annotations, DatasetFolder folder, IDictionary additionalProperties, DatasetLocation location, OrcCompressionCodec? orcCompressionCodec) : base(type, description, structure, schema, linkedServiceName, parameters, annotations, folder, additionalProperties) + /// The data orcCompressionCodec. Type: string (or Expression with resultType string). + internal OrcDataset(string type, string description, object structure, object schema, LinkedServiceReference linkedServiceName, IDictionary parameters, IList annotations, DatasetFolder folder, IDictionary additionalProperties, DatasetLocation location, object orcCompressionCodec) : base(type, description, structure, schema, linkedServiceName, parameters, annotations, folder, additionalProperties) { Location = location; OrcCompressionCodec = orcCompressionCodec; @@ -47,7 +47,7 @@ internal OrcDataset(string type, string description, object structure, object sc /// The location of the ORC data storage. public DatasetLocation Location { get; set; } - /// Gets or sets the orc compression codec. - public OrcCompressionCodec? OrcCompressionCodec { get; set; } + /// The data orcCompressionCodec. Type: string (or Expression with resultType string). + public object OrcCompressionCodec { get; set; } } } diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/OrcSource.Serialization.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/OrcSource.Serialization.cs index a4714d5dd1c2..5fd528e3e0fe 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/OrcSource.Serialization.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/OrcSource.Serialization.cs @@ -24,15 +24,10 @@ void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) writer.WritePropertyName("storeSettings"); writer.WriteObjectValue(StoreSettings); } - if (Optional.IsCollectionDefined(AdditionalColumns)) + if (Optional.IsDefined(AdditionalColumns)) { writer.WritePropertyName("additionalColumns"); - writer.WriteStartArray(); - foreach (var item in AdditionalColumns) - { - writer.WriteObjectValue(item); - } - writer.WriteEndArray(); + writer.WriteObjectValue(AdditionalColumns); } writer.WritePropertyName("type"); writer.WriteStringValue(Type); @@ -62,7 +57,7 @@ void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) internal static OrcSource DeserializeOrcSource(JsonElement element) { Optional storeSettings = default; - Optional> additionalColumns = default; + Optional additionalColumns = default; string type = default; Optional sourceRetryCount = default; Optional sourceRetryWait = default; @@ -88,12 +83,7 @@ internal static OrcSource DeserializeOrcSource(JsonElement element) property.ThrowNonNullablePropertyIsNull(); continue; } - List array = new List(); - foreach (var item in property.Value.EnumerateArray()) - { - array.Add(Models.AdditionalColumns.DeserializeAdditionalColumns(item)); - } - additionalColumns = array; + additionalColumns = property.Value.GetObject(); continue; } if (property.NameEquals("type")) @@ -134,7 +124,7 @@ internal static OrcSource DeserializeOrcSource(JsonElement element) additionalPropertiesDictionary.Add(property.Name, property.Value.GetObject()); } additionalProperties = additionalPropertiesDictionary; - return new OrcSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, storeSettings.Value, Optional.ToList(additionalColumns)); + return new OrcSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, storeSettings.Value, additionalColumns.Value); } internal partial class OrcSourceConverter : JsonConverter diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/OrcSource.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/OrcSource.cs index 6c3cbf2a67ec..8dbb8878bfd5 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/OrcSource.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/OrcSource.cs @@ -6,7 +6,6 @@ #nullable disable using System.Collections.Generic; -using Azure.Core; namespace Azure.Analytics.Synapse.Artifacts.Models { @@ -16,7 +15,6 @@ public partial class OrcSource : CopySource /// Initializes a new instance of OrcSource. public OrcSource() { - AdditionalColumns = new ChangeTrackingList(); Type = "OrcSource"; } @@ -27,8 +25,8 @@ public OrcSource() /// The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer). /// Additional Properties. /// ORC store settings. - /// Specifies the additional columns to be added to source data. Type: array of objects (or Expression with resultType array of objects). - internal OrcSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, StoreReadSettings storeSettings, IList additionalColumns) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties) + /// Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects). + internal OrcSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, StoreReadSettings storeSettings, object additionalColumns) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties) { StoreSettings = storeSettings; AdditionalColumns = additionalColumns; @@ -37,7 +35,7 @@ internal OrcSource(string type, object sourceRetryCount, object sourceRetryWait, /// ORC store settings. public StoreReadSettings StoreSettings { get; set; } - /// Specifies the additional columns to be added to source data. Type: array of objects (or Expression with resultType array of objects). - public IList AdditionalColumns { get; } + /// Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects). + public object AdditionalColumns { get; set; } } } diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/ParquetSource.Serialization.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/ParquetSource.Serialization.cs index cda49ca22991..ef41f962ce54 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/ParquetSource.Serialization.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/ParquetSource.Serialization.cs @@ -24,15 +24,10 @@ void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) writer.WritePropertyName("storeSettings"); writer.WriteObjectValue(StoreSettings); } - if (Optional.IsCollectionDefined(AdditionalColumns)) + if (Optional.IsDefined(AdditionalColumns)) { writer.WritePropertyName("additionalColumns"); - writer.WriteStartArray(); - foreach (var item in AdditionalColumns) - { - writer.WriteObjectValue(item); - } - writer.WriteEndArray(); + writer.WriteObjectValue(AdditionalColumns); } writer.WritePropertyName("type"); writer.WriteStringValue(Type); @@ -62,7 +57,7 @@ void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) internal static ParquetSource DeserializeParquetSource(JsonElement element) { Optional storeSettings = default; - Optional> additionalColumns = default; + Optional additionalColumns = default; string type = default; Optional sourceRetryCount = default; Optional sourceRetryWait = default; @@ -88,12 +83,7 @@ internal static ParquetSource DeserializeParquetSource(JsonElement element) property.ThrowNonNullablePropertyIsNull(); continue; } - List array = new List(); - foreach (var item in property.Value.EnumerateArray()) - { - array.Add(Models.AdditionalColumns.DeserializeAdditionalColumns(item)); - } - additionalColumns = array; + additionalColumns = property.Value.GetObject(); continue; } if (property.NameEquals("type")) @@ -134,7 +124,7 @@ internal static ParquetSource DeserializeParquetSource(JsonElement element) additionalPropertiesDictionary.Add(property.Name, property.Value.GetObject()); } additionalProperties = additionalPropertiesDictionary; - return new ParquetSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, storeSettings.Value, Optional.ToList(additionalColumns)); + return new ParquetSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, storeSettings.Value, additionalColumns.Value); } internal partial class ParquetSourceConverter : JsonConverter diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/ParquetSource.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/ParquetSource.cs index bc6430a469a9..2587f22b2f8b 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/ParquetSource.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/ParquetSource.cs @@ -6,7 +6,6 @@ #nullable disable using System.Collections.Generic; -using Azure.Core; namespace Azure.Analytics.Synapse.Artifacts.Models { @@ -16,7 +15,6 @@ public partial class ParquetSource : CopySource /// Initializes a new instance of ParquetSource. public ParquetSource() { - AdditionalColumns = new ChangeTrackingList(); Type = "ParquetSource"; } @@ -27,8 +25,8 @@ public ParquetSource() /// The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer). /// Additional Properties. /// Parquet store settings. - /// Specifies the additional columns to be added to source data. Type: array of objects (or Expression with resultType array of objects). - internal ParquetSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, StoreReadSettings storeSettings, IList additionalColumns) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties) + /// Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects). + internal ParquetSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, StoreReadSettings storeSettings, object additionalColumns) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties) { StoreSettings = storeSettings; AdditionalColumns = additionalColumns; @@ -37,7 +35,7 @@ internal ParquetSource(string type, object sourceRetryCount, object sourceRetryW /// Parquet store settings. public StoreReadSettings StoreSettings { get; set; } - /// Specifies the additional columns to be added to source data. Type: array of objects (or Expression with resultType array of objects). - public IList AdditionalColumns { get; } + /// Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects). + public object AdditionalColumns { get; set; } } } diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/PaypalSource.Serialization.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/PaypalSource.Serialization.cs index 647788d793d4..4bf3c9cf3e9d 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/PaypalSource.Serialization.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/PaypalSource.Serialization.cs @@ -29,15 +29,10 @@ void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) writer.WritePropertyName("queryTimeout"); writer.WriteObjectValue(QueryTimeout); } - if (Optional.IsCollectionDefined(AdditionalColumns)) + if (Optional.IsDefined(AdditionalColumns)) { writer.WritePropertyName("additionalColumns"); - writer.WriteStartArray(); - foreach (var item in AdditionalColumns) - { - writer.WriteObjectValue(item); - } - writer.WriteEndArray(); + writer.WriteObjectValue(AdditionalColumns); } writer.WritePropertyName("type"); writer.WriteStringValue(Type); @@ -68,7 +63,7 @@ internal static PaypalSource DeserializePaypalSource(JsonElement element) { Optional query = default; Optional queryTimeout = default; - Optional> additionalColumns = default; + Optional additionalColumns = default; string type = default; Optional sourceRetryCount = default; Optional sourceRetryWait = default; @@ -104,12 +99,7 @@ internal static PaypalSource DeserializePaypalSource(JsonElement element) property.ThrowNonNullablePropertyIsNull(); continue; } - List array = new List(); - foreach (var item in property.Value.EnumerateArray()) - { - array.Add(Models.AdditionalColumns.DeserializeAdditionalColumns(item)); - } - additionalColumns = array; + additionalColumns = property.Value.GetObject(); continue; } if (property.NameEquals("type")) @@ -150,7 +140,7 @@ internal static PaypalSource DeserializePaypalSource(JsonElement element) additionalPropertiesDictionary.Add(property.Name, property.Value.GetObject()); } additionalProperties = additionalPropertiesDictionary; - return new PaypalSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, queryTimeout.Value, Optional.ToList(additionalColumns), query.Value); + return new PaypalSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, queryTimeout.Value, additionalColumns.Value, query.Value); } internal partial class PaypalSourceConverter : JsonConverter diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/PaypalSource.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/PaypalSource.cs index 1af2e032afd2..c8c92919b274 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/PaypalSource.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/PaypalSource.cs @@ -25,9 +25,9 @@ public PaypalSource() /// The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer). /// Additional Properties. /// Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])). - /// Specifies the additional columns to be added to source data. Type: array of objects (or Expression with resultType array of objects). + /// Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects). /// A query to retrieve data from source. Type: string (or Expression with resultType string). - internal PaypalSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object queryTimeout, IList additionalColumns, object query) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties, queryTimeout, additionalColumns) + internal PaypalSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object queryTimeout, object additionalColumns, object query) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties, queryTimeout, additionalColumns) { Query = query; Type = type ?? "PaypalSource"; diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/PhoenixSource.Serialization.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/PhoenixSource.Serialization.cs index fe1a966a7a2a..9198e5cf0995 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/PhoenixSource.Serialization.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/PhoenixSource.Serialization.cs @@ -29,15 +29,10 @@ void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) writer.WritePropertyName("queryTimeout"); writer.WriteObjectValue(QueryTimeout); } - if (Optional.IsCollectionDefined(AdditionalColumns)) + if (Optional.IsDefined(AdditionalColumns)) { writer.WritePropertyName("additionalColumns"); - writer.WriteStartArray(); - foreach (var item in AdditionalColumns) - { - writer.WriteObjectValue(item); - } - writer.WriteEndArray(); + writer.WriteObjectValue(AdditionalColumns); } writer.WritePropertyName("type"); writer.WriteStringValue(Type); @@ -68,7 +63,7 @@ internal static PhoenixSource DeserializePhoenixSource(JsonElement element) { Optional query = default; Optional queryTimeout = default; - Optional> additionalColumns = default; + Optional additionalColumns = default; string type = default; Optional sourceRetryCount = default; Optional sourceRetryWait = default; @@ -104,12 +99,7 @@ internal static PhoenixSource DeserializePhoenixSource(JsonElement element) property.ThrowNonNullablePropertyIsNull(); continue; } - List array = new List(); - foreach (var item in property.Value.EnumerateArray()) - { - array.Add(Models.AdditionalColumns.DeserializeAdditionalColumns(item)); - } - additionalColumns = array; + additionalColumns = property.Value.GetObject(); continue; } if (property.NameEquals("type")) @@ -150,7 +140,7 @@ internal static PhoenixSource DeserializePhoenixSource(JsonElement element) additionalPropertiesDictionary.Add(property.Name, property.Value.GetObject()); } additionalProperties = additionalPropertiesDictionary; - return new PhoenixSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, queryTimeout.Value, Optional.ToList(additionalColumns), query.Value); + return new PhoenixSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, queryTimeout.Value, additionalColumns.Value, query.Value); } internal partial class PhoenixSourceConverter : JsonConverter diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/PhoenixSource.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/PhoenixSource.cs index 8fee464d3e5a..8a2149bad731 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/PhoenixSource.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/PhoenixSource.cs @@ -25,9 +25,9 @@ public PhoenixSource() /// The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer). /// Additional Properties. /// Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])). - /// Specifies the additional columns to be added to source data. Type: array of objects (or Expression with resultType array of objects). + /// Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects). /// A query to retrieve data from source. Type: string (or Expression with resultType string). - internal PhoenixSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object queryTimeout, IList additionalColumns, object query) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties, queryTimeout, additionalColumns) + internal PhoenixSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object queryTimeout, object additionalColumns, object query) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties, queryTimeout, additionalColumns) { Query = query; Type = type ?? "PhoenixSource"; diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/PostgreSqlSource.Serialization.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/PostgreSqlSource.Serialization.cs index 3add3e4a4f20..6f22474fdf68 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/PostgreSqlSource.Serialization.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/PostgreSqlSource.Serialization.cs @@ -29,15 +29,10 @@ void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) writer.WritePropertyName("queryTimeout"); writer.WriteObjectValue(QueryTimeout); } - if (Optional.IsCollectionDefined(AdditionalColumns)) + if (Optional.IsDefined(AdditionalColumns)) { writer.WritePropertyName("additionalColumns"); - writer.WriteStartArray(); - foreach (var item in AdditionalColumns) - { - writer.WriteObjectValue(item); - } - writer.WriteEndArray(); + writer.WriteObjectValue(AdditionalColumns); } writer.WritePropertyName("type"); writer.WriteStringValue(Type); @@ -68,7 +63,7 @@ internal static PostgreSqlSource DeserializePostgreSqlSource(JsonElement element { Optional query = default; Optional queryTimeout = default; - Optional> additionalColumns = default; + Optional additionalColumns = default; string type = default; Optional sourceRetryCount = default; Optional sourceRetryWait = default; @@ -104,12 +99,7 @@ internal static PostgreSqlSource DeserializePostgreSqlSource(JsonElement element property.ThrowNonNullablePropertyIsNull(); continue; } - List array = new List(); - foreach (var item in property.Value.EnumerateArray()) - { - array.Add(Models.AdditionalColumns.DeserializeAdditionalColumns(item)); - } - additionalColumns = array; + additionalColumns = property.Value.GetObject(); continue; } if (property.NameEquals("type")) @@ -150,7 +140,7 @@ internal static PostgreSqlSource DeserializePostgreSqlSource(JsonElement element additionalPropertiesDictionary.Add(property.Name, property.Value.GetObject()); } additionalProperties = additionalPropertiesDictionary; - return new PostgreSqlSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, queryTimeout.Value, Optional.ToList(additionalColumns), query.Value); + return new PostgreSqlSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, queryTimeout.Value, additionalColumns.Value, query.Value); } internal partial class PostgreSqlSourceConverter : JsonConverter diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/PostgreSqlSource.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/PostgreSqlSource.cs index 71df6e5d3284..f47293cd4992 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/PostgreSqlSource.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/PostgreSqlSource.cs @@ -25,9 +25,9 @@ public PostgreSqlSource() /// The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer). /// Additional Properties. /// Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])). - /// Specifies the additional columns to be added to source data. Type: array of objects (or Expression with resultType array of objects). + /// Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects). /// Database query. Type: string (or Expression with resultType string). - internal PostgreSqlSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object queryTimeout, IList additionalColumns, object query) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties, queryTimeout, additionalColumns) + internal PostgreSqlSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object queryTimeout, object additionalColumns, object query) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties, queryTimeout, additionalColumns) { Query = query; Type = type ?? "PostgreSqlSource"; diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/PrestoSource.Serialization.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/PrestoSource.Serialization.cs index f217171ea4b6..69c813a9d5ae 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/PrestoSource.Serialization.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/PrestoSource.Serialization.cs @@ -29,15 +29,10 @@ void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) writer.WritePropertyName("queryTimeout"); writer.WriteObjectValue(QueryTimeout); } - if (Optional.IsCollectionDefined(AdditionalColumns)) + if (Optional.IsDefined(AdditionalColumns)) { writer.WritePropertyName("additionalColumns"); - writer.WriteStartArray(); - foreach (var item in AdditionalColumns) - { - writer.WriteObjectValue(item); - } - writer.WriteEndArray(); + writer.WriteObjectValue(AdditionalColumns); } writer.WritePropertyName("type"); writer.WriteStringValue(Type); @@ -68,7 +63,7 @@ internal static PrestoSource DeserializePrestoSource(JsonElement element) { Optional query = default; Optional queryTimeout = default; - Optional> additionalColumns = default; + Optional additionalColumns = default; string type = default; Optional sourceRetryCount = default; Optional sourceRetryWait = default; @@ -104,12 +99,7 @@ internal static PrestoSource DeserializePrestoSource(JsonElement element) property.ThrowNonNullablePropertyIsNull(); continue; } - List array = new List(); - foreach (var item in property.Value.EnumerateArray()) - { - array.Add(Models.AdditionalColumns.DeserializeAdditionalColumns(item)); - } - additionalColumns = array; + additionalColumns = property.Value.GetObject(); continue; } if (property.NameEquals("type")) @@ -150,7 +140,7 @@ internal static PrestoSource DeserializePrestoSource(JsonElement element) additionalPropertiesDictionary.Add(property.Name, property.Value.GetObject()); } additionalProperties = additionalPropertiesDictionary; - return new PrestoSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, queryTimeout.Value, Optional.ToList(additionalColumns), query.Value); + return new PrestoSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, queryTimeout.Value, additionalColumns.Value, query.Value); } internal partial class PrestoSourceConverter : JsonConverter diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/PrestoSource.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/PrestoSource.cs index 9496659625b1..a61e0a1f8608 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/PrestoSource.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/PrestoSource.cs @@ -25,9 +25,9 @@ public PrestoSource() /// The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer). /// Additional Properties. /// Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])). - /// Specifies the additional columns to be added to source data. Type: array of objects (or Expression with resultType array of objects). + /// Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects). /// A query to retrieve data from source. Type: string (or Expression with resultType string). - internal PrestoSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object queryTimeout, IList additionalColumns, object query) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties, queryTimeout, additionalColumns) + internal PrestoSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object queryTimeout, object additionalColumns, object query) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties, queryTimeout, additionalColumns) { Query = query; Type = type ?? "PrestoSource"; diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/QuickBooksSource.Serialization.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/QuickBooksSource.Serialization.cs index a1cfcffb9fa9..4acd3afb0524 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/QuickBooksSource.Serialization.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/QuickBooksSource.Serialization.cs @@ -29,15 +29,10 @@ void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) writer.WritePropertyName("queryTimeout"); writer.WriteObjectValue(QueryTimeout); } - if (Optional.IsCollectionDefined(AdditionalColumns)) + if (Optional.IsDefined(AdditionalColumns)) { writer.WritePropertyName("additionalColumns"); - writer.WriteStartArray(); - foreach (var item in AdditionalColumns) - { - writer.WriteObjectValue(item); - } - writer.WriteEndArray(); + writer.WriteObjectValue(AdditionalColumns); } writer.WritePropertyName("type"); writer.WriteStringValue(Type); @@ -68,7 +63,7 @@ internal static QuickBooksSource DeserializeQuickBooksSource(JsonElement element { Optional query = default; Optional queryTimeout = default; - Optional> additionalColumns = default; + Optional additionalColumns = default; string type = default; Optional sourceRetryCount = default; Optional sourceRetryWait = default; @@ -104,12 +99,7 @@ internal static QuickBooksSource DeserializeQuickBooksSource(JsonElement element property.ThrowNonNullablePropertyIsNull(); continue; } - List array = new List(); - foreach (var item in property.Value.EnumerateArray()) - { - array.Add(Models.AdditionalColumns.DeserializeAdditionalColumns(item)); - } - additionalColumns = array; + additionalColumns = property.Value.GetObject(); continue; } if (property.NameEquals("type")) @@ -150,7 +140,7 @@ internal static QuickBooksSource DeserializeQuickBooksSource(JsonElement element additionalPropertiesDictionary.Add(property.Name, property.Value.GetObject()); } additionalProperties = additionalPropertiesDictionary; - return new QuickBooksSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, queryTimeout.Value, Optional.ToList(additionalColumns), query.Value); + return new QuickBooksSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, queryTimeout.Value, additionalColumns.Value, query.Value); } internal partial class QuickBooksSourceConverter : JsonConverter diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/QuickBooksSource.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/QuickBooksSource.cs index 9c4b10f466e4..f7cdd2b2ba48 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/QuickBooksSource.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/QuickBooksSource.cs @@ -25,9 +25,9 @@ public QuickBooksSource() /// The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer). /// Additional Properties. /// Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])). - /// Specifies the additional columns to be added to source data. Type: array of objects (or Expression with resultType array of objects). + /// Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects). /// A query to retrieve data from source. Type: string (or Expression with resultType string). - internal QuickBooksSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object queryTimeout, IList additionalColumns, object query) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties, queryTimeout, additionalColumns) + internal QuickBooksSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object queryTimeout, object additionalColumns, object query) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties, queryTimeout, additionalColumns) { Query = query; Type = type ?? "QuickBooksSource"; diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/RelationalSource.Serialization.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/RelationalSource.Serialization.cs index 00898c6114e6..719a6f21d102 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/RelationalSource.Serialization.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/RelationalSource.Serialization.cs @@ -24,15 +24,10 @@ void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) writer.WritePropertyName("query"); writer.WriteObjectValue(Query); } - if (Optional.IsCollectionDefined(AdditionalColumns)) + if (Optional.IsDefined(AdditionalColumns)) { writer.WritePropertyName("additionalColumns"); - writer.WriteStartArray(); - foreach (var item in AdditionalColumns) - { - writer.WriteObjectValue(item); - } - writer.WriteEndArray(); + writer.WriteObjectValue(AdditionalColumns); } writer.WritePropertyName("type"); writer.WriteStringValue(Type); @@ -62,7 +57,7 @@ void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) internal static RelationalSource DeserializeRelationalSource(JsonElement element) { Optional query = default; - Optional> additionalColumns = default; + Optional additionalColumns = default; string type = default; Optional sourceRetryCount = default; Optional sourceRetryWait = default; @@ -88,12 +83,7 @@ internal static RelationalSource DeserializeRelationalSource(JsonElement element property.ThrowNonNullablePropertyIsNull(); continue; } - List array = new List(); - foreach (var item in property.Value.EnumerateArray()) - { - array.Add(Models.AdditionalColumns.DeserializeAdditionalColumns(item)); - } - additionalColumns = array; + additionalColumns = property.Value.GetObject(); continue; } if (property.NameEquals("type")) @@ -134,7 +124,7 @@ internal static RelationalSource DeserializeRelationalSource(JsonElement element additionalPropertiesDictionary.Add(property.Name, property.Value.GetObject()); } additionalProperties = additionalPropertiesDictionary; - return new RelationalSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, query.Value, Optional.ToList(additionalColumns)); + return new RelationalSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, query.Value, additionalColumns.Value); } internal partial class RelationalSourceConverter : JsonConverter diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/RelationalSource.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/RelationalSource.cs index 52ab435404a7..ea449018587c 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/RelationalSource.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/RelationalSource.cs @@ -6,7 +6,6 @@ #nullable disable using System.Collections.Generic; -using Azure.Core; namespace Azure.Analytics.Synapse.Artifacts.Models { @@ -16,7 +15,6 @@ public partial class RelationalSource : CopySource /// Initializes a new instance of RelationalSource. public RelationalSource() { - AdditionalColumns = new ChangeTrackingList(); Type = "RelationalSource"; } @@ -27,8 +25,8 @@ public RelationalSource() /// The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer). /// Additional Properties. /// Database query. Type: string (or Expression with resultType string). - /// Specifies the additional columns to be added to source data. Type: array of objects (or Expression with resultType array of objects). - internal RelationalSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object query, IList additionalColumns) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties) + /// Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects). + internal RelationalSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object query, object additionalColumns) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties) { Query = query; AdditionalColumns = additionalColumns; @@ -37,7 +35,7 @@ internal RelationalSource(string type, object sourceRetryCount, object sourceRet /// Database query. Type: string (or Expression with resultType string). public object Query { get; set; } - /// Specifies the additional columns to be added to source data. Type: array of objects (or Expression with resultType array of objects). - public IList AdditionalColumns { get; } + /// Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects). + public object AdditionalColumns { get; set; } } } diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/ResponsysSource.Serialization.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/ResponsysSource.Serialization.cs index 2ad93f2600de..69f252a94316 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/ResponsysSource.Serialization.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/ResponsysSource.Serialization.cs @@ -29,15 +29,10 @@ void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) writer.WritePropertyName("queryTimeout"); writer.WriteObjectValue(QueryTimeout); } - if (Optional.IsCollectionDefined(AdditionalColumns)) + if (Optional.IsDefined(AdditionalColumns)) { writer.WritePropertyName("additionalColumns"); - writer.WriteStartArray(); - foreach (var item in AdditionalColumns) - { - writer.WriteObjectValue(item); - } - writer.WriteEndArray(); + writer.WriteObjectValue(AdditionalColumns); } writer.WritePropertyName("type"); writer.WriteStringValue(Type); @@ -68,7 +63,7 @@ internal static ResponsysSource DeserializeResponsysSource(JsonElement element) { Optional query = default; Optional queryTimeout = default; - Optional> additionalColumns = default; + Optional additionalColumns = default; string type = default; Optional sourceRetryCount = default; Optional sourceRetryWait = default; @@ -104,12 +99,7 @@ internal static ResponsysSource DeserializeResponsysSource(JsonElement element) property.ThrowNonNullablePropertyIsNull(); continue; } - List array = new List(); - foreach (var item in property.Value.EnumerateArray()) - { - array.Add(Models.AdditionalColumns.DeserializeAdditionalColumns(item)); - } - additionalColumns = array; + additionalColumns = property.Value.GetObject(); continue; } if (property.NameEquals("type")) @@ -150,7 +140,7 @@ internal static ResponsysSource DeserializeResponsysSource(JsonElement element) additionalPropertiesDictionary.Add(property.Name, property.Value.GetObject()); } additionalProperties = additionalPropertiesDictionary; - return new ResponsysSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, queryTimeout.Value, Optional.ToList(additionalColumns), query.Value); + return new ResponsysSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, queryTimeout.Value, additionalColumns.Value, query.Value); } internal partial class ResponsysSourceConverter : JsonConverter diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/ResponsysSource.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/ResponsysSource.cs index b7cdd0e7a02b..c889df1d3242 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/ResponsysSource.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/ResponsysSource.cs @@ -25,9 +25,9 @@ public ResponsysSource() /// The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer). /// Additional Properties. /// Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])). - /// Specifies the additional columns to be added to source data. Type: array of objects (or Expression with resultType array of objects). + /// Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects). /// A query to retrieve data from source. Type: string (or Expression with resultType string). - internal ResponsysSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object queryTimeout, IList additionalColumns, object query) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties, queryTimeout, additionalColumns) + internal ResponsysSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object queryTimeout, object additionalColumns, object query) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties, queryTimeout, additionalColumns) { Query = query; Type = type ?? "ResponsysSource"; diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/RestSource.Serialization.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/RestSource.Serialization.cs index 63a46dadb9aa..6c49f2b99e09 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/RestSource.Serialization.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/RestSource.Serialization.cs @@ -49,15 +49,10 @@ void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) writer.WritePropertyName("requestInterval"); writer.WriteObjectValue(RequestInterval); } - if (Optional.IsCollectionDefined(AdditionalColumns)) + if (Optional.IsDefined(AdditionalColumns)) { writer.WritePropertyName("additionalColumns"); - writer.WriteStartArray(); - foreach (var item in AdditionalColumns) - { - writer.WriteObjectValue(item); - } - writer.WriteEndArray(); + writer.WriteObjectValue(AdditionalColumns); } writer.WritePropertyName("type"); writer.WriteStringValue(Type); @@ -92,7 +87,7 @@ internal static RestSource DeserializeRestSource(JsonElement element) Optional paginationRules = default; Optional httpRequestTimeout = default; Optional requestInterval = default; - Optional> additionalColumns = default; + Optional additionalColumns = default; string type = default; Optional sourceRetryCount = default; Optional sourceRetryWait = default; @@ -168,12 +163,7 @@ internal static RestSource DeserializeRestSource(JsonElement element) property.ThrowNonNullablePropertyIsNull(); continue; } - List array = new List(); - foreach (var item in property.Value.EnumerateArray()) - { - array.Add(Models.AdditionalColumns.DeserializeAdditionalColumns(item)); - } - additionalColumns = array; + additionalColumns = property.Value.GetObject(); continue; } if (property.NameEquals("type")) @@ -214,7 +204,7 @@ internal static RestSource DeserializeRestSource(JsonElement element) additionalPropertiesDictionary.Add(property.Name, property.Value.GetObject()); } additionalProperties = additionalPropertiesDictionary; - return new RestSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, requestMethod.Value, requestBody.Value, additionalHeaders.Value, paginationRules.Value, httpRequestTimeout.Value, requestInterval.Value, Optional.ToList(additionalColumns)); + return new RestSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, requestMethod.Value, requestBody.Value, additionalHeaders.Value, paginationRules.Value, httpRequestTimeout.Value, requestInterval.Value, additionalColumns.Value); } internal partial class RestSourceConverter : JsonConverter diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/RestSource.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/RestSource.cs index 41bf23270090..4bafc061689a 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/RestSource.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/RestSource.cs @@ -6,7 +6,6 @@ #nullable disable using System.Collections.Generic; -using Azure.Core; namespace Azure.Analytics.Synapse.Artifacts.Models { @@ -16,7 +15,6 @@ public partial class RestSource : CopySource /// Initializes a new instance of RestSource. public RestSource() { - AdditionalColumns = new ChangeTrackingList(); Type = "RestSource"; } @@ -32,8 +30,8 @@ public RestSource() /// The pagination rules to compose next page requests. Type: string (or Expression with resultType string). /// The timeout (TimeSpan) to get an HTTP response. It is the timeout to get a response, not the timeout to read response data. Default value: 00:01:40. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])). /// The time to await before sending next page request. - /// Specifies the additional columns to be added to source data. Type: array of objects (or Expression with resultType array of objects). - internal RestSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object requestMethod, object requestBody, object additionalHeaders, object paginationRules, object httpRequestTimeout, object requestInterval, IList additionalColumns) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties) + /// Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects). + internal RestSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object requestMethod, object requestBody, object additionalHeaders, object paginationRules, object httpRequestTimeout, object requestInterval, object additionalColumns) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties) { RequestMethod = requestMethod; RequestBody = requestBody; @@ -57,7 +55,7 @@ internal RestSource(string type, object sourceRetryCount, object sourceRetryWait public object HttpRequestTimeout { get; set; } /// The time to await before sending next page request. public object RequestInterval { get; set; } - /// Specifies the additional columns to be added to source data. Type: array of objects (or Expression with resultType array of objects). - public IList AdditionalColumns { get; } + /// Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects). + public object AdditionalColumns { get; set; } } } diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SalesforceMarketingCloudSource.Serialization.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SalesforceMarketingCloudSource.Serialization.cs index 90f806839390..91f04d44a7bc 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SalesforceMarketingCloudSource.Serialization.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SalesforceMarketingCloudSource.Serialization.cs @@ -29,15 +29,10 @@ void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) writer.WritePropertyName("queryTimeout"); writer.WriteObjectValue(QueryTimeout); } - if (Optional.IsCollectionDefined(AdditionalColumns)) + if (Optional.IsDefined(AdditionalColumns)) { writer.WritePropertyName("additionalColumns"); - writer.WriteStartArray(); - foreach (var item in AdditionalColumns) - { - writer.WriteObjectValue(item); - } - writer.WriteEndArray(); + writer.WriteObjectValue(AdditionalColumns); } writer.WritePropertyName("type"); writer.WriteStringValue(Type); @@ -68,7 +63,7 @@ internal static SalesforceMarketingCloudSource DeserializeSalesforceMarketingClo { Optional query = default; Optional queryTimeout = default; - Optional> additionalColumns = default; + Optional additionalColumns = default; string type = default; Optional sourceRetryCount = default; Optional sourceRetryWait = default; @@ -104,12 +99,7 @@ internal static SalesforceMarketingCloudSource DeserializeSalesforceMarketingClo property.ThrowNonNullablePropertyIsNull(); continue; } - List array = new List(); - foreach (var item in property.Value.EnumerateArray()) - { - array.Add(Models.AdditionalColumns.DeserializeAdditionalColumns(item)); - } - additionalColumns = array; + additionalColumns = property.Value.GetObject(); continue; } if (property.NameEquals("type")) @@ -150,7 +140,7 @@ internal static SalesforceMarketingCloudSource DeserializeSalesforceMarketingClo additionalPropertiesDictionary.Add(property.Name, property.Value.GetObject()); } additionalProperties = additionalPropertiesDictionary; - return new SalesforceMarketingCloudSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, queryTimeout.Value, Optional.ToList(additionalColumns), query.Value); + return new SalesforceMarketingCloudSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, queryTimeout.Value, additionalColumns.Value, query.Value); } internal partial class SalesforceMarketingCloudSourceConverter : JsonConverter diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SalesforceMarketingCloudSource.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SalesforceMarketingCloudSource.cs index 1cf06062d968..46931330b155 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SalesforceMarketingCloudSource.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SalesforceMarketingCloudSource.cs @@ -25,9 +25,9 @@ public SalesforceMarketingCloudSource() /// The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer). /// Additional Properties. /// Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])). - /// Specifies the additional columns to be added to source data. Type: array of objects (or Expression with resultType array of objects). + /// Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects). /// A query to retrieve data from source. Type: string (or Expression with resultType string). - internal SalesforceMarketingCloudSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object queryTimeout, IList additionalColumns, object query) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties, queryTimeout, additionalColumns) + internal SalesforceMarketingCloudSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object queryTimeout, object additionalColumns, object query) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties, queryTimeout, additionalColumns) { Query = query; Type = type ?? "SalesforceMarketingCloudSource"; diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SalesforceServiceCloudSource.Serialization.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SalesforceServiceCloudSource.Serialization.cs index 13b120060b45..7536eeedfc59 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SalesforceServiceCloudSource.Serialization.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SalesforceServiceCloudSource.Serialization.cs @@ -29,15 +29,10 @@ void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) writer.WritePropertyName("readBehavior"); writer.WriteStringValue(ReadBehavior.Value.ToString()); } - if (Optional.IsCollectionDefined(AdditionalColumns)) + if (Optional.IsDefined(AdditionalColumns)) { writer.WritePropertyName("additionalColumns"); - writer.WriteStartArray(); - foreach (var item in AdditionalColumns) - { - writer.WriteObjectValue(item); - } - writer.WriteEndArray(); + writer.WriteObjectValue(AdditionalColumns); } writer.WritePropertyName("type"); writer.WriteStringValue(Type); @@ -68,7 +63,7 @@ internal static SalesforceServiceCloudSource DeserializeSalesforceServiceCloudSo { Optional query = default; Optional readBehavior = default; - Optional> additionalColumns = default; + Optional additionalColumns = default; string type = default; Optional sourceRetryCount = default; Optional sourceRetryWait = default; @@ -104,12 +99,7 @@ internal static SalesforceServiceCloudSource DeserializeSalesforceServiceCloudSo property.ThrowNonNullablePropertyIsNull(); continue; } - List array = new List(); - foreach (var item in property.Value.EnumerateArray()) - { - array.Add(Models.AdditionalColumns.DeserializeAdditionalColumns(item)); - } - additionalColumns = array; + additionalColumns = property.Value.GetObject(); continue; } if (property.NameEquals("type")) @@ -150,7 +140,7 @@ internal static SalesforceServiceCloudSource DeserializeSalesforceServiceCloudSo additionalPropertiesDictionary.Add(property.Name, property.Value.GetObject()); } additionalProperties = additionalPropertiesDictionary; - return new SalesforceServiceCloudSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, query.Value, Optional.ToNullable(readBehavior), Optional.ToList(additionalColumns)); + return new SalesforceServiceCloudSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, query.Value, Optional.ToNullable(readBehavior), additionalColumns.Value); } internal partial class SalesforceServiceCloudSourceConverter : JsonConverter diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SalesforceServiceCloudSource.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SalesforceServiceCloudSource.cs index d969db7d4f52..e8bcbf997289 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SalesforceServiceCloudSource.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SalesforceServiceCloudSource.cs @@ -6,7 +6,6 @@ #nullable disable using System.Collections.Generic; -using Azure.Core; namespace Azure.Analytics.Synapse.Artifacts.Models { @@ -16,7 +15,6 @@ public partial class SalesforceServiceCloudSource : CopySource /// Initializes a new instance of SalesforceServiceCloudSource. public SalesforceServiceCloudSource() { - AdditionalColumns = new ChangeTrackingList(); Type = "SalesforceServiceCloudSource"; } @@ -28,8 +26,8 @@ public SalesforceServiceCloudSource() /// Additional Properties. /// Database query. Type: string (or Expression with resultType string). /// The read behavior for the operation. Default is Query. - /// Specifies the additional columns to be added to source data. Type: array of objects (or Expression with resultType array of objects). - internal SalesforceServiceCloudSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object query, SalesforceSourceReadBehavior? readBehavior, IList additionalColumns) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties) + /// Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects). + internal SalesforceServiceCloudSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object query, SalesforceSourceReadBehavior? readBehavior, object additionalColumns) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties) { Query = query; ReadBehavior = readBehavior; @@ -41,7 +39,7 @@ internal SalesforceServiceCloudSource(string type, object sourceRetryCount, obje public object Query { get; set; } /// The read behavior for the operation. Default is Query. public SalesforceSourceReadBehavior? ReadBehavior { get; set; } - /// Specifies the additional columns to be added to source data. Type: array of objects (or Expression with resultType array of objects). - public IList AdditionalColumns { get; } + /// Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects). + public object AdditionalColumns { get; set; } } } diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SalesforceSource.Serialization.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SalesforceSource.Serialization.cs index 7d78e7cc8d4c..edbbc952bd7c 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SalesforceSource.Serialization.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SalesforceSource.Serialization.cs @@ -34,15 +34,10 @@ void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) writer.WritePropertyName("queryTimeout"); writer.WriteObjectValue(QueryTimeout); } - if (Optional.IsCollectionDefined(AdditionalColumns)) + if (Optional.IsDefined(AdditionalColumns)) { writer.WritePropertyName("additionalColumns"); - writer.WriteStartArray(); - foreach (var item in AdditionalColumns) - { - writer.WriteObjectValue(item); - } - writer.WriteEndArray(); + writer.WriteObjectValue(AdditionalColumns); } writer.WritePropertyName("type"); writer.WriteStringValue(Type); @@ -74,7 +69,7 @@ internal static SalesforceSource DeserializeSalesforceSource(JsonElement element Optional query = default; Optional readBehavior = default; Optional queryTimeout = default; - Optional> additionalColumns = default; + Optional additionalColumns = default; string type = default; Optional sourceRetryCount = default; Optional sourceRetryWait = default; @@ -120,12 +115,7 @@ internal static SalesforceSource DeserializeSalesforceSource(JsonElement element property.ThrowNonNullablePropertyIsNull(); continue; } - List array = new List(); - foreach (var item in property.Value.EnumerateArray()) - { - array.Add(Models.AdditionalColumns.DeserializeAdditionalColumns(item)); - } - additionalColumns = array; + additionalColumns = property.Value.GetObject(); continue; } if (property.NameEquals("type")) @@ -166,7 +156,7 @@ internal static SalesforceSource DeserializeSalesforceSource(JsonElement element additionalPropertiesDictionary.Add(property.Name, property.Value.GetObject()); } additionalProperties = additionalPropertiesDictionary; - return new SalesforceSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, queryTimeout.Value, Optional.ToList(additionalColumns), query.Value, Optional.ToNullable(readBehavior)); + return new SalesforceSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, queryTimeout.Value, additionalColumns.Value, query.Value, Optional.ToNullable(readBehavior)); } internal partial class SalesforceSourceConverter : JsonConverter diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SalesforceSource.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SalesforceSource.cs index 44553a0e7fc5..2fa51092a4c6 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SalesforceSource.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SalesforceSource.cs @@ -25,10 +25,10 @@ public SalesforceSource() /// The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer). /// Additional Properties. /// Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])). - /// Specifies the additional columns to be added to source data. Type: array of objects (or Expression with resultType array of objects). + /// Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects). /// Database query. Type: string (or Expression with resultType string). /// The read behavior for the operation. Default is Query. - internal SalesforceSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object queryTimeout, IList additionalColumns, object query, SalesforceSourceReadBehavior? readBehavior) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties, queryTimeout, additionalColumns) + internal SalesforceSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object queryTimeout, object additionalColumns, object query, SalesforceSourceReadBehavior? readBehavior) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties, queryTimeout, additionalColumns) { Query = query; ReadBehavior = readBehavior; diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SapBwSource.Serialization.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SapBwSource.Serialization.cs index 880b1320b3a0..7923487a9ba7 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SapBwSource.Serialization.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SapBwSource.Serialization.cs @@ -29,15 +29,10 @@ void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) writer.WritePropertyName("queryTimeout"); writer.WriteObjectValue(QueryTimeout); } - if (Optional.IsCollectionDefined(AdditionalColumns)) + if (Optional.IsDefined(AdditionalColumns)) { writer.WritePropertyName("additionalColumns"); - writer.WriteStartArray(); - foreach (var item in AdditionalColumns) - { - writer.WriteObjectValue(item); - } - writer.WriteEndArray(); + writer.WriteObjectValue(AdditionalColumns); } writer.WritePropertyName("type"); writer.WriteStringValue(Type); @@ -68,7 +63,7 @@ internal static SapBwSource DeserializeSapBwSource(JsonElement element) { Optional query = default; Optional queryTimeout = default; - Optional> additionalColumns = default; + Optional additionalColumns = default; string type = default; Optional sourceRetryCount = default; Optional sourceRetryWait = default; @@ -104,12 +99,7 @@ internal static SapBwSource DeserializeSapBwSource(JsonElement element) property.ThrowNonNullablePropertyIsNull(); continue; } - List array = new List(); - foreach (var item in property.Value.EnumerateArray()) - { - array.Add(Models.AdditionalColumns.DeserializeAdditionalColumns(item)); - } - additionalColumns = array; + additionalColumns = property.Value.GetObject(); continue; } if (property.NameEquals("type")) @@ -150,7 +140,7 @@ internal static SapBwSource DeserializeSapBwSource(JsonElement element) additionalPropertiesDictionary.Add(property.Name, property.Value.GetObject()); } additionalProperties = additionalPropertiesDictionary; - return new SapBwSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, queryTimeout.Value, Optional.ToList(additionalColumns), query.Value); + return new SapBwSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, queryTimeout.Value, additionalColumns.Value, query.Value); } internal partial class SapBwSourceConverter : JsonConverter diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SapBwSource.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SapBwSource.cs index d7c249f42b8a..0b994cb41899 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SapBwSource.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SapBwSource.cs @@ -25,9 +25,9 @@ public SapBwSource() /// The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer). /// Additional Properties. /// Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])). - /// Specifies the additional columns to be added to source data. Type: array of objects (or Expression with resultType array of objects). + /// Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects). /// MDX query. Type: string (or Expression with resultType string). - internal SapBwSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object queryTimeout, IList additionalColumns, object query) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties, queryTimeout, additionalColumns) + internal SapBwSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object queryTimeout, object additionalColumns, object query) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties, queryTimeout, additionalColumns) { Query = query; Type = type ?? "SapBwSource"; diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SapCloudForCustomerSource.Serialization.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SapCloudForCustomerSource.Serialization.cs index 500a5fa80735..ea5e2793a245 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SapCloudForCustomerSource.Serialization.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SapCloudForCustomerSource.Serialization.cs @@ -34,15 +34,10 @@ void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) writer.WritePropertyName("queryTimeout"); writer.WriteObjectValue(QueryTimeout); } - if (Optional.IsCollectionDefined(AdditionalColumns)) + if (Optional.IsDefined(AdditionalColumns)) { writer.WritePropertyName("additionalColumns"); - writer.WriteStartArray(); - foreach (var item in AdditionalColumns) - { - writer.WriteObjectValue(item); - } - writer.WriteEndArray(); + writer.WriteObjectValue(AdditionalColumns); } writer.WritePropertyName("type"); writer.WriteStringValue(Type); @@ -74,7 +69,7 @@ internal static SapCloudForCustomerSource DeserializeSapCloudForCustomerSource(J Optional query = default; Optional httpRequestTimeout = default; Optional queryTimeout = default; - Optional> additionalColumns = default; + Optional additionalColumns = default; string type = default; Optional sourceRetryCount = default; Optional sourceRetryWait = default; @@ -120,12 +115,7 @@ internal static SapCloudForCustomerSource DeserializeSapCloudForCustomerSource(J property.ThrowNonNullablePropertyIsNull(); continue; } - List array = new List(); - foreach (var item in property.Value.EnumerateArray()) - { - array.Add(Models.AdditionalColumns.DeserializeAdditionalColumns(item)); - } - additionalColumns = array; + additionalColumns = property.Value.GetObject(); continue; } if (property.NameEquals("type")) @@ -166,7 +156,7 @@ internal static SapCloudForCustomerSource DeserializeSapCloudForCustomerSource(J additionalPropertiesDictionary.Add(property.Name, property.Value.GetObject()); } additionalProperties = additionalPropertiesDictionary; - return new SapCloudForCustomerSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, queryTimeout.Value, Optional.ToList(additionalColumns), query.Value, httpRequestTimeout.Value); + return new SapCloudForCustomerSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, queryTimeout.Value, additionalColumns.Value, query.Value, httpRequestTimeout.Value); } internal partial class SapCloudForCustomerSourceConverter : JsonConverter diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SapCloudForCustomerSource.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SapCloudForCustomerSource.cs index 34a57be7ab6d..85e25f49bb77 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SapCloudForCustomerSource.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SapCloudForCustomerSource.cs @@ -25,10 +25,10 @@ public SapCloudForCustomerSource() /// The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer). /// Additional Properties. /// Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])). - /// Specifies the additional columns to be added to source data. Type: array of objects (or Expression with resultType array of objects). + /// Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects). /// SAP Cloud for Customer OData query. For example, "$top=1". Type: string (or Expression with resultType string). /// The timeout (TimeSpan) to get an HTTP response. It is the timeout to get a response, not the timeout to read response data. Default value: 00:05:00. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])). - internal SapCloudForCustomerSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object queryTimeout, IList additionalColumns, object query, object httpRequestTimeout) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties, queryTimeout, additionalColumns) + internal SapCloudForCustomerSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object queryTimeout, object additionalColumns, object query, object httpRequestTimeout) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties, queryTimeout, additionalColumns) { Query = query; HttpRequestTimeout = httpRequestTimeout; diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SapEccSource.Serialization.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SapEccSource.Serialization.cs index 38634789c35b..4f7869a31380 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SapEccSource.Serialization.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SapEccSource.Serialization.cs @@ -34,15 +34,10 @@ void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) writer.WritePropertyName("queryTimeout"); writer.WriteObjectValue(QueryTimeout); } - if (Optional.IsCollectionDefined(AdditionalColumns)) + if (Optional.IsDefined(AdditionalColumns)) { writer.WritePropertyName("additionalColumns"); - writer.WriteStartArray(); - foreach (var item in AdditionalColumns) - { - writer.WriteObjectValue(item); - } - writer.WriteEndArray(); + writer.WriteObjectValue(AdditionalColumns); } writer.WritePropertyName("type"); writer.WriteStringValue(Type); @@ -74,7 +69,7 @@ internal static SapEccSource DeserializeSapEccSource(JsonElement element) Optional query = default; Optional httpRequestTimeout = default; Optional queryTimeout = default; - Optional> additionalColumns = default; + Optional additionalColumns = default; string type = default; Optional sourceRetryCount = default; Optional sourceRetryWait = default; @@ -120,12 +115,7 @@ internal static SapEccSource DeserializeSapEccSource(JsonElement element) property.ThrowNonNullablePropertyIsNull(); continue; } - List array = new List(); - foreach (var item in property.Value.EnumerateArray()) - { - array.Add(Models.AdditionalColumns.DeserializeAdditionalColumns(item)); - } - additionalColumns = array; + additionalColumns = property.Value.GetObject(); continue; } if (property.NameEquals("type")) @@ -166,7 +156,7 @@ internal static SapEccSource DeserializeSapEccSource(JsonElement element) additionalPropertiesDictionary.Add(property.Name, property.Value.GetObject()); } additionalProperties = additionalPropertiesDictionary; - return new SapEccSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, queryTimeout.Value, Optional.ToList(additionalColumns), query.Value, httpRequestTimeout.Value); + return new SapEccSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, queryTimeout.Value, additionalColumns.Value, query.Value, httpRequestTimeout.Value); } internal partial class SapEccSourceConverter : JsonConverter diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SapEccSource.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SapEccSource.cs index 6731cc4ecfaf..867395b6111b 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SapEccSource.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SapEccSource.cs @@ -25,10 +25,10 @@ public SapEccSource() /// The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer). /// Additional Properties. /// Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])). - /// Specifies the additional columns to be added to source data. Type: array of objects (or Expression with resultType array of objects). + /// Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects). /// SAP ECC OData query. For example, "$top=1". Type: string (or Expression with resultType string). /// The timeout (TimeSpan) to get an HTTP response. It is the timeout to get a response, not the timeout to read response data. Default value: 00:05:00. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])). - internal SapEccSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object queryTimeout, IList additionalColumns, object query, object httpRequestTimeout) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties, queryTimeout, additionalColumns) + internal SapEccSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object queryTimeout, object additionalColumns, object query, object httpRequestTimeout) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties, queryTimeout, additionalColumns) { Query = query; HttpRequestTimeout = httpRequestTimeout; diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SapHanaSource.Serialization.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SapHanaSource.Serialization.cs index 5b741665cb8e..ffce0f7bbedf 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SapHanaSource.Serialization.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SapHanaSource.Serialization.cs @@ -44,15 +44,10 @@ void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) writer.WritePropertyName("queryTimeout"); writer.WriteObjectValue(QueryTimeout); } - if (Optional.IsCollectionDefined(AdditionalColumns)) + if (Optional.IsDefined(AdditionalColumns)) { writer.WritePropertyName("additionalColumns"); - writer.WriteStartArray(); - foreach (var item in AdditionalColumns) - { - writer.WriteObjectValue(item); - } - writer.WriteEndArray(); + writer.WriteObjectValue(AdditionalColumns); } writer.WritePropertyName("type"); writer.WriteStringValue(Type); @@ -86,7 +81,7 @@ internal static SapHanaSource DeserializeSapHanaSource(JsonElement element) Optional partitionOption = default; Optional partitionSettings = default; Optional queryTimeout = default; - Optional> additionalColumns = default; + Optional additionalColumns = default; string type = default; Optional sourceRetryCount = default; Optional sourceRetryWait = default; @@ -152,12 +147,7 @@ internal static SapHanaSource DeserializeSapHanaSource(JsonElement element) property.ThrowNonNullablePropertyIsNull(); continue; } - List array = new List(); - foreach (var item in property.Value.EnumerateArray()) - { - array.Add(Models.AdditionalColumns.DeserializeAdditionalColumns(item)); - } - additionalColumns = array; + additionalColumns = property.Value.GetObject(); continue; } if (property.NameEquals("type")) @@ -198,7 +188,7 @@ internal static SapHanaSource DeserializeSapHanaSource(JsonElement element) additionalPropertiesDictionary.Add(property.Name, property.Value.GetObject()); } additionalProperties = additionalPropertiesDictionary; - return new SapHanaSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, queryTimeout.Value, Optional.ToList(additionalColumns), query.Value, packetSize.Value, Optional.ToNullable(partitionOption), partitionSettings.Value); + return new SapHanaSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, queryTimeout.Value, additionalColumns.Value, query.Value, packetSize.Value, Optional.ToNullable(partitionOption), partitionSettings.Value); } internal partial class SapHanaSourceConverter : JsonConverter diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SapHanaSource.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SapHanaSource.cs index 03f125ba4dff..e355f8f64d04 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SapHanaSource.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SapHanaSource.cs @@ -25,12 +25,12 @@ public SapHanaSource() /// The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer). /// Additional Properties. /// Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])). - /// Specifies the additional columns to be added to source data. Type: array of objects (or Expression with resultType array of objects). + /// Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects). /// SAP HANA Sql query. Type: string (or Expression with resultType string). /// The packet size of data read from SAP HANA. Type: integer(or Expression with resultType integer). /// The partition mechanism that will be used for SAP HANA read in parallel. /// The settings that will be leveraged for SAP HANA source partitioning. - internal SapHanaSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object queryTimeout, IList additionalColumns, object query, object packetSize, SapHanaPartitionOption? partitionOption, SapHanaPartitionSettings partitionSettings) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties, queryTimeout, additionalColumns) + internal SapHanaSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object queryTimeout, object additionalColumns, object query, object packetSize, SapHanaPartitionOption? partitionOption, SapHanaPartitionSettings partitionSettings) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties, queryTimeout, additionalColumns) { Query = query; PacketSize = packetSize; diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SapOpenHubSource.Serialization.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SapOpenHubSource.Serialization.cs index be368f7ab95e..fb1677fa15d6 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SapOpenHubSource.Serialization.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SapOpenHubSource.Serialization.cs @@ -44,15 +44,10 @@ void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) writer.WritePropertyName("queryTimeout"); writer.WriteObjectValue(QueryTimeout); } - if (Optional.IsCollectionDefined(AdditionalColumns)) + if (Optional.IsDefined(AdditionalColumns)) { writer.WritePropertyName("additionalColumns"); - writer.WriteStartArray(); - foreach (var item in AdditionalColumns) - { - writer.WriteObjectValue(item); - } - writer.WriteEndArray(); + writer.WriteObjectValue(AdditionalColumns); } writer.WritePropertyName("type"); writer.WriteStringValue(Type); @@ -86,7 +81,7 @@ internal static SapOpenHubSource DeserializeSapOpenHubSource(JsonElement element Optional customRfcReadTableFunctionModule = default; Optional sapDataColumnDelimiter = default; Optional queryTimeout = default; - Optional> additionalColumns = default; + Optional additionalColumns = default; string type = default; Optional sourceRetryCount = default; Optional sourceRetryWait = default; @@ -152,12 +147,7 @@ internal static SapOpenHubSource DeserializeSapOpenHubSource(JsonElement element property.ThrowNonNullablePropertyIsNull(); continue; } - List array = new List(); - foreach (var item in property.Value.EnumerateArray()) - { - array.Add(Models.AdditionalColumns.DeserializeAdditionalColumns(item)); - } - additionalColumns = array; + additionalColumns = property.Value.GetObject(); continue; } if (property.NameEquals("type")) @@ -198,7 +188,7 @@ internal static SapOpenHubSource DeserializeSapOpenHubSource(JsonElement element additionalPropertiesDictionary.Add(property.Name, property.Value.GetObject()); } additionalProperties = additionalPropertiesDictionary; - return new SapOpenHubSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, queryTimeout.Value, Optional.ToList(additionalColumns), excludeLastRequest.Value, baseRequestId.Value, customRfcReadTableFunctionModule.Value, sapDataColumnDelimiter.Value); + return new SapOpenHubSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, queryTimeout.Value, additionalColumns.Value, excludeLastRequest.Value, baseRequestId.Value, customRfcReadTableFunctionModule.Value, sapDataColumnDelimiter.Value); } internal partial class SapOpenHubSourceConverter : JsonConverter diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SapOpenHubSource.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SapOpenHubSource.cs index 1e769c102bb0..ca9e16617989 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SapOpenHubSource.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SapOpenHubSource.cs @@ -25,12 +25,12 @@ public SapOpenHubSource() /// The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer). /// Additional Properties. /// Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])). - /// Specifies the additional columns to be added to source data. Type: array of objects (or Expression with resultType array of objects). + /// Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects). /// Whether to exclude the records of the last request. The default value is true. Type: boolean (or Expression with resultType boolean). /// The ID of request for delta loading. Once it is set, only data with requestId larger than the value of this property will be retrieved. The default value is 0. Type: integer (or Expression with resultType integer ). /// Specifies the custom RFC function module that will be used to read data from SAP Table. Type: string (or Expression with resultType string). /// The single character that will be used as delimiter passed to SAP RFC as well as splitting the output data retrieved. Type: string (or Expression with resultType string). - internal SapOpenHubSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object queryTimeout, IList additionalColumns, object excludeLastRequest, object baseRequestId, object customRfcReadTableFunctionModule, object sapDataColumnDelimiter) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties, queryTimeout, additionalColumns) + internal SapOpenHubSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object queryTimeout, object additionalColumns, object excludeLastRequest, object baseRequestId, object customRfcReadTableFunctionModule, object sapDataColumnDelimiter) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties, queryTimeout, additionalColumns) { ExcludeLastRequest = excludeLastRequest; BaseRequestId = baseRequestId; diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SapTableSource.Serialization.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SapTableSource.Serialization.cs index 68abeffa4fbf..e4dcc11eb900 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SapTableSource.Serialization.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SapTableSource.Serialization.cs @@ -69,15 +69,10 @@ void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) writer.WritePropertyName("queryTimeout"); writer.WriteObjectValue(QueryTimeout); } - if (Optional.IsCollectionDefined(AdditionalColumns)) + if (Optional.IsDefined(AdditionalColumns)) { writer.WritePropertyName("additionalColumns"); - writer.WriteStartArray(); - foreach (var item in AdditionalColumns) - { - writer.WriteObjectValue(item); - } - writer.WriteEndArray(); + writer.WriteObjectValue(AdditionalColumns); } writer.WritePropertyName("type"); writer.WriteStringValue(Type); @@ -116,7 +111,7 @@ internal static SapTableSource DeserializeSapTableSource(JsonElement element) Optional partitionOption = default; Optional partitionSettings = default; Optional queryTimeout = default; - Optional> additionalColumns = default; + Optional additionalColumns = default; string type = default; Optional sourceRetryCount = default; Optional sourceRetryWait = default; @@ -232,12 +227,7 @@ internal static SapTableSource DeserializeSapTableSource(JsonElement element) property.ThrowNonNullablePropertyIsNull(); continue; } - List array = new List(); - foreach (var item in property.Value.EnumerateArray()) - { - array.Add(Models.AdditionalColumns.DeserializeAdditionalColumns(item)); - } - additionalColumns = array; + additionalColumns = property.Value.GetObject(); continue; } if (property.NameEquals("type")) @@ -278,7 +268,7 @@ internal static SapTableSource DeserializeSapTableSource(JsonElement element) additionalPropertiesDictionary.Add(property.Name, property.Value.GetObject()); } additionalProperties = additionalPropertiesDictionary; - return new SapTableSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, queryTimeout.Value, Optional.ToList(additionalColumns), rowCount.Value, rowSkips.Value, rfcTableFields.Value, rfcTableOptions.Value, batchSize.Value, customRfcReadTableFunctionModule.Value, sapDataColumnDelimiter.Value, Optional.ToNullable(partitionOption), partitionSettings.Value); + return new SapTableSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, queryTimeout.Value, additionalColumns.Value, rowCount.Value, rowSkips.Value, rfcTableFields.Value, rfcTableOptions.Value, batchSize.Value, customRfcReadTableFunctionModule.Value, sapDataColumnDelimiter.Value, Optional.ToNullable(partitionOption), partitionSettings.Value); } internal partial class SapTableSourceConverter : JsonConverter diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SapTableSource.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SapTableSource.cs index 64f88699d497..6990b47f3197 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SapTableSource.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SapTableSource.cs @@ -25,7 +25,7 @@ public SapTableSource() /// The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer). /// Additional Properties. /// Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])). - /// Specifies the additional columns to be added to source data. Type: array of objects (or Expression with resultType array of objects). + /// Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects). /// The number of rows to be retrieved. Type: integer(or Expression with resultType integer). /// The number of rows that will be skipped. Type: integer (or Expression with resultType integer). /// The fields of the SAP table that will be retrieved. For example, column0, column1. Type: string (or Expression with resultType string). @@ -35,7 +35,7 @@ public SapTableSource() /// The single character that will be used as delimiter passed to SAP RFC as well as splitting the output data retrieved. Type: string (or Expression with resultType string). /// The partition mechanism that will be used for SAP table read in parallel. /// The settings that will be leveraged for SAP table source partitioning. - internal SapTableSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object queryTimeout, IList additionalColumns, object rowCount, object rowSkips, object rfcTableFields, object rfcTableOptions, object batchSize, object customRfcReadTableFunctionModule, object sapDataColumnDelimiter, SapTablePartitionOption? partitionOption, SapTablePartitionSettings partitionSettings) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties, queryTimeout, additionalColumns) + internal SapTableSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object queryTimeout, object additionalColumns, object rowCount, object rowSkips, object rfcTableFields, object rfcTableOptions, object batchSize, object customRfcReadTableFunctionModule, object sapDataColumnDelimiter, SapTablePartitionOption? partitionOption, SapTablePartitionSettings partitionSettings) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties, queryTimeout, additionalColumns) { RowCount = rowCount; RowSkips = rowSkips; diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/ScriptAction.Serialization.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/ScriptAction.Serialization.cs index f16c6e74f45a..bb34bec20273 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/ScriptAction.Serialization.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/ScriptAction.Serialization.cs @@ -23,7 +23,7 @@ void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) writer.WritePropertyName("uri"); writer.WriteStringValue(Uri); writer.WritePropertyName("roles"); - writer.WriteStringValue(Roles.ToString()); + writer.WriteObjectValue(Roles); if (Optional.IsDefined(Parameters)) { writer.WritePropertyName("parameters"); @@ -36,7 +36,7 @@ internal static ScriptAction DeserializeScriptAction(JsonElement element) { string name = default; string uri = default; - HdiNodeTypes roles = default; + object roles = default; Optional parameters = default; foreach (var property in element.EnumerateObject()) { @@ -52,7 +52,7 @@ internal static ScriptAction DeserializeScriptAction(JsonElement element) } if (property.NameEquals("roles")) { - roles = new HdiNodeTypes(property.Value.GetString()); + roles = property.Value.GetObject(); continue; } if (property.NameEquals("parameters")) diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/ScriptAction.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/ScriptAction.cs index 1ee2f6a2cf78..ed11dc59bf32 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/ScriptAction.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/ScriptAction.cs @@ -16,8 +16,8 @@ public partial class ScriptAction /// The user provided name of the script action. /// The URI for the script action. /// The node types on which the script action should be executed. - /// or is null. - public ScriptAction(string name, string uri, HdiNodeTypes roles) + /// , , or is null. + public ScriptAction(string name, string uri, object roles) { if (name == null) { @@ -27,6 +27,10 @@ public ScriptAction(string name, string uri, HdiNodeTypes roles) { throw new ArgumentNullException(nameof(uri)); } + if (roles == null) + { + throw new ArgumentNullException(nameof(roles)); + } Name = name; Uri = uri; @@ -38,7 +42,7 @@ public ScriptAction(string name, string uri, HdiNodeTypes roles) /// The URI for the script action. /// The node types on which the script action should be executed. /// The parameters for the script action. - internal ScriptAction(string name, string uri, HdiNodeTypes roles, string parameters) + internal ScriptAction(string name, string uri, object roles, string parameters) { Name = name; Uri = uri; @@ -51,7 +55,7 @@ internal ScriptAction(string name, string uri, HdiNodeTypes roles, string parame /// The URI for the script action. public string Uri { get; set; } /// The node types on which the script action should be executed. - public HdiNodeTypes Roles { get; set; } + public object Roles { get; set; } /// The parameters for the script action. public string Parameters { get; set; } } diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/ServiceNowSource.Serialization.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/ServiceNowSource.Serialization.cs index c5cb20fff94c..e8240fd6cc55 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/ServiceNowSource.Serialization.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/ServiceNowSource.Serialization.cs @@ -29,15 +29,10 @@ void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) writer.WritePropertyName("queryTimeout"); writer.WriteObjectValue(QueryTimeout); } - if (Optional.IsCollectionDefined(AdditionalColumns)) + if (Optional.IsDefined(AdditionalColumns)) { writer.WritePropertyName("additionalColumns"); - writer.WriteStartArray(); - foreach (var item in AdditionalColumns) - { - writer.WriteObjectValue(item); - } - writer.WriteEndArray(); + writer.WriteObjectValue(AdditionalColumns); } writer.WritePropertyName("type"); writer.WriteStringValue(Type); @@ -68,7 +63,7 @@ internal static ServiceNowSource DeserializeServiceNowSource(JsonElement element { Optional query = default; Optional queryTimeout = default; - Optional> additionalColumns = default; + Optional additionalColumns = default; string type = default; Optional sourceRetryCount = default; Optional sourceRetryWait = default; @@ -104,12 +99,7 @@ internal static ServiceNowSource DeserializeServiceNowSource(JsonElement element property.ThrowNonNullablePropertyIsNull(); continue; } - List array = new List(); - foreach (var item in property.Value.EnumerateArray()) - { - array.Add(Models.AdditionalColumns.DeserializeAdditionalColumns(item)); - } - additionalColumns = array; + additionalColumns = property.Value.GetObject(); continue; } if (property.NameEquals("type")) @@ -150,7 +140,7 @@ internal static ServiceNowSource DeserializeServiceNowSource(JsonElement element additionalPropertiesDictionary.Add(property.Name, property.Value.GetObject()); } additionalProperties = additionalPropertiesDictionary; - return new ServiceNowSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, queryTimeout.Value, Optional.ToList(additionalColumns), query.Value); + return new ServiceNowSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, queryTimeout.Value, additionalColumns.Value, query.Value); } internal partial class ServiceNowSourceConverter : JsonConverter diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/ServiceNowSource.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/ServiceNowSource.cs index cf1707fac532..f3aebcbe28e3 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/ServiceNowSource.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/ServiceNowSource.cs @@ -25,9 +25,9 @@ public ServiceNowSource() /// The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer). /// Additional Properties. /// Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])). - /// Specifies the additional columns to be added to source data. Type: array of objects (or Expression with resultType array of objects). + /// Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects). /// A query to retrieve data from source. Type: string (or Expression with resultType string). - internal ServiceNowSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object queryTimeout, IList additionalColumns, object query) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties, queryTimeout, additionalColumns) + internal ServiceNowSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object queryTimeout, object additionalColumns, object query) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties, queryTimeout, additionalColumns) { Query = query; Type = type ?? "ServiceNowSource"; diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/ShopifySource.Serialization.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/ShopifySource.Serialization.cs index 72cecf488888..ed1361f45eca 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/ShopifySource.Serialization.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/ShopifySource.Serialization.cs @@ -29,15 +29,10 @@ void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) writer.WritePropertyName("queryTimeout"); writer.WriteObjectValue(QueryTimeout); } - if (Optional.IsCollectionDefined(AdditionalColumns)) + if (Optional.IsDefined(AdditionalColumns)) { writer.WritePropertyName("additionalColumns"); - writer.WriteStartArray(); - foreach (var item in AdditionalColumns) - { - writer.WriteObjectValue(item); - } - writer.WriteEndArray(); + writer.WriteObjectValue(AdditionalColumns); } writer.WritePropertyName("type"); writer.WriteStringValue(Type); @@ -68,7 +63,7 @@ internal static ShopifySource DeserializeShopifySource(JsonElement element) { Optional query = default; Optional queryTimeout = default; - Optional> additionalColumns = default; + Optional additionalColumns = default; string type = default; Optional sourceRetryCount = default; Optional sourceRetryWait = default; @@ -104,12 +99,7 @@ internal static ShopifySource DeserializeShopifySource(JsonElement element) property.ThrowNonNullablePropertyIsNull(); continue; } - List array = new List(); - foreach (var item in property.Value.EnumerateArray()) - { - array.Add(Models.AdditionalColumns.DeserializeAdditionalColumns(item)); - } - additionalColumns = array; + additionalColumns = property.Value.GetObject(); continue; } if (property.NameEquals("type")) @@ -150,7 +140,7 @@ internal static ShopifySource DeserializeShopifySource(JsonElement element) additionalPropertiesDictionary.Add(property.Name, property.Value.GetObject()); } additionalProperties = additionalPropertiesDictionary; - return new ShopifySource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, queryTimeout.Value, Optional.ToList(additionalColumns), query.Value); + return new ShopifySource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, queryTimeout.Value, additionalColumns.Value, query.Value); } internal partial class ShopifySourceConverter : JsonConverter diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/ShopifySource.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/ShopifySource.cs index b9e8b3e6edd5..26cd24380406 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/ShopifySource.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/ShopifySource.cs @@ -25,9 +25,9 @@ public ShopifySource() /// The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer). /// Additional Properties. /// Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])). - /// Specifies the additional columns to be added to source data. Type: array of objects (or Expression with resultType array of objects). + /// Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects). /// A query to retrieve data from source. Type: string (or Expression with resultType string). - internal ShopifySource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object queryTimeout, IList additionalColumns, object query) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties, queryTimeout, additionalColumns) + internal ShopifySource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object queryTimeout, object additionalColumns, object query) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties, queryTimeout, additionalColumns) { Query = query; Type = type ?? "ShopifySource"; diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SparkBatchJob.Serialization.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SparkBatchJob.Serialization.cs index fee9387ddf79..8064741482da 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SparkBatchJob.Serialization.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SparkBatchJob.Serialization.cs @@ -34,7 +34,7 @@ internal static SparkBatchJob DeserializeSparkBatchJob(JsonElement element) int id = default; Optional appId = default; Optional> appInfo = default; - Optional state = default; + Optional state = default; Optional> log = default; foreach (var property in element.EnumerateObject()) { @@ -180,7 +180,12 @@ internal static SparkBatchJob DeserializeSparkBatchJob(JsonElement element) } if (property.NameEquals("state")) { - state = property.Value.GetString(); + if (property.Value.ValueKind == JsonValueKind.Null) + { + property.ThrowNonNullablePropertyIsNull(); + continue; + } + state = new LivyStates(property.Value.GetString()); continue; } if (property.NameEquals("log")) @@ -199,7 +204,7 @@ internal static SparkBatchJob DeserializeSparkBatchJob(JsonElement element) continue; } } - return new SparkBatchJob(livyInfo.Value, name.Value, workspaceName.Value, sparkPoolName.Value, submitterName.Value, submitterId.Value, artifactId.Value, Optional.ToNullable(jobType), Optional.ToNullable(result), schedulerInfo.Value, pluginInfo.Value, Optional.ToList(errorInfo), Optional.ToDictionary(tags), id, appId.Value, Optional.ToDictionary(appInfo), state.Value, Optional.ToList(log)); + return new SparkBatchJob(livyInfo.Value, name.Value, workspaceName.Value, sparkPoolName.Value, submitterName.Value, submitterId.Value, artifactId.Value, Optional.ToNullable(jobType), Optional.ToNullable(result), schedulerInfo.Value, pluginInfo.Value, Optional.ToList(errorInfo), Optional.ToDictionary(tags), id, appId.Value, Optional.ToDictionary(appInfo), Optional.ToNullable(state), Optional.ToList(log)); } internal partial class SparkBatchJobConverter : JsonConverter diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SparkBatchJob.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SparkBatchJob.cs index e1efd25f149c..d18325d15b18 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SparkBatchJob.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SparkBatchJob.cs @@ -43,7 +43,7 @@ internal SparkBatchJob(int id) /// The detailed application info. /// The batch state. /// The log lines. - internal SparkBatchJob(SparkBatchJobState livyInfo, string name, string workspaceName, string sparkPoolName, string submitterName, string submitterId, string artifactId, SparkJobType? jobType, SparkBatchJobResultType? result, SparkScheduler scheduler, SparkServicePlugin plugin, IReadOnlyList errors, IReadOnlyDictionary tags, int id, string appId, IReadOnlyDictionary appInfo, string state, IReadOnlyList logLines) + internal SparkBatchJob(SparkBatchJobState livyInfo, string name, string workspaceName, string sparkPoolName, string submitterName, string submitterId, string artifactId, SparkJobType? jobType, SparkBatchJobResultType? result, SparkScheduler scheduler, SparkServicePlugin plugin, IReadOnlyList errors, IReadOnlyDictionary tags, int id, string appId, IReadOnlyDictionary appInfo, LivyStates? state, IReadOnlyList logLines) { LivyInfo = livyInfo; Name = name; @@ -98,7 +98,7 @@ internal SparkBatchJob(SparkBatchJobState livyInfo, string name, string workspac /// The detailed application info. public IReadOnlyDictionary AppInfo { get; } /// The batch state. - public string State { get; } + public LivyStates? State { get; } /// The log lines. public IReadOnlyList LogLines { get; } } diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SparkConfiguration.Serialization.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SparkConfiguration.Serialization.cs new file mode 100644 index 000000000000..c89682e9a84e --- /dev/null +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SparkConfiguration.Serialization.cs @@ -0,0 +1,167 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System; +using System.Collections.Generic; +using System.Text.Json; +using System.Text.Json.Serialization; +using Azure.Core; + +namespace Azure.Analytics.Synapse.Artifacts.Models +{ + [JsonConverter(typeof(SparkConfigurationConverter))] + public partial class SparkConfiguration : IUtf8JsonSerializable + { + void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) + { + writer.WriteStartObject(); + if (Optional.IsDefined(Description)) + { + writer.WritePropertyName("description"); + writer.WriteStringValue(Description); + } + writer.WritePropertyName("configs"); + writer.WriteStartObject(); + foreach (var item in Configs) + { + writer.WritePropertyName(item.Key); + writer.WriteStringValue(item.Value); + } + writer.WriteEndObject(); + if (Optional.IsCollectionDefined(Annotations)) + { + writer.WritePropertyName("annotations"); + writer.WriteStartArray(); + foreach (var item in Annotations) + { + writer.WriteStringValue(item); + } + writer.WriteEndArray(); + } + if (Optional.IsDefined(Notes)) + { + writer.WritePropertyName("notes"); + writer.WriteStringValue(Notes); + } + if (Optional.IsDefined(CreatedBy)) + { + writer.WritePropertyName("createdBy"); + writer.WriteStringValue(CreatedBy); + } + if (Optional.IsDefined(Created)) + { + writer.WritePropertyName("created"); + writer.WriteStringValue(Created.Value, "O"); + } + if (Optional.IsCollectionDefined(ConfigMergeRule)) + { + writer.WritePropertyName("configMergeRule"); + writer.WriteStartObject(); + foreach (var item in ConfigMergeRule) + { + writer.WritePropertyName(item.Key); + writer.WriteStringValue(item.Value); + } + writer.WriteEndObject(); + } + writer.WriteEndObject(); + } + + internal static SparkConfiguration DeserializeSparkConfiguration(JsonElement element) + { + Optional description = default; + IDictionary configs = default; + Optional> annotations = default; + Optional notes = default; + Optional createdBy = default; + Optional created = default; + Optional> configMergeRule = default; + foreach (var property in element.EnumerateObject()) + { + if (property.NameEquals("description")) + { + description = property.Value.GetString(); + continue; + } + if (property.NameEquals("configs")) + { + Dictionary dictionary = new Dictionary(); + foreach (var property0 in property.Value.EnumerateObject()) + { + dictionary.Add(property0.Name, property0.Value.GetString()); + } + configs = dictionary; + continue; + } + if (property.NameEquals("annotations")) + { + if (property.Value.ValueKind == JsonValueKind.Null) + { + property.ThrowNonNullablePropertyIsNull(); + continue; + } + List array = new List(); + foreach (var item in property.Value.EnumerateArray()) + { + array.Add(item.GetString()); + } + annotations = array; + continue; + } + if (property.NameEquals("notes")) + { + notes = property.Value.GetString(); + continue; + } + if (property.NameEquals("createdBy")) + { + createdBy = property.Value.GetString(); + continue; + } + if (property.NameEquals("created")) + { + if (property.Value.ValueKind == JsonValueKind.Null) + { + property.ThrowNonNullablePropertyIsNull(); + continue; + } + created = property.Value.GetDateTimeOffset("O"); + continue; + } + if (property.NameEquals("configMergeRule")) + { + if (property.Value.ValueKind == JsonValueKind.Null) + { + property.ThrowNonNullablePropertyIsNull(); + continue; + } + Dictionary dictionary = new Dictionary(); + foreach (var property0 in property.Value.EnumerateObject()) + { + dictionary.Add(property0.Name, property0.Value.GetString()); + } + configMergeRule = dictionary; + continue; + } + } + return new SparkConfiguration(description.Value, configs, Optional.ToList(annotations), notes.Value, createdBy.Value, Optional.ToNullable(created), Optional.ToDictionary(configMergeRule)); + } + + internal partial class SparkConfigurationConverter : JsonConverter + { + public override void Write(Utf8JsonWriter writer, SparkConfiguration model, JsonSerializerOptions options) + { + writer.WriteObjectValue(model); + } + public override SparkConfiguration Read(ref Utf8JsonReader reader, Type typeToConvert, JsonSerializerOptions options) + { + using var document = JsonDocument.ParseValue(ref reader); + return DeserializeSparkConfiguration(document.RootElement); + } + } + } +} diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SparkConfiguration.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SparkConfiguration.cs new file mode 100644 index 000000000000..1452131bf7ea --- /dev/null +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SparkConfiguration.cs @@ -0,0 +1,66 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System; +using System.Collections.Generic; +using Azure.Core; + +namespace Azure.Analytics.Synapse.Artifacts.Models +{ + /// SparkConfiguration Artifact information. + public partial class SparkConfiguration + { + /// Initializes a new instance of SparkConfiguration. + /// SparkConfiguration configs. + /// is null. + public SparkConfiguration(IDictionary configs) + { + if (configs == null) + { + throw new ArgumentNullException(nameof(configs)); + } + + Configs = configs; + Annotations = new ChangeTrackingList(); + ConfigMergeRule = new ChangeTrackingDictionary(); + } + + /// Initializes a new instance of SparkConfiguration. + /// Description about the SparkConfiguration. + /// SparkConfiguration configs. + /// Annotations for SparkConfiguration. + /// additional Notes. + /// The identity that created the resource. + /// The timestamp of resource creation. + /// SparkConfiguration configMergeRule. + internal SparkConfiguration(string description, IDictionary configs, IList annotations, string notes, string createdBy, DateTimeOffset? created, IDictionary configMergeRule) + { + Description = description; + Configs = configs; + Annotations = annotations; + Notes = notes; + CreatedBy = createdBy; + Created = created; + ConfigMergeRule = configMergeRule; + } + + /// Description about the SparkConfiguration. + public string Description { get; set; } + /// SparkConfiguration configs. + public IDictionary Configs { get; } + /// Annotations for SparkConfiguration. + public IList Annotations { get; } + /// additional Notes. + public string Notes { get; set; } + /// The identity that created the resource. + public string CreatedBy { get; set; } + /// The timestamp of resource creation. + public DateTimeOffset? Created { get; set; } + /// SparkConfiguration configMergeRule. + public IDictionary ConfigMergeRule { get; } + } +} diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SparkConfigurationListResponse.Serialization.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SparkConfigurationListResponse.Serialization.cs new file mode 100644 index 000000000000..33bbfedb09d3 --- /dev/null +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SparkConfigurationListResponse.Serialization.cs @@ -0,0 +1,57 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System; +using System.Collections.Generic; +using System.Text.Json; +using System.Text.Json.Serialization; +using Azure.Core; + +namespace Azure.Analytics.Synapse.Artifacts.Models +{ + [JsonConverter(typeof(SparkConfigurationListResponseConverter))] + internal partial class SparkConfigurationListResponse + { + internal static SparkConfigurationListResponse DeserializeSparkConfigurationListResponse(JsonElement element) + { + IReadOnlyList value = default; + Optional nextLink = default; + foreach (var property in element.EnumerateObject()) + { + if (property.NameEquals("value")) + { + List array = new List(); + foreach (var item in property.Value.EnumerateArray()) + { + array.Add(SparkConfigurationResource.DeserializeSparkConfigurationResource(item)); + } + value = array; + continue; + } + if (property.NameEquals("nextLink")) + { + nextLink = property.Value.GetString(); + continue; + } + } + return new SparkConfigurationListResponse(value, nextLink.Value); + } + + internal partial class SparkConfigurationListResponseConverter : JsonConverter + { + public override void Write(Utf8JsonWriter writer, SparkConfigurationListResponse model, JsonSerializerOptions options) + { + throw new NotImplementedException(); + } + public override SparkConfigurationListResponse Read(ref Utf8JsonReader reader, Type typeToConvert, JsonSerializerOptions options) + { + using var document = JsonDocument.ParseValue(ref reader); + return DeserializeSparkConfigurationListResponse(document.RootElement); + } + } + } +} diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SparkConfigurationListResponse.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SparkConfigurationListResponse.cs new file mode 100644 index 000000000000..dcb4ce259311 --- /dev/null +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SparkConfigurationListResponse.cs @@ -0,0 +1,44 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System; +using System.Collections.Generic; +using System.Linq; + +namespace Azure.Analytics.Synapse.Artifacts.Models +{ + /// A list of sparkconfiguration resources. + internal partial class SparkConfigurationListResponse + { + /// Initializes a new instance of SparkConfigurationListResponse. + /// List of sparkconfigurations. + /// is null. + internal SparkConfigurationListResponse(IEnumerable value) + { + if (value == null) + { + throw new ArgumentNullException(nameof(value)); + } + + Value = value.ToList(); + } + + /// Initializes a new instance of SparkConfigurationListResponse. + /// List of sparkconfigurations. + /// The link to the next page of results, if any remaining results exist. + internal SparkConfigurationListResponse(IReadOnlyList value, string nextLink) + { + Value = value; + NextLink = nextLink; + } + + /// List of sparkconfigurations. + public IReadOnlyList Value { get; } + /// The link to the next page of results, if any remaining results exist. + public string NextLink { get; } + } +} diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SparkConfigurationResource.Serialization.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SparkConfigurationResource.Serialization.cs new file mode 100644 index 000000000000..7e9f3e4eed93 --- /dev/null +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SparkConfigurationResource.Serialization.cs @@ -0,0 +1,77 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System; +using System.Text.Json; +using System.Text.Json.Serialization; +using Azure.Core; + +namespace Azure.Analytics.Synapse.Artifacts.Models +{ + [JsonConverter(typeof(SparkConfigurationResourceConverter))] + public partial class SparkConfigurationResource : IUtf8JsonSerializable + { + void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) + { + writer.WriteStartObject(); + writer.WritePropertyName("properties"); + writer.WriteObjectValue(Properties); + writer.WriteEndObject(); + } + + internal static SparkConfigurationResource DeserializeSparkConfigurationResource(JsonElement element) + { + SparkConfiguration properties = default; + Optional etag = default; + Optional id = default; + Optional name = default; + Optional type = default; + foreach (var property in element.EnumerateObject()) + { + if (property.NameEquals("properties")) + { + properties = SparkConfiguration.DeserializeSparkConfiguration(property.Value); + continue; + } + if (property.NameEquals("etag")) + { + etag = property.Value.GetString(); + continue; + } + if (property.NameEquals("id")) + { + id = property.Value.GetString(); + continue; + } + if (property.NameEquals("name")) + { + name = property.Value.GetString(); + continue; + } + if (property.NameEquals("type")) + { + type = property.Value.GetString(); + continue; + } + } + return new SparkConfigurationResource(id.Value, name.Value, type.Value, etag.Value, properties); + } + + internal partial class SparkConfigurationResourceConverter : JsonConverter + { + public override void Write(Utf8JsonWriter writer, SparkConfigurationResource model, JsonSerializerOptions options) + { + writer.WriteObjectValue(model); + } + public override SparkConfigurationResource Read(ref Utf8JsonReader reader, Type typeToConvert, JsonSerializerOptions options) + { + using var document = JsonDocument.ParseValue(ref reader); + return DeserializeSparkConfigurationResource(document.RootElement); + } + } + } +} diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SparkConfigurationResource.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SparkConfigurationResource.cs new file mode 100644 index 000000000000..2dd2b06a0417 --- /dev/null +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SparkConfigurationResource.cs @@ -0,0 +1,42 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System; + +namespace Azure.Analytics.Synapse.Artifacts.Models +{ + /// Spark Configuration resource type. + public partial class SparkConfigurationResource : SubResource + { + /// Initializes a new instance of SparkConfigurationResource. + /// Properties of Spark Configuration. + /// is null. + public SparkConfigurationResource(SparkConfiguration properties) + { + if (properties == null) + { + throw new ArgumentNullException(nameof(properties)); + } + + Properties = properties; + } + + /// Initializes a new instance of SparkConfigurationResource. + /// Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}. + /// The name of the resource. + /// The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts". + /// Resource Etag. + /// Properties of Spark Configuration. + internal SparkConfigurationResource(string id, string name, string type, string etag, SparkConfiguration properties) : base(id, name, type, etag) + { + Properties = properties; + } + + /// Properties of Spark Configuration. + public SparkConfiguration Properties { get; set; } + } +} diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SparkJobDefinition.Serialization.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SparkJobDefinition.Serialization.cs index 8c7fcfb3f5c8..cdf77bd5bc71 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SparkJobDefinition.Serialization.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SparkJobDefinition.Serialization.cs @@ -38,6 +38,18 @@ void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) } writer.WritePropertyName("jobProperties"); writer.WriteObjectValue(JobProperties); + if (Optional.IsDefined(Folder)) + { + if (Folder != null) + { + writer.WritePropertyName("folder"); + writer.WriteObjectValue(Folder); + } + else + { + writer.WriteNull("folder"); + } + } foreach (var item in AdditionalProperties) { writer.WritePropertyName(item.Key); @@ -53,6 +65,7 @@ internal static SparkJobDefinition DeserializeSparkJobDefinition(JsonElement ele Optional requiredSparkVersion = default; Optional language = default; SparkJobProperties jobProperties = default; + Optional folder = default; IDictionary additionalProperties = default; Dictionary additionalPropertiesDictionary = new Dictionary(); foreach (var property in element.EnumerateObject()) @@ -82,10 +95,20 @@ internal static SparkJobDefinition DeserializeSparkJobDefinition(JsonElement ele jobProperties = SparkJobProperties.DeserializeSparkJobProperties(property.Value); continue; } + if (property.NameEquals("folder")) + { + if (property.Value.ValueKind == JsonValueKind.Null) + { + folder = null; + continue; + } + folder = SparkJobDefinitionFolder.DeserializeSparkJobDefinitionFolder(property.Value); + continue; + } additionalPropertiesDictionary.Add(property.Name, property.Value.GetObject()); } additionalProperties = additionalPropertiesDictionary; - return new SparkJobDefinition(description.Value, targetBigDataPool, requiredSparkVersion.Value, language.Value, jobProperties, additionalProperties); + return new SparkJobDefinition(description.Value, targetBigDataPool, requiredSparkVersion.Value, language.Value, jobProperties, folder.Value, additionalProperties); } internal partial class SparkJobDefinitionConverter : JsonConverter diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SparkJobDefinition.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SparkJobDefinition.cs index b5780d75cc7a..4bbb7282d606 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SparkJobDefinition.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SparkJobDefinition.cs @@ -40,14 +40,16 @@ public SparkJobDefinition(BigDataPoolReference targetBigDataPool, SparkJobProper /// The required Spark version of the application. /// The language of the Spark application. /// The properties of the Spark job. + /// The folder that this Spark job definition is in. If not specified, this Spark job definition will appear at the root level. /// Additional Properties. - internal SparkJobDefinition(string description, BigDataPoolReference targetBigDataPool, string requiredSparkVersion, string language, SparkJobProperties jobProperties, IDictionary additionalProperties) + internal SparkJobDefinition(string description, BigDataPoolReference targetBigDataPool, string requiredSparkVersion, string language, SparkJobProperties jobProperties, SparkJobDefinitionFolder folder, IDictionary additionalProperties) { Description = description; TargetBigDataPool = targetBigDataPool; RequiredSparkVersion = requiredSparkVersion; Language = language; JobProperties = jobProperties; + Folder = folder; AdditionalProperties = additionalProperties; } @@ -61,6 +63,8 @@ internal SparkJobDefinition(string description, BigDataPoolReference targetBigDa public string Language { get; set; } /// The properties of the Spark job. public SparkJobProperties JobProperties { get; set; } + /// The folder that this Spark job definition is in. If not specified, this Spark job definition will appear at the root level. + public SparkJobDefinitionFolder Folder { get; set; } /// Additional Properties. public IDictionary AdditionalProperties { get; } } diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SparkJobDefinitionFolder.Serialization.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SparkJobDefinitionFolder.Serialization.cs new file mode 100644 index 000000000000..97a6bfeffaf3 --- /dev/null +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SparkJobDefinitionFolder.Serialization.cs @@ -0,0 +1,40 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System.Text.Json; +using Azure.Core; + +namespace Azure.Analytics.Synapse.Artifacts.Models +{ + public partial class SparkJobDefinitionFolder : IUtf8JsonSerializable + { + void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) + { + writer.WriteStartObject(); + if (Optional.IsDefined(Name)) + { + writer.WritePropertyName("name"); + writer.WriteStringValue(Name); + } + writer.WriteEndObject(); + } + + internal static SparkJobDefinitionFolder DeserializeSparkJobDefinitionFolder(JsonElement element) + { + Optional name = default; + foreach (var property in element.EnumerateObject()) + { + if (property.NameEquals("name")) + { + name = property.Value.GetString(); + continue; + } + } + return new SparkJobDefinitionFolder(name.Value); + } + } +} diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SparkJobDefinitionFolder.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SparkJobDefinitionFolder.cs new file mode 100644 index 000000000000..bef3d926adcd --- /dev/null +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SparkJobDefinitionFolder.cs @@ -0,0 +1,28 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +namespace Azure.Analytics.Synapse.Artifacts.Models +{ + /// The folder that this Spark job definition is in. If not specified, this Spark job definition will appear at the root level. + public partial class SparkJobDefinitionFolder + { + /// Initializes a new instance of SparkJobDefinitionFolder. + public SparkJobDefinitionFolder() + { + } + + /// Initializes a new instance of SparkJobDefinitionFolder. + /// The name of the folder that this Spark job definition is in. + internal SparkJobDefinitionFolder(string name) + { + Name = name; + } + + /// The name of the folder that this Spark job definition is in. + public string Name { get; set; } + } +} diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SparkSource.Serialization.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SparkSource.Serialization.cs index 63dca58184b8..2b7e60ab04ce 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SparkSource.Serialization.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SparkSource.Serialization.cs @@ -29,15 +29,10 @@ void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) writer.WritePropertyName("queryTimeout"); writer.WriteObjectValue(QueryTimeout); } - if (Optional.IsCollectionDefined(AdditionalColumns)) + if (Optional.IsDefined(AdditionalColumns)) { writer.WritePropertyName("additionalColumns"); - writer.WriteStartArray(); - foreach (var item in AdditionalColumns) - { - writer.WriteObjectValue(item); - } - writer.WriteEndArray(); + writer.WriteObjectValue(AdditionalColumns); } writer.WritePropertyName("type"); writer.WriteStringValue(Type); @@ -68,7 +63,7 @@ internal static SparkSource DeserializeSparkSource(JsonElement element) { Optional query = default; Optional queryTimeout = default; - Optional> additionalColumns = default; + Optional additionalColumns = default; string type = default; Optional sourceRetryCount = default; Optional sourceRetryWait = default; @@ -104,12 +99,7 @@ internal static SparkSource DeserializeSparkSource(JsonElement element) property.ThrowNonNullablePropertyIsNull(); continue; } - List array = new List(); - foreach (var item in property.Value.EnumerateArray()) - { - array.Add(Models.AdditionalColumns.DeserializeAdditionalColumns(item)); - } - additionalColumns = array; + additionalColumns = property.Value.GetObject(); continue; } if (property.NameEquals("type")) @@ -150,7 +140,7 @@ internal static SparkSource DeserializeSparkSource(JsonElement element) additionalPropertiesDictionary.Add(property.Name, property.Value.GetObject()); } additionalProperties = additionalPropertiesDictionary; - return new SparkSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, queryTimeout.Value, Optional.ToList(additionalColumns), query.Value); + return new SparkSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, queryTimeout.Value, additionalColumns.Value, query.Value); } internal partial class SparkSourceConverter : JsonConverter diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SparkSource.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SparkSource.cs index 16e6b89cc217..8b8601dc29d0 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SparkSource.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SparkSource.cs @@ -25,9 +25,9 @@ public SparkSource() /// The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer). /// Additional Properties. /// Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])). - /// Specifies the additional columns to be added to source data. Type: array of objects (or Expression with resultType array of objects). + /// Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects). /// A query to retrieve data from source. Type: string (or Expression with resultType string). - internal SparkSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object queryTimeout, IList additionalColumns, object query) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties, queryTimeout, additionalColumns) + internal SparkSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object queryTimeout, object additionalColumns, object query) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties, queryTimeout, additionalColumns) { Query = query; Type = type ?? "SparkSource"; diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SqlConnection.Serialization.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SqlConnection.Serialization.cs index 7d474091fcd7..0b1de211dafc 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SqlConnection.Serialization.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SqlConnection.Serialization.cs @@ -19,10 +19,26 @@ public partial class SqlConnection : IUtf8JsonSerializable void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) { writer.WriteStartObject(); - writer.WritePropertyName("type"); - writer.WriteStringValue(Type.ToString()); - writer.WritePropertyName("name"); - writer.WriteStringValue(Name); + if (Optional.IsDefined(Type)) + { + writer.WritePropertyName("type"); + writer.WriteStringValue(Type.Value.ToString()); + } + if (Optional.IsDefined(Name)) + { + writer.WritePropertyName("name"); + writer.WriteStringValue(Name); + } + if (Optional.IsDefined(PoolName)) + { + writer.WritePropertyName("poolName"); + writer.WriteStringValue(PoolName); + } + if (Optional.IsDefined(DatabaseName)) + { + writer.WritePropertyName("databaseName"); + writer.WriteStringValue(DatabaseName); + } foreach (var item in AdditionalProperties) { writer.WritePropertyName(item.Key); @@ -33,14 +49,21 @@ void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) internal static SqlConnection DeserializeSqlConnection(JsonElement element) { - SqlConnectionType type = default; - string name = default; + Optional type = default; + Optional name = default; + Optional poolName = default; + Optional databaseName = default; IDictionary additionalProperties = default; Dictionary additionalPropertiesDictionary = new Dictionary(); foreach (var property in element.EnumerateObject()) { if (property.NameEquals("type")) { + if (property.Value.ValueKind == JsonValueKind.Null) + { + property.ThrowNonNullablePropertyIsNull(); + continue; + } type = new SqlConnectionType(property.Value.GetString()); continue; } @@ -49,10 +72,20 @@ internal static SqlConnection DeserializeSqlConnection(JsonElement element) name = property.Value.GetString(); continue; } + if (property.NameEquals("poolName")) + { + poolName = property.Value.GetString(); + continue; + } + if (property.NameEquals("databaseName")) + { + databaseName = property.Value.GetString(); + continue; + } additionalPropertiesDictionary.Add(property.Name, property.Value.GetObject()); } additionalProperties = additionalPropertiesDictionary; - return new SqlConnection(type, name, additionalProperties); + return new SqlConnection(Optional.ToNullable(type), name.Value, poolName.Value, databaseName.Value, additionalProperties); } internal partial class SqlConnectionConverter : JsonConverter diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SqlConnection.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SqlConnection.cs index 945d27279331..97fa6979ff2f 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SqlConnection.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SqlConnection.cs @@ -5,7 +5,6 @@ #nullable disable -using System; using System.Collections.Generic; using Azure.Core; @@ -15,36 +14,34 @@ namespace Azure.Analytics.Synapse.Artifacts.Models public partial class SqlConnection { /// Initializes a new instance of SqlConnection. - /// The type of the connection. - /// The identifier of the connection. - /// is null. - public SqlConnection(SqlConnectionType type, string name) + public SqlConnection() { - if (name == null) - { - throw new ArgumentNullException(nameof(name)); - } - - Type = type; - Name = name; AdditionalProperties = new ChangeTrackingDictionary(); } /// Initializes a new instance of SqlConnection. /// The type of the connection. /// The identifier of the connection. + /// The associated SQL pool name (supported by SQL pool v3). + /// The associated database name (supported by SQL pool v3). /// Additional Properties. - internal SqlConnection(SqlConnectionType type, string name, IDictionary additionalProperties) + internal SqlConnection(SqlConnectionType? type, string name, string poolName, string databaseName, IDictionary additionalProperties) { Type = type; Name = name; + PoolName = poolName; + DatabaseName = databaseName; AdditionalProperties = additionalProperties; } /// The type of the connection. - public SqlConnectionType Type { get; set; } + public SqlConnectionType? Type { get; set; } /// The identifier of the connection. public string Name { get; set; } + /// The associated SQL pool name (supported by SQL pool v3). + public string PoolName { get; set; } + /// The associated database name (supported by SQL pool v3). + public string DatabaseName { get; set; } /// Additional Properties. public IDictionary AdditionalProperties { get; } } diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SqlDWSource.Serialization.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SqlDWSource.Serialization.cs index 14ad9cb11889..1e0e496beb04 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SqlDWSource.Serialization.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SqlDWSource.Serialization.cs @@ -49,15 +49,10 @@ void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) writer.WritePropertyName("queryTimeout"); writer.WriteObjectValue(QueryTimeout); } - if (Optional.IsCollectionDefined(AdditionalColumns)) + if (Optional.IsDefined(AdditionalColumns)) { writer.WritePropertyName("additionalColumns"); - writer.WriteStartArray(); - foreach (var item in AdditionalColumns) - { - writer.WriteObjectValue(item); - } - writer.WriteEndArray(); + writer.WriteObjectValue(AdditionalColumns); } writer.WritePropertyName("type"); writer.WriteStringValue(Type); @@ -92,7 +87,7 @@ internal static SqlDWSource DeserializeSqlDWSource(JsonElement element) Optional partitionOption = default; Optional partitionSettings = default; Optional queryTimeout = default; - Optional> additionalColumns = default; + Optional additionalColumns = default; string type = default; Optional sourceRetryCount = default; Optional sourceRetryWait = default; @@ -168,12 +163,7 @@ internal static SqlDWSource DeserializeSqlDWSource(JsonElement element) property.ThrowNonNullablePropertyIsNull(); continue; } - List array = new List(); - foreach (var item in property.Value.EnumerateArray()) - { - array.Add(Models.AdditionalColumns.DeserializeAdditionalColumns(item)); - } - additionalColumns = array; + additionalColumns = property.Value.GetObject(); continue; } if (property.NameEquals("type")) @@ -214,7 +204,7 @@ internal static SqlDWSource DeserializeSqlDWSource(JsonElement element) additionalPropertiesDictionary.Add(property.Name, property.Value.GetObject()); } additionalProperties = additionalPropertiesDictionary; - return new SqlDWSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, queryTimeout.Value, Optional.ToList(additionalColumns), sqlReaderQuery.Value, sqlReaderStoredProcedureName.Value, storedProcedureParameters.Value, partitionOption.Value, partitionSettings.Value); + return new SqlDWSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, queryTimeout.Value, additionalColumns.Value, sqlReaderQuery.Value, sqlReaderStoredProcedureName.Value, storedProcedureParameters.Value, partitionOption.Value, partitionSettings.Value); } internal partial class SqlDWSourceConverter : JsonConverter diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SqlDWSource.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SqlDWSource.cs index d278b43313ee..fdc59720bc67 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SqlDWSource.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SqlDWSource.cs @@ -25,13 +25,13 @@ public SqlDWSource() /// The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer). /// Additional Properties. /// Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])). - /// Specifies the additional columns to be added to source data. Type: array of objects (or Expression with resultType array of objects). + /// Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects). /// SQL Data Warehouse reader query. Type: string (or Expression with resultType string). /// Name of the stored procedure for a SQL Data Warehouse source. This cannot be used at the same time as SqlReaderQuery. Type: string (or Expression with resultType string). /// Value and type setting for stored procedure parameters. Example: "{Parameter1: {value: "1", type: "int"}}". Type: object (or Expression with resultType object), itemType: StoredProcedureParameter. /// The partition mechanism that will be used for Sql read in parallel. Possible values include: "None", "PhysicalPartitionsOfTable", "DynamicRange". /// The settings that will be leveraged for Sql source partitioning. - internal SqlDWSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object queryTimeout, IList additionalColumns, object sqlReaderQuery, object sqlReaderStoredProcedureName, object storedProcedureParameters, object partitionOption, SqlPartitionSettings partitionSettings) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties, queryTimeout, additionalColumns) + internal SqlDWSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object queryTimeout, object additionalColumns, object sqlReaderQuery, object sqlReaderStoredProcedureName, object storedProcedureParameters, object partitionOption, SqlPartitionSettings partitionSettings) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties, queryTimeout, additionalColumns) { SqlReaderQuery = sqlReaderQuery; SqlReaderStoredProcedureName = sqlReaderStoredProcedureName; diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SqlMISource.Serialization.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SqlMISource.Serialization.cs index 2c4afe784c9b..b762d80a85d8 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SqlMISource.Serialization.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SqlMISource.Serialization.cs @@ -60,15 +60,10 @@ void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) writer.WritePropertyName("queryTimeout"); writer.WriteObjectValue(QueryTimeout); } - if (Optional.IsCollectionDefined(AdditionalColumns)) + if (Optional.IsDefined(AdditionalColumns)) { writer.WritePropertyName("additionalColumns"); - writer.WriteStartArray(); - foreach (var item in AdditionalColumns) - { - writer.WriteObjectValue(item); - } - writer.WriteEndArray(); + writer.WriteObjectValue(AdditionalColumns); } writer.WritePropertyName("type"); writer.WriteStringValue(Type); @@ -104,7 +99,7 @@ internal static SqlMISource DeserializeSqlMISource(JsonElement element) Optional partitionOption = default; Optional partitionSettings = default; Optional queryTimeout = default; - Optional> additionalColumns = default; + Optional additionalColumns = default; string type = default; Optional sourceRetryCount = default; Optional sourceRetryWait = default; @@ -195,12 +190,7 @@ internal static SqlMISource DeserializeSqlMISource(JsonElement element) property.ThrowNonNullablePropertyIsNull(); continue; } - List array = new List(); - foreach (var item in property.Value.EnumerateArray()) - { - array.Add(Models.AdditionalColumns.DeserializeAdditionalColumns(item)); - } - additionalColumns = array; + additionalColumns = property.Value.GetObject(); continue; } if (property.NameEquals("type")) @@ -241,7 +231,7 @@ internal static SqlMISource DeserializeSqlMISource(JsonElement element) additionalPropertiesDictionary.Add(property.Name, property.Value.GetObject()); } additionalProperties = additionalPropertiesDictionary; - return new SqlMISource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, queryTimeout.Value, Optional.ToList(additionalColumns), sqlReaderQuery.Value, sqlReaderStoredProcedureName.Value, Optional.ToDictionary(storedProcedureParameters), produceAdditionalTypes.Value, partitionOption.Value, partitionSettings.Value); + return new SqlMISource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, queryTimeout.Value, additionalColumns.Value, sqlReaderQuery.Value, sqlReaderStoredProcedureName.Value, Optional.ToDictionary(storedProcedureParameters), produceAdditionalTypes.Value, partitionOption.Value, partitionSettings.Value); } internal partial class SqlMISourceConverter : JsonConverter diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SqlMISource.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SqlMISource.cs index e72fa870f966..abf7bae6e5db 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SqlMISource.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SqlMISource.cs @@ -27,14 +27,14 @@ public SqlMISource() /// The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer). /// Additional Properties. /// Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])). - /// Specifies the additional columns to be added to source data. Type: array of objects (or Expression with resultType array of objects). + /// Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects). /// SQL reader query. Type: string (or Expression with resultType string). /// Name of the stored procedure for a Azure SQL Managed Instance source. This cannot be used at the same time as SqlReaderQuery. Type: string (or Expression with resultType string). /// Value and type setting for stored procedure parameters. Example: "{Parameter1: {value: "1", type: "int"}}". /// Which additional types to produce. /// The partition mechanism that will be used for Sql read in parallel. Possible values include: "None", "PhysicalPartitionsOfTable", "DynamicRange". /// The settings that will be leveraged for Sql source partitioning. - internal SqlMISource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object queryTimeout, IList additionalColumns, object sqlReaderQuery, object sqlReaderStoredProcedureName, IDictionary storedProcedureParameters, object produceAdditionalTypes, object partitionOption, SqlPartitionSettings partitionSettings) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties, queryTimeout, additionalColumns) + internal SqlMISource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object queryTimeout, object additionalColumns, object sqlReaderQuery, object sqlReaderStoredProcedureName, IDictionary storedProcedureParameters, object produceAdditionalTypes, object partitionOption, SqlPartitionSettings partitionSettings) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties, queryTimeout, additionalColumns) { SqlReaderQuery = sqlReaderQuery; SqlReaderStoredProcedureName = sqlReaderStoredProcedureName; diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SqlScript.Serialization.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SqlScript.Serialization.cs index 0c98dbf1950c..532a14a92d76 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SqlScript.Serialization.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SqlScript.Serialization.cs @@ -31,6 +31,18 @@ void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) } writer.WritePropertyName("content"); writer.WriteObjectValue(Content); + if (Optional.IsDefined(Folder)) + { + if (Folder != null) + { + writer.WritePropertyName("folder"); + writer.WriteObjectValue(Folder); + } + else + { + writer.WriteNull("folder"); + } + } foreach (var item in AdditionalProperties) { writer.WritePropertyName(item.Key); @@ -44,6 +56,7 @@ internal static SqlScript DeserializeSqlScript(JsonElement element) Optional description = default; Optional type = default; SqlScriptContent content = default; + Optional folder = default; IDictionary additionalProperties = default; Dictionary additionalPropertiesDictionary = new Dictionary(); foreach (var property in element.EnumerateObject()) @@ -68,10 +81,20 @@ internal static SqlScript DeserializeSqlScript(JsonElement element) content = SqlScriptContent.DeserializeSqlScriptContent(property.Value); continue; } + if (property.NameEquals("folder")) + { + if (property.Value.ValueKind == JsonValueKind.Null) + { + folder = null; + continue; + } + folder = SqlScriptFolder.DeserializeSqlScriptFolder(property.Value); + continue; + } additionalPropertiesDictionary.Add(property.Name, property.Value.GetObject()); } additionalProperties = additionalPropertiesDictionary; - return new SqlScript(description.Value, Optional.ToNullable(type), content, additionalProperties); + return new SqlScript(description.Value, Optional.ToNullable(type), content, folder.Value, additionalProperties); } internal partial class SqlScriptConverter : JsonConverter diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SqlScript.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SqlScript.cs index 5d94688cb29b..2930c3943058 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SqlScript.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SqlScript.cs @@ -32,12 +32,14 @@ public SqlScript(SqlScriptContent content) /// The description of the SQL script. /// The type of the SQL script. /// The content of the SQL script. + /// The folder that this SQL script is in. If not specified, this SQL script will appear at the root level. /// Additional Properties. - internal SqlScript(string description, SqlScriptType? type, SqlScriptContent content, IDictionary additionalProperties) + internal SqlScript(string description, SqlScriptType? type, SqlScriptContent content, SqlScriptFolder folder, IDictionary additionalProperties) { Description = description; Type = type; Content = content; + Folder = folder; AdditionalProperties = additionalProperties; } @@ -47,6 +49,8 @@ internal SqlScript(string description, SqlScriptType? type, SqlScriptContent con public SqlScriptType? Type { get; set; } /// The content of the SQL script. public SqlScriptContent Content { get; set; } + /// The folder that this SQL script is in. If not specified, this SQL script will appear at the root level. + public SqlScriptFolder Folder { get; set; } /// Additional Properties. public IDictionary AdditionalProperties { get; } } diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SqlScriptContent.Serialization.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SqlScriptContent.Serialization.cs index 43d3c9250364..ce47f69b42b5 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SqlScriptContent.Serialization.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SqlScriptContent.Serialization.cs @@ -21,8 +21,16 @@ void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) writer.WriteStartObject(); writer.WritePropertyName("query"); writer.WriteStringValue(Query); - writer.WritePropertyName("currentConnection"); - writer.WriteObjectValue(CurrentConnection); + if (Optional.IsDefined(CurrentConnection)) + { + writer.WritePropertyName("currentConnection"); + writer.WriteObjectValue(CurrentConnection); + } + if (Optional.IsDefined(ResultLimit)) + { + writer.WritePropertyName("resultLimit"); + writer.WriteNumberValue(ResultLimit.Value); + } if (Optional.IsDefined(Metadata)) { writer.WritePropertyName("metadata"); @@ -39,7 +47,8 @@ void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) internal static SqlScriptContent DeserializeSqlScriptContent(JsonElement element) { string query = default; - SqlConnection currentConnection = default; + Optional currentConnection = default; + Optional resultLimit = default; Optional metadata = default; IDictionary additionalProperties = default; Dictionary additionalPropertiesDictionary = new Dictionary(); @@ -52,9 +61,24 @@ internal static SqlScriptContent DeserializeSqlScriptContent(JsonElement element } if (property.NameEquals("currentConnection")) { + if (property.Value.ValueKind == JsonValueKind.Null) + { + property.ThrowNonNullablePropertyIsNull(); + continue; + } currentConnection = SqlConnection.DeserializeSqlConnection(property.Value); continue; } + if (property.NameEquals("resultLimit")) + { + if (property.Value.ValueKind == JsonValueKind.Null) + { + property.ThrowNonNullablePropertyIsNull(); + continue; + } + resultLimit = property.Value.GetInt32(); + continue; + } if (property.NameEquals("metadata")) { if (property.Value.ValueKind == JsonValueKind.Null) @@ -68,7 +92,7 @@ internal static SqlScriptContent DeserializeSqlScriptContent(JsonElement element additionalPropertiesDictionary.Add(property.Name, property.Value.GetObject()); } additionalProperties = additionalPropertiesDictionary; - return new SqlScriptContent(query, currentConnection, metadata.Value, additionalProperties); + return new SqlScriptContent(query, currentConnection.Value, Optional.ToNullable(resultLimit), metadata.Value, additionalProperties); } internal partial class SqlScriptContentConverter : JsonConverter diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SqlScriptContent.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SqlScriptContent.cs index d0f4a4a84cf5..f955bac9491e 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SqlScriptContent.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SqlScriptContent.cs @@ -16,33 +16,29 @@ public partial class SqlScriptContent { /// Initializes a new instance of SqlScriptContent. /// SQL query to execute. - /// The connection used to execute the SQL script. - /// or is null. - public SqlScriptContent(string query, SqlConnection currentConnection) + /// is null. + public SqlScriptContent(string query) { if (query == null) { throw new ArgumentNullException(nameof(query)); } - if (currentConnection == null) - { - throw new ArgumentNullException(nameof(currentConnection)); - } Query = query; - CurrentConnection = currentConnection; AdditionalProperties = new ChangeTrackingDictionary(); } /// Initializes a new instance of SqlScriptContent. /// SQL query to execute. /// The connection used to execute the SQL script. + /// Limit of results, '-1' for no limit. /// The metadata of the SQL script. /// Additional Properties. - internal SqlScriptContent(string query, SqlConnection currentConnection, SqlScriptMetadata metadata, IDictionary additionalProperties) + internal SqlScriptContent(string query, SqlConnection currentConnection, int? resultLimit, SqlScriptMetadata metadata, IDictionary additionalProperties) { Query = query; CurrentConnection = currentConnection; + ResultLimit = resultLimit; Metadata = metadata; AdditionalProperties = additionalProperties; } @@ -51,6 +47,8 @@ internal SqlScriptContent(string query, SqlConnection currentConnection, SqlScri public string Query { get; set; } /// The connection used to execute the SQL script. public SqlConnection CurrentConnection { get; set; } + /// Limit of results, '-1' for no limit. + public int? ResultLimit { get; set; } /// The metadata of the SQL script. public SqlScriptMetadata Metadata { get; set; } /// Additional Properties. diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SqlScriptFolder.Serialization.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SqlScriptFolder.Serialization.cs new file mode 100644 index 000000000000..f254c7bf1b9b --- /dev/null +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SqlScriptFolder.Serialization.cs @@ -0,0 +1,40 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System.Text.Json; +using Azure.Core; + +namespace Azure.Analytics.Synapse.Artifacts.Models +{ + public partial class SqlScriptFolder : IUtf8JsonSerializable + { + void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) + { + writer.WriteStartObject(); + if (Optional.IsDefined(Name)) + { + writer.WritePropertyName("name"); + writer.WriteStringValue(Name); + } + writer.WriteEndObject(); + } + + internal static SqlScriptFolder DeserializeSqlScriptFolder(JsonElement element) + { + Optional name = default; + foreach (var property in element.EnumerateObject()) + { + if (property.NameEquals("name")) + { + name = property.Value.GetString(); + continue; + } + } + return new SqlScriptFolder(name.Value); + } + } +} diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SqlScriptFolder.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SqlScriptFolder.cs new file mode 100644 index 000000000000..a7ad2219b72f --- /dev/null +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SqlScriptFolder.cs @@ -0,0 +1,28 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +namespace Azure.Analytics.Synapse.Artifacts.Models +{ + /// The folder that this SQL script is in. If not specified, this SQL script will appear at the root level. + public partial class SqlScriptFolder + { + /// Initializes a new instance of SqlScriptFolder. + public SqlScriptFolder() + { + } + + /// Initializes a new instance of SqlScriptFolder. + /// The name of the folder that this SQL script is in. + internal SqlScriptFolder(string name) + { + Name = name; + } + + /// The name of the folder that this SQL script is in. + public string Name { get; set; } + } +} diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SqlServerSource.Serialization.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SqlServerSource.Serialization.cs index 6ad376040777..1b9687c6065c 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SqlServerSource.Serialization.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SqlServerSource.Serialization.cs @@ -60,15 +60,10 @@ void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) writer.WritePropertyName("queryTimeout"); writer.WriteObjectValue(QueryTimeout); } - if (Optional.IsCollectionDefined(AdditionalColumns)) + if (Optional.IsDefined(AdditionalColumns)) { writer.WritePropertyName("additionalColumns"); - writer.WriteStartArray(); - foreach (var item in AdditionalColumns) - { - writer.WriteObjectValue(item); - } - writer.WriteEndArray(); + writer.WriteObjectValue(AdditionalColumns); } writer.WritePropertyName("type"); writer.WriteStringValue(Type); @@ -104,7 +99,7 @@ internal static SqlServerSource DeserializeSqlServerSource(JsonElement element) Optional partitionOption = default; Optional partitionSettings = default; Optional queryTimeout = default; - Optional> additionalColumns = default; + Optional additionalColumns = default; string type = default; Optional sourceRetryCount = default; Optional sourceRetryWait = default; @@ -195,12 +190,7 @@ internal static SqlServerSource DeserializeSqlServerSource(JsonElement element) property.ThrowNonNullablePropertyIsNull(); continue; } - List array = new List(); - foreach (var item in property.Value.EnumerateArray()) - { - array.Add(Models.AdditionalColumns.DeserializeAdditionalColumns(item)); - } - additionalColumns = array; + additionalColumns = property.Value.GetObject(); continue; } if (property.NameEquals("type")) @@ -241,7 +231,7 @@ internal static SqlServerSource DeserializeSqlServerSource(JsonElement element) additionalPropertiesDictionary.Add(property.Name, property.Value.GetObject()); } additionalProperties = additionalPropertiesDictionary; - return new SqlServerSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, queryTimeout.Value, Optional.ToList(additionalColumns), sqlReaderQuery.Value, sqlReaderStoredProcedureName.Value, Optional.ToDictionary(storedProcedureParameters), produceAdditionalTypes.Value, partitionOption.Value, partitionSettings.Value); + return new SqlServerSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, queryTimeout.Value, additionalColumns.Value, sqlReaderQuery.Value, sqlReaderStoredProcedureName.Value, Optional.ToDictionary(storedProcedureParameters), produceAdditionalTypes.Value, partitionOption.Value, partitionSettings.Value); } internal partial class SqlServerSourceConverter : JsonConverter diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SqlServerSource.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SqlServerSource.cs index b0f20f97d886..76286e575256 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SqlServerSource.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SqlServerSource.cs @@ -27,14 +27,14 @@ public SqlServerSource() /// The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer). /// Additional Properties. /// Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])). - /// Specifies the additional columns to be added to source data. Type: array of objects (or Expression with resultType array of objects). + /// Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects). /// SQL reader query. Type: string (or Expression with resultType string). /// Name of the stored procedure for a SQL Database source. This cannot be used at the same time as SqlReaderQuery. Type: string (or Expression with resultType string). /// Value and type setting for stored procedure parameters. Example: "{Parameter1: {value: "1", type: "int"}}". /// Which additional types to produce. /// The partition mechanism that will be used for Sql read in parallel. Possible values include: "None", "PhysicalPartitionsOfTable", "DynamicRange". /// The settings that will be leveraged for Sql source partitioning. - internal SqlServerSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object queryTimeout, IList additionalColumns, object sqlReaderQuery, object sqlReaderStoredProcedureName, IDictionary storedProcedureParameters, object produceAdditionalTypes, object partitionOption, SqlPartitionSettings partitionSettings) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties, queryTimeout, additionalColumns) + internal SqlServerSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object queryTimeout, object additionalColumns, object sqlReaderQuery, object sqlReaderStoredProcedureName, IDictionary storedProcedureParameters, object produceAdditionalTypes, object partitionOption, SqlPartitionSettings partitionSettings) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties, queryTimeout, additionalColumns) { SqlReaderQuery = sqlReaderQuery; SqlReaderStoredProcedureName = sqlReaderStoredProcedureName; diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SqlSource.Serialization.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SqlSource.Serialization.cs index 98a14986b275..05439c504a75 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SqlSource.Serialization.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SqlSource.Serialization.cs @@ -60,15 +60,10 @@ void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) writer.WritePropertyName("queryTimeout"); writer.WriteObjectValue(QueryTimeout); } - if (Optional.IsCollectionDefined(AdditionalColumns)) + if (Optional.IsDefined(AdditionalColumns)) { writer.WritePropertyName("additionalColumns"); - writer.WriteStartArray(); - foreach (var item in AdditionalColumns) - { - writer.WriteObjectValue(item); - } - writer.WriteEndArray(); + writer.WriteObjectValue(AdditionalColumns); } writer.WritePropertyName("type"); writer.WriteStringValue(Type); @@ -104,7 +99,7 @@ internal static SqlSource DeserializeSqlSource(JsonElement element) Optional partitionOption = default; Optional partitionSettings = default; Optional queryTimeout = default; - Optional> additionalColumns = default; + Optional additionalColumns = default; string type = default; Optional sourceRetryCount = default; Optional sourceRetryWait = default; @@ -195,12 +190,7 @@ internal static SqlSource DeserializeSqlSource(JsonElement element) property.ThrowNonNullablePropertyIsNull(); continue; } - List array = new List(); - foreach (var item in property.Value.EnumerateArray()) - { - array.Add(Models.AdditionalColumns.DeserializeAdditionalColumns(item)); - } - additionalColumns = array; + additionalColumns = property.Value.GetObject(); continue; } if (property.NameEquals("type")) @@ -241,7 +231,7 @@ internal static SqlSource DeserializeSqlSource(JsonElement element) additionalPropertiesDictionary.Add(property.Name, property.Value.GetObject()); } additionalProperties = additionalPropertiesDictionary; - return new SqlSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, queryTimeout.Value, Optional.ToList(additionalColumns), sqlReaderQuery.Value, sqlReaderStoredProcedureName.Value, Optional.ToDictionary(storedProcedureParameters), isolationLevel.Value, partitionOption.Value, partitionSettings.Value); + return new SqlSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, queryTimeout.Value, additionalColumns.Value, sqlReaderQuery.Value, sqlReaderStoredProcedureName.Value, Optional.ToDictionary(storedProcedureParameters), isolationLevel.Value, partitionOption.Value, partitionSettings.Value); } internal partial class SqlSourceConverter : JsonConverter diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SqlSource.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SqlSource.cs index 25672953b17f..f92cb1d8a0c8 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SqlSource.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SqlSource.cs @@ -27,14 +27,14 @@ public SqlSource() /// The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer). /// Additional Properties. /// Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])). - /// Specifies the additional columns to be added to source data. Type: array of objects (or Expression with resultType array of objects). + /// Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects). /// SQL reader query. Type: string (or Expression with resultType string). /// Name of the stored procedure for a SQL Database source. This cannot be used at the same time as SqlReaderQuery. Type: string (or Expression with resultType string). /// Value and type setting for stored procedure parameters. Example: "{Parameter1: {value: "1", type: "int"}}". /// Specifies the transaction locking behavior for the SQL source. Allowed values: ReadCommitted/ReadUncommitted/RepeatableRead/Serializable/Snapshot. The default value is ReadCommitted. Type: string (or Expression with resultType string). /// The partition mechanism that will be used for Sql read in parallel. Possible values include: "None", "PhysicalPartitionsOfTable", "DynamicRange". /// The settings that will be leveraged for Sql source partitioning. - internal SqlSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object queryTimeout, IList additionalColumns, object sqlReaderQuery, object sqlReaderStoredProcedureName, IDictionary storedProcedureParameters, object isolationLevel, object partitionOption, SqlPartitionSettings partitionSettings) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties, queryTimeout, additionalColumns) + internal SqlSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object queryTimeout, object additionalColumns, object sqlReaderQuery, object sqlReaderStoredProcedureName, IDictionary storedProcedureParameters, object isolationLevel, object partitionOption, SqlPartitionSettings partitionSettings) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties, queryTimeout, additionalColumns) { SqlReaderQuery = sqlReaderQuery; SqlReaderStoredProcedureName = sqlReaderStoredProcedureName; diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SquareSource.Serialization.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SquareSource.Serialization.cs index 10f965645810..97366c25189f 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SquareSource.Serialization.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SquareSource.Serialization.cs @@ -29,15 +29,10 @@ void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) writer.WritePropertyName("queryTimeout"); writer.WriteObjectValue(QueryTimeout); } - if (Optional.IsCollectionDefined(AdditionalColumns)) + if (Optional.IsDefined(AdditionalColumns)) { writer.WritePropertyName("additionalColumns"); - writer.WriteStartArray(); - foreach (var item in AdditionalColumns) - { - writer.WriteObjectValue(item); - } - writer.WriteEndArray(); + writer.WriteObjectValue(AdditionalColumns); } writer.WritePropertyName("type"); writer.WriteStringValue(Type); @@ -68,7 +63,7 @@ internal static SquareSource DeserializeSquareSource(JsonElement element) { Optional query = default; Optional queryTimeout = default; - Optional> additionalColumns = default; + Optional additionalColumns = default; string type = default; Optional sourceRetryCount = default; Optional sourceRetryWait = default; @@ -104,12 +99,7 @@ internal static SquareSource DeserializeSquareSource(JsonElement element) property.ThrowNonNullablePropertyIsNull(); continue; } - List array = new List(); - foreach (var item in property.Value.EnumerateArray()) - { - array.Add(Models.AdditionalColumns.DeserializeAdditionalColumns(item)); - } - additionalColumns = array; + additionalColumns = property.Value.GetObject(); continue; } if (property.NameEquals("type")) @@ -150,7 +140,7 @@ internal static SquareSource DeserializeSquareSource(JsonElement element) additionalPropertiesDictionary.Add(property.Name, property.Value.GetObject()); } additionalProperties = additionalPropertiesDictionary; - return new SquareSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, queryTimeout.Value, Optional.ToList(additionalColumns), query.Value); + return new SquareSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, queryTimeout.Value, additionalColumns.Value, query.Value); } internal partial class SquareSourceConverter : JsonConverter diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SquareSource.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SquareSource.cs index 4a66a9530467..84ba7ebda5f2 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SquareSource.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SquareSource.cs @@ -25,9 +25,9 @@ public SquareSource() /// The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer). /// Additional Properties. /// Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])). - /// Specifies the additional columns to be added to source data. Type: array of objects (or Expression with resultType array of objects). + /// Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects). /// A query to retrieve data from source. Type: string (or Expression with resultType string). - internal SquareSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object queryTimeout, IList additionalColumns, object query) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties, queryTimeout, additionalColumns) + internal SquareSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object queryTimeout, object additionalColumns, object query) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties, queryTimeout, additionalColumns) { Query = query; Type = type ?? "SquareSource"; diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SybaseSource.Serialization.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SybaseSource.Serialization.cs index 2c0d71f99679..9932444eb430 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SybaseSource.Serialization.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SybaseSource.Serialization.cs @@ -29,15 +29,10 @@ void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) writer.WritePropertyName("queryTimeout"); writer.WriteObjectValue(QueryTimeout); } - if (Optional.IsCollectionDefined(AdditionalColumns)) + if (Optional.IsDefined(AdditionalColumns)) { writer.WritePropertyName("additionalColumns"); - writer.WriteStartArray(); - foreach (var item in AdditionalColumns) - { - writer.WriteObjectValue(item); - } - writer.WriteEndArray(); + writer.WriteObjectValue(AdditionalColumns); } writer.WritePropertyName("type"); writer.WriteStringValue(Type); @@ -68,7 +63,7 @@ internal static SybaseSource DeserializeSybaseSource(JsonElement element) { Optional query = default; Optional queryTimeout = default; - Optional> additionalColumns = default; + Optional additionalColumns = default; string type = default; Optional sourceRetryCount = default; Optional sourceRetryWait = default; @@ -104,12 +99,7 @@ internal static SybaseSource DeserializeSybaseSource(JsonElement element) property.ThrowNonNullablePropertyIsNull(); continue; } - List array = new List(); - foreach (var item in property.Value.EnumerateArray()) - { - array.Add(Models.AdditionalColumns.DeserializeAdditionalColumns(item)); - } - additionalColumns = array; + additionalColumns = property.Value.GetObject(); continue; } if (property.NameEquals("type")) @@ -150,7 +140,7 @@ internal static SybaseSource DeserializeSybaseSource(JsonElement element) additionalPropertiesDictionary.Add(property.Name, property.Value.GetObject()); } additionalProperties = additionalPropertiesDictionary; - return new SybaseSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, queryTimeout.Value, Optional.ToList(additionalColumns), query.Value); + return new SybaseSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, queryTimeout.Value, additionalColumns.Value, query.Value); } internal partial class SybaseSourceConverter : JsonConverter diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SybaseSource.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SybaseSource.cs index a683e25b4ad9..2a1b5ff3d780 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SybaseSource.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SybaseSource.cs @@ -25,9 +25,9 @@ public SybaseSource() /// The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer). /// Additional Properties. /// Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])). - /// Specifies the additional columns to be added to source data. Type: array of objects (or Expression with resultType array of objects). + /// Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects). /// Database query. Type: string (or Expression with resultType string). - internal SybaseSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object queryTimeout, IList additionalColumns, object query) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties, queryTimeout, additionalColumns) + internal SybaseSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object queryTimeout, object additionalColumns, object query) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties, queryTimeout, additionalColumns) { Query = query; Type = type ?? "SybaseSource"; diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SynapseSparkJobDefinitionActivity.Serialization.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SynapseSparkJobDefinitionActivity.Serialization.cs index 61086c298015..a6ce1643020a 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SynapseSparkJobDefinitionActivity.Serialization.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SynapseSparkJobDefinitionActivity.Serialization.cs @@ -62,6 +62,16 @@ void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) writer.WriteStartObject(); writer.WritePropertyName("sparkJob"); writer.WriteObjectValue(SparkJob); + if (Optional.IsCollectionDefined(Arguments)) + { + writer.WritePropertyName("args"); + writer.WriteStartArray(); + foreach (var item in Arguments) + { + writer.WriteObjectValue(item); + } + writer.WriteEndArray(); + } writer.WriteEndObject(); foreach (var item in AdditionalProperties) { @@ -81,6 +91,7 @@ internal static SynapseSparkJobDefinitionActivity DeserializeSynapseSparkJobDefi Optional> dependsOn = default; Optional> userProperties = default; SynapseSparkJobReference sparkJob = default; + Optional> args = default; IDictionary additionalProperties = default; Dictionary additionalPropertiesDictionary = new Dictionary(); foreach (var property in element.EnumerateObject()) @@ -164,13 +175,28 @@ internal static SynapseSparkJobDefinitionActivity DeserializeSynapseSparkJobDefi sparkJob = SynapseSparkJobReference.DeserializeSynapseSparkJobReference(property0.Value); continue; } + if (property0.NameEquals("args")) + { + if (property0.Value.ValueKind == JsonValueKind.Null) + { + property0.ThrowNonNullablePropertyIsNull(); + continue; + } + List array = new List(); + foreach (var item in property0.Value.EnumerateArray()) + { + array.Add(item.GetObject()); + } + args = array; + continue; + } } continue; } additionalPropertiesDictionary.Add(property.Name, property.Value.GetObject()); } additionalProperties = additionalPropertiesDictionary; - return new SynapseSparkJobDefinitionActivity(name, type, description.Value, Optional.ToList(dependsOn), Optional.ToList(userProperties), additionalProperties, linkedServiceName.Value, policy.Value, sparkJob); + return new SynapseSparkJobDefinitionActivity(name, type, description.Value, Optional.ToList(dependsOn), Optional.ToList(userProperties), additionalProperties, linkedServiceName.Value, policy.Value, sparkJob, Optional.ToList(args)); } internal partial class SynapseSparkJobDefinitionActivityConverter : JsonConverter diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SynapseSparkJobDefinitionActivity.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SynapseSparkJobDefinitionActivity.cs index 2c222947c1ae..6effaea1a5f7 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SynapseSparkJobDefinitionActivity.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/SynapseSparkJobDefinitionActivity.cs @@ -7,6 +7,7 @@ using System; using System.Collections.Generic; +using Azure.Core; namespace Azure.Analytics.Synapse.Artifacts.Models { @@ -29,6 +30,7 @@ public SynapseSparkJobDefinitionActivity(string name, SynapseSparkJobReference s } SparkJob = sparkJob; + Arguments = new ChangeTrackingList(); Type = "SparkJob"; } @@ -42,13 +44,17 @@ public SynapseSparkJobDefinitionActivity(string name, SynapseSparkJobReference s /// Linked service reference. /// Activity policy. /// Synapse spark job reference. - internal SynapseSparkJobDefinitionActivity(string name, string type, string description, IList dependsOn, IList userProperties, IDictionary additionalProperties, LinkedServiceReference linkedServiceName, ActivityPolicy policy, SynapseSparkJobReference sparkJob) : base(name, type, description, dependsOn, userProperties, additionalProperties, linkedServiceName, policy) + /// User specified arguments to SynapseSparkJobDefinitionActivity. + internal SynapseSparkJobDefinitionActivity(string name, string type, string description, IList dependsOn, IList userProperties, IDictionary additionalProperties, LinkedServiceReference linkedServiceName, ActivityPolicy policy, SynapseSparkJobReference sparkJob, IList arguments) : base(name, type, description, dependsOn, userProperties, additionalProperties, linkedServiceName, policy) { SparkJob = sparkJob; + Arguments = arguments; Type = type ?? "SparkJob"; } /// Synapse spark job reference. public SynapseSparkJobReference SparkJob { get; set; } + /// User specified arguments to SynapseSparkJobDefinitionActivity. + public IList Arguments { get; } } } diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/TabularSource.Serialization.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/TabularSource.Serialization.cs index d220a106f3ae..d83fda5417f6 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/TabularSource.Serialization.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/TabularSource.Serialization.cs @@ -24,15 +24,10 @@ void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) writer.WritePropertyName("queryTimeout"); writer.WriteObjectValue(QueryTimeout); } - if (Optional.IsCollectionDefined(AdditionalColumns)) + if (Optional.IsDefined(AdditionalColumns)) { writer.WritePropertyName("additionalColumns"); - writer.WriteStartArray(); - foreach (var item in AdditionalColumns) - { - writer.WriteObjectValue(item); - } - writer.WriteEndArray(); + writer.WriteObjectValue(AdditionalColumns); } writer.WritePropertyName("type"); writer.WriteStringValue(Type); @@ -66,6 +61,7 @@ internal static TabularSource DeserializeTabularSource(JsonElement element) switch (discriminator.GetString()) { case "AmazonMWSSource": return AmazonMWSSource.DeserializeAmazonMWSSource(element); + case "AmazonRdsForSqlServerSource": return AmazonRdsForSqlServerSource.DeserializeAmazonRdsForSqlServerSource(element); case "AmazonRedshiftSource": return AmazonRedshiftSource.DeserializeAmazonRedshiftSource(element); case "AzureMariaDBSource": return AzureMariaDBSource.DeserializeAzureMariaDBSource(element); case "AzureMySqlSource": return AzureMySqlSource.DeserializeAzureMySqlSource(element); @@ -125,7 +121,7 @@ internal static TabularSource DeserializeTabularSource(JsonElement element) } } Optional queryTimeout = default; - Optional> additionalColumns = default; + Optional additionalColumns = default; string type = default; Optional sourceRetryCount = default; Optional sourceRetryWait = default; @@ -151,12 +147,7 @@ internal static TabularSource DeserializeTabularSource(JsonElement element) property.ThrowNonNullablePropertyIsNull(); continue; } - List array = new List(); - foreach (var item in property.Value.EnumerateArray()) - { - array.Add(Models.AdditionalColumns.DeserializeAdditionalColumns(item)); - } - additionalColumns = array; + additionalColumns = property.Value.GetObject(); continue; } if (property.NameEquals("type")) @@ -197,7 +188,7 @@ internal static TabularSource DeserializeTabularSource(JsonElement element) additionalPropertiesDictionary.Add(property.Name, property.Value.GetObject()); } additionalProperties = additionalPropertiesDictionary; - return new TabularSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, queryTimeout.Value, Optional.ToList(additionalColumns)); + return new TabularSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, queryTimeout.Value, additionalColumns.Value); } internal partial class TabularSourceConverter : JsonConverter diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/TabularSource.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/TabularSource.cs index dc775feb28d3..f563e2d8c241 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/TabularSource.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/TabularSource.cs @@ -6,7 +6,6 @@ #nullable disable using System.Collections.Generic; -using Azure.Core; namespace Azure.Analytics.Synapse.Artifacts.Models { @@ -16,7 +15,6 @@ public partial class TabularSource : CopySource /// Initializes a new instance of TabularSource. public TabularSource() { - AdditionalColumns = new ChangeTrackingList(); Type = "TabularSource"; } @@ -27,8 +25,8 @@ public TabularSource() /// The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer). /// Additional Properties. /// Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])). - /// Specifies the additional columns to be added to source data. Type: array of objects (or Expression with resultType array of objects). - internal TabularSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object queryTimeout, IList additionalColumns) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties) + /// Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects). + internal TabularSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object queryTimeout, object additionalColumns) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties) { QueryTimeout = queryTimeout; AdditionalColumns = additionalColumns; @@ -37,7 +35,7 @@ internal TabularSource(string type, object sourceRetryCount, object sourceRetryW /// Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])). public object QueryTimeout { get; set; } - /// Specifies the additional columns to be added to source data. Type: array of objects (or Expression with resultType array of objects). - public IList AdditionalColumns { get; } + /// Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects). + public object AdditionalColumns { get; set; } } } diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/TeradataSource.Serialization.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/TeradataSource.Serialization.cs index 59db3373dbf8..185507c945af 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/TeradataSource.Serialization.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/TeradataSource.Serialization.cs @@ -39,15 +39,10 @@ void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) writer.WritePropertyName("queryTimeout"); writer.WriteObjectValue(QueryTimeout); } - if (Optional.IsCollectionDefined(AdditionalColumns)) + if (Optional.IsDefined(AdditionalColumns)) { writer.WritePropertyName("additionalColumns"); - writer.WriteStartArray(); - foreach (var item in AdditionalColumns) - { - writer.WriteObjectValue(item); - } - writer.WriteEndArray(); + writer.WriteObjectValue(AdditionalColumns); } writer.WritePropertyName("type"); writer.WriteStringValue(Type); @@ -80,7 +75,7 @@ internal static TeradataSource DeserializeTeradataSource(JsonElement element) Optional partitionOption = default; Optional partitionSettings = default; Optional queryTimeout = default; - Optional> additionalColumns = default; + Optional additionalColumns = default; string type = default; Optional sourceRetryCount = default; Optional sourceRetryWait = default; @@ -136,12 +131,7 @@ internal static TeradataSource DeserializeTeradataSource(JsonElement element) property.ThrowNonNullablePropertyIsNull(); continue; } - List array = new List(); - foreach (var item in property.Value.EnumerateArray()) - { - array.Add(Models.AdditionalColumns.DeserializeAdditionalColumns(item)); - } - additionalColumns = array; + additionalColumns = property.Value.GetObject(); continue; } if (property.NameEquals("type")) @@ -182,7 +172,7 @@ internal static TeradataSource DeserializeTeradataSource(JsonElement element) additionalPropertiesDictionary.Add(property.Name, property.Value.GetObject()); } additionalProperties = additionalPropertiesDictionary; - return new TeradataSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, queryTimeout.Value, Optional.ToList(additionalColumns), query.Value, Optional.ToNullable(partitionOption), partitionSettings.Value); + return new TeradataSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, queryTimeout.Value, additionalColumns.Value, query.Value, Optional.ToNullable(partitionOption), partitionSettings.Value); } internal partial class TeradataSourceConverter : JsonConverter diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/TeradataSource.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/TeradataSource.cs index 733671611b57..7f95f4af5913 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/TeradataSource.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/TeradataSource.cs @@ -25,11 +25,11 @@ public TeradataSource() /// The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer). /// Additional Properties. /// Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])). - /// Specifies the additional columns to be added to source data. Type: array of objects (or Expression with resultType array of objects). + /// Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects). /// Teradata query. Type: string (or Expression with resultType string). /// The partition mechanism that will be used for teradata read in parallel. /// The settings that will be leveraged for teradata source partitioning. - internal TeradataSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object queryTimeout, IList additionalColumns, object query, TeradataPartitionOption? partitionOption, TeradataPartitionSettings partitionSettings) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties, queryTimeout, additionalColumns) + internal TeradataSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object queryTimeout, object additionalColumns, object query, TeradataPartitionOption? partitionOption, TeradataPartitionSettings partitionSettings) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties, queryTimeout, additionalColumns) { Query = query; PartitionOption = partitionOption; diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/VerticaSource.Serialization.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/VerticaSource.Serialization.cs index 55063d5d5e09..da3536af86f4 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/VerticaSource.Serialization.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/VerticaSource.Serialization.cs @@ -29,15 +29,10 @@ void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) writer.WritePropertyName("queryTimeout"); writer.WriteObjectValue(QueryTimeout); } - if (Optional.IsCollectionDefined(AdditionalColumns)) + if (Optional.IsDefined(AdditionalColumns)) { writer.WritePropertyName("additionalColumns"); - writer.WriteStartArray(); - foreach (var item in AdditionalColumns) - { - writer.WriteObjectValue(item); - } - writer.WriteEndArray(); + writer.WriteObjectValue(AdditionalColumns); } writer.WritePropertyName("type"); writer.WriteStringValue(Type); @@ -68,7 +63,7 @@ internal static VerticaSource DeserializeVerticaSource(JsonElement element) { Optional query = default; Optional queryTimeout = default; - Optional> additionalColumns = default; + Optional additionalColumns = default; string type = default; Optional sourceRetryCount = default; Optional sourceRetryWait = default; @@ -104,12 +99,7 @@ internal static VerticaSource DeserializeVerticaSource(JsonElement element) property.ThrowNonNullablePropertyIsNull(); continue; } - List array = new List(); - foreach (var item in property.Value.EnumerateArray()) - { - array.Add(Models.AdditionalColumns.DeserializeAdditionalColumns(item)); - } - additionalColumns = array; + additionalColumns = property.Value.GetObject(); continue; } if (property.NameEquals("type")) @@ -150,7 +140,7 @@ internal static VerticaSource DeserializeVerticaSource(JsonElement element) additionalPropertiesDictionary.Add(property.Name, property.Value.GetObject()); } additionalProperties = additionalPropertiesDictionary; - return new VerticaSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, queryTimeout.Value, Optional.ToList(additionalColumns), query.Value); + return new VerticaSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, queryTimeout.Value, additionalColumns.Value, query.Value); } internal partial class VerticaSourceConverter : JsonConverter diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/VerticaSource.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/VerticaSource.cs index 18a510ab9249..c4c8e4904e53 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/VerticaSource.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/VerticaSource.cs @@ -25,9 +25,9 @@ public VerticaSource() /// The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer). /// Additional Properties. /// Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])). - /// Specifies the additional columns to be added to source data. Type: array of objects (or Expression with resultType array of objects). + /// Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects). /// A query to retrieve data from source. Type: string (or Expression with resultType string). - internal VerticaSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object queryTimeout, IList additionalColumns, object query) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties, queryTimeout, additionalColumns) + internal VerticaSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object queryTimeout, object additionalColumns, object query) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties, queryTimeout, additionalColumns) { Query = query; Type = type ?? "VerticaSource"; diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/WebSource.Serialization.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/WebSource.Serialization.cs index bad1013d2f7d..00394b4db2a5 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/WebSource.Serialization.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/WebSource.Serialization.cs @@ -19,15 +19,10 @@ public partial class WebSource : IUtf8JsonSerializable void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) { writer.WriteStartObject(); - if (Optional.IsCollectionDefined(AdditionalColumns)) + if (Optional.IsDefined(AdditionalColumns)) { writer.WritePropertyName("additionalColumns"); - writer.WriteStartArray(); - foreach (var item in AdditionalColumns) - { - writer.WriteObjectValue(item); - } - writer.WriteEndArray(); + writer.WriteObjectValue(AdditionalColumns); } writer.WritePropertyName("type"); writer.WriteStringValue(Type); @@ -56,7 +51,7 @@ void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) internal static WebSource DeserializeWebSource(JsonElement element) { - Optional> additionalColumns = default; + Optional additionalColumns = default; string type = default; Optional sourceRetryCount = default; Optional sourceRetryWait = default; @@ -72,12 +67,7 @@ internal static WebSource DeserializeWebSource(JsonElement element) property.ThrowNonNullablePropertyIsNull(); continue; } - List array = new List(); - foreach (var item in property.Value.EnumerateArray()) - { - array.Add(Models.AdditionalColumns.DeserializeAdditionalColumns(item)); - } - additionalColumns = array; + additionalColumns = property.Value.GetObject(); continue; } if (property.NameEquals("type")) @@ -118,7 +108,7 @@ internal static WebSource DeserializeWebSource(JsonElement element) additionalPropertiesDictionary.Add(property.Name, property.Value.GetObject()); } additionalProperties = additionalPropertiesDictionary; - return new WebSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, Optional.ToList(additionalColumns)); + return new WebSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, additionalColumns.Value); } internal partial class WebSourceConverter : JsonConverter diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/WebSource.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/WebSource.cs index 436677841468..6a80b8c511df 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/WebSource.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/WebSource.cs @@ -6,7 +6,6 @@ #nullable disable using System.Collections.Generic; -using Azure.Core; namespace Azure.Analytics.Synapse.Artifacts.Models { @@ -16,7 +15,6 @@ public partial class WebSource : CopySource /// Initializes a new instance of WebSource. public WebSource() { - AdditionalColumns = new ChangeTrackingList(); Type = "WebSource"; } @@ -26,14 +24,14 @@ public WebSource() /// Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])). /// The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer). /// Additional Properties. - /// Specifies the additional columns to be added to source data. Type: array of objects (or Expression with resultType array of objects). - internal WebSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, IList additionalColumns) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties) + /// Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects). + internal WebSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object additionalColumns) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties) { AdditionalColumns = additionalColumns; Type = type ?? "WebSource"; } - /// Specifies the additional columns to be added to source data. Type: array of objects (or Expression with resultType array of objects). - public IList AdditionalColumns { get; } + /// Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects). + public object AdditionalColumns { get; set; } } } diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/WorkspaceRepositoryConfiguration.Serialization.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/WorkspaceRepositoryConfiguration.Serialization.cs index c16b76d5d172..696fb446e3c5 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/WorkspaceRepositoryConfiguration.Serialization.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/WorkspaceRepositoryConfiguration.Serialization.cs @@ -63,6 +63,16 @@ void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) writer.WritePropertyName("tenantId"); writer.WriteStringValue(TenantId.Value); } + if (Optional.IsDefined(ClientId)) + { + writer.WritePropertyName("clientId"); + writer.WriteStringValue(ClientId); + } + if (Optional.IsDefined(ClientSecret)) + { + writer.WritePropertyName("clientSecret"); + writer.WriteObjectValue(ClientSecret); + } writer.WriteEndObject(); } @@ -77,6 +87,8 @@ internal static WorkspaceRepositoryConfiguration DeserializeWorkspaceRepositoryC Optional rootFolder = default; Optional lastCommitId = default; Optional tenantId = default; + Optional clientId = default; + Optional clientSecret = default; foreach (var property in element.EnumerateObject()) { if (property.NameEquals("type")) @@ -129,8 +141,23 @@ internal static WorkspaceRepositoryConfiguration DeserializeWorkspaceRepositoryC tenantId = property.Value.GetGuid(); continue; } + if (property.NameEquals("clientId")) + { + clientId = property.Value.GetString(); + continue; + } + if (property.NameEquals("clientSecret")) + { + if (property.Value.ValueKind == JsonValueKind.Null) + { + property.ThrowNonNullablePropertyIsNull(); + continue; + } + clientSecret = GitHubClientSecret.DeserializeGitHubClientSecret(property.Value); + continue; + } } - return new WorkspaceRepositoryConfiguration(type.Value, hostName.Value, accountName.Value, projectName.Value, repositoryName.Value, collaborationBranch.Value, rootFolder.Value, lastCommitId.Value, Optional.ToNullable(tenantId)); + return new WorkspaceRepositoryConfiguration(type.Value, hostName.Value, accountName.Value, projectName.Value, repositoryName.Value, collaborationBranch.Value, rootFolder.Value, lastCommitId.Value, Optional.ToNullable(tenantId), clientId.Value, clientSecret.Value); } internal partial class WorkspaceRepositoryConfigurationConverter : JsonConverter diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/WorkspaceRepositoryConfiguration.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/WorkspaceRepositoryConfiguration.cs index c9053d64cffc..6b52520016e4 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/WorkspaceRepositoryConfiguration.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/WorkspaceRepositoryConfiguration.cs @@ -27,7 +27,9 @@ public WorkspaceRepositoryConfiguration() /// Root folder to use in the repository. /// The last commit ID. /// The VSTS tenant ID. - internal WorkspaceRepositoryConfiguration(string type, string hostName, string accountName, string projectName, string repositoryName, string collaborationBranch, string rootFolder, string lastCommitId, Guid? tenantId) + /// GitHub bring your own app client id. + /// GitHub bring your own app client secret information. + internal WorkspaceRepositoryConfiguration(string type, string hostName, string accountName, string projectName, string repositoryName, string collaborationBranch, string rootFolder, string lastCommitId, Guid? tenantId, string clientId, GitHubClientSecret clientSecret) { Type = type; HostName = hostName; @@ -38,6 +40,8 @@ internal WorkspaceRepositoryConfiguration(string type, string hostName, string a RootFolder = rootFolder; LastCommitId = lastCommitId; TenantId = tenantId; + ClientId = clientId; + ClientSecret = clientSecret; } /// Type of workspace repositoryID configuration. Example WorkspaceVSTSConfiguration, WorkspaceGitHubConfiguration. @@ -58,5 +62,9 @@ internal WorkspaceRepositoryConfiguration(string type, string hostName, string a public string LastCommitId { get; set; } /// The VSTS tenant ID. public Guid? TenantId { get; set; } + /// GitHub bring your own app client id. + public string ClientId { get; set; } + /// GitHub bring your own app client secret information. + public GitHubClientSecret ClientSecret { get; set; } } } diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/XeroSource.Serialization.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/XeroSource.Serialization.cs index c9b98782c67c..a1f50c160f5b 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/XeroSource.Serialization.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/XeroSource.Serialization.cs @@ -29,15 +29,10 @@ void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) writer.WritePropertyName("queryTimeout"); writer.WriteObjectValue(QueryTimeout); } - if (Optional.IsCollectionDefined(AdditionalColumns)) + if (Optional.IsDefined(AdditionalColumns)) { writer.WritePropertyName("additionalColumns"); - writer.WriteStartArray(); - foreach (var item in AdditionalColumns) - { - writer.WriteObjectValue(item); - } - writer.WriteEndArray(); + writer.WriteObjectValue(AdditionalColumns); } writer.WritePropertyName("type"); writer.WriteStringValue(Type); @@ -68,7 +63,7 @@ internal static XeroSource DeserializeXeroSource(JsonElement element) { Optional query = default; Optional queryTimeout = default; - Optional> additionalColumns = default; + Optional additionalColumns = default; string type = default; Optional sourceRetryCount = default; Optional sourceRetryWait = default; @@ -104,12 +99,7 @@ internal static XeroSource DeserializeXeroSource(JsonElement element) property.ThrowNonNullablePropertyIsNull(); continue; } - List array = new List(); - foreach (var item in property.Value.EnumerateArray()) - { - array.Add(Models.AdditionalColumns.DeserializeAdditionalColumns(item)); - } - additionalColumns = array; + additionalColumns = property.Value.GetObject(); continue; } if (property.NameEquals("type")) @@ -150,7 +140,7 @@ internal static XeroSource DeserializeXeroSource(JsonElement element) additionalPropertiesDictionary.Add(property.Name, property.Value.GetObject()); } additionalProperties = additionalPropertiesDictionary; - return new XeroSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, queryTimeout.Value, Optional.ToList(additionalColumns), query.Value); + return new XeroSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, queryTimeout.Value, additionalColumns.Value, query.Value); } internal partial class XeroSourceConverter : JsonConverter diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/XeroSource.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/XeroSource.cs index 664f14e289a3..f8f7236ddc7c 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/XeroSource.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/XeroSource.cs @@ -25,9 +25,9 @@ public XeroSource() /// The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer). /// Additional Properties. /// Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])). - /// Specifies the additional columns to be added to source data. Type: array of objects (or Expression with resultType array of objects). + /// Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects). /// A query to retrieve data from source. Type: string (or Expression with resultType string). - internal XeroSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object queryTimeout, IList additionalColumns, object query) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties, queryTimeout, additionalColumns) + internal XeroSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object queryTimeout, object additionalColumns, object query) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties, queryTimeout, additionalColumns) { Query = query; Type = type ?? "XeroSource"; diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/XmlSource.Serialization.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/XmlSource.Serialization.cs index f7d539d66a07..a5b3e8a71180 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/XmlSource.Serialization.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/XmlSource.Serialization.cs @@ -29,15 +29,10 @@ void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) writer.WritePropertyName("formatSettings"); writer.WriteObjectValue(FormatSettings); } - if (Optional.IsCollectionDefined(AdditionalColumns)) + if (Optional.IsDefined(AdditionalColumns)) { writer.WritePropertyName("additionalColumns"); - writer.WriteStartArray(); - foreach (var item in AdditionalColumns) - { - writer.WriteObjectValue(item); - } - writer.WriteEndArray(); + writer.WriteObjectValue(AdditionalColumns); } writer.WritePropertyName("type"); writer.WriteStringValue(Type); @@ -68,7 +63,7 @@ internal static XmlSource DeserializeXmlSource(JsonElement element) { Optional storeSettings = default; Optional formatSettings = default; - Optional> additionalColumns = default; + Optional additionalColumns = default; string type = default; Optional sourceRetryCount = default; Optional sourceRetryWait = default; @@ -104,12 +99,7 @@ internal static XmlSource DeserializeXmlSource(JsonElement element) property.ThrowNonNullablePropertyIsNull(); continue; } - List array = new List(); - foreach (var item in property.Value.EnumerateArray()) - { - array.Add(Models.AdditionalColumns.DeserializeAdditionalColumns(item)); - } - additionalColumns = array; + additionalColumns = property.Value.GetObject(); continue; } if (property.NameEquals("type")) @@ -150,7 +140,7 @@ internal static XmlSource DeserializeXmlSource(JsonElement element) additionalPropertiesDictionary.Add(property.Name, property.Value.GetObject()); } additionalProperties = additionalPropertiesDictionary; - return new XmlSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, storeSettings.Value, formatSettings.Value, Optional.ToList(additionalColumns)); + return new XmlSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, storeSettings.Value, formatSettings.Value, additionalColumns.Value); } internal partial class XmlSourceConverter : JsonConverter diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/XmlSource.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/XmlSource.cs index e31890e0911e..37f359f85e0b 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/XmlSource.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/XmlSource.cs @@ -6,7 +6,6 @@ #nullable disable using System.Collections.Generic; -using Azure.Core; namespace Azure.Analytics.Synapse.Artifacts.Models { @@ -16,7 +15,6 @@ public partial class XmlSource : CopySource /// Initializes a new instance of XmlSource. public XmlSource() { - AdditionalColumns = new ChangeTrackingList(); Type = "XmlSource"; } @@ -28,8 +26,8 @@ public XmlSource() /// Additional Properties. /// Xml store settings. /// Xml format settings. - /// Specifies the additional columns to be added to source data. Type: array of objects (or Expression with resultType array of objects). - internal XmlSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, StoreReadSettings storeSettings, XmlReadSettings formatSettings, IList additionalColumns) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties) + /// Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects). + internal XmlSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, StoreReadSettings storeSettings, XmlReadSettings formatSettings, object additionalColumns) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties) { StoreSettings = storeSettings; FormatSettings = formatSettings; @@ -41,7 +39,7 @@ internal XmlSource(string type, object sourceRetryCount, object sourceRetryWait, public StoreReadSettings StoreSettings { get; set; } /// Xml format settings. public XmlReadSettings FormatSettings { get; set; } - /// Specifies the additional columns to be added to source data. Type: array of objects (or Expression with resultType array of objects). - public IList AdditionalColumns { get; } + /// Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects). + public object AdditionalColumns { get; set; } } } diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/ZohoSource.Serialization.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/ZohoSource.Serialization.cs index 7614dfdebbff..7f6f843318f4 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/ZohoSource.Serialization.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/ZohoSource.Serialization.cs @@ -29,15 +29,10 @@ void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) writer.WritePropertyName("queryTimeout"); writer.WriteObjectValue(QueryTimeout); } - if (Optional.IsCollectionDefined(AdditionalColumns)) + if (Optional.IsDefined(AdditionalColumns)) { writer.WritePropertyName("additionalColumns"); - writer.WriteStartArray(); - foreach (var item in AdditionalColumns) - { - writer.WriteObjectValue(item); - } - writer.WriteEndArray(); + writer.WriteObjectValue(AdditionalColumns); } writer.WritePropertyName("type"); writer.WriteStringValue(Type); @@ -68,7 +63,7 @@ internal static ZohoSource DeserializeZohoSource(JsonElement element) { Optional query = default; Optional queryTimeout = default; - Optional> additionalColumns = default; + Optional additionalColumns = default; string type = default; Optional sourceRetryCount = default; Optional sourceRetryWait = default; @@ -104,12 +99,7 @@ internal static ZohoSource DeserializeZohoSource(JsonElement element) property.ThrowNonNullablePropertyIsNull(); continue; } - List array = new List(); - foreach (var item in property.Value.EnumerateArray()) - { - array.Add(Models.AdditionalColumns.DeserializeAdditionalColumns(item)); - } - additionalColumns = array; + additionalColumns = property.Value.GetObject(); continue; } if (property.NameEquals("type")) @@ -150,7 +140,7 @@ internal static ZohoSource DeserializeZohoSource(JsonElement element) additionalPropertiesDictionary.Add(property.Name, property.Value.GetObject()); } additionalProperties = additionalPropertiesDictionary; - return new ZohoSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, queryTimeout.Value, Optional.ToList(additionalColumns), query.Value); + return new ZohoSource(type, sourceRetryCount.Value, sourceRetryWait.Value, maxConcurrentConnections.Value, additionalProperties, queryTimeout.Value, additionalColumns.Value, query.Value); } internal partial class ZohoSourceConverter : JsonConverter diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/ZohoSource.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/ZohoSource.cs index 46ddbbe379c8..838615cf85d1 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/ZohoSource.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/ZohoSource.cs @@ -25,9 +25,9 @@ public ZohoSource() /// The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer). /// Additional Properties. /// Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])). - /// Specifies the additional columns to be added to source data. Type: array of objects (or Expression with resultType array of objects). + /// Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects). /// A query to retrieve data from source. Type: string (or Expression with resultType string). - internal ZohoSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object queryTimeout, IList additionalColumns, object query) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties, queryTimeout, additionalColumns) + internal ZohoSource(string type, object sourceRetryCount, object sourceRetryWait, object maxConcurrentConnections, IDictionary additionalProperties, object queryTimeout, object additionalColumns, object query) : base(type, sourceRetryCount, sourceRetryWait, maxConcurrentConnections, additionalProperties, queryTimeout, additionalColumns) { Query = query; Type = type ?? "ZohoSource"; diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/NotebookClient.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/NotebookClient.cs index 5987c4d06e38..1b57624855fc 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/NotebookClient.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/NotebookClient.cs @@ -46,17 +46,16 @@ public NotebookClient(Uri endpoint, TokenCredential credential, ArtifactsClientO _clientDiagnostics = new ClientDiagnostics(options); string[] scopes = { "https://dev.azuresynapse.net/.default" }; _pipeline = HttpPipelineBuilder.Build(options, new BearerTokenAuthenticationPolicy(credential, scopes)); - RestClient = new NotebookRestClient(_clientDiagnostics, _pipeline, endpoint, options.Version); + RestClient = new NotebookRestClient(_clientDiagnostics, _pipeline, endpoint); } /// Initializes a new instance of NotebookClient. /// The handler for diagnostic messaging in the client. /// The HTTP pipeline for sending and receiving REST requests and responses. /// The workspace development endpoint, for example https://myworkspace.dev.azuresynapse.net. - /// Api Version. - internal NotebookClient(ClientDiagnostics clientDiagnostics, HttpPipeline pipeline, Uri endpoint, string apiVersion = "2019-06-01-preview") + internal NotebookClient(ClientDiagnostics clientDiagnostics, HttpPipeline pipeline, Uri endpoint) { - RestClient = new NotebookRestClient(clientDiagnostics, pipeline, endpoint, apiVersion); + RestClient = new NotebookRestClient(clientDiagnostics, pipeline, endpoint); _clientDiagnostics = clientDiagnostics; _pipeline = pipeline; } diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/NotebookOperationResultClient.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/NotebookOperationResultClient.cs new file mode 100644 index 000000000000..ae270ef881c1 --- /dev/null +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/NotebookOperationResultClient.cs @@ -0,0 +1,98 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System; +using System.Threading; +using System.Threading.Tasks; +using Azure; +using Azure.Core; +using Azure.Core.Pipeline; + +namespace Azure.Analytics.Synapse.Artifacts +{ + /// The NotebookOperationResult service client. + public partial class NotebookOperationResultClient + { + private readonly ClientDiagnostics _clientDiagnostics; + private readonly HttpPipeline _pipeline; + internal NotebookOperationResultRestClient RestClient { get; } + + /// Initializes a new instance of NotebookOperationResultClient for mocking. + protected NotebookOperationResultClient() + { + } + + /// Initializes a new instance of NotebookOperationResultClient. + /// The workspace development endpoint, for example https://myworkspace.dev.azuresynapse.net. + /// A credential used to authenticate to an Azure Service. + /// The options for configuring the client. + public NotebookOperationResultClient(Uri endpoint, TokenCredential credential, ArtifactsClientOptions options = null) + { + if (endpoint == null) + { + throw new ArgumentNullException(nameof(endpoint)); + } + if (credential == null) + { + throw new ArgumentNullException(nameof(credential)); + } + + options ??= new ArtifactsClientOptions(); + _clientDiagnostics = new ClientDiagnostics(options); + string[] scopes = { "https://dev.azuresynapse.net/.default" }; + _pipeline = HttpPipelineBuilder.Build(options, new BearerTokenAuthenticationPolicy(credential, scopes)); + RestClient = new NotebookOperationResultRestClient(_clientDiagnostics, _pipeline, endpoint); + } + + /// Initializes a new instance of NotebookOperationResultClient. + /// The handler for diagnostic messaging in the client. + /// The HTTP pipeline for sending and receiving REST requests and responses. + /// The workspace development endpoint, for example https://myworkspace.dev.azuresynapse.net. + internal NotebookOperationResultClient(ClientDiagnostics clientDiagnostics, HttpPipeline pipeline, Uri endpoint) + { + RestClient = new NotebookOperationResultRestClient(clientDiagnostics, pipeline, endpoint); + _clientDiagnostics = clientDiagnostics; + _pipeline = pipeline; + } + + /// Get notebook operation result. + /// Operation ID. + /// The cancellation token to use. + public virtual async Task GetAsync(string operationId, CancellationToken cancellationToken = default) + { + using var scope = _clientDiagnostics.CreateScope("NotebookOperationResultClient.Get"); + scope.Start(); + try + { + return await RestClient.GetAsync(operationId, cancellationToken).ConfigureAwait(false); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + /// Get notebook operation result. + /// Operation ID. + /// The cancellation token to use. + public virtual Response Get(string operationId, CancellationToken cancellationToken = default) + { + using var scope = _clientDiagnostics.CreateScope("NotebookOperationResultClient.Get"); + scope.Start(); + try + { + return RestClient.Get(operationId, cancellationToken); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + } +} diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/NotebookOperationResultRestClient.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/NotebookOperationResultRestClient.cs new file mode 100644 index 000000000000..de33c6945267 --- /dev/null +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/NotebookOperationResultRestClient.cs @@ -0,0 +1,100 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System; +using System.Threading; +using System.Threading.Tasks; +using Azure; +using Azure.Core; +using Azure.Core.Pipeline; + +namespace Azure.Analytics.Synapse.Artifacts +{ + internal partial class NotebookOperationResultRestClient + { + private Uri endpoint; + private ClientDiagnostics _clientDiagnostics; + private HttpPipeline _pipeline; + + /// Initializes a new instance of NotebookOperationResultRestClient. + /// The handler for diagnostic messaging in the client. + /// The HTTP pipeline for sending and receiving REST requests and responses. + /// The workspace development endpoint, for example https://myworkspace.dev.azuresynapse.net. + /// is null. + public NotebookOperationResultRestClient(ClientDiagnostics clientDiagnostics, HttpPipeline pipeline, Uri endpoint) + { + this.endpoint = endpoint ?? throw new ArgumentNullException(nameof(endpoint)); + _clientDiagnostics = clientDiagnostics; + _pipeline = pipeline; + } + + internal HttpMessage CreateGetRequest(string operationId) + { + var message = _pipeline.CreateMessage(); + var request = message.Request; + request.Method = RequestMethod.Get; + var uri = new RawRequestUriBuilder(); + uri.Reset(endpoint); + uri.AppendPath("/notebookOperationResults/", false); + uri.AppendPath(operationId, true); + uri.AppendQuery("api-version", "2020-12-01", true); + request.Uri = uri; + request.Headers.Add("Accept", "application/json"); + return message; + } + + /// Get notebook operation result. + /// Operation ID. + /// The cancellation token to use. + /// is null. + public async Task GetAsync(string operationId, CancellationToken cancellationToken = default) + { + if (operationId == null) + { + throw new ArgumentNullException(nameof(operationId)); + } + + using var message = CreateGetRequest(operationId); + await _pipeline.SendAsync(message, cancellationToken).ConfigureAwait(false); + switch (message.Response.Status) + { + case 200: + case 201: + case 202: + case 204: + return message.Response; + default: + throw await _clientDiagnostics.CreateRequestFailedExceptionAsync(message.Response).ConfigureAwait(false); + } + } + + /// Get notebook operation result. + /// Operation ID. + /// The cancellation token to use. + /// is null. + public Response Get(string operationId, CancellationToken cancellationToken = default) + { + if (operationId == null) + { + throw new ArgumentNullException(nameof(operationId)); + } + + using var message = CreateGetRequest(operationId); + _pipeline.Send(message, cancellationToken); + switch (message.Response.Status) + { + case 200: + case 201: + case 202: + case 204: + return message.Response; + default: + throw _clientDiagnostics.CreateRequestFailedException(message.Response); + } + } + } +} diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/NotebookRestClient.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/NotebookRestClient.cs index 364a1b06f62f..8b61c566ac12 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/NotebookRestClient.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/NotebookRestClient.cs @@ -19,7 +19,6 @@ namespace Azure.Analytics.Synapse.Artifacts internal partial class NotebookRestClient { private Uri endpoint; - private string apiVersion; private ClientDiagnostics _clientDiagnostics; private HttpPipeline _pipeline; @@ -27,12 +26,10 @@ internal partial class NotebookRestClient /// The handler for diagnostic messaging in the client. /// The HTTP pipeline for sending and receiving REST requests and responses. /// The workspace development endpoint, for example https://myworkspace.dev.azuresynapse.net. - /// Api Version. - /// or is null. - public NotebookRestClient(ClientDiagnostics clientDiagnostics, HttpPipeline pipeline, Uri endpoint, string apiVersion = "2019-06-01-preview") + /// is null. + public NotebookRestClient(ClientDiagnostics clientDiagnostics, HttpPipeline pipeline, Uri endpoint) { this.endpoint = endpoint ?? throw new ArgumentNullException(nameof(endpoint)); - this.apiVersion = apiVersion ?? throw new ArgumentNullException(nameof(apiVersion)); _clientDiagnostics = clientDiagnostics; _pipeline = pipeline; } @@ -45,7 +42,7 @@ internal HttpMessage CreateGetNotebooksByWorkspaceRequest() var uri = new RawRequestUriBuilder(); uri.Reset(endpoint); uri.AppendPath("/notebooks", false); - uri.AppendQuery("api-version", apiVersion, true); + uri.AppendQuery("api-version", "2020-12-01", true); request.Uri = uri; request.Headers.Add("Accept", "application/json"); return message; @@ -98,8 +95,8 @@ internal HttpMessage CreateGetNotebookSummaryByWorkSpaceRequest() request.Method = RequestMethod.Get; var uri = new RawRequestUriBuilder(); uri.Reset(endpoint); - uri.AppendPath("/notebooks/summary", false); - uri.AppendQuery("api-version", apiVersion, true); + uri.AppendPath("/notebooksSummary", false); + uri.AppendQuery("api-version", "2020-12-01", true); request.Uri = uri; request.Headers.Add("Accept", "application/json"); return message; @@ -154,7 +151,7 @@ internal HttpMessage CreateCreateOrUpdateNotebookRequest(string notebookName, No uri.Reset(endpoint); uri.AppendPath("/notebooks/", false); uri.AppendPath(notebookName, true); - uri.AppendQuery("api-version", apiVersion, true); + uri.AppendQuery("api-version", "2020-12-01", true); request.Uri = uri; if (ifMatch != null) { @@ -235,7 +232,7 @@ internal HttpMessage CreateGetNotebookRequest(string notebookName, string ifNone uri.Reset(endpoint); uri.AppendPath("/notebooks/", false); uri.AppendPath(notebookName, true); - uri.AppendQuery("api-version", apiVersion, true); + uri.AppendQuery("api-version", "2020-12-01", true); request.Uri = uri; if (ifNoneMatch != null) { @@ -314,7 +311,7 @@ internal HttpMessage CreateDeleteNotebookRequest(string notebookName) uri.Reset(endpoint); uri.AppendPath("/notebooks/", false); uri.AppendPath(notebookName, true); - uri.AppendQuery("api-version", apiVersion, true); + uri.AppendQuery("api-version", "2020-12-01", true); request.Uri = uri; request.Headers.Add("Accept", "application/json"); return message; @@ -378,7 +375,7 @@ internal HttpMessage CreateRenameNotebookRequest(string notebookName, ArtifactRe uri.AppendPath("/notebooks/", false); uri.AppendPath(notebookName, true); uri.AppendPath("/rename", false); - uri.AppendQuery("api-version", apiVersion, true); + uri.AppendQuery("api-version", "2020-12-01", true); request0.Uri = uri; request0.Headers.Add("Accept", "application/json"); request0.Headers.Add("Content-Type", "application/json"); diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/PipelineClient.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/PipelineClient.cs index 6b2c8e835751..f97f3c79e3cd 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/PipelineClient.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/PipelineClient.cs @@ -47,17 +47,16 @@ public PipelineClient(Uri endpoint, TokenCredential credential, ArtifactsClientO _clientDiagnostics = new ClientDiagnostics(options); string[] scopes = { "https://dev.azuresynapse.net/.default" }; _pipeline = HttpPipelineBuilder.Build(options, new BearerTokenAuthenticationPolicy(credential, scopes)); - RestClient = new PipelineRestClient(_clientDiagnostics, _pipeline, endpoint, options.Version); + RestClient = new PipelineRestClient(_clientDiagnostics, _pipeline, endpoint); } /// Initializes a new instance of PipelineClient. /// The handler for diagnostic messaging in the client. /// The HTTP pipeline for sending and receiving REST requests and responses. /// The workspace development endpoint, for example https://myworkspace.dev.azuresynapse.net. - /// Api Version. - internal PipelineClient(ClientDiagnostics clientDiagnostics, HttpPipeline pipeline, Uri endpoint, string apiVersion = "2019-06-01-preview") + internal PipelineClient(ClientDiagnostics clientDiagnostics, HttpPipeline pipeline, Uri endpoint) { - RestClient = new PipelineRestClient(clientDiagnostics, pipeline, endpoint, apiVersion); + RestClient = new PipelineRestClient(clientDiagnostics, pipeline, endpoint); _clientDiagnostics = clientDiagnostics; _pipeline = pipeline; } diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/PipelineRestClient.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/PipelineRestClient.cs index 7bf13f299975..fd6afda47541 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/PipelineRestClient.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/PipelineRestClient.cs @@ -20,7 +20,6 @@ namespace Azure.Analytics.Synapse.Artifacts internal partial class PipelineRestClient { private Uri endpoint; - private string apiVersion; private ClientDiagnostics _clientDiagnostics; private HttpPipeline _pipeline; @@ -28,12 +27,10 @@ internal partial class PipelineRestClient /// The handler for diagnostic messaging in the client. /// The HTTP pipeline for sending and receiving REST requests and responses. /// The workspace development endpoint, for example https://myworkspace.dev.azuresynapse.net. - /// Api Version. - /// or is null. - public PipelineRestClient(ClientDiagnostics clientDiagnostics, HttpPipeline pipeline, Uri endpoint, string apiVersion = "2019-06-01-preview") + /// is null. + public PipelineRestClient(ClientDiagnostics clientDiagnostics, HttpPipeline pipeline, Uri endpoint) { this.endpoint = endpoint ?? throw new ArgumentNullException(nameof(endpoint)); - this.apiVersion = apiVersion ?? throw new ArgumentNullException(nameof(apiVersion)); _clientDiagnostics = clientDiagnostics; _pipeline = pipeline; } @@ -46,7 +43,7 @@ internal HttpMessage CreateGetPipelinesByWorkspaceRequest() var uri = new RawRequestUriBuilder(); uri.Reset(endpoint); uri.AppendPath("/pipelines", false); - uri.AppendQuery("api-version", apiVersion, true); + uri.AppendQuery("api-version", "2020-12-01", true); request.Uri = uri; request.Headers.Add("Accept", "application/json"); return message; @@ -101,7 +98,7 @@ internal HttpMessage CreateCreateOrUpdatePipelineRequest(string pipelineName, Pi uri.Reset(endpoint); uri.AppendPath("/pipelines/", false); uri.AppendPath(pipelineName, true); - uri.AppendQuery("api-version", apiVersion, true); + uri.AppendQuery("api-version", "2020-12-01", true); request.Uri = uri; if (ifMatch != null) { @@ -182,7 +179,7 @@ internal HttpMessage CreateGetPipelineRequest(string pipelineName, string ifNone uri.Reset(endpoint); uri.AppendPath("/pipelines/", false); uri.AppendPath(pipelineName, true); - uri.AppendQuery("api-version", apiVersion, true); + uri.AppendQuery("api-version", "2020-12-01", true); request.Uri = uri; if (ifNoneMatch != null) { @@ -261,7 +258,7 @@ internal HttpMessage CreateDeletePipelineRequest(string pipelineName) uri.Reset(endpoint); uri.AppendPath("/pipelines/", false); uri.AppendPath(pipelineName, true); - uri.AppendQuery("api-version", apiVersion, true); + uri.AppendQuery("api-version", "2020-12-01", true); request.Uri = uri; request.Headers.Add("Accept", "application/json"); return message; @@ -325,7 +322,7 @@ internal HttpMessage CreateRenamePipelineRequest(string pipelineName, ArtifactRe uri.AppendPath("/pipelines/", false); uri.AppendPath(pipelineName, true); uri.AppendPath("/rename", false); - uri.AppendQuery("api-version", apiVersion, true); + uri.AppendQuery("api-version", "2020-12-01", true); request0.Uri = uri; request0.Headers.Add("Accept", "application/json"); request0.Headers.Add("Content-Type", "application/json"); @@ -401,7 +398,7 @@ internal HttpMessage CreateCreatePipelineRunRequest(string pipelineName, string uri.AppendPath("/pipelines/", false); uri.AppendPath(pipelineName, true); uri.AppendPath("/createRun", false); - uri.AppendQuery("api-version", apiVersion, true); + uri.AppendQuery("api-version", "2020-12-01", true); if (referencePipelineRunId != null) { uri.AppendQuery("referencePipelineRunId", referencePipelineRunId, true); diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/PipelineRunClient.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/PipelineRunClient.cs index 8cb8e1731040..4b425ad1d2da 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/PipelineRunClient.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/PipelineRunClient.cs @@ -46,17 +46,16 @@ public PipelineRunClient(Uri endpoint, TokenCredential credential, ArtifactsClie _clientDiagnostics = new ClientDiagnostics(options); string[] scopes = { "https://dev.azuresynapse.net/.default" }; _pipeline = HttpPipelineBuilder.Build(options, new BearerTokenAuthenticationPolicy(credential, scopes)); - RestClient = new PipelineRunRestClient(_clientDiagnostics, _pipeline, endpoint, options.Version); + RestClient = new PipelineRunRestClient(_clientDiagnostics, _pipeline, endpoint); } /// Initializes a new instance of PipelineRunClient. /// The handler for diagnostic messaging in the client. /// The HTTP pipeline for sending and receiving REST requests and responses. /// The workspace development endpoint, for example https://myworkspace.dev.azuresynapse.net. - /// Api Version. - internal PipelineRunClient(ClientDiagnostics clientDiagnostics, HttpPipeline pipeline, Uri endpoint, string apiVersion = "2019-06-01-preview") + internal PipelineRunClient(ClientDiagnostics clientDiagnostics, HttpPipeline pipeline, Uri endpoint) { - RestClient = new PipelineRunRestClient(clientDiagnostics, pipeline, endpoint, apiVersion); + RestClient = new PipelineRunRestClient(clientDiagnostics, pipeline, endpoint); _clientDiagnostics = clientDiagnostics; _pipeline = pipeline; } diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/PipelineRunRestClient.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/PipelineRunRestClient.cs index 847394bde994..61b911c65032 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/PipelineRunRestClient.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/PipelineRunRestClient.cs @@ -19,7 +19,6 @@ namespace Azure.Analytics.Synapse.Artifacts internal partial class PipelineRunRestClient { private Uri endpoint; - private string apiVersion; private ClientDiagnostics _clientDiagnostics; private HttpPipeline _pipeline; @@ -27,12 +26,10 @@ internal partial class PipelineRunRestClient /// The handler for diagnostic messaging in the client. /// The HTTP pipeline for sending and receiving REST requests and responses. /// The workspace development endpoint, for example https://myworkspace.dev.azuresynapse.net. - /// Api Version. - /// or is null. - public PipelineRunRestClient(ClientDiagnostics clientDiagnostics, HttpPipeline pipeline, Uri endpoint, string apiVersion = "2019-06-01-preview") + /// is null. + public PipelineRunRestClient(ClientDiagnostics clientDiagnostics, HttpPipeline pipeline, Uri endpoint) { this.endpoint = endpoint ?? throw new ArgumentNullException(nameof(endpoint)); - this.apiVersion = apiVersion ?? throw new ArgumentNullException(nameof(apiVersion)); _clientDiagnostics = clientDiagnostics; _pipeline = pipeline; } @@ -45,7 +42,7 @@ internal HttpMessage CreateQueryPipelineRunsByWorkspaceRequest(RunFilterParamete var uri = new RawRequestUriBuilder(); uri.Reset(endpoint); uri.AppendPath("/queryPipelineRuns", false); - uri.AppendQuery("api-version", apiVersion, true); + uri.AppendQuery("api-version", "2020-12-01", true); request.Uri = uri; request.Headers.Add("Accept", "application/json"); request.Headers.Add("Content-Type", "application/json"); @@ -118,7 +115,7 @@ internal HttpMessage CreateGetPipelineRunRequest(string runId) uri.Reset(endpoint); uri.AppendPath("/pipelineruns/", false); uri.AppendPath(runId, true); - uri.AppendQuery("api-version", apiVersion, true); + uri.AppendQuery("api-version", "2020-12-01", true); request.Uri = uri; request.Headers.Add("Accept", "application/json"); return message; @@ -190,7 +187,7 @@ internal HttpMessage CreateQueryActivityRunsRequest(string pipelineName, string uri.AppendPath("/pipelineruns/", false); uri.AppendPath(runId, true); uri.AppendPath("/queryActivityruns", false); - uri.AppendQuery("api-version", apiVersion, true); + uri.AppendQuery("api-version", "2020-12-01", true); request.Uri = uri; request.Headers.Add("Accept", "application/json"); request.Headers.Add("Content-Type", "application/json"); @@ -288,7 +285,7 @@ internal HttpMessage CreateCancelPipelineRunRequest(string runId, bool? isRecurs { uri.AppendQuery("isRecursive", isRecursive.Value, true); } - uri.AppendQuery("api-version", apiVersion, true); + uri.AppendQuery("api-version", "2020-12-01", true); request.Uri = uri; request.Headers.Add("Accept", "application/json"); return message; diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/SparkConfigurationClient.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/SparkConfigurationClient.cs new file mode 100644 index 000000000000..4220a5b7a1cb --- /dev/null +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/SparkConfigurationClient.cs @@ -0,0 +1,347 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System; +using System.Threading; +using System.Threading.Tasks; +using Azure; +using Azure.Analytics.Synapse.Artifacts.Models; +using Azure.Core; +using Azure.Core.Pipeline; + +namespace Azure.Analytics.Synapse.Artifacts +{ + /// The SparkConfiguration service client. + public partial class SparkConfigurationClient + { + private readonly ClientDiagnostics _clientDiagnostics; + private readonly HttpPipeline _pipeline; + internal SparkConfigurationRestClient RestClient { get; } + + /// Initializes a new instance of SparkConfigurationClient for mocking. + protected SparkConfigurationClient() + { + } + + /// Initializes a new instance of SparkConfigurationClient. + /// The workspace development endpoint, for example https://myworkspace.dev.azuresynapse.net. + /// A credential used to authenticate to an Azure Service. + /// The options for configuring the client. + public SparkConfigurationClient(Uri endpoint, TokenCredential credential, ArtifactsClientOptions options = null) + { + if (endpoint == null) + { + throw new ArgumentNullException(nameof(endpoint)); + } + if (credential == null) + { + throw new ArgumentNullException(nameof(credential)); + } + + options ??= new ArtifactsClientOptions(); + _clientDiagnostics = new ClientDiagnostics(options); + string[] scopes = { "https://dev.azuresynapse.net/.default" }; + _pipeline = HttpPipelineBuilder.Build(options, new BearerTokenAuthenticationPolicy(credential, scopes)); + RestClient = new SparkConfigurationRestClient(_clientDiagnostics, _pipeline, endpoint); + } + + /// Initializes a new instance of SparkConfigurationClient. + /// The handler for diagnostic messaging in the client. + /// The HTTP pipeline for sending and receiving REST requests and responses. + /// The workspace development endpoint, for example https://myworkspace.dev.azuresynapse.net. + internal SparkConfigurationClient(ClientDiagnostics clientDiagnostics, HttpPipeline pipeline, Uri endpoint) + { + RestClient = new SparkConfigurationRestClient(clientDiagnostics, pipeline, endpoint); + _clientDiagnostics = clientDiagnostics; + _pipeline = pipeline; + } + + /// Gets a sparkConfiguration. + /// The spark Configuration name. + /// ETag of the sparkConfiguration entity. Should only be specified for get. If the ETag matches the existing entity tag, or if * was provided, then no content will be returned. + /// The cancellation token to use. + public virtual async Task> GetSparkConfigurationAsync(string sparkConfigurationName, string ifNoneMatch = null, CancellationToken cancellationToken = default) + { + using var scope = _clientDiagnostics.CreateScope("SparkConfigurationClient.GetSparkConfiguration"); + scope.Start(); + try + { + return await RestClient.GetSparkConfigurationAsync(sparkConfigurationName, ifNoneMatch, cancellationToken).ConfigureAwait(false); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + /// Gets a sparkConfiguration. + /// The spark Configuration name. + /// ETag of the sparkConfiguration entity. Should only be specified for get. If the ETag matches the existing entity tag, or if * was provided, then no content will be returned. + /// The cancellation token to use. + public virtual Response GetSparkConfiguration(string sparkConfigurationName, string ifNoneMatch = null, CancellationToken cancellationToken = default) + { + using var scope = _clientDiagnostics.CreateScope("SparkConfigurationClient.GetSparkConfiguration"); + scope.Start(); + try + { + return RestClient.GetSparkConfiguration(sparkConfigurationName, ifNoneMatch, cancellationToken); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + /// Lists sparkconfigurations. + /// The cancellation token to use. + public virtual AsyncPageable GetSparkConfigurationsByWorkspaceAsync(CancellationToken cancellationToken = default) + { + async Task> FirstPageFunc(int? pageSizeHint) + { + using var scope = _clientDiagnostics.CreateScope("SparkConfigurationClient.GetSparkConfigurationsByWorkspace"); + scope.Start(); + try + { + var response = await RestClient.GetSparkConfigurationsByWorkspaceAsync(cancellationToken).ConfigureAwait(false); + return Page.FromValues(response.Value.Value, response.Value.NextLink, response.GetRawResponse()); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + async Task> NextPageFunc(string nextLink, int? pageSizeHint) + { + using var scope = _clientDiagnostics.CreateScope("SparkConfigurationClient.GetSparkConfigurationsByWorkspace"); + scope.Start(); + try + { + var response = await RestClient.GetSparkConfigurationsByWorkspaceNextPageAsync(nextLink, cancellationToken).ConfigureAwait(false); + return Page.FromValues(response.Value.Value, response.Value.NextLink, response.GetRawResponse()); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + return PageableHelpers.CreateAsyncEnumerable(FirstPageFunc, NextPageFunc); + } + + /// Lists sparkconfigurations. + /// The cancellation token to use. + public virtual Pageable GetSparkConfigurationsByWorkspace(CancellationToken cancellationToken = default) + { + Page FirstPageFunc(int? pageSizeHint) + { + using var scope = _clientDiagnostics.CreateScope("SparkConfigurationClient.GetSparkConfigurationsByWorkspace"); + scope.Start(); + try + { + var response = RestClient.GetSparkConfigurationsByWorkspace(cancellationToken); + return Page.FromValues(response.Value.Value, response.Value.NextLink, response.GetRawResponse()); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + Page NextPageFunc(string nextLink, int? pageSizeHint) + { + using var scope = _clientDiagnostics.CreateScope("SparkConfigurationClient.GetSparkConfigurationsByWorkspace"); + scope.Start(); + try + { + var response = RestClient.GetSparkConfigurationsByWorkspaceNextPage(nextLink, cancellationToken); + return Page.FromValues(response.Value.Value, response.Value.NextLink, response.GetRawResponse()); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + return PageableHelpers.CreateEnumerable(FirstPageFunc, NextPageFunc); + } + + /// Creates or updates a sparkconfiguration. + /// The spark Configuration name. + /// SparkConfiguration resource definition. + /// ETag of the sparkConfiguration entity. Should only be specified for update, for which it should match existing entity or can be * for unconditional update. + /// The cancellation token to use. + /// or is null. + public virtual async Task StartCreateOrUpdateSparkConfigurationAsync(string sparkConfigurationName, SparkConfigurationResource sparkConfiguration, string ifMatch = null, CancellationToken cancellationToken = default) + { + if (sparkConfigurationName == null) + { + throw new ArgumentNullException(nameof(sparkConfigurationName)); + } + if (sparkConfiguration == null) + { + throw new ArgumentNullException(nameof(sparkConfiguration)); + } + + using var scope = _clientDiagnostics.CreateScope("SparkConfigurationClient.StartCreateOrUpdateSparkConfiguration"); + scope.Start(); + try + { + var originalResponse = await RestClient.CreateOrUpdateSparkConfigurationAsync(sparkConfigurationName, sparkConfiguration, ifMatch, cancellationToken).ConfigureAwait(false); + return new SparkConfigurationCreateOrUpdateSparkConfigurationOperation(_clientDiagnostics, _pipeline, RestClient.CreateCreateOrUpdateSparkConfigurationRequest(sparkConfigurationName, sparkConfiguration, ifMatch).Request, originalResponse); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + /// Creates or updates a sparkconfiguration. + /// The spark Configuration name. + /// SparkConfiguration resource definition. + /// ETag of the sparkConfiguration entity. Should only be specified for update, for which it should match existing entity or can be * for unconditional update. + /// The cancellation token to use. + /// or is null. + public virtual SparkConfigurationCreateOrUpdateSparkConfigurationOperation StartCreateOrUpdateSparkConfiguration(string sparkConfigurationName, SparkConfigurationResource sparkConfiguration, string ifMatch = null, CancellationToken cancellationToken = default) + { + if (sparkConfigurationName == null) + { + throw new ArgumentNullException(nameof(sparkConfigurationName)); + } + if (sparkConfiguration == null) + { + throw new ArgumentNullException(nameof(sparkConfiguration)); + } + + using var scope = _clientDiagnostics.CreateScope("SparkConfigurationClient.StartCreateOrUpdateSparkConfiguration"); + scope.Start(); + try + { + var originalResponse = RestClient.CreateOrUpdateSparkConfiguration(sparkConfigurationName, sparkConfiguration, ifMatch, cancellationToken); + return new SparkConfigurationCreateOrUpdateSparkConfigurationOperation(_clientDiagnostics, _pipeline, RestClient.CreateCreateOrUpdateSparkConfigurationRequest(sparkConfigurationName, sparkConfiguration, ifMatch).Request, originalResponse); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + /// Deletes a sparkConfiguration. + /// The spark Configuration name. + /// The cancellation token to use. + /// is null. + public virtual async Task StartDeleteSparkConfigurationAsync(string sparkConfigurationName, CancellationToken cancellationToken = default) + { + if (sparkConfigurationName == null) + { + throw new ArgumentNullException(nameof(sparkConfigurationName)); + } + + using var scope = _clientDiagnostics.CreateScope("SparkConfigurationClient.StartDeleteSparkConfiguration"); + scope.Start(); + try + { + var originalResponse = await RestClient.DeleteSparkConfigurationAsync(sparkConfigurationName, cancellationToken).ConfigureAwait(false); + return new SparkConfigurationDeleteSparkConfigurationOperation(_clientDiagnostics, _pipeline, RestClient.CreateDeleteSparkConfigurationRequest(sparkConfigurationName).Request, originalResponse); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + /// Deletes a sparkConfiguration. + /// The spark Configuration name. + /// The cancellation token to use. + /// is null. + public virtual SparkConfigurationDeleteSparkConfigurationOperation StartDeleteSparkConfiguration(string sparkConfigurationName, CancellationToken cancellationToken = default) + { + if (sparkConfigurationName == null) + { + throw new ArgumentNullException(nameof(sparkConfigurationName)); + } + + using var scope = _clientDiagnostics.CreateScope("SparkConfigurationClient.StartDeleteSparkConfiguration"); + scope.Start(); + try + { + var originalResponse = RestClient.DeleteSparkConfiguration(sparkConfigurationName, cancellationToken); + return new SparkConfigurationDeleteSparkConfigurationOperation(_clientDiagnostics, _pipeline, RestClient.CreateDeleteSparkConfigurationRequest(sparkConfigurationName).Request, originalResponse); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + /// Renames a sparkConfiguration. + /// The spark Configuration name. + /// proposed new name. + /// The cancellation token to use. + /// or is null. + public virtual async Task StartRenameSparkConfigurationAsync(string sparkConfigurationName, ArtifactRenameRequest request, CancellationToken cancellationToken = default) + { + if (sparkConfigurationName == null) + { + throw new ArgumentNullException(nameof(sparkConfigurationName)); + } + if (request == null) + { + throw new ArgumentNullException(nameof(request)); + } + + using var scope = _clientDiagnostics.CreateScope("SparkConfigurationClient.StartRenameSparkConfiguration"); + scope.Start(); + try + { + var originalResponse = await RestClient.RenameSparkConfigurationAsync(sparkConfigurationName, request, cancellationToken).ConfigureAwait(false); + return new SparkConfigurationRenameSparkConfigurationOperation(_clientDiagnostics, _pipeline, RestClient.CreateRenameSparkConfigurationRequest(sparkConfigurationName, request).Request, originalResponse); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + /// Renames a sparkConfiguration. + /// The spark Configuration name. + /// proposed new name. + /// The cancellation token to use. + /// or is null. + public virtual SparkConfigurationRenameSparkConfigurationOperation StartRenameSparkConfiguration(string sparkConfigurationName, ArtifactRenameRequest request, CancellationToken cancellationToken = default) + { + if (sparkConfigurationName == null) + { + throw new ArgumentNullException(nameof(sparkConfigurationName)); + } + if (request == null) + { + throw new ArgumentNullException(nameof(request)); + } + + using var scope = _clientDiagnostics.CreateScope("SparkConfigurationClient.StartRenameSparkConfiguration"); + scope.Start(); + try + { + var originalResponse = RestClient.RenameSparkConfiguration(sparkConfigurationName, request, cancellationToken); + return new SparkConfigurationRenameSparkConfigurationOperation(_clientDiagnostics, _pipeline, RestClient.CreateRenameSparkConfigurationRequest(sparkConfigurationName, request).Request, originalResponse); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + } +} diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/SparkConfigurationCreateOrUpdateSparkConfigurationOperation.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/SparkConfigurationCreateOrUpdateSparkConfigurationOperation.cs new file mode 100644 index 000000000000..2859ac79a5a8 --- /dev/null +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/SparkConfigurationCreateOrUpdateSparkConfigurationOperation.cs @@ -0,0 +1,73 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System; +using System.Text.Json; +using System.Threading; +using System.Threading.Tasks; +using Azure; +using Azure.Analytics.Synapse.Artifacts.Models; +using Azure.Core; +using Azure.Core.Pipeline; + +namespace Azure.Analytics.Synapse.Artifacts +{ + /// Creates or updates a sparkconfiguration. + public partial class SparkConfigurationCreateOrUpdateSparkConfigurationOperation : Operation, IOperationSource + { + private readonly OperationInternals _operation; + + /// Initializes a new instance of SparkConfigurationCreateOrUpdateSparkConfigurationOperation for mocking. + protected SparkConfigurationCreateOrUpdateSparkConfigurationOperation() + { + } + + internal SparkConfigurationCreateOrUpdateSparkConfigurationOperation(ClientDiagnostics clientDiagnostics, HttpPipeline pipeline, Request request, Response response) + { + _operation = new OperationInternals(this, clientDiagnostics, pipeline, request, response, OperationFinalStateVia.Location, "SparkConfigurationCreateOrUpdateSparkConfigurationOperation"); + } + + /// + public override string Id => _operation.Id; + + /// + public override SparkConfigurationResource Value => _operation.Value; + + /// + public override bool HasCompleted => _operation.HasCompleted; + + /// + public override bool HasValue => _operation.HasValue; + + /// + public override Response GetRawResponse() => _operation.GetRawResponse(); + + /// + public override Response UpdateStatus(CancellationToken cancellationToken = default) => _operation.UpdateStatus(cancellationToken); + + /// + public override ValueTask UpdateStatusAsync(CancellationToken cancellationToken = default) => _operation.UpdateStatusAsync(cancellationToken); + + /// + public override ValueTask> WaitForCompletionAsync(CancellationToken cancellationToken = default) => _operation.WaitForCompletionAsync(cancellationToken); + + /// + public override ValueTask> WaitForCompletionAsync(TimeSpan pollingInterval, CancellationToken cancellationToken = default) => _operation.WaitForCompletionAsync(pollingInterval, cancellationToken); + + SparkConfigurationResource IOperationSource.CreateResult(Response response, CancellationToken cancellationToken) + { + using var document = JsonDocument.Parse(response.ContentStream); + return SparkConfigurationResource.DeserializeSparkConfigurationResource(document.RootElement); + } + + async ValueTask IOperationSource.CreateResultAsync(Response response, CancellationToken cancellationToken) + { + using var document = await JsonDocument.ParseAsync(response.ContentStream, default, cancellationToken).ConfigureAwait(false); + return SparkConfigurationResource.DeserializeSparkConfigurationResource(document.RootElement); + } + } +} diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/SparkConfigurationDeleteSparkConfigurationOperation.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/SparkConfigurationDeleteSparkConfigurationOperation.cs new file mode 100644 index 000000000000..3d89798d06a6 --- /dev/null +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/SparkConfigurationDeleteSparkConfigurationOperation.cs @@ -0,0 +1,53 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System; +using System.Threading; +using System.Threading.Tasks; +using Azure; +using Azure.Core; +using Azure.Core.Pipeline; + +namespace Azure.Analytics.Synapse.Artifacts +{ + /// Deletes a sparkConfiguration. + public partial class SparkConfigurationDeleteSparkConfigurationOperation : Operation + { + private readonly OperationInternals _operation; + + /// Initializes a new instance of SparkConfigurationDeleteSparkConfigurationOperation for mocking. + protected SparkConfigurationDeleteSparkConfigurationOperation() + { + } + + internal SparkConfigurationDeleteSparkConfigurationOperation(ClientDiagnostics clientDiagnostics, HttpPipeline pipeline, Request request, Response response) + { + _operation = new OperationInternals(clientDiagnostics, pipeline, request, response, OperationFinalStateVia.Location, "SparkConfigurationDeleteSparkConfigurationOperation"); + } + + /// + public override string Id => _operation.Id; + + /// + public override bool HasCompleted => _operation.HasCompleted; + + /// + public override Response GetRawResponse() => _operation.GetRawResponse(); + + /// + public override Response UpdateStatus(CancellationToken cancellationToken = default) => _operation.UpdateStatus(cancellationToken); + + /// + public override ValueTask UpdateStatusAsync(CancellationToken cancellationToken = default) => _operation.UpdateStatusAsync(cancellationToken); + + /// + public override ValueTask WaitForCompletionResponseAsync(CancellationToken cancellationToken = default) => _operation.WaitForCompletionResponseAsync(cancellationToken); + + /// + public override ValueTask WaitForCompletionResponseAsync(TimeSpan pollingInterval, CancellationToken cancellationToken = default) => _operation.WaitForCompletionResponseAsync(pollingInterval, cancellationToken); + } +} diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/SparkConfigurationRenameSparkConfigurationOperation.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/SparkConfigurationRenameSparkConfigurationOperation.cs new file mode 100644 index 000000000000..71e90cb0acad --- /dev/null +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/SparkConfigurationRenameSparkConfigurationOperation.cs @@ -0,0 +1,53 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System; +using System.Threading; +using System.Threading.Tasks; +using Azure; +using Azure.Core; +using Azure.Core.Pipeline; + +namespace Azure.Analytics.Synapse.Artifacts +{ + /// Renames a sparkConfiguration. + public partial class SparkConfigurationRenameSparkConfigurationOperation : Operation + { + private readonly OperationInternals _operation; + + /// Initializes a new instance of SparkConfigurationRenameSparkConfigurationOperation for mocking. + protected SparkConfigurationRenameSparkConfigurationOperation() + { + } + + internal SparkConfigurationRenameSparkConfigurationOperation(ClientDiagnostics clientDiagnostics, HttpPipeline pipeline, Request request, Response response) + { + _operation = new OperationInternals(clientDiagnostics, pipeline, request, response, OperationFinalStateVia.Location, "SparkConfigurationRenameSparkConfigurationOperation"); + } + + /// + public override string Id => _operation.Id; + + /// + public override bool HasCompleted => _operation.HasCompleted; + + /// + public override Response GetRawResponse() => _operation.GetRawResponse(); + + /// + public override Response UpdateStatus(CancellationToken cancellationToken = default) => _operation.UpdateStatus(cancellationToken); + + /// + public override ValueTask UpdateStatusAsync(CancellationToken cancellationToken = default) => _operation.UpdateStatusAsync(cancellationToken); + + /// + public override ValueTask WaitForCompletionResponseAsync(CancellationToken cancellationToken = default) => _operation.WaitForCompletionResponseAsync(cancellationToken); + + /// + public override ValueTask WaitForCompletionResponseAsync(TimeSpan pollingInterval, CancellationToken cancellationToken = default) => _operation.WaitForCompletionResponseAsync(pollingInterval, cancellationToken); + } +} diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/SparkConfigurationRestClient.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/SparkConfigurationRestClient.cs new file mode 100644 index 000000000000..8658bbe02a78 --- /dev/null +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/SparkConfigurationRestClient.cs @@ -0,0 +1,457 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System; +using System.Text.Json; +using System.Threading; +using System.Threading.Tasks; +using Azure; +using Azure.Analytics.Synapse.Artifacts.Models; +using Azure.Core; +using Azure.Core.Pipeline; + +namespace Azure.Analytics.Synapse.Artifacts +{ + internal partial class SparkConfigurationRestClient + { + private Uri endpoint; + private ClientDiagnostics _clientDiagnostics; + private HttpPipeline _pipeline; + + /// Initializes a new instance of SparkConfigurationRestClient. + /// The handler for diagnostic messaging in the client. + /// The HTTP pipeline for sending and receiving REST requests and responses. + /// The workspace development endpoint, for example https://myworkspace.dev.azuresynapse.net. + /// is null. + public SparkConfigurationRestClient(ClientDiagnostics clientDiagnostics, HttpPipeline pipeline, Uri endpoint) + { + this.endpoint = endpoint ?? throw new ArgumentNullException(nameof(endpoint)); + _clientDiagnostics = clientDiagnostics; + _pipeline = pipeline; + } + + internal HttpMessage CreateGetSparkConfigurationsByWorkspaceRequest() + { + var message = _pipeline.CreateMessage(); + var request = message.Request; + request.Method = RequestMethod.Get; + var uri = new RawRequestUriBuilder(); + uri.Reset(endpoint); + uri.AppendPath("/sparkconfigurations", false); + uri.AppendQuery("api-version", "2021-06-01-preview", true); + request.Uri = uri; + request.Headers.Add("Accept", "application/json"); + return message; + } + + /// Lists sparkconfigurations. + /// The cancellation token to use. + public async Task> GetSparkConfigurationsByWorkspaceAsync(CancellationToken cancellationToken = default) + { + using var message = CreateGetSparkConfigurationsByWorkspaceRequest(); + await _pipeline.SendAsync(message, cancellationToken).ConfigureAwait(false); + switch (message.Response.Status) + { + case 200: + { + SparkConfigurationListResponse value = default; + using var document = await JsonDocument.ParseAsync(message.Response.ContentStream, default, cancellationToken).ConfigureAwait(false); + value = SparkConfigurationListResponse.DeserializeSparkConfigurationListResponse(document.RootElement); + return Response.FromValue(value, message.Response); + } + default: + throw await _clientDiagnostics.CreateRequestFailedExceptionAsync(message.Response).ConfigureAwait(false); + } + } + + /// Lists sparkconfigurations. + /// The cancellation token to use. + public Response GetSparkConfigurationsByWorkspace(CancellationToken cancellationToken = default) + { + using var message = CreateGetSparkConfigurationsByWorkspaceRequest(); + _pipeline.Send(message, cancellationToken); + switch (message.Response.Status) + { + case 200: + { + SparkConfigurationListResponse value = default; + using var document = JsonDocument.Parse(message.Response.ContentStream); + value = SparkConfigurationListResponse.DeserializeSparkConfigurationListResponse(document.RootElement); + return Response.FromValue(value, message.Response); + } + default: + throw _clientDiagnostics.CreateRequestFailedException(message.Response); + } + } + + internal HttpMessage CreateCreateOrUpdateSparkConfigurationRequest(string sparkConfigurationName, SparkConfigurationResource sparkConfiguration, string ifMatch) + { + var message = _pipeline.CreateMessage(); + var request = message.Request; + request.Method = RequestMethod.Put; + var uri = new RawRequestUriBuilder(); + uri.Reset(endpoint); + uri.AppendPath("/sparkconfigurations/", false); + uri.AppendPath(sparkConfigurationName, true); + uri.AppendQuery("api-version", "2021-06-01-preview", true); + request.Uri = uri; + if (ifMatch != null) + { + request.Headers.Add("If-Match", ifMatch); + } + request.Headers.Add("Accept", "application/json"); + request.Headers.Add("Content-Type", "application/json"); + var content = new Utf8JsonRequestContent(); + content.JsonWriter.WriteObjectValue(sparkConfiguration); + request.Content = content; + return message; + } + + /// Creates or updates a sparkconfiguration. + /// The spark Configuration name. + /// SparkConfiguration resource definition. + /// ETag of the sparkConfiguration entity. Should only be specified for update, for which it should match existing entity or can be * for unconditional update. + /// The cancellation token to use. + /// or is null. + public async Task CreateOrUpdateSparkConfigurationAsync(string sparkConfigurationName, SparkConfigurationResource sparkConfiguration, string ifMatch = null, CancellationToken cancellationToken = default) + { + if (sparkConfigurationName == null) + { + throw new ArgumentNullException(nameof(sparkConfigurationName)); + } + if (sparkConfiguration == null) + { + throw new ArgumentNullException(nameof(sparkConfiguration)); + } + + using var message = CreateCreateOrUpdateSparkConfigurationRequest(sparkConfigurationName, sparkConfiguration, ifMatch); + await _pipeline.SendAsync(message, cancellationToken).ConfigureAwait(false); + switch (message.Response.Status) + { + case 200: + case 202: + return message.Response; + default: + throw await _clientDiagnostics.CreateRequestFailedExceptionAsync(message.Response).ConfigureAwait(false); + } + } + + /// Creates or updates a sparkconfiguration. + /// The spark Configuration name. + /// SparkConfiguration resource definition. + /// ETag of the sparkConfiguration entity. Should only be specified for update, for which it should match existing entity or can be * for unconditional update. + /// The cancellation token to use. + /// or is null. + public Response CreateOrUpdateSparkConfiguration(string sparkConfigurationName, SparkConfigurationResource sparkConfiguration, string ifMatch = null, CancellationToken cancellationToken = default) + { + if (sparkConfigurationName == null) + { + throw new ArgumentNullException(nameof(sparkConfigurationName)); + } + if (sparkConfiguration == null) + { + throw new ArgumentNullException(nameof(sparkConfiguration)); + } + + using var message = CreateCreateOrUpdateSparkConfigurationRequest(sparkConfigurationName, sparkConfiguration, ifMatch); + _pipeline.Send(message, cancellationToken); + switch (message.Response.Status) + { + case 200: + case 202: + return message.Response; + default: + throw _clientDiagnostics.CreateRequestFailedException(message.Response); + } + } + + internal HttpMessage CreateGetSparkConfigurationRequest(string sparkConfigurationName, string ifNoneMatch) + { + var message = _pipeline.CreateMessage(); + var request = message.Request; + request.Method = RequestMethod.Get; + var uri = new RawRequestUriBuilder(); + uri.Reset(endpoint); + uri.AppendPath("/sparkconfigurations/", false); + uri.AppendPath(sparkConfigurationName, true); + uri.AppendQuery("api-version", "2021-06-01-preview", true); + request.Uri = uri; + if (ifNoneMatch != null) + { + request.Headers.Add("If-None-Match", ifNoneMatch); + } + request.Headers.Add("Accept", "application/json"); + return message; + } + + /// Gets a sparkConfiguration. + /// The spark Configuration name. + /// ETag of the sparkConfiguration entity. Should only be specified for get. If the ETag matches the existing entity tag, or if * was provided, then no content will be returned. + /// The cancellation token to use. + /// is null. + public async Task> GetSparkConfigurationAsync(string sparkConfigurationName, string ifNoneMatch = null, CancellationToken cancellationToken = default) + { + if (sparkConfigurationName == null) + { + throw new ArgumentNullException(nameof(sparkConfigurationName)); + } + + using var message = CreateGetSparkConfigurationRequest(sparkConfigurationName, ifNoneMatch); + await _pipeline.SendAsync(message, cancellationToken).ConfigureAwait(false); + switch (message.Response.Status) + { + case 200: + { + SparkConfigurationResource value = default; + using var document = await JsonDocument.ParseAsync(message.Response.ContentStream, default, cancellationToken).ConfigureAwait(false); + value = SparkConfigurationResource.DeserializeSparkConfigurationResource(document.RootElement); + return Response.FromValue(value, message.Response); + } + case 304: + return Response.FromValue((SparkConfigurationResource)null, message.Response); + default: + throw await _clientDiagnostics.CreateRequestFailedExceptionAsync(message.Response).ConfigureAwait(false); + } + } + + /// Gets a sparkConfiguration. + /// The spark Configuration name. + /// ETag of the sparkConfiguration entity. Should only be specified for get. If the ETag matches the existing entity tag, or if * was provided, then no content will be returned. + /// The cancellation token to use. + /// is null. + public Response GetSparkConfiguration(string sparkConfigurationName, string ifNoneMatch = null, CancellationToken cancellationToken = default) + { + if (sparkConfigurationName == null) + { + throw new ArgumentNullException(nameof(sparkConfigurationName)); + } + + using var message = CreateGetSparkConfigurationRequest(sparkConfigurationName, ifNoneMatch); + _pipeline.Send(message, cancellationToken); + switch (message.Response.Status) + { + case 200: + { + SparkConfigurationResource value = default; + using var document = JsonDocument.Parse(message.Response.ContentStream); + value = SparkConfigurationResource.DeserializeSparkConfigurationResource(document.RootElement); + return Response.FromValue(value, message.Response); + } + case 304: + return Response.FromValue((SparkConfigurationResource)null, message.Response); + default: + throw _clientDiagnostics.CreateRequestFailedException(message.Response); + } + } + + internal HttpMessage CreateDeleteSparkConfigurationRequest(string sparkConfigurationName) + { + var message = _pipeline.CreateMessage(); + var request = message.Request; + request.Method = RequestMethod.Delete; + var uri = new RawRequestUriBuilder(); + uri.Reset(endpoint); + uri.AppendPath("/sparkconfigurations/", false); + uri.AppendPath(sparkConfigurationName, true); + uri.AppendQuery("api-version", "2021-06-01-preview", true); + request.Uri = uri; + request.Headers.Add("Accept", "application/json"); + return message; + } + + /// Deletes a sparkConfiguration. + /// The spark Configuration name. + /// The cancellation token to use. + /// is null. + public async Task DeleteSparkConfigurationAsync(string sparkConfigurationName, CancellationToken cancellationToken = default) + { + if (sparkConfigurationName == null) + { + throw new ArgumentNullException(nameof(sparkConfigurationName)); + } + + using var message = CreateDeleteSparkConfigurationRequest(sparkConfigurationName); + await _pipeline.SendAsync(message, cancellationToken).ConfigureAwait(false); + switch (message.Response.Status) + { + case 200: + case 202: + case 204: + return message.Response; + default: + throw await _clientDiagnostics.CreateRequestFailedExceptionAsync(message.Response).ConfigureAwait(false); + } + } + + /// Deletes a sparkConfiguration. + /// The spark Configuration name. + /// The cancellation token to use. + /// is null. + public Response DeleteSparkConfiguration(string sparkConfigurationName, CancellationToken cancellationToken = default) + { + if (sparkConfigurationName == null) + { + throw new ArgumentNullException(nameof(sparkConfigurationName)); + } + + using var message = CreateDeleteSparkConfigurationRequest(sparkConfigurationName); + _pipeline.Send(message, cancellationToken); + switch (message.Response.Status) + { + case 200: + case 202: + case 204: + return message.Response; + default: + throw _clientDiagnostics.CreateRequestFailedException(message.Response); + } + } + + internal HttpMessage CreateRenameSparkConfigurationRequest(string sparkConfigurationName, ArtifactRenameRequest request) + { + var message = _pipeline.CreateMessage(); + var request0 = message.Request; + request0.Method = RequestMethod.Post; + var uri = new RawRequestUriBuilder(); + uri.Reset(endpoint); + uri.AppendPath("/sparkconfigurations/", false); + uri.AppendPath(sparkConfigurationName, true); + uri.AppendPath("/rename", false); + uri.AppendQuery("api-version", "2021-06-01-preview", true); + request0.Uri = uri; + request0.Headers.Add("Accept", "application/json"); + request0.Headers.Add("Content-Type", "application/json"); + var content = new Utf8JsonRequestContent(); + content.JsonWriter.WriteObjectValue(request); + request0.Content = content; + return message; + } + + /// Renames a sparkConfiguration. + /// The spark Configuration name. + /// proposed new name. + /// The cancellation token to use. + /// or is null. + public async Task RenameSparkConfigurationAsync(string sparkConfigurationName, ArtifactRenameRequest request, CancellationToken cancellationToken = default) + { + if (sparkConfigurationName == null) + { + throw new ArgumentNullException(nameof(sparkConfigurationName)); + } + if (request == null) + { + throw new ArgumentNullException(nameof(request)); + } + + using var message = CreateRenameSparkConfigurationRequest(sparkConfigurationName, request); + await _pipeline.SendAsync(message, cancellationToken).ConfigureAwait(false); + switch (message.Response.Status) + { + case 200: + case 202: + return message.Response; + default: + throw await _clientDiagnostics.CreateRequestFailedExceptionAsync(message.Response).ConfigureAwait(false); + } + } + + /// Renames a sparkConfiguration. + /// The spark Configuration name. + /// proposed new name. + /// The cancellation token to use. + /// or is null. + public Response RenameSparkConfiguration(string sparkConfigurationName, ArtifactRenameRequest request, CancellationToken cancellationToken = default) + { + if (sparkConfigurationName == null) + { + throw new ArgumentNullException(nameof(sparkConfigurationName)); + } + if (request == null) + { + throw new ArgumentNullException(nameof(request)); + } + + using var message = CreateRenameSparkConfigurationRequest(sparkConfigurationName, request); + _pipeline.Send(message, cancellationToken); + switch (message.Response.Status) + { + case 200: + case 202: + return message.Response; + default: + throw _clientDiagnostics.CreateRequestFailedException(message.Response); + } + } + + internal HttpMessage CreateGetSparkConfigurationsByWorkspaceNextPageRequest(string nextLink) + { + var message = _pipeline.CreateMessage(); + var request = message.Request; + request.Method = RequestMethod.Get; + var uri = new RawRequestUriBuilder(); + uri.Reset(endpoint); + uri.AppendRawNextLink(nextLink, false); + request.Uri = uri; + request.Headers.Add("Accept", "application/json"); + return message; + } + + /// Lists sparkconfigurations. + /// The URL to the next page of results. + /// The cancellation token to use. + /// is null. + public async Task> GetSparkConfigurationsByWorkspaceNextPageAsync(string nextLink, CancellationToken cancellationToken = default) + { + if (nextLink == null) + { + throw new ArgumentNullException(nameof(nextLink)); + } + + using var message = CreateGetSparkConfigurationsByWorkspaceNextPageRequest(nextLink); + await _pipeline.SendAsync(message, cancellationToken).ConfigureAwait(false); + switch (message.Response.Status) + { + case 200: + { + SparkConfigurationListResponse value = default; + using var document = await JsonDocument.ParseAsync(message.Response.ContentStream, default, cancellationToken).ConfigureAwait(false); + value = SparkConfigurationListResponse.DeserializeSparkConfigurationListResponse(document.RootElement); + return Response.FromValue(value, message.Response); + } + default: + throw await _clientDiagnostics.CreateRequestFailedExceptionAsync(message.Response).ConfigureAwait(false); + } + } + + /// Lists sparkconfigurations. + /// The URL to the next page of results. + /// The cancellation token to use. + /// is null. + public Response GetSparkConfigurationsByWorkspaceNextPage(string nextLink, CancellationToken cancellationToken = default) + { + if (nextLink == null) + { + throw new ArgumentNullException(nameof(nextLink)); + } + + using var message = CreateGetSparkConfigurationsByWorkspaceNextPageRequest(nextLink); + _pipeline.Send(message, cancellationToken); + switch (message.Response.Status) + { + case 200: + { + SparkConfigurationListResponse value = default; + using var document = JsonDocument.Parse(message.Response.ContentStream); + value = SparkConfigurationListResponse.DeserializeSparkConfigurationListResponse(document.RootElement); + return Response.FromValue(value, message.Response); + } + default: + throw _clientDiagnostics.CreateRequestFailedException(message.Response); + } + } + } +} diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/SparkJobDefinitionClient.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/SparkJobDefinitionClient.cs index 533191f9c16d..49f16fe522dd 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/SparkJobDefinitionClient.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/SparkJobDefinitionClient.cs @@ -46,17 +46,16 @@ public SparkJobDefinitionClient(Uri endpoint, TokenCredential credential, Artifa _clientDiagnostics = new ClientDiagnostics(options); string[] scopes = { "https://dev.azuresynapse.net/.default" }; _pipeline = HttpPipelineBuilder.Build(options, new BearerTokenAuthenticationPolicy(credential, scopes)); - RestClient = new SparkJobDefinitionRestClient(_clientDiagnostics, _pipeline, endpoint, options.Version); + RestClient = new SparkJobDefinitionRestClient(_clientDiagnostics, _pipeline, endpoint); } /// Initializes a new instance of SparkJobDefinitionClient. /// The handler for diagnostic messaging in the client. /// The HTTP pipeline for sending and receiving REST requests and responses. /// The workspace development endpoint, for example https://myworkspace.dev.azuresynapse.net. - /// Api Version. - internal SparkJobDefinitionClient(ClientDiagnostics clientDiagnostics, HttpPipeline pipeline, Uri endpoint, string apiVersion = "2019-06-01-preview") + internal SparkJobDefinitionClient(ClientDiagnostics clientDiagnostics, HttpPipeline pipeline, Uri endpoint) { - RestClient = new SparkJobDefinitionRestClient(clientDiagnostics, pipeline, endpoint, apiVersion); + RestClient = new SparkJobDefinitionRestClient(clientDiagnostics, pipeline, endpoint); _clientDiagnostics = clientDiagnostics; _pipeline = pipeline; } diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/SparkJobDefinitionRestClient.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/SparkJobDefinitionRestClient.cs index 82a2ee35d932..8340a456e8db 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/SparkJobDefinitionRestClient.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/SparkJobDefinitionRestClient.cs @@ -19,7 +19,6 @@ namespace Azure.Analytics.Synapse.Artifacts internal partial class SparkJobDefinitionRestClient { private Uri endpoint; - private string apiVersion; private ClientDiagnostics _clientDiagnostics; private HttpPipeline _pipeline; @@ -27,12 +26,10 @@ internal partial class SparkJobDefinitionRestClient /// The handler for diagnostic messaging in the client. /// The HTTP pipeline for sending and receiving REST requests and responses. /// The workspace development endpoint, for example https://myworkspace.dev.azuresynapse.net. - /// Api Version. - /// or is null. - public SparkJobDefinitionRestClient(ClientDiagnostics clientDiagnostics, HttpPipeline pipeline, Uri endpoint, string apiVersion = "2019-06-01-preview") + /// is null. + public SparkJobDefinitionRestClient(ClientDiagnostics clientDiagnostics, HttpPipeline pipeline, Uri endpoint) { this.endpoint = endpoint ?? throw new ArgumentNullException(nameof(endpoint)); - this.apiVersion = apiVersion ?? throw new ArgumentNullException(nameof(apiVersion)); _clientDiagnostics = clientDiagnostics; _pipeline = pipeline; } @@ -45,7 +42,7 @@ internal HttpMessage CreateGetSparkJobDefinitionsByWorkspaceRequest() var uri = new RawRequestUriBuilder(); uri.Reset(endpoint); uri.AppendPath("/sparkJobDefinitions", false); - uri.AppendQuery("api-version", apiVersion, true); + uri.AppendQuery("api-version", "2020-12-01", true); request.Uri = uri; request.Headers.Add("Accept", "application/json"); return message; @@ -100,7 +97,7 @@ internal HttpMessage CreateCreateOrUpdateSparkJobDefinitionRequest(string sparkJ uri.Reset(endpoint); uri.AppendPath("/sparkJobDefinitions/", false); uri.AppendPath(sparkJobDefinitionName, true); - uri.AppendQuery("api-version", apiVersion, true); + uri.AppendQuery("api-version", "2020-12-01", true); request.Uri = uri; if (ifMatch != null) { @@ -181,7 +178,7 @@ internal HttpMessage CreateGetSparkJobDefinitionRequest(string sparkJobDefinitio uri.Reset(endpoint); uri.AppendPath("/sparkJobDefinitions/", false); uri.AppendPath(sparkJobDefinitionName, true); - uri.AppendQuery("api-version", apiVersion, true); + uri.AppendQuery("api-version", "2020-12-01", true); request.Uri = uri; if (ifNoneMatch != null) { @@ -260,7 +257,7 @@ internal HttpMessage CreateDeleteSparkJobDefinitionRequest(string sparkJobDefini uri.Reset(endpoint); uri.AppendPath("/sparkJobDefinitions/", false); uri.AppendPath(sparkJobDefinitionName, true); - uri.AppendQuery("api-version", apiVersion, true); + uri.AppendQuery("api-version", "2020-12-01", true); request.Uri = uri; request.Headers.Add("Accept", "application/json"); return message; @@ -324,7 +321,7 @@ internal HttpMessage CreateExecuteSparkJobDefinitionRequest(string sparkJobDefin uri.AppendPath("/sparkJobDefinitions/", false); uri.AppendPath(sparkJobDefinitionName, true); uri.AppendPath("/execute", false); - uri.AppendQuery("api-version", apiVersion, true); + uri.AppendQuery("api-version", "2020-12-01", true); request.Uri = uri; request.Headers.Add("Accept", "application/json"); return message; @@ -386,7 +383,7 @@ internal HttpMessage CreateRenameSparkJobDefinitionRequest(string sparkJobDefini uri.AppendPath("/sparkJobDefinitions/", false); uri.AppendPath(sparkJobDefinitionName, true); uri.AppendPath("/rename", false); - uri.AppendQuery("api-version", apiVersion, true); + uri.AppendQuery("api-version", "2020-12-01", true); request0.Uri = uri; request0.Headers.Add("Accept", "application/json"); request0.Headers.Add("Content-Type", "application/json"); @@ -460,7 +457,7 @@ internal HttpMessage CreateDebugSparkJobDefinitionRequest(SparkJobDefinitionReso var uri = new RawRequestUriBuilder(); uri.Reset(endpoint); uri.AppendPath("/debugSparkJobDefinition", false); - uri.AppendQuery("api-version", apiVersion, true); + uri.AppendQuery("api-version", "2020-12-01", true); request.Uri = uri; request.Headers.Add("Accept", "application/json"); request.Headers.Add("Content-Type", "application/json"); diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/SqlPoolsClient.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/SqlPoolsClient.cs index d9392f6d6150..535002885c4d 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/SqlPoolsClient.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/SqlPoolsClient.cs @@ -46,17 +46,16 @@ public SqlPoolsClient(Uri endpoint, TokenCredential credential, ArtifactsClientO _clientDiagnostics = new ClientDiagnostics(options); string[] scopes = { "https://dev.azuresynapse.net/.default" }; _pipeline = HttpPipelineBuilder.Build(options, new BearerTokenAuthenticationPolicy(credential, scopes)); - RestClient = new SqlPoolsRestClient(_clientDiagnostics, _pipeline, endpoint, options.Version); + RestClient = new SqlPoolsRestClient(_clientDiagnostics, _pipeline, endpoint); } /// Initializes a new instance of SqlPoolsClient. /// The handler for diagnostic messaging in the client. /// The HTTP pipeline for sending and receiving REST requests and responses. /// The workspace development endpoint, for example https://myworkspace.dev.azuresynapse.net. - /// Api Version. - internal SqlPoolsClient(ClientDiagnostics clientDiagnostics, HttpPipeline pipeline, Uri endpoint, string apiVersion = "2019-06-01-preview") + internal SqlPoolsClient(ClientDiagnostics clientDiagnostics, HttpPipeline pipeline, Uri endpoint) { - RestClient = new SqlPoolsRestClient(clientDiagnostics, pipeline, endpoint, apiVersion); + RestClient = new SqlPoolsRestClient(clientDiagnostics, pipeline, endpoint); _clientDiagnostics = clientDiagnostics; _pipeline = pipeline; } diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/SqlPoolsRestClient.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/SqlPoolsRestClient.cs index 23cfd351309e..5b16a3b71abc 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/SqlPoolsRestClient.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/SqlPoolsRestClient.cs @@ -19,7 +19,6 @@ namespace Azure.Analytics.Synapse.Artifacts internal partial class SqlPoolsRestClient { private Uri endpoint; - private string apiVersion; private ClientDiagnostics _clientDiagnostics; private HttpPipeline _pipeline; @@ -27,12 +26,10 @@ internal partial class SqlPoolsRestClient /// The handler for diagnostic messaging in the client. /// The HTTP pipeline for sending and receiving REST requests and responses. /// The workspace development endpoint, for example https://myworkspace.dev.azuresynapse.net. - /// Api Version. - /// or is null. - public SqlPoolsRestClient(ClientDiagnostics clientDiagnostics, HttpPipeline pipeline, Uri endpoint, string apiVersion = "2019-06-01-preview") + /// is null. + public SqlPoolsRestClient(ClientDiagnostics clientDiagnostics, HttpPipeline pipeline, Uri endpoint) { this.endpoint = endpoint ?? throw new ArgumentNullException(nameof(endpoint)); - this.apiVersion = apiVersion ?? throw new ArgumentNullException(nameof(apiVersion)); _clientDiagnostics = clientDiagnostics; _pipeline = pipeline; } @@ -45,7 +42,7 @@ internal HttpMessage CreateListRequest() var uri = new RawRequestUriBuilder(); uri.Reset(endpoint); uri.AppendPath("/sqlPools", false); - uri.AppendQuery("api-version", apiVersion, true); + uri.AppendQuery("api-version", "2020-12-01", true); request.Uri = uri; request.Headers.Add("Accept", "application/json"); return message; @@ -100,7 +97,7 @@ internal HttpMessage CreateGetRequest(string sqlPoolName) uri.Reset(endpoint); uri.AppendPath("/sqlPools/", false); uri.AppendPath(sqlPoolName, true); - uri.AppendQuery("api-version", apiVersion, true); + uri.AppendQuery("api-version", "2020-12-01", true); request.Uri = uri; request.Headers.Add("Accept", "application/json"); return message; diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/SqlScriptClient.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/SqlScriptClient.cs index 91f8ed10b31e..dae5cfd5810d 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/SqlScriptClient.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/SqlScriptClient.cs @@ -46,17 +46,16 @@ public SqlScriptClient(Uri endpoint, TokenCredential credential, ArtifactsClient _clientDiagnostics = new ClientDiagnostics(options); string[] scopes = { "https://dev.azuresynapse.net/.default" }; _pipeline = HttpPipelineBuilder.Build(options, new BearerTokenAuthenticationPolicy(credential, scopes)); - RestClient = new SqlScriptRestClient(_clientDiagnostics, _pipeline, endpoint, options.Version); + RestClient = new SqlScriptRestClient(_clientDiagnostics, _pipeline, endpoint); } /// Initializes a new instance of SqlScriptClient. /// The handler for diagnostic messaging in the client. /// The HTTP pipeline for sending and receiving REST requests and responses. /// The workspace development endpoint, for example https://myworkspace.dev.azuresynapse.net. - /// Api Version. - internal SqlScriptClient(ClientDiagnostics clientDiagnostics, HttpPipeline pipeline, Uri endpoint, string apiVersion = "2019-06-01-preview") + internal SqlScriptClient(ClientDiagnostics clientDiagnostics, HttpPipeline pipeline, Uri endpoint) { - RestClient = new SqlScriptRestClient(clientDiagnostics, pipeline, endpoint, apiVersion); + RestClient = new SqlScriptRestClient(clientDiagnostics, pipeline, endpoint); _clientDiagnostics = clientDiagnostics; _pipeline = pipeline; } diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/SqlScriptRestClient.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/SqlScriptRestClient.cs index 5c8940c738b5..18990b3b3358 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/SqlScriptRestClient.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/SqlScriptRestClient.cs @@ -19,7 +19,6 @@ namespace Azure.Analytics.Synapse.Artifacts internal partial class SqlScriptRestClient { private Uri endpoint; - private string apiVersion; private ClientDiagnostics _clientDiagnostics; private HttpPipeline _pipeline; @@ -27,12 +26,10 @@ internal partial class SqlScriptRestClient /// The handler for diagnostic messaging in the client. /// The HTTP pipeline for sending and receiving REST requests and responses. /// The workspace development endpoint, for example https://myworkspace.dev.azuresynapse.net. - /// Api Version. - /// or is null. - public SqlScriptRestClient(ClientDiagnostics clientDiagnostics, HttpPipeline pipeline, Uri endpoint, string apiVersion = "2019-06-01-preview") + /// is null. + public SqlScriptRestClient(ClientDiagnostics clientDiagnostics, HttpPipeline pipeline, Uri endpoint) { this.endpoint = endpoint ?? throw new ArgumentNullException(nameof(endpoint)); - this.apiVersion = apiVersion ?? throw new ArgumentNullException(nameof(apiVersion)); _clientDiagnostics = clientDiagnostics; _pipeline = pipeline; } @@ -45,7 +42,7 @@ internal HttpMessage CreateGetSqlScriptsByWorkspaceRequest() var uri = new RawRequestUriBuilder(); uri.Reset(endpoint); uri.AppendPath("/sqlScripts", false); - uri.AppendQuery("api-version", apiVersion, true); + uri.AppendQuery("api-version", "2020-12-01", true); request.Uri = uri; request.Headers.Add("Accept", "application/json"); return message; @@ -100,7 +97,7 @@ internal HttpMessage CreateCreateOrUpdateSqlScriptRequest(string sqlScriptName, uri.Reset(endpoint); uri.AppendPath("/sqlScripts/", false); uri.AppendPath(sqlScriptName, true); - uri.AppendQuery("api-version", apiVersion, true); + uri.AppendQuery("api-version", "2020-12-01", true); request.Uri = uri; if (ifMatch != null) { @@ -181,7 +178,7 @@ internal HttpMessage CreateGetSqlScriptRequest(string sqlScriptName, string ifNo uri.Reset(endpoint); uri.AppendPath("/sqlScripts/", false); uri.AppendPath(sqlScriptName, true); - uri.AppendQuery("api-version", apiVersion, true); + uri.AppendQuery("api-version", "2020-12-01", true); request.Uri = uri; if (ifNoneMatch != null) { @@ -260,7 +257,7 @@ internal HttpMessage CreateDeleteSqlScriptRequest(string sqlScriptName) uri.Reset(endpoint); uri.AppendPath("/sqlScripts/", false); uri.AppendPath(sqlScriptName, true); - uri.AppendQuery("api-version", apiVersion, true); + uri.AppendQuery("api-version", "2020-12-01", true); request.Uri = uri; request.Headers.Add("Accept", "application/json"); return message; @@ -324,7 +321,7 @@ internal HttpMessage CreateRenameSqlScriptRequest(string sqlScriptName, Artifact uri.AppendPath("/sqlScripts/", false); uri.AppendPath(sqlScriptName, true); uri.AppendPath("/rename", false); - uri.AppendQuery("api-version", apiVersion, true); + uri.AppendQuery("api-version", "2020-12-01", true); request0.Uri = uri; request0.Headers.Add("Accept", "application/json"); request0.Headers.Add("Content-Type", "application/json"); diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/TriggerClient.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/TriggerClient.cs index c411eeefa404..05a7d0db5301 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/TriggerClient.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/TriggerClient.cs @@ -46,17 +46,16 @@ public TriggerClient(Uri endpoint, TokenCredential credential, ArtifactsClientOp _clientDiagnostics = new ClientDiagnostics(options); string[] scopes = { "https://dev.azuresynapse.net/.default" }; _pipeline = HttpPipelineBuilder.Build(options, new BearerTokenAuthenticationPolicy(credential, scopes)); - RestClient = new TriggerRestClient(_clientDiagnostics, _pipeline, endpoint, options.Version); + RestClient = new TriggerRestClient(_clientDiagnostics, _pipeline, endpoint); } /// Initializes a new instance of TriggerClient. /// The handler for diagnostic messaging in the client. /// The HTTP pipeline for sending and receiving REST requests and responses. /// The workspace development endpoint, for example https://myworkspace.dev.azuresynapse.net. - /// Api Version. - internal TriggerClient(ClientDiagnostics clientDiagnostics, HttpPipeline pipeline, Uri endpoint, string apiVersion = "2019-06-01-preview") + internal TriggerClient(ClientDiagnostics clientDiagnostics, HttpPipeline pipeline, Uri endpoint) { - RestClient = new TriggerRestClient(clientDiagnostics, pipeline, endpoint, apiVersion); + RestClient = new TriggerRestClient(clientDiagnostics, pipeline, endpoint); _clientDiagnostics = clientDiagnostics; _pipeline = pipeline; } diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/TriggerRestClient.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/TriggerRestClient.cs index b87d00efd9d9..532066d89224 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/TriggerRestClient.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/TriggerRestClient.cs @@ -19,7 +19,6 @@ namespace Azure.Analytics.Synapse.Artifacts internal partial class TriggerRestClient { private Uri endpoint; - private string apiVersion; private ClientDiagnostics _clientDiagnostics; private HttpPipeline _pipeline; @@ -27,12 +26,10 @@ internal partial class TriggerRestClient /// The handler for diagnostic messaging in the client. /// The HTTP pipeline for sending and receiving REST requests and responses. /// The workspace development endpoint, for example https://myworkspace.dev.azuresynapse.net. - /// Api Version. - /// or is null. - public TriggerRestClient(ClientDiagnostics clientDiagnostics, HttpPipeline pipeline, Uri endpoint, string apiVersion = "2019-06-01-preview") + /// is null. + public TriggerRestClient(ClientDiagnostics clientDiagnostics, HttpPipeline pipeline, Uri endpoint) { this.endpoint = endpoint ?? throw new ArgumentNullException(nameof(endpoint)); - this.apiVersion = apiVersion ?? throw new ArgumentNullException(nameof(apiVersion)); _clientDiagnostics = clientDiagnostics; _pipeline = pipeline; } @@ -45,7 +42,7 @@ internal HttpMessage CreateGetTriggersByWorkspaceRequest() var uri = new RawRequestUriBuilder(); uri.Reset(endpoint); uri.AppendPath("/triggers", false); - uri.AppendQuery("api-version", apiVersion, true); + uri.AppendQuery("api-version", "2020-12-01", true); request.Uri = uri; request.Headers.Add("Accept", "application/json"); return message; @@ -100,7 +97,7 @@ internal HttpMessage CreateCreateOrUpdateTriggerRequest(string triggerName, Trig uri.Reset(endpoint); uri.AppendPath("/triggers/", false); uri.AppendPath(triggerName, true); - uri.AppendQuery("api-version", apiVersion, true); + uri.AppendQuery("api-version", "2020-12-01", true); request.Uri = uri; if (ifMatch != null) { @@ -181,7 +178,7 @@ internal HttpMessage CreateGetTriggerRequest(string triggerName, string ifNoneMa uri.Reset(endpoint); uri.AppendPath("/triggers/", false); uri.AppendPath(triggerName, true); - uri.AppendQuery("api-version", apiVersion, true); + uri.AppendQuery("api-version", "2020-12-01", true); request.Uri = uri; if (ifNoneMatch != null) { @@ -260,7 +257,7 @@ internal HttpMessage CreateDeleteTriggerRequest(string triggerName) uri.Reset(endpoint); uri.AppendPath("/triggers/", false); uri.AppendPath(triggerName, true); - uri.AppendQuery("api-version", apiVersion, true); + uri.AppendQuery("api-version", "2020-12-01", true); request.Uri = uri; request.Headers.Add("Accept", "application/json"); return message; @@ -324,7 +321,7 @@ internal HttpMessage CreateSubscribeTriggerToEventsRequest(string triggerName) uri.AppendPath("/triggers/", false); uri.AppendPath(triggerName, true); uri.AppendPath("/subscribeToEvents", false); - uri.AppendQuery("api-version", apiVersion, true); + uri.AppendQuery("api-version", "2020-12-01", true); request.Uri = uri; request.Headers.Add("Accept", "application/json"); return message; @@ -386,7 +383,7 @@ internal HttpMessage CreateGetEventSubscriptionStatusRequest(string triggerName) uri.AppendPath("/triggers/", false); uri.AppendPath(triggerName, true); uri.AppendPath("/getEventSubscriptionStatus", false); - uri.AppendQuery("api-version", apiVersion, true); + uri.AppendQuery("api-version", "2020-12-01", true); request.Uri = uri; request.Headers.Add("Accept", "application/json"); return message; @@ -456,7 +453,7 @@ internal HttpMessage CreateUnsubscribeTriggerFromEventsRequest(string triggerNam uri.AppendPath("/triggers/", false); uri.AppendPath(triggerName, true); uri.AppendPath("/unsubscribeFromEvents", false); - uri.AppendQuery("api-version", apiVersion, true); + uri.AppendQuery("api-version", "2020-12-01", true); request.Uri = uri; request.Headers.Add("Accept", "application/json"); return message; @@ -518,7 +515,7 @@ internal HttpMessage CreateStartTriggerRequest(string triggerName) uri.AppendPath("/triggers/", false); uri.AppendPath(triggerName, true); uri.AppendPath("/start", false); - uri.AppendQuery("api-version", apiVersion, true); + uri.AppendQuery("api-version", "2020-12-01", true); request.Uri = uri; request.Headers.Add("Accept", "application/json"); return message; @@ -578,7 +575,7 @@ internal HttpMessage CreateStopTriggerRequest(string triggerName) uri.AppendPath("/triggers/", false); uri.AppendPath(triggerName, true); uri.AppendPath("/stop", false); - uri.AppendQuery("api-version", apiVersion, true); + uri.AppendQuery("api-version", "2020-12-01", true); request.Uri = uri; request.Headers.Add("Accept", "application/json"); return message; diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/TriggerRunClient.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/TriggerRunClient.cs index ee90318dfd7d..de3b2ee0b5ea 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/TriggerRunClient.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/TriggerRunClient.cs @@ -46,17 +46,16 @@ public TriggerRunClient(Uri endpoint, TokenCredential credential, ArtifactsClien _clientDiagnostics = new ClientDiagnostics(options); string[] scopes = { "https://dev.azuresynapse.net/.default" }; _pipeline = HttpPipelineBuilder.Build(options, new BearerTokenAuthenticationPolicy(credential, scopes)); - RestClient = new TriggerRunRestClient(_clientDiagnostics, _pipeline, endpoint, options.Version); + RestClient = new TriggerRunRestClient(_clientDiagnostics, _pipeline, endpoint); } /// Initializes a new instance of TriggerRunClient. /// The handler for diagnostic messaging in the client. /// The HTTP pipeline for sending and receiving REST requests and responses. /// The workspace development endpoint, for example https://myworkspace.dev.azuresynapse.net. - /// Api Version. - internal TriggerRunClient(ClientDiagnostics clientDiagnostics, HttpPipeline pipeline, Uri endpoint, string apiVersion = "2019-06-01-preview") + internal TriggerRunClient(ClientDiagnostics clientDiagnostics, HttpPipeline pipeline, Uri endpoint) { - RestClient = new TriggerRunRestClient(clientDiagnostics, pipeline, endpoint, apiVersion); + RestClient = new TriggerRunRestClient(clientDiagnostics, pipeline, endpoint); _clientDiagnostics = clientDiagnostics; _pipeline = pipeline; } diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/TriggerRunRestClient.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/TriggerRunRestClient.cs index 68e589cf715d..c0c87504f0db 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/TriggerRunRestClient.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/TriggerRunRestClient.cs @@ -19,7 +19,6 @@ namespace Azure.Analytics.Synapse.Artifacts internal partial class TriggerRunRestClient { private Uri endpoint; - private string apiVersion; private ClientDiagnostics _clientDiagnostics; private HttpPipeline _pipeline; @@ -27,12 +26,10 @@ internal partial class TriggerRunRestClient /// The handler for diagnostic messaging in the client. /// The HTTP pipeline for sending and receiving REST requests and responses. /// The workspace development endpoint, for example https://myworkspace.dev.azuresynapse.net. - /// Api Version. - /// or is null. - public TriggerRunRestClient(ClientDiagnostics clientDiagnostics, HttpPipeline pipeline, Uri endpoint, string apiVersion = "2019-06-01-preview") + /// is null. + public TriggerRunRestClient(ClientDiagnostics clientDiagnostics, HttpPipeline pipeline, Uri endpoint) { this.endpoint = endpoint ?? throw new ArgumentNullException(nameof(endpoint)); - this.apiVersion = apiVersion ?? throw new ArgumentNullException(nameof(apiVersion)); _clientDiagnostics = clientDiagnostics; _pipeline = pipeline; } @@ -49,7 +46,7 @@ internal HttpMessage CreateRerunTriggerInstanceRequest(string triggerName, strin uri.AppendPath("/triggerRuns/", false); uri.AppendPath(runId, true); uri.AppendPath("/rerun", false); - uri.AppendQuery("api-version", apiVersion, true); + uri.AppendQuery("api-version", "2020-12-01", true); request.Uri = uri; request.Headers.Add("Accept", "application/json"); return message; @@ -121,7 +118,7 @@ internal HttpMessage CreateCancelTriggerInstanceRequest(string triggerName, stri uri.AppendPath("/triggerRuns/", false); uri.AppendPath(runId, true); uri.AppendPath("/cancel", false); - uri.AppendQuery("api-version", apiVersion, true); + uri.AppendQuery("api-version", "2020-12-01", true); request.Uri = uri; request.Headers.Add("Accept", "application/json"); return message; @@ -189,7 +186,7 @@ internal HttpMessage CreateQueryTriggerRunsByWorkspaceRequest(RunFilterParameter var uri = new RawRequestUriBuilder(); uri.Reset(endpoint); uri.AppendPath("/queryTriggerRuns", false); - uri.AppendQuery("api-version", apiVersion, true); + uri.AppendQuery("api-version", "2020-12-01", true); request.Uri = uri; request.Headers.Add("Accept", "application/json"); request.Headers.Add("Content-Type", "application/json"); diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/WorkspaceClient.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/WorkspaceClient.cs index 2ae7d780b4c0..d7db434af198 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/WorkspaceClient.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/WorkspaceClient.cs @@ -46,17 +46,16 @@ public WorkspaceClient(Uri endpoint, TokenCredential credential, ArtifactsClient _clientDiagnostics = new ClientDiagnostics(options); string[] scopes = { "https://dev.azuresynapse.net/.default" }; _pipeline = HttpPipelineBuilder.Build(options, new BearerTokenAuthenticationPolicy(credential, scopes)); - RestClient = new WorkspaceRestClient(_clientDiagnostics, _pipeline, endpoint, options.Version); + RestClient = new WorkspaceRestClient(_clientDiagnostics, _pipeline, endpoint); } /// Initializes a new instance of WorkspaceClient. /// The handler for diagnostic messaging in the client. /// The HTTP pipeline for sending and receiving REST requests and responses. /// The workspace development endpoint, for example https://myworkspace.dev.azuresynapse.net. - /// Api Version. - internal WorkspaceClient(ClientDiagnostics clientDiagnostics, HttpPipeline pipeline, Uri endpoint, string apiVersion = "2019-06-01-preview") + internal WorkspaceClient(ClientDiagnostics clientDiagnostics, HttpPipeline pipeline, Uri endpoint) { - RestClient = new WorkspaceRestClient(clientDiagnostics, pipeline, endpoint, apiVersion); + RestClient = new WorkspaceRestClient(clientDiagnostics, pipeline, endpoint); _clientDiagnostics = clientDiagnostics; _pipeline = pipeline; } diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/WorkspaceGitRepoManagementClient.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/WorkspaceGitRepoManagementClient.cs index 06c359194482..d79ed27bd018 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/WorkspaceGitRepoManagementClient.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/WorkspaceGitRepoManagementClient.cs @@ -46,17 +46,16 @@ public WorkspaceGitRepoManagementClient(Uri endpoint, TokenCredential credential _clientDiagnostics = new ClientDiagnostics(options); string[] scopes = { "https://dev.azuresynapse.net/.default" }; _pipeline = HttpPipelineBuilder.Build(options, new BearerTokenAuthenticationPolicy(credential, scopes)); - RestClient = new WorkspaceGitRepoManagementRestClient(_clientDiagnostics, _pipeline, endpoint, options.Version); + RestClient = new WorkspaceGitRepoManagementRestClient(_clientDiagnostics, _pipeline, endpoint); } /// Initializes a new instance of WorkspaceGitRepoManagementClient. /// The handler for diagnostic messaging in the client. /// The HTTP pipeline for sending and receiving REST requests and responses. /// The workspace development endpoint, for example https://myworkspace.dev.azuresynapse.net. - /// Api Version. - internal WorkspaceGitRepoManagementClient(ClientDiagnostics clientDiagnostics, HttpPipeline pipeline, Uri endpoint, string apiVersion = "2019-06-01-preview") + internal WorkspaceGitRepoManagementClient(ClientDiagnostics clientDiagnostics, HttpPipeline pipeline, Uri endpoint) { - RestClient = new WorkspaceGitRepoManagementRestClient(clientDiagnostics, pipeline, endpoint, apiVersion); + RestClient = new WorkspaceGitRepoManagementRestClient(clientDiagnostics, pipeline, endpoint); _clientDiagnostics = clientDiagnostics; _pipeline = pipeline; } diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/WorkspaceGitRepoManagementRestClient.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/WorkspaceGitRepoManagementRestClient.cs index e23eada4a5fa..fe1b1fe1702c 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/WorkspaceGitRepoManagementRestClient.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/WorkspaceGitRepoManagementRestClient.cs @@ -19,7 +19,6 @@ namespace Azure.Analytics.Synapse.Artifacts internal partial class WorkspaceGitRepoManagementRestClient { private Uri endpoint; - private string apiVersion; private ClientDiagnostics _clientDiagnostics; private HttpPipeline _pipeline; @@ -27,12 +26,10 @@ internal partial class WorkspaceGitRepoManagementRestClient /// The handler for diagnostic messaging in the client. /// The HTTP pipeline for sending and receiving REST requests and responses. /// The workspace development endpoint, for example https://myworkspace.dev.azuresynapse.net. - /// Api Version. - /// or is null. - public WorkspaceGitRepoManagementRestClient(ClientDiagnostics clientDiagnostics, HttpPipeline pipeline, Uri endpoint, string apiVersion = "2019-06-01-preview") + /// is null. + public WorkspaceGitRepoManagementRestClient(ClientDiagnostics clientDiagnostics, HttpPipeline pipeline, Uri endpoint) { this.endpoint = endpoint ?? throw new ArgumentNullException(nameof(endpoint)); - this.apiVersion = apiVersion ?? throw new ArgumentNullException(nameof(apiVersion)); _clientDiagnostics = clientDiagnostics; _pipeline = pipeline; } @@ -45,7 +42,7 @@ internal HttpMessage CreateGetGitHubAccessTokenRequest(GitHubAccessTokenRequest var uri = new RawRequestUriBuilder(); uri.Reset(endpoint); uri.AppendPath("/getGitHubAccessToken", false); - uri.AppendQuery("api-version", apiVersion, true); + uri.AppendQuery("api-version", "2020-12-01", true); request.Uri = uri; request.Headers.Add("Accept", "application/json"); request.Headers.Add("Content-Type", "application/json"); diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/WorkspaceRestClient.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/WorkspaceRestClient.cs index 0abbd00e0c98..05bb5fcc4a4c 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/WorkspaceRestClient.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/WorkspaceRestClient.cs @@ -19,7 +19,6 @@ namespace Azure.Analytics.Synapse.Artifacts internal partial class WorkspaceRestClient { private Uri endpoint; - private string apiVersion; private ClientDiagnostics _clientDiagnostics; private HttpPipeline _pipeline; @@ -27,12 +26,10 @@ internal partial class WorkspaceRestClient /// The handler for diagnostic messaging in the client. /// The HTTP pipeline for sending and receiving REST requests and responses. /// The workspace development endpoint, for example https://myworkspace.dev.azuresynapse.net. - /// Api Version. - /// or is null. - public WorkspaceRestClient(ClientDiagnostics clientDiagnostics, HttpPipeline pipeline, Uri endpoint, string apiVersion = "2019-06-01-preview") + /// is null. + public WorkspaceRestClient(ClientDiagnostics clientDiagnostics, HttpPipeline pipeline, Uri endpoint) { this.endpoint = endpoint ?? throw new ArgumentNullException(nameof(endpoint)); - this.apiVersion = apiVersion ?? throw new ArgumentNullException(nameof(apiVersion)); _clientDiagnostics = clientDiagnostics; _pipeline = pipeline; } @@ -45,7 +42,7 @@ internal HttpMessage CreateGetRequest() var uri = new RawRequestUriBuilder(); uri.Reset(endpoint); uri.AppendPath("/workspace", false); - uri.AppendQuery("api-version", apiVersion, true); + uri.AppendQuery("api-version", "2020-12-01", true); request.Uri = uri; request.Headers.Add("Accept", "application/json"); return message; diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/autorest.md b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/autorest.md index 8bc2cfcea592..3c41b04690f4 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/autorest.md +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/autorest.md @@ -6,9 +6,9 @@ Run `dotnet build /t:GenerateCode` to generate code. > see https://aka.ms/autorest ``` yaml -tag: package-artifacts-2019-06-01-preview +tag: package-artifacts-composite-v1 require: - - https://github.com/Azure/azure-rest-api-specs/blob/fc5e2fbcfc3f585d38bdb1c513ce1ad2c570cf3d/specification/synapse/data-plane/readme.md + - https://github.com/Azure/azure-rest-api-specs/blob/bee724836ffdeb5458274037dc75f4d43576b5e3/specification/synapse/data-plane/readme.md namespace: Azure.Analytics.Synapse.Artifacts public-clients: true security: AADToken @@ -26,6 +26,32 @@ directive: transform: $.format = "url" ``` +### Add nullable annotations + +``` yaml +directive: + from: swagger-document + where: $.definitions.Notebook + transform: > + $.properties.folder["x-nullable"] = true; +``` + +``` yaml +directive: + from: swagger-document + where: $.definitions.SparkJobDefinition + transform: > + $.properties.folder["x-nullable"] = true; +``` + +``` yaml +directive: + from: swagger-document + where: $.definitions.SqlScript + transform: > + $.properties.folder["x-nullable"] = true; +``` + ### Expose serialization and deserialization methods and internal models ``` yaml @@ -75,4 +101,4 @@ directive: $[path]["x-csharp-usage"] = "converter"; } } -``` \ No newline at end of file +``` diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/DataFlowDebugSessionClientLiveTests.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/DataFlowDebugSessionClientLiveTests.cs index 3dee169df2e0..4dc22f446a81 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/DataFlowDebugSessionClientLiveTests.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/DataFlowDebugSessionClientLiveTests.cs @@ -114,7 +114,7 @@ public async Task ExecuteCommand() await using DisposableDataFlowDebugSession debugSession = await DisposableDataFlowDebugSession.Create (debugClient, this.Recording); // SYNAPSE_API_ISSUE - What payload do we need here? - DataFlowDebugSessionExecuteCommandOperation executeOperation = await debugClient.StartExecuteCommandAsync (new DataFlowDebugCommandRequest (debugSession.SessionId, new object ())); + DataFlowDebugSessionExecuteCommandOperation executeOperation = await debugClient.StartExecuteCommandAsync(new DataFlowDebugCommandRequest { SessionId = debugSession.SessionId }); DataFlowDebugCommandResponse response = await executeOperation.WaitForCompletionAsync(); Assert.AreEqual (200, response.Status); } diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DataFlowClientLiveTests/DeleteDataFlow.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DataFlowClientLiveTests/DeleteDataFlow.json index 92477e7a8f60..f528d88a623a 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DataFlowClientLiveTests/DeleteDataFlow.json +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DataFlowClientLiveTests/DeleteDataFlow.json @@ -1,18 +1,15 @@ { "Entries": [ { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/dataflows/DataFlow5120?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/dataflows/DataFlow5120?api-version=2020-12-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "28", "Content-Type": "application/json", - "traceparent": "00-6805ee3cfa85104a9b1707c453d03ff0-88214b18e6232b48-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "traceparent": "00-da1762f9fd3b9a4681ae6a947dfdaca5-86369c3157197242-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "09483f5dd468e977d07e6c8b9e0d909c", "x-ms-return-client-request-id": "true" }, @@ -31,37 +28,34 @@ "Location", "Retry-After" ], - "Content-Length": "441", + "Content-Length": "435", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:26:47 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/d601bacf-fcf4-49ab-8dad-94b578546f88?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:09:26 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e231f6fb-9e39-4427-b752-c20de0d3196d?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "09483f5dd468e977d07e6c8b9e0d909c", - "x-ms-request-id": "c7c005dc-d087-4d0b-85ca-5408d5f4d3a2" + "x-ms-request-id": "b4f397bc-761c-4d05-ad09-b657bf139d80" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow5120", - "recordId": 983926, + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/dataflows/DataFlow5120", + "recordId": 2424172, "state": "Creating", - "created": "2021-01-20T21:26:47.4966667Z", - "changed": "2021-01-20T21:26:47.4966667Z", + "created": "2021-09-30T06:09:26.4266667Z", + "changed": "2021-09-30T06:09:26.4266667Z", "type": "DataFlow", "name": "DataFlow5120", - "operationId": "d601bacf-fcf4-49ab-8dad-94b578546f88", - "artifactId": "D63E2EE1-7EBD-403B-B306-24868FE7BF27" + "operationId": "e231f6fb-9e39-4427-b752-c20de0d3196d", + "artifactId": "FC9ABF91-3F48-4E39-B4B1-074AAC557D44" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/d601bacf-fcf4-49ab-8dad-94b578546f88?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e231f6fb-9e39-4427-b752-c20de0d3196d?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e7dde01f5deed7097eaf674274ef46fa", "x-ms-return-client-request-id": "true" }, @@ -78,27 +72,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:26:47 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/d601bacf-fcf4-49ab-8dad-94b578546f88?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:09:26 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e231f6fb-9e39-4427-b752-c20de0d3196d?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "e7dde01f5deed7097eaf674274ef46fa", - "x-ms-request-id": "e119d281-dbf7-4cea-9083-145a1a018e9e" + "x-ms-request-id": "841cac21-cf0b-48af-a238-8342a39c65e9" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/d601bacf-fcf4-49ab-8dad-94b578546f88?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e231f6fb-9e39-4427-b752-c20de0d3196d?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "74353b7a327752519b9a22b5a392aefe", "x-ms-return-client-request-id": "true" }, @@ -115,27 +106,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:26:48 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/d601bacf-fcf4-49ab-8dad-94b578546f88?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:09:27 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e231f6fb-9e39-4427-b752-c20de0d3196d?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "74353b7a327752519b9a22b5a392aefe", - "x-ms-request-id": "d1dec58e-7165-4094-b307-9620f3f81404" + "x-ms-request-id": "bb014c7d-6839-40b7-8d0f-6df4ad9b7b80" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/d601bacf-fcf4-49ab-8dad-94b578546f88?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e231f6fb-9e39-4427-b752-c20de0d3196d?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "be6cf8d1a92f9cad49b390d7a46138f7", "x-ms-return-client-request-id": "true" }, @@ -152,27 +140,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:26:49 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/d601bacf-fcf4-49ab-8dad-94b578546f88?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:09:28 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e231f6fb-9e39-4427-b752-c20de0d3196d?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "be6cf8d1a92f9cad49b390d7a46138f7", - "x-ms-request-id": "9af9d101-a83f-40fc-8c1c-6d59c583c7b2" + "x-ms-request-id": "631f4e94-77c7-4fd7-b1af-7155d89c3537" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/d601bacf-fcf4-49ab-8dad-94b578546f88?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e231f6fb-9e39-4427-b752-c20de0d3196d?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ff6b366c399cecfb8e8b4c543a5433eb", "x-ms-return-client-request-id": "true" }, @@ -189,109 +174,63 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:26:50 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/d601bacf-fcf4-49ab-8dad-94b578546f88?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:09:29 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e231f6fb-9e39-4427-b752-c20de0d3196d?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "ff6b366c399cecfb8e8b4c543a5433eb", - "x-ms-request-id": "7be30445-0665-4cac-ae37-c74eede259db" + "x-ms-request-id": "760b5780-3918-42c2-a454-1dd9fdd0d019" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/d601bacf-fcf4-49ab-8dad-94b578546f88?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e231f6fb-9e39-4427-b752-c20de0d3196d?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7c7168008883d0ca8d992ac4a27aad39", "x-ms-return-client-request-id": "true" }, "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:26:52 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/d601bacf-fcf4-49ab-8dad-94b578546f88?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "7c7168008883d0ca8d992ac4a27aad39", - "x-ms-request-id": "4c84252a-34aa-4b82-bcf4-6aa220001360" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/d601bacf-fcf4-49ab-8dad-94b578546f88?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "6c482b61af279761fd7f2fa45c5961f5", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "320", + "Content-Length": "313", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:26:53 GMT", + "Date": "Thu, 30 Sep 2021 06:09:30 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "6c482b61af279761fd7f2fa45c5961f5", - "x-ms-correlation-request-id": "6d68663c-1256-4ecd-8e38-dd5754ceb39f", - "x-ms-request-id": "bc2266a5-cb8e-45dd-b8c0-9444ac3182eb", + "x-ms-client-request-id": "7c7168008883d0ca8d992ac4a27aad39", + "x-ms-correlation-request-id": "61bb8a25-54bd-4964-bac0-6d4dc383f135", + "x-ms-request-id": "49325ebc-7389-48e2-868e-0706b7d6001c", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow5120", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/dataflows/DataFlow5120", "name": "DataFlow5120", "type": "Microsoft.Synapse/workspaces/dataflows", "properties": { "type": null }, - "etag": "4f003dda-0000-0800-0000-6008a01c0000" + "etag": "2e00c67e-0000-0100-0000-6155549a0000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/dataflows/DataFlow5120?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/dataflows/DataFlow5120?api-version=2020-12-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-441a21ea9ed63543b3b4aebcce8abc30-95b2269d65161641-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "3bd6a57fbcf0e4746b9a71030e364a14", + "traceparent": "00-4b821e1ce17c8041a315548a4817f0fe-e90ea86740a36448-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "6c482b61af279761fd7f2fa45c5961f5", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -299,73 +238,33 @@ "ResponseHeaders": { "Access-Control-Allow-Headers": "Location", "Access-Control-Expose-Headers": "Location", - "Content-Length": "366", + "Content-Length": "359", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:26:53 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/1cd735a5-7485-43c1-a66e-ee2e0de390ee?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:09:30 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/0853e7df-0eb6-4182-aac5-39ade5fec405?api-version=2020-12-01", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "3bd6a57fbcf0e4746b9a71030e364a14", - "x-ms-request-id": "4fc59a48-3bb8-4ac6-ace3-3a41cad0ba56" + "x-ms-client-request-id": "6c482b61af279761fd7f2fa45c5961f5", + "x-ms-request-id": "b37f0f83-bd16-4d65-8f3d-3b55ba38ff09" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow5120", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/dataflows/DataFlow5120", "recordId": 0, "state": "Deleting", "created": "0001-01-01T00:00:00", "changed": "0001-01-01T00:00:00", "type": "DataFlow", "name": "DataFlow5120", - "operationId": "1cd735a5-7485-43c1-a66e-ee2e0de390ee" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/1cd735a5-7485-43c1-a66e-ee2e0de390ee?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "fd45353772a4a548b663008d3d5d88c6", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:26:53 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/1cd735a5-7485-43c1-a66e-ee2e0de390ee?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "fd45353772a4a548b663008d3d5d88c6", - "x-ms-request-id": "ad8d54ea-384a-4c1f-b062-c0d8abfd37ac" - }, - "ResponseBody": { - "status": "InProgress" + "operationId": "0853e7df-0eb6-4182-aac5-39ade5fec405" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/1cd735a5-7485-43c1-a66e-ee2e0de390ee?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/0853e7df-0eb6-4182-aac5-39ade5fec405?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "49c71b345267b8e9e18433163d708b46", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "0ff213ddc70b51c407da7e0359257333", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -381,28 +280,25 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:26:54 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/1cd735a5-7485-43c1-a66e-ee2e0de390ee?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:09:30 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/0853e7df-0eb6-4182-aac5-39ade5fec405?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "49c71b345267b8e9e18433163d708b46", - "x-ms-request-id": "2c3b9cc0-78c9-40c7-9f92-0f07f9a3c0d6" + "x-ms-client-request-id": "0ff213ddc70b51c407da7e0359257333", + "x-ms-request-id": "347cfcbe-b653-4661-9417-18060b83cc4c" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/1cd735a5-7485-43c1-a66e-ee2e0de390ee?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/0853e7df-0eb6-4182-aac5-39ade5fec405?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "d9cc3d264df16a6fca4c59a8c63613a9", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "fd45353772a4a548b663008d3d5d88c6", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -418,28 +314,25 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:26:55 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/1cd735a5-7485-43c1-a66e-ee2e0de390ee?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:09:32 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/0853e7df-0eb6-4182-aac5-39ade5fec405?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "d9cc3d264df16a6fca4c59a8c63613a9", - "x-ms-request-id": "17f4feea-6235-4efa-bee6-958f57695d3d" + "x-ms-client-request-id": "fd45353772a4a548b663008d3d5d88c6", + "x-ms-request-id": "57369a3b-6989-461d-b539-6c59621d2a26" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/1cd735a5-7485-43c1-a66e-ee2e0de390ee?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/0853e7df-0eb6-4182-aac5-39ade5fec405?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "3dceb8512a5ee5cc4c8c1b1f3e326745", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "49c71b345267b8e9e18433163d708b46", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -455,45 +348,42 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:26:56 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/1cd735a5-7485-43c1-a66e-ee2e0de390ee?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:09:33 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/0853e7df-0eb6-4182-aac5-39ade5fec405?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "3dceb8512a5ee5cc4c8c1b1f3e326745", - "x-ms-request-id": "d23cd894-b8ef-41f6-976e-9c3772d6d83c" + "x-ms-client-request-id": "49c71b345267b8e9e18433163d708b46", + "x-ms-request-id": "976fd5cd-2c84-4089-8a78-918a39df00ab" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/1cd735a5-7485-43c1-a66e-ee2e0de390ee?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/0853e7df-0eb6-4182-aac5-39ade5fec405?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "0066bad8af91e7d4ab5c7f1af941f1aa", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "d9cc3d264df16a6fca4c59a8c63613a9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Content-Length": "0", - "Date": "Wed, 20 Jan 2021 21:26:57 GMT", + "Date": "Thu, 30 Sep 2021 06:09:34 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "0066bad8af91e7d4ab5c7f1af941f1aa", - "x-ms-request-id": "4d70c279-3a63-42d4-aa53-1e3de11b8dff" + "x-ms-client-request-id": "d9cc3d264df16a6fca4c59a8c63613a9", + "x-ms-request-id": "4b2c60d4-3c0f-4fba-8b45-21226a75b6f1" }, "ResponseBody": [] } ], "Variables": { - "AZURE_SYNAPSE_WORKSPACE_URL": "https://workspacechhamosynapse.dev.azuresynapse.net", + "AZURE_SYNAPSE_WORKSPACE_URL": "https://testsynapseworkspace.dev.azuresynapse.net", "RandomSeed": "177957787" } } \ No newline at end of file diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DataFlowClientLiveTests/DeleteDataFlowAsync.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DataFlowClientLiveTests/DeleteDataFlowAsync.json index 5adb6c1da9ac..77a0af0b6540 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DataFlowClientLiveTests/DeleteDataFlowAsync.json +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DataFlowClientLiveTests/DeleteDataFlowAsync.json @@ -1,18 +1,15 @@ { "Entries": [ { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/dataflows/DataFlow8996?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/dataflows/DataFlow8996?api-version=2020-12-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "28", "Content-Type": "application/json", - "traceparent": "00-45f2ec1e96307e4f9793fb630cb77950-ce2e74933d545b41-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "traceparent": "00-adb9e9e0b36aa64eb75f02db3b658301-6dc13a189ae58d46-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "17c1919ccccb1f8f3aa21eba369f29fb", "x-ms-return-client-request-id": "true" }, @@ -31,37 +28,34 @@ "Location", "Retry-After" ], - "Content-Length": "441", + "Content-Length": "435", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:27:30 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/3bab6ba6-b42c-4c29-b025-2cb2fbc2e502?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:10:07 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a3ac8ca8-c4b9-4b42-988f-9ee693fb4dc4?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "17c1919ccccb1f8f3aa21eba369f29fb", - "x-ms-request-id": "2f70a515-4598-4f21-a61d-8b0b77fa6575" + "x-ms-request-id": "8cfe0dcb-981a-4838-9aee-038c7be98fc1" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow8996", - "recordId": 983931, + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/dataflows/DataFlow8996", + "recordId": 2424179, "state": "Creating", - "created": "2021-01-20T21:27:31.2266667Z", - "changed": "2021-01-20T21:27:31.2266667Z", + "created": "2021-09-30T06:10:07.8266667Z", + "changed": "2021-09-30T06:10:07.8266667Z", "type": "DataFlow", "name": "DataFlow8996", - "operationId": "3bab6ba6-b42c-4c29-b025-2cb2fbc2e502", - "artifactId": "852FBDCC-4796-4A0C-8F06-61925C493E47" + "operationId": "a3ac8ca8-c4b9-4b42-988f-9ee693fb4dc4", + "artifactId": "8FA329CB-80CF-4E0F-A315-A5CBBEC9E116" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/3bab6ba6-b42c-4c29-b025-2cb2fbc2e502?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a3ac8ca8-c4b9-4b42-988f-9ee693fb4dc4?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "0010c7f94c97075ef0183ae0789dbbf4", "x-ms-return-client-request-id": "true" }, @@ -78,27 +72,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:27:30 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/3bab6ba6-b42c-4c29-b025-2cb2fbc2e502?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:10:07 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a3ac8ca8-c4b9-4b42-988f-9ee693fb4dc4?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "0010c7f94c97075ef0183ae0789dbbf4", - "x-ms-request-id": "2acb27bd-bd77-4514-8392-7cac19527302" + "x-ms-request-id": "52c3ff5b-ee72-4eed-b75d-ed1a4c0260e0" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/3bab6ba6-b42c-4c29-b025-2cb2fbc2e502?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a3ac8ca8-c4b9-4b42-988f-9ee693fb4dc4?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ec1a9730f5fb1ebba1744285798c56ad", "x-ms-return-client-request-id": "true" }, @@ -115,27 +106,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:27:32 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/3bab6ba6-b42c-4c29-b025-2cb2fbc2e502?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:10:08 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a3ac8ca8-c4b9-4b42-988f-9ee693fb4dc4?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "ec1a9730f5fb1ebba1744285798c56ad", - "x-ms-request-id": "85a132e6-203b-42ba-8ff9-750db117154c" + "x-ms-request-id": "f4289ae7-25ca-464c-aa2a-acb0222cf106" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/3bab6ba6-b42c-4c29-b025-2cb2fbc2e502?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a3ac8ca8-c4b9-4b42-988f-9ee693fb4dc4?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6fc03f09288fde64ce3c82af4310d336", "x-ms-return-client-request-id": "true" }, @@ -152,27 +140,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:27:33 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/3bab6ba6-b42c-4c29-b025-2cb2fbc2e502?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:10:09 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a3ac8ca8-c4b9-4b42-988f-9ee693fb4dc4?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "6fc03f09288fde64ce3c82af4310d336", - "x-ms-request-id": "1424eaa3-b533-4ec4-9624-a1d277341381" + "x-ms-request-id": "fee88b4d-74a8-444f-b4f7-d63dcdea802c" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/3bab6ba6-b42c-4c29-b025-2cb2fbc2e502?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a3ac8ca8-c4b9-4b42-988f-9ee693fb4dc4?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "32d25d8aad7104e30bf15f220ad88d64", "x-ms-return-client-request-id": "true" }, @@ -189,72 +174,97 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:27:34 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/3bab6ba6-b42c-4c29-b025-2cb2fbc2e502?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:10:11 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a3ac8ca8-c4b9-4b42-988f-9ee693fb4dc4?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "32d25d8aad7104e30bf15f220ad88d64", - "x-ms-request-id": "305d5520-fa1f-4329-9ca2-c56fd558b814" + "x-ms-request-id": "01896499-ab41-4ee6-9e0f-1f3e2a3df1fb" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/3bab6ba6-b42c-4c29-b025-2cb2fbc2e502?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a3ac8ca8-c4b9-4b42-988f-9ee693fb4dc4?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "39d68cc14cdd0865323c1ebf720cda90", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 30 Sep 2021 06:10:12 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a3ac8ca8-c4b9-4b42-988f-9ee693fb4dc4?api-version=2020-12-01", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "39d68cc14cdd0865323c1ebf720cda90", + "x-ms-request-id": "ad70e8e7-b417-4856-931e-c9c30bb17360" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a3ac8ca8-c4b9-4b42-988f-9ee693fb4dc4?api-version=2020-12-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "1cfb0ba124ba5b3b5bbb639ec841d4f5", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "320", + "Content-Length": "313", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:27:35 GMT", + "Date": "Thu, 30 Sep 2021 06:10:13 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "39d68cc14cdd0865323c1ebf720cda90", - "x-ms-correlation-request-id": "ddbd6214-b142-4f0f-b2bd-1249811817fa", - "x-ms-request-id": "5f6cf563-e519-4dea-9415-6b377b350956", + "x-ms-client-request-id": "1cfb0ba124ba5b3b5bbb639ec841d4f5", + "x-ms-correlation-request-id": "755c32b1-f11f-42b2-817f-587c5699024d", + "x-ms-request-id": "3b10c855-af6d-4d5b-8620-2340ca05e984", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow8996", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/dataflows/DataFlow8996", "name": "DataFlow8996", "type": "Microsoft.Synapse/workspaces/dataflows", "properties": { "type": null }, - "etag": "4f0039f7-0000-0800-0000-6008a0460000" + "etag": "2e00257f-0000-0100-0000-615554c40000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/dataflows/DataFlow8996?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/dataflows/DataFlow8996?api-version=2020-12-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-5f1c2294e7b80b4187965a8c46deac88-8983c3fd6616ed4e-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "1cfb0ba124ba5b3b5bbb639ec841d4f5", + "traceparent": "00-e4d08a496f087d42a350a1a18fc7ca02-06ad0d82820c924d-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "b6ed1eae99393d59f8caff358f2392ff", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -262,72 +272,32 @@ "ResponseHeaders": { "Access-Control-Allow-Headers": "Location", "Access-Control-Expose-Headers": "Location", - "Content-Length": "366", + "Content-Length": "359", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:27:35 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/c33eef85-b88d-4a29-b72c-4c8e27298c49?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:10:13 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/87747ee0-26ba-4f0b-b305-3ee58bdd51b6?api-version=2020-12-01", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "1cfb0ba124ba5b3b5bbb639ec841d4f5", - "x-ms-request-id": "b425695a-d021-4f4e-9170-d097ccfeef77" + "x-ms-client-request-id": "b6ed1eae99393d59f8caff358f2392ff", + "x-ms-request-id": "48261954-d637-4dd4-84b6-9a87e24c936f" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow8996", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/dataflows/DataFlow8996", "recordId": 0, "state": "Deleting", "created": "0001-01-01T00:00:00", "changed": "0001-01-01T00:00:00", "type": "DataFlow", "name": "DataFlow8996", - "operationId": "c33eef85-b88d-4a29-b72c-4c8e27298c49" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/c33eef85-b88d-4a29-b72c-4c8e27298c49?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "fe80cf1671dd9da9517add21e9c63ff1", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:27:35 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/c33eef85-b88d-4a29-b72c-4c8e27298c49?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "fe80cf1671dd9da9517add21e9c63ff1", - "x-ms-request-id": "658a687e-5fc6-447d-9d13-c6be3ee36d3f" - }, - "ResponseBody": { - "status": "InProgress" + "operationId": "87747ee0-26ba-4f0b-b305-3ee58bdd51b6" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/c33eef85-b88d-4a29-b72c-4c8e27298c49?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/87747ee0-26ba-4f0b-b305-3ee58bdd51b6?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "53102867241f0857b2bd24f02405cc38", "x-ms-return-client-request-id": "true" }, @@ -344,27 +314,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:27:37 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/c33eef85-b88d-4a29-b72c-4c8e27298c49?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:10:13 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/87747ee0-26ba-4f0b-b305-3ee58bdd51b6?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "53102867241f0857b2bd24f02405cc38", - "x-ms-request-id": "fe69bc96-7a78-4798-8d4f-e470b1aa7ad8" + "x-ms-request-id": "072f1a43-3221-4ae3-8fdd-963e41001740" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/c33eef85-b88d-4a29-b72c-4c8e27298c49?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/87747ee0-26ba-4f0b-b305-3ee58bdd51b6?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f9876429d6c03c18754f65bebb385431", "x-ms-return-client-request-id": "true" }, @@ -381,82 +348,42 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:27:38 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/c33eef85-b88d-4a29-b72c-4c8e27298c49?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:10:14 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/87747ee0-26ba-4f0b-b305-3ee58bdd51b6?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "f9876429d6c03c18754f65bebb385431", - "x-ms-request-id": "464f5f6c-da0a-433e-a612-3f5e504b2a8d" + "x-ms-request-id": "6eed223a-84aa-4ea1-88a3-1c2d6d01ab04" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/c33eef85-b88d-4a29-b72c-4c8e27298c49?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/87747ee0-26ba-4f0b-b305-3ee58bdd51b6?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "67cd0d8a3f13f2e078784c1f4db9794b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:27:39 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/c33eef85-b88d-4a29-b72c-4c8e27298c49?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "67cd0d8a3f13f2e078784c1f4db9794b", - "x-ms-request-id": "49d1ff25-6acb-48a2-a247-bb7e3e2aa86d" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/c33eef85-b88d-4a29-b72c-4c8e27298c49?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "84f8a5ae463e91300fd3decfbe984d7a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Content-Length": "0", - "Date": "Wed, 20 Jan 2021 21:27:40 GMT", + "Date": "Thu, 30 Sep 2021 06:10:15 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "84f8a5ae463e91300fd3decfbe984d7a", - "x-ms-request-id": "9a36fdf5-9c21-489f-83f8-845de341bf68" + "x-ms-client-request-id": "67cd0d8a3f13f2e078784c1f4db9794b", + "x-ms-request-id": "dba0835a-e3c2-44a3-ac24-c90dc9fd3436" }, "ResponseBody": [] } ], "Variables": { - "AZURE_SYNAPSE_WORKSPACE_URL": "https://workspacechhamosynapse.dev.azuresynapse.net", + "AZURE_SYNAPSE_WORKSPACE_URL": "https://testsynapseworkspace.dev.azuresynapse.net", "RandomSeed": "2073278273" } } \ No newline at end of file diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DataFlowClientLiveTests/GetDataFlow.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DataFlowClientLiveTests/GetDataFlow.json index cadab84cf4ce..90e9d40cb4aa 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DataFlowClientLiveTests/GetDataFlow.json +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DataFlowClientLiveTests/GetDataFlow.json @@ -1,18 +1,15 @@ { "Entries": [ { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/dataflows/DataFlow6372?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/dataflows/DataFlow6372?api-version=2020-12-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "28", "Content-Type": "application/json", - "traceparent": "00-b8591232f903fc4082a649a9ba3b2716-a63381419e415340-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "traceparent": "00-bdc12ff245ab59479a5d7bb8eba553fb-bce78881307fc348-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "adda0f494da02dbcfdbf888fc0ccda35", "x-ms-return-client-request-id": "true" }, @@ -31,37 +28,34 @@ "Location", "Retry-After" ], - "Content-Length": "441", + "Content-Length": "425", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:26:57 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/44a79cad-41ba-4324-89db-e120b2d4a984?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:09:34 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/bda00116-36bf-473e-aea9-995a954bdd5f?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "adda0f494da02dbcfdbf888fc0ccda35", - "x-ms-request-id": "4dd47692-8b55-4661-84c5-83b235860b21" + "x-ms-request-id": "95c9dfb4-56a6-4269-b560-a25858d87794" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow6372", - "recordId": 983927, + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/dataflows/DataFlow6372", + "recordId": 2424173, "state": "Creating", - "created": "2021-01-20T21:26:58.3066667Z", - "changed": "2021-01-20T21:26:58.3066667Z", + "created": "2021-09-30T06:09:35.36Z", + "changed": "2021-09-30T06:09:35.36Z", "type": "DataFlow", "name": "DataFlow6372", - "operationId": "44a79cad-41ba-4324-89db-e120b2d4a984", - "artifactId": "1CA78C7F-015C-48D0-A4B6-2DCD6C690D9C" + "operationId": "bda00116-36bf-473e-aea9-995a954bdd5f", + "artifactId": "6CD4F9C2-75F7-43DE-AD3A-F26FBABD0DC2" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/44a79cad-41ba-4324-89db-e120b2d4a984?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/bda00116-36bf-473e-aea9-995a954bdd5f?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "99ccbdffd7d86dfd4209a02d7cc4139c", "x-ms-return-client-request-id": "true" }, @@ -78,27 +72,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:26:57 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/44a79cad-41ba-4324-89db-e120b2d4a984?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:09:34 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/bda00116-36bf-473e-aea9-995a954bdd5f?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "99ccbdffd7d86dfd4209a02d7cc4139c", - "x-ms-request-id": "be6e4ace-65ec-4987-96cc-126e5bb09136" + "x-ms-request-id": "4cf5d74a-1334-496b-85e7-54d617695f06" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/44a79cad-41ba-4324-89db-e120b2d4a984?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/bda00116-36bf-473e-aea9-995a954bdd5f?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "79f988b6b2dde14c5fc619993fb1e737", "x-ms-return-client-request-id": "true" }, @@ -115,227 +106,101 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:26:59 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/44a79cad-41ba-4324-89db-e120b2d4a984?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:09:36 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/bda00116-36bf-473e-aea9-995a954bdd5f?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "79f988b6b2dde14c5fc619993fb1e737", - "x-ms-request-id": "37932528-b6e0-4fe4-9fc4-7de8e7c58e7b" + "x-ms-request-id": "b2dc2276-939c-4169-9bd5-0e0435d9f2ec" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/44a79cad-41ba-4324-89db-e120b2d4a984?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/bda00116-36bf-473e-aea9-995a954bdd5f?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "038f0ab24000645dbbc1ae30c78298d0", "x-ms-return-client-request-id": "true" }, "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:27:00 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/44a79cad-41ba-4324-89db-e120b2d4a984?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "038f0ab24000645dbbc1ae30c78298d0", - "x-ms-request-id": "a8e46584-527f-4e1e-9460-fa3919d3235b" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/44a79cad-41ba-4324-89db-e120b2d4a984?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "bc5471f393cc4da071ea3911bd632d90", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:27:01 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/44a79cad-41ba-4324-89db-e120b2d4a984?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "bc5471f393cc4da071ea3911bd632d90", - "x-ms-request-id": "7cc19e63-69de-40a2-ab93-e8498d2bcbf8" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/44a79cad-41ba-4324-89db-e120b2d4a984?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "717b68211034759b2b95be1b031b1add", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:27:02 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/44a79cad-41ba-4324-89db-e120b2d4a984?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "717b68211034759b2b95be1b031b1add", - "x-ms-request-id": "d749b816-7550-404b-823d-22be834d733b" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/44a79cad-41ba-4324-89db-e120b2d4a984?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "cea6492d2b5d1f6b69429115064ba657", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "320", + "Content-Length": "313", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:27:04 GMT", + "Date": "Thu, 30 Sep 2021 06:09:37 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "cea6492d2b5d1f6b69429115064ba657", - "x-ms-correlation-request-id": "dafb2f7d-c3e7-441b-a4d7-1d497c5b902f", - "x-ms-request-id": "055468ac-a38e-469d-b59d-be83223deb91", + "x-ms-client-request-id": "038f0ab24000645dbbc1ae30c78298d0", + "x-ms-correlation-request-id": "6d35bfd6-ab70-4b55-a862-3e0711a0f5de", + "x-ms-request-id": "12e7718a-6343-4c8d-a020-87e4751ed37a", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow6372", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/dataflows/DataFlow6372", "name": "DataFlow6372", "type": "Microsoft.Synapse/workspaces/dataflows", "properties": { "type": null }, - "etag": "4f008de2-0000-0800-0000-6008a0270000" + "etag": "2e00df7e-0000-0100-0000-615554a10000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/dataflows/DataFlow6372?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/dataflows/DataFlow6372?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-9a628b1534b6094190a215e6adcea065-0ee09d9497484540-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "5e0f1d942606e29bd5de9136d4844955", + "traceparent": "00-674e70a40c59c64689835e47e0f3b208-7192d21ed7464f46-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "bc5471f393cc4da071ea3911bd632d90", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "320", + "Content-Length": "313", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:27:04 GMT", + "Date": "Thu, 30 Sep 2021 06:09:37 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "5e0f1d942606e29bd5de9136d4844955", - "x-ms-correlation-request-id": "6c20d94e-b00a-455f-b1f4-592177f063e6", - "x-ms-request-id": "dadb1d6c-999e-4e48-aeba-ba4b6b882a98", + "x-ms-client-request-id": "bc5471f393cc4da071ea3911bd632d90", + "x-ms-correlation-request-id": "88d0f0fc-6c6f-49e7-90b9-e9590417668d", + "x-ms-request-id": "c8366341-979e-47f6-993d-2c73c688a7af", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow6372", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/dataflows/DataFlow6372", "name": "DataFlow6372", "type": "Microsoft.Synapse/workspaces/dataflows", "properties": { "type": null }, - "etag": "4f008de2-0000-0800-0000-6008a0270000" + "etag": "2e00df7e-0000-0100-0000-615554a10000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/dataflows/DataFlow6372?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/dataflows/DataFlow6372?api-version=2020-12-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-2a0b2e212669f043b53af60ac47ae159-3d7c43b0835e6d4b-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "74e35cd05fbcf633fc5b07f17e866ee0", + "traceparent": "00-363a9c05cc22744188dd5bdad45d7067-17a66416eedc0040-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "717b68211034759b2b95be1b031b1add", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -343,73 +208,33 @@ "ResponseHeaders": { "Access-Control-Allow-Headers": "Location", "Access-Control-Expose-Headers": "Location", - "Content-Length": "366", + "Content-Length": "359", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:27:04 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/f8f25437-d2a8-485d-909d-a0c21c4f6558?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:09:37 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d363e5ce-ce1f-44d9-a254-baed02a8f5e9?api-version=2020-12-01", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "74e35cd05fbcf633fc5b07f17e866ee0", - "x-ms-request-id": "53f6f597-97ec-4f50-96d8-1da60038b68d" + "x-ms-client-request-id": "717b68211034759b2b95be1b031b1add", + "x-ms-request-id": "7c897bfc-ea8e-488e-9ac4-1567765aaf13" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow6372", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/dataflows/DataFlow6372", "recordId": 0, "state": "Deleting", "created": "0001-01-01T00:00:00", "changed": "0001-01-01T00:00:00", "type": "DataFlow", "name": "DataFlow6372", - "operationId": "f8f25437-d2a8-485d-909d-a0c21c4f6558" + "operationId": "d363e5ce-ce1f-44d9-a254-baed02a8f5e9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/f8f25437-d2a8-485d-909d-a0c21c4f6558?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d363e5ce-ce1f-44d9-a254-baed02a8f5e9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "aa453cf93167359bea1861ab1faa644f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:27:04 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/f8f25437-d2a8-485d-909d-a0c21c4f6558?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "aa453cf93167359bea1861ab1faa644f", - "x-ms-request-id": "8442f9a4-8460-4ef9-8971-b61984252437" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/f8f25437-d2a8-485d-909d-a0c21c4f6558?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "6e47b07064fd144985dcc7f866b55cc7", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "5e0f1d942606e29bd5de9136d4844955", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -425,45 +250,42 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:27:05 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/f8f25437-d2a8-485d-909d-a0c21c4f6558?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:09:37 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d363e5ce-ce1f-44d9-a254-baed02a8f5e9?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "6e47b07064fd144985dcc7f866b55cc7", - "x-ms-request-id": "1e333e54-5e91-41c3-99d2-b5619c19382c" + "x-ms-client-request-id": "5e0f1d942606e29bd5de9136d4844955", + "x-ms-request-id": "bfc39a27-a102-433c-b147-7cfc1f0a8f00" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/f8f25437-d2a8-485d-909d-a0c21c4f6558?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d363e5ce-ce1f-44d9-a254-baed02a8f5e9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "42f82211c340bd79cb52fbf35a2be802", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "74e35cd05fbcf633fc5b07f17e866ee0", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Content-Length": "0", - "Date": "Wed, 20 Jan 2021 21:27:06 GMT", + "Date": "Thu, 30 Sep 2021 06:09:39 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "42f82211c340bd79cb52fbf35a2be802", - "x-ms-request-id": "0c4a21f1-7004-495c-928a-efee2252a408" + "x-ms-client-request-id": "74e35cd05fbcf633fc5b07f17e866ee0", + "x-ms-request-id": "f9b02ef8-f0c9-45f7-abcf-4ad62a540984" }, "ResponseBody": [] } ], "Variables": { - "AZURE_SYNAPSE_WORKSPACE_URL": "https://workspacechhamosynapse.dev.azuresynapse.net", + "AZURE_SYNAPSE_WORKSPACE_URL": "https://testsynapseworkspace.dev.azuresynapse.net", "RandomSeed": "66308766" } } \ No newline at end of file diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DataFlowClientLiveTests/GetDataFlowAsync.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DataFlowClientLiveTests/GetDataFlowAsync.json index 8c26d053862e..9f3a890aa41e 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DataFlowClientLiveTests/GetDataFlowAsync.json +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DataFlowClientLiveTests/GetDataFlowAsync.json @@ -1,18 +1,15 @@ { "Entries": [ { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/dataflows/DataFlow6173?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/dataflows/DataFlow6173?api-version=2020-12-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "28", "Content-Type": "application/json", - "traceparent": "00-1513894e337e2246aac41aadbef1232c-03581141deef6e40-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "traceparent": "00-1430720673a2e34e8239517d90979194-0858a179798d0849-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2616f85c6e55fb4b671e5887f396bf04", "x-ms-return-client-request-id": "true" }, @@ -31,37 +28,34 @@ "Location", "Retry-After" ], - "Content-Length": "431", + "Content-Length": "425", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:27:40 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/32476af2-daf8-4dde-841d-f6af6601af08?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:10:15 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/0952cb74-cd34-49cf-a83f-9480d7727017?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "2616f85c6e55fb4b671e5887f396bf04", - "x-ms-request-id": "ff51b02d-9d2e-4f7e-9d0c-5477e880906d" + "x-ms-request-id": "9fb111eb-d90a-49b9-bd35-9169955d2478" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow6173", - "recordId": 983932, + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/dataflows/DataFlow6173", + "recordId": 2424180, "state": "Creating", - "created": "2021-01-20T21:27:40.77Z", - "changed": "2021-01-20T21:27:40.77Z", + "created": "2021-09-30T06:10:16.15Z", + "changed": "2021-09-30T06:10:16.15Z", "type": "DataFlow", "name": "DataFlow6173", - "operationId": "32476af2-daf8-4dde-841d-f6af6601af08", - "artifactId": "FA20378F-3BB5-4D25-88B5-6AB2F13BB87C" + "operationId": "0952cb74-cd34-49cf-a83f-9480d7727017", + "artifactId": "9E40A6AF-7D4D-4A28-A845-D5C9C311B5AA" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/32476af2-daf8-4dde-841d-f6af6601af08?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/0952cb74-cd34-49cf-a83f-9480d7727017?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a25936fa13d8e0d386215118d995ba34", "x-ms-return-client-request-id": "true" }, @@ -78,27 +72,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:27:40 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/32476af2-daf8-4dde-841d-f6af6601af08?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:10:15 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/0952cb74-cd34-49cf-a83f-9480d7727017?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "a25936fa13d8e0d386215118d995ba34", - "x-ms-request-id": "0dfb4c2f-7157-4e28-8bec-815f6b38e651" + "x-ms-request-id": "76e168e4-bf40-4504-9d7d-bcbdbd90623e" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/32476af2-daf8-4dde-841d-f6af6601af08?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/0952cb74-cd34-49cf-a83f-9480d7727017?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6ce2aac22ea99f519dba7b3ebffbbb96", "x-ms-return-client-request-id": "true" }, @@ -115,153 +106,101 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:27:41 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/32476af2-daf8-4dde-841d-f6af6601af08?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:10:17 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/0952cb74-cd34-49cf-a83f-9480d7727017?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "6ce2aac22ea99f519dba7b3ebffbbb96", - "x-ms-request-id": "8d941580-db7a-44ab-ace3-5490c2302ca2" + "x-ms-request-id": "b16cea6f-e32b-42dc-b203-1920d2b354d8" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/32476af2-daf8-4dde-841d-f6af6601af08?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/0952cb74-cd34-49cf-a83f-9480d7727017?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "bd8d6c8f1c3cc62bcd76ebca6b418315", "x-ms-return-client-request-id": "true" }, "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:27:43 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/32476af2-daf8-4dde-841d-f6af6601af08?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "bd8d6c8f1c3cc62bcd76ebca6b418315", - "x-ms-request-id": "d9b8e480-accc-4a8a-a299-42106e464860" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/32476af2-daf8-4dde-841d-f6af6601af08?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "958e7a5c22efcb42e4ba041e9795218a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "320", + "Content-Length": "313", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:27:44 GMT", + "Date": "Thu, 30 Sep 2021 06:10:18 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "958e7a5c22efcb42e4ba041e9795218a", - "x-ms-correlation-request-id": "9bc6e02a-6346-467e-9a8e-c78e579caa91", - "x-ms-request-id": "44ef9929-9e37-47f4-bbc5-ee007e69a59a", + "x-ms-client-request-id": "bd8d6c8f1c3cc62bcd76ebca6b418315", + "x-ms-correlation-request-id": "199e7e94-15bb-42d4-9490-08219519dbf5", + "x-ms-request-id": "2f525645-f11a-4406-b342-b984aac3d0b1", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow6173", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/dataflows/DataFlow6173", "name": "DataFlow6173", "type": "Microsoft.Synapse/workspaces/dataflows", "properties": { "type": null }, - "etag": "4f00fffb-0000-0800-0000-6008a04f0000" + "etag": "2e002a7f-0000-0100-0000-615554c90000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/dataflows/DataFlow6173?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/dataflows/DataFlow6173?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-bcd04dd7bd9d9041bea8e342b8e46d22-5bfc182e63ae1249-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "6c89bb65fd07a5f87f1b9f334286335b", + "traceparent": "00-e51ca40078543c4ea3298f3576520fb7-d41c15b7431c4049-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "958e7a5c22efcb42e4ba041e9795218a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "320", + "Content-Length": "313", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:27:44 GMT", + "Date": "Thu, 30 Sep 2021 06:10:18 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "6c89bb65fd07a5f87f1b9f334286335b", - "x-ms-correlation-request-id": "66b805e4-508c-46d0-bf86-3c371bfe693e", - "x-ms-request-id": "49be7482-30ea-4274-a078-8bc2238ea629", + "x-ms-client-request-id": "958e7a5c22efcb42e4ba041e9795218a", + "x-ms-correlation-request-id": "53d8f63a-780e-40f2-b903-82a32f11e249", + "x-ms-request-id": "a87f3582-2682-43a7-9955-932fd563345e", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow6173", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/dataflows/DataFlow6173", "name": "DataFlow6173", "type": "Microsoft.Synapse/workspaces/dataflows", "properties": { "type": null }, - "etag": "4f00fffb-0000-0800-0000-6008a04f0000" + "etag": "2e002a7f-0000-0100-0000-615554c90000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/dataflows/DataFlow6173?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/dataflows/DataFlow6173?api-version=2020-12-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-c794affb408e834984e3266c6bfd2bcf-2094ae021edda74f-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "44e26637266d6da629c1d882170c2f38", + "traceparent": "00-34266f3f5b4e0d4c8250cf12de0f06e8-def16627673bb544-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "6c89bb65fd07a5f87f1b9f334286335b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -269,147 +208,33 @@ "ResponseHeaders": { "Access-Control-Allow-Headers": "Location", "Access-Control-Expose-Headers": "Location", - "Content-Length": "366", + "Content-Length": "359", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:27:44 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/8bb8cef5-067a-4ffc-bf50-462a6c60dd3c?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:10:18 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a0ef48a2-da10-4da2-902b-3f7774050a1a?api-version=2020-12-01", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "44e26637266d6da629c1d882170c2f38", - "x-ms-request-id": "bbf93e98-8d69-4f4a-8fc2-db3dfa6a3610" + "x-ms-client-request-id": "6c89bb65fd07a5f87f1b9f334286335b", + "x-ms-request-id": "fbae55e0-0873-4595-bd15-ffdb1da10bd2" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow6173", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/dataflows/DataFlow6173", "recordId": 0, "state": "Deleting", "created": "0001-01-01T00:00:00", "changed": "0001-01-01T00:00:00", "type": "DataFlow", "name": "DataFlow6173", - "operationId": "8bb8cef5-067a-4ffc-bf50-462a6c60dd3c" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/8bb8cef5-067a-4ffc-bf50-462a6c60dd3c?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "31e7a886dcb23f1d141b434524758d72", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:27:44 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/8bb8cef5-067a-4ffc-bf50-462a6c60dd3c?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "31e7a886dcb23f1d141b434524758d72", - "x-ms-request-id": "fc6333a4-a783-48ad-b2bb-0631f42d5e4b" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/8bb8cef5-067a-4ffc-bf50-462a6c60dd3c?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "e1de67ec832120a35982c28410d3eb1a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:27:45 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/8bb8cef5-067a-4ffc-bf50-462a6c60dd3c?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "e1de67ec832120a35982c28410d3eb1a", - "x-ms-request-id": "61ee17c5-0d97-4297-a240-f988db7e3e29" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/8bb8cef5-067a-4ffc-bf50-462a6c60dd3c?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "6ffb7a38fd25788543259b9dd3c73a0c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:27:46 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/8bb8cef5-067a-4ffc-bf50-462a6c60dd3c?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "6ffb7a38fd25788543259b9dd3c73a0c", - "x-ms-request-id": "54ffac70-c5cd-4d79-a01e-4ddf8df62efb" - }, - "ResponseBody": { - "status": "InProgress" + "operationId": "a0ef48a2-da10-4da2-902b-3f7774050a1a" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/8bb8cef5-067a-4ffc-bf50-462a6c60dd3c?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a0ef48a2-da10-4da2-902b-3f7774050a1a?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "1be6a35aa730023c05c6d7301a982e41", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "b064605516b85f0d82e815d3820f895e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -425,82 +250,42 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:27:47 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/8bb8cef5-067a-4ffc-bf50-462a6c60dd3c?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:10:18 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a0ef48a2-da10-4da2-902b-3f7774050a1a?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "1be6a35aa730023c05c6d7301a982e41", - "x-ms-request-id": "b39a12e0-d195-401f-8e1c-1abab0e529bb" + "x-ms-client-request-id": "b064605516b85f0d82e815d3820f895e", + "x-ms-request-id": "7ff048ae-2a65-455e-b3d8-821b78e965de" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/8bb8cef5-067a-4ffc-bf50-462a6c60dd3c?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a0ef48a2-da10-4da2-902b-3f7774050a1a?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "aa0d28301e79ee4de2659efbe7054d91", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:27:49 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/8bb8cef5-067a-4ffc-bf50-462a6c60dd3c?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "aa0d28301e79ee4de2659efbe7054d91", - "x-ms-request-id": "d3abdbe6-f1e4-4f22-8a9b-9669ac5dad16" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/8bb8cef5-067a-4ffc-bf50-462a6c60dd3c?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "6d29b548d0ec90e93ef8695e25545eaa", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "31e7a886dcb23f1d141b434524758d72", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Content-Length": "0", - "Date": "Wed, 20 Jan 2021 21:27:50 GMT", + "Date": "Thu, 30 Sep 2021 06:10:19 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "6d29b548d0ec90e93ef8695e25545eaa", - "x-ms-request-id": "c8afb9e3-cedb-493d-a399-3670ac5aa5c1" + "x-ms-client-request-id": "31e7a886dcb23f1d141b434524758d72", + "x-ms-request-id": "4afae173-8892-4033-a733-80a5cb3244e5" }, "ResponseBody": [] } ], "Variables": { - "AZURE_SYNAPSE_WORKSPACE_URL": "https://workspacechhamosynapse.dev.azuresynapse.net", + "AZURE_SYNAPSE_WORKSPACE_URL": "https://testsynapseworkspace.dev.azuresynapse.net", "RandomSeed": "519993334" } } \ No newline at end of file diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DataFlowClientLiveTests/GetDataFlows.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DataFlowClientLiveTests/GetDataFlows.json index 18441384be38..1faa88dd1089 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DataFlowClientLiveTests/GetDataFlows.json +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DataFlowClientLiveTests/GetDataFlows.json @@ -1,18 +1,15 @@ { "Entries": [ { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/dataflows/DataFlow6483?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/dataflows/DataFlow6483?api-version=2020-12-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "28", "Content-Type": "application/json", - "traceparent": "00-0f5e5eb2988e4846bb4d3a1090f822ac-39622ad87d230345-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "traceparent": "00-bb5699be35e23047aca34221060e2b46-de70afb1cea6f64e-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a19e1f09be476cc5cc8f21d938cc3083", "x-ms-return-client-request-id": "true" }, @@ -31,37 +28,34 @@ "Location", "Retry-After" ], - "Content-Length": "431", + "Content-Length": "423", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:27:06 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/967d024e-9578-4a50-ae17-6503713272ac?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:09:39 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/1ff3cc1e-3e05-4510-a520-ba6170aba234?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "a19e1f09be476cc5cc8f21d938cc3083", - "x-ms-request-id": "50a2f9fb-7fe1-4fab-9af1-df1fd2042f25" + "x-ms-request-id": "a102a03b-0a1c-4c07-a31e-e65321522da1" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow6483", - "recordId": 983928, + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/dataflows/DataFlow6483", + "recordId": 2424174, "state": "Creating", - "created": "2021-01-20T21:27:07.17Z", - "changed": "2021-01-20T21:27:07.17Z", + "created": "2021-09-30T06:09:39.6Z", + "changed": "2021-09-30T06:09:39.6Z", "type": "DataFlow", "name": "DataFlow6483", - "operationId": "967d024e-9578-4a50-ae17-6503713272ac", - "artifactId": "72EB386D-BB9C-4295-A9F9-1211D20B4E11" + "operationId": "1ff3cc1e-3e05-4510-a520-ba6170aba234", + "artifactId": "C570556A-7A55-4225-9182-9DD7F5B30BD8" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/967d024e-9578-4a50-ae17-6503713272ac?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/1ff3cc1e-3e05-4510-a520-ba6170aba234?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "46c8b4f6889f4e8ee915ba931e581e24", "x-ms-return-client-request-id": "true" }, @@ -78,1306 +72,191 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:27:06 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/967d024e-9578-4a50-ae17-6503713272ac?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:09:39 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/1ff3cc1e-3e05-4510-a520-ba6170aba234?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "46c8b4f6889f4e8ee915ba931e581e24", - "x-ms-request-id": "fd260f12-5447-4502-823f-0847e10285f1" + "x-ms-request-id": "ff2ee867-ceb1-46d0-81bd-66c39c2a9678" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/967d024e-9578-4a50-ae17-6503713272ac?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/1ff3cc1e-3e05-4510-a520-ba6170aba234?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "695eb4f40c78c780262271c5bdbf23be", "x-ms-return-client-request-id": "true" }, "RequestBody": null, - "StatusCode": 200, + "StatusCode": 202, "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "320", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:27:08 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" ], - "Strict-Transport-Security": "max-age=15724800; includeSubDomains", - "X-Content-Type-Options": "nosniff", + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 30 Sep 2021 06:09:40 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/1ff3cc1e-3e05-4510-a520-ba6170aba234?api-version=2020-12-01", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "695eb4f40c78c780262271c5bdbf23be", - "x-ms-correlation-request-id": "a9a7d1c3-db96-435e-b56a-04a2040342d0", - "x-ms-request-id": "b9ebae03-a52c-41d4-acf8-188c7d9c3964", - "X-Powered-By": "ASP.NET" + "x-ms-request-id": "98caac5a-1bdf-40c8-9d7a-d9ffd603c212" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow6483", - "name": "DataFlow6483", - "type": "Microsoft.Synapse/workspaces/dataflows", - "properties": { - "type": null - }, - "etag": "4f0062e5-0000-0800-0000-6008a02c0000" + "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/dataflows?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/1ff3cc1e-3e05-4510-a520-ba6170aba234?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-6373427101765c4f8f4503676d9f3bdd-7c37074c5ef9064a-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "84e36fa3ea04efe3ed6e4c2388655cd7", "x-ms-return-client-request-id": "true" }, "RequestBody": null, - "StatusCode": 200, + "StatusCode": 202, "ResponseHeaders": { - "Content-Length": "16831", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:27:08 GMT", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "84e36fa3ea04efe3ed6e4c2388655cd7", - "x-ms-request-id": "6e88b0f9-1b24-496d-8de1-de7a3f659e04" - }, - "ResponseBody": { - "value": [ - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow1630901926", - "name": "DataFlow1630901926", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "f501fdf9-0000-0800-0000-5fd257b90000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow2059769311", - "name": "DataFlow2059769311", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "f50116fc-0000-0800-0000-5fd257cb0000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow1607144151", - "name": "DataFlow1607144151", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "f601ee14-0000-0800-0000-5fd258aa0000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow1734040659", - "name": "DataFlow1734040659", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "f6016c16-0000-0800-0000-5fd258b70000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow284383835", - "name": "DataFlow284383835", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "f6015a30-0000-0800-0000-5fd2599a0000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow421079366", - "name": "DataFlow421079366", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "f6017732-0000-0800-0000-5fd259a90000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow1990953633", - "name": "DataFlow1990953633", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "f60143a1-0000-0800-0000-5fd25dab0000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow581911861", - "name": "DataFlow581911861", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "f60160a3-0000-0800-0000-5fd25dbd0000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow1520504758", - "name": "DataFlow1520504758", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "f6011cbb-0000-0800-0000-5fd25e910000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow1908543411", - "name": "DataFlow1908543411", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "f60178bc-0000-0800-0000-5fd25e9d0000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow397131088", - "name": "DataFlow397131088", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "f601a8d3-0000-0800-0000-5fd25f730000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow42648917", - "name": "DataFlow42648917", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "f60144d5-0000-0800-0000-5fd25f820000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow1099401501", - "name": "DataFlow1099401501", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "f701773f-0000-0800-0000-5fd2638c0000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow75983368", - "name": "DataFlow75983368", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "f7016841-0000-0800-0000-5fd2639e0000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow1373189771", - "name": "DataFlow1373189771", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "f7013b5c-0000-0800-0000-5fd264940000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow973001576", - "name": "DataFlow973001576", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "f701f95d-0000-0800-0000-5fd264a30000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow889752858", - "name": "DataFlow889752858", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "f701488c-0000-0800-0000-5fd266510000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow472901187", - "name": "DataFlow472901187", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "f7017d8d-0000-0800-0000-5fd2665c0000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow2017017383", - "name": "DataFlow2017017383", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "1902aea1-0000-0800-0000-5fd3a9790000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow1566215546", - "name": "DataFlow1566215546", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "19023ea3-0000-0800-0000-5fd3a9860000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow589626238", - "name": "DataFlow589626238", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "62027a8a-0000-0800-0000-5fd7971b0000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow453603740", - "name": "DataFlow453603740", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "6202e38b-0000-0800-0000-5fd797250000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow1426113273", - "name": "DataFlow1426113273", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "6202ccb9-0000-0800-0000-5fd798890000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow967663745", - "name": "DataFlow967663745", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "62022dbb-0000-0800-0000-5fd798950000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow1420358056", - "name": "DataFlow1420358056", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "6202f5de-0000-0800-0000-5fd799a20000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow446309359", - "name": "DataFlow446309359", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "62029ce1-0000-0800-0000-5fd799b60000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow2057128943", - "name": "DataFlow2057128943", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "830224e9-0000-0800-0000-5fd8d3550000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow2093566522", - "name": "DataFlow2093566522", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "830283eb-0000-0800-0000-5fd8d3660000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow1966527336", - "name": "DataFlow1966527336", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "8402c223-0000-0800-0000-5fd8d50d0000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow2129941680", - "name": "DataFlow2129941680", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "84024e26-0000-0800-0000-5fd8d5220000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow97504566", - "name": "DataFlow97504566", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "8402f74d-0000-0800-0000-5fd8d6550000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow1087011803", - "name": "DataFlow1087011803", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "8402b84f-0000-0800-0000-5fd8d6620000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow1035657603", - "name": "DataFlow1035657603", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "87027ca6-0000-0800-0000-5fd8f0dd0000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow1708109337", - "name": "DataFlow1708109337", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "870209a9-0000-0800-0000-5fd8f0f00000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow394868813", - "name": "DataFlow394868813", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "8702f5c5-0000-0800-0000-5fd8f1da0000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow64629529", - "name": "DataFlow64629529", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "87027cc8-0000-0800-0000-5fd8f1ee0000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow21374266", - "name": "DataFlow21374266", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "870253ea-0000-0800-0000-5fd8f2f80000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow1858438339", - "name": "DataFlow1858438339", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "870268ec-0000-0800-0000-5fd8f3090000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow2085940582", - "name": "DataFlow2085940582", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "88027c55-0000-0800-0000-5fd8f6620000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow1852236630", - "name": "DataFlow1852236630", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "88025b58-0000-0800-0000-5fd8f6780000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow1178585943", - "name": "DataFlow1178585943", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "88022b78-0000-0800-0000-5fd8f78d0000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow2039437796", - "name": "DataFlow2039437796", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "8802037a-0000-0800-0000-5fd8f79b0000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow2061633070", - "name": "DataFlow2061633070", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "88027f9b-0000-0800-0000-5fd8f8ab0000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow1607339506", - "name": "DataFlow1607339506", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "88025c9e-0000-0800-0000-5fd8f8c20000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow2049054227", - "name": "DataFlow2049054227", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "42002d4a-0000-0800-0000-5fda86450000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow1889167752", - "name": "DataFlow1889167752", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "4200f54e-0000-0800-0000-5fda865a0000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow912723432", - "name": "DataFlow912723432", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "4200e990-0000-0800-0000-5fda875e0000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow114728592", - "name": "DataFlow114728592", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "4200cb96-0000-0800-0000-5fda87740000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow1285900249", - "name": "DataFlow1285900249", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "42000ed6-0000-0800-0000-5fda88690000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow1819782082", - "name": "DataFlow1819782082", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "4200c7da-0000-0800-0000-5fda887c0000", - "properties": { - "type": null - } - } - ], - "nextLink": "https://workspacechhamosynapse.dev.azuresynapse.net:443/dataflows?api-version=2019-06-01-preview\u0026%24skipToken=%2BRID%3A%7ESl8ZAKxwhAB9UgAAAAD8BA%3D%3D%23RT%3A1%23TRC%3A50%23ISV%3A2%23IEO%3A65551%23QCF%3A1" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/dataflows?api-version=2019-06-01-preview\u0026%24skipToken=%2BRID%3A~Sl8ZAKxwhAB9UgAAAAD8BA%3D%3D%23RT%3A1%23TRC%3A50%23ISV%3A2%23IEO%3A65551%23QCF%3A1", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-b7dc7ba8bcece341b15c4ee8e4165002-c29015649c34a44b-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" ], - "x-ms-client-request-id": "9411dc6383afea393400207d16c89029", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Length": "16822", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:27:08 GMT", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "9411dc6383afea393400207d16c89029", - "x-ms-request-id": "9541827d-68df-41ff-9160-bfa482a33829" - }, - "ResponseBody": { - "value": [ - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow1250343093", - "name": "DataFlow1250343093", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "79005877-0000-0800-0000-5fdbaf0f0000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow119823309", - "name": "DataFlow119823309", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "7900c17d-0000-0800-0000-5fdbaf220000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow505303397", - "name": "DataFlow505303397", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "7900e8d5-0000-0800-0000-5fdbb01a0000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow176980167", - "name": "DataFlow176980167", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "79007add-0000-0800-0000-5fdbb0300000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow1729888951", - "name": "DataFlow1729888951", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "7a00843a-0000-0800-0000-5fdbb1330000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow621214267", - "name": "DataFlow621214267", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "7a005f41-0000-0800-0000-5fdbb1450000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow1335299017", - "name": "DataFlow1335299017", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "1200ec85-0000-0800-0000-5fdcc73c0000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow1921472179", - "name": "DataFlow1921472179", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "12005a88-0000-0800-0000-5fdcc7520000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow1567468018", - "name": "DataFlow1567468018", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "120011c1-0000-0800-0000-5fdcc9290000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow1697107952", - "name": "DataFlow1697107952", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "12009fc3-0000-0800-0000-5fdcc93f0000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow591902742", - "name": "DataFlow591902742", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "12002af3-0000-0800-0000-5fdccaca0000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow1507267725", - "name": "DataFlow1507267725", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "120014f5-0000-0800-0000-5fdccada0000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow1024224370", - "name": "DataFlow1024224370", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "140088ee-0000-0800-0000-5fdcdcb00000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow188539788", - "name": "DataFlow188539788", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "14004df1-0000-0800-0000-5fdcdcc30000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow757309393", - "name": "DataFlow757309393", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "1500dd0e-0000-0800-0000-5fdcddc70000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow1515768182", - "name": "DataFlow1515768182", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "15000a11-0000-0800-0000-5fdcdddb0000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow618242402", - "name": "DataFlow618242402", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "15004f2e-0000-0800-0000-5fdcdee30000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow1795254772", - "name": "DataFlow1795254772", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "1500f330-0000-0800-0000-5fdcdef80000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow1913310199", - "name": "DataFlow1913310199", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "15003ce2-0000-0800-0000-5fdce51d0000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow1338849248", - "name": "DataFlow1338849248", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "150066e5-0000-0800-0000-5fdce5380000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow667477679", - "name": "DataFlow667477679", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "1600d704-0000-0800-0000-5fdce6530000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow2022959936", - "name": "DataFlow2022959936", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "1600f506-0000-0800-0000-5fdce6650000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow744755087", - "name": "DataFlow744755087", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "1600a92d-0000-0800-0000-5fdce7b50000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow561835840", - "name": "DataFlow561835840", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "16001f30-0000-0800-0000-5fdce7cb0000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow1299557074", - "name": "DataFlow1299557074", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "930014de-0000-0800-0000-5fe0cdc00000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow630190171", - "name": "DataFlow630190171", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "930002ec-0000-0800-0000-5fe0cdd60000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow222969653", - "name": "DataFlow222969653", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "9400abf3-0000-0800-0000-5fe0cfa60000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow582296159", - "name": "DataFlow582296159", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "9400d8ff-0000-0800-0000-5fe0cfbe0000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow310609199", - "name": "DataFlow310609199", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "9500c0cf-0000-0800-0000-5fe0d1300000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow912832875", - "name": "DataFlow912832875", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "95002ddc-0000-0800-0000-5fe0d1450000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow1885970778", - "name": "DataFlow1885970778", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "b20039ea-0000-0800-0000-5fe1085e0000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow440468460", - "name": "DataFlow440468460", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "b2005bf2-0000-0800-0000-5fe108720000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow291224904", - "name": "DataFlow291224904", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "b300eaad-0000-0800-0000-5fe10a4f0000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow1976624151", - "name": "DataFlow1976624151", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "b30080b5-0000-0800-0000-5fe10a610000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow867157388", - "name": "DataFlow867157388", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "b400fe57-0000-0800-0000-5fe10bf20000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow996415404", - "name": "DataFlow996415404", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "b4001863-0000-0800-0000-5fe10c0c0000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow132109285", - "name": "DataFlow132109285", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "b70043ae-0000-0800-0000-5fe113e90000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow233910035", - "name": "DataFlow233910035", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "b7007fb8-0000-0800-0000-5fe114010000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow1450872196", - "name": "DataFlow1450872196", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "b8002c8b-0000-0800-0000-5fe1162b0000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow1587035965", - "name": "DataFlow1587035965", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "b8008c9c-0000-0800-0000-5fe116580000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow813789886", - "name": "DataFlow813789886", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "b900f639-0000-0800-0000-5fe118010000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow1210808548", - "name": "DataFlow1210808548", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "b900ba40-0000-0800-0000-5fe118140000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow806858434", - "name": "DataFlow806858434", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "0000e0ea-0000-0800-0000-5fe258ef0000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow226802846", - "name": "DataFlow226802846", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "000041eb-0000-0800-0000-5fe2590a0000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow627316733", - "name": "DataFlow627316733", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "0000c9f1-0000-0800-0000-5fe25b130000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow1968904557", - "name": "DataFlow1968904557", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "000017f2-0000-0800-0000-5fe25b2c0000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow1179866363", - "name": "DataFlow1179866363", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "000009f8-0000-0800-0000-5fe25cd90000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow893562639", - "name": "DataFlow893562639", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "000054f8-0000-0800-0000-5fe25cf50000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow637240762", - "name": "DataFlow637240762", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "03001276-0000-0800-0000-5fe389420000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow125917417", - "name": "DataFlow125917417", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "03003a76-0000-0800-0000-5fe389560000", - "properties": { - "type": null - } - } + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" ], - "nextLink": "https://workspacechhamosynapse.dev.azuresynapse.net:443/dataflows?api-version=2019-06-01-preview\u0026%24skipToken=%2BRID%3A%7ESl8ZAKxwhAD7WwAAAAD8BA%3D%3D%23RT%3A2%23TRC%3A100%23ISV%3A2%23IEO%3A65551%23QCF%3A1" + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 30 Sep 2021 06:09:41 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/1ff3cc1e-3e05-4510-a520-ba6170aba234?api-version=2020-12-01", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "84e36fa3ea04efe3ed6e4c2388655cd7", + "x-ms-request-id": "77bcd93f-b273-44bd-8de0-232c71254f2c" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/1ff3cc1e-3e05-4510-a520-ba6170aba234?api-version=2020-12-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "9411dc6383afea393400207d16c89029", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "313", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 30 Sep 2021 06:09:42 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-ms-client-request-id": "9411dc6383afea393400207d16c89029", + "x-ms-correlation-request-id": "1ae1f179-026c-40fd-9474-34607d16930e", + "x-ms-request-id": "ceea45f3-2bf9-4aa4-9385-a48860a46c6e", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/dataflows/DataFlow6483", + "name": "DataFlow6483", + "type": "Microsoft.Synapse/workspaces/dataflows", + "properties": { + "type": null + }, + "etag": "2e00f17e-0000-0100-0000-615554a60000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/dataflows?api-version=2019-06-01-preview\u0026%24skipToken=%2BRID%3A~Sl8ZAKxwhAD7WwAAAAD8BA%3D%3D%23RT%3A2%23TRC%3A100%23ISV%3A2%23IEO%3A65551%23QCF%3A1", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/dataflows?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-1f627b9a1959984a9884e3b71d183eb8-5c8afb835fc9e94f-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "traceparent": "00-5af92a8a2e43784181f39069517ef8a6-dd380a2f888e8745-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "aff0fbf19a750a20d06f7c0abf5c3fc1", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Content-Length": "9484", + "Content-Length": "1419", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:27:08 GMT", + "Date": "Thu, 30 Sep 2021 06:09:42 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "aff0fbf19a750a20d06f7c0abf5c3fc1", - "x-ms-request-id": "7e17d070-4ab2-4669-af76-ae74d831abc0" + "x-ms-request-id": "0f9bb8f5-c125-4c69-bf1a-4e31d0f43770" }, "ResponseBody": { "value": [ { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow1799961324", - "name": "DataFlow1799961324", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "0300b97e-0000-0800-0000-5fe38c8e0000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow1945312310", - "name": "DataFlow1945312310", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "0300fd7e-0000-0800-0000-5fe38ca40000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow18676946", - "name": "DataFlow18676946", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "0300ce89-0000-0800-0000-5fe390390000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow1504832421", - "name": "DataFlow1504832421", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "0300098a-0000-0800-0000-5fe390540000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow319307898", - "name": "DataFlow319307898", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "0300b592-0000-0800-0000-5fe3935d0000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow233193525", - "name": "DataFlow233193525", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "03002f93-0000-0800-0000-5fe393760000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow805678952", - "name": "DataFlow805678952", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "0300b59b-0000-0800-0000-5fe396710000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow747795134", - "name": "DataFlow747795134", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "0300009c-0000-0800-0000-5fe3968d0000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow1122185171", - "name": "DataFlow1122185171", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "0300dda4-0000-0800-0000-5fe3998a0000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow1174850586", - "name": "DataFlow1174850586", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "03002ca5-0000-0800-0000-5fe399a60000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow1838828355", - "name": "DataFlow1838828355", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "030095b0-0000-0800-0000-5fe39d960000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow963527530", - "name": "DataFlow963527530", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "0300ceb0-0000-0800-0000-5fe39dae0000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow1427824274", - "name": "DataFlow1427824274", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "0300ebbe-0000-0800-0000-5fe3a1fe0000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow936590222", - "name": "DataFlow936590222", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "030068c2-0000-0800-0000-5fe3a3510000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow431247603", - "name": "DataFlow431247603", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "030044d0-0000-0800-0000-5fe3a7c40000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow18900029", - "name": "DataFlow18900029", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "030093d0-0000-0800-0000-5fe3a7e00000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow147", - "name": "DataFlow147", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "dd00266d-0000-0800-0000-5ff368970000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow229", - "name": "DataFlow229", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "dd00586d-0000-0800-0000-5ff368ab0000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow480", - "name": "DataFlow480", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "dd00446d-0000-0800-0000-5ff368a40000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow2488", - "name": "DataFlow2488", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "dd006f6d-0000-0800-0000-5ff368b10000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow5086", - "name": "DataFlow5086", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "dd00599c-0000-0800-0000-5ff3841f0000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow9074", - "name": "DataFlow9074", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "dd00769c-0000-0800-0000-5ff3843b0000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow1229", - "name": "DataFlow1229", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "dd005d9d-0000-0800-0000-5ff384e30000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow5951", - "name": "DataFlow5951", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "dd00689d-0000-0800-0000-5ff384f50000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow5075", - "name": "DataFlow5075", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "dd00749e-0000-0800-0000-5ff385e10000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow8979", - "name": "DataFlow8979", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "dd006f9f-0000-0800-0000-5ff386790000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow3137", - "name": "DataFlow3137", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/dataflows/Dataflow1", + "name": "Dataflow1", "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "dd0078a0-0000-0800-0000-5ff387860000", + "etag": "1b0050bf-0000-0100-0000-5f58382a0000", "properties": { - "type": null + "type": "MappingDataFlow", + "typeProperties": { + "sources": [ + { + "dataset": { + "referenceName": "DelimitedText1", + "type": "DatasetReference" + }, + "name": "source1" + } + ], + "sinks": [ + { + "dataset": { + "referenceName": "DelimitedText1", + "type": "DatasetReference" + }, + "name": "sink1" + } + ], + "transformations": [], + "script": "source(allowSchemaDrift: true,\n\tvalidateSchema: false) ~\u003E source1\nsource1 sink(allowSchemaDrift: true,\n\tvalidateSchema: false,\n\tskipDuplicateMapInputs: true,\n\tskipDuplicateMapOutputs: true) ~\u003E sink1" + } } }, { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow3163", - "name": "DataFlow3163", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/dataflows/DataFlow5386", + "name": "DataFlow5386", "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "dd008aad-0000-0800-0000-5ff391b50000", + "etag": "2e00f976-0000-0100-0000-6155496d0000", "properties": { "type": null } }, { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow6483", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/dataflows/DataFlow6483", "name": "DataFlow6483", "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "4f0062e5-0000-0800-0000-6008a02c0000", + "etag": "2e00f17e-0000-0100-0000-615554a60000", "properties": { "type": null } @@ -1386,16 +265,13 @@ } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/dataflows/DataFlow6483?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/dataflows/DataFlow6483?api-version=2020-12-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-980d241bfad9c94a8c349b31814ef20b-8f416e9866680240-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "traceparent": "00-54800398d5e94644b27e3193db7d533a-4def008489866f4a-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e1619ac68eae200e36f85003ca66d824", "x-ms-return-client-request-id": "true" }, @@ -1404,35 +280,32 @@ "ResponseHeaders": { "Access-Control-Allow-Headers": "Location", "Access-Control-Expose-Headers": "Location", - "Content-Length": "366", + "Content-Length": "359", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:27:08 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/946f0aea-7804-4264-a799-f8dbb309e565?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:09:43 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/b15640bf-3e37-4ec4-8dce-e0b8bd2269fe?api-version=2020-12-01", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "e1619ac68eae200e36f85003ca66d824", - "x-ms-request-id": "b1fa78c6-e7b8-45ad-9962-b094cc717185" + "x-ms-request-id": "fdf06820-6a9d-4792-b8b9-daa4c8368e05" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow6483", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/dataflows/DataFlow6483", "recordId": 0, "state": "Deleting", "created": "0001-01-01T00:00:00", "changed": "0001-01-01T00:00:00", "type": "DataFlow", "name": "DataFlow6483", - "operationId": "946f0aea-7804-4264-a799-f8dbb309e565" + "operationId": "b15640bf-3e37-4ec4-8dce-e0b8bd2269fe" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/946f0aea-7804-4264-a799-f8dbb309e565?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/b15640bf-3e37-4ec4-8dce-e0b8bd2269fe?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7cb65ec1af67637bedd0787c4a1d3f69", "x-ms-return-client-request-id": "true" }, @@ -1449,27 +322,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:27:08 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/946f0aea-7804-4264-a799-f8dbb309e565?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:09:43 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/b15640bf-3e37-4ec4-8dce-e0b8bd2269fe?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "7cb65ec1af67637bedd0787c4a1d3f69", - "x-ms-request-id": "ffddf0db-2cb5-49a5-b525-76cd6f76784d" + "x-ms-request-id": "3b264ee9-924a-44f4-bf90-b1889da4f86f" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/946f0aea-7804-4264-a799-f8dbb309e565?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/b15640bf-3e37-4ec4-8dce-e0b8bd2269fe?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "9c2c5896b32b184c389926a6c9ce1907", "x-ms-return-client-request-id": "true" }, @@ -1486,27 +356,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:27:10 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/946f0aea-7804-4264-a799-f8dbb309e565?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:09:44 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/b15640bf-3e37-4ec4-8dce-e0b8bd2269fe?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "9c2c5896b32b184c389926a6c9ce1907", - "x-ms-request-id": "c2cced1e-fc3a-41fe-9112-a8836215040b" + "x-ms-request-id": "d266d941-9b2d-46be-91af-e8387960a699" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/946f0aea-7804-4264-a799-f8dbb309e565?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/b15640bf-3e37-4ec4-8dce-e0b8bd2269fe?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6b4178ce5caf2ebda7cd9fa335e57e9d", "x-ms-return-client-request-id": "true" }, @@ -1523,45 +390,110 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:27:11 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/946f0aea-7804-4264-a799-f8dbb309e565?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:09:45 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/b15640bf-3e37-4ec4-8dce-e0b8bd2269fe?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "6b4178ce5caf2ebda7cd9fa335e57e9d", - "x-ms-request-id": "313325ed-d796-4999-9176-99105e76e5b2" + "x-ms-request-id": "df615829-2bde-40d7-9e76-8497af7e6c9c" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/946f0aea-7804-4264-a799-f8dbb309e565?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/b15640bf-3e37-4ec4-8dce-e0b8bd2269fe?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "adaa5bc78d020eab119e43cd88d4991e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 30 Sep 2021 06:09:46 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/b15640bf-3e37-4ec4-8dce-e0b8bd2269fe?api-version=2020-12-01", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "adaa5bc78d020eab119e43cd88d4991e", + "x-ms-request-id": "6bd54a59-adf8-46f3-b4d1-2119e8a38c14" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/b15640bf-3e37-4ec4-8dce-e0b8bd2269fe?api-version=2020-12-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "d1ad70b6d4db39b99bfdf55d13a9e353", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 30 Sep 2021 06:09:47 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/b15640bf-3e37-4ec4-8dce-e0b8bd2269fe?api-version=2020-12-01", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "d1ad70b6d4db39b99bfdf55d13a9e353", + "x-ms-request-id": "672635c1-f17f-418e-8144-9f432eba4a2d" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/b15640bf-3e37-4ec4-8dce-e0b8bd2269fe?api-version=2020-12-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "6edf881a6c244105cc33591118efa5d3", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Content-Length": "0", - "Date": "Wed, 20 Jan 2021 21:27:12 GMT", + "Date": "Thu, 30 Sep 2021 06:09:48 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "adaa5bc78d020eab119e43cd88d4991e", - "x-ms-request-id": "73689f48-b58f-472c-b76d-942e9b8261b2" + "x-ms-client-request-id": "6edf881a6c244105cc33591118efa5d3", + "x-ms-request-id": "fd16257e-8862-464b-9656-1d49b9e41120" }, "ResponseBody": [] } ], "Variables": { - "AZURE_SYNAPSE_WORKSPACE_URL": "https://workspacechhamosynapse.dev.azuresynapse.net", + "AZURE_SYNAPSE_WORKSPACE_URL": "https://testsynapseworkspace.dev.azuresynapse.net", "RandomSeed": "1456054089" } } \ No newline at end of file diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DataFlowClientLiveTests/GetDataFlowsAsync.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DataFlowClientLiveTests/GetDataFlowsAsync.json index c9e1eb798e47..247169cfa1e6 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DataFlowClientLiveTests/GetDataFlowsAsync.json +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DataFlowClientLiveTests/GetDataFlowsAsync.json @@ -1,18 +1,15 @@ { "Entries": [ { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/dataflows/DataFlow6608?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/dataflows/DataFlow6608?api-version=2020-12-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "28", "Content-Type": "application/json", - "traceparent": "00-361fa3c005c2c74191cd40ebd55eec59-73338d8d0c163d4f-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "traceparent": "00-c4c2cb20e6ba9a4bbf1dfe5db4251c9e-5a4caa0ff9d5134f-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f87fdf15942aca00dc0ff3021e2a38ab", "x-ms-return-client-request-id": "true" }, @@ -31,37 +28,34 @@ "Location", "Retry-After" ], - "Content-Length": "429", + "Content-Length": "435", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:27:50 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/d193a2d4-9fb2-43d5-b543-96897f7ef804?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:10:19 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/746fa2f7-17a6-4d4b-8d21-bd18db8b6239?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "f87fdf15942aca00dc0ff3021e2a38ab", - "x-ms-request-id": "0884d840-f961-4cd3-a166-b45f167c0cb0" + "x-ms-request-id": "b9518d04-507a-4b6c-9399-489771921b0f" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow6608", - "recordId": 983933, + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/dataflows/DataFlow6608", + "recordId": 2424182, "state": "Creating", - "created": "2021-01-20T21:27:50.5Z", - "changed": "2021-01-20T21:27:50.5Z", + "created": "2021-09-30T06:10:20.1933333Z", + "changed": "2021-09-30T06:10:20.1933333Z", "type": "DataFlow", "name": "DataFlow6608", - "operationId": "d193a2d4-9fb2-43d5-b543-96897f7ef804", - "artifactId": "A08CF72E-5A9F-4499-A11E-8BDB76A908E4" + "operationId": "746fa2f7-17a6-4d4b-8d21-bd18db8b6239", + "artifactId": "F5C25CCB-7431-456F-BF02-3C9444127C14" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/d193a2d4-9fb2-43d5-b543-96897f7ef804?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/746fa2f7-17a6-4d4b-8d21-bd18db8b6239?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "1c067a6ecac2f9c2020f5814b78df096", "x-ms-return-client-request-id": "true" }, @@ -78,27 +72,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:27:50 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/d193a2d4-9fb2-43d5-b543-96897f7ef804?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:10:19 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/746fa2f7-17a6-4d4b-8d21-bd18db8b6239?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "1c067a6ecac2f9c2020f5814b78df096", - "x-ms-request-id": "8bff3838-70b5-42d6-9dcb-7c138c3076ce" + "x-ms-request-id": "1723cc87-ae0c-4363-aca6-3453c66d8854" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/d193a2d4-9fb2-43d5-b543-96897f7ef804?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/746fa2f7-17a6-4d4b-8d21-bd18db8b6239?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e6d5d032e1cbd57a1fc1419a9b389245", "x-ms-return-client-request-id": "true" }, @@ -115,27 +106,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:27:51 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/d193a2d4-9fb2-43d5-b543-96897f7ef804?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:10:20 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/746fa2f7-17a6-4d4b-8d21-bd18db8b6239?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "e6d5d032e1cbd57a1fc1419a9b389245", - "x-ms-request-id": "9a095514-4f83-4286-91ef-3ee65ce55000" + "x-ms-request-id": "c3b201b2-5f2a-408a-bc08-772fcedb8806" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/d193a2d4-9fb2-43d5-b543-96897f7ef804?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/746fa2f7-17a6-4d4b-8d21-bd18db8b6239?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a394539d1b24eee9f348aab1e8ab0629", "x-ms-return-client-request-id": "true" }, @@ -152,27 +140,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:27:52 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/d193a2d4-9fb2-43d5-b543-96897f7ef804?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:10:21 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/746fa2f7-17a6-4d4b-8d21-bd18db8b6239?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "a394539d1b24eee9f348aab1e8ab0629", - "x-ms-request-id": "44d427c6-c5ce-4ee7-b53c-59477dc9cd0e" + "x-ms-request-id": "52b7a41a-bd57-4bb0-969b-8ee4bf92803b" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/d193a2d4-9fb2-43d5-b543-96897f7ef804?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/746fa2f7-17a6-4d4b-8d21-bd18db8b6239?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6795629f8bc18cd50031fd0088275ec9", "x-ms-return-client-request-id": "true" }, @@ -189,27 +174,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:27:53 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/d193a2d4-9fb2-43d5-b543-96897f7ef804?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:10:23 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/746fa2f7-17a6-4d4b-8d21-bd18db8b6239?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "6795629f8bc18cd50031fd0088275ec9", - "x-ms-request-id": "3fb32aed-0979-4f70-a501-df8db6358926" + "x-ms-request-id": "0226e51f-350e-4310-9c85-e3488f955efe" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/d193a2d4-9fb2-43d5-b543-96897f7ef804?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/746fa2f7-17a6-4d4b-8d21-bd18db8b6239?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6377127c4cf81672e7e6f38237c9ec73", "x-ms-return-client-request-id": "true" }, @@ -226,27 +208,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:27:55 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/d193a2d4-9fb2-43d5-b543-96897f7ef804?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:10:24 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/746fa2f7-17a6-4d4b-8d21-bd18db8b6239?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "6377127c4cf81672e7e6f38237c9ec73", - "x-ms-request-id": "8f99865c-2580-4612-a302-6f426cd293b5" + "x-ms-request-id": "66f1113b-1130-4423-9938-dc5bb6486295" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/d193a2d4-9fb2-43d5-b543-96897f7ef804?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/746fa2f7-17a6-4d4b-8d21-bd18db8b6239?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "38fa18bb2ba211837e08a3f21de866cc", "x-ms-return-client-request-id": "true" }, @@ -254,1278 +233,98 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "320", + "Content-Length": "313", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:27:56 GMT", + "Date": "Thu, 30 Sep 2021 06:10:25 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "38fa18bb2ba211837e08a3f21de866cc", - "x-ms-correlation-request-id": "76bbee98-7c03-4e46-b3ee-ed1ee8a03aa3", - "x-ms-request-id": "21fad9a0-6a92-4c61-be43-abb32377dbff", + "x-ms-correlation-request-id": "89f4a365-230c-4892-aeb3-078d64584dab", + "x-ms-request-id": "eba041fa-ff83-4b14-8799-ad7460f829e0", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow6608", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/dataflows/DataFlow6608", "name": "DataFlow6608", "type": "Microsoft.Synapse/workspaces/dataflows", "properties": { "type": null }, - "etag": "50005904-0000-0800-0000-6008a05b0000" + "etag": "2e00357f-0000-0100-0000-615554d00000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/dataflows?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/dataflows?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-e4b736cf58ab6042b99ec5fbe3febf32-e7d36c31c9849546-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "traceparent": "00-151f1eea7c1dc6468e67016bc81130ed-8e4b307869e48b41-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d534e0eaa2345330f07e80db98525437", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Content-Length": "16831", + "Content-Length": "1419", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:27:56 GMT", + "Date": "Thu, 30 Sep 2021 06:10:25 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "d534e0eaa2345330f07e80db98525437", - "x-ms-request-id": "bef1317f-af6f-475c-83de-4aaad418224a" + "x-ms-request-id": "e35c3372-0a50-4811-947c-ba1b2769dc61" }, "ResponseBody": { "value": [ { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow1630901926", - "name": "DataFlow1630901926", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "f501fdf9-0000-0800-0000-5fd257b90000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow2059769311", - "name": "DataFlow2059769311", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "f50116fc-0000-0800-0000-5fd257cb0000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow1607144151", - "name": "DataFlow1607144151", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "f601ee14-0000-0800-0000-5fd258aa0000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow1734040659", - "name": "DataFlow1734040659", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "f6016c16-0000-0800-0000-5fd258b70000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow284383835", - "name": "DataFlow284383835", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "f6015a30-0000-0800-0000-5fd2599a0000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow421079366", - "name": "DataFlow421079366", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "f6017732-0000-0800-0000-5fd259a90000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow1990953633", - "name": "DataFlow1990953633", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "f60143a1-0000-0800-0000-5fd25dab0000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow581911861", - "name": "DataFlow581911861", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "f60160a3-0000-0800-0000-5fd25dbd0000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow1520504758", - "name": "DataFlow1520504758", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "f6011cbb-0000-0800-0000-5fd25e910000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow1908543411", - "name": "DataFlow1908543411", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "f60178bc-0000-0800-0000-5fd25e9d0000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow397131088", - "name": "DataFlow397131088", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "f601a8d3-0000-0800-0000-5fd25f730000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow42648917", - "name": "DataFlow42648917", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "f60144d5-0000-0800-0000-5fd25f820000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow1099401501", - "name": "DataFlow1099401501", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "f701773f-0000-0800-0000-5fd2638c0000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow75983368", - "name": "DataFlow75983368", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "f7016841-0000-0800-0000-5fd2639e0000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow1373189771", - "name": "DataFlow1373189771", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "f7013b5c-0000-0800-0000-5fd264940000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow973001576", - "name": "DataFlow973001576", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "f701f95d-0000-0800-0000-5fd264a30000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow889752858", - "name": "DataFlow889752858", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "f701488c-0000-0800-0000-5fd266510000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow472901187", - "name": "DataFlow472901187", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "f7017d8d-0000-0800-0000-5fd2665c0000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow2017017383", - "name": "DataFlow2017017383", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "1902aea1-0000-0800-0000-5fd3a9790000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow1566215546", - "name": "DataFlow1566215546", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "19023ea3-0000-0800-0000-5fd3a9860000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow589626238", - "name": "DataFlow589626238", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "62027a8a-0000-0800-0000-5fd7971b0000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow453603740", - "name": "DataFlow453603740", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "6202e38b-0000-0800-0000-5fd797250000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow1426113273", - "name": "DataFlow1426113273", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "6202ccb9-0000-0800-0000-5fd798890000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow967663745", - "name": "DataFlow967663745", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "62022dbb-0000-0800-0000-5fd798950000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow1420358056", - "name": "DataFlow1420358056", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "6202f5de-0000-0800-0000-5fd799a20000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow446309359", - "name": "DataFlow446309359", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "62029ce1-0000-0800-0000-5fd799b60000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow2057128943", - "name": "DataFlow2057128943", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "830224e9-0000-0800-0000-5fd8d3550000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow2093566522", - "name": "DataFlow2093566522", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "830283eb-0000-0800-0000-5fd8d3660000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow1966527336", - "name": "DataFlow1966527336", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "8402c223-0000-0800-0000-5fd8d50d0000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow2129941680", - "name": "DataFlow2129941680", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "84024e26-0000-0800-0000-5fd8d5220000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow97504566", - "name": "DataFlow97504566", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "8402f74d-0000-0800-0000-5fd8d6550000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow1087011803", - "name": "DataFlow1087011803", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "8402b84f-0000-0800-0000-5fd8d6620000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow1035657603", - "name": "DataFlow1035657603", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "87027ca6-0000-0800-0000-5fd8f0dd0000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow1708109337", - "name": "DataFlow1708109337", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "870209a9-0000-0800-0000-5fd8f0f00000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow394868813", - "name": "DataFlow394868813", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "8702f5c5-0000-0800-0000-5fd8f1da0000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow64629529", - "name": "DataFlow64629529", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "87027cc8-0000-0800-0000-5fd8f1ee0000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow21374266", - "name": "DataFlow21374266", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "870253ea-0000-0800-0000-5fd8f2f80000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow1858438339", - "name": "DataFlow1858438339", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "870268ec-0000-0800-0000-5fd8f3090000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow2085940582", - "name": "DataFlow2085940582", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "88027c55-0000-0800-0000-5fd8f6620000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow1852236630", - "name": "DataFlow1852236630", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "88025b58-0000-0800-0000-5fd8f6780000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow1178585943", - "name": "DataFlow1178585943", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/dataflows/Dataflow1", + "name": "Dataflow1", "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "88022b78-0000-0800-0000-5fd8f78d0000", + "etag": "1b0050bf-0000-0100-0000-5f58382a0000", "properties": { - "type": null + "type": "MappingDataFlow", + "typeProperties": { + "sources": [ + { + "dataset": { + "referenceName": "DelimitedText1", + "type": "DatasetReference" + }, + "name": "source1" + } + ], + "sinks": [ + { + "dataset": { + "referenceName": "DelimitedText1", + "type": "DatasetReference" + }, + "name": "sink1" + } + ], + "transformations": [], + "script": "source(allowSchemaDrift: true,\n\tvalidateSchema: false) ~\u003E source1\nsource1 sink(allowSchemaDrift: true,\n\tvalidateSchema: false,\n\tskipDuplicateMapInputs: true,\n\tskipDuplicateMapOutputs: true) ~\u003E sink1" + } } }, { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow2039437796", - "name": "DataFlow2039437796", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/dataflows/DataFlow5386", + "name": "DataFlow5386", "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "8802037a-0000-0800-0000-5fd8f79b0000", + "etag": "2e00f976-0000-0100-0000-6155496d0000", "properties": { "type": null } }, { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow2061633070", - "name": "DataFlow2061633070", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/dataflows/DataFlow6608", + "name": "DataFlow6608", "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "88027f9b-0000-0800-0000-5fd8f8ab0000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow1607339506", - "name": "DataFlow1607339506", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "88025c9e-0000-0800-0000-5fd8f8c20000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow2049054227", - "name": "DataFlow2049054227", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "42002d4a-0000-0800-0000-5fda86450000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow1889167752", - "name": "DataFlow1889167752", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "4200f54e-0000-0800-0000-5fda865a0000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow912723432", - "name": "DataFlow912723432", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "4200e990-0000-0800-0000-5fda875e0000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow114728592", - "name": "DataFlow114728592", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "4200cb96-0000-0800-0000-5fda87740000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow1285900249", - "name": "DataFlow1285900249", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "42000ed6-0000-0800-0000-5fda88690000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow1819782082", - "name": "DataFlow1819782082", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "4200c7da-0000-0800-0000-5fda887c0000", - "properties": { - "type": null - } - } - ], - "nextLink": "https://workspacechhamosynapse.dev.azuresynapse.net:443/dataflows?api-version=2019-06-01-preview\u0026%24skipToken=%2BRID%3A%7ESl8ZAKxwhAB9UgAAAAD8BA%3D%3D%23RT%3A1%23TRC%3A50%23ISV%3A2%23IEO%3A65551%23QCF%3A1" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/dataflows?api-version=2019-06-01-preview\u0026%24skipToken=%2BRID%3A~Sl8ZAKxwhAB9UgAAAAD8BA%3D%3D%23RT%3A1%23TRC%3A50%23ISV%3A2%23IEO%3A65551%23QCF%3A1", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-62c926e3fd36e645935a1d6642b58477-429403aae1d93a42-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "70458a44252d51278e66e5f0a97ff9fe", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Length": "16822", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:27:56 GMT", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "70458a44252d51278e66e5f0a97ff9fe", - "x-ms-request-id": "06f18655-958f-4f9f-b71f-17f74394bcd1" - }, - "ResponseBody": { - "value": [ - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow1250343093", - "name": "DataFlow1250343093", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "79005877-0000-0800-0000-5fdbaf0f0000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow119823309", - "name": "DataFlow119823309", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "7900c17d-0000-0800-0000-5fdbaf220000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow505303397", - "name": "DataFlow505303397", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "7900e8d5-0000-0800-0000-5fdbb01a0000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow176980167", - "name": "DataFlow176980167", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "79007add-0000-0800-0000-5fdbb0300000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow1729888951", - "name": "DataFlow1729888951", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "7a00843a-0000-0800-0000-5fdbb1330000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow621214267", - "name": "DataFlow621214267", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "7a005f41-0000-0800-0000-5fdbb1450000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow1335299017", - "name": "DataFlow1335299017", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "1200ec85-0000-0800-0000-5fdcc73c0000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow1921472179", - "name": "DataFlow1921472179", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "12005a88-0000-0800-0000-5fdcc7520000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow1567468018", - "name": "DataFlow1567468018", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "120011c1-0000-0800-0000-5fdcc9290000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow1697107952", - "name": "DataFlow1697107952", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "12009fc3-0000-0800-0000-5fdcc93f0000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow591902742", - "name": "DataFlow591902742", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "12002af3-0000-0800-0000-5fdccaca0000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow1507267725", - "name": "DataFlow1507267725", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "120014f5-0000-0800-0000-5fdccada0000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow1024224370", - "name": "DataFlow1024224370", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "140088ee-0000-0800-0000-5fdcdcb00000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow188539788", - "name": "DataFlow188539788", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "14004df1-0000-0800-0000-5fdcdcc30000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow757309393", - "name": "DataFlow757309393", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "1500dd0e-0000-0800-0000-5fdcddc70000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow1515768182", - "name": "DataFlow1515768182", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "15000a11-0000-0800-0000-5fdcdddb0000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow618242402", - "name": "DataFlow618242402", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "15004f2e-0000-0800-0000-5fdcdee30000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow1795254772", - "name": "DataFlow1795254772", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "1500f330-0000-0800-0000-5fdcdef80000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow1913310199", - "name": "DataFlow1913310199", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "15003ce2-0000-0800-0000-5fdce51d0000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow1338849248", - "name": "DataFlow1338849248", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "150066e5-0000-0800-0000-5fdce5380000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow667477679", - "name": "DataFlow667477679", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "1600d704-0000-0800-0000-5fdce6530000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow2022959936", - "name": "DataFlow2022959936", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "1600f506-0000-0800-0000-5fdce6650000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow744755087", - "name": "DataFlow744755087", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "1600a92d-0000-0800-0000-5fdce7b50000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow561835840", - "name": "DataFlow561835840", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "16001f30-0000-0800-0000-5fdce7cb0000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow1299557074", - "name": "DataFlow1299557074", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "930014de-0000-0800-0000-5fe0cdc00000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow630190171", - "name": "DataFlow630190171", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "930002ec-0000-0800-0000-5fe0cdd60000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow222969653", - "name": "DataFlow222969653", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "9400abf3-0000-0800-0000-5fe0cfa60000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow582296159", - "name": "DataFlow582296159", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "9400d8ff-0000-0800-0000-5fe0cfbe0000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow310609199", - "name": "DataFlow310609199", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "9500c0cf-0000-0800-0000-5fe0d1300000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow912832875", - "name": "DataFlow912832875", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "95002ddc-0000-0800-0000-5fe0d1450000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow1885970778", - "name": "DataFlow1885970778", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "b20039ea-0000-0800-0000-5fe1085e0000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow440468460", - "name": "DataFlow440468460", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "b2005bf2-0000-0800-0000-5fe108720000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow291224904", - "name": "DataFlow291224904", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "b300eaad-0000-0800-0000-5fe10a4f0000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow1976624151", - "name": "DataFlow1976624151", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "b30080b5-0000-0800-0000-5fe10a610000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow867157388", - "name": "DataFlow867157388", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "b400fe57-0000-0800-0000-5fe10bf20000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow996415404", - "name": "DataFlow996415404", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "b4001863-0000-0800-0000-5fe10c0c0000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow132109285", - "name": "DataFlow132109285", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "b70043ae-0000-0800-0000-5fe113e90000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow233910035", - "name": "DataFlow233910035", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "b7007fb8-0000-0800-0000-5fe114010000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow1450872196", - "name": "DataFlow1450872196", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "b8002c8b-0000-0800-0000-5fe1162b0000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow1587035965", - "name": "DataFlow1587035965", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "b8008c9c-0000-0800-0000-5fe116580000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow813789886", - "name": "DataFlow813789886", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "b900f639-0000-0800-0000-5fe118010000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow1210808548", - "name": "DataFlow1210808548", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "b900ba40-0000-0800-0000-5fe118140000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow806858434", - "name": "DataFlow806858434", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "0000e0ea-0000-0800-0000-5fe258ef0000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow226802846", - "name": "DataFlow226802846", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "000041eb-0000-0800-0000-5fe2590a0000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow627316733", - "name": "DataFlow627316733", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "0000c9f1-0000-0800-0000-5fe25b130000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow1968904557", - "name": "DataFlow1968904557", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "000017f2-0000-0800-0000-5fe25b2c0000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow1179866363", - "name": "DataFlow1179866363", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "000009f8-0000-0800-0000-5fe25cd90000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow893562639", - "name": "DataFlow893562639", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "000054f8-0000-0800-0000-5fe25cf50000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow637240762", - "name": "DataFlow637240762", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "03001276-0000-0800-0000-5fe389420000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow125917417", - "name": "DataFlow125917417", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "03003a76-0000-0800-0000-5fe389560000", - "properties": { - "type": null - } - } - ], - "nextLink": "https://workspacechhamosynapse.dev.azuresynapse.net:443/dataflows?api-version=2019-06-01-preview\u0026%24skipToken=%2BRID%3A%7ESl8ZAKxwhAD7WwAAAAD8BA%3D%3D%23RT%3A2%23TRC%3A100%23ISV%3A2%23IEO%3A65551%23QCF%3A1" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/dataflows?api-version=2019-06-01-preview\u0026%24skipToken=%2BRID%3A~Sl8ZAKxwhAD7WwAAAAD8BA%3D%3D%23RT%3A2%23TRC%3A100%23ISV%3A2%23IEO%3A65551%23QCF%3A1", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-337cce93cfd489478dd8c61b9cc3abd2-7dd68b04d685204b-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "579826801794183ee7a74724aaa8782b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Length": "9484", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:27:56 GMT", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "579826801794183ee7a74724aaa8782b", - "x-ms-request-id": "aa4a3991-bb59-496f-8142-8da02d2d65b1" - }, - "ResponseBody": { - "value": [ - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow1799961324", - "name": "DataFlow1799961324", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "0300b97e-0000-0800-0000-5fe38c8e0000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow1945312310", - "name": "DataFlow1945312310", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "0300fd7e-0000-0800-0000-5fe38ca40000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow18676946", - "name": "DataFlow18676946", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "0300ce89-0000-0800-0000-5fe390390000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow1504832421", - "name": "DataFlow1504832421", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "0300098a-0000-0800-0000-5fe390540000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow319307898", - "name": "DataFlow319307898", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "0300b592-0000-0800-0000-5fe3935d0000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow233193525", - "name": "DataFlow233193525", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "03002f93-0000-0800-0000-5fe393760000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow805678952", - "name": "DataFlow805678952", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "0300b59b-0000-0800-0000-5fe396710000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow747795134", - "name": "DataFlow747795134", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "0300009c-0000-0800-0000-5fe3968d0000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow1122185171", - "name": "DataFlow1122185171", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "0300dda4-0000-0800-0000-5fe3998a0000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow1174850586", - "name": "DataFlow1174850586", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "03002ca5-0000-0800-0000-5fe399a60000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow1838828355", - "name": "DataFlow1838828355", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "030095b0-0000-0800-0000-5fe39d960000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow963527530", - "name": "DataFlow963527530", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "0300ceb0-0000-0800-0000-5fe39dae0000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow1427824274", - "name": "DataFlow1427824274", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "0300ebbe-0000-0800-0000-5fe3a1fe0000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow936590222", - "name": "DataFlow936590222", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "030068c2-0000-0800-0000-5fe3a3510000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow431247603", - "name": "DataFlow431247603", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "030044d0-0000-0800-0000-5fe3a7c40000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow18900029", - "name": "DataFlow18900029", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "030093d0-0000-0800-0000-5fe3a7e00000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow147", - "name": "DataFlow147", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "dd00266d-0000-0800-0000-5ff368970000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow229", - "name": "DataFlow229", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "dd00586d-0000-0800-0000-5ff368ab0000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow480", - "name": "DataFlow480", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "dd00446d-0000-0800-0000-5ff368a40000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow2488", - "name": "DataFlow2488", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "dd006f6d-0000-0800-0000-5ff368b10000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow5086", - "name": "DataFlow5086", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "dd00599c-0000-0800-0000-5ff3841f0000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow9074", - "name": "DataFlow9074", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "dd00769c-0000-0800-0000-5ff3843b0000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow1229", - "name": "DataFlow1229", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "dd005d9d-0000-0800-0000-5ff384e30000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow5951", - "name": "DataFlow5951", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "dd00689d-0000-0800-0000-5ff384f50000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow5075", - "name": "DataFlow5075", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "dd00749e-0000-0800-0000-5ff385e10000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow8979", - "name": "DataFlow8979", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "dd006f9f-0000-0800-0000-5ff386790000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow3137", - "name": "DataFlow3137", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "dd0078a0-0000-0800-0000-5ff387860000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow3163", - "name": "DataFlow3163", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "dd008aad-0000-0800-0000-5ff391b50000", - "properties": { - "type": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow6608", - "name": "DataFlow6608", - "type": "Microsoft.Synapse/workspaces/dataflows", - "etag": "50005904-0000-0800-0000-6008a05b0000", + "etag": "2e00357f-0000-0100-0000-615554d00000", "properties": { "type": null } @@ -1534,17 +333,14 @@ } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/dataflows/DataFlow6608?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/dataflows/DataFlow6608?api-version=2020-12-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-523349791566784e9e8224dc4c926dc2-7bb558c4a03fa54e-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "92ae6bb3f5a3c59fb9e246cebd40aa71", + "traceparent": "00-c6532f56ed139340a73f6a11840c8d73-26c1cce5d03b684e-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "70458a44252d51278e66e5f0a97ff9fe", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -1552,73 +348,33 @@ "ResponseHeaders": { "Access-Control-Allow-Headers": "Location", "Access-Control-Expose-Headers": "Location", - "Content-Length": "366", + "Content-Length": "359", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:27:56 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/2453c40b-c781-4912-a1a5-e166d72f974c?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:10:25 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/0c3b198f-7cdf-4603-aef6-fbdacde577a4?api-version=2020-12-01", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "92ae6bb3f5a3c59fb9e246cebd40aa71", - "x-ms-request-id": "a5ca6e56-7215-4119-a311-95b912a4acfd" + "x-ms-client-request-id": "70458a44252d51278e66e5f0a97ff9fe", + "x-ms-request-id": "aa45fa30-29c3-4440-8175-dd94c13b03cb" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow6608", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/dataflows/DataFlow6608", "recordId": 0, "state": "Deleting", "created": "0001-01-01T00:00:00", "changed": "0001-01-01T00:00:00", "type": "DataFlow", "name": "DataFlow6608", - "operationId": "2453c40b-c781-4912-a1a5-e166d72f974c" + "operationId": "0c3b198f-7cdf-4603-aef6-fbdacde577a4" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/2453c40b-c781-4912-a1a5-e166d72f974c?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/0c3b198f-7cdf-4603-aef6-fbdacde577a4?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "3d3cb9ed66d08a5a87d29eb2d0705ba7", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:27:56 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/2453c40b-c781-4912-a1a5-e166d72f974c?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "3d3cb9ed66d08a5a87d29eb2d0705ba7", - "x-ms-request-id": "9586c86f-dec0-4e17-a6f9-18e6fc938148" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/2453c40b-c781-4912-a1a5-e166d72f974c?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "289ed6fc064db671c98146776d19e7b6", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "92ae6bb3f5a3c59fb9e246cebd40aa71", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -1634,45 +390,42 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:27:58 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/2453c40b-c781-4912-a1a5-e166d72f974c?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:10:25 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/0c3b198f-7cdf-4603-aef6-fbdacde577a4?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "289ed6fc064db671c98146776d19e7b6", - "x-ms-request-id": "b32b6bf3-5830-4003-8f80-9f0dcc45556a" + "x-ms-client-request-id": "92ae6bb3f5a3c59fb9e246cebd40aa71", + "x-ms-request-id": "f2ddc696-a730-48ca-a88f-0231e9831b62" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/2453c40b-c781-4912-a1a5-e166d72f974c?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/0c3b198f-7cdf-4603-aef6-fbdacde577a4?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "03e0603b6c031ea127cfe9e75ff05cdb", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "715a8285fdba2da24c2c8885dd02a7e6", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Content-Length": "0", - "Date": "Wed, 20 Jan 2021 21:27:59 GMT", + "Date": "Thu, 30 Sep 2021 06:10:26 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "03e0603b6c031ea127cfe9e75ff05cdb", - "x-ms-request-id": "caa8cf19-4369-4535-b309-9019034a7af4" + "x-ms-client-request-id": "715a8285fdba2da24c2c8885dd02a7e6", + "x-ms-request-id": "f682cd62-e416-4c5d-929d-236abc49c02e" }, "ResponseBody": [] } ], "Variables": { - "AZURE_SYNAPSE_WORKSPACE_URL": "https://workspacechhamosynapse.dev.azuresynapse.net", + "AZURE_SYNAPSE_WORKSPACE_URL": "https://testsynapseworkspace.dev.azuresynapse.net", "RandomSeed": "574581133" } } \ No newline at end of file diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DataFlowClientLiveTests/RenameDataFlow.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DataFlowClientLiveTests/RenameDataFlow.json index 3055efaaaf33..06557fc3bb4c 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DataFlowClientLiveTests/RenameDataFlow.json +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DataFlowClientLiveTests/RenameDataFlow.json @@ -1,18 +1,15 @@ { "Entries": [ { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/dataflows/DataFlow6484?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/dataflows/DataFlow6484?api-version=2020-12-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "28", "Content-Type": "application/json", - "traceparent": "00-bc626e7032e3584a8a10fcd359507ea5-5745711835198d46-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "traceparent": "00-6a5fd7e920e27e428414842342754281-7716621dc158ab4c-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "055913586e1edb32edd5a29105deb54b", "x-ms-return-client-request-id": "true" }, @@ -31,37 +28,34 @@ "Location", "Retry-After" ], - "Content-Length": "441", + "Content-Length": "425", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:27:12 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/3bd7af06-488a-491c-ba0d-5df2ab84868c?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:09:48 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/0f6e9c4e-c1f8-4881-bb54-55d95823a250?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "055913586e1edb32edd5a29105deb54b", - "x-ms-request-id": "74603dee-ca7e-4b78-89e9-bee4842f81e2" + "x-ms-request-id": "db3d19eb-7770-48ec-b59f-f16bd8f6be80" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow6484", - "recordId": 983929, + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/dataflows/DataFlow6484", + "recordId": 2424177, "state": "Creating", - "created": "2021-01-20T21:27:13.0466667Z", - "changed": "2021-01-20T21:27:13.0466667Z", + "created": "2021-09-30T06:09:49.32Z", + "changed": "2021-09-30T06:09:49.32Z", "type": "DataFlow", "name": "DataFlow6484", - "operationId": "3bd7af06-488a-491c-ba0d-5df2ab84868c", - "artifactId": "9D89AC8A-F3DC-45E2-9B98-3C189A5ADCBD" + "operationId": "0f6e9c4e-c1f8-4881-bb54-55d95823a250", + "artifactId": "ECB123D3-6B87-49F0-A24D-BF110207AFA6" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/3bd7af06-488a-491c-ba0d-5df2ab84868c?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/0f6e9c4e-c1f8-4881-bb54-55d95823a250?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "87d5a3adea936b1968a3c3445c7e087d", "x-ms-return-client-request-id": "true" }, @@ -78,27 +72,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:27:12 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/3bd7af06-488a-491c-ba0d-5df2ab84868c?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:09:48 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/0f6e9c4e-c1f8-4881-bb54-55d95823a250?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "87d5a3adea936b1968a3c3445c7e087d", - "x-ms-request-id": "b226e8ac-3f94-41a0-8bb5-004dc9ecffa3" + "x-ms-request-id": "7a7cccc0-ace5-4e88-8288-88b2eaa371ef" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/3bd7af06-488a-491c-ba0d-5df2ab84868c?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/0f6e9c4e-c1f8-4881-bb54-55d95823a250?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "75377664d79a66870b0023162d2fd9d7", "x-ms-return-client-request-id": "true" }, @@ -115,152 +106,69 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:27:14 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/3bd7af06-488a-491c-ba0d-5df2ab84868c?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:09:50 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/0f6e9c4e-c1f8-4881-bb54-55d95823a250?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "75377664d79a66870b0023162d2fd9d7", - "x-ms-request-id": "04b13a92-da0f-4014-87a9-deed591c2f77" + "x-ms-request-id": "99cdf383-24fb-4777-aa86-e144c54ee8bf" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/3bd7af06-488a-491c-ba0d-5df2ab84868c?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/0f6e9c4e-c1f8-4881-bb54-55d95823a250?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "61e4e57e2e0993b7f06bfacf2dc2fc64", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:27:15 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/3bd7af06-488a-491c-ba0d-5df2ab84868c?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "61e4e57e2e0993b7f06bfacf2dc2fc64", - "x-ms-request-id": "553fcb93-8aa3-403b-94c8-84ccc9eb44b1" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/3bd7af06-488a-491c-ba0d-5df2ab84868c?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "8b9dc4ffe1ded6211c6e7b93c7033e38", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:27:16 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/3bd7af06-488a-491c-ba0d-5df2ab84868c?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "8b9dc4ffe1ded6211c6e7b93c7033e38", - "x-ms-request-id": "604ce23c-b9d7-4aa5-b993-4d2747adfdb8" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/3bd7af06-488a-491c-ba0d-5df2ab84868c?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "76c6ebcaa69a3673bea3852fddb73948", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "320", + "Content-Length": "313", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:27:17 GMT", + "Date": "Thu, 30 Sep 2021 06:09:51 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "76c6ebcaa69a3673bea3852fddb73948", - "x-ms-correlation-request-id": "7e949d16-948d-4011-8b92-b717053b4091", - "x-ms-request-id": "3202a4bd-c19c-43bf-84df-334bdcbd551e", + "x-ms-client-request-id": "61e4e57e2e0993b7f06bfacf2dc2fc64", + "x-ms-correlation-request-id": "6c15ca6e-d0e3-46aa-9944-bbf3325d43a8", + "x-ms-request-id": "667a3b83-02d5-40bc-ba3c-c2e0edd25e87", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow6484", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/dataflows/DataFlow6484", "name": "DataFlow6484", "type": "Microsoft.Synapse/workspaces/dataflows", "properties": { "type": null }, - "etag": "4f007fea-0000-0800-0000-6008a0350000" + "etag": "2e00ff7e-0000-0100-0000-615554af0000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/dataflows/DataFlow6484/rename?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/dataflows/DataFlow6484/rename?api-version=2020-12-01", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "27", "Content-Type": "application/json", - "traceparent": "00-ced884af0aaab249a523bd33a36e24d0-9bd9bf7d12d7db46-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "926917bff94dc49d0e449bb323cced2d", + "traceparent": "00-4d70d714d677894eafdff84df09458bd-23dcde915980d146-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "de8b9dc421e11cd66e7b93c7033e38ca", "x-ms-return-client-request-id": "true" }, "RequestBody": { - "newName": "DataFlow23044" + "newName": "DataFlow23806" }, "StatusCode": 202, "ResponseHeaders": { @@ -272,38 +180,35 @@ "Location", "Retry-After" ], - "Content-Length": "436", + "Content-Length": "430", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:27:17 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dea2aa55-ce83-4d00-a5dc-1f7676e5fb7a?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:09:51 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e8f0f402-6cf0-48b7-a34a-5c369e6cede6?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "926917bff94dc49d0e449bb323cced2d", - "x-ms-request-id": "350c3acd-c73c-4e65-922a-1c8891dceece" + "x-ms-client-request-id": "de8b9dc421e11cd66e7b93c7033e38ca", + "x-ms-request-id": "f06a9569-5ee2-42a2-8871-152424a3a3c5" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow6484", - "recordId": 983929, + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/dataflows/DataFlow6484", + "recordId": 2424177, "state": "Renaming", - "created": "2021-01-20T21:27:13.0466667Z", - "changed": "2021-01-20T21:27:17.11Z", + "created": "2021-09-30T06:09:49.32Z", + "changed": "2021-09-30T06:09:51.1766667Z", "type": "DataFlow", "name": "DataFlow6484", - "operationId": "dea2aa55-ce83-4d00-a5dc-1f7676e5fb7a", - "artifactId": "9D89AC8A-F3DC-45E2-9B98-3C189A5ADCBD" + "operationId": "e8f0f402-6cf0-48b7-a34a-5c369e6cede6", + "artifactId": "ECB123D3-6B87-49F0-A24D-BF110207AFA6" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dea2aa55-ce83-4d00-a5dc-1f7676e5fb7a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e8f0f402-6cf0-48b7-a34a-5c369e6cede6?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "ec089032a6d4f27c28b28c62d8829ad7", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "926917bff94dc49d0e449bb323cced2d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -319,28 +224,25 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:27:17 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dea2aa55-ce83-4d00-a5dc-1f7676e5fb7a?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:09:51 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e8f0f402-6cf0-48b7-a34a-5c369e6cede6?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "ec089032a6d4f27c28b28c62d8829ad7", - "x-ms-request-id": "143fd177-74ae-40f4-af82-53efade9103e" + "x-ms-client-request-id": "926917bff94dc49d0e449bb323cced2d", + "x-ms-request-id": "11888aad-5b25-4b04-a2e5-bd20f316b0d6" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dea2aa55-ce83-4d00-a5dc-1f7676e5fb7a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e8f0f402-6cf0-48b7-a34a-5c369e6cede6?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "b21b02974bf7f57dbe182a7fbe41d215", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "fc4105c1c986505867cd3a5cf1f86435", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -356,28 +258,25 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:27:19 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dea2aa55-ce83-4d00-a5dc-1f7676e5fb7a?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:09:52 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e8f0f402-6cf0-48b7-a34a-5c369e6cede6?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "b21b02974bf7f57dbe182a7fbe41d215", - "x-ms-request-id": "eae46668-b8f8-47ed-98bd-ba737109509a" + "x-ms-client-request-id": "fc4105c1c986505867cd3a5cf1f86435", + "x-ms-request-id": "35c3fd67-d634-4525-9400-24deefcec838" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dea2aa55-ce83-4d00-a5dc-1f7676e5fb7a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e8f0f402-6cf0-48b7-a34a-5c369e6cede6?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "938066df01c31b58884fd3d43cf678e4", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "ec089032a6d4f27c28b28c62d8829ad7", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -393,28 +292,25 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:27:20 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dea2aa55-ce83-4d00-a5dc-1f7676e5fb7a?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:09:53 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e8f0f402-6cf0-48b7-a34a-5c369e6cede6?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "938066df01c31b58884fd3d43cf678e4", - "x-ms-request-id": "629aea74-c023-4a75-8662-0b6065e483fc" + "x-ms-client-request-id": "ec089032a6d4f27c28b28c62d8829ad7", + "x-ms-request-id": "08fbc189-dd33-49e8-8624-c50e6ca10a71" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dea2aa55-ce83-4d00-a5dc-1f7676e5fb7a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e8f0f402-6cf0-48b7-a34a-5c369e6cede6?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "efc46232b2dde63d13122dbc7bfd33e7", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "b21b02974bf7f57dbe182a7fbe41d215", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -430,28 +326,25 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:27:21 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dea2aa55-ce83-4d00-a5dc-1f7676e5fb7a?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:09:54 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e8f0f402-6cf0-48b7-a34a-5c369e6cede6?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "efc46232b2dde63d13122dbc7bfd33e7", - "x-ms-request-id": "50e95ffd-c0be-411c-827d-79c27b7b5c15" + "x-ms-client-request-id": "b21b02974bf7f57dbe182a7fbe41d215", + "x-ms-request-id": "f1fb7fad-aa8a-4acf-80fc-1398b1ae32d0" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dea2aa55-ce83-4d00-a5dc-1f7676e5fb7a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e8f0f402-6cf0-48b7-a34a-5c369e6cede6?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "728277df07029613aaff2aa878a9b9c8", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "938066df01c31b58884fd3d43cf678e4", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -467,28 +360,25 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:27:22 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dea2aa55-ce83-4d00-a5dc-1f7676e5fb7a?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:09:56 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e8f0f402-6cf0-48b7-a34a-5c369e6cede6?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "728277df07029613aaff2aa878a9b9c8", - "x-ms-request-id": "161fd314-b15a-4913-b938-c2d372c67370" + "x-ms-client-request-id": "938066df01c31b58884fd3d43cf678e4", + "x-ms-request-id": "e82021f4-08ee-43c8-b203-12555dcbc1fe" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dea2aa55-ce83-4d00-a5dc-1f7676e5fb7a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e8f0f402-6cf0-48b7-a34a-5c369e6cede6?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "5b4d45a0e37c2d3728997fb1d39b9f8b", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "efc46232b2dde63d13122dbc7bfd33e7", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -504,28 +394,25 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:27:23 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dea2aa55-ce83-4d00-a5dc-1f7676e5fb7a?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:09:57 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e8f0f402-6cf0-48b7-a34a-5c369e6cede6?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "5b4d45a0e37c2d3728997fb1d39b9f8b", - "x-ms-request-id": "6a8eb027-40ef-4e7c-b1cd-68e0e21eb8f7" + "x-ms-client-request-id": "efc46232b2dde63d13122dbc7bfd33e7", + "x-ms-request-id": "0b82ed2d-5af5-4198-bce6-a4a0365977e7" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dea2aa55-ce83-4d00-a5dc-1f7676e5fb7a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e8f0f402-6cf0-48b7-a34a-5c369e6cede6?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "c4f4ec1b05732be24f2e45de87956e6a", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "728277df07029613aaff2aa878a9b9c8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -541,28 +428,25 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:27:24 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dea2aa55-ce83-4d00-a5dc-1f7676e5fb7a?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:09:58 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e8f0f402-6cf0-48b7-a34a-5c369e6cede6?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "c4f4ec1b05732be24f2e45de87956e6a", - "x-ms-request-id": "f7d0c33e-a5f9-43da-b378-e7c0e2d9f5bf" + "x-ms-client-request-id": "728277df07029613aaff2aa878a9b9c8", + "x-ms-request-id": "ee9aaa60-7909-4d43-819a-beb781b5e1de" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dea2aa55-ce83-4d00-a5dc-1f7676e5fb7a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e8f0f402-6cf0-48b7-a34a-5c369e6cede6?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "361b6559d7b0fc6a40544a698762c20e", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "5b4d45a0e37c2d3728997fb1d39b9f8b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -578,28 +462,25 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:27:26 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dea2aa55-ce83-4d00-a5dc-1f7676e5fb7a?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:09:59 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e8f0f402-6cf0-48b7-a34a-5c369e6cede6?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "361b6559d7b0fc6a40544a698762c20e", - "x-ms-request-id": "4b61827c-4859-4129-b1ac-9ef8fcd38306" + "x-ms-client-request-id": "5b4d45a0e37c2d3728997fb1d39b9f8b", + "x-ms-request-id": "00450a4a-0a6b-4757-8e62-56901b70eb68" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dea2aa55-ce83-4d00-a5dc-1f7676e5fb7a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e8f0f402-6cf0-48b7-a34a-5c369e6cede6?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "8b8c9f5ff4b49a5463220c4e9d59a592", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "c4f4ec1b05732be24f2e45de87956e6a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -615,98 +496,86 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:27:27 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dea2aa55-ce83-4d00-a5dc-1f7676e5fb7a?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:10:00 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e8f0f402-6cf0-48b7-a34a-5c369e6cede6?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "8b8c9f5ff4b49a5463220c4e9d59a592", - "x-ms-request-id": "6a466d36-11b1-424b-8cbd-e899c08caaab" + "x-ms-client-request-id": "c4f4ec1b05732be24f2e45de87956e6a", + "x-ms-request-id": "2ae7127a-e161-48ff-b4d7-307d94c5ac64" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dea2aa55-ce83-4d00-a5dc-1f7676e5fb7a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e8f0f402-6cf0-48b7-a34a-5c369e6cede6?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "6e58152a697f43db81f7841fbb79a3ec", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "361b6559d7b0fc6a40544a698762c20e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Content-Length": "0", - "Date": "Wed, 20 Jan 2021 21:27:28 GMT", + "Date": "Thu, 30 Sep 2021 06:10:01 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "6e58152a697f43db81f7841fbb79a3ec", - "x-ms-request-id": "6ab338f6-6ae6-4a89-9de0-c6328ee79669" + "x-ms-client-request-id": "361b6559d7b0fc6a40544a698762c20e", + "x-ms-request-id": "541aaaad-bb4b-4aae-bc01-6f3cdb478138" }, "ResponseBody": [] }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/dataflows/DataFlow23044?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/dataflows/DataFlow23806?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-537bdc3d4c4f604f9b76b88606f288b2-848c8737eaf67c43-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "e87e376be30964b51081d38dca1c5ee7", + "traceparent": "00-598c4724111cbd4da9e657ca1eadc667-850db7f4ac68d64c-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "8b8c9f5ff4b49a5463220c4e9d59a592", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "322", + "Content-Length": "315", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:27:28 GMT", + "Date": "Thu, 30 Sep 2021 06:10:01 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "e87e376be30964b51081d38dca1c5ee7", - "x-ms-correlation-request-id": "83a8d61c-a92b-4d5c-a232-445983149a58", - "x-ms-request-id": "b24dc187-ad63-49e6-a421-2d7ec5a35d76", + "x-ms-client-request-id": "8b8c9f5ff4b49a5463220c4e9d59a592", + "x-ms-correlation-request-id": "3404a2b1-7ddb-45de-adaf-65826c64ba76", + "x-ms-request-id": "0e408107-292c-409c-b7d1-10627114fd1d", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow23044", - "name": "DataFlow23044", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/dataflows/DataFlow23806", + "name": "DataFlow23806", "type": "Microsoft.Synapse/workspaces/dataflows", "properties": { "type": null }, - "etag": "4f000ff1-0000-0800-0000-6008a03e0000" + "etag": "2e00117f-0000-0100-0000-615554b70000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/dataflows/DataFlow23044?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/dataflows/DataFlow23806?api-version=2020-12-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-fad6d8dfd309954994594f563c93a07a-d37ebe52a7e1ef44-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "723eb7ae530af68ec3480abc6f34dfea", + "traceparent": "00-9d6c0f8661c5e249a83e69f0317f77b1-7fc5200f0d699b4f-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "6e58152a697f43db81f7841fbb79a3ec", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -714,35 +583,100 @@ "ResponseHeaders": { "Access-Control-Allow-Headers": "Location", "Access-Control-Expose-Headers": "Location", - "Content-Length": "368", + "Content-Length": "361", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:27:28 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/ac518be3-0034-40ee-aeb2-183433f210ca?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:10:01 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ced3ed20-c700-4b62-8192-d17ba56e0183?api-version=2020-12-01", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "723eb7ae530af68ec3480abc6f34dfea", - "x-ms-request-id": "4d287337-bf77-4b62-a6c4-38148b706aa3" + "x-ms-client-request-id": "6e58152a697f43db81f7841fbb79a3ec", + "x-ms-request-id": "de4f692b-f09e-4d8f-badf-57824625b4d6" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow23044", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/dataflows/DataFlow23806", "recordId": 0, "state": "Deleting", "created": "0001-01-01T00:00:00", "changed": "0001-01-01T00:00:00", "type": "DataFlow", - "name": "DataFlow23044", - "operationId": "ac518be3-0034-40ee-aeb2-183433f210ca" + "name": "DataFlow23806", + "operationId": "ced3ed20-c700-4b62-8192-d17ba56e0183" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/ac518be3-0034-40ee-aeb2-183433f210ca?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ced3ed20-c700-4b62-8192-d17ba56e0183?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "723eb7ae530af68ec3480abc6f34dfea", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 30 Sep 2021 06:10:01 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ced3ed20-c700-4b62-8192-d17ba56e0183?api-version=2020-12-01", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "723eb7ae530af68ec3480abc6f34dfea", + "x-ms-request-id": "3d6bc1c4-fce2-42b0-96f3-7971ee6b4676" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ced3ed20-c700-4b62-8192-d17ba56e0183?api-version=2020-12-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "66e21f7ebcda47895ff35dfe964d7865", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 30 Sep 2021 06:10:02 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ced3ed20-c700-4b62-8192-d17ba56e0183?api-version=2020-12-01", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "66e21f7ebcda47895ff35dfe964d7865", + "x-ms-request-id": "816ddb4c-d1d7-4476-9bc1-d282bdb72a79" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ced3ed20-c700-4b62-8192-d17ba56e0183?api-version=2020-12-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "04709c98303a18e2a88725c0d9f8f5db", "x-ms-return-client-request-id": "true" }, @@ -759,27 +693,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:27:28 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/ac518be3-0034-40ee-aeb2-183433f210ca?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:10:04 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ced3ed20-c700-4b62-8192-d17ba56e0183?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "04709c98303a18e2a88725c0d9f8f5db", - "x-ms-request-id": "bc706d00-9a20-47f9-934c-4f330e431812" + "x-ms-request-id": "17e901ac-1e22-46bc-87ee-9a85beadfcd3" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/ac518be3-0034-40ee-aeb2-183433f210ca?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ced3ed20-c700-4b62-8192-d17ba56e0183?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ab0fe8a1f83af20c2df71316f58f6076", "x-ms-return-client-request-id": "true" }, @@ -796,45 +727,76 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:27:29 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/ac518be3-0034-40ee-aeb2-183433f210ca?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:10:05 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ced3ed20-c700-4b62-8192-d17ba56e0183?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "ab0fe8a1f83af20c2df71316f58f6076", - "x-ms-request-id": "7c31c013-d29a-4386-ae75-489ca870d158" + "x-ms-request-id": "4559520a-c5c9-4f1d-8a1a-4ec3af300620" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/ac518be3-0034-40ee-aeb2-183433f210ca?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ced3ed20-c700-4b62-8192-d17ba56e0183?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "d224a5cfdac44eaf3dcabd5397c96d66", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 30 Sep 2021 06:10:06 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ced3ed20-c700-4b62-8192-d17ba56e0183?api-version=2020-12-01", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "d224a5cfdac44eaf3dcabd5397c96d66", + "x-ms-request-id": "ff8eddab-fa88-4708-b8a9-34ba8bb22eb9" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ced3ed20-c700-4b62-8192-d17ba56e0183?api-version=2020-12-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "ad5d81fecd3ea02a907ed6421ccc2219", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Content-Length": "0", - "Date": "Wed, 20 Jan 2021 21:27:30 GMT", + "Date": "Thu, 30 Sep 2021 06:10:07 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "d224a5cfdac44eaf3dcabd5397c96d66", - "x-ms-request-id": "aef3518b-5816-4878-9d9a-76c3c8e1fb5c" + "x-ms-client-request-id": "ad5d81fecd3ea02a907ed6421ccc2219", + "x-ms-request-id": "a9ba5d38-4090-4bb3-824c-88d3e6a4ecda" }, "ResponseBody": [] } ], "Variables": { - "AZURE_SYNAPSE_WORKSPACE_URL": "https://workspacechhamosynapse.dev.azuresynapse.net", + "AZURE_SYNAPSE_WORKSPACE_URL": "https://testsynapseworkspace.dev.azuresynapse.net", "RandomSeed": "36295653" } } \ No newline at end of file diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DataFlowClientLiveTests/RenameDataFlowAsync.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DataFlowClientLiveTests/RenameDataFlowAsync.json index 5dff55aa8d8b..f982d4b30d6a 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DataFlowClientLiveTests/RenameDataFlowAsync.json +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DataFlowClientLiveTests/RenameDataFlowAsync.json @@ -1,18 +1,15 @@ { "Entries": [ { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/dataflows/DataFlow1671?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/dataflows/DataFlow1671?api-version=2020-12-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "28", "Content-Type": "application/json", - "traceparent": "00-5ee84b4e44c1a04894750063d5d55ffe-87a2a4ef78780d4a-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "traceparent": "00-6f3bf96f5a93df48967af83458627f4d-a7abad852a975543-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "12361e26e8dacd462d47cb12660c05df", "x-ms-return-client-request-id": "true" }, @@ -31,37 +28,34 @@ "Location", "Retry-After" ], - "Content-Length": "441", + "Content-Length": "435", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:27:59 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/c199ced6-b52b-4733-a11b-8720e6aa2d78?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:10:26 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/285ba578-53dd-439e-ab74-f40050ac91f0?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "12361e26e8dacd462d47cb12660c05df", - "x-ms-request-id": "7905e325-45af-4076-8520-6d612b413395" + "x-ms-request-id": "a8062509-17d6-46c4-8f78-a808387883c6" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow1671", - "recordId": 983934, + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/dataflows/DataFlow1671", + "recordId": 2424184, "state": "Creating", - "created": "2021-01-20T21:27:59.6866667Z", - "changed": "2021-01-20T21:27:59.6866667Z", + "created": "2021-09-30T06:10:27.4833333Z", + "changed": "2021-09-30T06:10:27.4833333Z", "type": "DataFlow", "name": "DataFlow1671", - "operationId": "c199ced6-b52b-4733-a11b-8720e6aa2d78", - "artifactId": "9F43A027-A0DD-46A7-B4D9-430D7B5A5DEB" + "operationId": "285ba578-53dd-439e-ab74-f40050ac91f0", + "artifactId": "F5AC5BA9-8596-48D4-9232-DBE22681B727" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/c199ced6-b52b-4733-a11b-8720e6aa2d78?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/285ba578-53dd-439e-ab74-f40050ac91f0?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "68ec3b845ec0a8b0ab03db599436cd79", "x-ms-return-client-request-id": "true" }, @@ -78,152 +72,69 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:27:59 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/c199ced6-b52b-4733-a11b-8720e6aa2d78?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:10:26 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/285ba578-53dd-439e-ab74-f40050ac91f0?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "68ec3b845ec0a8b0ab03db599436cd79", - "x-ms-request-id": "1321277e-4619-4bff-92fd-717df1bcd44a" + "x-ms-request-id": "27f6f684-2205-43e7-aa22-ad2befe5b59b" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/c199ced6-b52b-4733-a11b-8720e6aa2d78?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/285ba578-53dd-439e-ab74-f40050ac91f0?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "bc5ed611e01bd011196cdc418368b503", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:28:00 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/c199ced6-b52b-4733-a11b-8720e6aa2d78?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "bc5ed611e01bd011196cdc418368b503", - "x-ms-request-id": "907d48d0-9b3c-4e65-96cc-f825491263a7" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/c199ced6-b52b-4733-a11b-8720e6aa2d78?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "2b8d683d9d1f091f223669747aac35fe", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:28:02 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/c199ced6-b52b-4733-a11b-8720e6aa2d78?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "2b8d683d9d1f091f223669747aac35fe", - "x-ms-request-id": "cf3cd635-fab5-43e2-b3e6-0142dca0ab22" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/c199ced6-b52b-4733-a11b-8720e6aa2d78?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "41cbebca4dcaa3472a1b4f53816f2542", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "320", + "Content-Length": "313", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:28:03 GMT", + "Date": "Thu, 30 Sep 2021 06:10:27 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "41cbebca4dcaa3472a1b4f53816f2542", - "x-ms-correlation-request-id": "f2bb3aff-daea-4f1d-855f-59d63751c07a", - "x-ms-request-id": "2470ad4a-99a8-4434-986e-383922690b94", + "x-ms-client-request-id": "bc5ed611e01bd011196cdc418368b503", + "x-ms-correlation-request-id": "a9e18919-8d39-4f42-9568-a5f2dcd1b2d1", + "x-ms-request-id": "7ae39a6f-4478-45c8-8281-827add2ebdc6", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow1671", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/dataflows/DataFlow1671", "name": "DataFlow1671", "type": "Microsoft.Synapse/workspaces/dataflows", "properties": { "type": null }, - "etag": "50006a0a-0000-0800-0000-6008a0620000" + "etag": "2e003c7f-0000-0100-0000-615554d40000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/dataflows/DataFlow1671/rename?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/dataflows/DataFlow1671/rename?api-version=2020-12-01", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "27", "Content-Type": "application/json", - "traceparent": "00-e52ff3246f73244fa7d3d29b5f6202b8-72cf542bf6c8854b-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "a82b1cd759a2b774559ae4769c566d37", + "traceparent": "00-3b200bdec165f84490f1c88b88064953-a66ddcf9b9dd1746-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "1f2b8d681f9d22093669747aac35feca", "x-ms-return-client-request-id": "true" }, "RequestBody": { - "newName": "DataFlow21398" + "newName": "DataFlow23240" }, "StatusCode": 202, "ResponseHeaders": { @@ -235,186 +146,35 @@ "Location", "Retry-After" ], - "Content-Length": "441", + "Content-Length": "435", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:28:03 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/acdbce82-4ceb-46fe-af22-4c01fa87a895?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:10:28 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/253fe927-a5fc-4702-b628-768d5d8175f2?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "a82b1cd759a2b774559ae4769c566d37", - "x-ms-request-id": "5beed0b7-6e9e-49c0-9327-5b930672e9b9" + "x-ms-client-request-id": "1f2b8d681f9d22093669747aac35feca", + "x-ms-request-id": "3ac5184f-9c25-4827-b7c7-ad2e3a6a482a" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow1671", - "recordId": 983934, + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/dataflows/DataFlow1671", + "recordId": 2424184, "state": "Renaming", - "created": "2021-01-20T21:27:59.6866667Z", - "changed": "2021-01-20T21:28:02.9166667Z", + "created": "2021-09-30T06:10:27.4833333Z", + "changed": "2021-09-30T06:10:28.4433333Z", "type": "DataFlow", "name": "DataFlow1671", - "operationId": "acdbce82-4ceb-46fe-af22-4c01fa87a895", - "artifactId": "9F43A027-A0DD-46A7-B4D9-430D7B5A5DEB" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/acdbce82-4ceb-46fe-af22-4c01fa87a895?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "90a2262755099128578a75b2622d8dc5", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:28:03 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/acdbce82-4ceb-46fe-af22-4c01fa87a895?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "90a2262755099128578a75b2622d8dc5", - "x-ms-request-id": "3d919f2d-8b6d-48d7-85c1-e440e6c33209" - }, - "ResponseBody": { - "status": "InProgress" + "operationId": "253fe927-a5fc-4702-b628-768d5d8175f2", + "artifactId": "F5AC5BA9-8596-48D4-9232-DBE22681B727" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/acdbce82-4ceb-46fe-af22-4c01fa87a895?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/253fe927-a5fc-4702-b628-768d5d8175f2?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "f8a31ce2a58d9eda2c0abea15625eccd", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:28:04 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/acdbce82-4ceb-46fe-af22-4c01fa87a895?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "f8a31ce2a58d9eda2c0abea15625eccd", - "x-ms-request-id": "caaf6ba5-21fc-4699-a65d-132fae438707" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/acdbce82-4ceb-46fe-af22-4c01fa87a895?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "754fd3e7dcb3882d4e0545e9c33dbfbc", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:28:05 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/acdbce82-4ceb-46fe-af22-4c01fa87a895?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "754fd3e7dcb3882d4e0545e9c33dbfbc", - "x-ms-request-id": "f8457ba3-8722-4fae-8c2a-8f340f88db2e" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/acdbce82-4ceb-46fe-af22-4c01fa87a895?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "ae6c3e73bae481834c0364fe97863b31", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:28:06 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/acdbce82-4ceb-46fe-af22-4c01fa87a895?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "ae6c3e73bae481834c0364fe97863b31", - "x-ms-request-id": "7ac552d8-1b2c-402b-b6c4-0c7ffbfa3e94" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/acdbce82-4ceb-46fe-af22-4c01fa87a895?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "8fcaa79e17dd0512ee1aaa8760f1dbee", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "a82b1cd759a2b774559ae4769c566d37", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -430,28 +190,25 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:28:07 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/acdbce82-4ceb-46fe-af22-4c01fa87a895?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:10:28 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/253fe927-a5fc-4702-b628-768d5d8175f2?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "8fcaa79e17dd0512ee1aaa8760f1dbee", - "x-ms-request-id": "eb91b462-e0b7-4d93-9e1c-88b9e26b36b5" + "x-ms-client-request-id": "a82b1cd759a2b774559ae4769c566d37", + "x-ms-request-id": "ee1572cb-1d4e-4078-ab4a-7678c777935d" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/acdbce82-4ceb-46fe-af22-4c01fa87a895?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/253fe927-a5fc-4702-b628-768d5d8175f2?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "172d014b3db92de84fcd29af782ef1c7", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "9d9776de387321efe901034ecb87b211", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -467,28 +224,25 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:28:08 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/acdbce82-4ceb-46fe-af22-4c01fa87a895?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:10:30 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/253fe927-a5fc-4702-b628-768d5d8175f2?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "172d014b3db92de84fcd29af782ef1c7", - "x-ms-request-id": "da5490be-d378-4f73-8c2a-951d8691609e" + "x-ms-client-request-id": "9d9776de387321efe901034ecb87b211", + "x-ms-request-id": "1f68a776-7fcb-4ca2-b213-873921ea38f3" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/acdbce82-4ceb-46fe-af22-4c01fa87a895?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/253fe927-a5fc-4702-b628-768d5d8175f2?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "1c4a13ca2f735cdf2b66c0ca0ffc215b", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "90a2262755099128578a75b2622d8dc5", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -504,28 +258,25 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:28:10 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/acdbce82-4ceb-46fe-af22-4c01fa87a895?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:10:31 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/253fe927-a5fc-4702-b628-768d5d8175f2?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "1c4a13ca2f735cdf2b66c0ca0ffc215b", - "x-ms-request-id": "9cfce4c4-7d05-44f5-ad36-9f3c7b049283" + "x-ms-client-request-id": "90a2262755099128578a75b2622d8dc5", + "x-ms-request-id": "605d1101-97da-4063-a3ee-bfaf4807cf5e" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/acdbce82-4ceb-46fe-af22-4c01fa87a895?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/253fe927-a5fc-4702-b628-768d5d8175f2?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "95b3752823596178be9c3f0fee628cbf", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "f8a31ce2a58d9eda2c0abea15625eccd", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -541,28 +292,25 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:28:11 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/acdbce82-4ceb-46fe-af22-4c01fa87a895?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:10:32 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/253fe927-a5fc-4702-b628-768d5d8175f2?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "95b3752823596178be9c3f0fee628cbf", - "x-ms-request-id": "c06885a5-85b8-402e-a888-e9aac4624932" + "x-ms-client-request-id": "f8a31ce2a58d9eda2c0abea15625eccd", + "x-ms-request-id": "aff0ee4d-bce3-4ecd-be8f-495fdecb8b23" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/acdbce82-4ceb-46fe-af22-4c01fa87a895?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/253fe927-a5fc-4702-b628-768d5d8175f2?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "4cbde329bea61b7b22d1eb537d1e1d53", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "754fd3e7dcb3882d4e0545e9c33dbfbc", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -578,28 +326,25 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:28:12 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/acdbce82-4ceb-46fe-af22-4c01fa87a895?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:10:33 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/253fe927-a5fc-4702-b628-768d5d8175f2?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "4cbde329bea61b7b22d1eb537d1e1d53", - "x-ms-request-id": "f917a9b9-683d-4f39-a6e6-988fdbda5961" + "x-ms-client-request-id": "754fd3e7dcb3882d4e0545e9c33dbfbc", + "x-ms-request-id": "f394cedf-78a3-4804-b008-fd6fd7b9432a" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/acdbce82-4ceb-46fe-af22-4c01fa87a895?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/253fe927-a5fc-4702-b628-768d5d8175f2?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "0386cdac5b7ba66d9be95dd6f0cf6dc9", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "ae6c3e73bae481834c0364fe97863b31", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -615,28 +360,25 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:28:13 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/acdbce82-4ceb-46fe-af22-4c01fa87a895?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:10:34 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/253fe927-a5fc-4702-b628-768d5d8175f2?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "0386cdac5b7ba66d9be95dd6f0cf6dc9", - "x-ms-request-id": "d075e93b-d50a-402b-a288-5f1da9c01ae6" + "x-ms-client-request-id": "ae6c3e73bae481834c0364fe97863b31", + "x-ms-request-id": "a7247024-984e-49ed-a1f6-57d92996947c" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/acdbce82-4ceb-46fe-af22-4c01fa87a895?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/253fe927-a5fc-4702-b628-768d5d8175f2?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "2ca000d9d43e69b5fa9772873724e3a0", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "8fcaa79e17dd0512ee1aaa8760f1dbee", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -652,28 +394,25 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:28:14 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/acdbce82-4ceb-46fe-af22-4c01fa87a895?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:10:35 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/253fe927-a5fc-4702-b628-768d5d8175f2?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "2ca000d9d43e69b5fa9772873724e3a0", - "x-ms-request-id": "06de15fe-e294-4504-8af5-f055410227fe" + "x-ms-client-request-id": "8fcaa79e17dd0512ee1aaa8760f1dbee", + "x-ms-request-id": "45558c3b-eb76-4c1b-9661-117321ec3c83" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/acdbce82-4ceb-46fe-af22-4c01fa87a895?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/253fe927-a5fc-4702-b628-768d5d8175f2?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "2062ec7f89dbcd447517b1bc61a52b52", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "172d014b3db92de84fcd29af782ef1c7", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -689,98 +428,86 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:28:15 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/acdbce82-4ceb-46fe-af22-4c01fa87a895?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:10:36 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/253fe927-a5fc-4702-b628-768d5d8175f2?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "2062ec7f89dbcd447517b1bc61a52b52", - "x-ms-request-id": "d98348de-799f-455b-b73d-dcd89075de99" + "x-ms-client-request-id": "172d014b3db92de84fcd29af782ef1c7", + "x-ms-request-id": "3bd3f544-7094-4053-af3f-41f87c86c83b" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/acdbce82-4ceb-46fe-af22-4c01fa87a895?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/253fe927-a5fc-4702-b628-768d5d8175f2?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "7c792264f07dd814181c08e3e9e56e76", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "1c4a13ca2f735cdf2b66c0ca0ffc215b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Content-Length": "0", - "Date": "Wed, 20 Jan 2021 21:28:16 GMT", + "Date": "Thu, 30 Sep 2021 06:10:37 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "7c792264f07dd814181c08e3e9e56e76", - "x-ms-request-id": "a1771379-f352-4cd1-ab7f-9c067e098d7f" + "x-ms-client-request-id": "1c4a13ca2f735cdf2b66c0ca0ffc215b", + "x-ms-request-id": "50c919f7-fc27-4504-8175-ce98f4d57456" }, "ResponseBody": [] }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/dataflows/DataFlow21398?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/dataflows/DataFlow23240?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-e95e6b5513b4fa4fad628a5915abc99d-b91693d20fe7e643-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "0357bd054c6c50edbbd3b72623f80855", + "traceparent": "00-08ffcf44e016cc429a84d2a86f3779b9-ca02ff287d7fea4f-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "95b3752823596178be9c3f0fee628cbf", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "322", + "Content-Length": "315", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:28:16 GMT", + "Date": "Thu, 30 Sep 2021 06:10:37 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "0357bd054c6c50edbbd3b72623f80855", - "x-ms-correlation-request-id": "1eeb2acf-8c7d-4d50-856d-facbad96dd12", - "x-ms-request-id": "a42ed1bd-d45a-48a8-a13e-9aab41f314ef", + "x-ms-client-request-id": "95b3752823596178be9c3f0fee628cbf", + "x-ms-correlation-request-id": "70dcf6a3-caa0-4955-9767-d4f27c455943", + "x-ms-request-id": "c8fbcf6e-e480-4831-bc09-be8467498f30", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow21398", - "name": "DataFlow21398", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/dataflows/DataFlow23240", + "name": "DataFlow23240", "type": "Microsoft.Synapse/workspaces/dataflows", "properties": { "type": null }, - "etag": "50004211-0000-0800-0000-6008a06d0000" + "etag": "2e00457f-0000-0100-0000-615554db0000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/dataflows/DataFlow21398?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/dataflows/DataFlow23240?api-version=2020-12-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-6782c5bc20105f438060b3f62f5147c4-89536b87c71a504e-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "15231f6c67ab8e22d78a07be8060e48f", + "traceparent": "00-da7fa5fd9c1a0343a645b44f919944b4-d0694c7baf62364a-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "4cbde329bea61b7b22d1eb537d1e1d53", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -788,36 +515,33 @@ "ResponseHeaders": { "Access-Control-Allow-Headers": "Location", "Access-Control-Expose-Headers": "Location", - "Content-Length": "368", + "Content-Length": "361", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:28:16 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/1f20d022-ece3-4157-a710-3d067e63b885?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:10:37 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/fd4ea946-41ce-4eeb-a288-36b4f7f24231?api-version=2020-12-01", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "15231f6c67ab8e22d78a07be8060e48f", - "x-ms-request-id": "6eab8d33-21e3-400b-bd2f-11594f2e9411" + "x-ms-client-request-id": "4cbde329bea61b7b22d1eb537d1e1d53", + "x-ms-request-id": "a458bdaa-349e-4fc3-81c1-0ac880c3fb5c" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow21398", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/dataflows/DataFlow23240", "recordId": 0, "state": "Deleting", "created": "0001-01-01T00:00:00", "changed": "0001-01-01T00:00:00", "type": "DataFlow", - "name": "DataFlow21398", - "operationId": "1f20d022-ece3-4157-a710-3d067e63b885" + "name": "DataFlow23240", + "operationId": "fd4ea946-41ce-4eeb-a288-36b4f7f24231" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/1f20d022-ece3-4157-a710-3d067e63b885?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/fd4ea946-41ce-4eeb-a288-36b4f7f24231?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "c976b31458c29eca9ac82ce1452ecf5b", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "2ca000d9d43e69b5fa9772873724e3a0", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -833,28 +557,25 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:28:16 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/1f20d022-ece3-4157-a710-3d067e63b885?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:10:37 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/fd4ea946-41ce-4eeb-a288-36b4f7f24231?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "c976b31458c29eca9ac82ce1452ecf5b", - "x-ms-request-id": "03bd65fa-dca3-49a7-ab34-cd6a5b22e4c1" + "x-ms-client-request-id": "2ca000d9d43e69b5fa9772873724e3a0", + "x-ms-request-id": "e6ca47b9-7ef7-4059-ac3e-570ecd90c5ac" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/1f20d022-ece3-4157-a710-3d067e63b885?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/fd4ea946-41ce-4eeb-a288-36b4f7f24231?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "e87d28ee63424507390ce082a67754e9", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "2062ec7f89dbcd447517b1bc61a52b52", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -870,28 +591,25 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:28:18 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/1f20d022-ece3-4157-a710-3d067e63b885?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:10:39 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/fd4ea946-41ce-4eeb-a288-36b4f7f24231?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "e87d28ee63424507390ce082a67754e9", - "x-ms-request-id": "5fc35638-cc4b-4637-af1f-b176f87b14a1" + "x-ms-client-request-id": "2062ec7f89dbcd447517b1bc61a52b52", + "x-ms-request-id": "8f1edef3-bb36-4ed9-8853-c0a896e5ab49" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/1f20d022-ece3-4157-a710-3d067e63b885?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/fd4ea946-41ce-4eeb-a288-36b4f7f24231?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "cdaae7d51ae950cd70170985fa04d206", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "7c792264f07dd814181c08e3e9e56e76", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -907,28 +625,25 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:28:19 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/1f20d022-ece3-4157-a710-3d067e63b885?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:10:40 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/fd4ea946-41ce-4eeb-a288-36b4f7f24231?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "cdaae7d51ae950cd70170985fa04d206", - "x-ms-request-id": "8011bd44-42d0-4f11-8d4e-33dc1d2416b1" + "x-ms-client-request-id": "7c792264f07dd814181c08e3e9e56e76", + "x-ms-request-id": "e8ddd47e-7781-48ed-964d-891a90f01397" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/1f20d022-ece3-4157-a710-3d067e63b885?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/fd4ea946-41ce-4eeb-a288-36b4f7f24231?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "11bb6559cc70b0ddac318fb57848f822", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "0357bd054c6c50edbbd3b72623f80855", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -944,28 +659,25 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:28:20 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/1f20d022-ece3-4157-a710-3d067e63b885?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:10:41 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/fd4ea946-41ce-4eeb-a288-36b4f7f24231?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "11bb6559cc70b0ddac318fb57848f822", - "x-ms-request-id": "6b0be9b0-9662-48bb-8e95-a7446e112d8e" + "x-ms-client-request-id": "0357bd054c6c50edbbd3b72623f80855", + "x-ms-request-id": "cb25f863-e9c8-41e0-9594-88ba24bc0233" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/1f20d022-ece3-4157-a710-3d067e63b885?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/fd4ea946-41ce-4eeb-a288-36b4f7f24231?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "5d0c43740284d3715b2d782a5a814a35", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "15231f6c67ab8e22d78a07be8060e48f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -981,45 +693,42 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:28:22 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/1f20d022-ece3-4157-a710-3d067e63b885?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:10:42 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/fd4ea946-41ce-4eeb-a288-36b4f7f24231?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "5d0c43740284d3715b2d782a5a814a35", - "x-ms-request-id": "4f72a80b-947f-46d7-871e-4a8db84ac65e" + "x-ms-client-request-id": "15231f6c67ab8e22d78a07be8060e48f", + "x-ms-request-id": "5338f28c-fd8a-4398-a440-26008e8d44da" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/1f20d022-ece3-4157-a710-3d067e63b885?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/fd4ea946-41ce-4eeb-a288-36b4f7f24231?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "4029d93a43bc08780af920b88b17d727", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "a4b63aa9274e17e63528c0aa39eeb51f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Content-Length": "0", - "Date": "Wed, 20 Jan 2021 21:28:23 GMT", + "Date": "Thu, 30 Sep 2021 06:10:43 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "4029d93a43bc08780af920b88b17d727", - "x-ms-request-id": "bc360b8d-df9b-47d9-9eba-09e40dfdf423" + "x-ms-client-request-id": "a4b63aa9274e17e63528c0aa39eeb51f", + "x-ms-request-id": "5c72aafc-0147-47df-9cda-c67c30096068" }, "ResponseBody": [] } ], "Variables": { - "AZURE_SYNAPSE_WORKSPACE_URL": "https://workspacechhamosynapse.dev.azuresynapse.net", + "AZURE_SYNAPSE_WORKSPACE_URL": "https://testsynapseworkspace.dev.azuresynapse.net", "RandomSeed": "1176986740" } } \ No newline at end of file diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DataFlowDebugSessionClientLiveTests/QuerySessions.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DataFlowDebugSessionClientLiveTests/QuerySessions.json index 15b0935156d9..cb160a919fa7 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DataFlowDebugSessionClientLiveTests/QuerySessions.json +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DataFlowDebugSessionClientLiveTests/QuerySessions.json @@ -1,18 +1,15 @@ { "Entries": [ { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/dataflows/DataFlow5386?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/dataflows/DataFlow5386?api-version=2020-12-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "28", "Content-Type": "application/json", - "traceparent": "00-346e9932a511fc468d230425e037b91c-5e5916ba2311e746-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "traceparent": "00-ac311dfaad976848bebdc10563056e2e-19bb42afb981494a-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "19bf60b24f07dd9d0c7f86b228ab7368", "x-ms-return-client-request-id": "true" }, @@ -31,37 +28,34 @@ "Location", "Retry-After" ], - "Content-Length": "441", + "Content-Length": "435", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:28:25 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/608bbf9f-31a2-4617-bd25-722bbc319c61?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:10:43 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a8647f9a-2dc4-48de-9795-26f02eda3216?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "19bf60b24f07dd9d0c7f86b228ab7368", - "x-ms-request-id": "0de016be-99f2-4355-a792-fa6456a2e918" + "x-ms-request-id": "fe828146-4137-4212-9f4b-18c955cbb805" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow5386", - "recordId": 983936, - "state": "Creating", - "created": "2021-01-20T21:28:25.0733333Z", - "changed": "2021-01-20T21:28:25.0733333Z", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/dataflows/DataFlow5386", + "recordId": 2423968, + "state": "Updating", + "created": "2021-09-30T05:21:46.5466667Z", + "changed": "2021-09-30T05:21:49.5266667Z", "type": "DataFlow", "name": "DataFlow5386", - "operationId": "608bbf9f-31a2-4617-bd25-722bbc319c61", - "artifactId": "4D90F93C-B06B-43C3-9A0A-F2A333B5B58E" + "operationId": "a8647f9a-2dc4-48de-9795-26f02eda3216", + "artifactId": "9B1CEDDA-4AAB-4108-9CD0-36BBA76DAC5E" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/608bbf9f-31a2-4617-bd25-722bbc319c61?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a8647f9a-2dc4-48de-9795-26f02eda3216?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "bd23be26b9e7176584e628a94d7ad899", "x-ms-return-client-request-id": "true" }, @@ -78,149 +72,131 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:28:25 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/608bbf9f-31a2-4617-bd25-722bbc319c61?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:10:43 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a8647f9a-2dc4-48de-9795-26f02eda3216?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "bd23be26b9e7176584e628a94d7ad899", - "x-ms-request-id": "e0caab81-ac0a-44e8-9e47-4d3df9e1b279" + "x-ms-request-id": "434c6eeb-dd59-4f0a-a91c-1d545777711d" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/608bbf9f-31a2-4617-bd25-722bbc319c61?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a8647f9a-2dc4-48de-9795-26f02eda3216?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "46d5ae3bc408961b60e84018bc78e8d1", "x-ms-return-client-request-id": "true" }, "RequestBody": null, - "StatusCode": 202, + "StatusCode": 200, "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", + "Cache-Control": "no-cache", + "Content-Length": "313", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:28:26 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/608bbf9f-31a2-4617-bd25-722bbc319c61?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Date": "Thu, 30 Sep 2021 06:10:44 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-ms-client-request-id": "46d5ae3bc408961b60e84018bc78e8d1", - "x-ms-request-id": "95f86aa5-13f4-4d5e-8631-a7f5e3cb6272" + "x-ms-correlation-request-id": "ee1cce77-fd28-4d84-99cc-4f51dd777563", + "x-ms-request-id": "828fc4d9-4e47-4a6b-8770-ad828f7f6014", + "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "status": "InProgress" + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/dataflows/DataFlow5386", + "name": "DataFlow5386", + "type": "Microsoft.Synapse/workspaces/dataflows", + "properties": { + "type": null + }, + "etag": "2e004d7f-0000-0100-0000-615554e40000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/608bbf9f-31a2-4617-bd25-722bbc319c61?api-version=2019-06-01-preview", - "RequestMethod": "GET", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/createDataFlowDebugSession?api-version=2020-12-01", + "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "Content-Length": "2", + "Content-Type": "application/json", + "traceparent": "00-305139f455ad50438efe630fd7c89ee2-e1598cb1401a654f-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "698b9f2fb687a58135aa03bcf256895e", "x-ms-return-client-request-id": "true" }, - "RequestBody": null, - "StatusCode": 200, + "RequestBody": {}, + "StatusCode": 202, "ResponseHeaders": { + "Access-Control-Allow-Headers": "Location", + "Access-Control-Expose-Headers": "Location", "Cache-Control": "no-cache", - "Content-Length": "320", + "Content-Length": "52", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:28:27 GMT", + "Date": "Thu, 30 Sep 2021 06:10:44 GMT", "Expires": "-1", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "698b9f2fb687a58135aa03bcf256895e", - "x-ms-correlation-request-id": "faaf94a5-b46d-4a2a-bd67-f20a07bb8b8b", - "x-ms-request-id": "7a679403-657f-4371-8959-db31b380505c", + "x-ms-correlation-request-id": "617e1a98-b6ca-4f4b-8a41-e2197e9d2c64", + "x-ms-request-id": "818d6b1f-11a4-4d25-b367-0ebcd156298c", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow5386", - "name": "DataFlow5386", - "type": "Microsoft.Synapse/workspaces/dataflows", - "properties": { - "type": null - }, - "etag": "5000511a-0000-0800-0000-6008a07a0000" + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/createDataFlowDebugSession?api-version=2019-06-01-preview", - "RequestMethod": "POST", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", + "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "2", - "Content-Type": "application/json", - "traceparent": "00-267806587acd6147aa05f9e447fbe8c5-e47c40b3cd06eb46-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "46e9f916096562dfa38d5dfe794c5a0b", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "ae7956fd6fee85112d2f115dc15ea30a", "x-ms-return-client-request-id": "true" }, - "RequestBody": {}, + "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { "Access-Control-Allow-Headers": "Location", "Access-Control-Expose-Headers": "Location", "Cache-Control": "no-cache", - "Content-Length": "52", + "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:28:27 GMT", + "Date": "Thu, 30 Sep 2021 06:10:44 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "46e9f916096562dfa38d5dfe794c5a0b", - "x-ms-correlation-request-id": "84fb4cad-8f27-4f6b-a146-1518103e1d34", - "x-ms-request-id": "dd3c4616-1fb0-4f17-b516-516f1bbde7ba", + "x-ms-client-request-id": "ae7956fd6fee85112d2f115dc15ea30a", + "x-ms-correlation-request-id": "3611a9f6-cbb5-4525-9bdc-503748610c92", + "x-ms-request-id": "cd863611-499d-463f-ad54-cb82acb1dd1d", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "status": "Pending", + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c302e15fa28e266cc029c5fa59822ce9", "x-ms-return-client-request-id": "true" }, @@ -232,35 +208,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:28:27 GMT", + "Date": "Thu, 30 Sep 2021 06:10:46 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "c302e15fa28e266cc029c5fa59822ce9", - "x-ms-correlation-request-id": "123ea167-3ebb-46a8-a07f-a4f8609ddfba", - "x-ms-request-id": "f159d54a-c598-4410-98a5-d0b6d832ed93", + "x-ms-correlation-request-id": "3063e7e3-8403-4bb1-9389-9dcb5398a8fa", + "x-ms-request-id": "82b3eaca-8604-4299-830a-891413defb1b", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "9cbef750dadda66fe7641935f781a145", "x-ms-return-client-request-id": "true" }, @@ -272,35 +242,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:28:29 GMT", + "Date": "Thu, 30 Sep 2021 06:10:48 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "9cbef750dadda66fe7641935f781a145", - "x-ms-correlation-request-id": "e75bb2bc-716e-44e8-ad34-e3dfa61ca566", - "x-ms-request-id": "8d63ffec-82e9-4e5a-b6d5-641064e3f607", + "x-ms-correlation-request-id": "9af01325-4fe0-400c-a514-c0891d15a4ca", + "x-ms-request-id": "bda6a01c-3301-433f-aedc-69504d3f8963", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "989f53ea96495b7dea52eec5a9172caa", "x-ms-return-client-request-id": "true" }, @@ -312,35 +276,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:28:30 GMT", + "Date": "Thu, 30 Sep 2021 06:10:49 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "989f53ea96495b7dea52eec5a9172caa", - "x-ms-correlation-request-id": "8821e0f3-63c1-4a66-8294-01e73e99561d", - "x-ms-request-id": "4c7f8d9d-8d86-48fd-a77f-38cdd9b27493", + "x-ms-correlation-request-id": "4d647bfc-d7c2-4d1f-8097-4de4f3840bc3", + "x-ms-request-id": "30e67c96-89c6-43d7-b736-b29d51ae3bc9", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c90d2703079f852c715bdb2a89372e3e", "x-ms-return-client-request-id": "true" }, @@ -352,35 +310,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:28:31 GMT", + "Date": "Thu, 30 Sep 2021 06:10:50 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "c90d2703079f852c715bdb2a89372e3e", - "x-ms-correlation-request-id": "17db611d-9f65-46f9-8835-243cff236d68", - "x-ms-request-id": "53852f7a-6080-43c1-8377-d90f04ca9dcf", + "x-ms-correlation-request-id": "71f1714d-2c41-4b2c-b3e3-dfc13303e200", + "x-ms-request-id": "c4467209-46c1-4b2b-802e-1926795f9837", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "050f7f8894e3b99f7a63b28aebaafcd0", "x-ms-return-client-request-id": "true" }, @@ -392,35 +344,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:28:32 GMT", + "Date": "Thu, 30 Sep 2021 06:10:52 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "050f7f8894e3b99f7a63b28aebaafcd0", - "x-ms-correlation-request-id": "88beca40-aeca-4d57-a8b7-21f34c55f346", - "x-ms-request-id": "a377d6ad-b482-4a8d-84ab-5a46115ac97a", + "x-ms-correlation-request-id": "622e50ae-e937-4f20-be78-71a3f9ebc24b", + "x-ms-request-id": "72864c21-96a7-4fd8-9115-1b5c09907505", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d0326e38d773e3a6261a26edba52d2b2", "x-ms-return-client-request-id": "true" }, @@ -432,35 +378,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:28:33 GMT", + "Date": "Thu, 30 Sep 2021 06:10:53 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "d0326e38d773e3a6261a26edba52d2b2", - "x-ms-correlation-request-id": "5bd67f6d-53d7-488e-85d8-1b37a3be53d9", - "x-ms-request-id": "90e6ae7e-4afe-4f70-a293-9dcc51c9a42d", + "x-ms-correlation-request-id": "8094baea-6271-4fc9-bd5b-8c11eea14616", + "x-ms-request-id": "4ee806e4-b135-4869-877c-d6662ec94231", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2a3cb02326076fc788544e3b55a199c6", "x-ms-return-client-request-id": "true" }, @@ -472,35 +412,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:28:35 GMT", + "Date": "Thu, 30 Sep 2021 06:10:54 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "2a3cb02326076fc788544e3b55a199c6", - "x-ms-correlation-request-id": "9d86980b-ef38-44aa-be28-4c3671460ba2", - "x-ms-request-id": "32f7a97c-af1b-4aca-bc01-edb3a23ceb58", + "x-ms-correlation-request-id": "703051de-e541-462e-a9fa-c5e99f1093a7", + "x-ms-request-id": "c04f0a7e-d901-41b0-b6f3-b4345224464e", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "1af20b5f5e05b0cbd92cdfc96db1fe27", "x-ms-return-client-request-id": "true" }, @@ -512,35 +446,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:28:36 GMT", + "Date": "Thu, 30 Sep 2021 06:10:55 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "1af20b5f5e05b0cbd92cdfc96db1fe27", - "x-ms-correlation-request-id": "97d604b4-1bc4-4456-bfc9-03e2dfa3ed0e", - "x-ms-request-id": "c5d94524-b4d5-47f1-99d3-d6741072ad9c", + "x-ms-correlation-request-id": "9304c1a5-bcf5-4874-87a1-e2b4fae9880f", + "x-ms-request-id": "2f4c761d-b807-4560-9aa6-740ce2b00577", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "3b67ff91d26d11c8a6c2471f896a8d84", "x-ms-return-client-request-id": "true" }, @@ -552,35 +480,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:28:37 GMT", + "Date": "Thu, 30 Sep 2021 06:10:56 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "3b67ff91d26d11c8a6c2471f896a8d84", - "x-ms-correlation-request-id": "524c73f7-07c5-411a-b9ae-5d4717a0d8c1", - "x-ms-request-id": "e9b9c988-64e9-4f3d-a966-2be81760eb40", + "x-ms-correlation-request-id": "42cd9623-4a22-44d5-87b3-06a6bdd88a21", + "x-ms-request-id": "641e8cb8-2082-4901-ae0c-4cb366f7eee0", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "af8e5f80b760c4ade48b51da47fe02d6", "x-ms-return-client-request-id": "true" }, @@ -592,35 +514,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:28:38 GMT", + "Date": "Thu, 30 Sep 2021 06:10:57 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "af8e5f80b760c4ade48b51da47fe02d6", - "x-ms-correlation-request-id": "3afc3e91-de21-4c9a-9119-ca516b64f63a", - "x-ms-request-id": "59af2b6e-bfd8-4208-ad9f-e75b0b47fd94", + "x-ms-correlation-request-id": "49ec716b-248e-42dd-9124-76438c9c5292", + "x-ms-request-id": "46b065a3-2a80-4c33-b83f-5a910efc20d2", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "55aa26555e3a8c5842e0734216ab276e", "x-ms-return-client-request-id": "true" }, @@ -632,35 +548,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:28:39 GMT", + "Date": "Thu, 30 Sep 2021 06:10:59 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "55aa26555e3a8c5842e0734216ab276e", - "x-ms-correlation-request-id": "d917b0b1-c51e-4b19-94a9-42e8a90855a3", - "x-ms-request-id": "bb74ca82-292c-4d28-867c-94b28221e85d", + "x-ms-correlation-request-id": "6be08463-45e2-41ef-bda7-5b49a047e28e", + "x-ms-request-id": "d24544ae-146e-4585-9541-1a675ab30e11", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "0d485a9f4f23d9c751a256e181eecaa8", "x-ms-return-client-request-id": "true" }, @@ -672,35 +582,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:28:41 GMT", + "Date": "Thu, 30 Sep 2021 06:11:00 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "0d485a9f4f23d9c751a256e181eecaa8", - "x-ms-correlation-request-id": "f6a0333a-ec16-45ad-8470-652802a9f669", - "x-ms-request-id": "ddc1b658-e33e-400d-9cb1-baaa9c2e0778", + "x-ms-correlation-request-id": "00d00282-f907-496f-b525-61b3b96d4fc6", + "x-ms-request-id": "976da009-9ff8-4d1a-be7e-b97146245771", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "62ca71c037c0224906026c80436aae39", "x-ms-return-client-request-id": "true" }, @@ -712,35 +616,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:28:42 GMT", + "Date": "Thu, 30 Sep 2021 06:11:01 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "62ca71c037c0224906026c80436aae39", - "x-ms-correlation-request-id": "26933d80-5bf6-4d40-ac06-343ef5fc0b08", - "x-ms-request-id": "5fbdec6f-1681-478c-aa4c-9a1b075da128", + "x-ms-correlation-request-id": "0f783785-75d3-4274-86d8-3bcc82161227", + "x-ms-request-id": "e7ba35f0-554c-404d-9138-5513cce2c5dc", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ec3be364f4b506b35fd0039807760b54", "x-ms-return-client-request-id": "true" }, @@ -752,35 +650,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:28:43 GMT", + "Date": "Thu, 30 Sep 2021 06:11:02 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "ec3be364f4b506b35fd0039807760b54", - "x-ms-correlation-request-id": "ddfe5778-1214-4a62-9e48-05d5898eed67", - "x-ms-request-id": "d2a8df08-e53d-4062-83fa-edb7faaef9e0", + "x-ms-correlation-request-id": "a558c78b-46d3-44f4-81d3-d1350b587453", + "x-ms-request-id": "98273731-bdd8-4f3f-bd42-ac52fa23a1bc", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a581cb16c4e167ad11260620e24796e7", "x-ms-return-client-request-id": "true" }, @@ -792,35 +684,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:28:44 GMT", + "Date": "Thu, 30 Sep 2021 06:11:04 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "a581cb16c4e167ad11260620e24796e7", - "x-ms-correlation-request-id": "4a5e4f7c-ba1f-473f-a512-30f6e24507eb", - "x-ms-request-id": "4becc58d-a17f-49e4-81d1-2bffbfb78def", + "x-ms-correlation-request-id": "0bfed6d8-5ed1-48df-9cb5-bd4a35ffe21d", + "x-ms-request-id": "6d06c367-d2bc-4cd9-bbf7-42cc0b0a5cbc", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "9d7d1df4deb2ccf3bec302f034b11a8f", "x-ms-return-client-request-id": "true" }, @@ -832,35 +718,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:28:45 GMT", + "Date": "Thu, 30 Sep 2021 06:11:05 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "9d7d1df4deb2ccf3bec302f034b11a8f", - "x-ms-correlation-request-id": "95260643-1826-4269-b517-247235684eef", - "x-ms-request-id": "3d2c04d7-e2c0-4cd7-8f39-4130e806c88e", + "x-ms-correlation-request-id": "544475d5-2ab4-4921-871d-a1e92993d1bf", + "x-ms-request-id": "016a32fb-7a47-47f0-8074-f85c9b91de51", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "786918f708e99f5735d4da8eee922418", "x-ms-return-client-request-id": "true" }, @@ -872,35 +752,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:28:46 GMT", + "Date": "Thu, 30 Sep 2021 06:11:06 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "786918f708e99f5735d4da8eee922418", - "x-ms-correlation-request-id": "8c016103-d336-4eee-b4d5-77dd37d43a8e", - "x-ms-request-id": "767c7ab4-77d7-41b0-83fa-5fa7546bb65f", + "x-ms-correlation-request-id": "df760d51-0b18-4022-b864-ddff70b936a0", + "x-ms-request-id": "81e4e002-633f-42a6-88d2-79978d53daf7", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "eaa31c396df938a1d8b5e61dc1bd325f", "x-ms-return-client-request-id": "true" }, @@ -912,35 +786,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:28:48 GMT", + "Date": "Thu, 30 Sep 2021 06:11:07 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "eaa31c396df938a1d8b5e61dc1bd325f", - "x-ms-correlation-request-id": "99cc4772-6b5b-42fb-bb93-ef3e9eb6fcbd", - "x-ms-request-id": "5ba93d51-663d-4638-b6a7-77a53eabcdd3", + "x-ms-correlation-request-id": "62f1ea31-61f6-4de5-a656-4e98c465c37b", + "x-ms-request-id": "238f3eb6-2254-40b0-b6fd-3d3ab8e5a5f2", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c929760c1eddebfec5dd68dd0364dd2c", "x-ms-return-client-request-id": "true" }, @@ -952,35 +820,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:28:49 GMT", + "Date": "Thu, 30 Sep 2021 06:11:08 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "c929760c1eddebfec5dd68dd0364dd2c", - "x-ms-correlation-request-id": "a86577fe-a698-4f74-9f8d-682068ab41e4", - "x-ms-request-id": "eed84a57-ec5e-4396-bc56-0556988e1318", + "x-ms-correlation-request-id": "b925d7b0-f541-45ab-934c-a2ac26c0c5c7", + "x-ms-request-id": "56889bf6-a308-4c42-b0ab-03873726ee75", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "17b6ea9f2f0d89967631a033223add78", "x-ms-return-client-request-id": "true" }, @@ -992,35 +854,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:28:50 GMT", + "Date": "Thu, 30 Sep 2021 06:11:09 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "17b6ea9f2f0d89967631a033223add78", - "x-ms-correlation-request-id": "20807070-f6ad-4fef-aef7-72900817546d", - "x-ms-request-id": "de6a736b-0ffb-4520-94d5-0dd51f6b35dd", + "x-ms-correlation-request-id": "29335b5e-d27a-44d1-8731-4a0be073dbbd", + "x-ms-request-id": "68ef38bd-dc4a-43b4-a995-38fc381e4e14", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "77827ba15a681b3b1eb8251c05c33473", "x-ms-return-client-request-id": "true" }, @@ -1032,35 +888,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:28:51 GMT", + "Date": "Thu, 30 Sep 2021 06:11:11 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "77827ba15a681b3b1eb8251c05c33473", - "x-ms-correlation-request-id": "b15ab744-9c1e-48b3-a2ee-a569fc052d02", - "x-ms-request-id": "db472ab2-9750-4242-873c-0356ce299883", + "x-ms-correlation-request-id": "01a470a3-dac7-4dec-b8b6-9e740f58cb2a", + "x-ms-request-id": "e512267b-3527-490b-adec-b4eb539fbe1a", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d77dbad71b06dc52e0a053ab7ecac98b", "x-ms-return-client-request-id": "true" }, @@ -1072,35 +922,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:28:52 GMT", + "Date": "Thu, 30 Sep 2021 06:11:12 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "d77dbad71b06dc52e0a053ab7ecac98b", - "x-ms-correlation-request-id": "e13f2c99-0658-4b00-93d0-f8c31948d0b9", - "x-ms-request-id": "70590619-45d1-4117-9ba7-c301943a96f7", + "x-ms-correlation-request-id": "0fb26140-d7b3-4fca-87fe-f05e883a1b43", + "x-ms-request-id": "dacac2cd-ade9-4e89-b426-cd0c08b42f29", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "883cefff66e245c4ae9bf8550a7984b2", "x-ms-return-client-request-id": "true" }, @@ -1112,35 +956,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:28:53 GMT", + "Date": "Thu, 30 Sep 2021 06:11:13 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "883cefff66e245c4ae9bf8550a7984b2", - "x-ms-correlation-request-id": "0c196988-90c8-4f12-a730-c116a3cbf6dc", - "x-ms-request-id": "ade96215-2888-48ef-9a59-c2330c18f89b", + "x-ms-correlation-request-id": "b0a0747f-5034-4268-9155-c5672bb774df", + "x-ms-request-id": "c45a07ec-87c5-4827-8c99-6c7c3be17019", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "675b2cfc06bc857128a596c8078f9c53", "x-ms-return-client-request-id": "true" }, @@ -1152,35 +990,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:28:55 GMT", + "Date": "Thu, 30 Sep 2021 06:11:14 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "675b2cfc06bc857128a596c8078f9c53", - "x-ms-correlation-request-id": "b55a66dc-0e00-41fb-b74d-f480e45f9184", - "x-ms-request-id": "dbb3cf23-cbad-4fec-b85d-600e29db1120", + "x-ms-correlation-request-id": "c15882bd-ce6a-477c-9945-89c83add7129", + "x-ms-request-id": "6ed90ee2-b77d-4606-b331-f752b83a41d0", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "151c9aeeac877191f638286b23fdd266", "x-ms-return-client-request-id": "true" }, @@ -1192,35 +1024,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:28:56 GMT", + "Date": "Thu, 30 Sep 2021 06:11:16 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "151c9aeeac877191f638286b23fdd266", - "x-ms-correlation-request-id": "9b0acc6d-2352-4a96-865d-3365f82d568e", - "x-ms-request-id": "9888bb5f-02e9-4c60-ba9b-301814761837", + "x-ms-correlation-request-id": "b3f90daf-2f4f-4dbc-ba3e-e21cf4a34eae", + "x-ms-request-id": "cce29af9-df7b-4d12-a697-185a8d77fe30", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "51afa01b616ff9ce7db65f3ccffc3e1f", "x-ms-return-client-request-id": "true" }, @@ -1232,35 +1058,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:28:57 GMT", + "Date": "Thu, 30 Sep 2021 06:11:17 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "51afa01b616ff9ce7db65f3ccffc3e1f", - "x-ms-correlation-request-id": "8f663937-24d3-4ddf-b568-2a9ffe1d805f", - "x-ms-request-id": "6233fb87-a650-4731-a385-08e91f905629", + "x-ms-correlation-request-id": "8aa7c19b-1d85-4a00-8173-07c90e2accc0", + "x-ms-request-id": "0cdc81df-987b-4ad4-841a-b35828985883", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6f66a4fe6f5d4f2b9bea7183dd06622b", "x-ms-return-client-request-id": "true" }, @@ -1272,35 +1092,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:28:58 GMT", + "Date": "Thu, 30 Sep 2021 06:11:18 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "6f66a4fe6f5d4f2b9bea7183dd06622b", - "x-ms-correlation-request-id": "baec5f8f-d624-4b25-9d5b-6254295c7ba7", - "x-ms-request-id": "00c773bf-5d3a-4f55-b1ad-b72488a15fcb", + "x-ms-correlation-request-id": "75f1a5be-85d1-406b-856c-610f605ed090", + "x-ms-request-id": "3f988d8b-d88c-4584-94a0-977906654bdd", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "66ac30d24ae08de4cb2397d04d54a1fa", "x-ms-return-client-request-id": "true" }, @@ -1312,35 +1126,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:28:59 GMT", + "Date": "Thu, 30 Sep 2021 06:11:19 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "66ac30d24ae08de4cb2397d04d54a1fa", - "x-ms-correlation-request-id": "482510b4-974c-4409-90a3-e130a7879fb1", - "x-ms-request-id": "afbf070a-6057-45c9-88ea-0edc1de4ea8f", + "x-ms-correlation-request-id": "e9211098-5edf-48e6-a608-4ebe134f160d", + "x-ms-request-id": "5f8d9718-cdd8-46ce-b6f2-f54936cb1411", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7e6c09fa6296ac09755fb684f04a1c77", "x-ms-return-client-request-id": "true" }, @@ -1352,35 +1160,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:29:00 GMT", + "Date": "Thu, 30 Sep 2021 06:11:20 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "7e6c09fa6296ac09755fb684f04a1c77", - "x-ms-correlation-request-id": "3fe5ff0c-0df2-4bf7-8269-dba45f36052e", - "x-ms-request-id": "c11484ec-ed61-4de0-95f7-f54c478ac3d4", + "x-ms-correlation-request-id": "4cff913f-e319-4a91-89bc-73348013f8f6", + "x-ms-request-id": "b0ea25d2-2f48-4a7d-b6d9-3b3337cb0b3e", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "9f693353d74fb43fbfd9a439d75a0247", "x-ms-return-client-request-id": "true" }, @@ -1392,35 +1194,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:29:02 GMT", + "Date": "Thu, 30 Sep 2021 06:11:22 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "9f693353d74fb43fbfd9a439d75a0247", - "x-ms-correlation-request-id": "fb5e20b6-c34a-4489-bb41-f1cac3e5a045", - "x-ms-request-id": "5c10da74-6816-47f2-aa82-ecc12c9d5d99", + "x-ms-correlation-request-id": "11b885f7-1e99-42dc-b166-f9775d89a714", + "x-ms-request-id": "044e2793-b94a-4c7e-ac16-426314397245", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d3897749e49970952600f180945f9d80", "x-ms-return-client-request-id": "true" }, @@ -1432,35 +1228,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:29:03 GMT", + "Date": "Thu, 30 Sep 2021 06:11:23 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "d3897749e49970952600f180945f9d80", - "x-ms-correlation-request-id": "3bfbefce-9c6a-41c4-a701-f4073aa6c7e6", - "x-ms-request-id": "ea1606e6-abab-431c-86a5-56da31f07b2c", + "x-ms-correlation-request-id": "306d7839-cce2-4cb7-84d4-5b277f6acc79", + "x-ms-request-id": "20376439-c8cd-4820-be19-4481cfd3f6fe", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "1a7d200701ea23aacab8bebdbecfd41b", "x-ms-return-client-request-id": "true" }, @@ -1472,35 +1262,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:29:04 GMT", + "Date": "Thu, 30 Sep 2021 06:11:24 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "1a7d200701ea23aacab8bebdbecfd41b", - "x-ms-correlation-request-id": "d0374869-64b7-4b7e-8412-45c30f3f37cc", - "x-ms-request-id": "a836c5c4-dcbe-4118-a309-2e98484c6203", + "x-ms-correlation-request-id": "9e94a6c5-87fb-4dc8-a435-837146db9889", + "x-ms-request-id": "852a6eda-2a4e-437f-b732-880a1abcc3a6", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "783b6f5d48c16fdd9ef9784ee5be1f60", "x-ms-return-client-request-id": "true" }, @@ -1512,35 +1296,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:29:05 GMT", + "Date": "Thu, 30 Sep 2021 06:11:26 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "783b6f5d48c16fdd9ef9784ee5be1f60", - "x-ms-correlation-request-id": "6834468f-ca14-4829-84b5-c51e35a3507a", - "x-ms-request-id": "a8c5b097-bc98-464f-8167-cd49813abd94", + "x-ms-correlation-request-id": "1ef9bff8-deac-4110-bde6-e3c13968dc4a", + "x-ms-request-id": "4e489399-124c-41cd-b608-c8856c57f159", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b632233be7dd475ccc6609e126d7b157", "x-ms-return-client-request-id": "true" }, @@ -1552,35 +1330,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:29:06 GMT", + "Date": "Thu, 30 Sep 2021 06:11:27 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "b632233be7dd475ccc6609e126d7b157", - "x-ms-correlation-request-id": "6be19419-616b-4434-8bac-bc02fd7093b3", - "x-ms-request-id": "9b23aaf1-dec5-4412-b5ff-33a6aafde153", + "x-ms-correlation-request-id": "27d22af5-5115-42a5-9280-7ed0f2d330e1", + "x-ms-request-id": "4e98a0ea-0633-4958-b33b-5e56b07c1746", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2423d62b2423bebf430d7cf0895b3d0b", "x-ms-return-client-request-id": "true" }, @@ -1592,35 +1364,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:29:07 GMT", + "Date": "Thu, 30 Sep 2021 06:11:28 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "2423d62b2423bebf430d7cf0895b3d0b", - "x-ms-correlation-request-id": "e2abd1e9-be50-4bd0-b424-8384df8a0389", - "x-ms-request-id": "a8bd3d75-a3be-4a05-b320-86ec820b5ffe", + "x-ms-correlation-request-id": "da58aa92-6836-44f6-bf0a-26ba7568aa29", + "x-ms-request-id": "1e2e258c-755d-4acf-b8ee-6a2fe6f90908", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "9a815e981e9d753e12f4ab5b3efc49c6", "x-ms-return-client-request-id": "true" }, @@ -1632,35 +1398,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:29:08 GMT", + "Date": "Thu, 30 Sep 2021 06:11:29 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "9a815e981e9d753e12f4ab5b3efc49c6", - "x-ms-correlation-request-id": "458d7051-a320-4785-ba2d-ad647ebb9a91", - "x-ms-request-id": "aa1512b4-45ee-46f4-91c5-0773e699fcd9", + "x-ms-correlation-request-id": "2f61c906-2972-43b7-bdf6-76de855051f4", + "x-ms-request-id": "05257f79-bc94-4a48-b362-deebf0223b5b", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "0f232147fb9a163c647373cf6b6cbd71", "x-ms-return-client-request-id": "true" }, @@ -1672,35 +1432,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:29:10 GMT", + "Date": "Thu, 30 Sep 2021 06:11:32 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "0f232147fb9a163c647373cf6b6cbd71", - "x-ms-correlation-request-id": "4f1562f4-773b-4836-805d-559d0effb8e2", - "x-ms-request-id": "38546caf-ffb5-4857-8a12-3385f72b3b9e", + "x-ms-correlation-request-id": "405713ed-b7d4-470a-9330-47d629fd0f5e", + "x-ms-request-id": "bb4a91de-1081-4636-bafe-b525f221f5f0", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c748fd2917550dba97ae122f79648046", "x-ms-return-client-request-id": "true" }, @@ -1712,35 +1466,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:29:11 GMT", + "Date": "Thu, 30 Sep 2021 06:11:33 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "c748fd2917550dba97ae122f79648046", - "x-ms-correlation-request-id": "e30a36ce-5f22-4196-b9ab-1dbb83806041", - "x-ms-request-id": "993e33a6-98ed-4935-b691-e2ce8c70e311", + "x-ms-correlation-request-id": "72a58243-54e8-4f8c-bb17-a5c9fa59addb", + "x-ms-request-id": "03c1a82f-d9fd-4827-86c5-26d45980bb3f", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "67a8b5c42d389d71216b3529ab6f09a6", "x-ms-return-client-request-id": "true" }, @@ -1752,35 +1500,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:29:12 GMT", + "Date": "Thu, 30 Sep 2021 06:11:34 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "67a8b5c42d389d71216b3529ab6f09a6", - "x-ms-correlation-request-id": "111fd5db-4119-48c9-84d1-3092088d3d19", - "x-ms-request-id": "bdb5a158-f6d5-4ce1-9bbe-6a46b0ff8680", + "x-ms-correlation-request-id": "506adb67-10db-415c-8257-15d57424e40f", + "x-ms-request-id": "a6bd35b8-7335-4cd7-8cc0-2a92ad62dcb2", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "41313a3681b43071671678ebe80d9d00", "x-ms-return-client-request-id": "true" }, @@ -1792,35 +1534,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:29:13 GMT", + "Date": "Thu, 30 Sep 2021 06:11:35 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "41313a3681b43071671678ebe80d9d00", - "x-ms-correlation-request-id": "4ae9351c-b811-412b-a34a-662bbd00bcd9", - "x-ms-request-id": "59a60c74-459e-488b-85ab-73698b4a6b1b", + "x-ms-correlation-request-id": "88cc485b-39dd-41bf-885c-5ad5bdfde1a9", + "x-ms-request-id": "9f643623-184d-41ec-89e1-315838dcf672", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b50a2cf355c3fb388caaa5eae1906128", "x-ms-return-client-request-id": "true" }, @@ -1832,35 +1568,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:29:14 GMT", + "Date": "Thu, 30 Sep 2021 06:11:36 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "b50a2cf355c3fb388caaa5eae1906128", - "x-ms-correlation-request-id": "9d12110a-9f62-4724-af30-e9a77f15f919", - "x-ms-request-id": "46aed271-2165-443c-b293-292ac5e605f2", + "x-ms-correlation-request-id": "c24495d9-6407-4ff1-90d6-d6fd6d19352b", + "x-ms-request-id": "846e6c9a-fdbc-4093-a869-7d2e84867f1c", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "3ef86ba43f32439244780022b485b414", "x-ms-return-client-request-id": "true" }, @@ -1872,35 +1602,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:29:15 GMT", + "Date": "Thu, 30 Sep 2021 06:11:37 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "3ef86ba43f32439244780022b485b414", - "x-ms-correlation-request-id": "37ceff96-4aa2-4d52-b10d-e0cab47a05bc", - "x-ms-request-id": "89f703ad-6e0a-4b89-a486-55ae03ef9c33", + "x-ms-correlation-request-id": "32da6eff-9b0d-4efb-9337-d177bcec27fd", + "x-ms-request-id": "251029d2-53db-486d-b264-adc775eebade", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7e3535cd5364e1e30135b409db864ed6", "x-ms-return-client-request-id": "true" }, @@ -1912,35 +1636,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:29:16 GMT", + "Date": "Thu, 30 Sep 2021 06:11:39 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "7e3535cd5364e1e30135b409db864ed6", - "x-ms-correlation-request-id": "6d400f44-8b0f-4b06-b13e-84a389fb9b45", - "x-ms-request-id": "c3f04941-4841-4593-9af4-f56beabf9bf1", + "x-ms-correlation-request-id": "5a0543c1-969c-4e9f-bbad-a900454d031a", + "x-ms-request-id": "85534225-382f-4ad0-90f9-5c38e5e64901", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7c474fb45f14b4ce99c7714a55164706", "x-ms-return-client-request-id": "true" }, @@ -1952,35 +1670,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:29:18 GMT", + "Date": "Thu, 30 Sep 2021 06:11:40 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "7c474fb45f14b4ce99c7714a55164706", - "x-ms-correlation-request-id": "b0417b66-431c-4948-9ba6-d331164d3461", - "x-ms-request-id": "cc316a82-45e8-4f44-a4df-81c01bdfe8e5", + "x-ms-correlation-request-id": "c52f0855-2f56-4c81-8d6b-5eb0c7e7ea3f", + "x-ms-request-id": "22b5f24a-b1cd-4f5f-8329-d3692268036d", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ab1d91f6e35a51c388173cfc8a8967bd", "x-ms-return-client-request-id": "true" }, @@ -1992,35 +1704,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:29:19 GMT", + "Date": "Thu, 30 Sep 2021 06:11:41 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "ab1d91f6e35a51c388173cfc8a8967bd", - "x-ms-correlation-request-id": "80f0914a-496e-4218-b3eb-aed21541fdc1", - "x-ms-request-id": "8c9953a4-d6fc-4c05-9ba3-8df1a3fff965", + "x-ms-correlation-request-id": "18aa1533-1a6c-405d-ba14-0bf04b7f2488", + "x-ms-request-id": "ced853d1-3b95-47f9-8837-f98ccebb5e0f", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "656d2a29373e6dff6781e49de2998ceb", "x-ms-return-client-request-id": "true" }, @@ -2032,35 +1738,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:29:20 GMT", + "Date": "Thu, 30 Sep 2021 06:11:42 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "656d2a29373e6dff6781e49de2998ceb", - "x-ms-correlation-request-id": "939ace0c-3b58-4242-b24e-0dda5cb9fb6f", - "x-ms-request-id": "b25218cb-2b13-45f0-b9be-b8e968ebe57b", + "x-ms-correlation-request-id": "f5a84e8b-82e3-4bda-995e-ef21f59374b9", + "x-ms-request-id": "df880e4b-f5ce-4e79-b657-a7e65aeba27e", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "4a13adeea269d17b8bf5f4fd22d12a10", "x-ms-return-client-request-id": "true" }, @@ -2072,35 +1772,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:29:21 GMT", + "Date": "Thu, 30 Sep 2021 06:11:43 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "4a13adeea269d17b8bf5f4fd22d12a10", - "x-ms-correlation-request-id": "4f3938a9-f537-423b-acf0-973162a51408", - "x-ms-request-id": "bf5218fb-2872-4858-8c43-70d718c83493", + "x-ms-correlation-request-id": "0fa5dbf3-faf6-44a1-8e46-8d00c628305c", + "x-ms-request-id": "45f25fe5-29f4-45f6-b6a2-3198dc50123b", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2a20b35fe1a8bec891af44d9fe266eef", "x-ms-return-client-request-id": "true" }, @@ -2112,35 +1806,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:29:22 GMT", + "Date": "Thu, 30 Sep 2021 06:11:44 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "2a20b35fe1a8bec891af44d9fe266eef", - "x-ms-correlation-request-id": "1d8ab81e-0781-48f6-b04f-21aa6d5a18b6", - "x-ms-request-id": "1090eb4c-2b8e-4062-bb45-501fd1787099", + "x-ms-correlation-request-id": "3fff2059-0385-4ff8-81d4-c3b4e168045e", + "x-ms-request-id": "b4c1d1a6-62d8-48ae-b628-dcbe7ac17b12", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "dc0d518b1d768654ae9cd94843014b95", "x-ms-return-client-request-id": "true" }, @@ -2152,35 +1840,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:29:24 GMT", + "Date": "Thu, 30 Sep 2021 06:11:46 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "dc0d518b1d768654ae9cd94843014b95", - "x-ms-correlation-request-id": "4e88c983-3c87-4872-8a43-aea7d205904d", - "x-ms-request-id": "3451839e-e34d-45c8-b6de-20c1f23aa562", + "x-ms-correlation-request-id": "8caf3be4-e0a6-4013-a87b-2d783b69fad7", + "x-ms-request-id": "50714074-cb37-4348-bbd9-caf582cb7ed3", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2e3ed45761780d42e554b8ba5ea2d265", "x-ms-return-client-request-id": "true" }, @@ -2192,35 +1874,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:29:25 GMT", + "Date": "Thu, 30 Sep 2021 06:11:47 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "2e3ed45761780d42e554b8ba5ea2d265", - "x-ms-correlation-request-id": "ecbff833-1dcd-424b-9a7a-25c0547a497b", - "x-ms-request-id": "9d46dc10-543c-4cf5-8112-267f8fdd531b", + "x-ms-correlation-request-id": "5ba9af41-cef1-47dc-b88c-ee486b8a4cf1", + "x-ms-request-id": "e313b35c-2d46-47e4-9b19-45a900fe450a", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d17205874dc4419a5f997c0c087f7a8f", "x-ms-return-client-request-id": "true" }, @@ -2232,35 +1908,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:29:26 GMT", + "Date": "Thu, 30 Sep 2021 06:11:48 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "d17205874dc4419a5f997c0c087f7a8f", - "x-ms-correlation-request-id": "6f3ae2ce-6173-4374-8ff7-e6b5dfe15402", - "x-ms-request-id": "144db86d-b3e7-45f7-b54a-05ab08b81591", + "x-ms-correlation-request-id": "a52f5ca9-7b11-489d-9be7-d8cdcb7957bf", + "x-ms-request-id": "23ea21c2-004b-47c2-ad5d-630e8077f7ee", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2a82ae6340e829760e00f621649a280c", "x-ms-return-client-request-id": "true" }, @@ -2272,35 +1942,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:29:27 GMT", + "Date": "Thu, 30 Sep 2021 06:11:50 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "2a82ae6340e829760e00f621649a280c", - "x-ms-correlation-request-id": "ee91b79e-ab50-46d0-b364-05eec51235fd", - "x-ms-request-id": "d99b3157-a522-49b0-bed9-4875a487fece", + "x-ms-correlation-request-id": "6cb869d6-9dc2-4250-a7d0-82a135c3ab5c", + "x-ms-request-id": "e6776653-9931-435a-a548-ba0fefbf3ad4", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "3ec174c97a8f09d13afccfdfe5350465", "x-ms-return-client-request-id": "true" }, @@ -2312,35 +1976,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:29:28 GMT", + "Date": "Thu, 30 Sep 2021 06:11:51 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "3ec174c97a8f09d13afccfdfe5350465", - "x-ms-correlation-request-id": "b05b1478-8d61-45de-b541-31abb0d9e2de", - "x-ms-request-id": "cd92edba-1b2e-4e2d-ab00-a29efa70886f", + "x-ms-correlation-request-id": "e4bb5827-99ba-442d-a9a4-6c2da084bbd5", + "x-ms-request-id": "59d9c2b3-ccce-44c3-8b7b-4e0812b4040a", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b05629daa81f477c8e48c2c35678ddc5", "x-ms-return-client-request-id": "true" }, @@ -2352,35 +2010,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:29:29 GMT", + "Date": "Thu, 30 Sep 2021 06:11:52 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "b05629daa81f477c8e48c2c35678ddc5", - "x-ms-correlation-request-id": "2ace48e7-67e1-45bf-ba07-1c497155a3c8", - "x-ms-request-id": "d259361d-3a5d-4757-900a-54c102119804", + "x-ms-correlation-request-id": "9d17b404-98d9-40b8-8a1c-36f12822e8ad", + "x-ms-request-id": "3bfc3ad1-0138-4536-a994-a179135849f2", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "94426f713cbee900dc79f0ec709744d8", "x-ms-return-client-request-id": "true" }, @@ -2392,35 +2044,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:29:31 GMT", + "Date": "Thu, 30 Sep 2021 06:11:53 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "94426f713cbee900dc79f0ec709744d8", - "x-ms-correlation-request-id": "73938fd5-3d88-4959-98d9-b5e1ef7b1c99", - "x-ms-request-id": "20d9c681-df3d-412a-90ab-a40fb7056c85", + "x-ms-correlation-request-id": "dcf47188-0f8c-46a8-82c2-b979d1d6489e", + "x-ms-request-id": "6f132f9d-9ac8-48b2-ae70-0c0c146ab2f0", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "3b4791fb784321ecf77ab046b70db2c1", "x-ms-return-client-request-id": "true" }, @@ -2432,35 +2078,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:29:32 GMT", + "Date": "Thu, 30 Sep 2021 06:11:55 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "3b4791fb784321ecf77ab046b70db2c1", - "x-ms-correlation-request-id": "ae34ed80-5220-4c43-8316-f27a4fd0d7df", - "x-ms-request-id": "1d4d5e30-825b-4c0e-8f61-5f28616e0e87", + "x-ms-correlation-request-id": "976f4614-d408-4eaf-8243-4575a0744a3b", + "x-ms-request-id": "90c54eba-4b09-492d-8135-ca1b431d01bf", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "756d091f70f39da7296cd3a6b790d6f6", "x-ms-return-client-request-id": "true" }, @@ -2472,35 +2112,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:29:33 GMT", + "Date": "Thu, 30 Sep 2021 06:11:56 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "756d091f70f39da7296cd3a6b790d6f6", - "x-ms-correlation-request-id": "79ee3eb8-e169-4d34-9e8f-096f2be8af23", - "x-ms-request-id": "e5cee6b9-4227-4fd0-a325-bc91556cd645", + "x-ms-correlation-request-id": "bf206cc3-3688-4726-9aa5-26cdfb9690ec", + "x-ms-request-id": "5d08f6e7-5c78-4198-b332-8e69b83b412a", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c5c8e903a131f88183219c448cb932cf", "x-ms-return-client-request-id": "true" }, @@ -2512,35 +2146,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:29:34 GMT", + "Date": "Thu, 30 Sep 2021 06:11:57 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "c5c8e903a131f88183219c448cb932cf", - "x-ms-correlation-request-id": "6eaa2fec-f328-4451-9691-7aaa80843af2", - "x-ms-request-id": "a37fd33e-b05b-4731-be7c-29787c9bee11", + "x-ms-correlation-request-id": "e35bea2c-0d26-47bc-aa87-a768d0c380da", + "x-ms-request-id": "bfdf0d81-7539-4aaa-87ae-7c885fa04656", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "67cc2ec6cf298ae5e9a912d7a5456966", "x-ms-return-client-request-id": "true" }, @@ -2552,35 +2180,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:29:35 GMT", + "Date": "Thu, 30 Sep 2021 06:11:58 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "67cc2ec6cf298ae5e9a912d7a5456966", - "x-ms-correlation-request-id": "df92ba40-74cb-479c-bef4-c357cb55352a", - "x-ms-request-id": "43f08d21-62bc-4fe7-80a1-1b472eb2cb3a", + "x-ms-correlation-request-id": "5d7d6fc5-96c0-4fe1-a133-d69169d6a894", + "x-ms-request-id": "6ac0ffaa-834f-4ecd-b75f-5a7a8d6597b3", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ce42b9a3ec457d908875f1d2d462116f", "x-ms-return-client-request-id": "true" }, @@ -2592,35 +2214,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:29:36 GMT", + "Date": "Thu, 30 Sep 2021 06:12:00 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "ce42b9a3ec457d908875f1d2d462116f", - "x-ms-correlation-request-id": "5f708d9c-199f-4f1f-96a7-d683eb9391a7", - "x-ms-request-id": "5a34d1c6-b32a-4942-bdc3-dc1406c92957", + "x-ms-correlation-request-id": "d9d44b46-f98d-4e30-a9b7-c3ebd602fd74", + "x-ms-request-id": "0f55edb2-5eff-45d5-98ad-0803d6203db1", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "88df04396fc334cd033ddb878fa9533d", "x-ms-return-client-request-id": "true" }, @@ -2632,35 +2248,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:29:38 GMT", + "Date": "Thu, 30 Sep 2021 06:12:01 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "88df04396fc334cd033ddb878fa9533d", - "x-ms-correlation-request-id": "8fe568bf-4031-4e3c-aed8-739fc0041293", - "x-ms-request-id": "315bbcbc-df91-4102-9755-5ae2c8661d08", + "x-ms-correlation-request-id": "92648710-31f7-40f6-bc57-89cb4c243bd4", + "x-ms-request-id": "87c8276d-cfbe-489c-937f-7f64176dbe23", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d2a036b76477da899e4fdeb4de13b687", "x-ms-return-client-request-id": "true" }, @@ -2672,35 +2282,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:29:39 GMT", + "Date": "Thu, 30 Sep 2021 06:12:02 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "d2a036b76477da899e4fdeb4de13b687", - "x-ms-correlation-request-id": "95787e5c-adfb-4bfd-8d64-caf599bed6cd", - "x-ms-request-id": "3fb352d1-fbef-44c2-b93d-1a8c07e1afcc", + "x-ms-correlation-request-id": "930a58e6-fcbf-45fc-b199-be7b034460c3", + "x-ms-request-id": "abff4a05-d3bf-41e8-80ff-32908531750d", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a19da297e16634a2ec0eca071008edde", "x-ms-return-client-request-id": "true" }, @@ -2712,35 +2316,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:29:40 GMT", + "Date": "Thu, 30 Sep 2021 06:12:03 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "a19da297e16634a2ec0eca071008edde", - "x-ms-correlation-request-id": "f2a1f550-0a1e-4639-bd32-66af571a4842", - "x-ms-request-id": "68290a3f-180d-4162-92a9-1cc59358d52b", + "x-ms-correlation-request-id": "5270f297-6352-4de2-9958-0d1a5d07feea", + "x-ms-request-id": "b941eb1a-117c-4e5f-8e1b-9e5a48e83369", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "9d1ab3213fc1d5f87a05ea74901855ef", "x-ms-return-client-request-id": "true" }, @@ -2752,35 +2350,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:29:41 GMT", + "Date": "Thu, 30 Sep 2021 06:12:05 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "9d1ab3213fc1d5f87a05ea74901855ef", - "x-ms-correlation-request-id": "fd28c614-2c4d-4398-b9e8-beaba632f272", - "x-ms-request-id": "976cc02e-35e9-4775-9c61-7e499de62bcc", + "x-ms-correlation-request-id": "ddef6054-60f2-4d89-9705-ee9d04759297", + "x-ms-request-id": "55b5082d-cd59-43f9-ab69-e1d0332bfbda", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "edef5487b20cd6d7946ce6689a81c995", "x-ms-return-client-request-id": "true" }, @@ -2792,35 +2384,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:29:43 GMT", + "Date": "Thu, 30 Sep 2021 06:12:06 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "edef5487b20cd6d7946ce6689a81c995", - "x-ms-correlation-request-id": "f14fd4bf-1143-4421-ac3a-316623806aad", - "x-ms-request-id": "45193db1-e7d5-447a-b275-43c82b1c5647", + "x-ms-correlation-request-id": "f2301b89-63a6-470d-b56f-e9fa9b9e511a", + "x-ms-request-id": "33a29129-d75e-4cc4-91d4-47322404718d", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2a93006118f858c5aac82660f62ea3d3", "x-ms-return-client-request-id": "true" }, @@ -2832,35 +2418,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:29:44 GMT", + "Date": "Thu, 30 Sep 2021 06:12:07 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "2a93006118f858c5aac82660f62ea3d3", - "x-ms-correlation-request-id": "8435647f-4d12-48de-8822-0d51ee670aca", - "x-ms-request-id": "6f50c911-f0d6-42a6-8ccf-16311f76b126", + "x-ms-correlation-request-id": "81945d58-c1b2-42e9-bf25-b220e3842ae5", + "x-ms-request-id": "7addd284-64f7-40a9-a414-f19109942162", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "bc80dab800196ed1dc440955588f3bf8", "x-ms-return-client-request-id": "true" }, @@ -2872,35 +2452,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:29:45 GMT", + "Date": "Thu, 30 Sep 2021 06:12:08 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "bc80dab800196ed1dc440955588f3bf8", - "x-ms-correlation-request-id": "30b33c01-6edb-4ab1-a6ff-7448f17394cb", - "x-ms-request-id": "2956b210-e860-469a-a5a5-08d928bc4079", + "x-ms-correlation-request-id": "a9d4d4e6-9686-4035-8b30-0f17affe8b09", + "x-ms-request-id": "8df8d953-102e-4642-9479-70c7a1103d39", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "9012543c2b856ef68f9743448c76df66", "x-ms-return-client-request-id": "true" }, @@ -2912,35 +2486,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:29:46 GMT", + "Date": "Thu, 30 Sep 2021 06:12:10 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "9012543c2b856ef68f9743448c76df66", - "x-ms-correlation-request-id": "1d6f84fa-19cd-4398-b543-7f43c57da58e", - "x-ms-request-id": "cee6102c-16cd-4fb2-bcc0-1389de72db47", + "x-ms-correlation-request-id": "36081f8b-1f24-4228-9e45-5b37a9ad4a01", + "x-ms-request-id": "b09b85e8-267b-434b-a184-b8536bb0145e", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "bfaf12c90c01617c2e244eb40f6fff1a", "x-ms-return-client-request-id": "true" }, @@ -2952,35 +2520,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:29:47 GMT", + "Date": "Thu, 30 Sep 2021 06:12:11 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "bfaf12c90c01617c2e244eb40f6fff1a", - "x-ms-correlation-request-id": "a60c9693-2cfa-44c4-a3e0-0f332cf15e6b", - "x-ms-request-id": "1d691f0a-5bf4-475e-bad4-0ca783a33c30", + "x-ms-correlation-request-id": "6a72a80d-d145-4b48-ad8e-b0e5bdc70a18", + "x-ms-request-id": "acd0ad38-f0e0-43b3-9d5c-d55ff0e8e73b", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a1242d8c131b8d4ee3112d82bd8de265", "x-ms-return-client-request-id": "true" }, @@ -2992,35 +2554,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:29:48 GMT", + "Date": "Thu, 30 Sep 2021 06:12:12 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "a1242d8c131b8d4ee3112d82bd8de265", - "x-ms-correlation-request-id": "5f8a0611-f3c3-4bd9-89a3-93d17ec2ec5e", - "x-ms-request-id": "154335ac-0d26-4b25-8b7a-643cc7068f84", + "x-ms-correlation-request-id": "38921fbe-5cf8-46f3-9d31-77b8c7486a10", + "x-ms-request-id": "a28e9440-edc1-4e9d-ae09-482e6935693b", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "458ca3657bdf2ff7d8b16161dc425e1f", "x-ms-return-client-request-id": "true" }, @@ -3032,35 +2588,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:29:50 GMT", + "Date": "Thu, 30 Sep 2021 06:12:13 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "458ca3657bdf2ff7d8b16161dc425e1f", - "x-ms-correlation-request-id": "2662e376-2df2-414b-a12e-18490a8b89a8", - "x-ms-request-id": "5095512c-e91c-4334-90b7-c2a4cb68f74c", + "x-ms-correlation-request-id": "a30af9cd-612e-49e9-8aaf-55550773718e", + "x-ms-request-id": "3250774f-b562-4abe-84c6-743171cd068b", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5eb728973d51b54ac422dcefdffaa3a0", "x-ms-return-client-request-id": "true" }, @@ -3072,35 +2622,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:29:51 GMT", + "Date": "Thu, 30 Sep 2021 06:12:14 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "5eb728973d51b54ac422dcefdffaa3a0", - "x-ms-correlation-request-id": "c637e501-a313-4e62-9812-dc0eeac16505", - "x-ms-request-id": "9969bbfc-33e1-45c5-b963-be836761d5c9", + "x-ms-correlation-request-id": "d26e3835-446f-4c48-9886-807d81ad9d52", + "x-ms-request-id": "c4afb2ab-405c-47bb-b665-d13c6a770f23", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6c4fe842b9e3103a36f5c96ab1ecb0a0", "x-ms-return-client-request-id": "true" }, @@ -3112,35 +2656,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:29:52 GMT", + "Date": "Thu, 30 Sep 2021 06:12:16 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "6c4fe842b9e3103a36f5c96ab1ecb0a0", - "x-ms-correlation-request-id": "548f1a29-fa5f-47d1-a8a8-4237203cd214", - "x-ms-request-id": "d5a7c2a8-c8b7-483b-9fb4-aaa6f59c4526", + "x-ms-correlation-request-id": "7bae9679-81c9-4d8f-aabb-5a0fd56eea3c", + "x-ms-request-id": "aa2d86d4-0345-46d2-b215-8085fce8d0f6", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "94eb0db383d6271358d681bd9f084fde", "x-ms-return-client-request-id": "true" }, @@ -3152,35 +2690,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:29:53 GMT", + "Date": "Thu, 30 Sep 2021 06:12:17 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "94eb0db383d6271358d681bd9f084fde", - "x-ms-correlation-request-id": "e8fa5630-5cce-4b67-a5eb-63e41e43c7d8", - "x-ms-request-id": "cc340daf-0029-457a-9615-3676202dd30c", + "x-ms-correlation-request-id": "ee5c8f05-063c-4de2-a4c9-4a5afd40b18c", + "x-ms-request-id": "b2994fb3-50a7-4c5a-82cc-58e4623f8742", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f41ec00df2f3dd3beea6285c73e003d7", "x-ms-return-client-request-id": "true" }, @@ -3192,35 +2724,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:29:54 GMT", + "Date": "Thu, 30 Sep 2021 06:12:18 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "f41ec00df2f3dd3beea6285c73e003d7", - "x-ms-correlation-request-id": "32ebee72-c29b-4195-b3a0-fce7d9ff0ca4", - "x-ms-request-id": "9d580043-4005-4c9c-a8b0-aba8b89ebc99", + "x-ms-correlation-request-id": "771a6bfa-c1b1-4c42-86ee-f216359f699b", + "x-ms-request-id": "54812987-161c-429b-afa4-132e0d7d07b8", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d23c3b710e0fbecad427130d387c712d", "x-ms-return-client-request-id": "true" }, @@ -3232,35 +2758,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:29:55 GMT", + "Date": "Thu, 30 Sep 2021 06:12:19 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "d23c3b710e0fbecad427130d387c712d", - "x-ms-correlation-request-id": "8a69c731-85fb-4e5e-8279-e94386fb2320", - "x-ms-request-id": "a09fddde-0ab1-4ba8-bb72-8386f98f28f2", + "x-ms-correlation-request-id": "2b2ace7f-27e9-4162-aebe-055d77e5db81", + "x-ms-request-id": "6a926936-895c-467e-bcab-3b2f06f9f01d", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f15ceba5bccec0add10ea62f5ab7b378", "x-ms-return-client-request-id": "true" }, @@ -3272,35 +2792,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:29:57 GMT", + "Date": "Thu, 30 Sep 2021 06:12:20 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "f15ceba5bccec0add10ea62f5ab7b378", - "x-ms-correlation-request-id": "121d6751-abd8-44ac-ad5a-5ccaefdbcc6f", - "x-ms-request-id": "3fc59ea2-629e-4bf8-ab81-dc143972e949", + "x-ms-correlation-request-id": "37f445ad-3724-45fe-9738-0adc568de9b8", + "x-ms-request-id": "6fe79a5f-a816-4925-bec4-7a24aa61df72", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "634ca9d27dcbfecef55f1fccdf2ea471", "x-ms-return-client-request-id": "true" }, @@ -3312,35 +2826,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:29:58 GMT", + "Date": "Thu, 30 Sep 2021 06:12:22 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "634ca9d27dcbfecef55f1fccdf2ea471", - "x-ms-correlation-request-id": "2571b73c-936e-4ead-9406-fdacb3e74fd1", - "x-ms-request-id": "46291a8a-1267-483f-9261-06d5ceb65e1d", + "x-ms-correlation-request-id": "3e405137-b65e-4c35-8dfc-31f3f698e1c4", + "x-ms-request-id": "5d44c0c8-5555-40fc-9a18-0610894bcaef", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "88b6fa351283b4098e7c0001689b641d", "x-ms-return-client-request-id": "true" }, @@ -3352,35 +2860,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:29:59 GMT", + "Date": "Thu, 30 Sep 2021 06:12:23 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "88b6fa351283b4098e7c0001689b641d", - "x-ms-correlation-request-id": "b794c0f8-4adc-4076-bcb9-a285715ce7e7", - "x-ms-request-id": "9e5a7989-ca4c-493b-b673-9a7917d69687", + "x-ms-correlation-request-id": "ef4cdd68-0811-4dd0-84b6-22af6ad2f0ad", + "x-ms-request-id": "2c035a56-f124-4be4-97fe-e923f4def5ff", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "8f3a9a730d3028621c5dfb6e9de0e0a3", "x-ms-return-client-request-id": "true" }, @@ -3392,35 +2894,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:30:00 GMT", + "Date": "Thu, 30 Sep 2021 06:12:24 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "8f3a9a730d3028621c5dfb6e9de0e0a3", - "x-ms-correlation-request-id": "45c6a7b6-c965-47f4-9677-56c6feb19006", - "x-ms-request-id": "4eb97437-b82f-44ca-a3c0-cd4cf5697b3d", + "x-ms-correlation-request-id": "1be93ee3-fb5e-48b9-85da-1acb9174ea6b", + "x-ms-request-id": "1a92150d-d7ab-4900-94e1-e233b24e742f", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5ffa35692b01bff49f97d54f7dcd965a", "x-ms-return-client-request-id": "true" }, @@ -3432,35 +2928,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:30:01 GMT", + "Date": "Thu, 30 Sep 2021 06:12:25 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "5ffa35692b01bff49f97d54f7dcd965a", - "x-ms-correlation-request-id": "ab4f62ea-2bec-4a52-8cec-14099553f899", - "x-ms-request-id": "f411c7c4-1e54-47b1-aae8-eb4c537b5fe9", + "x-ms-correlation-request-id": "369253a0-e881-447d-85ac-8b5a5048f8a7", + "x-ms-request-id": "caf78582-4163-4627-a2cb-7c73f5829b2d", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "455801fb15f32740988d6b26179b16ad", "x-ms-return-client-request-id": "true" }, @@ -3472,35 +2962,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:30:02 GMT", + "Date": "Thu, 30 Sep 2021 06:12:26 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "455801fb15f32740988d6b26179b16ad", - "x-ms-correlation-request-id": "b74e1ccf-1d48-4ee5-ad89-fdc0fea1c2b2", - "x-ms-request-id": "32b0d1c2-5c54-4a78-8384-e70ca8c69a0a", + "x-ms-correlation-request-id": "b733a855-2925-4722-a830-7deac02a73ec", + "x-ms-request-id": "cf983c8f-dec4-423e-9f69-64d00921572a", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "33975c9b04a0471ca67bef983812ab4e", "x-ms-return-client-request-id": "true" }, @@ -3512,35 +2996,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:30:04 GMT", + "Date": "Thu, 30 Sep 2021 06:12:28 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "33975c9b04a0471ca67bef983812ab4e", - "x-ms-correlation-request-id": "071486e1-25a3-4ebb-94d4-50979d717c11", - "x-ms-request-id": "b3a73471-0bcb-4588-a118-eec8aabb2b33", + "x-ms-correlation-request-id": "dafc44df-a005-42d1-8d9c-cfbf35d83461", + "x-ms-request-id": "1a576cc5-c15c-466c-8cd5-aff36787a18a", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "9b72a1c79b8854aff4d3c673c0cea804", "x-ms-return-client-request-id": "true" }, @@ -3552,35 +3030,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:30:05 GMT", + "Date": "Thu, 30 Sep 2021 06:12:29 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "9b72a1c79b8854aff4d3c673c0cea804", - "x-ms-correlation-request-id": "1a7ccaeb-0b61-465f-9511-2262c36a05f8", - "x-ms-request-id": "9b4c64cb-81e4-488d-a228-221332456c12", + "x-ms-correlation-request-id": "19a36b5a-5ca3-437b-b9c8-f631fab9b190", + "x-ms-request-id": "7a852adc-ddd4-408b-a37d-2dc96343a18b", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "20b327806336f7b9e5119e7825a7ee86", "x-ms-return-client-request-id": "true" }, @@ -3592,35 +3064,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:30:06 GMT", + "Date": "Thu, 30 Sep 2021 06:12:30 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "20b327806336f7b9e5119e7825a7ee86", - "x-ms-correlation-request-id": "1da8960d-5a6d-4bb7-a043-c0e9ce74042d", - "x-ms-request-id": "8014e9a9-9c5c-46f1-9937-c00c354aa2e8", + "x-ms-correlation-request-id": "038812e7-f5b1-460d-a67f-aa36119a253b", + "x-ms-request-id": "e070cf7a-de83-4b63-8880-0e4dabce1c9b", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "755f1ce27b280025ad423ecd3da887d7", "x-ms-return-client-request-id": "true" }, @@ -3632,35 +3098,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:30:07 GMT", + "Date": "Thu, 30 Sep 2021 06:12:31 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "755f1ce27b280025ad423ecd3da887d7", - "x-ms-correlation-request-id": "fa886731-57d0-4800-acc5-75df7933733d", - "x-ms-request-id": "94edbd6f-cf72-44bc-b6bd-e5c4c25049c0", + "x-ms-correlation-request-id": "01910be4-3331-44b3-8514-0ef056eee249", + "x-ms-request-id": "ff5efc28-6644-4608-8174-213ea4dff832", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "1018ead28a5e6318e77bb576fc372e4d", "x-ms-return-client-request-id": "true" }, @@ -3672,35 +3132,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:30:08 GMT", + "Date": "Thu, 30 Sep 2021 06:12:32 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "1018ead28a5e6318e77bb576fc372e4d", - "x-ms-correlation-request-id": "ab19d526-fe6e-4076-87ac-8fe3bb509fe7", - "x-ms-request-id": "9c0830ce-e3ee-47c3-9e6c-d369a5fddb66", + "x-ms-correlation-request-id": "b9f8595b-d4b8-406d-8342-5c07f41ca7d8", + "x-ms-request-id": "ce3edb0d-9a87-442d-b289-9593e77b7756", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a39040e4326f05db02b373f325ebb93d", "x-ms-return-client-request-id": "true" }, @@ -3712,35 +3166,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:30:09 GMT", + "Date": "Thu, 30 Sep 2021 06:12:34 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "a39040e4326f05db02b373f325ebb93d", - "x-ms-correlation-request-id": "6fe2773a-7d72-4589-a591-9e314652095d", - "x-ms-request-id": "fe14ab06-85a3-4f5d-a614-8c9150883f38", + "x-ms-correlation-request-id": "10614d6e-9cb6-49e2-b4c2-66aabb2b2116", + "x-ms-request-id": "ca345a14-c2e4-4efb-bfe8-f77b49e21ade", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "3aa5c789de8f582703fb8eadc5ae0375", "x-ms-return-client-request-id": "true" }, @@ -3752,35 +3200,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:30:11 GMT", + "Date": "Thu, 30 Sep 2021 06:12:35 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "3aa5c789de8f582703fb8eadc5ae0375", - "x-ms-correlation-request-id": "bb8078c7-4fae-4c30-a6ac-32ee7efa61d8", - "x-ms-request-id": "08f23701-ff5e-431c-9049-02b2c200e80f", + "x-ms-correlation-request-id": "71d4f731-a887-4fd6-9703-27bf907ca687", + "x-ms-request-id": "61ac3113-29e3-44d7-8669-ec155f41fb1e", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "fce9f114e318a0680f120eab17253efb", "x-ms-return-client-request-id": "true" }, @@ -3792,35 +3234,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:30:12 GMT", + "Date": "Thu, 30 Sep 2021 06:12:36 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "fce9f114e318a0680f120eab17253efb", - "x-ms-correlation-request-id": "81c13bdf-437a-4ad3-b733-3ad176066868", - "x-ms-request-id": "aeb64039-3ac9-40fb-8fa3-129a54f7e54e", + "x-ms-correlation-request-id": "42968ab8-45e8-4a0e-9f23-8bacb249380d", + "x-ms-request-id": "febe321c-41ae-45ec-8d3b-de6b3b8a5e15", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "35ed78c1f39105bd1938a073a42e3f53", "x-ms-return-client-request-id": "true" }, @@ -3832,35 +3268,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:30:13 GMT", + "Date": "Thu, 30 Sep 2021 06:12:37 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "35ed78c1f39105bd1938a073a42e3f53", - "x-ms-correlation-request-id": "0e2cfca6-827a-4ca2-9fc0-842d60af17a6", - "x-ms-request-id": "eb1432eb-20f1-4baf-a2e6-4a88f1e38c91", + "x-ms-correlation-request-id": "f3d7de19-3e7d-4841-8023-59f9d19c0150", + "x-ms-request-id": "e7a89ae2-ffed-48b0-b406-2578af05803a", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "33dffeafbc02a6245e052b7ccf7c41de", "x-ms-return-client-request-id": "true" }, @@ -3872,35 +3302,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:30:14 GMT", + "Date": "Thu, 30 Sep 2021 06:12:38 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "33dffeafbc02a6245e052b7ccf7c41de", - "x-ms-correlation-request-id": "026a99a6-8a45-48fc-98e3-6879f2252dc4", - "x-ms-request-id": "e6005254-608d-4475-823e-39cc7e818f31", + "x-ms-correlation-request-id": "6f47c7b5-7842-4edf-979c-b0318d6ceebe", + "x-ms-request-id": "d9c1d7e4-fc3b-46d1-b9f3-84063df329bf", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "4cec92bccec120e333e3e3e043f4fbe0", "x-ms-return-client-request-id": "true" }, @@ -3912,35 +3336,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:30:15 GMT", + "Date": "Thu, 30 Sep 2021 06:12:40 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "4cec92bccec120e333e3e3e043f4fbe0", - "x-ms-correlation-request-id": "d49021aa-0712-4258-afc2-38ebcd04d15f", - "x-ms-request-id": "a180dd68-1426-4760-8656-1dbf762d771a", + "x-ms-correlation-request-id": "e52fe809-6bc3-4e43-acf0-bd0bf8c7a787", + "x-ms-request-id": "62341104-8721-49f9-88a4-71a43b797f26", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "19fbbbd30b4504f95446d68cc841369c", "x-ms-return-client-request-id": "true" }, @@ -3952,35 +3370,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:30:16 GMT", + "Date": "Thu, 30 Sep 2021 06:12:41 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "19fbbbd30b4504f95446d68cc841369c", - "x-ms-correlation-request-id": "ef4a1adf-8777-498f-b223-40e33f2854ea", - "x-ms-request-id": "37085d8f-b723-4c76-a50a-92c6fbd1535f", + "x-ms-correlation-request-id": "c8e9d48f-8ca5-4e68-810b-73f5aa8a0f6b", + "x-ms-request-id": "57ec75cd-420e-4315-8fd1-b6259895a393", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "11b6c1f6f242e0911abfff1ed8446369", "x-ms-return-client-request-id": "true" }, @@ -3992,35 +3404,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:30:17 GMT", + "Date": "Thu, 30 Sep 2021 06:12:42 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "11b6c1f6f242e0911abfff1ed8446369", - "x-ms-correlation-request-id": "344e151e-e847-46e6-b5ee-80dcf5a6a296", - "x-ms-request-id": "7f7d27f7-e512-4ddb-bb18-59f29d7efa03", + "x-ms-correlation-request-id": "ef6f1555-91d5-42ac-b485-c3123a86e56d", + "x-ms-request-id": "9dbd4ced-7301-4bbd-986f-c3cd8b55d9f3", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "14a94a092880b19899e7f87bf75757f2", "x-ms-return-client-request-id": "true" }, @@ -4032,35 +3438,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:30:19 GMT", + "Date": "Thu, 30 Sep 2021 06:12:44 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "14a94a092880b19899e7f87bf75757f2", - "x-ms-correlation-request-id": "816d11b9-3f2d-4b35-a52f-f9b0607e9468", - "x-ms-request-id": "3b7ec21a-0274-4d0e-8e89-512c1dbe2578", + "x-ms-correlation-request-id": "d98ca15c-2246-479d-8ee7-fdb0d1e669a2", + "x-ms-request-id": "b912171a-17fb-45ee-bda9-8eece9b4a782", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "82e947adea3de09e291bfe860bda2b10", "x-ms-return-client-request-id": "true" }, @@ -4072,35 +3472,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:30:20 GMT", + "Date": "Thu, 30 Sep 2021 06:12:45 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "82e947adea3de09e291bfe860bda2b10", - "x-ms-correlation-request-id": "4c6533d1-f0bc-4ed9-a553-3d2c2aeead04", - "x-ms-request-id": "d170c8b8-25fb-4be7-8664-6b60a6c62dd7", + "x-ms-correlation-request-id": "93c08613-c482-474c-9af9-89fb6d118512", + "x-ms-request-id": "47d9306c-e9dc-495c-935e-1f6b2e8eec5d", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7d826de32198ce1c2805775af916e9c3", "x-ms-return-client-request-id": "true" }, @@ -4112,35 +3506,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:30:21 GMT", + "Date": "Thu, 30 Sep 2021 06:12:46 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "7d826de32198ce1c2805775af916e9c3", - "x-ms-correlation-request-id": "4c1500df-372a-4598-96ed-b9490b9c8a3c", - "x-ms-request-id": "11c1a3a9-6ff8-4e98-b5b3-505ec3cb7e1c", + "x-ms-correlation-request-id": "751ad797-2ed8-4dfd-a8c6-9cbe9bc36304", + "x-ms-request-id": "249eaffd-bcb7-4d39-9e31-ca0a8a7e5fcb", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "91700d67e15a1f2babc8eb652912a6be", "x-ms-return-client-request-id": "true" }, @@ -4152,35 +3540,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:30:22 GMT", + "Date": "Thu, 30 Sep 2021 06:12:47 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "91700d67e15a1f2babc8eb652912a6be", - "x-ms-correlation-request-id": "6a1d336a-bce0-4bc8-ac2f-88bf95ba8131", - "x-ms-request-id": "b806056f-c520-49fe-b4ae-8650dfcf245d", + "x-ms-correlation-request-id": "1f40b087-c6ab-4176-a919-c7f74d797fa1", + "x-ms-request-id": "afd6532a-a9f5-4340-910d-11078b13d3ef", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "8a97e8bbdad48c5a2a1b59387244e612", "x-ms-return-client-request-id": "true" }, @@ -4192,35 +3574,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:30:23 GMT", + "Date": "Thu, 30 Sep 2021 06:12:48 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "8a97e8bbdad48c5a2a1b59387244e612", - "x-ms-correlation-request-id": "1a980ee9-a079-4a01-a475-356cfe1cc162", - "x-ms-request-id": "0486fbc7-7b70-447b-a1dc-1657072116db", + "x-ms-correlation-request-id": "b7cc0383-5c2d-4ced-b7d9-2599224304f1", + "x-ms-request-id": "e5b5f191-4201-4130-9d73-9abdb49b1394", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "fd1f3b31996a02b54263d1cf36b7a416", "x-ms-return-client-request-id": "true" }, @@ -4232,35 +3608,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:30:24 GMT", + "Date": "Thu, 30 Sep 2021 06:12:50 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "fd1f3b31996a02b54263d1cf36b7a416", - "x-ms-correlation-request-id": "0796bc33-5cc7-4009-9794-c0b020fdfe18", - "x-ms-request-id": "8d436428-10eb-4f8d-a239-fbd5fac9a9f7", + "x-ms-correlation-request-id": "5a3a8fae-29a6-4ea6-8b72-fe1bdb146a62", + "x-ms-request-id": "e2423fed-d61c-4a0a-93e5-9e6f0509e3d2", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "119fb85e5f7f8ceeb3e4673f87f2ac67", "x-ms-return-client-request-id": "true" }, @@ -4272,35 +3642,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:30:26 GMT", + "Date": "Thu, 30 Sep 2021 06:12:51 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "119fb85e5f7f8ceeb3e4673f87f2ac67", - "x-ms-correlation-request-id": "2395b5fe-79ec-436c-bddb-1faa3b0f6618", - "x-ms-request-id": "03ec4a01-07aa-4ec9-91bf-d11ca78a2107", + "x-ms-correlation-request-id": "86ea40ca-cb9a-451a-aa12-c9c5570279cc", + "x-ms-request-id": "be6dd1ba-7001-41b4-9cef-c60bbb4663e0", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ee33d8e1a9f2215432954871098a5573", "x-ms-return-client-request-id": "true" }, @@ -4312,35 +3676,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:30:27 GMT", + "Date": "Thu, 30 Sep 2021 06:12:52 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "ee33d8e1a9f2215432954871098a5573", - "x-ms-correlation-request-id": "05cc721a-ede0-47e1-90cf-1521c3b38322", - "x-ms-request-id": "fc9b2c32-98fa-4935-aa76-444280a3f57f", + "x-ms-correlation-request-id": "428ffb62-9b3c-4ea0-a6a5-ab633988804f", + "x-ms-request-id": "3c1a67a5-48f5-4de6-9b2c-b4fc93dc07ba", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "bada4376d5a5d2934c934a8532767a4f", "x-ms-return-client-request-id": "true" }, @@ -4352,35 +3710,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:30:28 GMT", + "Date": "Thu, 30 Sep 2021 06:12:53 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "bada4376d5a5d2934c934a8532767a4f", - "x-ms-correlation-request-id": "6973957b-c398-4666-822e-6e4167c9147a", - "x-ms-request-id": "04962322-22be-4b75-8c15-4ff437487c2a", + "x-ms-correlation-request-id": "08bcd59b-c7c9-4ffc-afdf-423c6a558441", + "x-ms-request-id": "26719f74-a99b-4336-b135-bb9822d9de6d", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5ded6ab7b683b523647ddee9167d8328", "x-ms-return-client-request-id": "true" }, @@ -4392,35 +3744,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:30:29 GMT", + "Date": "Thu, 30 Sep 2021 06:12:54 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "5ded6ab7b683b523647ddee9167d8328", - "x-ms-correlation-request-id": "f3c21a40-c3b3-4330-9b26-3340cf8c24ec", - "x-ms-request-id": "788b4575-41e2-4384-b238-6e63a0982745", + "x-ms-correlation-request-id": "8512e753-c09b-453c-aa4a-edbcedd31f6d", + "x-ms-request-id": "01e9e582-571f-4981-9f49-8285f609bedf", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "43c9f38ff2180cc24560a15f5ecfeebc", "x-ms-return-client-request-id": "true" }, @@ -4432,35 +3778,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:30:30 GMT", + "Date": "Thu, 30 Sep 2021 06:12:57 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "43c9f38ff2180cc24560a15f5ecfeebc", - "x-ms-correlation-request-id": "3a4bb26d-9a66-451c-ae1e-cedd8704b971", - "x-ms-request-id": "db056b29-ea79-4a49-aa23-ae4eaa01eb20", + "x-ms-correlation-request-id": "354d4d93-a453-4fe9-b9e0-93eb5b0a46d5", + "x-ms-request-id": "77ba58f0-955d-4f5e-942a-308baf6b7ab1", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "9ebaf81af79dbfef1f245527f6a9bbcf", "x-ms-return-client-request-id": "true" }, @@ -4472,35 +3812,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:30:31 GMT", + "Date": "Thu, 30 Sep 2021 06:12:58 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "9ebaf81af79dbfef1f245527f6a9bbcf", - "x-ms-correlation-request-id": "72fc16b2-4a4e-4113-ba9a-c77cf768e5da", - "x-ms-request-id": "d518b4a2-37e7-4297-841e-c2ff192e38db", + "x-ms-correlation-request-id": "96f1a4bf-0745-4cc0-9449-ffba5f5fd9c4", + "x-ms-request-id": "9e4d34b6-f5c6-4fe3-bc99-498ba263ab14", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "3ff6220f37adc436a7e0182315c45695", "x-ms-return-client-request-id": "true" }, @@ -4512,35 +3846,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:30:33 GMT", + "Date": "Thu, 30 Sep 2021 06:12:59 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "3ff6220f37adc436a7e0182315c45695", - "x-ms-correlation-request-id": "2229b502-87a5-4cf7-aecd-da59cf92490e", - "x-ms-request-id": "977d4a9c-1392-4f55-8257-fc17c89a45c7", + "x-ms-correlation-request-id": "f0c105ba-9e20-4e35-8461-d0544e84a44b", + "x-ms-request-id": "8277f536-b29d-499e-80be-ffcdb8d7b905", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "1ecf228ee4c2978a030923f39c9a159c", "x-ms-return-client-request-id": "true" }, @@ -4552,35 +3880,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:30:34 GMT", + "Date": "Thu, 30 Sep 2021 06:13:00 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "1ecf228ee4c2978a030923f39c9a159c", - "x-ms-correlation-request-id": "a55186d1-868e-465f-8f82-ae4bb15668e8", - "x-ms-request-id": "b047e7c7-6e7e-4e02-865b-0c8ccf1faad2", + "x-ms-correlation-request-id": "133aacfb-0fb7-475a-9e6c-4bb58dd812b5", + "x-ms-request-id": "a7882fcb-c671-4d6a-a6f7-2f5ed55e23ab", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "3c4fd1a4afd9e30ec1f5f7bcdfccaa5b", "x-ms-return-client-request-id": "true" }, @@ -4592,35 +3914,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:30:35 GMT", + "Date": "Thu, 30 Sep 2021 06:13:01 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "3c4fd1a4afd9e30ec1f5f7bcdfccaa5b", - "x-ms-correlation-request-id": "38cd84d5-3f1e-41b6-af24-077902cce10c", - "x-ms-request-id": "46f115d7-94e5-47c9-aa69-3be134ea9b65", + "x-ms-correlation-request-id": "35ed5259-8769-4e6f-8119-74f38dbe0acb", + "x-ms-request-id": "1ca42603-e06b-4fa5-981b-238a35eda5be", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d499c0cd9dda2b0d975e3ba31343280d", "x-ms-return-client-request-id": "true" }, @@ -4632,35 +3948,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:30:36 GMT", + "Date": "Thu, 30 Sep 2021 06:13:03 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "d499c0cd9dda2b0d975e3ba31343280d", - "x-ms-correlation-request-id": "ebf230c7-09f2-4075-95e1-6fe37a5ec517", - "x-ms-request-id": "068b08c6-af7a-42e0-aa78-8444401e4df1", + "x-ms-correlation-request-id": "5faab1bd-4c98-4bed-b789-7f522d723aba", + "x-ms-request-id": "f7d84a4b-8cef-44cd-ad33-301737011b32", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "437e7ccb1a74dfbb13eb5ccdedceb737", "x-ms-return-client-request-id": "true" }, @@ -4672,35 +3982,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:30:37 GMT", + "Date": "Thu, 30 Sep 2021 06:13:04 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "437e7ccb1a74dfbb13eb5ccdedceb737", - "x-ms-correlation-request-id": "8f778758-5400-4804-ba20-8c1e3921e9ee", - "x-ms-request-id": "48bf3ddc-daa5-4748-b608-1af765b483e1", + "x-ms-correlation-request-id": "232ad7af-6792-4e75-916e-788b308d8be2", + "x-ms-request-id": "89a1fb4d-7733-4e55-a221-b32a1afe3173", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "db25c85f400006c1c424a47a736ad07e", "x-ms-return-client-request-id": "true" }, @@ -4712,35 +4016,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:30:38 GMT", + "Date": "Thu, 30 Sep 2021 06:13:05 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "db25c85f400006c1c424a47a736ad07e", - "x-ms-correlation-request-id": "7ce61a4b-bf11-40ab-8be6-c959a6b08287", - "x-ms-request-id": "925cd60b-4028-4c27-b23d-ac42ec06f243", + "x-ms-correlation-request-id": "05d7e0f4-07ef-4273-87af-f8ade00c291a", + "x-ms-request-id": "06077013-0217-4f20-bcee-20f047a0e982", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "63f1e9cd664db3e704bac1ee413f3dc9", "x-ms-return-client-request-id": "true" }, @@ -4752,35 +4050,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:30:40 GMT", + "Date": "Thu, 30 Sep 2021 06:13:07 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "63f1e9cd664db3e704bac1ee413f3dc9", - "x-ms-correlation-request-id": "a582ac54-a528-4aa5-b7cf-5a18f94033b9", - "x-ms-request-id": "f5c83ea5-27ae-406e-b307-25898bdb5f0d", + "x-ms-correlation-request-id": "9d3b177a-35fb-4c20-a7da-b04032728943", + "x-ms-request-id": "8cc7d18f-15a3-4ae0-a51c-cd0b221ca59b", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "4a4404a64c1d8a0cba787f4f76416ba8", "x-ms-return-client-request-id": "true" }, @@ -4792,35 +4084,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:30:41 GMT", + "Date": "Thu, 30 Sep 2021 06:13:08 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "4a4404a64c1d8a0cba787f4f76416ba8", - "x-ms-correlation-request-id": "8f161498-a192-4806-b79c-342f25857447", - "x-ms-request-id": "07df090a-4541-483a-a4f7-43f26f8ecf19", + "x-ms-correlation-request-id": "6079bf61-fdd9-4991-bd14-686e692e2413", + "x-ms-request-id": "e2229e93-1148-4ab5-8c49-e2a51d3a53fa", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "0300dd1b54ddf8e9e072d7467fd3c484", "x-ms-return-client-request-id": "true" }, @@ -4832,35 +4118,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:30:42 GMT", + "Date": "Thu, 30 Sep 2021 06:13:09 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "0300dd1b54ddf8e9e072d7467fd3c484", - "x-ms-correlation-request-id": "c4b95b90-035b-433b-9d3b-87b7ee2c37e0", - "x-ms-request-id": "82d9042f-c54f-4504-b06d-b5eac79ff19d", + "x-ms-correlation-request-id": "104adaa8-347f-4901-b835-ee9e9b4211cb", + "x-ms-request-id": "f2629c8d-1149-4540-aeab-6ab0bba38f46", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6fd3dbe785268061dc66a8d5e7983dc3", "x-ms-return-client-request-id": "true" }, @@ -4872,35 +4152,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:30:43 GMT", + "Date": "Thu, 30 Sep 2021 06:13:10 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "6fd3dbe785268061dc66a8d5e7983dc3", - "x-ms-correlation-request-id": "a063a134-428f-4536-b1c3-935328866b12", - "x-ms-request-id": "a3675923-13ef-46f9-9ccd-8961f4407b8b", + "x-ms-correlation-request-id": "88ee0b25-1d90-4b91-b2c6-ca98d11e3b3b", + "x-ms-request-id": "7e386616-bcc8-47cc-bde6-425b848b0381", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "64d3184f393f52ec1b4c6aaa75c50ae7", "x-ms-return-client-request-id": "true" }, @@ -4912,35 +4186,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:30:44 GMT", + "Date": "Thu, 30 Sep 2021 06:13:11 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "64d3184f393f52ec1b4c6aaa75c50ae7", - "x-ms-correlation-request-id": "3d46c485-d937-4661-9a6a-62de8c45ad71", - "x-ms-request-id": "73b6f3f5-4820-4def-b857-ca592ef350cf", + "x-ms-correlation-request-id": "ddc1e2ac-ce14-4c67-a4cd-4049fdf86e3f", + "x-ms-request-id": "0836d4d1-2c3d-418b-9ccd-68b13c64e960", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "9b67fab3fb6d95827b7f2676ab131047", "x-ms-return-client-request-id": "true" }, @@ -4952,35 +4220,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:30:45 GMT", + "Date": "Thu, 30 Sep 2021 06:13:13 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "9b67fab3fb6d95827b7f2676ab131047", - "x-ms-correlation-request-id": "a6fd338d-853f-414b-bfbf-c115a1521777", - "x-ms-request-id": "30a5621f-8641-4691-bf50-76e5a387840e", + "x-ms-correlation-request-id": "3b019711-3b03-4978-a82a-cdd7745c7899", + "x-ms-request-id": "13eba2d1-96cb-457d-8e88-0a1cbd015731", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "66f713356000ad45ee8154d91bb60b17", "x-ms-return-client-request-id": "true" }, @@ -4992,35 +4254,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:30:47 GMT", + "Date": "Thu, 30 Sep 2021 06:13:14 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "66f713356000ad45ee8154d91bb60b17", - "x-ms-correlation-request-id": "a701b4c5-e130-4722-b615-e7030861ab3b", - "x-ms-request-id": "68fdf240-cec9-4aa3-9ed4-cd0ae3f7be52", + "x-ms-correlation-request-id": "5f871c99-c14a-48b9-bb22-b8a0085edc55", + "x-ms-request-id": "f0f80cf5-5d9f-41fb-babd-bed7197dcf1f", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ed22c15ba2305355963de8bf1275a607", "x-ms-return-client-request-id": "true" }, @@ -5032,35 +4288,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:30:48 GMT", + "Date": "Thu, 30 Sep 2021 06:13:15 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "ed22c15ba2305355963de8bf1275a607", - "x-ms-correlation-request-id": "8b49918a-01a5-4a72-ae7a-89faecbd46be", - "x-ms-request-id": "86a0d2f8-d4b7-4fa5-85f0-cfa527527122", + "x-ms-correlation-request-id": "2c201cb5-bd41-4cb4-bc54-ecedba66c415", + "x-ms-request-id": "eca6eaaf-ae70-42db-ba13-ed5c8306804b", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6175223ba4ce52e6b5b9aceca7a87ac5", "x-ms-return-client-request-id": "true" }, @@ -5072,35 +4322,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:30:49 GMT", + "Date": "Thu, 30 Sep 2021 06:13:16 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "6175223ba4ce52e6b5b9aceca7a87ac5", - "x-ms-correlation-request-id": "bd6815f2-2c67-4d3a-af4d-91b4d8c9b558", - "x-ms-request-id": "74a54b6c-7fb0-4970-a8b6-687936404670", + "x-ms-correlation-request-id": "6efea346-8b4a-41a6-9384-2bab226f02ee", + "x-ms-request-id": "848ccdd4-f1b1-4854-9325-7e9721b74a33", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e91b0f7423f09316bea4d0c277859b78", "x-ms-return-client-request-id": "true" }, @@ -5112,35 +4356,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:30:50 GMT", + "Date": "Thu, 30 Sep 2021 06:13:18 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "e91b0f7423f09316bea4d0c277859b78", - "x-ms-correlation-request-id": "508cd8db-43ad-41f0-9a63-1ad6281581fe", - "x-ms-request-id": "eb99511c-886a-4745-b5fe-93dfbc2ba994", + "x-ms-correlation-request-id": "fb7b0797-140a-4722-b069-29735e8daab1", + "x-ms-request-id": "04b09a12-ee26-48ab-8701-a909d9731b59", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f89e4cdaa940b749dbcf3776f569abed", "x-ms-return-client-request-id": "true" }, @@ -5152,35 +4390,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:30:51 GMT", + "Date": "Thu, 30 Sep 2021 06:13:19 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "f89e4cdaa940b749dbcf3776f569abed", - "x-ms-correlation-request-id": "df680122-08b5-493c-a1cf-8d766cba1bbd", - "x-ms-request-id": "a0be241c-9419-4d90-ae2c-2e7753efb6d4", + "x-ms-correlation-request-id": "44f1747a-dc98-40c9-86de-c2260cee232c", + "x-ms-request-id": "dd5cd9d7-7c50-43e9-a107-18b8e81c2136", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "024a23c3bd5a17160be2a329d324db2f", "x-ms-return-client-request-id": "true" }, @@ -5192,35 +4424,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:30:52 GMT", + "Date": "Thu, 30 Sep 2021 06:13:20 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "024a23c3bd5a17160be2a329d324db2f", - "x-ms-correlation-request-id": "e23c3473-e9f0-4064-aaac-5434d3356557", - "x-ms-request-id": "cbb2ba32-5dd6-4004-812c-d3207cef9ee4", + "x-ms-correlation-request-id": "534953bb-021d-411d-97b8-cb011024e82b", + "x-ms-request-id": "d4f5cc7a-336b-44c8-afe4-e18ebf90a673", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5b11331e810acb84c6630e21eb9f9d54", "x-ms-return-client-request-id": "true" }, @@ -5232,35 +4458,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:30:54 GMT", + "Date": "Thu, 30 Sep 2021 06:13:21 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "5b11331e810acb84c6630e21eb9f9d54", - "x-ms-correlation-request-id": "7aa51b47-46f0-4fb1-ac10-a669e4bcafe2", - "x-ms-request-id": "9c7a5f32-9564-4aa1-ae4b-bc784e2fdd2f", + "x-ms-correlation-request-id": "06f7b9f7-3429-4140-96d2-36cfc025e864", + "x-ms-request-id": "f27d376f-c25e-4da5-a7b5-6cdef2c05371", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "53ffe2f8983b1d1e3587ed5e051fe3b6", "x-ms-return-client-request-id": "true" }, @@ -5272,35 +4492,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:30:55 GMT", + "Date": "Thu, 30 Sep 2021 06:13:23 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "53ffe2f8983b1d1e3587ed5e051fe3b6", - "x-ms-correlation-request-id": "cc1a4368-f07c-4373-8747-864860efea59", - "x-ms-request-id": "e1ca0fac-4ffa-4f66-8a59-e1962eb94ed4", + "x-ms-correlation-request-id": "643865c6-ba28-46ca-b030-6841f4308048", + "x-ms-request-id": "08af2fd8-e515-4214-b8aa-268fd9234f20", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c25808f4505741e39f7f3cf7aef52b6b", "x-ms-return-client-request-id": "true" }, @@ -5312,35 +4526,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:30:56 GMT", + "Date": "Thu, 30 Sep 2021 06:13:24 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "c25808f4505741e39f7f3cf7aef52b6b", - "x-ms-correlation-request-id": "c9d2c025-bbb6-4a40-891e-65ad122aa677", - "x-ms-request-id": "7651cce0-634f-4325-90e5-5263f1ac0c9e", + "x-ms-correlation-request-id": "ed6ad444-022d-4e95-aaea-b3aa8a2a9a83", + "x-ms-request-id": "5ab60e89-ab0c-4f5e-ac7f-b8cc47a022d4", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f1304e45872586f415f325829425c5a7", "x-ms-return-client-request-id": "true" }, @@ -5352,35 +4560,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:30:57 GMT", + "Date": "Thu, 30 Sep 2021 06:13:25 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "f1304e45872586f415f325829425c5a7", - "x-ms-correlation-request-id": "30ff67fb-2697-4e38-92c3-a0485804b3db", - "x-ms-request-id": "f93a2bb3-e90e-4777-8590-8aff2e4e7bec", + "x-ms-correlation-request-id": "5353f236-5cb8-42e4-9ef9-41ba30774317", + "x-ms-request-id": "0ed52ea6-d67e-4bd7-bf11-06eef380d88b", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e32d5880db47a8fdfebdb4bc5c276f40", "x-ms-return-client-request-id": "true" }, @@ -5392,35 +4594,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:30:58 GMT", + "Date": "Thu, 30 Sep 2021 06:13:26 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "e32d5880db47a8fdfebdb4bc5c276f40", - "x-ms-correlation-request-id": "93bc7ebf-ebed-49b2-af0b-543136598883", - "x-ms-request-id": "54106984-db72-465e-9a40-0dbe32bbc9d3", + "x-ms-correlation-request-id": "892e4e8d-dbf6-43c3-8685-ed016f57038b", + "x-ms-request-id": "21259ec5-0454-44bd-9157-e3816fc5ae6f", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b719815bf2ee6c9114d1ac632b60ad79", "x-ms-return-client-request-id": "true" }, @@ -5432,35 +4628,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:30:59 GMT", + "Date": "Thu, 30 Sep 2021 06:13:27 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "b719815bf2ee6c9114d1ac632b60ad79", - "x-ms-correlation-request-id": "34289f87-b184-40f2-9120-5c819a209cda", - "x-ms-request-id": "984561b9-1bbe-4aec-88c9-5c85f156b0d6", + "x-ms-correlation-request-id": "ec8185d5-f313-4bd3-9102-2a599ce5f7dc", + "x-ms-request-id": "510cc120-c557-41a1-8cc6-5f606444cfc1", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "567695b948c869235188f267d2372aee", "x-ms-return-client-request-id": "true" }, @@ -5472,35 +4662,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:31:01 GMT", + "Date": "Thu, 30 Sep 2021 06:13:29 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "567695b948c869235188f267d2372aee", - "x-ms-correlation-request-id": "f4cbe216-f9a7-46ea-9bfe-b188cd43126e", - "x-ms-request-id": "312f2bc6-8e90-4ee2-a6fd-72b46c45abe5", + "x-ms-correlation-request-id": "c8774c83-d037-4523-b955-9909ad872051", + "x-ms-request-id": "5e32af86-11ae-4b0c-9f15-fcb4514aa74a", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "1327e5840e0c8db8c6c0ce752e997c9e", "x-ms-return-client-request-id": "true" }, @@ -5512,35 +4696,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:31:02 GMT", + "Date": "Thu, 30 Sep 2021 06:13:30 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "1327e5840e0c8db8c6c0ce752e997c9e", - "x-ms-correlation-request-id": "5d97d7c6-b4b4-4138-bcca-809891a724cc", - "x-ms-request-id": "60ac1a43-d0ef-4782-995c-88af6231f6c8", + "x-ms-correlation-request-id": "182796e0-86be-4eac-a73e-91aa79b1b301", + "x-ms-request-id": "b6eafe20-331c-4474-94f1-b33480130622", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c7023b1018b013775daf6566002999dc", "x-ms-return-client-request-id": "true" }, @@ -5552,35 +4730,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:31:03 GMT", + "Date": "Thu, 30 Sep 2021 06:13:31 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "c7023b1018b013775daf6566002999dc", - "x-ms-correlation-request-id": "9ce9901d-5bf8-4933-a28a-8c1068aebbfc", - "x-ms-request-id": "a5accdc0-09e7-42c6-8fbc-a25c9c3a68a9", + "x-ms-correlation-request-id": "df687bee-db28-4bef-865c-7c990fdc0ec6", + "x-ms-request-id": "b4b73c86-9cb5-4821-8ed3-220c41a5538a", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "45dfbea79939aa6cdce98f0779ae3bb8", "x-ms-return-client-request-id": "true" }, @@ -5592,35 +4764,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:31:04 GMT", + "Date": "Thu, 30 Sep 2021 06:13:33 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "45dfbea79939aa6cdce98f0779ae3bb8", - "x-ms-correlation-request-id": "b02a742b-1c47-4116-bdc0-47e0999732ec", - "x-ms-request-id": "040bb906-837c-464c-8a1b-f1365c43e336", + "x-ms-correlation-request-id": "7da0d089-11b9-4e41-8d01-db7734f3f52a", + "x-ms-request-id": "4d0ba036-d206-4bad-b8f8-d9349a75988b", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "9757540b63346b3e6d13b55da8518d9d", "x-ms-return-client-request-id": "true" }, @@ -5632,35 +4798,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:31:05 GMT", + "Date": "Thu, 30 Sep 2021 06:13:34 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "9757540b63346b3e6d13b55da8518d9d", - "x-ms-correlation-request-id": "ff18044a-4fc0-4ced-ae1f-cee11d67b83b", - "x-ms-request-id": "763bdeee-2007-4a19-b173-5713f78cb436", + "x-ms-correlation-request-id": "04732c08-a0c9-4750-90fc-a905c1bb5213", + "x-ms-request-id": "48c1fc39-44a3-48f1-bfb0-bd06632b3ac9", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "70cef12637b97664ce58eac6896f9aaf", "x-ms-return-client-request-id": "true" }, @@ -5672,35 +4832,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:31:06 GMT", + "Date": "Thu, 30 Sep 2021 06:13:35 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "70cef12637b97664ce58eac6896f9aaf", - "x-ms-correlation-request-id": "c7f79059-87a1-4cda-a789-7f31e326f89d", - "x-ms-request-id": "d2e080a3-1471-4fab-8b7b-517084f9ce3b", + "x-ms-correlation-request-id": "13139d72-cdb5-4f2a-af7e-b40c67a4bda7", + "x-ms-request-id": "1cee140b-2f6c-44a6-8c96-4144617f427b", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ac5aad7402d244a88073d726e40f028a", "x-ms-return-client-request-id": "true" }, @@ -5712,35 +4866,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:31:08 GMT", + "Date": "Thu, 30 Sep 2021 06:13:36 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "ac5aad7402d244a88073d726e40f028a", - "x-ms-correlation-request-id": "a38532d8-31ee-4cc2-8250-f538d72b7322", - "x-ms-request-id": "22d1b65e-51d0-447c-884c-8b1c9d23c531", + "x-ms-correlation-request-id": "d876b717-40e6-4dfc-8a97-84378958ca07", + "x-ms-request-id": "c8e51de9-382f-44c9-b2a8-aa09a761dae9", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "87e1f25ccbdfd4feefe0c8dc7977e2fe", "x-ms-return-client-request-id": "true" }, @@ -5752,155 +4900,152 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:31:09 GMT", + "Date": "Thu, 30 Sep 2021 06:13:38 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "87e1f25ccbdfd4feefe0c8dc7977e2fe", - "x-ms-correlation-request-id": "ce565f87-c09f-4dc4-8995-b578446b0ca0", - "x-ms-request-id": "694c2838-4215-403a-af96-c59ec846307f", + "x-ms-correlation-request-id": "540ec2bc-8d8d-439a-a6ad-b2bf65f1efa0", + "x-ms-request-id": "d5dd7baa-df23-4080-b6a7-a25be589fc5f", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$c2e090aa-65ad-4c28-b43b-781632a1d660?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "fbe90679e0f724ca4989ef455f3d92bf", "x-ms-return-client-request-id": "true" }, "RequestBody": null, - "StatusCode": 202, + "StatusCode": 200, "ResponseHeaders": { - "Access-Control-Allow-Headers": "Location", - "Access-Control-Expose-Headers": "Location", "Cache-Control": "no-cache", - "Content-Length": "71", + "Content-Length": "73", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:31:10 GMT", + "Date": "Thu, 30 Sep 2021 06:13:39 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "fbe90679e0f724ca4989ef455f3d92bf", - "x-ms-correlation-request-id": "89fcc635-0b5d-4ed8-ba18-43ed5eb35995", - "x-ms-request-id": "a51965c6-3961-49bd-8b59-19c6fd48aab9", + "x-ms-correlation-request-id": "adffa3cc-b8db-47a7-b041-fd9c14ed6724", + "x-ms-request-id": "ffbd8487-c363-4fc9-9393-94ee778e30c2", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "status": "Succeeded", + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", - "RequestMethod": "GET", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/queryDataFlowDebugSessions?api-version=2020-12-01", + "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "traceparent": "00-ac124cc9dc9e5c42a77d97efb49c8f23-d76debb66f580d45-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "966a5f56128ea8cfae86bcf139cbcb08", "x-ms-return-client-request-id": "true" }, "RequestBody": null, - "StatusCode": 202, + "StatusCode": 200, "ResponseHeaders": { - "Access-Control-Allow-Headers": "Location", - "Access-Control-Expose-Headers": "Location", "Cache-Control": "no-cache", - "Content-Length": "71", + "Content-Length": "756", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:31:11 GMT", + "Date": "Thu, 30 Sep 2021 06:13:39 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "966a5f56128ea8cfae86bcf139cbcb08", - "x-ms-correlation-request-id": "dace4ff3-c274-446c-b5ca-f8ffc3ddbe12", - "x-ms-request-id": "f2d83349-c89b-4ec6-b7b6-9c3e72b4fa9c", + "x-ms-correlation-request-id": "b33d076e-f89f-4720-8bd1-40a7a35cc6d8", + "x-ms-request-id": "12bf48d9-c5ca-42da-b637-f1bcc5f780d6", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "value": [ + { + "userObjectId": "b71a874a-f1a8-4811-b06d-6748316e45a7", + "startTime": "2021-09-30T05:21:50.3634792\u002B00:00", + "lastActivityTime": "2021-09-30T05:24:39.5297873\u002B00:00", + "status": "Started", + "dataflowName": "DebugSession-bd0db83a-fa5a-44cd-af34-a0aabfb12b46", + "sessionId": "bd0db83a-fa5a-44cd-af34-a0aabfb12b46", + "coreCount": 8, + "nodeCount": 0, + "computeType": "General", + "timeToLiveInMinutes": 60 + }, + { + "userObjectId": "b71a874a-f1a8-4811-b06d-6748316e45a7", + "startTime": "2021-09-30T06:10:45.3467336\u002B00:00", + "lastActivityTime": "2021-09-30T06:13:38.341921\u002B00:00", + "status": "Started", + "dataflowName": "DebugSession-c2e090aa-65ad-4c28-b43b-781632a1d660", + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660", + "coreCount": 8, + "nodeCount": 0, + "computeType": "General", + "timeToLiveInMinutes": 60 + } + ] } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", - "RequestMethod": "GET", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/deleteDataFlowDebugSession?api-version=2020-12-01", + "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "Content-Length": "52", + "Content-Type": "application/json", + "traceparent": "00-4b743e84791ea349bb498463f34da29b-0a2363b3e5d51848-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ddacd99106267b9327bc3e56dbb874b1", "x-ms-return-client-request-id": "true" }, - "RequestBody": null, - "StatusCode": 202, + "RequestBody": { + "sessionId": "c2e090aa-65ad-4c28-b43b-781632a1d660" + }, + "StatusCode": 200, "ResponseHeaders": { - "Access-Control-Allow-Headers": "Location", - "Access-Control-Expose-Headers": "Location", "Cache-Control": "no-cache", - "Content-Length": "71", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:31:12 GMT", + "Content-Length": "0", + "Date": "Thu, 30 Sep 2021 06:13:46 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "ddacd99106267b9327bc3e56dbb874b1", - "x-ms-correlation-request-id": "a4c55fd6-e159-4c06-b666-0f2829b978ab", - "x-ms-request-id": "e981d4f7-0355-451b-9063-aa9e0ff75698", + "x-ms-correlation-request-id": "124986f0-42c1-4903-b68c-e51e9b95e7e9", + "x-ms-request-id": "1604b271-661f-4b65-b5f5-305513c313f6", "X-Powered-By": "ASP.NET" }, - "ResponseBody": { - "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" - } + "ResponseBody": [] }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", - "RequestMethod": "GET", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/dataflows/DataFlow5386?api-version=2020-12-01", + "RequestMethod": "DELETE", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "traceparent": "00-0eca4c516eeaeb4ead03457d84fd95de-80588a1645e15944-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "1986094e4b0d666f36404c7124d9eb7e", "x-ms-return-client-request-id": "true" }, @@ -5909,2045 +5054,135 @@ "ResponseHeaders": { "Access-Control-Allow-Headers": "Location", "Access-Control-Expose-Headers": "Location", - "Cache-Control": "no-cache", - "Content-Length": "71", + "Content-Length": "359", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:31:13 GMT", - "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", - "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=15724800; includeSubDomains", - "X-Content-Type-Options": "nosniff", + "Date": "Thu, 30 Sep 2021 06:13:46 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dce8c216-67e9-436a-9075-6df5099974fc?api-version=2020-12-01", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "1986094e4b0d666f36404c7124d9eb7e", - "x-ms-correlation-request-id": "d888e562-b304-4e37-8eb6-e3062e7f8142", - "x-ms-request-id": "35cbe028-6998-4807-ada8-f98f1dac9804", - "X-Powered-By": "ASP.NET" + "x-ms-request-id": "2c33b697-d5f3-4713-8033-8adcec095775" }, "ResponseBody": { - "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/dataflows/DataFlow5386", + "recordId": 0, + "state": "Deleting", + "created": "0001-01-01T00:00:00", + "changed": "0001-01-01T00:00:00", + "type": "DataFlow", + "name": "DataFlow5386", + "operationId": "dce8c216-67e9-436a-9075-6df5099974fc" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dce8c216-67e9-436a-9075-6df5099974fc?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "85b4e6beb4904f99cbee6ed2d479cdf6", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "2fa30a11b14545fb6a46a6e5ba22574e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "Access-Control-Allow-Headers": "Location", - "Access-Control-Expose-Headers": "Location", - "Cache-Control": "no-cache", - "Content-Length": "71", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:31:15 GMT", - "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", - "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" ], - "Strict-Transport-Security": "max-age=15724800; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "85b4e6beb4904f99cbee6ed2d479cdf6", - "x-ms-correlation-request-id": "1a142a08-fa02-4cac-b1a9-a8090750b218", - "x-ms-request-id": "55e11f37-0d09-4d92-a022-aa07cac72ca9", - "X-Powered-By": "ASP.NET" + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 30 Sep 2021 06:13:46 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dce8c216-67e9-436a-9075-6df5099974fc?api-version=2020-12-01", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "2fa30a11b14545fb6a46a6e5ba22574e", + "x-ms-request-id": "9ebf9bd7-eee2-430d-a9c6-80c28880f128" }, "ResponseBody": { - "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dce8c216-67e9-436a-9075-6df5099974fc?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "2fa30a11b14545fb6a46a6e5ba22574e", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "f498bfd1ef04992070364e1edc9d92bd", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "Access-Control-Allow-Headers": "Location", - "Access-Control-Expose-Headers": "Location", - "Cache-Control": "no-cache", - "Content-Length": "71", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:31:16 GMT", - "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", - "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" ], - "Strict-Transport-Security": "max-age=15724800; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "2fa30a11b14545fb6a46a6e5ba22574e", - "x-ms-correlation-request-id": "8e949e3e-6a76-4421-b7c3-06605831ee7a", - "x-ms-request-id": "64906c76-8dcf-485b-94fe-7c5da873a29b", - "X-Powered-By": "ASP.NET" + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 30 Sep 2021 06:13:47 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dce8c216-67e9-436a-9075-6df5099974fc?api-version=2020-12-01", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "f498bfd1ef04992070364e1edc9d92bd", + "x-ms-request-id": "e6f715df-daa1-4605-a55d-5cba3b15cf84" }, "ResponseBody": { - "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dce8c216-67e9-436a-9075-6df5099974fc?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "f498bfd1ef04992070364e1edc9d92bd", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "195f5573bc350c38eb6f1b4a0db394a8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "Access-Control-Allow-Headers": "Location", - "Access-Control-Expose-Headers": "Location", - "Cache-Control": "no-cache", - "Content-Length": "71", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:31:17 GMT", - "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", - "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" ], - "Strict-Transport-Security": "max-age=15724800; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "f498bfd1ef04992070364e1edc9d92bd", - "x-ms-correlation-request-id": "7767ee34-662c-49d9-b38d-353aed56c026", - "x-ms-request-id": "10a7f07d-ff40-48d3-b64d-e160d6b1541e", - "X-Powered-By": "ASP.NET" + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 30 Sep 2021 06:13:48 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dce8c216-67e9-436a-9075-6df5099974fc?api-version=2020-12-01", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "195f5573bc350c38eb6f1b4a0db394a8", + "x-ms-request-id": "44216734-bb46-40a3-9afa-4cd8655e0cf1" }, "ResponseBody": { - "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" + "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dce8c216-67e9-436a-9075-6df5099974fc?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "195f5573bc350c38eb6f1b4a0db394a8", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": "Location", - "Access-Control-Expose-Headers": "Location", - "Cache-Control": "no-cache", - "Content-Length": "71", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:31:18 GMT", - "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", - "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-ms-client-request-id": "195f5573bc350c38eb6f1b4a0db394a8", - "x-ms-correlation-request-id": "bf654f9e-8960-46c8-8a6b-87b573eb32af", - "x-ms-request-id": "b4518f28-2b9f-4ccc-96eb-b0c90c8305dc", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "14012097d8e121f2e90abe0e62dc68cd", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": "Location", - "Access-Control-Expose-Headers": "Location", - "Cache-Control": "no-cache", - "Content-Length": "71", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:31:19 GMT", - "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", - "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-ms-client-request-id": "14012097d8e121f2e90abe0e62dc68cd", - "x-ms-correlation-request-id": "29da105c-6f48-4e21-94e4-05dc697fdc97", - "x-ms-request-id": "2ddfc1f2-b4e5-4f9a-a2a1-908f5155a939", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "6472e9b33dc21418878b0994d4d68bbc", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": "Location", - "Access-Control-Expose-Headers": "Location", - "Cache-Control": "no-cache", - "Content-Length": "71", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:31:21 GMT", - "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", - "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-ms-client-request-id": "6472e9b33dc21418878b0994d4d68bbc", - "x-ms-correlation-request-id": "254b30d6-41d2-4256-995b-6989024cac6d", - "x-ms-request-id": "0d7ec040-4601-4587-90b0-494beb34a3c3", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "bc87a5a27e9c9bdc633d302bfd2aa90e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": "Location", - "Access-Control-Expose-Headers": "Location", - "Cache-Control": "no-cache", - "Content-Length": "71", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:31:22 GMT", - "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", - "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-ms-client-request-id": "bc87a5a27e9c9bdc633d302bfd2aa90e", - "x-ms-correlation-request-id": "90c21c35-27ce-4d3b-ae03-5780604c40fd", - "x-ms-request-id": "cfca7bf7-9409-4d6f-806f-0293f4459888", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "24974e06304159e607ec8d55ce5d4d13", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": "Location", - "Access-Control-Expose-Headers": "Location", - "Cache-Control": "no-cache", - "Content-Length": "71", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:31:23 GMT", - "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", - "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-ms-client-request-id": "24974e06304159e607ec8d55ce5d4d13", - "x-ms-correlation-request-id": "fd858b8d-72cc-4714-8fde-efe287d7579d", - "x-ms-request-id": "16d3b001-2ead-4954-8420-4eea7030ed55", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "bd6c027eac5435310cd700840ced175c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": "Location", - "Access-Control-Expose-Headers": "Location", - "Cache-Control": "no-cache", - "Content-Length": "71", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:31:24 GMT", - "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", - "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-ms-client-request-id": "bd6c027eac5435310cd700840ced175c", - "x-ms-correlation-request-id": "15c9b379-90ff-45ae-ac83-59ad5fa226cd", - "x-ms-request-id": "026055ec-bab0-4026-830d-760adee95ab7", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "868efae1663f727bbf2db4aff086cc06", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": "Location", - "Access-Control-Expose-Headers": "Location", - "Cache-Control": "no-cache", - "Content-Length": "71", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:31:25 GMT", - "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", - "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-ms-client-request-id": "868efae1663f727bbf2db4aff086cc06", - "x-ms-correlation-request-id": "0d75606b-5e3e-4ce8-9bb5-fe4098d0697f", - "x-ms-request-id": "2826a18d-9fd9-4cae-904a-31d4a97a18db", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "fbac1df0ecbe5aba1c61186a2f614d1a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": "Location", - "Access-Control-Expose-Headers": "Location", - "Cache-Control": "no-cache", - "Content-Length": "71", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:31:26 GMT", - "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", - "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-ms-client-request-id": "fbac1df0ecbe5aba1c61186a2f614d1a", - "x-ms-correlation-request-id": "43dfee9c-a5aa-4d90-a3b5-6aeb91ded96a", - "x-ms-request-id": "852826d1-87e1-41a2-a930-d7acdcf466a2", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "d47430d4c7cf17d486fafe26f7814485", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": "Location", - "Access-Control-Expose-Headers": "Location", - "Cache-Control": "no-cache", - "Content-Length": "71", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:31:28 GMT", - "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", - "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-ms-client-request-id": "d47430d4c7cf17d486fafe26f7814485", - "x-ms-correlation-request-id": "016c45e1-9bc8-44a5-bfe3-dfd2bf4654ff", - "x-ms-request-id": "09c2ca83-1615-48d4-be21-2427e9d9e379", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "ef94fa0b1c41f59e403369dd4e11435d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": "Location", - "Access-Control-Expose-Headers": "Location", - "Cache-Control": "no-cache", - "Content-Length": "71", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:31:29 GMT", - "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", - "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-ms-client-request-id": "ef94fa0b1c41f59e403369dd4e11435d", - "x-ms-correlation-request-id": "29ba1674-ac31-4323-af7a-fc9901062c0d", - "x-ms-request-id": "5fc18bdb-a3dd-4a4c-9f3d-9298964e3994", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "c0db9ae0f7122837489474c4ee93639b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": "Location", - "Access-Control-Expose-Headers": "Location", - "Cache-Control": "no-cache", - "Content-Length": "71", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:31:30 GMT", - "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", - "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-ms-client-request-id": "c0db9ae0f7122837489474c4ee93639b", - "x-ms-correlation-request-id": "fc4155a3-d037-4636-aff5-7ecef315ee27", - "x-ms-request-id": "baaa3f6e-3f9a-498f-887b-18183369481b", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "345f921c5dccb7d8917f949b5ef6c975", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": "Location", - "Access-Control-Expose-Headers": "Location", - "Cache-Control": "no-cache", - "Content-Length": "71", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:31:31 GMT", - "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", - "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-ms-client-request-id": "345f921c5dccb7d8917f949b5ef6c975", - "x-ms-correlation-request-id": "f7dc3436-cadf-4dc2-bcf4-48e9c669a978", - "x-ms-request-id": "e499aa93-2b0e-4a3b-8518-f4b82306957d", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "5d46a0b784a51373c26ca6aca8da07ad", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": "Location", - "Access-Control-Expose-Headers": "Location", - "Cache-Control": "no-cache", - "Content-Length": "71", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:31:32 GMT", - "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", - "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-ms-client-request-id": "5d46a0b784a51373c26ca6aca8da07ad", - "x-ms-correlation-request-id": "e7c47155-c06b-4d15-8bc1-8ff7cf91d43d", - "x-ms-request-id": "fcf617b3-9e3f-4332-b764-0c474dea9e0c", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "bcc1cdd00eb28390c1242e93639bc952", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": "Location", - "Access-Control-Expose-Headers": "Location", - "Cache-Control": "no-cache", - "Content-Length": "71", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:31:33 GMT", - "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", - "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-ms-client-request-id": "bcc1cdd00eb28390c1242e93639bc952", - "x-ms-correlation-request-id": "2235dc0a-de2b-4149-9d0f-383742897d46", - "x-ms-request-id": "10d2bbd6-ff88-4f37-8a6d-d6f575f6dcb3", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "4d0cffcb054d98f61f4b7160b62c0fb7", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": "Location", - "Access-Control-Expose-Headers": "Location", - "Cache-Control": "no-cache", - "Content-Length": "71", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:31:35 GMT", - "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", - "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-ms-client-request-id": "4d0cffcb054d98f61f4b7160b62c0fb7", - "x-ms-correlation-request-id": "c8f7a3a5-69f6-4725-ae7d-bb5ce7be5ab6", - "x-ms-request-id": "8ace7094-3cec-48e8-b810-591e78c76f99", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "91cbe6770c35a8c30fc29c8155dfaf27", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": "Location", - "Access-Control-Expose-Headers": "Location", - "Cache-Control": "no-cache", - "Content-Length": "71", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:31:36 GMT", - "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", - "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-ms-client-request-id": "91cbe6770c35a8c30fc29c8155dfaf27", - "x-ms-correlation-request-id": "f5d3747a-20dc-4675-bb0e-9acc4bab3ef7", - "x-ms-request-id": "b9bc1e50-11c8-405f-ae15-cc28ecebabfa", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "a8e154a2b9cdca60d6289d669c30cc95", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": "Location", - "Access-Control-Expose-Headers": "Location", - "Cache-Control": "no-cache", - "Content-Length": "71", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:31:37 GMT", - "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", - "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-ms-client-request-id": "a8e154a2b9cdca60d6289d669c30cc95", - "x-ms-correlation-request-id": "54d153b2-c694-4d22-96f5-b3506fc1dd65", - "x-ms-request-id": "1d7f17f1-4dfa-4096-af58-24458e53e068", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "7c1b771438cfbe1d3c643d8a6975423f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": "Location", - "Access-Control-Expose-Headers": "Location", - "Cache-Control": "no-cache", - "Content-Length": "71", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:31:38 GMT", - "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", - "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-ms-client-request-id": "7c1b771438cfbe1d3c643d8a6975423f", - "x-ms-correlation-request-id": "0a0996f9-f706-4041-97c0-3bc0c5113150", - "x-ms-request-id": "11f0b334-7faf-4b11-aa92-683c278e8a48", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "62be4a9b664abee98601ba0c6f5c0cdf", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": "Location", - "Access-Control-Expose-Headers": "Location", - "Cache-Control": "no-cache", - "Content-Length": "71", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:31:39 GMT", - "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", - "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-ms-client-request-id": "62be4a9b664abee98601ba0c6f5c0cdf", - "x-ms-correlation-request-id": "f8c9ec28-82df-4bf2-8d24-7562b23785c9", - "x-ms-request-id": "5fd377db-1e45-4475-b3b2-1d9cea28b5e7", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "dd6c07f633c4695737226c697cd66061", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": "Location", - "Access-Control-Expose-Headers": "Location", - "Cache-Control": "no-cache", - "Content-Length": "71", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:31:40 GMT", - "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", - "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-ms-client-request-id": "dd6c07f633c4695737226c697cd66061", - "x-ms-correlation-request-id": "50d586c2-1175-4de3-a327-b165a98fec90", - "x-ms-request-id": "4d6d887f-8088-430d-904a-9ec5321853d1", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "52ca5de66971ae4a8e5df5ce7e104fdf", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": "Location", - "Access-Control-Expose-Headers": "Location", - "Cache-Control": "no-cache", - "Content-Length": "71", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:31:42 GMT", - "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", - "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-ms-client-request-id": "52ca5de66971ae4a8e5df5ce7e104fdf", - "x-ms-correlation-request-id": "badf2c4b-4a8c-417d-9eb5-519fc0710f2f", - "x-ms-request-id": "d331c7de-d934-46d2-b17f-8ee1ca7a70d7", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "62935e586409687bf3542b27f97f42b0", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": "Location", - "Access-Control-Expose-Headers": "Location", - "Cache-Control": "no-cache", - "Content-Length": "71", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:31:43 GMT", - "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", - "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-ms-client-request-id": "62935e586409687bf3542b27f97f42b0", - "x-ms-correlation-request-id": "ee617544-9ebe-4ee2-9a7f-de31f289a13e", - "x-ms-request-id": "5e8fdfa5-8b66-4730-bcc2-1a9cfcb1a99b", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "112659a0ba918c6dbcbd4f663d88eb26", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": "Location", - "Access-Control-Expose-Headers": "Location", - "Cache-Control": "no-cache", - "Content-Length": "71", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:31:44 GMT", - "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", - "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-ms-client-request-id": "112659a0ba918c6dbcbd4f663d88eb26", - "x-ms-correlation-request-id": "2a488024-2ea1-446f-86fe-ec5c675ea8f1", - "x-ms-request-id": "19c73669-1764-4aae-8d07-fd56d68dbbca", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "1e118dd3fd428157e2625e1c3e22b40e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": "Location", - "Access-Control-Expose-Headers": "Location", - "Cache-Control": "no-cache", - "Content-Length": "71", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:31:45 GMT", - "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", - "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-ms-client-request-id": "1e118dd3fd428157e2625e1c3e22b40e", - "x-ms-correlation-request-id": "3b4c0272-77c6-4748-80dd-0255bb7d4e66", - "x-ms-request-id": "a7cb1178-020a-4e5c-9004-299cf60bc398", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "242d451a3dea9e4df006a64b15142a6a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": "Location", - "Access-Control-Expose-Headers": "Location", - "Cache-Control": "no-cache", - "Content-Length": "71", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:31:46 GMT", - "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", - "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-ms-client-request-id": "242d451a3dea9e4df006a64b15142a6a", - "x-ms-correlation-request-id": "5db10b25-c910-4a59-8b16-aa2ac7b70b18", - "x-ms-request-id": "a6692cf7-047c-4bc7-bc77-12e404404c8e", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "6b540569246ea26e01a42f2f5b504e99", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": "Location", - "Access-Control-Expose-Headers": "Location", - "Cache-Control": "no-cache", - "Content-Length": "71", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:31:48 GMT", - "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", - "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-ms-client-request-id": "6b540569246ea26e01a42f2f5b504e99", - "x-ms-correlation-request-id": "1f7fe194-d942-4cc0-882a-2d99c5154b5f", - "x-ms-request-id": "eac93f93-de25-4798-8617-de8961e96cb4", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "f84b4108c65b953c40732d3b570c6ccd", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": "Location", - "Access-Control-Expose-Headers": "Location", - "Cache-Control": "no-cache", - "Content-Length": "71", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:31:49 GMT", - "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", - "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-ms-client-request-id": "f84b4108c65b953c40732d3b570c6ccd", - "x-ms-correlation-request-id": "d2a9a5b3-2065-4603-8399-56ac267daeda", - "x-ms-request-id": "838a78f1-221a-4645-ba98-afd3c04b42c6", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "39b3f43749cef69fd68a22450d1d429f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": "Location", - "Access-Control-Expose-Headers": "Location", - "Cache-Control": "no-cache", - "Content-Length": "71", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:31:50 GMT", - "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", - "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-ms-client-request-id": "39b3f43749cef69fd68a22450d1d429f", - "x-ms-correlation-request-id": "7de6a846-30b8-46a6-8b80-fe8bb0df39b1", - "x-ms-request-id": "3c6280cc-119a-48a2-8eb2-852baec661cc", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "d3420cb832c8a20fc8be2bfbf6324bf5", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": "Location", - "Access-Control-Expose-Headers": "Location", - "Cache-Control": "no-cache", - "Content-Length": "71", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:31:51 GMT", - "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", - "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-ms-client-request-id": "d3420cb832c8a20fc8be2bfbf6324bf5", - "x-ms-correlation-request-id": "f79d9d84-26d1-490b-8fd2-d5f28eedbbb2", - "x-ms-request-id": "a6159f4e-ab79-4c3f-bd18-953c91b0eb2d", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "66f76238159dbfcaa15521d0a4f78722", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": "Location", - "Access-Control-Expose-Headers": "Location", - "Cache-Control": "no-cache", - "Content-Length": "71", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:31:52 GMT", - "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", - "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-ms-client-request-id": "66f76238159dbfcaa15521d0a4f78722", - "x-ms-correlation-request-id": "2644d5ea-a58d-4718-9a2a-0b7c7a61aec7", - "x-ms-request-id": "b3ccd788-f772-4d2e-9474-3d14f25528e9", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "4b838e3098c90504e51170101da300a3", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": "Location", - "Access-Control-Expose-Headers": "Location", - "Cache-Control": "no-cache", - "Content-Length": "71", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:31:54 GMT", - "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", - "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-ms-client-request-id": "4b838e3098c90504e51170101da300a3", - "x-ms-correlation-request-id": "9eef31fd-fe14-44e2-9ce9-cbe50334f62a", - "x-ms-request-id": "da14757d-0a34-47f2-9c9f-4c4fb002ca02", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "ab0c2d3fdc26a20241823273113efed1", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": "Location", - "Access-Control-Expose-Headers": "Location", - "Cache-Control": "no-cache", - "Content-Length": "71", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:31:55 GMT", - "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", - "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-ms-client-request-id": "ab0c2d3fdc26a20241823273113efed1", - "x-ms-correlation-request-id": "00b8c606-49e9-4ced-b394-418b81127fb5", - "x-ms-request-id": "77970f0b-5ae7-405f-bbc8-dab6039238ac", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "68cb0836ffafa02b5df2818ca4baa2fd", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": "Location", - "Access-Control-Expose-Headers": "Location", - "Cache-Control": "no-cache", - "Content-Length": "71", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:31:56 GMT", - "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", - "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-ms-client-request-id": "68cb0836ffafa02b5df2818ca4baa2fd", - "x-ms-correlation-request-id": "a284300a-6ebf-4bb3-9de1-06cc9bb563db", - "x-ms-request-id": "32323698-cd64-47b4-ba27-c48c8b2403b9", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "76917d54dcea54fc8be009476591f3a6", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": "Location", - "Access-Control-Expose-Headers": "Location", - "Cache-Control": "no-cache", - "Content-Length": "71", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:31:57 GMT", - "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", - "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-ms-client-request-id": "76917d54dcea54fc8be009476591f3a6", - "x-ms-correlation-request-id": "c089bcda-af43-4b61-8a44-72bc0d2ec1ab", - "x-ms-request-id": "f3c2bff8-ad8a-40ab-93c8-e0192a6d3212", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "14d99e1298d83ff3016c4d335a76fd87", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": "Location", - "Access-Control-Expose-Headers": "Location", - "Cache-Control": "no-cache", - "Content-Length": "71", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:31:58 GMT", - "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", - "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-ms-client-request-id": "14d99e1298d83ff3016c4d335a76fd87", - "x-ms-correlation-request-id": "5bce2eb9-dc49-459e-99ff-f145e1b2fc23", - "x-ms-request-id": "e04c8415-796e-4813-bab8-198f0bca8239", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "931e34e087ad59e70c77dccff6e43acc", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": "Location", - "Access-Control-Expose-Headers": "Location", - "Cache-Control": "no-cache", - "Content-Length": "71", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:31:59 GMT", - "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", - "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-ms-client-request-id": "931e34e087ad59e70c77dccff6e43acc", - "x-ms-correlation-request-id": "5a5972f1-4e5e-40c6-a058-325555e53e90", - "x-ms-request-id": "737814ae-7a97-44ac-8acc-3f83974dfa2e", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "0679dbfe8de0bc258951747d8ec9f915", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": "Location", - "Access-Control-Expose-Headers": "Location", - "Cache-Control": "no-cache", - "Content-Length": "71", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:32:01 GMT", - "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", - "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-ms-client-request-id": "0679dbfe8de0bc258951747d8ec9f915", - "x-ms-correlation-request-id": "5a84287a-4b75-4d64-a0e5-5836fe0721ce", - "x-ms-request-id": "9c024f19-81c7-4364-ab27-dd3ad32fef4d", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "316682e260728af8b77f0860bb24481d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": "Location", - "Access-Control-Expose-Headers": "Location", - "Cache-Control": "no-cache", - "Content-Length": "71", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:32:02 GMT", - "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", - "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-ms-client-request-id": "316682e260728af8b77f0860bb24481d", - "x-ms-correlation-request-id": "b38caed5-892f-4e0a-9fc1-1dadfd9aee11", - "x-ms-request-id": "d615ea6d-fa20-4728-a9e5-c7e7c069060e", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "7e348132f7fc52a60f620a5b1269cb42", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": "Location", - "Access-Control-Expose-Headers": "Location", - "Cache-Control": "no-cache", - "Content-Length": "71", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:32:03 GMT", - "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", - "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-ms-client-request-id": "7e348132f7fc52a60f620a5b1269cb42", - "x-ms-correlation-request-id": "9f73d748-021d-483c-8027-11930e9468d4", - "x-ms-request-id": "3830954d-1cab-468c-896a-529580b0f27b", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "74edc67d087d9e5ae2ee4e6084c40165", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": "Location", - "Access-Control-Expose-Headers": "Location", - "Cache-Control": "no-cache", - "Content-Length": "71", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:32:04 GMT", - "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", - "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-ms-client-request-id": "74edc67d087d9e5ae2ee4e6084c40165", - "x-ms-correlation-request-id": "4593a2ed-5b39-4a34-b24d-bbacdd95cee2", - "x-ms-request-id": "6b29ea46-b31c-464b-b82e-95e3b18054ca", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "0d4b57087b95ea19db142210569c784e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": "Location", - "Access-Control-Expose-Headers": "Location", - "Cache-Control": "no-cache", - "Content-Length": "71", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:32:05 GMT", - "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", - "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-ms-client-request-id": "0d4b57087b95ea19db142210569c784e", - "x-ms-correlation-request-id": "22f9db61-8acd-414e-ad09-f995815f8724", - "x-ms-request-id": "bd73ace0-d936-4e71-a858-a5bd5f92a46e", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "f4e3c5b4d43729a026959c0ea945cd4a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": "Location", - "Access-Control-Expose-Headers": "Location", - "Cache-Control": "no-cache", - "Content-Length": "71", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:32:06 GMT", - "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", - "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-ms-client-request-id": "f4e3c5b4d43729a026959c0ea945cd4a", - "x-ms-correlation-request-id": "227da645-12c5-4950-9884-a0c8d31c0353", - "x-ms-request-id": "b2ff67e3-47be-4d5e-a88e-aa2eb67a267a", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "bb53a461bd1e02adad029869e6494845", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": "Location", - "Access-Control-Expose-Headers": "Location", - "Cache-Control": "no-cache", - "Content-Length": "71", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:32:08 GMT", - "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", - "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-ms-client-request-id": "bb53a461bd1e02adad029869e6494845", - "x-ms-correlation-request-id": "663c5ea0-7036-4a27-88df-f34d098b723a", - "x-ms-request-id": "f6667217-fc29-4656-aa86-3e725a90218d", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "status": "Pending", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$1d445cc1-0283-4410-b5c1-086a8385e411?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "beab00760ce1332eb721e6ffde0b4196", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "73", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:32:09 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-ms-client-request-id": "beab00760ce1332eb721e6ffde0b4196", - "x-ms-correlation-request-id": "253c5a6f-199b-4213-8383-f1f3ea3a1e0b", - "x-ms-request-id": "e4b57d44-a511-4860-99ec-1a59675fd5c9", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "status": "Succeeded", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/queryDataFlowDebugSessions?api-version=2019-06-01-preview", - "RequestMethod": "POST", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-f7aecbace6a0f64fbc03390c64fa2e03-e5142b78870b2741-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "b1afd746bc49f73018e047343c3642dd", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "384", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:32:09 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-ms-client-request-id": "b1afd746bc49f73018e047343c3642dd", - "x-ms-correlation-request-id": "643712cb-4bde-46aa-9fc5-01e711bbead1", - "x-ms-request-id": "2d9cb32f-6aa5-4a50-81c6-83917825d450", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "userObjectId": "00b81593-6414-45e8-98bf-c0396b2972ee", - "startTime": "2021-01-20T21:28:27.6830086\u002B00:00", - "lastActivityTime": "2021-01-20T21:32:08.3638231\u002B00:00", - "status": "Started", - "dataflowName": "DebugSession-1d445cc1-0283-4410-b5c1-086a8385e411", - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411", - "coreCount": 8, - "nodeCount": 0, - "computeType": "General", - "timeToLiveInMinutes": 60 - } - ] - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/deleteDataFlowDebugSession?api-version=2019-06-01-preview", - "RequestMethod": "POST", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Length": "52", - "Content-Type": "application/json", - "traceparent": "00-d4b8950a4c593646a023d9f09b073abc-a7928f86ca672049-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "a997564c0f995469761f04fcd6ad23a2", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "sessionId": "1d445cc1-0283-4410-b5c1-086a8385e411" - }, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Wed, 20 Jan 2021 21:32:12 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-ms-client-request-id": "a997564c0f995469761f04fcd6ad23a2", - "x-ms-correlation-request-id": "75a6400f-2b50-4d01-b1e0-ddf20135c2cc", - "x-ms-request-id": "eff139e7-bbee-4e70-bf5f-d4ace64aaf5b", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/dataflows/DataFlow5386?api-version=2019-06-01-preview", - "RequestMethod": "DELETE", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-77d6dd03a550944b921b63235ee78cd3-83da45fe8a87fb46-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "0f2302c1979ab9fbcfb4a600c4f9f780", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": "Location", - "Access-Control-Expose-Headers": "Location", - "Content-Length": "366", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:32:12 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/ccacde6a-5026-472a-97a0-4ec529c893c6?api-version=2019-06-01-preview", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "0f2302c1979ab9fbcfb4a600c4f9f780", - "x-ms-request-id": "1fe249e4-8ad2-4827-bbb9-e47ff402fd83" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow5386", - "recordId": 0, - "state": "Deleting", - "created": "0001-01-01T00:00:00", - "changed": "0001-01-01T00:00:00", - "type": "DataFlow", - "name": "DataFlow5386", - "operationId": "ccacde6a-5026-472a-97a0-4ec529c893c6" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/ccacde6a-5026-472a-97a0-4ec529c893c6?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "3973a4bc3313b4425bded9e56868907d", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "14012097d8e121f2e90abe0e62dc68cd", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -7963,28 +5198,25 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:32:12 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/ccacde6a-5026-472a-97a0-4ec529c893c6?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:13:49 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dce8c216-67e9-436a-9075-6df5099974fc?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "3973a4bc3313b4425bded9e56868907d", - "x-ms-request-id": "e1627632-ac94-44c5-9977-22369079b821" + "x-ms-client-request-id": "14012097d8e121f2e90abe0e62dc68cd", + "x-ms-request-id": "8801c7d7-3917-4223-a23c-c27ea32a64c9" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/ccacde6a-5026-472a-97a0-4ec529c893c6?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dce8c216-67e9-436a-9075-6df5099974fc?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "cd1c83279cfa292f06eca1405dd1009b", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "6472e9b33dc21418878b0994d4d68bbc", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -8000,45 +5232,42 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:32:13 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/ccacde6a-5026-472a-97a0-4ec529c893c6?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:13:50 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dce8c216-67e9-436a-9075-6df5099974fc?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "cd1c83279cfa292f06eca1405dd1009b", - "x-ms-request-id": "3c053f2e-a38c-4b9f-94a7-69ed3f05ccd2" + "x-ms-client-request-id": "6472e9b33dc21418878b0994d4d68bbc", + "x-ms-request-id": "a296ae06-9cb9-407c-bcec-fca2c39c3e47" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/ccacde6a-5026-472a-97a0-4ec529c893c6?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dce8c216-67e9-436a-9075-6df5099974fc?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "20433c93be85ac6dc7fe2c95be17ce04", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "bc87a5a27e9c9bdc633d302bfd2aa90e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Content-Length": "0", - "Date": "Wed, 20 Jan 2021 21:32:14 GMT", + "Date": "Thu, 30 Sep 2021 06:13:51 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "20433c93be85ac6dc7fe2c95be17ce04", - "x-ms-request-id": "763b4667-fe77-4732-a6c0-0cc07453348f" + "x-ms-client-request-id": "bc87a5a27e9c9bdc633d302bfd2aa90e", + "x-ms-request-id": "8d30edbe-ce8c-4c0b-9905-ff0baf09171e" }, "ResponseBody": [] } ], "Variables": { - "AZURE_SYNAPSE_WORKSPACE_URL": "https://workspacechhamosynapse.dev.azuresynapse.net", + "AZURE_SYNAPSE_WORKSPACE_URL": "https://testsynapseworkspace.dev.azuresynapse.net", "RandomSeed": "752215272" } } \ No newline at end of file diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DataFlowDebugSessionClientLiveTests/QuerySessionsAsync.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DataFlowDebugSessionClientLiveTests/QuerySessionsAsync.json index b5c409c5d61a..bcfd7502c439 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DataFlowDebugSessionClientLiveTests/QuerySessionsAsync.json +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DataFlowDebugSessionClientLiveTests/QuerySessionsAsync.json @@ -1,18 +1,15 @@ { "Entries": [ { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/dataflows/DataFlow5794?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/dataflows/DataFlow5794?api-version=2020-12-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "28", "Content-Type": "application/json", - "traceparent": "00-fecedb379cde6448a751ee437e91daa9-106a5a5a90e9494b-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "traceparent": "00-181406e873109440a0067b3e119dc253-e18a7d2b5a810049-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "56ea781d5f4406267d5997d0a18581eb", "x-ms-return-client-request-id": "true" }, @@ -31,37 +28,34 @@ "Location", "Retry-After" ], - "Content-Length": "441", + "Content-Length": "435", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:32:14 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/a741fd18-2673-4d19-ad41-cd94a3f727be?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:13:51 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/7fca5e91-370b-4634-b410-905bcc9988f3?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "56ea781d5f4406267d5997d0a18581eb", - "x-ms-request-id": "a104d50f-307d-40ac-81b1-624095cb1c7b" + "x-ms-request-id": "9413f667-a1a2-4362-b101-3cfefdc3edb1" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow5794", - "recordId": 983949, + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/dataflows/DataFlow5794", + "recordId": 2424213, "state": "Creating", - "created": "2021-01-20T21:32:15.4133333Z", - "changed": "2021-01-20T21:32:15.4133333Z", + "created": "2021-09-30T06:13:52.4466667Z", + "changed": "2021-09-30T06:13:52.4466667Z", "type": "DataFlow", "name": "DataFlow5794", - "operationId": "a741fd18-2673-4d19-ad41-cd94a3f727be", - "artifactId": "AF61FC90-3E32-474E-93EB-29512DA3A29D" + "operationId": "7fca5e91-370b-4634-b410-905bcc9988f3", + "artifactId": "9083469F-3D8A-42C9-A5C4-5D2AB50D85FC" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/a741fd18-2673-4d19-ad41-cd94a3f727be?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/7fca5e91-370b-4634-b410-905bcc9988f3?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "fa791582e45446dfd943780ee1ae1b3a", "x-ms-return-client-request-id": "true" }, @@ -78,27 +72,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:32:14 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/a741fd18-2673-4d19-ad41-cd94a3f727be?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:13:51 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/7fca5e91-370b-4634-b410-905bcc9988f3?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "fa791582e45446dfd943780ee1ae1b3a", - "x-ms-request-id": "0de5732e-ae91-491f-8a96-c1bbc268c2c5" + "x-ms-request-id": "517f32d7-6bb3-4dde-8796-14502fe543b9" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/a741fd18-2673-4d19-ad41-cd94a3f727be?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/7fca5e91-370b-4634-b410-905bcc9988f3?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2cfd34e5466c11ac82a025fbd9de1ecb", "x-ms-return-client-request-id": "true" }, @@ -115,192 +106,165 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:32:16 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/a741fd18-2673-4d19-ad41-cd94a3f727be?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:13:53 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/7fca5e91-370b-4634-b410-905bcc9988f3?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "2cfd34e5466c11ac82a025fbd9de1ecb", - "x-ms-request-id": "9b4dcba6-3de7-4082-b905-c11431222ca2" + "x-ms-request-id": "e13dd56f-b340-425d-8b62-4b43d1383c7a" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/a741fd18-2673-4d19-ad41-cd94a3f727be?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/7fca5e91-370b-4634-b410-905bcc9988f3?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "8b4d23c3870cc8965025bbb093e66782", "x-ms-return-client-request-id": "true" }, "RequestBody": null, - "StatusCode": 200, + "StatusCode": 202, "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "320", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:32:17 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" ], - "Strict-Transport-Security": "max-age=15724800; includeSubDomains", - "X-Content-Type-Options": "nosniff", + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 30 Sep 2021 06:13:54 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/7fca5e91-370b-4634-b410-905bcc9988f3?api-version=2020-12-01", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "8b4d23c3870cc8965025bbb093e66782", - "x-ms-correlation-request-id": "8ce365c0-ce27-44f3-a004-2b8a8e3da5bb", - "x-ms-request-id": "a92d4dbe-afae-4fa9-9a9f-3464b9506d42", - "X-Powered-By": "ASP.NET" + "x-ms-request-id": "17f87542-a20c-4446-8c71-83cdfb166781" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow5794", - "name": "DataFlow5794", - "type": "Microsoft.Synapse/workspaces/dataflows", - "properties": { - "type": null - }, - "etag": "500073b6-0000-0800-0000-6008a1600000" + "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/createDataFlowDebugSession?api-version=2019-06-01-preview", - "RequestMethod": "POST", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/7fca5e91-370b-4634-b410-905bcc9988f3?api-version=2020-12-01", + "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "2", - "Content-Type": "application/json", - "traceparent": "00-96ba38555c36ce4abd87cbd5d3f61247-6bc8aa749eb7ed49-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b3614b2c69b43b07696777b4bfe36dfa", "x-ms-return-client-request-id": "true" }, - "RequestBody": {}, + "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "Access-Control-Allow-Headers": "Location", - "Access-Control-Expose-Headers": "Location", - "Cache-Control": "no-cache", - "Content-Length": "52", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:32:17 GMT", - "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", - "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" ], - "Strict-Transport-Security": "max-age=15724800; includeSubDomains", - "X-Content-Type-Options": "nosniff", + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 30 Sep 2021 06:13:55 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/7fca5e91-370b-4634-b410-905bcc9988f3?api-version=2020-12-01", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "b3614b2c69b43b07696777b4bfe36dfa", - "x-ms-correlation-request-id": "1339b236-6739-4d2f-af2b-91e750ddfa2d", - "x-ms-request-id": "7bf52723-abfe-4067-a25a-d9d9284b749c", - "X-Powered-By": "ASP.NET" + "x-ms-request-id": "2aca0305-5c02-4a1c-a0ff-29f28e97dbb8" }, "ResponseBody": { - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/7fca5e91-370b-4634-b410-905bcc9988f3?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "8dcea3396a7c5a171b1122a40fe2096d", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "be4aac248f605e2e9d34db478bfc7d9b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, - "StatusCode": 202, + "StatusCode": 200, "ResponseHeaders": { - "Access-Control-Allow-Headers": "Location", - "Access-Control-Expose-Headers": "Location", "Cache-Control": "no-cache", - "Content-Length": "71", + "Content-Length": "313", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:32:17 GMT", + "Date": "Thu, 30 Sep 2021 06:13:56 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "8dcea3396a7c5a171b1122a40fe2096d", - "x-ms-correlation-request-id": "1eb3af50-281e-435f-8aac-bfb57a7d7262", - "x-ms-request-id": "108be460-e513-4a32-be1e-febc255fe9fa", + "x-ms-client-request-id": "be4aac248f605e2e9d34db478bfc7d9b", + "x-ms-correlation-request-id": "c3ca8fb1-6ee5-479f-8756-6d29a0ba73b0", + "x-ms-request-id": "0315b695-7126-44ad-8b76-0ca9822e15f1", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/dataflows/DataFlow5794", + "name": "DataFlow5794", + "type": "Microsoft.Synapse/workspaces/dataflows", + "properties": { + "type": null + }, + "etag": "2e008f7f-0000-0100-0000-615555a30000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", - "RequestMethod": "GET", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/createDataFlowDebugSession?api-version=2020-12-01", + "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "e78bc0b7a99c9d211c03157f8dc0b06d", + "Content-Length": "2", + "Content-Type": "application/json", + "traceparent": "00-6613eddb29a4ee4cb4396d76296e7918-71f6e0fc022cac4a-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "8dcea3396a7c5a171b1122a40fe2096d", "x-ms-return-client-request-id": "true" }, - "RequestBody": null, + "RequestBody": {}, "StatusCode": 202, "ResponseHeaders": { "Access-Control-Allow-Headers": "Location", "Access-Control-Expose-Headers": "Location", "Cache-Control": "no-cache", - "Content-Length": "71", + "Content-Length": "52", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:32:18 GMT", + "Date": "Thu, 30 Sep 2021 06:13:56 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "e78bc0b7a99c9d211c03157f8dc0b06d", - "x-ms-correlation-request-id": "3f163229-e166-425c-a7d5-f8581a5d6ebf", - "x-ms-request-id": "0d906d78-a823-4a8f-8855-5ea3214dcf00", + "x-ms-client-request-id": "8dcea3396a7c5a171b1122a40fe2096d", + "x-ms-correlation-request-id": "f32cc9e6-1bfb-4578-807f-fff8cf758d34", + "x-ms-request-id": "72bfb141-225b-488b-8255-33fe001650fc", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "1c7bdbe9df14b97e95f0a24e6d8a4fbb", "x-ms-return-client-request-id": "true" }, @@ -312,35 +276,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:32:20 GMT", + "Date": "Thu, 30 Sep 2021 06:13:56 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "1c7bdbe9df14b97e95f0a24e6d8a4fbb", - "x-ms-correlation-request-id": "8743fd5f-a4e6-42b9-8aca-adddf277eef3", - "x-ms-request-id": "ea47aece-cfc5-4f1c-be68-15b4cb004e89", + "x-ms-correlation-request-id": "66a9c246-6ab9-465d-aa5e-44ea281d1f2e", + "x-ms-request-id": "da8042b2-b9be-4ee3-95da-48370964f5f0", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ca8f6e2b96708fff813171795598cc5b", "x-ms-return-client-request-id": "true" }, @@ -352,35 +310,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:32:21 GMT", + "Date": "Thu, 30 Sep 2021 06:13:58 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "ca8f6e2b96708fff813171795598cc5b", - "x-ms-correlation-request-id": "928ba211-98ef-4dd6-9e66-2d2789bf621a", - "x-ms-request-id": "3bc9f762-4352-495d-86e6-a2662934022c", + "x-ms-correlation-request-id": "49d60f95-1b4f-434c-ae55-ace444adb135", + "x-ms-request-id": "9ec28a25-226e-442b-83db-0e1e93e5a79a", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "33bab561ec67d85841d152ab06d22f92", "x-ms-return-client-request-id": "true" }, @@ -392,35 +344,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:32:23 GMT", + "Date": "Thu, 30 Sep 2021 06:14:00 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "33bab561ec67d85841d152ab06d22f92", - "x-ms-correlation-request-id": "96d5c1f3-39bd-4f6c-b9df-ff7be18579d8", - "x-ms-request-id": "0615df06-2582-4cb4-a8be-57a4324a0b61", + "x-ms-correlation-request-id": "8389f3ab-1527-4f4b-ab5c-97d0c1e8a2fe", + "x-ms-request-id": "dc841591-4dbf-4a35-b828-7284646921ba", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "1f535ab3e53053fcdceb9ae26e0564fc", "x-ms-return-client-request-id": "true" }, @@ -432,35 +378,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:32:24 GMT", + "Date": "Thu, 30 Sep 2021 06:14:01 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "1f535ab3e53053fcdceb9ae26e0564fc", - "x-ms-correlation-request-id": "8252eb66-e9ee-4dfb-b436-634b6bde3ded", - "x-ms-request-id": "241fc7bb-b99b-42c0-b379-50d648844bce", + "x-ms-correlation-request-id": "5f7b8fcd-760e-46ec-98ad-8f9adcd55e42", + "x-ms-request-id": "9d0b8a43-1055-4519-b31d-4e879b7ab42c", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b7ed46231cd03e5415b6889e445488ae", "x-ms-return-client-request-id": "true" }, @@ -472,35 +412,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:32:25 GMT", + "Date": "Thu, 30 Sep 2021 06:14:02 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "b7ed46231cd03e5415b6889e445488ae", - "x-ms-correlation-request-id": "a6e68413-1876-4443-9dd6-3228a90ef403", - "x-ms-request-id": "06802ea9-0879-404e-b306-ff6e8c564362", + "x-ms-correlation-request-id": "f2ac1aa5-02cd-48f9-9704-845bfde4e006", + "x-ms-request-id": "a5409074-ded0-4829-87a2-6da141be200b", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "fac5de01ad447b2bb966577b52756a3c", "x-ms-return-client-request-id": "true" }, @@ -512,35 +446,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:32:26 GMT", + "Date": "Thu, 30 Sep 2021 06:14:03 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "fac5de01ad447b2bb966577b52756a3c", - "x-ms-correlation-request-id": "45a0b0f8-8e8b-4985-a91b-31cc797c3b15", - "x-ms-request-id": "69ad7da3-79ca-4359-b936-f3d54b551ea7", + "x-ms-correlation-request-id": "ea7fb2be-d028-40fb-973e-db8a0bd37bd1", + "x-ms-request-id": "afd59346-4645-43f2-8cd0-cf12c15ae934", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c088556d78e597c2061509795c5d0f87", "x-ms-return-client-request-id": "true" }, @@ -552,35 +480,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:32:27 GMT", + "Date": "Thu, 30 Sep 2021 06:14:04 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "c088556d78e597c2061509795c5d0f87", - "x-ms-correlation-request-id": "0f11b935-05f6-4e3c-9705-af9756b5ceb6", - "x-ms-request-id": "e39858bf-dc61-407e-acfc-b61890cb8e6f", + "x-ms-correlation-request-id": "e2b58b2b-aab8-4e19-af2e-4320f96176f9", + "x-ms-request-id": "b285803e-29d3-4f68-83e7-103dffa9842f", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "8fe0eb626a3f76b81b71fe69c4d8ec9f", "x-ms-return-client-request-id": "true" }, @@ -592,35 +514,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:32:28 GMT", + "Date": "Thu, 30 Sep 2021 06:14:05 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "8fe0eb626a3f76b81b71fe69c4d8ec9f", - "x-ms-correlation-request-id": "48828af7-6896-4194-a22c-68e5f097f560", - "x-ms-request-id": "99deaba0-d979-4a4a-a24f-74d38cff3856", + "x-ms-correlation-request-id": "8c0a74ec-48e5-4d8d-8390-ae90fd24e586", + "x-ms-request-id": "5c40b78b-2aec-4506-a9a8-d561870f8266", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ef314c4cc8cb89c91c2df42fa3b11f5b", "x-ms-return-client-request-id": "true" }, @@ -632,35 +548,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:32:30 GMT", + "Date": "Thu, 30 Sep 2021 06:14:07 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "ef314c4cc8cb89c91c2df42fa3b11f5b", - "x-ms-correlation-request-id": "d4d28a54-28c7-4a2c-aa6d-7e1124c7bc14", - "x-ms-request-id": "aa6e9570-6506-46d9-aea2-3b8381b50ef9", + "x-ms-correlation-request-id": "5f7cd230-a6cc-41d7-8772-d5b3073a9962", + "x-ms-request-id": "591b9ee6-e8ee-418e-b857-b91f951b2a59", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6619cf57da9503fc9c11a4737a59d32e", "x-ms-return-client-request-id": "true" }, @@ -672,35 +582,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:32:31 GMT", + "Date": "Thu, 30 Sep 2021 06:14:08 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "6619cf57da9503fc9c11a4737a59d32e", - "x-ms-correlation-request-id": "8834bdd4-315c-4ea2-b97e-6fb6fdbf6013", - "x-ms-request-id": "0ac30c09-b86c-4087-ae4b-aad5e1184ac5", + "x-ms-correlation-request-id": "16bfc426-1ca4-45d4-a19e-17f4a89a1ed5", + "x-ms-request-id": "9b345fff-0772-4dd6-aa17-98ad188d64bd", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "102d6a281f2c9abb225773127589d36a", "x-ms-return-client-request-id": "true" }, @@ -712,35 +616,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:32:32 GMT", + "Date": "Thu, 30 Sep 2021 06:14:09 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "102d6a281f2c9abb225773127589d36a", - "x-ms-correlation-request-id": "7841cfec-55e3-4723-ae4e-c594c7396bd2", - "x-ms-request-id": "1d072c68-8b0b-4de4-ab13-05a0fa07d5f0", + "x-ms-correlation-request-id": "bd014608-82d8-4e7b-af6c-229cc2bd91e8", + "x-ms-request-id": "170e0007-5932-411f-a3fd-7e580e53ec5a", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f511a25286be710a4f2e52ba23550ec3", "x-ms-return-client-request-id": "true" }, @@ -752,35 +650,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:32:33 GMT", + "Date": "Thu, 30 Sep 2021 06:14:10 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "f511a25286be710a4f2e52ba23550ec3", - "x-ms-correlation-request-id": "924a6bca-480c-4296-930c-139203758a54", - "x-ms-request-id": "01714297-298d-4dba-a13c-842102c5de14", + "x-ms-correlation-request-id": "586f80da-b195-4857-9335-e76680266119", + "x-ms-request-id": "b9d2755a-9468-4eda-a899-27efce8c1b98", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "3806c65a0e84382f137f443d67ea8d13", "x-ms-return-client-request-id": "true" }, @@ -792,35 +684,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:32:34 GMT", + "Date": "Thu, 30 Sep 2021 06:14:11 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "3806c65a0e84382f137f443d67ea8d13", - "x-ms-correlation-request-id": "010de274-4f8e-4f04-a8a1-144308efcc17", - "x-ms-request-id": "ca030cb9-5fc1-47e1-932c-c22d7b72f404", + "x-ms-correlation-request-id": "b0dd164b-d4c1-4423-b18e-c08ed2002813", + "x-ms-request-id": "15d8fe1f-ab9e-4f25-9bf6-a82f09f4c75c", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d7213a3edd48a26f5fbbc0fdcd0176cc", "x-ms-return-client-request-id": "true" }, @@ -832,35 +718,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:32:35 GMT", + "Date": "Thu, 30 Sep 2021 06:14:12 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "d7213a3edd48a26f5fbbc0fdcd0176cc", - "x-ms-correlation-request-id": "b0182030-2595-4c0b-83d9-42c877e0419a", - "x-ms-request-id": "d5ba925c-9b86-429e-a09f-12babafcbb4d", + "x-ms-correlation-request-id": "dd59dd9e-52f1-4da3-940d-f595b3e95070", + "x-ms-request-id": "6b75ba82-e4e2-4330-ba7a-12ca3685a07a", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "afb8b0499a8243e573d9e23f41cd0a65", "x-ms-return-client-request-id": "true" }, @@ -872,35 +752,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:32:37 GMT", + "Date": "Thu, 30 Sep 2021 06:14:13 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "afb8b0499a8243e573d9e23f41cd0a65", - "x-ms-correlation-request-id": "2acef5a0-c069-4673-a12c-54551d35ef94", - "x-ms-request-id": "1a22f685-e530-44f4-8527-1211c298b1d7", + "x-ms-correlation-request-id": "b0a1194b-da5d-4d78-b38b-87dc72d1da83", + "x-ms-request-id": "3ce35e26-ef3c-4217-93d9-d3d217d7ab2a", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e97b3ea136347c7a5764d9c84d316a11", "x-ms-return-client-request-id": "true" }, @@ -912,35 +786,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:32:38 GMT", + "Date": "Thu, 30 Sep 2021 06:14:15 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "e97b3ea136347c7a5764d9c84d316a11", - "x-ms-correlation-request-id": "a289f08a-a958-4399-8c28-25f459890abc", - "x-ms-request-id": "e00006c3-4a43-4261-b024-824ecc266442", + "x-ms-correlation-request-id": "08215aee-5603-4d04-9a5e-1ca1c722a4db", + "x-ms-request-id": "473f9a68-d94c-430a-b269-03912a5862c9", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b7f47809dd31a49154dd646ffb2f6092", "x-ms-return-client-request-id": "true" }, @@ -952,35 +820,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:32:39 GMT", + "Date": "Thu, 30 Sep 2021 06:14:17 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "b7f47809dd31a49154dd646ffb2f6092", - "x-ms-correlation-request-id": "23cc8ebd-25a5-49d9-80d3-d56335c3f70d", - "x-ms-request-id": "6fc755bd-591f-474b-970c-635cc3781820", + "x-ms-correlation-request-id": "d4774c7c-b424-495d-ad11-04ec63da05e3", + "x-ms-request-id": "55ea82ca-15a9-449c-bfc4-2be706ac8946", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "8f5c5bb18d851297353b581ec11cf542", "x-ms-return-client-request-id": "true" }, @@ -992,35 +854,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:32:40 GMT", + "Date": "Thu, 30 Sep 2021 06:14:18 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "8f5c5bb18d851297353b581ec11cf542", - "x-ms-correlation-request-id": "1a758dc9-bb48-43c1-8f5a-7a23ff684266", - "x-ms-request-id": "aafdad50-8d19-48b2-a328-2a6dcb913c49", + "x-ms-correlation-request-id": "9545fc81-3864-4ebd-884b-8435de7a359b", + "x-ms-request-id": "b07265c7-0c6a-4f54-b266-f0d537229b98", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c936d06e52d8c333add79456d20b8027", "x-ms-return-client-request-id": "true" }, @@ -1032,35 +888,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:32:41 GMT", + "Date": "Thu, 30 Sep 2021 06:14:19 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "c936d06e52d8c333add79456d20b8027", - "x-ms-correlation-request-id": "22fd2b50-b725-43b7-a7e3-59b1a98d0026", - "x-ms-request-id": "2670669f-145b-4213-a2a5-b1063b5e7a72", + "x-ms-correlation-request-id": "465fa570-9f2c-4a5b-8f05-86933378a015", + "x-ms-request-id": "81270438-696a-4ed0-8f8f-d0e79e0c1f65", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f2174603dbd47b8be0e182f68572e337", "x-ms-return-client-request-id": "true" }, @@ -1072,35 +922,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:32:42 GMT", + "Date": "Thu, 30 Sep 2021 06:14:20 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "f2174603dbd47b8be0e182f68572e337", - "x-ms-correlation-request-id": "17bfbac0-b5e1-4196-9a91-270fc25fa5dd", - "x-ms-request-id": "d5e17366-f0aa-45cc-9da6-901051c1f8c5", + "x-ms-correlation-request-id": "a1493ac1-02dd-4467-8b25-47843c2f8654", + "x-ms-request-id": "12d651f3-1f24-4895-989e-78a61db2e996", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2b0021e896f95eb92799e1aef8414029", "x-ms-return-client-request-id": "true" }, @@ -1112,35 +956,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:32:44 GMT", + "Date": "Thu, 30 Sep 2021 06:14:21 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "2b0021e896f95eb92799e1aef8414029", - "x-ms-correlation-request-id": "f708e150-2218-464f-a2d9-2ded99fe9494", - "x-ms-request-id": "d43f3217-fe2f-4267-94d7-ee84295b46a7", + "x-ms-correlation-request-id": "ac24d765-e2f7-4c19-b9e3-440f5a939c1b", + "x-ms-request-id": "d417116b-6103-4e41-b7c5-a9f0ca26aecf", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7a1a31ba0205936e44bae9f7d03d3d3a", "x-ms-return-client-request-id": "true" }, @@ -1152,35 +990,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:32:45 GMT", + "Date": "Thu, 30 Sep 2021 06:14:23 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "7a1a31ba0205936e44bae9f7d03d3d3a", - "x-ms-correlation-request-id": "5b11a841-4a65-4fc0-aa1b-b7ee2200e109", - "x-ms-request-id": "bc0c3ff0-2564-4e13-a1ae-1537dc7fbb73", + "x-ms-correlation-request-id": "85652a92-b7a0-406b-91f2-2b4a85e38b60", + "x-ms-request-id": "2e91de33-40f3-4cf9-8c6a-3259c52a5b44", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b06d5cf4550b6d2d8cb9ca3af9dd839e", "x-ms-return-client-request-id": "true" }, @@ -1192,35 +1024,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:32:46 GMT", + "Date": "Thu, 30 Sep 2021 06:14:24 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "b06d5cf4550b6d2d8cb9ca3af9dd839e", - "x-ms-correlation-request-id": "8a3c7f2e-a796-4f00-9dbf-3a5fb12c8ebc", - "x-ms-request-id": "715c2206-c45f-45f2-baeb-58a1af7b3a97", + "x-ms-correlation-request-id": "c296cda1-4e03-44be-a85e-edbe3e2a2a56", + "x-ms-request-id": "ca11c432-c5d4-479b-bd47-82f55538f329", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "543b58a16858e532b36de63facc28eea", "x-ms-return-client-request-id": "true" }, @@ -1232,35 +1058,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:32:47 GMT", + "Date": "Thu, 30 Sep 2021 06:14:25 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "543b58a16858e532b36de63facc28eea", - "x-ms-correlation-request-id": "38070b63-72c3-49e3-818f-a786af037f37", - "x-ms-request-id": "075da14f-8333-4136-8d1a-cefcd993dece", + "x-ms-correlation-request-id": "fa8eb59b-d23c-443f-9190-7a272b0aa020", + "x-ms-request-id": "892c658c-e8b1-4974-a04d-4cb8830b8707", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "9cbaa75b8fd3651e03acee4c38339967", "x-ms-return-client-request-id": "true" }, @@ -1270,37 +1090,32 @@ "Access-Control-Allow-Headers": "Location", "Access-Control-Expose-Headers": "Location", "Cache-Control": "no-cache", + "Connection": "close", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:32:48 GMT", + "Date": "Thu, 30 Sep 2021 06:14:26 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "9cbaa75b8fd3651e03acee4c38339967", - "x-ms-correlation-request-id": "3e60e2d9-36bf-4652-aff9-96d0489eafdc", - "x-ms-request-id": "500bb6d8-cd2b-468e-98ef-5eb424b9c904", + "x-ms-correlation-request-id": "6a9b6f6f-3ffd-4398-bc23-401c8ba1ba01", + "x-ms-request-id": "dba58c13-7332-44dc-9757-4c987405d050", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "77564b37e9018ce12988fd9d6eedc1ca", "x-ms-return-client-request-id": "true" }, @@ -1312,35 +1127,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:32:50 GMT", + "Date": "Thu, 30 Sep 2021 06:14:27 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "77564b37e9018ce12988fd9d6eedc1ca", - "x-ms-correlation-request-id": "3e653587-4c5b-4e93-99df-fc17ab3920af", - "x-ms-request-id": "492da624-5a14-49fc-b93e-b3e04e8fc786", + "x-ms-correlation-request-id": "d0bcfe56-cbd3-4f7c-a0ef-f4b8ad5bc509", + "x-ms-request-id": "e5bcdda0-125f-41f8-9904-47c85a9449bf", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "52dfe02be62211ca3ad650ac79e6ad7f", "x-ms-return-client-request-id": "true" }, @@ -1352,35 +1161,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:32:51 GMT", + "Date": "Thu, 30 Sep 2021 06:14:29 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "52dfe02be62211ca3ad650ac79e6ad7f", - "x-ms-correlation-request-id": "390aa59c-5982-4ded-89ad-1e323c5555cf", - "x-ms-request-id": "4267aa47-8498-47fe-90e9-02f08ce103b4", + "x-ms-correlation-request-id": "63e5116e-ea1a-4a65-9b93-63411fe270cf", + "x-ms-request-id": "dc3bba57-f60f-47b8-82cb-5896d5a623fc", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "60087fd3166b71e9c52e724b9280f615", "x-ms-return-client-request-id": "true" }, @@ -1392,35 +1195,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:32:52 GMT", + "Date": "Thu, 30 Sep 2021 06:14:30 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "60087fd3166b71e9c52e724b9280f615", - "x-ms-correlation-request-id": "9616b5e2-72b5-4b44-a566-e4899b9b9375", - "x-ms-request-id": "b6992d73-3156-40b4-9c86-6d214a95966b", + "x-ms-correlation-request-id": "f19e935c-c300-4e0e-8fd5-be56cd86651f", + "x-ms-request-id": "db90c09e-5f9b-4c22-bb76-0a614e560846", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "582124eb4754504481453d2a99351243", "x-ms-return-client-request-id": "true" }, @@ -1432,35 +1229,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:32:53 GMT", + "Date": "Thu, 30 Sep 2021 06:14:31 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "582124eb4754504481453d2a99351243", - "x-ms-correlation-request-id": "df7784b6-78f2-4007-ac8a-d2d069e0aa83", - "x-ms-request-id": "1727fde6-2e9c-4947-8062-1bdde4a68518", + "x-ms-correlation-request-id": "8d7a66c2-4a7a-4fda-85fa-dde1b7565138", + "x-ms-request-id": "6911285a-034c-43f0-94f4-e6d0cd6c24c5", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "efca7dda60e5145ef66d8cf4737f7eb9", "x-ms-return-client-request-id": "true" }, @@ -1472,35 +1263,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:32:54 GMT", + "Date": "Thu, 30 Sep 2021 06:14:33 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "efca7dda60e5145ef66d8cf4737f7eb9", - "x-ms-correlation-request-id": "e40fe00a-d720-4bfb-b947-590f7ae95c8e", - "x-ms-request-id": "9b4110bd-24e6-4373-8067-7cc3a1f71fa3", + "x-ms-correlation-request-id": "81a102e7-d65b-4943-b78b-fc5b30ff5f5e", + "x-ms-request-id": "4993d327-c884-46d2-82f9-5abafb1da4cc", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "55c03ae055c58c2b3ab7df26d8bed88f", "x-ms-return-client-request-id": "true" }, @@ -1512,35 +1297,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:32:56 GMT", + "Date": "Thu, 30 Sep 2021 06:14:34 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "55c03ae055c58c2b3ab7df26d8bed88f", - "x-ms-correlation-request-id": "c8d45ac6-1a02-42a0-8386-b2dc6a9b87da", - "x-ms-request-id": "7cb5cbee-9dc6-4c27-8b6f-8b9540d43389", + "x-ms-correlation-request-id": "17620447-5f42-458e-af9e-7a265f63b918", + "x-ms-request-id": "ed1f5288-db4a-4c46-aaab-c0c651eefeac", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "14702f1c07b68b30c60c61e6ba50dd01", "x-ms-return-client-request-id": "true" }, @@ -1552,35 +1331,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:32:57 GMT", + "Date": "Thu, 30 Sep 2021 06:14:35 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "14702f1c07b68b30c60c61e6ba50dd01", - "x-ms-correlation-request-id": "1824d6a5-354b-47c3-9e29-93fe012eebed", - "x-ms-request-id": "b0ff55f3-4d59-4eb4-a3c9-550afccb0b29", + "x-ms-correlation-request-id": "b180066d-d730-4bfd-af1b-95bd25c5b29c", + "x-ms-request-id": "b94100b7-a38f-4f1f-aa8b-548919b4f674", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5e4a84c6bc75857e523eb42d80373c38", "x-ms-return-client-request-id": "true" }, @@ -1592,35 +1365,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:32:58 GMT", + "Date": "Thu, 30 Sep 2021 06:14:36 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "5e4a84c6bc75857e523eb42d80373c38", - "x-ms-correlation-request-id": "7f066544-2717-4086-b1ea-e4284cd92579", - "x-ms-request-id": "93e5368b-952e-4839-954a-d62e118edea0", + "x-ms-correlation-request-id": "eff4cda5-91d1-4c02-8620-08bc10c061a3", + "x-ms-request-id": "1594331d-ea4f-4872-9c47-5581bf8ff126", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "44d8fd94690ed8030a358fb8f444d1ea", "x-ms-return-client-request-id": "true" }, @@ -1632,35 +1399,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:32:59 GMT", + "Date": "Thu, 30 Sep 2021 06:14:37 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "44d8fd94690ed8030a358fb8f444d1ea", - "x-ms-correlation-request-id": "66d15cee-620f-4f7d-89bd-e94649df006c", - "x-ms-request-id": "bcec5d86-b407-4356-9072-e72e61c74f18", + "x-ms-correlation-request-id": "f1184b14-f239-4a8f-8754-a0bdd8bc2d08", + "x-ms-request-id": "b1fe1a3f-6c24-478b-a6f4-eb6de608ac8b", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5460ddda7a735f1ab1eac27752020b8e", "x-ms-return-client-request-id": "true" }, @@ -1672,35 +1433,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:33:00 GMT", + "Date": "Thu, 30 Sep 2021 06:14:39 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "5460ddda7a735f1ab1eac27752020b8e", - "x-ms-correlation-request-id": "5aa64434-c757-485e-accf-74ed8cc4ab43", - "x-ms-request-id": "3091f26f-1e31-44bb-845f-8ceedfe1f2d0", + "x-ms-correlation-request-id": "1f9613b3-28f5-4bce-a17c-7aa5dda4d659", + "x-ms-request-id": "ac20f7cd-4be3-42e2-83c2-dbcff82de945", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "bd5228cf98775cf3807254402dc5910d", "x-ms-return-client-request-id": "true" }, @@ -1712,35 +1467,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:33:01 GMT", + "Date": "Thu, 30 Sep 2021 06:14:40 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "bd5228cf98775cf3807254402dc5910d", - "x-ms-correlation-request-id": "13bbbf26-572b-4f85-96c2-8990faffb5d2", - "x-ms-request-id": "4ef21d7c-0947-4b4e-9922-05b6469209ef", + "x-ms-correlation-request-id": "ad541974-1b8d-4943-b5e0-3eb98de45ff5", + "x-ms-request-id": "e3c248f2-0c0b-4503-8764-c7296b234c58", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a252ca6ce8d71ac5e3799323a78c8607", "x-ms-return-client-request-id": "true" }, @@ -1752,35 +1501,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:33:03 GMT", + "Date": "Thu, 30 Sep 2021 06:14:41 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "a252ca6ce8d71ac5e3799323a78c8607", - "x-ms-correlation-request-id": "a6806ae3-c2d5-4c61-aba1-1388d2aa56f1", - "x-ms-request-id": "fec92674-16a5-4e23-b8c2-6a4e4c41e668", + "x-ms-correlation-request-id": "484fcbb6-cf4a-4a1a-b466-630652cc92fa", + "x-ms-request-id": "d80582e5-4ec3-4d6f-a378-d01d1dedd334", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "cbe9002914f24172ea03d30125d931eb", "x-ms-return-client-request-id": "true" }, @@ -1792,35 +1535,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:33:04 GMT", + "Date": "Thu, 30 Sep 2021 06:14:43 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "cbe9002914f24172ea03d30125d931eb", - "x-ms-correlation-request-id": "edd99e28-e629-4dc8-bc21-f443d0a5a6e8", - "x-ms-request-id": "b341531e-1890-4429-af78-b61108562352", + "x-ms-correlation-request-id": "49e8d517-6615-4434-81a4-340e95a2f48c", + "x-ms-request-id": "5cfad8f2-e936-4379-a6db-48a15ceb110e", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "880ab45968afe7b76337dafe05cfb5f4", "x-ms-return-client-request-id": "true" }, @@ -1832,35 +1569,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:33:05 GMT", + "Date": "Thu, 30 Sep 2021 06:14:44 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "880ab45968afe7b76337dafe05cfb5f4", - "x-ms-correlation-request-id": "ba145ee4-a1c9-4d25-a582-543a4e4794b2", - "x-ms-request-id": "4b987633-9317-41d0-a685-6010e7804486", + "x-ms-correlation-request-id": "1d596903-a3cd-4cae-b6f8-fb816d8dd436", + "x-ms-request-id": "fb7e53f7-6a44-4f37-bce6-4fe6387d0758", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2c164cebc6db581b5711b7d414c3f409", "x-ms-return-client-request-id": "true" }, @@ -1872,35 +1603,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:33:06 GMT", + "Date": "Thu, 30 Sep 2021 06:14:45 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "2c164cebc6db581b5711b7d414c3f409", - "x-ms-correlation-request-id": "39c85afd-0060-46b5-b5cd-68b5d7d05c31", - "x-ms-request-id": "dbd24b56-e21d-44f4-afab-55c5d2873d90", + "x-ms-correlation-request-id": "f164dc23-c2cf-4381-be05-70cc9bcd7146", + "x-ms-request-id": "19222ecb-8b1a-4829-a2fe-1793a2be95de", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f2caa747fe81c157490267ba3a733c1a", "x-ms-return-client-request-id": "true" }, @@ -1912,35 +1637,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:33:07 GMT", + "Date": "Thu, 30 Sep 2021 06:14:46 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "f2caa747fe81c157490267ba3a733c1a", - "x-ms-correlation-request-id": "8d855c7e-1edd-4c67-bcb3-a893e2f38c10", - "x-ms-request-id": "c12e20d7-c292-4a1a-be2e-fb6a06dd52ff", + "x-ms-correlation-request-id": "6b53d8a0-9a45-4f90-a36f-b491152da66a", + "x-ms-request-id": "dc2b6160-be21-48a1-8635-0db4e7c454be", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d815df4d04c3921099b1309eb1e3d2a0", "x-ms-return-client-request-id": "true" }, @@ -1952,35 +1671,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:33:08 GMT", + "Date": "Thu, 30 Sep 2021 06:14:47 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "d815df4d04c3921099b1309eb1e3d2a0", - "x-ms-correlation-request-id": "015e1ef3-74b6-491b-be5f-585fe67f7a0f", - "x-ms-request-id": "d2badcb0-cce7-4d6e-b9bc-74f538cc52a9", + "x-ms-correlation-request-id": "fa7ee612-f394-43d3-8c2c-3fa42e18e76d", + "x-ms-request-id": "0fb00f39-30ad-41c9-9ea0-f1179c42320d", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5eb6d142c305ed72f555e3d95e601ee4", "x-ms-return-client-request-id": "true" }, @@ -1992,35 +1705,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:33:09 GMT", + "Date": "Thu, 30 Sep 2021 06:14:48 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "5eb6d142c305ed72f555e3d95e601ee4", - "x-ms-correlation-request-id": "e9a07665-7cc6-412a-af68-f61199596523", - "x-ms-request-id": "f6d68313-7e1f-4d08-ab3c-6632726c94a5", + "x-ms-correlation-request-id": "90464f69-5af6-4a97-840c-36e22fc92fe5", + "x-ms-request-id": "3bdfda5e-c096-4ac5-a09a-761ccb42d517", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "35869cd41cad4345963759cfcdb80f66", "x-ms-return-client-request-id": "true" }, @@ -2032,35 +1739,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:33:11 GMT", + "Date": "Thu, 30 Sep 2021 06:14:50 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "35869cd41cad4345963759cfcdb80f66", - "x-ms-correlation-request-id": "fdc87c3e-784a-4678-88ac-bdc3ef15458d", - "x-ms-request-id": "e66f0e5c-1e6e-4e16-925c-ba68e72eeb91", + "x-ms-correlation-request-id": "7b6f8241-aadc-46ca-a20e-867cacce3bc5", + "x-ms-request-id": "469b849c-8849-4cd0-99bc-6741008792fa", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6878c730ddbc8a156c28e36e21363338", "x-ms-return-client-request-id": "true" }, @@ -2072,35 +1773,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:33:12 GMT", + "Date": "Thu, 30 Sep 2021 06:14:51 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "6878c730ddbc8a156c28e36e21363338", - "x-ms-correlation-request-id": "bc6424b8-423d-42b9-a9d4-8d18c997609e", - "x-ms-request-id": "05f6c4de-35ac-4a1b-9515-54a09538fdfd", + "x-ms-correlation-request-id": "1444f4e2-92a1-4cfe-a8c9-acc6fb471f6c", + "x-ms-request-id": "115500f5-5026-4092-9128-a41bef1ac5b3", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "14c94c939c5c26f28b73c7cd6aa31f3c", "x-ms-return-client-request-id": "true" }, @@ -2112,35 +1807,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:33:13 GMT", + "Date": "Thu, 30 Sep 2021 06:14:52 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "14c94c939c5c26f28b73c7cd6aa31f3c", - "x-ms-correlation-request-id": "cb359919-8e7d-4432-b5e4-173aef4a012f", - "x-ms-request-id": "e5da7af2-82d5-46f1-9625-4607426f0957", + "x-ms-correlation-request-id": "1b4d15c6-88ff-4f60-9e66-87a94f23abf7", + "x-ms-request-id": "83e88d65-16cc-42b3-8957-b5515adbd301", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "97a97c45b5e8f72787fcc88538d72160", "x-ms-return-client-request-id": "true" }, @@ -2152,35 +1841,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:33:14 GMT", + "Date": "Thu, 30 Sep 2021 06:14:53 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "97a97c45b5e8f72787fcc88538d72160", - "x-ms-correlation-request-id": "1d1824ee-62b0-4af8-b386-f2692b67df61", - "x-ms-request-id": "29e74931-1264-4d6f-9875-fb28fba40c17", + "x-ms-correlation-request-id": "d4dadf3f-1c3d-4cb0-830f-6e90d4558123", + "x-ms-request-id": "c8ab100a-7f07-45e5-a3da-af7d4323a3b6", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "813c2003fbef9309d551dd4815481fc8", "x-ms-return-client-request-id": "true" }, @@ -2192,35 +1875,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:33:15 GMT", + "Date": "Thu, 30 Sep 2021 06:14:54 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "813c2003fbef9309d551dd4815481fc8", - "x-ms-correlation-request-id": "fbd68d98-4c8d-4e85-94ad-79381628b9c8", - "x-ms-request-id": "eafc0733-eb88-4119-8e35-3ced7cd00eca", + "x-ms-correlation-request-id": "5ec2e689-1c2b-4151-954a-fd9bc914fd0b", + "x-ms-request-id": "2d5b7a78-62e0-4889-8f3b-81cd5a939324", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a428a7089c8ddd4f24d28d60d36cedb4", "x-ms-return-client-request-id": "true" }, @@ -2232,35 +1909,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:33:16 GMT", + "Date": "Thu, 30 Sep 2021 06:14:56 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "a428a7089c8ddd4f24d28d60d36cedb4", - "x-ms-correlation-request-id": "ca9277ea-8419-41cc-8ded-b5552a757ee3", - "x-ms-request-id": "75b8a177-58b7-48eb-8c5b-7da06e5c213b", + "x-ms-correlation-request-id": "7e37224c-e7de-443c-85ad-1dc46d0e6482", + "x-ms-request-id": "8e038d17-8314-4e60-9f41-2efa2155aec1", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "49c967529e67494d7215c296d8dee13e", "x-ms-return-client-request-id": "true" }, @@ -2272,35 +1943,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:33:18 GMT", + "Date": "Thu, 30 Sep 2021 06:14:57 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "49c967529e67494d7215c296d8dee13e", - "x-ms-correlation-request-id": "aae2dc31-af64-4294-a654-bee0880b9ee9", - "x-ms-request-id": "d5f0a932-af34-4bae-8269-ec1cde3a0881", + "x-ms-correlation-request-id": "ea6dafb4-066e-4376-a7c4-61d519ec16ca", + "x-ms-request-id": "01b6023e-33f9-41d0-8ef3-b542bbf57440", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "917d00dc7cae67d2d15e5c1c6ea9bf68", "x-ms-return-client-request-id": "true" }, @@ -2312,35 +1977,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:33:19 GMT", + "Date": "Thu, 30 Sep 2021 06:14:58 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "917d00dc7cae67d2d15e5c1c6ea9bf68", - "x-ms-correlation-request-id": "ea5b68d2-9edd-428e-bd77-d622e30225f3", - "x-ms-request-id": "78a3ac45-0505-4b27-b1fa-b3607cfcc377", + "x-ms-correlation-request-id": "b1f715f8-8365-46ce-99b5-a7768a978a34", + "x-ms-request-id": "b98b7fca-40a5-42df-8814-edc700ab5bdb", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "aef62864d67e6a6159df3177dab80546", "x-ms-return-client-request-id": "true" }, @@ -2352,35 +2011,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:33:20 GMT", + "Date": "Thu, 30 Sep 2021 06:14:59 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "aef62864d67e6a6159df3177dab80546", - "x-ms-correlation-request-id": "5684f060-bfdd-4890-9c91-dda2397c395d", - "x-ms-request-id": "1404a845-8b3a-468e-8eb7-b6f641479547", + "x-ms-correlation-request-id": "fd47d86d-f742-4c95-a112-497163d79143", + "x-ms-request-id": "1b8756c7-651f-419a-a62b-cc30c7510a38", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d3844ef15befd505956278094130dac9", "x-ms-return-client-request-id": "true" }, @@ -2392,35 +2045,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:33:21 GMT", + "Date": "Thu, 30 Sep 2021 06:15:00 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "d3844ef15befd505956278094130dac9", - "x-ms-correlation-request-id": "b0517a28-5fdc-4eef-a2d3-1318c3a6a4d5", - "x-ms-request-id": "fe22a1fd-91a3-466e-b8d2-66a79cc60408", + "x-ms-correlation-request-id": "a5571462-a448-4b08-b51a-9c6779586505", + "x-ms-request-id": "94a7420e-791a-4c77-bbd7-f10064c0d5ac", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "af32595633e806bf9e1238cf4a5a8d18", "x-ms-return-client-request-id": "true" }, @@ -2432,35 +2079,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:33:23 GMT", + "Date": "Thu, 30 Sep 2021 06:15:02 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "af32595633e806bf9e1238cf4a5a8d18", - "x-ms-correlation-request-id": "326daebb-ac21-4510-90f9-519fc45e0c18", - "x-ms-request-id": "6788d37d-6480-4223-a986-6d55fd11f452", + "x-ms-correlation-request-id": "b195e833-2621-4b1c-9b65-744e984b0790", + "x-ms-request-id": "98e4a232-4422-4b85-a499-e280a98eb604", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "202b1658eb2408792320181c5d582828", "x-ms-return-client-request-id": "true" }, @@ -2472,35 +2113,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:33:25 GMT", + "Date": "Thu, 30 Sep 2021 06:15:03 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "202b1658eb2408792320181c5d582828", - "x-ms-correlation-request-id": "6265bcbb-2240-4018-b4c4-16c9e5eaabcc", - "x-ms-request-id": "4bdcce29-2cbb-4077-9329-dba5e8de3e5f", + "x-ms-correlation-request-id": "b332b66d-eecd-4480-8213-86abfe72efbd", + "x-ms-request-id": "2446bc1e-2535-4989-83da-cf9c403d037a", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "802168045685bd5e8e7e35dc23368a3a", "x-ms-return-client-request-id": "true" }, @@ -2512,35 +2147,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:33:26 GMT", + "Date": "Thu, 30 Sep 2021 06:15:04 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "802168045685bd5e8e7e35dc23368a3a", - "x-ms-correlation-request-id": "f9db3dd4-663d-4b19-8d24-3bae5792a73c", - "x-ms-request-id": "706a8986-eefa-488c-b46d-f1af200ff57e", + "x-ms-correlation-request-id": "edc3c52a-c01f-4252-ae50-26b11675407e", + "x-ms-request-id": "8f1a6840-0872-402e-b5c3-823ba2d1e027", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2bb05fd5ba056aa5e02a8cc71aa3a846", "x-ms-return-client-request-id": "true" }, @@ -2552,35 +2181,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:33:27 GMT", + "Date": "Thu, 30 Sep 2021 06:15:05 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "2bb05fd5ba056aa5e02a8cc71aa3a846", - "x-ms-correlation-request-id": "1ebf5145-e241-4ff7-915f-d93f61c76ef2", - "x-ms-request-id": "34546e77-0029-4716-9c6e-0d8dd1a43dc8", + "x-ms-correlation-request-id": "d0adef07-1cc4-4bfa-a151-65025d600302", + "x-ms-request-id": "4b2475c8-024e-4c5b-87d2-94745b1cdc07", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e2ca0fe90c390292b86d91a6b69ce4ec", "x-ms-return-client-request-id": "true" }, @@ -2592,35 +2215,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:33:29 GMT", + "Date": "Thu, 30 Sep 2021 06:15:06 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "e2ca0fe90c390292b86d91a6b69ce4ec", - "x-ms-correlation-request-id": "248a677e-e73d-4e56-9c0e-e19b817745e3", - "x-ms-request-id": "04e7188e-0e13-421f-89ea-32f567c8a14b", + "x-ms-correlation-request-id": "a3c26819-272c-4802-9bef-6e82c638f935", + "x-ms-request-id": "79f602ea-6dc3-49d0-bf41-1b8aaadbb8b9", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "fe47de96fda74923c3b6a05bc996a3eb", "x-ms-return-client-request-id": "true" }, @@ -2632,35 +2249,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:33:30 GMT", + "Date": "Thu, 30 Sep 2021 06:15:07 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "fe47de96fda74923c3b6a05bc996a3eb", - "x-ms-correlation-request-id": "72d4941d-7623-4aaf-b563-63fa483bce36", - "x-ms-request-id": "d50a8433-a92a-4c58-9dd3-955bb21a250f", + "x-ms-correlation-request-id": "b9f37c02-977d-4132-8b61-4d0c8bab2fdd", + "x-ms-request-id": "cb3d2cc3-441d-466f-86ed-065369be849f", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "14f2efd5a86cc801ccad729729feb443", "x-ms-return-client-request-id": "true" }, @@ -2672,35 +2283,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:33:31 GMT", + "Date": "Thu, 30 Sep 2021 06:15:08 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "14f2efd5a86cc801ccad729729feb443", - "x-ms-correlation-request-id": "eb037849-feea-4c25-8e76-606b6ddc22f9", - "x-ms-request-id": "c333dd78-11d0-47bc-8955-404f0cc36797", + "x-ms-correlation-request-id": "729e282c-5694-497e-b926-32c96d6351fd", + "x-ms-request-id": "f5dfe475-7130-4003-b4a1-4e13d0338c88", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "3c31a045a95beb9eeb801f826c373921", "x-ms-return-client-request-id": "true" }, @@ -2712,35 +2317,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:33:32 GMT", + "Date": "Thu, 30 Sep 2021 06:15:10 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "3c31a045a95beb9eeb801f826c373921", - "x-ms-correlation-request-id": "86e10d91-6508-49bd-9210-946f60810930", - "x-ms-request-id": "98f704e2-2f3c-416f-9ad3-def6171c07d1", + "x-ms-correlation-request-id": "7e7c55ba-60a2-4c52-b0f3-c1ff4b28be65", + "x-ms-request-id": "bcf8514b-b676-4c19-9977-9a271bc1a9b0", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c6d0a5cacfaaed7fdc7e31fa8b8b20c4", "x-ms-return-client-request-id": "true" }, @@ -2752,35 +2351,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:33:33 GMT", + "Date": "Thu, 30 Sep 2021 06:15:11 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "c6d0a5cacfaaed7fdc7e31fa8b8b20c4", - "x-ms-correlation-request-id": "3dfb2db6-e47a-43c6-9d00-0831886a8c58", - "x-ms-request-id": "e7893700-52e6-4e98-9b67-1d650c8d9827", + "x-ms-correlation-request-id": "492ebda1-2769-4aae-9d4c-905cc88069b8", + "x-ms-request-id": "39f45203-ceb3-4902-9cfc-5bec14258e98", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "29165d0167652b8f500628eb887e5c95", "x-ms-return-client-request-id": "true" }, @@ -2792,35 +2385,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:33:34 GMT", + "Date": "Thu, 30 Sep 2021 06:15:13 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "29165d0167652b8f500628eb887e5c95", - "x-ms-correlation-request-id": "ddb040a0-24de-4093-859a-fe294759ea27", - "x-ms-request-id": "d37dda99-4613-492f-b4ec-59eab1f0bacc", + "x-ms-correlation-request-id": "503abed6-f209-4423-8650-d519dd3a6eec", + "x-ms-request-id": "cd2c5541-add0-440a-a5a7-a88e55d2c87a", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "83cd5174ed2d759820435fdd78a46060", "x-ms-return-client-request-id": "true" }, @@ -2832,35 +2419,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:33:36 GMT", + "Date": "Thu, 30 Sep 2021 06:15:14 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "83cd5174ed2d759820435fdd78a46060", - "x-ms-correlation-request-id": "4b021703-1e71-4d2b-ac43-ee2e8d968176", - "x-ms-request-id": "243b6c19-a2a5-4b07-8231-af796c214e5b", + "x-ms-correlation-request-id": "d9a833cb-8a79-4900-9f1d-c94ebca19de7", + "x-ms-request-id": "5bf85b48-61a5-4863-9383-3a2f29a1f02b", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "0e815a600f2162bb16a476a3a794655d", "x-ms-return-client-request-id": "true" }, @@ -2872,35 +2453,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:33:37 GMT", + "Date": "Thu, 30 Sep 2021 06:15:15 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "0e815a600f2162bb16a476a3a794655d", - "x-ms-correlation-request-id": "1b6c5721-528a-4370-a145-04530b041d80", - "x-ms-request-id": "48ef8222-5546-4bca-9671-2abf6886fed7", + "x-ms-correlation-request-id": "e1a578a9-73c9-4de5-95b2-588c157826d5", + "x-ms-request-id": "e5f95e63-f687-4dfa-a1ac-ec42a8d8d72d", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "39859b219cbd1396c4a0092207b2b3ac", "x-ms-return-client-request-id": "true" }, @@ -2912,35 +2487,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:33:38 GMT", + "Date": "Thu, 30 Sep 2021 06:15:16 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "39859b219cbd1396c4a0092207b2b3ac", - "x-ms-correlation-request-id": "d544ecd6-72d1-4c73-b434-9e1e15e48fda", - "x-ms-request-id": "7427e708-0d5c-4408-8cdf-b25175bbe5a9", + "x-ms-correlation-request-id": "3b716474-747a-4e79-a6e4-14bdf8f5c45f", + "x-ms-request-id": "2310bde2-589f-401b-bd45-5a06fe5d9ec6", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2d8ac8a54dfd6474956a6d8977f4ce8b", "x-ms-return-client-request-id": "true" }, @@ -2952,35 +2521,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:33:39 GMT", + "Date": "Thu, 30 Sep 2021 06:15:17 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "2d8ac8a54dfd6474956a6d8977f4ce8b", - "x-ms-correlation-request-id": "1c2ffd42-0809-4d57-9165-4e9c6ce73b47", - "x-ms-request-id": "e6a87a8b-738c-464b-85be-a98a10b259f4", + "x-ms-correlation-request-id": "884e6cb3-0f2f-4a3e-8da6-9147001998f5", + "x-ms-request-id": "e69f9083-f9ef-4653-87b7-3020c9d24a21", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "dcbb01dd271ec3a2c36d4a8006995b64", "x-ms-return-client-request-id": "true" }, @@ -2992,35 +2555,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:33:40 GMT", + "Date": "Thu, 30 Sep 2021 06:15:19 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "dcbb01dd271ec3a2c36d4a8006995b64", - "x-ms-correlation-request-id": "ad4d9254-48c2-47f8-8e6c-e8fa519782c6", - "x-ms-request-id": "d113e11a-3cfa-412c-9556-3323695261ea", + "x-ms-correlation-request-id": "bf969c52-9288-495b-8284-26404ea829f3", + "x-ms-request-id": "25745571-34a6-4445-ba85-4585b03ec504", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "defdc9f1370ad4602720a3532f0d9bcf", "x-ms-return-client-request-id": "true" }, @@ -3032,35 +2589,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:33:41 GMT", + "Date": "Thu, 30 Sep 2021 06:15:20 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "defdc9f1370ad4602720a3532f0d9bcf", - "x-ms-correlation-request-id": "429ef3c9-fd0c-4dbe-950a-d07538aa86ce", - "x-ms-request-id": "835e7ef0-cf62-4e96-a361-c6b8492accb9", + "x-ms-correlation-request-id": "068a2252-8585-486c-b370-466a292f4a85", + "x-ms-request-id": "c7fe29df-3f7b-4583-9ecc-36548f007424", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "05447dd1d7f67e8e25c6698f03f35efc", "x-ms-return-client-request-id": "true" }, @@ -3072,35 +2623,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:33:43 GMT", + "Date": "Thu, 30 Sep 2021 06:15:21 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "05447dd1d7f67e8e25c6698f03f35efc", - "x-ms-correlation-request-id": "f3d2d404-9d2c-41f5-92a5-46242009c4dd", - "x-ms-request-id": "8e926ecc-1c7e-4b99-8486-999ee0a422ba", + "x-ms-correlation-request-id": "d2ff94ae-c120-46fe-9027-d4dccf4e0662", + "x-ms-request-id": "fdce0292-0cea-47e9-a171-94915a24b4b9", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ae97090ff0f7a581a1e7b5fd834f94b6", "x-ms-return-client-request-id": "true" }, @@ -3112,35 +2657,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:33:44 GMT", + "Date": "Thu, 30 Sep 2021 06:15:22 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "ae97090ff0f7a581a1e7b5fd834f94b6", - "x-ms-correlation-request-id": "18f978fe-5d91-4cd6-8c0d-61530b02c3cd", - "x-ms-request-id": "c30bbe01-567d-478c-ab8b-91b5f827e81e", + "x-ms-correlation-request-id": "efbd13c2-b5b0-4738-bc4f-e97bf6b29d47", + "x-ms-request-id": "59db0dd2-afb1-41c7-b706-f7b858626011", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "88af7bd255541a6d3b7fb843ced0d133", "x-ms-return-client-request-id": "true" }, @@ -3152,35 +2691,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:33:45 GMT", + "Date": "Thu, 30 Sep 2021 06:15:24 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "88af7bd255541a6d3b7fb843ced0d133", - "x-ms-correlation-request-id": "1d674e6e-46ce-4844-9ee9-942dcd90d23b", - "x-ms-request-id": "c15bbeaa-f1dc-4c69-8689-45caf830c87d", + "x-ms-correlation-request-id": "16856949-a272-4cf3-ab1b-e97d48076959", + "x-ms-request-id": "9a00307c-3ca6-4612-8c7b-b9e8f2584f86", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2643a6c2ed76e1d8fc9e640f2190fbd6", "x-ms-return-client-request-id": "true" }, @@ -3192,35 +2725,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:33:46 GMT", + "Date": "Thu, 30 Sep 2021 06:15:25 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "2643a6c2ed76e1d8fc9e640f2190fbd6", - "x-ms-correlation-request-id": "9505e714-dd65-4984-92a6-301d9d4fd73c", - "x-ms-request-id": "545bcaa0-712c-46c5-8871-e76eea11af7a", + "x-ms-correlation-request-id": "45d6e1cd-9adb-4dd5-9002-89a7d208b577", + "x-ms-request-id": "eba27cc8-262a-4ef2-ad28-f5722624f74a", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "87bdb332d644b9a89b7d7377373dd7d1", "x-ms-return-client-request-id": "true" }, @@ -3232,35 +2759,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:33:47 GMT", + "Date": "Thu, 30 Sep 2021 06:15:26 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "87bdb332d644b9a89b7d7377373dd7d1", - "x-ms-correlation-request-id": "c112e9b1-3cee-4628-9092-5a3ffe02b58f", - "x-ms-request-id": "85af1edd-c0b6-462b-ba0b-e7a8af41a21d", + "x-ms-correlation-request-id": "4b0906a7-78db-45f1-85e3-fdc06def3cfe", + "x-ms-request-id": "4d86d89b-f484-4d72-9a36-f88a5d3f9aba", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "dc3b82166d0be540a2ce8bb5f15ef8aa", "x-ms-return-client-request-id": "true" }, @@ -3272,35 +2793,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:33:48 GMT", + "Date": "Thu, 30 Sep 2021 06:15:27 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "dc3b82166d0be540a2ce8bb5f15ef8aa", - "x-ms-correlation-request-id": "2edd93f5-73c3-4eb1-bb1b-b59f64d5a8c8", - "x-ms-request-id": "20f72b54-5244-4253-a162-1f4143478720", + "x-ms-correlation-request-id": "1be31523-cfc6-4068-9bec-4d6be88b62e4", + "x-ms-request-id": "677684a1-0450-4909-9644-a46818470897", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "1a11e2834913eceefe8a8af87960aabf", "x-ms-return-client-request-id": "true" }, @@ -3312,35 +2827,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:33:50 GMT", + "Date": "Thu, 30 Sep 2021 06:15:28 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "1a11e2834913eceefe8a8af87960aabf", - "x-ms-correlation-request-id": "fc0a1cee-bb39-4fe1-bf7c-fa155a4ccdf2", - "x-ms-request-id": "f100b190-e381-4eb4-b64f-b98979994d8c", + "x-ms-correlation-request-id": "b51643f8-101a-4b92-b631-1d76c3440c0b", + "x-ms-request-id": "b3c0ca9d-1ac7-4b2d-85cf-e59687f7bacb", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "9ff993c71f55c4cb73d8e4764af3c83d", "x-ms-return-client-request-id": "true" }, @@ -3352,35 +2861,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:33:51 GMT", + "Date": "Thu, 30 Sep 2021 06:15:29 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "9ff993c71f55c4cb73d8e4764af3c83d", - "x-ms-correlation-request-id": "2d5df9c3-ac57-4f2e-9184-505575e2c440", - "x-ms-request-id": "e5ba324d-d149-4c12-9e8c-1d77231aee9e", + "x-ms-correlation-request-id": "da269519-8298-4195-8f73-977cdec17e9c", + "x-ms-request-id": "e4b4f010-125c-4242-8d0b-57cb622d3994", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "54f4c885bd2ccdbd934fdd81e3476b42", "x-ms-return-client-request-id": "true" }, @@ -3392,35 +2895,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:33:52 GMT", + "Date": "Thu, 30 Sep 2021 06:15:30 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "54f4c885bd2ccdbd934fdd81e3476b42", - "x-ms-correlation-request-id": "556ffff7-b23b-46a9-b239-6be666cc236d", - "x-ms-request-id": "ef083282-a124-4d21-9a8c-13001a8d72d1", + "x-ms-correlation-request-id": "eb2d0ca0-00be-4c31-90d8-8ad10536c7c2", + "x-ms-request-id": "9c7ddc23-1bfc-4d5a-8f6e-533c53a1c95e", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5eeecc2359646455174da73b6478a10b", "x-ms-return-client-request-id": "true" }, @@ -3432,35 +2929,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:33:53 GMT", + "Date": "Thu, 30 Sep 2021 06:15:32 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "5eeecc2359646455174da73b6478a10b", - "x-ms-correlation-request-id": "5cd57a8d-7cbb-4899-a4d5-4e1f054ca865", - "x-ms-request-id": "fef4d6a8-e924-45a6-8748-2b273d7a88f4", + "x-ms-correlation-request-id": "01f92a2d-8ff3-49c6-a3d8-e7d3fe5745a2", + "x-ms-request-id": "96052cac-e5e4-4d08-b306-0746a00b2476", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b0724dc1556c0a92d52c0b05414ae12b", "x-ms-return-client-request-id": "true" }, @@ -3472,35 +2963,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:33:54 GMT", + "Date": "Thu, 30 Sep 2021 06:15:33 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "b0724dc1556c0a92d52c0b05414ae12b", - "x-ms-correlation-request-id": "790a5e52-0770-4b5c-a4eb-4416d4c0d244", - "x-ms-request-id": "7459a13e-08db-4d62-92ad-06c61179a8b0", + "x-ms-correlation-request-id": "28e1572f-9c14-473e-8dc5-336e35bcf517", + "x-ms-request-id": "7abd42be-a829-4ab4-9b7b-2a5aaebdb426", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7d52a26c6a042bd873903ddf1582681a", "x-ms-return-client-request-id": "true" }, @@ -3512,35 +2997,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:33:56 GMT", + "Date": "Thu, 30 Sep 2021 06:15:34 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "7d52a26c6a042bd873903ddf1582681a", - "x-ms-correlation-request-id": "84030a18-0357-408b-937e-e77263aa2622", - "x-ms-request-id": "178c59bc-e503-4a1d-bac0-55fffccb0635", + "x-ms-correlation-request-id": "92374c35-2cd0-41ed-b9f9-35de0530c260", + "x-ms-request-id": "127a5559-5878-4c23-bc2c-01d3d8a0e2a5", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "95bfd2adbad4ced639e488384d4f22cd", "x-ms-return-client-request-id": "true" }, @@ -3552,35 +3031,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:33:57 GMT", + "Date": "Thu, 30 Sep 2021 06:15:36 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "95bfd2adbad4ced639e488384d4f22cd", - "x-ms-correlation-request-id": "53158088-2d52-4dce-95c4-3ab77cbf34f6", - "x-ms-request-id": "31b19b25-c48a-4a74-a4bb-e9e984d7a516", + "x-ms-correlation-request-id": "224612b4-4de3-4cb9-8899-c551eee49d13", + "x-ms-request-id": "e73627b3-a4d0-4e98-b04c-6e492fe8c493", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c1ce7b6b2326570674473cdb17b3f452", "x-ms-return-client-request-id": "true" }, @@ -3592,35 +3065,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:33:58 GMT", + "Date": "Thu, 30 Sep 2021 06:15:37 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "c1ce7b6b2326570674473cdb17b3f452", - "x-ms-correlation-request-id": "bb170f99-09a4-4a22-9c22-214c3a9c860e", - "x-ms-request-id": "af7bda0d-a890-4d15-a60b-8097f7618770", + "x-ms-correlation-request-id": "bdd2f5c3-8222-4866-9e4b-2e9cb7e639d5", + "x-ms-request-id": "99dd3617-43c4-42bc-bed9-f1b87bee9120", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6f58f0c34b8ab156cc834420e19fde24", "x-ms-return-client-request-id": "true" }, @@ -3632,35 +3099,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:33:59 GMT", + "Date": "Thu, 30 Sep 2021 06:15:38 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "6f58f0c34b8ab156cc834420e19fde24", - "x-ms-correlation-request-id": "6e41b2fe-1744-4466-858b-babe21c3d562", - "x-ms-request-id": "448b529f-a3c3-4831-a829-446c6c1354d1", + "x-ms-correlation-request-id": "37a4d746-db5e-47e9-8d15-23a7988f1be0", + "x-ms-request-id": "c127bb0b-3e09-4de9-bf99-34f26d5f5502", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "9a73706da6b48af4cc67208d7efab685", "x-ms-return-client-request-id": "true" }, @@ -3672,35 +3133,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:34:00 GMT", + "Date": "Thu, 30 Sep 2021 06:15:39 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "9a73706da6b48af4cc67208d7efab685", - "x-ms-correlation-request-id": "79662f60-38fb-4e4f-bd0a-643ff02765a4", - "x-ms-request-id": "d1303575-2480-4f7b-b085-fcca28be6708", + "x-ms-correlation-request-id": "9d89bf42-2e64-469a-87bf-ccf2e80292fd", + "x-ms-request-id": "c0c54618-0c7b-49c5-af47-bf3733acdeb0", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5c7536efb3f72042241cf5a2dfe576d5", "x-ms-return-client-request-id": "true" }, @@ -3712,35 +3167,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:34:01 GMT", + "Date": "Thu, 30 Sep 2021 06:15:40 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "5c7536efb3f72042241cf5a2dfe576d5", - "x-ms-correlation-request-id": "e7b1d395-50cc-4647-950e-67313d9b243c", - "x-ms-request-id": "1aacf62f-65f8-4efb-8d3e-05242b56c5a7", + "x-ms-correlation-request-id": "f3aefdf9-878b-4533-8f9d-95a7f0356dc2", + "x-ms-request-id": "0d0d710a-d51f-41c1-884a-e6ff1751e14f", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a76d186859401c9efccda2232ac933d1", "x-ms-return-client-request-id": "true" }, @@ -3752,35 +3201,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:34:03 GMT", + "Date": "Thu, 30 Sep 2021 06:15:41 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "a76d186859401c9efccda2232ac933d1", - "x-ms-correlation-request-id": "ca2b0950-bfe3-4b80-81c2-9939cfe7f9e4", - "x-ms-request-id": "e24bc184-4012-40c2-8206-5392539c849f", + "x-ms-correlation-request-id": "6f2c1f53-00e1-4e9d-8d70-e2e431bf274f", + "x-ms-request-id": "d2a1224b-b762-4bf5-827c-15a095c7464a", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "aa30becd812aba2d2e527697b152aae6", "x-ms-return-client-request-id": "true" }, @@ -3792,35 +3235,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:34:04 GMT", + "Date": "Thu, 30 Sep 2021 06:15:42 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "aa30becd812aba2d2e527697b152aae6", - "x-ms-correlation-request-id": "d433b16b-60fb-4664-b5a4-348f7656b85b", - "x-ms-request-id": "c727a602-31f0-4c5b-bf17-241b753cfe59", + "x-ms-correlation-request-id": "2b91f0b2-9a83-4ced-b325-2ed7dd9dc7f9", + "x-ms-request-id": "af5f242c-637f-445a-b10d-e991037aadfd", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "65244bf00f8c964498596029101ef55b", "x-ms-return-client-request-id": "true" }, @@ -3832,35 +3269,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:34:05 GMT", + "Date": "Thu, 30 Sep 2021 06:15:44 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "65244bf00f8c964498596029101ef55b", - "x-ms-correlation-request-id": "2261594f-cd68-42c3-8911-bf92c3a83ef6", - "x-ms-request-id": "4524576a-3252-4de0-b729-76c45dace856", + "x-ms-correlation-request-id": "af1b6d7f-808d-42b4-bd29-010baa6784ab", + "x-ms-request-id": "157bd095-2f0b-40a6-a947-e4ee20602eed", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "20d524e9ccb4e7abeab379eee3066ba9", "x-ms-return-client-request-id": "true" }, @@ -3872,35 +3303,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:34:06 GMT", + "Date": "Thu, 30 Sep 2021 06:15:45 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "20d524e9ccb4e7abeab379eee3066ba9", - "x-ms-correlation-request-id": "38bd84dd-3765-4a74-84de-62dbee4a796a", - "x-ms-request-id": "15d8b8f3-e390-4908-960d-a0d5fbb15884", + "x-ms-correlation-request-id": "cdde3f40-f2c0-4dcd-ad0c-0e3af22d734c", + "x-ms-request-id": "ee86a4ca-1d82-413c-923a-e8caedd204c2", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "df32bc22cda4bd44799a12d12004a90f", "x-ms-return-client-request-id": "true" }, @@ -3912,35 +3337,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:34:07 GMT", + "Date": "Thu, 30 Sep 2021 06:15:46 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "df32bc22cda4bd44799a12d12004a90f", - "x-ms-correlation-request-id": "b09c7f00-5eba-417e-b6f9-58971fe43288", - "x-ms-request-id": "896851ea-e358-4bfe-93fb-cd38ec4b19ce", + "x-ms-correlation-request-id": "fb00b3d4-72e0-406d-8d9f-f9116ea7600f", + "x-ms-request-id": "88db6731-ca31-42b1-9125-2170d9753759", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "8cae1a5d8a7d2431a03d7ad99656b291", "x-ms-return-client-request-id": "true" }, @@ -3952,35 +3371,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:34:08 GMT", + "Date": "Thu, 30 Sep 2021 06:15:48 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "8cae1a5d8a7d2431a03d7ad99656b291", - "x-ms-correlation-request-id": "37854981-c6a4-4baa-b731-802a5ed81351", - "x-ms-request-id": "f7b82069-284d-451f-87f5-8e0a0f48202b", + "x-ms-correlation-request-id": "60ad4067-e3ec-458a-b45b-0ffa879090a1", + "x-ms-request-id": "f92ff104-47d0-4935-bd66-dee49ef75080", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5406b6ed15eb1bb6df17a71ab9d9c6e6", "x-ms-return-client-request-id": "true" }, @@ -3992,35 +3405,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:34:10 GMT", + "Date": "Thu, 30 Sep 2021 06:15:49 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "5406b6ed15eb1bb6df17a71ab9d9c6e6", - "x-ms-correlation-request-id": "ddbeea4f-1db2-40d1-b741-e99cc7ae2ecd", - "x-ms-request-id": "55e20019-d249-4725-9c4a-54631ed83e18", + "x-ms-correlation-request-id": "2e5b569a-a5c1-4ac4-bc92-4b41744acfec", + "x-ms-request-id": "cb0c589a-1a4a-4c08-b194-403617cd444f", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c8906909de58982c8a0e3f67526b2722", "x-ms-return-client-request-id": "true" }, @@ -4032,35 +3439,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:34:11 GMT", + "Date": "Thu, 30 Sep 2021 06:15:50 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "c8906909de58982c8a0e3f67526b2722", - "x-ms-correlation-request-id": "fdd6dffc-39f7-47a3-861b-d067228191f2", - "x-ms-request-id": "a7dfb447-af3e-47bc-ad40-0306d05511f1", + "x-ms-correlation-request-id": "02d19d99-096e-41ac-8709-44b94312f06b", + "x-ms-request-id": "dadab022-f976-42cc-adc3-0dae0eb608aa", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "69e381e755fe47236392ad65e3176ac6", "x-ms-return-client-request-id": "true" }, @@ -4072,35 +3473,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:34:12 GMT", + "Date": "Thu, 30 Sep 2021 06:15:51 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "69e381e755fe47236392ad65e3176ac6", - "x-ms-correlation-request-id": "a24557a8-9554-4f46-b23e-fdfbee2aa36c", - "x-ms-request-id": "45db0135-af89-4dec-9bba-d3a8afd3fc5e", + "x-ms-correlation-request-id": "31b66ce6-4423-46eb-a6a9-24044d91ed9e", + "x-ms-request-id": "a2f4ddcc-b6b6-4a95-98ff-c15dc992eab8", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2ccf9476e9c50f388a6dcaddd64fc874", "x-ms-return-client-request-id": "true" }, @@ -4112,35 +3507,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:34:13 GMT", + "Date": "Thu, 30 Sep 2021 06:15:52 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "2ccf9476e9c50f388a6dcaddd64fc874", - "x-ms-correlation-request-id": "90290d4a-c05b-4b9f-b7d7-7ac8dc92cfbf", - "x-ms-request-id": "9848ad7e-4fd5-4112-b74e-abba89ded2cc", + "x-ms-correlation-request-id": "eb950655-2aff-4497-a0a6-cb8e8e442ec9", + "x-ms-request-id": "5555ca1b-e113-473d-97c9-a03a48e8a9f9", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "383284ef5df6b4e8464965c530c6b573", "x-ms-return-client-request-id": "true" }, @@ -4152,35 +3541,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:34:14 GMT", + "Date": "Thu, 30 Sep 2021 06:15:54 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "383284ef5df6b4e8464965c530c6b573", - "x-ms-correlation-request-id": "e8ef3eee-3d9f-41bc-b1f0-7ecf002b7899", - "x-ms-request-id": "b47e4591-b89c-454b-884a-40b92eed3dac", + "x-ms-correlation-request-id": "92735ef0-5f0f-4f7e-b116-55e65a9e7a0c", + "x-ms-request-id": "a0b44133-d210-4b37-8941-987b95d3de5a", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "bef078a3fb9cfe5c48d3df908a457014", "x-ms-return-client-request-id": "true" }, @@ -4192,35 +3575,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:34:15 GMT", + "Date": "Thu, 30 Sep 2021 06:15:55 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "bef078a3fb9cfe5c48d3df908a457014", - "x-ms-correlation-request-id": "d502ab29-d56e-463c-af0d-05c031684c0f", - "x-ms-request-id": "53c548fe-88c9-4f1d-b288-dfc185e087e4", + "x-ms-correlation-request-id": "55735509-f5ed-4aa1-9322-6a44349faace", + "x-ms-request-id": "d53cca1a-e3ec-4362-a01e-fa648f54a7a2", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5e7539ca32e419cfac1ae57c8472dec3", "x-ms-return-client-request-id": "true" }, @@ -4232,35 +3609,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:34:17 GMT", + "Date": "Thu, 30 Sep 2021 06:15:56 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "5e7539ca32e419cfac1ae57c8472dec3", - "x-ms-correlation-request-id": "cc685209-56ea-4781-a2a6-244a7a8ef0a2", - "x-ms-request-id": "71ad80f4-a2e5-4d5e-83b6-6ef201cb3a94", + "x-ms-correlation-request-id": "8cbed0da-93fc-45c2-96b6-8f8b2ad71d54", + "x-ms-request-id": "8b1b3c3b-4584-4e19-af2c-41ac53d0a77c", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5d3a57b7095ef4d82734f0237d572900", "x-ms-return-client-request-id": "true" }, @@ -4272,35 +3643,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:34:18 GMT", + "Date": "Thu, 30 Sep 2021 06:15:58 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "5d3a57b7095ef4d82734f0237d572900", - "x-ms-correlation-request-id": "98bb5b9c-2291-49cc-b203-e2fab6d9ad88", - "x-ms-request-id": "45d352ab-8420-4952-9e32-cc0792b7c3de", + "x-ms-correlation-request-id": "74b50f79-bb9a-4055-914b-5d89e0ed93ae", + "x-ms-request-id": "ed6402f2-135b-4f73-b100-6ba9530f54c9", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f7fb50d85750708ea9d7128115e079d5", "x-ms-return-client-request-id": "true" }, @@ -4312,35 +3677,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:34:19 GMT", + "Date": "Thu, 30 Sep 2021 06:15:59 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "f7fb50d85750708ea9d7128115e079d5", - "x-ms-correlation-request-id": "13c3adcc-6b66-4374-a513-ed4e687af375", - "x-ms-request-id": "baa32712-f54b-4a0d-804b-841ae4a6eaec", + "x-ms-correlation-request-id": "3009d7df-80e1-49df-ae4f-d196049060ef", + "x-ms-request-id": "e7b7de8b-8015-491d-8b95-a1699efe8b19", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "33d91bf4120bc0b5608137b042ab9b54", "x-ms-return-client-request-id": "true" }, @@ -4352,35 +3711,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:34:20 GMT", + "Date": "Thu, 30 Sep 2021 06:16:00 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "33d91bf4120bc0b5608137b042ab9b54", - "x-ms-correlation-request-id": "6239ca17-0f8a-4380-ab5c-fe78e9293d96", - "x-ms-request-id": "db0562d1-d95a-485d-8e90-89640d656cbf", + "x-ms-correlation-request-id": "991be542-125c-4169-a4ba-3c21f379d000", + "x-ms-request-id": "990205ea-e5c6-4c31-ae9e-2e6b294c74fd", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "33a3e5f0e7776072c8c9b487f756de46", "x-ms-return-client-request-id": "true" }, @@ -4392,35 +3745,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:34:21 GMT", + "Date": "Thu, 30 Sep 2021 06:16:01 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "33a3e5f0e7776072c8c9b487f756de46", - "x-ms-correlation-request-id": "f4cc3441-6b57-4476-8b44-3de8b73282aa", - "x-ms-request-id": "87d37eae-0a09-41b7-a29e-4a743d3bc641", + "x-ms-correlation-request-id": "4b50b915-d7ea-4fda-b0bb-a7384926928e", + "x-ms-request-id": "45a23309-1e8d-476a-ae72-bc48d65bd22f", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "622f1abaf67ec5f49b3a96cf1fdd2efd", "x-ms-return-client-request-id": "true" }, @@ -4432,35 +3779,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:34:22 GMT", + "Date": "Thu, 30 Sep 2021 06:16:02 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "622f1abaf67ec5f49b3a96cf1fdd2efd", - "x-ms-correlation-request-id": "89667436-181f-4fad-b81e-000a56c9a834", - "x-ms-request-id": "8a348f3c-5be5-4d94-9a8e-aa7620260ba6", + "x-ms-correlation-request-id": "f63f208b-dd37-4810-b17c-256ff94293c7", + "x-ms-request-id": "c8f1558f-9bf3-4b9e-a85d-048e7e5ba151", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "3090bd3c453c0d5da8786a425e2ec80a", "x-ms-return-client-request-id": "true" }, @@ -4472,35 +3813,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:34:24 GMT", + "Date": "Thu, 30 Sep 2021 06:16:03 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "3090bd3c453c0d5da8786a425e2ec80a", - "x-ms-correlation-request-id": "ba937311-1149-45bb-a399-4a4cdfee9973", - "x-ms-request-id": "d11e1805-2096-42a5-ab87-83365de0cad4", + "x-ms-correlation-request-id": "81aaaef3-d969-4dbe-a8bf-4ea7d07bddec", + "x-ms-request-id": "bb556d20-3e45-4102-8b24-b4931d439b62", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "27f5f0a2397cfad6f0dd983c50a340eb", "x-ms-return-client-request-id": "true" }, @@ -4512,35 +3847,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:34:25 GMT", + "Date": "Thu, 30 Sep 2021 06:16:04 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "27f5f0a2397cfad6f0dd983c50a340eb", - "x-ms-correlation-request-id": "3798cc61-9a59-4b85-a60c-839425ac221b", - "x-ms-request-id": "96417dac-a66e-499c-aa42-23205301570c", + "x-ms-correlation-request-id": "873ad4af-30fd-4cb5-a824-65773b767aa0", + "x-ms-request-id": "62720d1c-4d96-402e-bdff-cc900892520a", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "3a4ab69aaec6750abd22b9058bb1676c", "x-ms-return-client-request-id": "true" }, @@ -4552,35 +3881,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:34:26 GMT", + "Date": "Thu, 30 Sep 2021 06:16:06 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "3a4ab69aaec6750abd22b9058bb1676c", - "x-ms-correlation-request-id": "5400d90e-9628-45c6-8502-7eccc46cdc2c", - "x-ms-request-id": "dac3b195-a72d-4550-8968-1ded247ecad4", + "x-ms-correlation-request-id": "98b70514-4269-44ae-b58c-a357cc5c4540", + "x-ms-request-id": "6dce013b-9540-4fe3-9036-4cb0aaf09753", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2f2c8c7207e80381e6963f5eac20bd05", "x-ms-return-client-request-id": "true" }, @@ -4592,35 +3915,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:34:27 GMT", + "Date": "Thu, 30 Sep 2021 06:16:07 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "2f2c8c7207e80381e6963f5eac20bd05", - "x-ms-correlation-request-id": "a79702a4-7daf-4186-87fb-6b18cc91eba6", - "x-ms-request-id": "d93121d9-2f96-4e9a-b30f-0956bac949fa", + "x-ms-correlation-request-id": "9b56026c-75de-46d0-8450-43d634a51b91", + "x-ms-request-id": "5d56d847-0d1e-4f95-8907-40c4aa19c853", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a8a87f388de3f343e680695a7fd16e3e", "x-ms-return-client-request-id": "true" }, @@ -4632,35 +3949,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:34:29 GMT", + "Date": "Thu, 30 Sep 2021 06:16:08 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "a8a87f388de3f343e680695a7fd16e3e", - "x-ms-correlation-request-id": "0951c486-67e5-4dd7-9259-6e35fe4a2cba", - "x-ms-request-id": "09256b21-7942-4758-a795-8172096ad630", + "x-ms-correlation-request-id": "935f6821-52d0-4b3e-9cb4-f7c582fda844", + "x-ms-request-id": "b386d11a-5594-4794-935e-f158093a651d", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c3ca2c7611769202354754306fabc89c", "x-ms-return-client-request-id": "true" }, @@ -4672,35 +3983,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:34:30 GMT", + "Date": "Thu, 30 Sep 2021 06:16:09 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "c3ca2c7611769202354754306fabc89c", - "x-ms-correlation-request-id": "310537a2-f9a8-4dbe-8b64-17db809bd25e", - "x-ms-request-id": "c07b1ef5-ba4c-4e0e-a7c7-ffd002737594", + "x-ms-correlation-request-id": "b4f3abf4-717b-47c3-8e99-0bb453ee7172", + "x-ms-request-id": "1f412568-21ba-4805-b3e1-09df0dfb05d6", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "0cccb365be09e488493849679d268314", "x-ms-return-client-request-id": "true" }, @@ -4712,35 +4017,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:34:31 GMT", + "Date": "Thu, 30 Sep 2021 06:16:11 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "0cccb365be09e488493849679d268314", - "x-ms-correlation-request-id": "3e2a5b55-590e-4ef4-a286-1b599313e8b5", - "x-ms-request-id": "456699dc-fddf-414e-b69d-3c9e1d12d3af", + "x-ms-correlation-request-id": "52d38918-c169-4f2a-af52-5899fd71c1d1", + "x-ms-request-id": "b6ef2dca-d268-4b7b-816b-5484e240f036", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "80e80027f956278e7c15729c3913843b", "x-ms-return-client-request-id": "true" }, @@ -4752,35 +4051,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:34:32 GMT", + "Date": "Thu, 30 Sep 2021 06:16:12 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "80e80027f956278e7c15729c3913843b", - "x-ms-correlation-request-id": "61bd7c37-5f8a-41b1-a100-de5f35611091", - "x-ms-request-id": "9a517682-4476-4db0-bf9f-c3a00e14b00f", + "x-ms-correlation-request-id": "5d5f3c40-572d-459f-b25f-4bda4fa2a61b", + "x-ms-request-id": "2a470c13-997a-4937-9b86-7c970472f0b6", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "cbf5cdb86205b735a3e67a3ec89af50f", "x-ms-return-client-request-id": "true" }, @@ -4792,35 +4085,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:34:33 GMT", + "Date": "Thu, 30 Sep 2021 06:16:13 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "cbf5cdb86205b735a3e67a3ec89af50f", - "x-ms-correlation-request-id": "24efc426-8c56-41f3-a82e-db343ba8c9c2", - "x-ms-request-id": "d95345a2-1bbb-494b-a6b4-cfb5fdebaccc", + "x-ms-correlation-request-id": "7193f8d4-1267-4f5e-a07b-10cf154d560b", + "x-ms-request-id": "673319b8-68aa-4349-8154-c3c2ae5876ba", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6e083fc347c36b4525a58ff34cebaa35", "x-ms-return-client-request-id": "true" }, @@ -4832,35 +4119,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:34:35 GMT", + "Date": "Thu, 30 Sep 2021 06:16:14 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "6e083fc347c36b4525a58ff34cebaa35", - "x-ms-correlation-request-id": "f5d1abcf-9692-4695-861a-e853720f5aa0", - "x-ms-request-id": "faa87af2-3c61-4da4-a253-e2bbc70e079b", + "x-ms-correlation-request-id": "9f5d3627-a858-44fb-9982-7205390ddda1", + "x-ms-request-id": "85e68164-39b4-4bc9-a1cd-725394802353", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "cfaf0db4b730c40fcb30dd707f505fe2", "x-ms-return-client-request-id": "true" }, @@ -4872,35 +4153,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:34:36 GMT", + "Date": "Thu, 30 Sep 2021 06:16:15 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "cfaf0db4b730c40fcb30dd707f505fe2", - "x-ms-correlation-request-id": "68c14331-7e77-4eaf-9a57-ff5fb496c5ec", - "x-ms-request-id": "defb8740-c17b-4130-b299-848c6d9e4440", + "x-ms-correlation-request-id": "8bef5953-3f63-4052-a734-37ae022c2ebf", + "x-ms-request-id": "d8a2b956-daa0-4423-ac15-664ccd0c0ac1", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "fad96320150a7178878aa65fd3416bb7", "x-ms-return-client-request-id": "true" }, @@ -4912,35 +4187,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:34:37 GMT", + "Date": "Thu, 30 Sep 2021 06:16:17 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "fad96320150a7178878aa65fd3416bb7", - "x-ms-correlation-request-id": "1c59da34-18d3-495f-92e8-e4836d4309bc", - "x-ms-request-id": "986e44ae-d138-428f-bb40-6378b3d7666a", + "x-ms-correlation-request-id": "266f3373-d55d-4d6e-8b6a-74d6d5fbec73", + "x-ms-request-id": "050a4627-7eba-4bcd-b4b6-3e0d03c09b79", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ba89443b25eb0bde2f44a3926ad5ebd5", "x-ms-return-client-request-id": "true" }, @@ -4952,35 +4221,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:34:38 GMT", + "Date": "Thu, 30 Sep 2021 06:16:18 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "ba89443b25eb0bde2f44a3926ad5ebd5", - "x-ms-correlation-request-id": "200c6c99-c2af-4533-8ffd-11241dd1f37a", - "x-ms-request-id": "6071982a-e25b-408a-89b7-272fa4f8dcd5", + "x-ms-correlation-request-id": "848d1abf-f04d-42ac-a8ff-3cd3e7d2e498", + "x-ms-request-id": "4ae2e107-e0c8-42cb-a226-f01171eec4ce", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e9d3ac46b0129f2a953e48a611aff08a", "x-ms-return-client-request-id": "true" }, @@ -4992,35 +4255,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:34:39 GMT", + "Date": "Thu, 30 Sep 2021 06:16:19 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "e9d3ac46b0129f2a953e48a611aff08a", - "x-ms-correlation-request-id": "38d13db0-c8da-42f3-ac52-ed023d882455", - "x-ms-request-id": "264b7a58-7d87-46ca-bbc3-ea65787114da", + "x-ms-correlation-request-id": "5485d2ae-dc6f-4cd6-85dd-c66d6fb5c698", + "x-ms-request-id": "dad61a30-3b11-43d7-83c9-320f350e19e3", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "3a3425c4a5c6fbf685cdcac671e507b1", "x-ms-return-client-request-id": "true" }, @@ -5032,35 +4289,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:34:40 GMT", + "Date": "Thu, 30 Sep 2021 06:16:20 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "3a3425c4a5c6fbf685cdcac671e507b1", - "x-ms-correlation-request-id": "a7e19bbd-1001-4b2f-a044-4180ad0ca888", - "x-ms-request-id": "8b178125-8a76-43ad-8e13-872678a171c7", + "x-ms-correlation-request-id": "f63526bb-03ec-41eb-ad74-46fde5493801", + "x-ms-request-id": "9f1dd469-8805-4a2e-94f9-2da2040f5ae9", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2619d09f826d8ba41ae924addc37fa7f", "x-ms-return-client-request-id": "true" }, @@ -5072,35 +4323,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:34:42 GMT", + "Date": "Thu, 30 Sep 2021 06:16:21 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "2619d09f826d8ba41ae924addc37fa7f", - "x-ms-correlation-request-id": "4cdfcd66-c18a-46e6-8a8b-bd1bc2b8b362", - "x-ms-request-id": "729d1680-00e9-413b-b743-da87d3f46564", + "x-ms-correlation-request-id": "30585419-e6ae-4a05-9cea-be0e3cc446ba", + "x-ms-request-id": "149aad77-bce9-483b-b2a3-0cf369469da8", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "44cd1953b0a1a00eb6d86345e5632db0", "x-ms-return-client-request-id": "true" }, @@ -5112,35 +4357,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:34:43 GMT", + "Date": "Thu, 30 Sep 2021 06:16:23 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "44cd1953b0a1a00eb6d86345e5632db0", - "x-ms-correlation-request-id": "664c7c55-a170-48f6-9952-109c4422a165", - "x-ms-request-id": "ddd02164-e16c-485b-b790-068b1858fb41", + "x-ms-correlation-request-id": "e11ab481-4b9a-4a18-adc8-4de72f7d60f9", + "x-ms-request-id": "47425ee7-5cf2-4b13-bf43-de55d8dc215b", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "40079636ca96421c80a920dc81481e4d", "x-ms-return-client-request-id": "true" }, @@ -5152,35 +4391,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:34:44 GMT", + "Date": "Thu, 30 Sep 2021 06:16:24 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "40079636ca96421c80a920dc81481e4d", - "x-ms-correlation-request-id": "661b4f2d-9a40-4617-bcff-b735dfe3b981", - "x-ms-request-id": "2a437d79-d328-4319-a155-822501e52929", + "x-ms-correlation-request-id": "6d03f10d-12e9-4b06-ae71-4e3cce73f5e2", + "x-ms-request-id": "2cbb3db5-9f66-41a0-94aa-822dd01f884d", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "58734ad2c217ee10c27870951e5fa5b6", "x-ms-return-client-request-id": "true" }, @@ -5192,35 +4425,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:34:45 GMT", + "Date": "Thu, 30 Sep 2021 06:16:25 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "58734ad2c217ee10c27870951e5fa5b6", - "x-ms-correlation-request-id": "39cd3e22-33f2-4321-a72b-3176cb902c1a", - "x-ms-request-id": "d3935642-8c78-40f8-b672-29c5cf08a757", + "x-ms-correlation-request-id": "dc1c5dd2-9c54-449b-82ec-af3195bc3af4", + "x-ms-request-id": "a7ac19f8-e3f0-4c0b-b919-32a0e3c8b6af", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "467673bcb93089e9fc8bc4f790311f6d", "x-ms-return-client-request-id": "true" }, @@ -5232,35 +4459,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:34:46 GMT", + "Date": "Thu, 30 Sep 2021 06:16:27 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "467673bcb93089e9fc8bc4f790311f6d", - "x-ms-correlation-request-id": "f306ef18-3c97-493b-a3bd-274a6a071b13", - "x-ms-request-id": "6dacc47d-34bd-450d-b6af-0de20ff57df4", + "x-ms-correlation-request-id": "f191629b-a7ad-4905-8fa7-ca5583848c6b", + "x-ms-request-id": "d59b5b3a-5b61-4f52-bcf8-a8d0d6dfce16", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "9a7316b9d4f0749885187e1d59862321", "x-ms-return-client-request-id": "true" }, @@ -5272,35 +4493,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:34:47 GMT", + "Date": "Thu, 30 Sep 2021 06:16:28 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "9a7316b9d4f0749885187e1d59862321", - "x-ms-correlation-request-id": "6f38cbbc-e323-420e-998f-0fdf2c954f74", - "x-ms-request-id": "dea2a6f9-4833-4a54-98f7-7345253d4719", + "x-ms-correlation-request-id": "d6b3b9ab-f626-4eb4-94eb-7c114ed51557", + "x-ms-request-id": "43b13ff9-5796-4120-a43b-48fb0ddfcb39", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "0d206903d8d2181d61e95b8bfe195e91", "x-ms-return-client-request-id": "true" }, @@ -5312,35 +4527,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:34:48 GMT", + "Date": "Thu, 30 Sep 2021 06:16:29 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "0d206903d8d2181d61e95b8bfe195e91", - "x-ms-correlation-request-id": "9985af37-d031-4600-89e6-aff0bf763a39", - "x-ms-request-id": "27de3a1a-8154-49bc-be44-842a2594ec84", + "x-ms-correlation-request-id": "3e397355-f1db-43ee-9719-2253f9e5e4da", + "x-ms-request-id": "786424c9-59f5-4884-8a5d-7f5c7219d869", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "08dc02590aebe7c6da02c0173bcc2f76", "x-ms-return-client-request-id": "true" }, @@ -5352,35 +4561,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:34:50 GMT", + "Date": "Thu, 30 Sep 2021 06:16:30 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "08dc02590aebe7c6da02c0173bcc2f76", - "x-ms-correlation-request-id": "8b071962-1796-4346-8fa0-84ed7eae2fd5", - "x-ms-request-id": "7b9c413b-917a-4b2c-b414-2f7ea84d4641", + "x-ms-correlation-request-id": "91968ba7-ec01-4ebc-acc2-236dccd3349a", + "x-ms-request-id": "36d34c65-b63f-4f78-912b-bd9e5fae0d81", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "26f4a2671210e19bf85a3906790c756c", "x-ms-return-client-request-id": "true" }, @@ -5392,35 +4595,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:34:51 GMT", + "Date": "Thu, 30 Sep 2021 06:16:32 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "26f4a2671210e19bf85a3906790c756c", - "x-ms-correlation-request-id": "069cd081-4020-4ce0-bd00-351280714431", - "x-ms-request-id": "f93173ea-1008-4b48-9fdd-98e42ae2c7c7", + "x-ms-correlation-request-id": "7eb5cd12-49c8-4bf4-b381-651d6b9d73fd", + "x-ms-request-id": "428ae539-f307-4061-8bb4-d8657c21e5a5", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "56c4edba1baaf835a23932cf1706dd95", "x-ms-return-client-request-id": "true" }, @@ -5432,35 +4629,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:34:52 GMT", + "Date": "Thu, 30 Sep 2021 06:16:33 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "56c4edba1baaf835a23932cf1706dd95", - "x-ms-correlation-request-id": "775e9b6a-22b3-41f6-ac63-a4698f048681", - "x-ms-request-id": "ce57cdaf-c712-42ee-aa45-69d361f900e5", + "x-ms-correlation-request-id": "203e386e-519a-4674-9d74-0be0175cf87a", + "x-ms-request-id": "bd3a0c5a-8a2f-414d-8c0b-980c5b17ef85", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5c24e5ba3725478067fa0f91d1c06ecd", "x-ms-return-client-request-id": "true" }, @@ -5472,35 +4663,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:34:53 GMT", + "Date": "Thu, 30 Sep 2021 06:16:34 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "5c24e5ba3725478067fa0f91d1c06ecd", - "x-ms-correlation-request-id": "bdcf6603-c51f-414a-a371-4861b6923acd", - "x-ms-request-id": "62a6b447-7af1-4e03-a28c-b5270b0fb1cf", + "x-ms-correlation-request-id": "2bb56fb9-8b69-4f4d-8f97-3b8ed2c7328d", + "x-ms-request-id": "c9b5e49a-6fa5-413d-90ff-c62962b6550f", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "4e5d548dd8084ccb6dfb83d7dfcbc9f2", "x-ms-return-client-request-id": "true" }, @@ -5512,35 +4697,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:34:54 GMT", + "Date": "Thu, 30 Sep 2021 06:16:35 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "4e5d548dd8084ccb6dfb83d7dfcbc9f2", - "x-ms-correlation-request-id": "975ad475-3b46-4817-a584-2dd886347d4a", - "x-ms-request-id": "98fed6bd-1c75-46d7-9cf1-7e7b4d9e8938", + "x-ms-correlation-request-id": "eb9bd1d3-5810-4635-81d9-03af50c113b9", + "x-ms-request-id": "ec217f08-770b-4874-8724-4223574df0c2", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "934ca47c19e882476d7cefb00ba327e2", "x-ms-return-client-request-id": "true" }, @@ -5552,35 +4731,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:34:56 GMT", + "Date": "Thu, 30 Sep 2021 06:16:36 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "934ca47c19e882476d7cefb00ba327e2", - "x-ms-correlation-request-id": "cc787f05-6426-4c48-b022-e5d0e1b75e2c", - "x-ms-request-id": "a422c303-fe89-4b04-80d4-77eaec8a9cbf", + "x-ms-correlation-request-id": "19ef4f08-4882-48c2-bdd3-d00590ae0357", + "x-ms-request-id": "1cc67b69-ab43-44a4-8e74-ec48154a50c1", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c34265cb8fa9e18c1ad7ee29b4a8679b", "x-ms-return-client-request-id": "true" }, @@ -5592,35 +4765,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:34:57 GMT", + "Date": "Thu, 30 Sep 2021 06:16:37 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "c34265cb8fa9e18c1ad7ee29b4a8679b", - "x-ms-correlation-request-id": "fd4618a9-85df-445e-8495-90c8885fd47e", - "x-ms-request-id": "09754e82-e02d-4e24-823a-72830e77e26f", + "x-ms-correlation-request-id": "1ba163b4-1bfd-4f59-b217-27421daaf64c", + "x-ms-request-id": "2d1daffc-fd4a-4618-a4f8-338992072668", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2c151d30da7373e40cdae18be91b41c9", "x-ms-return-client-request-id": "true" }, @@ -5632,35 +4799,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:34:58 GMT", + "Date": "Thu, 30 Sep 2021 06:16:39 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "2c151d30da7373e40cdae18be91b41c9", - "x-ms-correlation-request-id": "614b545e-d629-4c99-a5a1-a63b78a6ee6e", - "x-ms-request-id": "c79ce9d2-d123-40bf-ae10-ddfc3a687143", + "x-ms-correlation-request-id": "fa552255-80f1-4369-9756-2b6dd146b6c5", + "x-ms-request-id": "c3550f46-080a-4e1a-b538-69e8dc18b823", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7a0ca1d30689ec49176a79112a1dcec4", "x-ms-return-client-request-id": "true" }, @@ -5672,35 +4833,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:34:59 GMT", + "Date": "Thu, 30 Sep 2021 06:16:40 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "7a0ca1d30689ec49176a79112a1dcec4", - "x-ms-correlation-request-id": "f2691163-33c7-449a-a5f4-fb8ef79e4c0e", - "x-ms-request-id": "0cf14fe6-7340-4c1f-be3a-f442148c3ab8", + "x-ms-correlation-request-id": "3b2bd9e5-947e-47d0-99c1-78285a94d984", + "x-ms-request-id": "d485fcf3-2c47-4b94-bdec-5a84446b9ddd", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ed7f5315fa8ef06e80ceb6ceae01f7ff", "x-ms-return-client-request-id": "true" }, @@ -5712,35 +4867,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:35:00 GMT", + "Date": "Thu, 30 Sep 2021 06:16:42 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "ed7f5315fa8ef06e80ceb6ceae01f7ff", - "x-ms-correlation-request-id": "71131c22-b87b-4823-9843-8a572071ffde", - "x-ms-request-id": "d55ed719-d7ad-499a-a285-2ebb065b2fa0", + "x-ms-correlation-request-id": "9a035c66-7b8e-442c-b999-fa6f06c1377a", + "x-ms-request-id": "110c6ea5-f73e-4134-b4af-12ae5da64ab8", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "12552596ed9c2912d428150861d349ef", "x-ms-return-client-request-id": "true" }, @@ -5752,35 +4901,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:35:01 GMT", + "Date": "Thu, 30 Sep 2021 06:16:43 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "12552596ed9c2912d428150861d349ef", - "x-ms-correlation-request-id": "00456805-9b0b-40e3-a342-5923599787d8", - "x-ms-request-id": "182cd0dc-738a-48ce-974e-d515cdadefec", + "x-ms-correlation-request-id": "c712fef3-75d5-4142-9675-50dcb2335500", + "x-ms-request-id": "1313ddc3-a2a1-488f-bdda-f53bc878aa85", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "96751c0c539bd93b321cfaba507a3e16", "x-ms-return-client-request-id": "true" }, @@ -5792,35 +4935,29 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:35:03 GMT", + "Date": "Thu, 30 Sep 2021 06:16:44 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "96751c0c539bd93b321cfaba507a3e16", - "x-ms-correlation-request-id": "2db04b33-9ed6-4b9c-9980-2d5dda8241ec", - "x-ms-request-id": "1b828fde-4baa-4294-a584-fba53d738abd", + "x-ms-correlation-request-id": "6e9d0fe3-aed6-4cd6-a418-f9d880bd3993", + "x-ms-request-id": "a535d0e5-a36f-49d7-84d4-09a75c12106b", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "057a7973bbc7282840551965e5668eac", "x-ms-return-client-request-id": "true" }, @@ -5832,155 +4969,152 @@ "Cache-Control": "no-cache", "Content-Length": "71", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:35:04 GMT", + "Date": "Thu, 30 Sep 2021 06:16:45 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "057a7973bbc7282840551965e5668eac", - "x-ms-correlation-request-id": "657ff774-8f0c-4c63-a368-69a6ae7ad1cd", - "x-ms-request-id": "9ea0d032-383e-4313-8fbd-1702923b217b", + "x-ms-correlation-request-id": "01cac361-9303-438e-a6f6-db8341ba8836", + "x-ms-request-id": "8b610136-007b-4de6-9244-7b573f7c695c", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dfCreateSession$$7c30610b-7436-40db-a63d-774ef13e20c9?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "91c2c785618b4263e97ce080f357d959", "x-ms-return-client-request-id": "true" }, "RequestBody": null, - "StatusCode": 202, + "StatusCode": 200, "ResponseHeaders": { - "Access-Control-Allow-Headers": "Location", - "Access-Control-Expose-Headers": "Location", "Cache-Control": "no-cache", - "Content-Length": "71", + "Content-Length": "73", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:35:05 GMT", + "Date": "Thu, 30 Sep 2021 06:16:46 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "91c2c785618b4263e97ce080f357d959", - "x-ms-correlation-request-id": "cdd3b4f0-d1a0-4c5d-9fb1-58f228c103e0", - "x-ms-request-id": "c937a7a6-57d0-45ff-940e-07a403d20580", + "x-ms-correlation-request-id": "91ac306e-7edd-40d3-b8fe-75e98b88fb51", + "x-ms-request-id": "ec3f6acd-4134-4569-bf5a-310a28436708", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "status": "Succeeded", + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", - "RequestMethod": "GET", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/queryDataFlowDebugSessions?api-version=2020-12-01", + "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "traceparent": "00-77967900ec7bc54f8c887be0883842f5-df3d092060a7eb4f-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e795fee943585027f44d55453ad5f3cc", "x-ms-return-client-request-id": "true" }, "RequestBody": null, - "StatusCode": 202, + "StatusCode": 200, "ResponseHeaders": { - "Access-Control-Allow-Headers": "Location", - "Access-Control-Expose-Headers": "Location", "Cache-Control": "no-cache", - "Content-Length": "71", + "Content-Length": "757", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:35:06 GMT", + "Date": "Thu, 30 Sep 2021 06:16:46 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "e795fee943585027f44d55453ad5f3cc", - "x-ms-correlation-request-id": "b8f19c8f-f157-43da-aca9-5eb65ad3f143", - "x-ms-request-id": "77de6b9d-00e2-4871-a941-d4b321a2b610", + "x-ms-correlation-request-id": "849bc871-5ddb-4f19-b937-c23eab24b301", + "x-ms-request-id": "4c7dda6c-bb1b-408c-beb6-f959db1b9cc5", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "value": [ + { + "userObjectId": "b71a874a-f1a8-4811-b06d-6748316e45a7", + "startTime": "2021-09-30T05:21:50.3634792\u002B00:00", + "lastActivityTime": "2021-09-30T05:24:39.5297873\u002B00:00", + "status": "Started", + "dataflowName": "DebugSession-bd0db83a-fa5a-44cd-af34-a0aabfb12b46", + "sessionId": "bd0db83a-fa5a-44cd-af34-a0aabfb12b46", + "coreCount": 8, + "nodeCount": 0, + "computeType": "General", + "timeToLiveInMinutes": 60 + }, + { + "userObjectId": "b71a874a-f1a8-4811-b06d-6748316e45a7", + "startTime": "2021-09-30T06:13:57.3600001\u002B00:00", + "lastActivityTime": "2021-09-30T06:16:47.0781951\u002B00:00", + "status": "Started", + "dataflowName": "DebugSession-7c30610b-7436-40db-a63d-774ef13e20c9", + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9", + "coreCount": 8, + "nodeCount": 0, + "computeType": "General", + "timeToLiveInMinutes": 60 + } + ] } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", - "RequestMethod": "GET", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/deleteDataFlowDebugSession?api-version=2020-12-01", + "RequestMethod": "POST", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "Content-Length": "52", + "Content-Type": "application/json", + "traceparent": "00-8f07792636bf2f46872a15d61cda3a6f-b3096493ca5c7c4e-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "88344d8dacb8118a16381b4adaa734e8", "x-ms-return-client-request-id": "true" }, - "RequestBody": null, - "StatusCode": 202, + "RequestBody": { + "sessionId": "7c30610b-7436-40db-a63d-774ef13e20c9" + }, + "StatusCode": 200, "ResponseHeaders": { - "Access-Control-Allow-Headers": "Location", - "Access-Control-Expose-Headers": "Location", "Cache-Control": "no-cache", - "Content-Length": "71", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:35:07 GMT", + "Content-Length": "0", + "Date": "Thu, 30 Sep 2021 06:16:54 GMT", "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "88344d8dacb8118a16381b4adaa734e8", - "x-ms-correlation-request-id": "1d2a1435-0fad-407e-9ec2-271a45236c8d", - "x-ms-request-id": "1931ded3-f8b9-477e-94ab-ba349b91bb23", + "x-ms-correlation-request-id": "a579502b-2a48-4462-ac03-ee0b2f3871d1", + "x-ms-request-id": "87cbc86a-29e5-49b4-80e3-bcf2c180740d", "X-Powered-By": "ASP.NET" }, - "ResponseBody": { - "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" - } + "ResponseBody": [] }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", - "RequestMethod": "GET", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/dataflows/DataFlow5794?api-version=2020-12-01", + "RequestMethod": "DELETE", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "traceparent": "00-a2a0bbeefb942b4a9b0343afcc1f4e7f-6c76a4997b62d14e-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e67bbf7ba7d042539f719d3d0b1d0814", "x-ms-return-client-request-id": "true" }, @@ -5989,1219 +5123,118 @@ "ResponseHeaders": { "Access-Control-Allow-Headers": "Location", "Access-Control-Expose-Headers": "Location", - "Cache-Control": "no-cache", - "Content-Length": "71", + "Content-Length": "359", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:35:08 GMT", - "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", - "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=15724800; includeSubDomains", - "X-Content-Type-Options": "nosniff", + "Date": "Thu, 30 Sep 2021 06:16:54 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/30cd3830-9013-4b30-96aa-0eba5676548a?api-version=2020-12-01", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "e67bbf7ba7d042539f719d3d0b1d0814", - "x-ms-correlation-request-id": "81b29aea-1980-4698-ad35-289a74c45b7b", - "x-ms-request-id": "f03610f1-5496-4c68-b859-716e69a38494", - "X-Powered-By": "ASP.NET" + "x-ms-request-id": "21797872-6d77-4ab4-a785-c00155def8df" }, "ResponseBody": { - "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/dataflows/DataFlow5794", + "recordId": 0, + "state": "Deleting", + "created": "0001-01-01T00:00:00", + "changed": "0001-01-01T00:00:00", + "type": "DataFlow", + "name": "DataFlow5794", + "operationId": "30cd3830-9013-4b30-96aa-0eba5676548a" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/30cd3830-9013-4b30-96aa-0eba5676548a?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "a5f3148851223ca17383d12027dc764c", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "7aca6c180d59e5fbfaf2e9470f4d06f8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "Access-Control-Allow-Headers": "Location", - "Access-Control-Expose-Headers": "Location", - "Cache-Control": "no-cache", - "Content-Length": "71", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:35:10 GMT", - "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", - "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" ], - "Strict-Transport-Security": "max-age=15724800; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "a5f3148851223ca17383d12027dc764c", - "x-ms-correlation-request-id": "ce1e9967-4ebe-4f74-a923-6b27290be792", - "x-ms-request-id": "93b969fd-2036-4bd8-85e0-0f9f35206856", - "X-Powered-By": "ASP.NET" + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 30 Sep 2021 06:16:54 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/30cd3830-9013-4b30-96aa-0eba5676548a?api-version=2020-12-01", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "7aca6c180d59e5fbfaf2e9470f4d06f8", + "x-ms-request-id": "f066e72f-fd76-41fc-9859-662c66e4f5fe" }, "ResponseBody": { - "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/30cd3830-9013-4b30-96aa-0eba5676548a?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "7aca6c180d59e5fbfaf2e9470f4d06f8", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "c6c2072f8fb42ac51e3e724cd5321ac2", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "Access-Control-Allow-Headers": "Location", - "Access-Control-Expose-Headers": "Location", - "Cache-Control": "no-cache", - "Content-Length": "71", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:35:11 GMT", - "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", - "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" ], - "Strict-Transport-Security": "max-age=15724800; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "7aca6c180d59e5fbfaf2e9470f4d06f8", - "x-ms-correlation-request-id": "b6d8c9ec-4beb-4ba3-8bef-675e6750ba0a", - "x-ms-request-id": "232b2258-2792-4c65-953d-114ddaa57135", - "X-Powered-By": "ASP.NET" + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 30 Sep 2021 06:16:55 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/30cd3830-9013-4b30-96aa-0eba5676548a?api-version=2020-12-01", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "c6c2072f8fb42ac51e3e724cd5321ac2", + "x-ms-request-id": "a1ce0f7b-f5bb-422d-8bd8-aee518a577ff" }, "ResponseBody": { - "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" + "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/30cd3830-9013-4b30-96aa-0eba5676548a?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "c6c2072f8fb42ac51e3e724cd5321ac2", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "9e2450fb8e537bba180dab2f675a2d26", "x-ms-return-client-request-id": "true" }, "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": "Location", - "Access-Control-Expose-Headers": "Location", - "Cache-Control": "no-cache", - "Content-Length": "71", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:35:12 GMT", - "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", - "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-ms-client-request-id": "c6c2072f8fb42ac51e3e724cd5321ac2", - "x-ms-correlation-request-id": "eb63a6d1-42bc-45e7-bd4d-f733c4bbaebf", - "x-ms-request-id": "c6f7283f-e446-4d59-92cb-d7c0b957e58d", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "9e2450fb8e537bba180dab2f675a2d26", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": "Location", - "Access-Control-Expose-Headers": "Location", - "Cache-Control": "no-cache", - "Content-Length": "71", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:35:13 GMT", - "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", - "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-ms-client-request-id": "9e2450fb8e537bba180dab2f675a2d26", - "x-ms-correlation-request-id": "ac1dad25-854e-4caf-b01e-b192b7e6dc45", - "x-ms-request-id": "fe2b9c8e-bb00-4602-89aa-b064c0ea3f4a", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "20f1d97daf1a8997a69f5c1a9aaf10c7", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": "Location", - "Access-Control-Expose-Headers": "Location", - "Cache-Control": "no-cache", - "Content-Length": "71", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:35:14 GMT", - "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", - "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-ms-client-request-id": "20f1d97daf1a8997a69f5c1a9aaf10c7", - "x-ms-correlation-request-id": "1ec6b2c1-9e96-4487-83e9-3ae3db5bb2d6", - "x-ms-request-id": "d948805c-e717-43ab-87d0-03fde40ccb52", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "bf4c26d86728a1a44d46ada7e496c2c4", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": "Location", - "Access-Control-Expose-Headers": "Location", - "Cache-Control": "no-cache", - "Content-Length": "71", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:35:15 GMT", - "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", - "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-ms-client-request-id": "bf4c26d86728a1a44d46ada7e496c2c4", - "x-ms-correlation-request-id": "efc60491-a8b4-4194-bae0-e75fe2a410da", - "x-ms-request-id": "7ce10ef5-745c-4f17-8a54-1bcff60f64f9", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "fcce4c11f9414ba7b89bf8b4329fe168", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": "Location", - "Access-Control-Expose-Headers": "Location", - "Cache-Control": "no-cache", - "Content-Length": "71", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:35:17 GMT", - "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", - "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-ms-client-request-id": "fcce4c11f9414ba7b89bf8b4329fe168", - "x-ms-correlation-request-id": "8b6c0a64-28f1-49b9-adbc-801c117a2473", - "x-ms-request-id": "6a895ff6-3344-49bf-a91f-57c82f85802a", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "4157e4fd6d0d16fd354fd3d401f0a510", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": "Location", - "Access-Control-Expose-Headers": "Location", - "Cache-Control": "no-cache", - "Content-Length": "71", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:35:18 GMT", - "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", - "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-ms-client-request-id": "4157e4fd6d0d16fd354fd3d401f0a510", - "x-ms-correlation-request-id": "edd8b026-3be8-493e-a6de-506220709912", - "x-ms-request-id": "ff543335-2641-487e-ae58-c815cc33be95", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "4d0897dd14e1de857f00068d6ff06fad", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": "Location", - "Access-Control-Expose-Headers": "Location", - "Cache-Control": "no-cache", - "Content-Length": "71", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:35:19 GMT", - "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", - "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-ms-client-request-id": "4d0897dd14e1de857f00068d6ff06fad", - "x-ms-correlation-request-id": "4d6ce9b8-a255-4d71-bc76-7e1c5fc6a4c7", - "x-ms-request-id": "d0be202f-2564-4d1f-b00e-6fa2c4206383", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "00aa4465813ea4b64eb7c7f126d349c8", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": "Location", - "Access-Control-Expose-Headers": "Location", - "Cache-Control": "no-cache", - "Content-Length": "71", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:35:20 GMT", - "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", - "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-ms-client-request-id": "00aa4465813ea4b64eb7c7f126d349c8", - "x-ms-correlation-request-id": "a9df1880-1441-4757-a94a-ec308266c7fc", - "x-ms-request-id": "37741d60-d611-4bab-a13b-dacf589cc222", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "9ad6e7f69396e8875e78c10c666fa744", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": "Location", - "Access-Control-Expose-Headers": "Location", - "Cache-Control": "no-cache", - "Content-Length": "71", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:35:21 GMT", - "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", - "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-ms-client-request-id": "9ad6e7f69396e8875e78c10c666fa744", - "x-ms-correlation-request-id": "6954586b-f24d-41ed-b4b4-21e3440ddcd5", - "x-ms-request-id": "62cb7717-a970-40c4-b677-59ad34a1df57", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "bc6e25e0a5465bd2e164ff294d94b7ab", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": "Location", - "Access-Control-Expose-Headers": "Location", - "Cache-Control": "no-cache", - "Content-Length": "71", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:35:23 GMT", - "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", - "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-ms-client-request-id": "bc6e25e0a5465bd2e164ff294d94b7ab", - "x-ms-correlation-request-id": "44aa6568-630b-449b-bd7f-2b8e96be8b75", - "x-ms-request-id": "fa1d4ae7-bd63-418e-94c3-4ef290e55ca4", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "87973eb7d419d216bdc1a1c6bfa93dde", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": "Location", - "Access-Control-Expose-Headers": "Location", - "Cache-Control": "no-cache", - "Content-Length": "71", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:35:24 GMT", - "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", - "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-ms-client-request-id": "87973eb7d419d216bdc1a1c6bfa93dde", - "x-ms-correlation-request-id": "70a7cab9-7f9d-4dec-93cd-ebc34e2901b6", - "x-ms-request-id": "05a2deab-e6da-4b0a-9cb6-b7da4c76a905", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "0110820f8c655081157bb831945e9bca", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": "Location", - "Access-Control-Expose-Headers": "Location", - "Cache-Control": "no-cache", - "Content-Length": "71", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:35:25 GMT", - "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", - "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-ms-client-request-id": "0110820f8c655081157bb831945e9bca", - "x-ms-correlation-request-id": "c41a872a-46b8-4234-ba60-5cf1a308efe5", - "x-ms-request-id": "2eaa47f6-e740-4357-8aae-63709068e8cc", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "275516c020d80c2b0e9bff84030c9c37", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": "Location", - "Access-Control-Expose-Headers": "Location", - "Cache-Control": "no-cache", - "Content-Length": "71", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:35:26 GMT", - "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", - "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-ms-client-request-id": "275516c020d80c2b0e9bff84030c9c37", - "x-ms-correlation-request-id": "d778e6e1-ff64-4d33-baac-a7fcaf800323", - "x-ms-request-id": "f4387f87-42a8-488e-b904-a42c97000a12", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "ca192027b6832b46bc46729e1be53e5e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": "Location", - "Access-Control-Expose-Headers": "Location", - "Cache-Control": "no-cache", - "Content-Length": "71", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:35:27 GMT", - "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", - "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-ms-client-request-id": "ca192027b6832b46bc46729e1be53e5e", - "x-ms-correlation-request-id": "8795c34d-61b8-438c-8632-735a1c6c46eb", - "x-ms-request-id": "b80a2664-dcef-471a-8398-cec3386cc81e", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "a905d6251554ef065704f2c98cfd4d09", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": "Location", - "Access-Control-Expose-Headers": "Location", - "Cache-Control": "no-cache", - "Content-Length": "71", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:35:28 GMT", - "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", - "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-ms-client-request-id": "a905d6251554ef065704f2c98cfd4d09", - "x-ms-correlation-request-id": "8d9317f4-2d95-483f-817e-a9a28d828a26", - "x-ms-request-id": "7d38de88-9ad1-4dc3-8b5f-7c4a1e028166", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "730a80dfd1440a47d0296a91ad8cf029", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": "Location", - "Access-Control-Expose-Headers": "Location", - "Cache-Control": "no-cache", - "Content-Length": "71", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:35:30 GMT", - "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", - "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-ms-client-request-id": "730a80dfd1440a47d0296a91ad8cf029", - "x-ms-correlation-request-id": "3105145c-7b1b-4f36-802f-f5f4963dfcd3", - "x-ms-request-id": "16bd9684-a83d-4d62-a0c9-07b2c8fcafe2", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "2c5ea15df20612e31929737ec47c9ebf", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": "Location", - "Access-Control-Expose-Headers": "Location", - "Cache-Control": "no-cache", - "Content-Length": "71", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:35:31 GMT", - "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", - "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-ms-client-request-id": "2c5ea15df20612e31929737ec47c9ebf", - "x-ms-correlation-request-id": "64acc438-b3e9-4988-89b2-33fa48db4e8c", - "x-ms-request-id": "7fadc1f7-9042-4abd-a280-158b06228135", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "9abf69f9cadb54198ffbd92aaa7442ca", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": "Location", - "Access-Control-Expose-Headers": "Location", - "Cache-Control": "no-cache", - "Content-Length": "71", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:35:32 GMT", - "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", - "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-ms-client-request-id": "9abf69f9cadb54198ffbd92aaa7442ca", - "x-ms-correlation-request-id": "87b6a39e-de25-4877-9ad0-73c6d672cbb3", - "x-ms-request-id": "bb44be13-e4df-4f29-a2c4-c1497e9241d1", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "eb6cc914209eec029df75a1b5ec84553", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": "Location", - "Access-Control-Expose-Headers": "Location", - "Cache-Control": "no-cache", - "Content-Length": "71", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:35:33 GMT", - "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", - "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-ms-client-request-id": "eb6cc914209eec029df75a1b5ec84553", - "x-ms-correlation-request-id": "d90f9aa7-f5fe-497e-b27d-aaba496fe7a9", - "x-ms-request-id": "25e3a4cf-1939-430c-b9e3-6f1f05fc7f02", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "4498ab8b55cd924e870a9d0b19b967a4", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": "Location", - "Access-Control-Expose-Headers": "Location", - "Cache-Control": "no-cache", - "Content-Length": "71", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:35:34 GMT", - "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", - "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-ms-client-request-id": "4498ab8b55cd924e870a9d0b19b967a4", - "x-ms-correlation-request-id": "1d8b16ff-4170-4753-96d3-6ef9968482bd", - "x-ms-request-id": "64fe8ffd-8c87-4ddc-a055-0efe15396c1d", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "fb6aa8e7b310d82067d2fde370fef5c6", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": "Location", - "Access-Control-Expose-Headers": "Location", - "Cache-Control": "no-cache", - "Content-Length": "71", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:35:35 GMT", - "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", - "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-ms-client-request-id": "fb6aa8e7b310d82067d2fde370fef5c6", - "x-ms-correlation-request-id": "ad4bda74-abee-4150-bfd6-1a3729a4b070", - "x-ms-request-id": "3bae8010-ba1b-46d6-8138-979cdbb21ff5", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "ff9f85b5fedcbffd7ad9639383f6d2e3", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": "Location", - "Access-Control-Expose-Headers": "Location", - "Cache-Control": "no-cache", - "Content-Length": "71", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:35:36 GMT", - "Expires": "-1", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", - "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-ms-client-request-id": "ff9f85b5fedcbffd7ad9639383f6d2e3", - "x-ms-correlation-request-id": "f36ef9b4-fcd1-4ced-b5d0-5777ab66447e", - "x-ms-request-id": "31892053-2aa9-4e95-9c6d-f0fa073f8818", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "status": "Pending", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/dfCreateSession$$d55b1414-9ba4-4b6f-b388-b5af308fe49a?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "b633b5904a5ed7438abfdcfa576b2289", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "73", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:35: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-ms-client-request-id": "b633b5904a5ed7438abfdcfa576b2289", - "x-ms-correlation-request-id": "a9e8f006-e12b-466e-b90c-57c7421bfd45", - "x-ms-request-id": "5b1359ce-b34f-479c-bf73-88475e5c5656", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "status": "Succeeded", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/queryDataFlowDebugSessions?api-version=2019-06-01-preview", - "RequestMethod": "POST", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-0de348b70d57574db6878dbc0fe1360d-9627c8d1612af641-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "9356d614681ae9c8aaab8036508d5570", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "384", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:35: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-ms-client-request-id": "9356d614681ae9c8aaab8036508d5570", - "x-ms-correlation-request-id": "a1e7a644-7155-4d1e-8eb8-6e18057ea334", - "x-ms-request-id": "efea29ee-b405-48dd-ab4d-163184469dca", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "userObjectId": "00b81593-6414-45e8-98bf-c0396b2972ee", - "startTime": "2021-01-20T21:32:18.0539175\u002B00:00", - "lastActivityTime": "2021-01-20T21:35:38.0180638\u002B00:00", - "status": "Started", - "dataflowName": "DebugSession-d55b1414-9ba4-4b6f-b388-b5af308fe49a", - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a", - "coreCount": 8, - "nodeCount": 0, - "computeType": "General", - "timeToLiveInMinutes": 60 - } - ] - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/deleteDataFlowDebugSession?api-version=2019-06-01-preview", - "RequestMethod": "POST", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Length": "52", - "Content-Type": "application/json", - "traceparent": "00-26f0a28e3324b14bbcac2430fc520bfc-060f78975ae19642-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "ba5319ff3fca6a6842c7741c2102670f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "sessionId": "d55b1414-9ba4-4b6f-b388-b5af308fe49a" - }, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Wed, 20 Jan 2021 21:35:41 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-ms-client-request-id": "ba5319ff3fca6a6842c7741c2102670f", - "x-ms-correlation-request-id": "8978489b-0e50-460a-ae06-b062fa7db907", - "x-ms-request-id": "09ae90b9-4018-4a65-8a18-d578d1488517", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/dataflows/DataFlow5794?api-version=2019-06-01-preview", - "RequestMethod": "DELETE", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-ee4572045f540643b276162e6d274de2-1d6f706fe031ea4d-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "ad7ed9b73fa028c9ed4a0bb3ca0c87fd", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": "Location", - "Access-Control-Expose-Headers": "Location", - "Content-Length": "366", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:35:41 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/5d1706fe-9425-4a82-a853-108c38675e5c?api-version=2019-06-01-preview", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "ad7ed9b73fa028c9ed4a0bb3ca0c87fd", - "x-ms-request-id": "9a2d6f5b-ebc5-460e-814c-f07e4e0c7778" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/dataflows/DataFlow5794", - "recordId": 0, - "state": "Deleting", - "created": "0001-01-01T00:00:00", - "changed": "0001-01-01T00:00:00", - "type": "DataFlow", - "name": "DataFlow5794", - "operationId": "5d1706fe-9425-4a82-a853-108c38675e5c" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/5d1706fe-9425-4a82-a853-108c38675e5c?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "767e7044a80ec0d0502acd7f34b5a036", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:35:41 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/5d1706fe-9425-4a82-a853-108c38675e5c?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "767e7044a80ec0d0502acd7f34b5a036", - "x-ms-request-id": "802bf612-2de6-4a9c-ad23-fdeea0f96805" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/5d1706fe-9425-4a82-a853-108c38675e5c?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "b5b27740290850f71aa93fb5ee773441", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, + "StatusCode": 200, "ResponseHeaders": { "Content-Length": "0", - "Date": "Wed, 20 Jan 2021 21:35:42 GMT", + "Date": "Thu, 30 Sep 2021 06:16:57 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "b5b27740290850f71aa93fb5ee773441", - "x-ms-request-id": "76f724e2-1493-4c4b-acab-0cfb13b1b58c" + "x-ms-client-request-id": "9e2450fb8e537bba180dab2f675a2d26", + "x-ms-request-id": "9322efb8-4a8c-4b38-9806-42fb4b0af046" }, "ResponseBody": [] } ], "Variables": { - "AZURE_SYNAPSE_WORKSPACE_URL": "https://workspacechhamosynapse.dev.azuresynapse.net", + "AZURE_SYNAPSE_WORKSPACE_URL": "https://testsynapseworkspace.dev.azuresynapse.net", "RandomSeed": "2064405674" } } \ No newline at end of file diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DatasetClientLiveTests/TestCreateDataset.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DatasetClientLiveTests/TestCreateDataset.json index 494d770384b2..ead21f0d4a07 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DatasetClientLiveTests/TestCreateDataset.json +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DatasetClientLiveTests/TestCreateDataset.json @@ -1,18 +1,15 @@ { "Entries": [ { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset710526834?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/datasets/Dataset710526834?api-version=2020-12-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "152", + "Content-Length": "150", "Content-Type": "application/json", - "traceparent": "00-44c4e6c9c1577d41b801610169ae91ea-e77042d6eb561d4e-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "traceparent": "00-94b02bb29f7ed844adc0a1bde8118bf3-dd6c845d8ce88941-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5f7666a818b784d46d9b39f2caf70a8e", "x-ms-return-client-request-id": "true" }, @@ -21,7 +18,7 @@ "type": "Dataset", "linkedServiceName": { "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" + "referenceName": "testsynapseworkspace-WorkspaceDefaultStorage" } } }, @@ -35,37 +32,34 @@ "Location", "Retry-After" ], - "Content-Length": "442", + "Content-Length": "431", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:35:42 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/7128d9ca-1140-4455-99cf-12aa2609f012?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:16:57 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/46bcef19-e2f8-45d1-9f3f-7096d1d70f2d?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "5f7666a818b784d46d9b39f2caf70a8e", - "x-ms-request-id": "3e479788-b3f3-4fab-b0e3-30758b76a429" + "x-ms-request-id": "0766bc6f-8aa8-404b-aed4-432f0a6a3f9b" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset710526834", - "recordId": 960342, + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/datasets/Dataset710526834", + "recordId": 1074034, "state": "Updating", - "created": "2021-01-15T16:42:48.26Z", - "changed": "2021-01-15T18:16:12.4866667Z", + "created": "2021-03-10T07:54:42.98Z", + "changed": "2021-03-10T07:54:48.18Z", "type": "Dataset", "name": "Dataset710526834", - "operationId": "7128d9ca-1140-4455-99cf-12aa2609f012", - "artifactId": "85ADBA18-A293-44F7-BA0C-2EFA5C0BAF2D" + "operationId": "46bcef19-e2f8-45d1-9f3f-7096d1d70f2d", + "artifactId": "126D94AD-5DFA-4755-904E-21E598B99E86" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/7128d9ca-1140-4455-99cf-12aa2609f012?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/46bcef19-e2f8-45d1-9f3f-7096d1d70f2d?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2986bbe64a7b6d2fe06937d0ad136a81", "x-ms-return-client-request-id": "true" }, @@ -82,27 +76,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:35:42 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/7128d9ca-1140-4455-99cf-12aa2609f012?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:16:57 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/46bcef19-e2f8-45d1-9f3f-7096d1d70f2d?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "2986bbe64a7b6d2fe06937d0ad136a81", - "x-ms-request-id": "f76dccca-8c6f-4f93-8598-de402070ba45" + "x-ms-request-id": "58d5b000-8ac9-499d-aae0-699f0046c665" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/7128d9ca-1140-4455-99cf-12aa2609f012?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/46bcef19-e2f8-45d1-9f3f-7096d1d70f2d?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "8cea7033079b71068e1637bff534513d", "x-ms-return-client-request-id": "true" }, @@ -119,27 +110,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:35:44 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/7128d9ca-1140-4455-99cf-12aa2609f012?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:16:58 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/46bcef19-e2f8-45d1-9f3f-7096d1d70f2d?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "8cea7033079b71068e1637bff534513d", - "x-ms-request-id": "32dceba5-f761-40ad-acb1-0a9162d2254d" + "x-ms-request-id": "860c71dd-e42e-4f30-9ac5-f3cad337da33" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/7128d9ca-1140-4455-99cf-12aa2609f012?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/46bcef19-e2f8-45d1-9f3f-7096d1d70f2d?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "0f0ca026e071a212314b6d02ff07b213", "x-ms-return-client-request-id": "true" }, @@ -147,39 +135,36 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "450", + "Content-Length": "441", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:35:46 GMT", + "Date": "Thu, 30 Sep 2021 06:17:00 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "0f0ca026e071a212314b6d02ff07b213", - "x-ms-correlation-request-id": "353ec59b-ee0a-4f73-a2b2-605b0d71d1f8", - "x-ms-request-id": "1a0e35fc-4702-448a-9377-f5b043dae6ae", + "x-ms-correlation-request-id": "3639c816-378b-44a5-afc6-6b0b95befb1a", + "x-ms-request-id": "6307d92f-ddb7-4c01-9188-79179634153d", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset710526834", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/datasets/Dataset710526834", "name": "Dataset710526834", "type": "Microsoft.Synapse/workspaces/datasets", "properties": { "type": "Dataset", "linkedServiceName": { "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" + "referenceName": "testsynapseworkspace-WorkspaceDefaultStorage" } }, - "etag": "c807dcc1-0000-0800-0000-6001c60b0000" + "etag": "2e00e07f-0000-0100-0000-6155565b0000" } } ], "Variables": { - "AZURE_SYNAPSE_WORKSPACE_URL": "https://workspacechhamosynapse.dev.azuresynapse.net", + "AZURE_SYNAPSE_WORKSPACE_URL": "https://testsynapseworkspace.dev.azuresynapse.net", "RandomSeed": "588525516" } } \ No newline at end of file diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DatasetClientLiveTests/TestCreateDatasetAsync.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DatasetClientLiveTests/TestCreateDatasetAsync.json index f3e552327d9f..44eea4920d41 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DatasetClientLiveTests/TestCreateDatasetAsync.json +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DatasetClientLiveTests/TestCreateDatasetAsync.json @@ -1,18 +1,15 @@ { "Entries": [ { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset106638712?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/datasets/Dataset106638712?api-version=2020-12-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "152", + "Content-Length": "150", "Content-Type": "application/json", - "traceparent": "00-6824740ce33676438d584b858a8d7b5b-bff011d24ea29a4b-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "traceparent": "00-4699c5e1128bc545a74ae5d3b86d7913-b5efc6a6475bfd49-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "8c09e4056a1feb82cb6e4335e0a52f8a", "x-ms-return-client-request-id": "true" }, @@ -21,7 +18,7 @@ "type": "Dataset", "linkedServiceName": { "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" + "referenceName": "testsynapseworkspace-WorkspaceDefaultStorage" } } }, @@ -35,37 +32,34 @@ "Location", "Retry-After" ], - "Content-Length": "437", + "Content-Length": "431", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:12 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/3f163ca0-5ee8-43d6-aa29-464e96b80a51?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:17:11 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e881d142-aa8d-4c6e-8c82-357b3681865d?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "8c09e4056a1feb82cb6e4335e0a52f8a", - "x-ms-request-id": "80a631dd-4d89-4ccf-97de-fd199928c42b" + "x-ms-request-id": "a8a51b11-6b88-493f-ac75-5a96b71b7fa0" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset106638712", - "recordId": 983969, + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/datasets/Dataset106638712", + "recordId": 2424231, "state": "Creating", - "created": "2021-01-20T21:36:12.45Z", - "changed": "2021-01-20T21:36:12.45Z", + "created": "2021-09-30T06:17:11.45Z", + "changed": "2021-09-30T06:17:11.45Z", "type": "Dataset", "name": "Dataset106638712", - "operationId": "3f163ca0-5ee8-43d6-aa29-464e96b80a51", - "artifactId": "22FEC06D-534F-4E05-8AFE-73291A9AC594" + "operationId": "e881d142-aa8d-4c6e-8c82-357b3681865d", + "artifactId": "ABC4E56E-959B-4C02-98B1-E27EE3F9FC09" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/3f163ca0-5ee8-43d6-aa29-464e96b80a51?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e881d142-aa8d-4c6e-8c82-357b3681865d?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ad170e29c1e1be6b8860a7297fd2adab", "x-ms-return-client-request-id": "true" }, @@ -82,27 +76,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:12 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/3f163ca0-5ee8-43d6-aa29-464e96b80a51?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:17:11 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e881d142-aa8d-4c6e-8c82-357b3681865d?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "ad170e29c1e1be6b8860a7297fd2adab", - "x-ms-request-id": "7b48239c-8589-40d5-9627-db84b9ed1d03" + "x-ms-request-id": "f84a87e6-9e74-4e9f-bdbf-760db0c20a1a" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/3f163ca0-5ee8-43d6-aa29-464e96b80a51?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e881d142-aa8d-4c6e-8c82-357b3681865d?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "eb3e17d89d0749b34a852d84e8f17d47", "x-ms-return-client-request-id": "true" }, @@ -119,178 +110,61 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:13 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/3f163ca0-5ee8-43d6-aa29-464e96b80a51?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:17:12 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e881d142-aa8d-4c6e-8c82-357b3681865d?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "eb3e17d89d0749b34a852d84e8f17d47", - "x-ms-request-id": "98c7df76-8794-4f2c-9f8f-f52fb296917e" + "x-ms-request-id": "e8205df6-b0e3-4d21-9fa6-87019971b13e" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/3f163ca0-5ee8-43d6-aa29-464e96b80a51?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e881d142-aa8d-4c6e-8c82-357b3681865d?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "d10bf32c818d55a970e0b69c1470048d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:14 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/3f163ca0-5ee8-43d6-aa29-464e96b80a51?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d10bf32c818d55a970e0b69c1470048d", - "x-ms-request-id": "864f6a26-86e1-45ea-acb1-fa2736a9e54a" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/3f163ca0-5ee8-43d6-aa29-464e96b80a51?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "56b7d5ed57458b485bce625b94e7d596", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:15 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/3f163ca0-5ee8-43d6-aa29-464e96b80a51?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "56b7d5ed57458b485bce625b94e7d596", - "x-ms-request-id": "516b5954-8848-423d-b2ac-7b266ed509c4" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/3f163ca0-5ee8-43d6-aa29-464e96b80a51?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "8cfd60e3dbc6571d6de97a26e71634da", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:16 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/3f163ca0-5ee8-43d6-aa29-464e96b80a51?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "8cfd60e3dbc6571d6de97a26e71634da", - "x-ms-request-id": "52079351-ac20-4510-befd-11566bf70d9b" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/3f163ca0-5ee8-43d6-aa29-464e96b80a51?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "1396a081263ad401ab8075bf1e4ec189", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "450", + "Content-Length": "441", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:18 GMT", + "Date": "Thu, 30 Sep 2021 06:17:13 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "1396a081263ad401ab8075bf1e4ec189", - "x-ms-correlation-request-id": "d324f76f-fc2b-4d87-9f8e-c9a8f65581b5", - "x-ms-request-id": "ff9d46fc-7cce-4b4e-b385-ef1bfb4bb64f", + "x-ms-client-request-id": "d10bf32c818d55a970e0b69c1470048d", + "x-ms-correlation-request-id": "42ae7b1c-a83d-41a6-8857-9f54386dc262", + "x-ms-request-id": "61167faa-8fa9-4291-bea3-981ff9e587f0", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset106638712", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/datasets/Dataset106638712", "name": "Dataset106638712", "type": "Microsoft.Synapse/workspaces/datasets", "properties": { "type": "Dataset", "linkedServiceName": { "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" + "referenceName": "testsynapseworkspace-WorkspaceDefaultStorage" } }, - "etag": "51007e5b-0000-0800-0000-6008a2510000" + "etag": "2e00ed7f-0000-0100-0000-615556690000" } } ], "Variables": { - "AZURE_SYNAPSE_WORKSPACE_URL": "https://workspacechhamosynapse.dev.azuresynapse.net", + "AZURE_SYNAPSE_WORKSPACE_URL": "https://testsynapseworkspace.dev.azuresynapse.net", "RandomSeed": "1833439787" } } \ No newline at end of file diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DatasetClientLiveTests/TestDeleteDataset.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DatasetClientLiveTests/TestDeleteDataset.json index 4a28c552337f..e275cb63bd5e 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DatasetClientLiveTests/TestDeleteDataset.json +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DatasetClientLiveTests/TestDeleteDataset.json @@ -1,18 +1,15 @@ { "Entries": [ { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset101080110?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/datasets/Dataset101080110?api-version=2020-12-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "152", + "Content-Length": "150", "Content-Type": "application/json", - "traceparent": "00-329663fde5f4c4468d8ea58a8e2acda5-1e333ed87d1f9b4c-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "traceparent": "00-64f5d3c160ec8846999b3785e32e61d1-7f2b86cec91a9b44-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "06dc7435a7c229e09ed0c0da649b82db", "x-ms-return-client-request-id": "true" }, @@ -21,7 +18,7 @@ "type": "Dataset", "linkedServiceName": { "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" + "referenceName": "testsynapseworkspace-WorkspaceDefaultStorage" } } }, @@ -35,37 +32,34 @@ "Location", "Retry-After" ], - "Content-Length": "447", + "Content-Length": "431", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:35:46 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/a11e1490-5593-4b0c-8fdf-ffbf46cab6b4?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:17:00 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/2645b0a2-f670-4368-a3b6-8ff356085af4?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "06dc7435a7c229e09ed0c0da649b82db", - "x-ms-request-id": "e3f38767-df59-4a9e-960a-403cada68d7a" + "x-ms-request-id": "2bfe74de-d57e-4481-b224-c69bb20b59ad" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset101080110", - "recordId": 983968, + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/datasets/Dataset101080110", + "recordId": 2424228, "state": "Creating", - "created": "2021-01-20T21:35:46.4166667Z", - "changed": "2021-01-20T21:35:46.4166667Z", + "created": "2021-09-30T06:17:00.85Z", + "changed": "2021-09-30T06:17:00.85Z", "type": "Dataset", "name": "Dataset101080110", - "operationId": "a11e1490-5593-4b0c-8fdf-ffbf46cab6b4", - "artifactId": "0A7176F8-8333-47EA-AB2B-C9AC73F633AE" + "operationId": "2645b0a2-f670-4368-a3b6-8ff356085af4", + "artifactId": "60AD6783-C876-480D-8FBA-0EC4BF42B642" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/a11e1490-5593-4b0c-8fdf-ffbf46cab6b4?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/2645b0a2-f670-4368-a3b6-8ff356085af4?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "50e69241b64c2fcc834fd5dab5f051c5", "x-ms-return-client-request-id": "true" }, @@ -82,27 +76,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:35:46 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/a11e1490-5593-4b0c-8fdf-ffbf46cab6b4?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:17:00 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/2645b0a2-f670-4368-a3b6-8ff356085af4?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "50e69241b64c2fcc834fd5dab5f051c5", - "x-ms-request-id": "79493b80-21ca-4a65-821f-4550ef9633a1" + "x-ms-request-id": "6a0b0cc9-6929-43af-b8fb-d04b080f29ac" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/a11e1490-5593-4b0c-8fdf-ffbf46cab6b4?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/2645b0a2-f670-4368-a3b6-8ff356085af4?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6bc1f316156410935e111b7a09503935", "x-ms-return-client-request-id": "true" }, @@ -119,28 +110,101 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:35:47 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/a11e1490-5593-4b0c-8fdf-ffbf46cab6b4?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:17:01 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/2645b0a2-f670-4368-a3b6-8ff356085af4?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "6bc1f316156410935e111b7a09503935", - "x-ms-request-id": "c89a55fd-a95a-47ff-a205-ac678b0fc753" + "x-ms-request-id": "98f99bf3-1d24-4c77-8a65-8040cfa93b51" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/a11e1490-5593-4b0c-8fdf-ffbf46cab6b4?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/2645b0a2-f670-4368-a3b6-8ff356085af4?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "d299778032b42c8fbba3eff1503c15fa", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "441", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 30 Sep 2021 06:17:03 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-ms-client-request-id": "d299778032b42c8fbba3eff1503c15fa", + "x-ms-correlation-request-id": "f6d9df0f-56c4-4c21-8e49-0ee5bc189a9e", + "x-ms-request-id": "4c33003c-3e6c-4634-a65e-d9e1832d3287", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/datasets/Dataset101080110", + "name": "Dataset101080110", + "type": "Microsoft.Synapse/workspaces/datasets", + "properties": { + "type": "Dataset", + "linkedServiceName": { + "type": "LinkedServiceReference", + "referenceName": "testsynapseworkspace-WorkspaceDefaultStorage" + } + }, + "etag": "2e00e87f-0000-0100-0000-6155565e0000" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/datasets/Dataset101080110?api-version=2020-12-01", + "RequestMethod": "DELETE", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-3f818a8cfed73d4aba3130ac98aca932-5bee6edd9cc7d142-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "fc78d8f6e4a72ce4fed6f23a9a512632", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": "Location", + "Access-Control-Expose-Headers": "Location", + "Content-Length": "365", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 30 Sep 2021 06:17:03 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/791fce51-a736-43f4-9d73-23da2d649818?api-version=2020-12-01", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "fc78d8f6e4a72ce4fed6f23a9a512632", + "x-ms-request-id": "b9fad89b-f6ca-41a8-a4f6-be9885cc3059" + }, + "ResponseBody": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/datasets/Dataset101080110", + "recordId": 0, + "state": "Deleting", + "created": "0001-01-01T00:00:00", + "changed": "0001-01-01T00:00:00", + "type": "Dataset", + "name": "Dataset101080110", + "operationId": "791fce51-a736-43f4-9d73-23da2d649818" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/791fce51-a736-43f4-9d73-23da2d649818?api-version=2020-12-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "308421fc3cd79c8e936dd3de4054926a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -156,28 +220,25 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:35:48 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/a11e1490-5593-4b0c-8fdf-ffbf46cab6b4?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:17:03 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/791fce51-a736-43f4-9d73-23da2d649818?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "d299778032b42c8fbba3eff1503c15fa", - "x-ms-request-id": "d19a6dba-e76e-4223-b8ac-08048df1c343" + "x-ms-client-request-id": "308421fc3cd79c8e936dd3de4054926a", + "x-ms-request-id": "4c741b96-18be-47d1-b517-e32d866d2ba8" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/a11e1490-5593-4b0c-8fdf-ffbf46cab6b4?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/791fce51-a736-43f4-9d73-23da2d649818?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "fc78d8f6e4a72ce4fed6f23a9a512632", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "b1dbbc7dd7e277a3c79498123423055d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -193,113 +254,93 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:35:49 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/a11e1490-5593-4b0c-8fdf-ffbf46cab6b4?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:17:04 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/791fce51-a736-43f4-9d73-23da2d649818?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "fc78d8f6e4a72ce4fed6f23a9a512632", - "x-ms-request-id": "9737b084-39f0-42fd-a51d-5670d8708162" + "x-ms-client-request-id": "b1dbbc7dd7e277a3c79498123423055d", + "x-ms-request-id": "2dda37e0-4169-4b14-ba14-1da3907f7e98" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/a11e1490-5593-4b0c-8fdf-ffbf46cab6b4?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/791fce51-a736-43f4-9d73-23da2d649818?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "3d5a9f167e56e3106494afc026a1bf21", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "793dd016f6ccd95a10beaae9ab32a30f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, - "StatusCode": 200, + "StatusCode": 202, "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "450", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:35:51 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" ], - "Strict-Transport-Security": "max-age=15724800; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "3d5a9f167e56e3106494afc026a1bf21", - "x-ms-correlation-request-id": "5bfb0252-d03f-4373-92f1-4a2c719fbc36", - "x-ms-request-id": "75a81081-3ec8-4b21-881c-ceaa58f487ab", - "X-Powered-By": "ASP.NET" + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 30 Sep 2021 06:17:05 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/791fce51-a736-43f4-9d73-23da2d649818?api-version=2020-12-01", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "793dd016f6ccd95a10beaae9ab32a30f", + "x-ms-request-id": "80192728-1baf-4749-ac3c-f5855731663c" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset101080110", - "name": "Dataset101080110", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "51003947-0000-0800-0000-6008a2360000" + "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset101080110?api-version=2019-06-01-preview", - "RequestMethod": "DELETE", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/791fce51-a736-43f4-9d73-23da2d649818?api-version=2020-12-01", + "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-9d5a4e54211b014ea2735e2c9253687b-5ac55a32295f5143-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "308421fc3cd79c8e936dd3de4054926a", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "694345020ec5253f7e0d6842a47c6770", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "Access-Control-Allow-Headers": "Location", - "Access-Control-Expose-Headers": "Location", - "Content-Length": "372", + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:35:51 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/478e68eb-61b6-4775-85ab-f4cddd3e5f1d?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:17:06 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/791fce51-a736-43f4-9d73-23da2d649818?api-version=2020-12-01", + "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "308421fc3cd79c8e936dd3de4054926a", - "x-ms-request-id": "85d593ac-bc83-42c0-8cd7-17429d61a82e" + "x-ms-client-request-id": "694345020ec5253f7e0d6842a47c6770", + "x-ms-request-id": "dfb8caac-a8ed-4363-ab40-19078106e4c4" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset101080110", - "recordId": 0, - "state": "Deleting", - "created": "0001-01-01T00:00:00", - "changed": "0001-01-01T00:00:00", - "type": "Dataset", - "name": "Dataset101080110", - "operationId": "478e68eb-61b6-4775-85ab-f4cddd3e5f1d" + "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/478e68eb-61b6-4775-85ab-f4cddd3e5f1d?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/791fce51-a736-43f4-9d73-23da2d649818?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "793dd016f6ccd95a10beaae9ab32a30f", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "70c776671917869d6202a0242dbacc95", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -315,28 +356,25 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:35:51 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/478e68eb-61b6-4775-85ab-f4cddd3e5f1d?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:17:08 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/791fce51-a736-43f4-9d73-23da2d649818?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "793dd016f6ccd95a10beaae9ab32a30f", - "x-ms-request-id": "66fec9ff-952b-4711-af31-88cd1cb82d5e" + "x-ms-client-request-id": "70c776671917869d6202a0242dbacc95", + "x-ms-request-id": "808d1d60-a402-479e-82a4-4ad8e48c57e7" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/478e68eb-61b6-4775-85ab-f4cddd3e5f1d?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/791fce51-a736-43f4-9d73-23da2d649818?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "694345020ec5253f7e0d6842a47c6770", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "ee0f88f19cdf08979018fabf8d173594", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -352,45 +390,42 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:35:52 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/478e68eb-61b6-4775-85ab-f4cddd3e5f1d?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:17:09 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/791fce51-a736-43f4-9d73-23da2d649818?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "694345020ec5253f7e0d6842a47c6770", - "x-ms-request-id": "0a9b0737-3d7a-46f6-9fa5-e7ea43f5ac64" + "x-ms-client-request-id": "ee0f88f19cdf08979018fabf8d173594", + "x-ms-request-id": "07a91f38-ab9b-47a8-8c5e-c17d8d9146b2" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/478e68eb-61b6-4775-85ab-f4cddd3e5f1d?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/791fce51-a736-43f4-9d73-23da2d649818?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "70c776671917869d6202a0242dbacc95", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "34813a56326be9f8a7bc07c36d1bf7c4", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Content-Length": "0", - "Date": "Wed, 20 Jan 2021 21:35:53 GMT", + "Date": "Thu, 30 Sep 2021 06:17:10 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "70c776671917869d6202a0242dbacc95", - "x-ms-request-id": "87efefb6-14bc-455d-be48-6b96b2879f1e" + "x-ms-client-request-id": "34813a56326be9f8a7bc07c36d1bf7c4", + "x-ms-request-id": "2dd19e97-1230-4468-acd8-19f791c4a7fd" }, "ResponseBody": [] } ], "Variables": { - "AZURE_SYNAPSE_WORKSPACE_URL": "https://workspacechhamosynapse.dev.azuresynapse.net", + "AZURE_SYNAPSE_WORKSPACE_URL": "https://testsynapseworkspace.dev.azuresynapse.net", "RandomSeed": "912824769" } } \ No newline at end of file diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DatasetClientLiveTests/TestDeleteDatasetAsync.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DatasetClientLiveTests/TestDeleteDatasetAsync.json index 344f3b7637de..e09f2adcf7be 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DatasetClientLiveTests/TestDeleteDatasetAsync.json +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DatasetClientLiveTests/TestDeleteDatasetAsync.json @@ -1,18 +1,15 @@ { "Entries": [ { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset173585094?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/datasets/Dataset173585094?api-version=2020-12-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "152", + "Content-Length": "150", "Content-Type": "application/json", - "traceparent": "00-eb683ebc7f1d05408a6eb3e97c5346b5-d28a5e9f44208b4e-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "traceparent": "00-7c24a66db60b8943ad26f72b0b9f90b1-5739ee03fa3e254f-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "328c362f9e83e73ca4dab50660b3abf4", "x-ms-return-client-request-id": "true" }, @@ -21,7 +18,7 @@ "type": "Dataset", "linkedServiceName": { "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" + "referenceName": "testsynapseworkspace-WorkspaceDefaultStorage" } } }, @@ -35,37 +32,34 @@ "Location", "Retry-After" ], - "Content-Length": "447", + "Content-Length": "431", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:18 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/6716b465-0cc3-4707-933d-8a1c4f504aaf?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:17:13 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e44208be-1374-4e2d-815c-f442f1f031b3?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "328c362f9e83e73ca4dab50660b3abf4", - "x-ms-request-id": "b9b58361-076c-4c26-8a15-5289de995743" + "x-ms-request-id": "cee39536-39da-49be-9cdc-8ad7cb480bda" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset173585094", - "recordId": 983970, + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/datasets/Dataset173585094", + "recordId": 2424234, "state": "Creating", - "created": "2021-01-20T21:36:18.4333333Z", - "changed": "2021-01-20T21:36:18.4333333Z", + "created": "2021-09-30T06:17:14.23Z", + "changed": "2021-09-30T06:17:14.23Z", "type": "Dataset", "name": "Dataset173585094", - "operationId": "6716b465-0cc3-4707-933d-8a1c4f504aaf", - "artifactId": "4BAFDBE1-E3FF-4C5D-B195-503DCFF7CB0F" + "operationId": "e44208be-1374-4e2d-815c-f442f1f031b3", + "artifactId": "F45A0E96-E114-4396-95C6-9BCB7A141E5C" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/6716b465-0cc3-4707-933d-8a1c4f504aaf?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e44208be-1374-4e2d-815c-f442f1f031b3?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "8a12f4d23b55f2bea7d277e2fee68413", "x-ms-return-client-request-id": "true" }, @@ -82,27 +76,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:18 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/6716b465-0cc3-4707-933d-8a1c4f504aaf?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:17:13 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e44208be-1374-4e2d-815c-f442f1f031b3?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "8a12f4d23b55f2bea7d277e2fee68413", - "x-ms-request-id": "ad571ff1-fb93-42a9-b187-615382640106" + "x-ms-request-id": "2eb3be44-4a89-4766-bd0e-9a795497064e" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/6716b465-0cc3-4707-933d-8a1c4f504aaf?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e44208be-1374-4e2d-815c-f442f1f031b3?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2746e3b1d7d15ec357d06e7d01ba55bb", "x-ms-return-client-request-id": "true" }, @@ -119,27 +110,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:19 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/6716b465-0cc3-4707-933d-8a1c4f504aaf?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:17:15 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e44208be-1374-4e2d-815c-f442f1f031b3?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "2746e3b1d7d15ec357d06e7d01ba55bb", - "x-ms-request-id": "89311534-f617-4cd6-8e55-08f27872bd91" + "x-ms-request-id": "fa0a5ed0-a94e-4c50-b2be-674110a29aaa" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/6716b465-0cc3-4707-933d-8a1c4f504aaf?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e44208be-1374-4e2d-815c-f442f1f031b3?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6b33856d21a02c9f53f5a12b5afcbdde", "x-ms-return-client-request-id": "true" }, @@ -156,76 +144,101 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:20 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/6716b465-0cc3-4707-933d-8a1c4f504aaf?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:17:16 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e44208be-1374-4e2d-815c-f442f1f031b3?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "6b33856d21a02c9f53f5a12b5afcbdde", - "x-ms-request-id": "d5642d77-6cf7-464d-9c54-c9b8af2b9ced" + "x-ms-request-id": "522fa0a4-e924-497a-80d2-83206cba043b" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/6716b465-0cc3-4707-933d-8a1c4f504aaf?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e44208be-1374-4e2d-815c-f442f1f031b3?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "aecf898145a2fb5e30b43285cc41f0ed", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 30 Sep 2021 06:17:17 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e44208be-1374-4e2d-815c-f442f1f031b3?api-version=2020-12-01", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "aecf898145a2fb5e30b43285cc41f0ed", + "x-ms-request-id": "f604db7f-fdf1-4bd0-9d14-edec1507930b" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e44208be-1374-4e2d-815c-f442f1f031b3?api-version=2020-12-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "7975bb7d18b390724419d4dc3698035a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "450", + "Content-Length": "441", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:21 GMT", + "Date": "Thu, 30 Sep 2021 06:17:18 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "aecf898145a2fb5e30b43285cc41f0ed", - "x-ms-correlation-request-id": "9ef1472d-59ef-48a0-ae2c-83e1b08dcf54", - "x-ms-request-id": "ec83f65c-92c6-481d-b490-1608feb8008c", + "x-ms-client-request-id": "7975bb7d18b390724419d4dc3698035a", + "x-ms-correlation-request-id": "9685f7c0-4895-4bc9-8a42-2103594e5329", + "x-ms-request-id": "63dffd73-db3d-41a4-acd7-4f923309eaa3", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset173585094", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/datasets/Dataset173585094", "name": "Dataset173585094", "type": "Microsoft.Synapse/workspaces/datasets", "properties": { "type": "Dataset", "linkedServiceName": { "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" + "referenceName": "testsynapseworkspace-WorkspaceDefaultStorage" } }, - "etag": "5100bf5d-0000-0800-0000-6008a2540000" + "etag": "2e00ef7f-0000-0100-0000-6155566d0000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset173585094?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/datasets/Dataset173585094?api-version=2020-12-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-3f30d64f27626b4eb9a1601727458b75-76103cdd2d2f494a-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "7975bb7d18b390724419d4dc3698035a", + "traceparent": "00-09e9ab03bcbf0745ac03ca16c7a0cc79-487fc227d05ed24d-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "78fb9012a7ea281927373aebee1a6011", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -233,72 +246,32 @@ "ResponseHeaders": { "Access-Control-Allow-Headers": "Location", "Access-Control-Expose-Headers": "Location", - "Content-Length": "372", + "Content-Length": "365", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:21 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/47a40365-3fb9-4697-96a0-b11f3176b1dd?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:17:19 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a08568f7-6716-48df-a33b-e5894ce25dcd?api-version=2020-12-01", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "7975bb7d18b390724419d4dc3698035a", - "x-ms-request-id": "a34db990-5ca0-47ff-a55f-d0a4de1fc90b" + "x-ms-client-request-id": "78fb9012a7ea281927373aebee1a6011", + "x-ms-request-id": "f2134de3-9d66-4442-ab58-da0182a328ad" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset173585094", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/datasets/Dataset173585094", "recordId": 0, "state": "Deleting", "created": "0001-01-01T00:00:00", "changed": "0001-01-01T00:00:00", "type": "Dataset", "name": "Dataset173585094", - "operationId": "47a40365-3fb9-4697-96a0-b11f3176b1dd" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/47a40365-3fb9-4697-96a0-b11f3176b1dd?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "9eaeb3054487692a163f6a887182c498", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:21 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/47a40365-3fb9-4697-96a0-b11f3176b1dd?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "9eaeb3054487692a163f6a887182c498", - "x-ms-request-id": "ebda7d8c-d10f-4c80-89f9-4f32afa3201a" - }, - "ResponseBody": { - "status": "InProgress" + "operationId": "a08568f7-6716-48df-a33b-e5894ce25dcd" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/47a40365-3fb9-4697-96a0-b11f3176b1dd?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a08568f7-6716-48df-a33b-e5894ce25dcd?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "3b72d7b07746d502a24c517bdd87a229", "x-ms-return-client-request-id": "true" }, @@ -315,27 +288,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:23 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/47a40365-3fb9-4697-96a0-b11f3176b1dd?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:17:19 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a08568f7-6716-48df-a33b-e5894ce25dcd?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "3b72d7b07746d502a24c517bdd87a229", - "x-ms-request-id": "696776ea-9364-497a-ab9c-7368d12de50a" + "x-ms-request-id": "cf325e77-5402-49ca-9237-14ecb2c74873" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/47a40365-3fb9-4697-96a0-b11f3176b1dd?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a08568f7-6716-48df-a33b-e5894ce25dcd?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "82d6c2b965e9ced3659262ab3c90b7a5", "x-ms-return-client-request-id": "true" }, @@ -343,17 +313,17 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Length": "0", - "Date": "Wed, 20 Jan 2021 21:36:24 GMT", + "Date": "Thu, 30 Sep 2021 06:17:20 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "82d6c2b965e9ced3659262ab3c90b7a5", - "x-ms-request-id": "5ce5602f-e075-4992-991e-9083111dc470" + "x-ms-request-id": "249b88bf-e416-4e98-98a4-c72b1011492c" }, "ResponseBody": [] } ], "Variables": { - "AZURE_SYNAPSE_WORKSPACE_URL": "https://workspacechhamosynapse.dev.azuresynapse.net", + "AZURE_SYNAPSE_WORKSPACE_URL": "https://testsynapseworkspace.dev.azuresynapse.net", "RandomSeed": "1388498454" } } \ No newline at end of file diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DatasetClientLiveTests/TestGetDataset.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DatasetClientLiveTests/TestGetDataset.json index bef39e99c27e..7c971ca42ac0 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DatasetClientLiveTests/TestGetDataset.json +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DatasetClientLiveTests/TestGetDataset.json @@ -1,7786 +1,269 @@ { "Entries": [ { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/datasets?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-07c201d1815868488207a2d3c778bc65-87eded4b9a66a24d-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "traceparent": "00-2c05278441e8e4489220c10c5c5394d3-937e7182fcb5bb46-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "87f3680c2e3fbf146c3f47ff0e267b3d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Content-Length": "22824", + "Content-Length": "1790", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:35:53 GMT", + "Date": "Thu, 30 Sep 2021 06:17:10 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "87f3680c2e3fbf146c3f47ff0e267b3d", - "x-ms-request-id": "6d267376-39df-43c9-9942-e21bfa5f58e7" + "x-ms-request-id": "63f20161-6951-4333-80b6-561d070464a7" }, "ResponseBody": { "value": [ { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset255462130", - "name": "Dataset255462130", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/datasets/DelimitedText1", + "name": "DelimitedText1", "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "f5019bfd-0000-0800-0000-5fd257db0000", + "etag": "1b004dbf-0000-0100-0000-5f5838240000", "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset425710911", - "name": "Dataset425710911", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "f50193fe-0000-0800-0000-5fd257e40000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset2029557966", - "name": "Dataset2029557966", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "f6010818-0000-0800-0000-5fd258c70000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset327372201", - "name": "Dataset327372201", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "f6015a19-0000-0800-0000-5fd258d20000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset578246037", - "name": "Dataset578246037", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "f601ab34-0000-0800-0000-5fd259b90000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1558645355", - "name": "Dataset1558645355", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "f601a236-0000-0800-0000-5fd259c60000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1749813746", - "name": "Dataset1749813746", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "f601c2a4-0000-0800-0000-5fd25dc80000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1075743753", - "name": "Dataset1075743753", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "f6016fa6-0000-0800-0000-5fd25dd60000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset328514073", - "name": "Dataset328514073", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "f60128be-0000-0800-0000-5fd25eac0000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset419725496", - "name": "Dataset419725496", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "f60137bf-0000-0800-0000-5fd25eb50000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1281888081", - "name": "Dataset1281888081", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "f60120d7-0000-0800-0000-5fd25f940000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset196080904", - "name": "Dataset196080904", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "f6012fd8-0000-0800-0000-5fd25f9e0000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset193365640", - "name": "Dataset193365640", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "f7012843-0000-0800-0000-5fd263ad0000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1829104859", - "name": "Dataset1829104859", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "f7015a45-0000-0800-0000-5fd263bf0000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset438936885", - "name": "Dataset438936885", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "f701c35f-0000-0800-0000-5fd264b50000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset2007343499", - "name": "Dataset2007343499", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "f701d160-0000-0800-0000-5fd264bd0000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset836314495", - "name": "Dataset836314495", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "f701058f-0000-0800-0000-5fd2666b0000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset856564196", - "name": "Dataset856564196", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "f701ab90-0000-0800-0000-5fd2667a0000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset2095422558", - "name": "Dataset2095422558", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "19029075-0000-0800-0000-5fd3a7d60000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset740002382", - "name": "Dataset740002382", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "1902ad76-0000-0800-0000-5fd3a7e20000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1729474358", - "name": "Dataset1729474358", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "6202568d-0000-0800-0000-5fd797300000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1026181826", - "name": "Dataset1026181826", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "6202f68e-0000-0800-0000-5fd7973b0000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1060370331", - "name": "Dataset1060370331", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "6202fbbc-0000-0800-0000-5fd798a40000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1734962837", - "name": "Dataset1734962837", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "6202e3be-0000-0800-0000-5fd798b30000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1643623177", - "name": "Dataset1643623177", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "6202a1e3-0000-0800-0000-5fd799c60000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset133717966", - "name": "Dataset133717966", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "62027de5-0000-0800-0000-5fd799d30000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset2069156527", - "name": "Dataset2069156527", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "8302e6ed-0000-0800-0000-5fd8d3790000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1361092452", - "name": "Dataset1361092452", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "83027cf0-0000-0800-0000-5fd8d38a0000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1982585264", - "name": "Dataset1982585264", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "84029a28-0000-0800-0000-5fd8d5350000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1584048031", - "name": "Dataset1584048031", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "8402992a-0000-0800-0000-5fd8d5470000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset2077225302", - "name": "Dataset2077225302", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "8402b851-0000-0800-0000-5fd8d6720000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset454764449", - "name": "Dataset454764449", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "8402da52-0000-0800-0000-5fd8d67a0000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset136456529", - "name": "Dataset136456529", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "87028aab-0000-0800-0000-5fd8f1030000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset684448508", - "name": "Dataset684448508", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "87029aad-0000-0800-0000-5fd8f1140000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset679270590", - "name": "Dataset679270590", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "8702a0ca-0000-0800-0000-5fd8f1ff0000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset214370204", - "name": "Dataset214370204", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "8702d5cc-0000-0800-0000-5fd8f2110000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset579166872", - "name": "Dataset579166872", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "87027dee-0000-0800-0000-5fd8f3190000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset2051259056", - "name": "Dataset2051259056", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "8702ddf0-0000-0800-0000-5fd8f32e0000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset622369459", - "name": "Dataset622369459", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "8802675b-0000-0800-0000-5fd8f6900000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset274408814", - "name": "Dataset274408814", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "8802cb5d-0000-0800-0000-5fd8f6a20000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset362233113", - "name": "Dataset362233113", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "8802bb7c-0000-0800-0000-5fd8f7b00000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1322562692", - "name": "Dataset1322562692", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "8802e07e-0000-0800-0000-5fd8f7c20000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1267783872", - "name": "Dataset1267783872", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "8802d3a0-0000-0800-0000-5fd8f8d80000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset54405418", - "name": "Dataset54405418", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "880238a3-0000-0800-0000-5fd8f8ea0000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1047788388", - "name": "Dataset1047788388", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "4200e453-0000-0800-0000-5fda866d0000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1088609233", - "name": "Dataset1088609233", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "42009658-0000-0800-0000-5fda867f0000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1683654226", - "name": "Dataset1683654226", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "4200f59a-0000-0800-0000-5fda87850000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset205771093", - "name": "Dataset205771093", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "4200749f-0000-0800-0000-5fda87960000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset70622159", - "name": "Dataset70622159", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "420080dd-0000-0800-0000-5fda88870000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1006965050", - "name": "Dataset1006965050", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "420057e2-0000-0800-0000-5fda88990000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - } - ], - "nextLink": "https://workspacechhamosynapse.dev.azuresynapse.net:443/datasets?api-version=2019-06-01-preview\u0026%24skipToken=%2BRID%3A%7ESl8ZAKxwhACFUgAAAAD8BA%3D%3D%23RT%3A1%23TRC%3A50%23ISV%3A2%23IEO%3A65551%23QCF%3A1" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset255462130?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-ddd1f9a18296ff4a93e3017a7f72631c-a86856096d74f74a-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "d2a27652d721bf81592e3f3a51bfd3b3", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "450", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:35: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-ms-client-request-id": "d2a27652d721bf81592e3f3a51bfd3b3", - "x-ms-correlation-request-id": "9cb6e86b-36f1-46eb-8ecc-e70681f6b5a4", - "x-ms-request-id": "c94773b1-dedb-4e1d-952a-a256817055d1", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset255462130", - "name": "Dataset255462130", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "f5019bfd-0000-0800-0000-5fd257db0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset425710911?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-dbe922844adac04cb871a090719e59ff-b49da98631ac4d4c-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "9a47fe73c9099b12f41fb0030efbf4a1", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "450", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:35: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-ms-client-request-id": "9a47fe73c9099b12f41fb0030efbf4a1", - "x-ms-correlation-request-id": "43ccc894-e91e-4f1a-a97c-9e3c703140cd", - "x-ms-request-id": "f51b8459-8a7c-4f07-9fb9-36aca592ec27", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset425710911", - "name": "Dataset425710911", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "f50193fe-0000-0800-0000-5fd257e40000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset2029557966?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-c09ee758e592bc41a790af886ce5f99b-14e952d6a5656d4b-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "41855815ba183549e6342d11efd96dac", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "452", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:35:54 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-ms-client-request-id": "41855815ba183549e6342d11efd96dac", - "x-ms-correlation-request-id": "f43e909d-dd8d-4d1d-ba1c-5913d6cbd309", - "x-ms-request-id": "537b5d09-a395-4e69-a293-6d6b6fd9aa9a", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset2029557966", - "name": "Dataset2029557966", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "f6010818-0000-0800-0000-5fd258c70000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset327372201?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-cb6e47c7ac0831489a2010a70a91f657-fb47550313dfe049-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "0f8b936be1de89336307de01267db15d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "450", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:35:54 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-ms-client-request-id": "0f8b936be1de89336307de01267db15d", - "x-ms-correlation-request-id": "ecfb2b3f-91f0-4dc6-8939-fd1f2f110912", - "x-ms-request-id": "414b1ca1-3a53-4f7d-997a-dc4c4b39eadb", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset327372201", - "name": "Dataset327372201", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "f6015a19-0000-0800-0000-5fd258d20000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset578246037?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-0b4adbb29d257846b28097b47eeb8994-9fb8da37dbae0242-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "f9259e39913ab99bb411b3d59b01ac1b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "450", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:35:54 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-ms-client-request-id": "f9259e39913ab99bb411b3d59b01ac1b", - "x-ms-correlation-request-id": "6d10d4d6-8759-4d3c-b498-6fd81018ee66", - "x-ms-request-id": "fec9b684-fea1-4bc9-88cb-92816859ae8c", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset578246037", - "name": "Dataset578246037", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "f601ab34-0000-0800-0000-5fd259b90000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset1558645355?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-39dc1b5b088e86428f1c510652fd77ad-c094f5ab439e934d-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "7a9804b1e46f34c224fcdd11db470f69", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "452", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:35:54 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-ms-client-request-id": "7a9804b1e46f34c224fcdd11db470f69", - "x-ms-correlation-request-id": "cb3dc787-eda8-43a4-a4e9-3d31f175f73f", - "x-ms-request-id": "9b269fac-7cc1-4578-9f8f-d48d03e4d951", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1558645355", - "name": "Dataset1558645355", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "f601a236-0000-0800-0000-5fd259c60000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset1749813746?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-11480a2f0f9e4a4eb5cc4c01b45a9d65-4bd4fac098f09146-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "50d7cf8374b3da72f8d25bcd2e5eed62", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "452", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:35:54 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-ms-client-request-id": "50d7cf8374b3da72f8d25bcd2e5eed62", - "x-ms-correlation-request-id": "2dae13dc-6668-432a-827d-a510dc052d32", - "x-ms-request-id": "616e6459-e199-445c-b842-39330700cb91", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1749813746", - "name": "Dataset1749813746", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "f601c2a4-0000-0800-0000-5fd25dc80000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset1075743753?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-22f075bf1dc89f4c95641c9c9a9c07be-6f0a51b145c7a346-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "2250c35b36e554eedcf1d43eb389dd6c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "452", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:35:54 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-ms-client-request-id": "2250c35b36e554eedcf1d43eb389dd6c", - "x-ms-correlation-request-id": "355ab4e4-3e1c-4c5e-af49-5d3a7327980f", - "x-ms-request-id": "a6c0732f-985d-4b33-a993-494aa6ef4b90", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1075743753", - "name": "Dataset1075743753", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "f6016fa6-0000-0800-0000-5fd25dd60000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset328514073?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-0e443ee44c483b4183f0e1da1a632b31-884f957b8ae52341-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "cb524a015b293c6792bd829c89f405c6", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "450", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:35:54 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-ms-client-request-id": "cb524a015b293c6792bd829c89f405c6", - "x-ms-correlation-request-id": "4b60bcf9-4e70-4524-aecd-238dc091f900", - "x-ms-request-id": "740c7db6-3edd-46e3-b036-215bce5b2470", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset328514073", - "name": "Dataset328514073", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "f60128be-0000-0800-0000-5fd25eac0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset419725496?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-db1139784d168f4ba116fdf3d96c4f8d-b528096f2d402e49-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "18b67b0fedf74c83e18273c2a034266e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "450", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:35:55 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-ms-client-request-id": "18b67b0fedf74c83e18273c2a034266e", - "x-ms-correlation-request-id": "085d910d-430f-4263-b3ab-b5bc8a1499fa", - "x-ms-request-id": "84c0f323-a5ad-431b-8262-2feb075e0539", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset419725496", - "name": "Dataset419725496", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "f60137bf-0000-0800-0000-5fd25eb50000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset1281888081?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-4c692eec0a7956468edd21d685f374f5-5276d0f6e2fc0f46-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "e4cbeef5210cff385b138f27b451cbe7", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "452", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:35:55 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-ms-client-request-id": "e4cbeef5210cff385b138f27b451cbe7", - "x-ms-correlation-request-id": "ecc42588-f9d9-45d6-80a1-3e184c6a5118", - "x-ms-request-id": "623ac4d5-93ec-43b5-aaa5-bd01d18a39dc", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1281888081", - "name": "Dataset1281888081", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "f60120d7-0000-0800-0000-5fd25f940000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset196080904?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-ee1978d05b0c51499a22e85b4b35fbcb-99a5cc8600b77e41-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "372e0eebc4d31474c605eaa7e8a49c5e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "450", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:35:55 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-ms-client-request-id": "372e0eebc4d31474c605eaa7e8a49c5e", - "x-ms-correlation-request-id": "29d32049-8fb7-44b7-a6f2-c07921677012", - "x-ms-request-id": "66e9f32f-7efe-4298-9b2d-d803a4720bfc", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset196080904", - "name": "Dataset196080904", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "f6012fd8-0000-0800-0000-5fd25f9e0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset193365640?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-bcfe0e9f388e404fb79bf977ae05994a-529375057c080846-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "9ba613972128edba43b7bde45d5b9790", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "450", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:35:55 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-ms-client-request-id": "9ba613972128edba43b7bde45d5b9790", - "x-ms-correlation-request-id": "1f432086-6e34-4b9b-ac05-db802b4ec346", - "x-ms-request-id": "e2bc6b5f-cd8e-47c3-9a2c-b7cbcedf730c", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset193365640", - "name": "Dataset193365640", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "f7012843-0000-0800-0000-5fd263ad0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset1829104859?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-878569433fc054429d7a2a42c77496d5-9a044238cb52a74a-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "91d78cb7ee05319b79b71d06379117b7", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "452", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:35:55 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-ms-client-request-id": "91d78cb7ee05319b79b71d06379117b7", - "x-ms-correlation-request-id": "48ed7534-c511-4d12-8200-b25482ab5eac", - "x-ms-request-id": "eba44485-a07d-4a51-afb3-bcac470ecb2d", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1829104859", - "name": "Dataset1829104859", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "f7015a45-0000-0800-0000-5fd263bf0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset438936885?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-f2b5feff8b203a46b6051e2e8a5a120c-5055ea165d1aac48-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "a19031762faac9bf5440f41c0790b66a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "450", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:35:55 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-ms-client-request-id": "a19031762faac9bf5440f41c0790b66a", - "x-ms-correlation-request-id": "3670fd63-287d-49d2-bfad-4ddb4e709770", - "x-ms-request-id": "e38bfe8d-ec3e-4370-9cc8-20cb325ad036", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset438936885", - "name": "Dataset438936885", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "f701c35f-0000-0800-0000-5fd264b50000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset2007343499?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-e456eaa29d2eea49b67d56f30ce544b2-6d8fd6e669ee9746-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "5bef596e0bcda8587875217104b3b6b2", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "452", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:35:55 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-ms-client-request-id": "5bef596e0bcda8587875217104b3b6b2", - "x-ms-correlation-request-id": "2c5c5fcc-ca01-47b4-adcc-4ea3f5c42dea", - "x-ms-request-id": "ff0e9ba4-016e-42ca-bf84-9317fb61aab3", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset2007343499", - "name": "Dataset2007343499", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "f701d160-0000-0800-0000-5fd264bd0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset836314495?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-d3ca30b9f2e6ee4c930e4364c1823c0d-44ab3031cd52cb46-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "2b6d06a0f6cb87e5cc0e3dc4f97f2ae8", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "450", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:35:55 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-ms-client-request-id": "2b6d06a0f6cb87e5cc0e3dc4f97f2ae8", - "x-ms-correlation-request-id": "040fe5b1-2680-4145-bf0c-ef1856f6df4c", - "x-ms-request-id": "29a43a2a-716f-4998-94a6-00dcd7c8ae0f", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset836314495", - "name": "Dataset836314495", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "f701058f-0000-0800-0000-5fd2666b0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset856564196?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-e1576f197732734ebd78d74b3db87161-7b4c29fd106e0c46-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "dd98b200bba16be9d8e828350d4dc4a0", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "450", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:35:56 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-ms-client-request-id": "dd98b200bba16be9d8e828350d4dc4a0", - "x-ms-correlation-request-id": "1ec5eab9-6969-43df-af4b-a8724d130a0f", - "x-ms-request-id": "a291d33b-48ba-425d-87ac-c234ab1ffbca", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset856564196", - "name": "Dataset856564196", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "f701ab90-0000-0800-0000-5fd2667a0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset2095422558?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-c4f4c534d8fd9846a6c95d62644635cc-773941fe5ab1434b-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "007b428a8a22779f73688fbfcd94aef8", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "452", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:35:56 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-ms-client-request-id": "007b428a8a22779f73688fbfcd94aef8", - "x-ms-correlation-request-id": "cbe7f638-9b08-4c57-8720-c1c5ec00ce7d", - "x-ms-request-id": "cd31816e-5d73-4419-b55e-18a0f2ae0c69", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset2095422558", - "name": "Dataset2095422558", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "19029075-0000-0800-0000-5fd3a7d60000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset740002382?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-ce2ee3b58fc4334b950fdffffcb5fa20-b7614b6c5f32af46-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "5170394ad91be5101c0253e3cdb07a7e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "450", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:35:56 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-ms-client-request-id": "5170394ad91be5101c0253e3cdb07a7e", - "x-ms-correlation-request-id": "430f2605-b697-400b-a373-e6a61e168b92", - "x-ms-request-id": "66195c4c-1686-49b0-9740-366ec5f31000", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset740002382", - "name": "Dataset740002382", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "1902ad76-0000-0800-0000-5fd3a7e20000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset1729474358?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-2f28ab6adeba6e41ad873c5a6b5dad00-ed098bad4fca8447-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "b73a9d49290376c6132169392c2a9e44", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "452", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:35:56 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-ms-client-request-id": "b73a9d49290376c6132169392c2a9e44", - "x-ms-correlation-request-id": "131f2a65-c463-4603-83e2-de1fc4416ba5", - "x-ms-request-id": "ab72a884-bddf-4002-8c3c-4d0282164fc3", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1729474358", - "name": "Dataset1729474358", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "6202568d-0000-0800-0000-5fd797300000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset1026181826?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-b44f71bf5232e5459ae63d5ced955b94-8a51d4819e531741-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "d4ea303973ddb0843196e42037bba9c2", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "452", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:35:56 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-ms-client-request-id": "d4ea303973ddb0843196e42037bba9c2", - "x-ms-correlation-request-id": "3ba9baa2-4445-49ad-9595-7fe57c4b266a", - "x-ms-request-id": "05120a77-39a0-4412-af4b-e5ed06d632ec", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1026181826", - "name": "Dataset1026181826", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "6202f68e-0000-0800-0000-5fd7973b0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset1060370331?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-f3328c1c1104bc4b924b7fdb99068d7a-5de5829d4b86eb40-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "307510edf75a21f572fa3dfa6fd7b9f1", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "452", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:35:56 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-ms-client-request-id": "307510edf75a21f572fa3dfa6fd7b9f1", - "x-ms-correlation-request-id": "ab292d48-2fe2-4767-980e-a28773a97cc3", - "x-ms-request-id": "b75cba30-af10-4a1a-9d16-73b483263cc4", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1060370331", - "name": "Dataset1060370331", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "6202fbbc-0000-0800-0000-5fd798a40000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset1734962837?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-15ceceec1d517d46b62e5685a5fa743a-76cd943fe8197e4b-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "9da90e64a5c6d5a11889856c44a63e57", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "452", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:35:56 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-ms-client-request-id": "9da90e64a5c6d5a11889856c44a63e57", - "x-ms-correlation-request-id": "b0ead77f-48d0-4460-ba90-dd9ff660171e", - "x-ms-request-id": "9ad49baf-690d-4fe2-a324-7a8fa433858c", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1734962837", - "name": "Dataset1734962837", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "6202e3be-0000-0800-0000-5fd798b30000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset1643623177?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-daa7bc122d246b42acc249cddb5cc07b-46946cb9af9cff4a-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "1c4ba6776db442e93ac861e3358a415a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "452", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:35:56 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-ms-client-request-id": "1c4ba6776db442e93ac861e3358a415a", - "x-ms-correlation-request-id": "46272c5e-f4f6-49cf-a05c-ea9196f6bbc1", - "x-ms-request-id": "3dd90c6b-94fa-4165-b55a-b403eb8d8b4c", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1643623177", - "name": "Dataset1643623177", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "6202a1e3-0000-0800-0000-5fd799c60000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset133717966?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-beb71eaede6f2b43b47d8868090c6cec-1eef12b4515da148-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "28bbf2dd0b1248fc6ea017d17288dccc", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "450", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:35:57 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-ms-client-request-id": "28bbf2dd0b1248fc6ea017d17288dccc", - "x-ms-correlation-request-id": "e6ca6fd5-b941-40d9-8e55-2cc5b7091c23", - "x-ms-request-id": "bc1b3860-5ef9-4e4c-bab9-f9e9a345b1e6", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset133717966", - "name": "Dataset133717966", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "62027de5-0000-0800-0000-5fd799d30000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset2069156527?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-62a17caa4f36024aa81f6873ec2eb21f-576ade32d00ae441-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "c882e5bb9d8cf63c256662fd43bd9f8d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "452", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:35:57 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-ms-client-request-id": "c882e5bb9d8cf63c256662fd43bd9f8d", - "x-ms-correlation-request-id": "94b3e17b-ac91-4001-b462-38315f6fab92", - "x-ms-request-id": "893d848b-4841-4d78-a6de-c0b9be32a7a5", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset2069156527", - "name": "Dataset2069156527", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "8302e6ed-0000-0800-0000-5fd8d3790000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset1361092452?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-b1a3d0376282b94781e025e33581c332-452fb5705779b348-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "518f2a4715ea6b45aa02ad145618d0b2", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "452", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:35:57 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-ms-client-request-id": "518f2a4715ea6b45aa02ad145618d0b2", - "x-ms-correlation-request-id": "fca36119-8fab-4320-bb2e-f756280ba9b6", - "x-ms-request-id": "f4e478fe-711d-486f-8abb-aae42f45dc78", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1361092452", - "name": "Dataset1361092452", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "83027cf0-0000-0800-0000-5fd8d38a0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset1982585264?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-ea004b064dbddc49bb5bc6ef3aea6ba3-f1522497a58e0a4c-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "502795ec780740cdb6c403aca9fe05b0", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "452", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:35:57 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-ms-client-request-id": "502795ec780740cdb6c403aca9fe05b0", - "x-ms-correlation-request-id": "1ad24c83-bc6d-467b-bf3e-e87ee9c0fe6c", - "x-ms-request-id": "ddd6a547-b80d-4cfa-9789-80722302f0e7", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1982585264", - "name": "Dataset1982585264", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "84029a28-0000-0800-0000-5fd8d5350000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset1584048031?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-92ff76f18933d549a6720bb2886872aa-2c47d93371240d4e-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "478989008af9a6e2a0171e89ef27a00d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "452", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:35:57 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-ms-client-request-id": "478989008af9a6e2a0171e89ef27a00d", - "x-ms-correlation-request-id": "2a409abd-24a7-46cf-8836-d3eb15c223ba", - "x-ms-request-id": "0b5a2ac7-ea7f-4a13-957c-7483b2c5211b", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1584048031", - "name": "Dataset1584048031", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "8402992a-0000-0800-0000-5fd8d5470000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset2077225302?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-9cf2b2fda3d01c43be42da9cab9cc9aa-221677239e55514c-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "ae11b0954f96ce865c4e9b251299c2ab", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "452", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:35:57 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-ms-client-request-id": "ae11b0954f96ce865c4e9b251299c2ab", - "x-ms-correlation-request-id": "d100223a-0d39-4a3b-b138-81b513c0b496", - "x-ms-request-id": "f468ab8f-88b2-4ca6-8015-16d0166f48b4", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset2077225302", - "name": "Dataset2077225302", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "8402b851-0000-0800-0000-5fd8d6720000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset454764449?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-630c7310d05e2447a05e836541721cb7-7674d75a88a0324e-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "cc14fcfd898e62b9b380aff05a44508e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "450", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:35:57 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-ms-client-request-id": "cc14fcfd898e62b9b380aff05a44508e", - "x-ms-correlation-request-id": "56c7d630-93ac-458f-adcf-4eb55c7f00ca", - "x-ms-request-id": "1064a9e9-b3cd-4454-9c6b-f1e17be7a7bf", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset454764449", - "name": "Dataset454764449", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "8402da52-0000-0800-0000-5fd8d67a0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset136456529?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-2c28a811e0fccc469f96748622aa3195-822fc97e32916142-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "f916f62456edb01a03baeaaaeebc9407", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "450", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:35:58 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-ms-client-request-id": "f916f62456edb01a03baeaaaeebc9407", - "x-ms-correlation-request-id": "af0f30a5-0681-48ee-a277-b72720b68261", - "x-ms-request-id": "f23102ba-ff98-4d36-8095-b53ec85200be", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset136456529", - "name": "Dataset136456529", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "87028aab-0000-0800-0000-5fd8f1030000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset684448508?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-53d6e48e5232264f91ed3e8debaf08bc-37896f29988ac04d-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "f38c7255d4130c7ef6affb159f967418", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "450", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:35:58 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-ms-client-request-id": "f38c7255d4130c7ef6affb159f967418", - "x-ms-correlation-request-id": "b598387a-6b86-4fdb-b23f-cea2c7dba388", - "x-ms-request-id": "f1d7c36c-a9d2-40d4-a51c-0b738efd9348", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset684448508", - "name": "Dataset684448508", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "87029aad-0000-0800-0000-5fd8f1140000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset679270590?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-0e3b7e4b9482504a9438d75d63ce4d73-9aa077a9ca4a974b-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "1b010dfec882a6bee264c8d39f0f73f6", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "450", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:35:58 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-ms-client-request-id": "1b010dfec882a6bee264c8d39f0f73f6", - "x-ms-correlation-request-id": "0a79c85d-bf4b-4baf-8028-7375ea9a1e8e", - "x-ms-request-id": "245813f0-f204-4327-bd3f-81b7fd915c9f", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset679270590", - "name": "Dataset679270590", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "8702a0ca-0000-0800-0000-5fd8f1ff0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset214370204?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-3c8eb211b11eb1468f6a3d8598f8a62a-71596f403e6c6f44-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "e89aa8ec5db74f7b780a023e5b04106d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "450", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:35:58 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-ms-client-request-id": "e89aa8ec5db74f7b780a023e5b04106d", - "x-ms-correlation-request-id": "5beeabad-d921-40da-a67d-0aab1e4710cf", - "x-ms-request-id": "d669f0d8-2f70-43a4-86eb-08418cae54db", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset214370204", - "name": "Dataset214370204", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "8702d5cc-0000-0800-0000-5fd8f2110000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset579166872?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-67fd86fb4a810f42a09b1cf3bd1e121d-19658a28c2fb7749-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "e1acd14678ba8c84b4e511af0caa6de7", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "450", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:35:58 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-ms-client-request-id": "e1acd14678ba8c84b4e511af0caa6de7", - "x-ms-correlation-request-id": "ebe0a265-f523-4d94-ad3f-02c4d50f7386", - "x-ms-request-id": "88fda6bf-d246-4757-8df8-a7af7e88f3dd", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset579166872", - "name": "Dataset579166872", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "87027dee-0000-0800-0000-5fd8f3190000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset2051259056?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-d7085ca8b27cb944b4a9be388a7f853b-59cf1e724e7ea34e-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "f728043b8cfba06092b1a378c67f4add", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "452", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:35:58 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-ms-client-request-id": "f728043b8cfba06092b1a378c67f4add", - "x-ms-correlation-request-id": "d1480b35-c639-4330-a19b-906ecdd23e05", - "x-ms-request-id": "7a57d51b-9c31-4e02-9d3d-44a01303ed2e", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset2051259056", - "name": "Dataset2051259056", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "8702ddf0-0000-0800-0000-5fd8f32e0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset622369459?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-50e03b2294968e4aac71cb682dbd78df-973f7c15cce9ce45-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "cd8d5b539163743b230e33d14ccc43cd", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "450", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:35:58 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-ms-client-request-id": "cd8d5b539163743b230e33d14ccc43cd", - "x-ms-correlation-request-id": "8253c590-7e89-420c-815e-78bfddbe75c0", - "x-ms-request-id": "8c971c72-5008-4bf3-bb62-7a9d2c552af6", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset622369459", - "name": "Dataset622369459", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "8802675b-0000-0800-0000-5fd8f6900000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset274408814?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-cf35e02d9ede034c99565f393c719fc1-4c55cea1b9640942-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "57021b9c19dbba71700b4f08d40cc534", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "450", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:35:58 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-ms-client-request-id": "57021b9c19dbba71700b4f08d40cc534", - "x-ms-correlation-request-id": "cee4f365-7f49-45fe-a7c2-988931786761", - "x-ms-request-id": "fb053beb-1b7e-4e52-9e12-327c340f3b7c", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset274408814", - "name": "Dataset274408814", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "8802cb5d-0000-0800-0000-5fd8f6a20000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset362233113?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-93e975f19e44384f99d55e708d21e685-bf82a750be4a944f-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "b15b339a9f1da984c8b4d3ed588e54c6", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "450", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:35: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-ms-client-request-id": "b15b339a9f1da984c8b4d3ed588e54c6", - "x-ms-correlation-request-id": "a8ad385b-b4c9-48c8-9ef5-d0d1ccf29b90", - "x-ms-request-id": "ecce6c11-10f3-4bc3-8f41-4da34e5a1166", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset362233113", - "name": "Dataset362233113", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "8802bb7c-0000-0800-0000-5fd8f7b00000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset1322562692?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-1c2e1b1e9f1be947bf2936c543155a03-06b66e53f75a6d4f-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "abdbd66ef37d3a01e9d35c5742329f17", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "452", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:35: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-ms-client-request-id": "abdbd66ef37d3a01e9d35c5742329f17", - "x-ms-correlation-request-id": "5f6bb908-282e-482d-8cca-6af3c0a58fd1", - "x-ms-request-id": "62d250a5-63d8-481c-8d9b-005bc5ba8872", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1322562692", - "name": "Dataset1322562692", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "8802e07e-0000-0800-0000-5fd8f7c20000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset1267783872?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-cb935f2554842941b13a2e79a583c659-7537ead434a24e44-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "1837ff489270fdb096588e27458461e1", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "452", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:35: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-ms-client-request-id": "1837ff489270fdb096588e27458461e1", - "x-ms-correlation-request-id": "b2a823d4-d2ec-40f4-a888-e0f85282e8d2", - "x-ms-request-id": "c7295952-1f2d-4d86-ab42-1e7a8799bdcc", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1267783872", - "name": "Dataset1267783872", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "8802d3a0-0000-0800-0000-5fd8f8d80000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset54405418?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-0d7fd50f26c7a344bf41fe23866c08c1-ec5977a2f18cc248-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "fe9a88b61a30a7b63221c74a432c6695", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "448", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:35: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-ms-client-request-id": "fe9a88b61a30a7b63221c74a432c6695", - "x-ms-correlation-request-id": "992cf604-73a1-4c92-b916-4e1d03606c8a", - "x-ms-request-id": "c6592f2d-ca43-49f0-8b60-b51832a22e25", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset54405418", - "name": "Dataset54405418", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "880238a3-0000-0800-0000-5fd8f8ea0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset1047788388?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-14299da68cf3ab40a2e0d60c22e26974-8d4a8797a242a243-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "58a4bc143c57db5526de142465d9f564", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "452", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:35: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-ms-client-request-id": "58a4bc143c57db5526de142465d9f564", - "x-ms-correlation-request-id": "0ddb3b74-a563-4b9d-85e6-3cbc1dcd7e75", - "x-ms-request-id": "2584126d-6859-41b3-83cc-4356884bfc61", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1047788388", - "name": "Dataset1047788388", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "4200e453-0000-0800-0000-5fda866d0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset1088609233?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-d04cf5bfb617a243885d574cc3ffa1da-d9c867bd1085c949-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "baa17a71a1982ee6488fe64fca66ba6a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "452", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:35: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-ms-client-request-id": "baa17a71a1982ee6488fe64fca66ba6a", - "x-ms-correlation-request-id": "76104e70-6fca-4acc-b22f-ad19bb0cf381", - "x-ms-request-id": "d4fdc5e8-f2dd-4f76-b967-f16dd0f4e461", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1088609233", - "name": "Dataset1088609233", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "42009658-0000-0800-0000-5fda867f0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset1683654226?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-db32d23610399f408d9ddde2bed00511-3feb15a274c5d041-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "8813f8f209e07a8a33bed85205924158", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "452", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:35: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-ms-client-request-id": "8813f8f209e07a8a33bed85205924158", - "x-ms-correlation-request-id": "13c75c37-7b62-4a34-a996-92beef9155e2", - "x-ms-request-id": "81f5e333-76a1-473f-a891-1415629aa70b", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1683654226", - "name": "Dataset1683654226", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "4200f59a-0000-0800-0000-5fda87850000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset205771093?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-d6d370332dbc2c41bb84186bfb1ee156-c1e9a9494542f943-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "c8d9632cac8b72fdd5760fc7560611bf", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "450", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:00 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-ms-client-request-id": "c8d9632cac8b72fdd5760fc7560611bf", - "x-ms-correlation-request-id": "328c6581-4d71-4310-be30-19888104b97f", - "x-ms-request-id": "27cd1bb3-53d6-480f-9ca0-6b88ebc036c3", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset205771093", - "name": "Dataset205771093", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "4200749f-0000-0800-0000-5fda87960000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset70622159?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-febc4e0f425c5b459f5c5d5678d792a3-9630d7f5f6a85a4e-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "6c32aa246cc66784f02687d9c99428b6", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "448", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:00 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-ms-client-request-id": "6c32aa246cc66784f02687d9c99428b6", - "x-ms-correlation-request-id": "d3da73d8-b721-48d4-b73e-cec89e1d539e", - "x-ms-request-id": "256c1d53-b6c6-4983-85f8-a90f58d0de22", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset70622159", - "name": "Dataset70622159", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "420080dd-0000-0800-0000-5fda88870000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset1006965050?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-592b03aca203b849aeb599d873fae98a-1562de4ff5b61d48-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "67238d4ef18c45defba0b269f9c2242c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "452", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:00 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-ms-client-request-id": "67238d4ef18c45defba0b269f9c2242c", - "x-ms-correlation-request-id": "efaa9718-9db1-4caa-bf22-bce425a08158", - "x-ms-request-id": "1566b009-9610-4c3e-bf85-1cf4b8f539ea", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1006965050", - "name": "Dataset1006965050", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "420057e2-0000-0800-0000-5fda88990000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets?api-version=2019-06-01-preview\u0026%24skipToken=%2BRID%3A~Sl8ZAKxwhACFUgAAAAD8BA%3D%3D%23RT%3A1%23TRC%3A50%23ISV%3A2%23IEO%3A65551%23QCF%3A1", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-ee6ab02ef0d4e144893bf060a47a9705-c8e4366e204c9e40-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "5b2d18add55fbf91df71d7642523a941", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Length": "22831", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:00 GMT", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "5b2d18add55fbf91df71d7642523a941", - "x-ms-request-id": "02102f30-e8ff-41aa-a5c6-9e22d038f066" - }, - "ResponseBody": { - "value": [ - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1013834792", - "name": "Dataset1013834792", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "79003b83-0000-0800-0000-5fdbaf310000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1027623633", - "name": "Dataset1027623633", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "7900ab89-0000-0800-0000-5fdbaf420000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset261694513", - "name": "Dataset261694513", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "790017e4-0000-0800-0000-5fdbb0410000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset865436919", - "name": "Dataset865436919", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "79002deb-0000-0800-0000-5fdbb0550000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1444929577", - "name": "Dataset1444929577", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "7a00354a-0000-0800-0000-5fdbb15c0000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset110300100", - "name": "Dataset110300100", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "7a00c351-0000-0800-0000-5fdbb1700000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1501278946", - "name": "Dataset1501278946", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "1200098b-0000-0800-0000-5fdcc7670000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1295636335", - "name": "Dataset1295636335", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "1200b78d-0000-0800-0000-5fdcc77d0000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset809383969", - "name": "Dataset809383969", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "1200afc5-0000-0800-0000-5fdcc9520000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset115263683", - "name": "Dataset115263683", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "1200fbc7-0000-0800-0000-5fdcc9680000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1979481993", - "name": "Dataset1979481993", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "1200f9f6-0000-0800-0000-5fdccaea0000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset767018092", - "name": "Dataset767018092", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "120017f9-0000-0800-0000-5fdccb010000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1987569395", - "name": "Dataset1987569395", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "140054f3-0000-0800-0000-5fdcdcd90000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1467123484", - "name": "Dataset1467123484", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "140053f6-0000-0800-0000-5fdcdcf20000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1631776164", - "name": "Dataset1631776164", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "15007013-0000-0800-0000-5fdcddf10000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset178752379", - "name": "Dataset178752379", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "1500b815-0000-0800-0000-5fdcde060000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1267181372", - "name": "Dataset1267181372", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "15000334-0000-0800-0000-5fdcdf0e0000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset19672644", - "name": "Dataset19672644", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "15009d36-0000-0800-0000-5fdcdf260000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1422914988", - "name": "Dataset1422914988", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "1500a5e7-0000-0800-0000-5fdce54d0000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset204200777", - "name": "Dataset204200777", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "1500ede9-0000-0800-0000-5fdce5620000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset833673190", - "name": "Dataset833673190", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "1600b809-0000-0800-0000-5fdce67e0000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1195474683", - "name": "Dataset1195474683", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "1600420c-0000-0800-0000-5fdce6940000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset2009508484", - "name": "Dataset2009508484", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "16002d32-0000-0800-0000-5fdce7df0000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1397582513", - "name": "Dataset1397582513", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "16009e34-0000-0800-0000-5fdce7f40000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset290809178", - "name": "Dataset290809178", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "930011fc-0000-0800-0000-5fe0cdf00000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1971695453", - "name": "Dataset1971695453", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "94004f0c-0000-0800-0000-5fe0ce060000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1254317957", - "name": "Dataset1254317957", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "9500b50a-0000-0800-0000-5fe0cfd30000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset2077842606", - "name": "Dataset2077842606", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "95004b16-0000-0800-0000-5fe0cfe90000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1574848707", - "name": "Dataset1574848707", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "9500bde8-0000-0800-0000-5fe0d15b0000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset477357622", - "name": "Dataset477357622", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "9500eff2-0000-0800-0000-5fe0d16c0000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset611494391", - "name": "Dataset611494391", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "b200f4fa-0000-0800-0000-5fe108880000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset409566386", - "name": "Dataset409566386", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "b3000101-0000-0800-0000-5fe108990000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset250306577", - "name": "Dataset250306577", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "b30071c0-0000-0800-0000-5fe10a7c0000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1088100696", - "name": "Dataset1088100696", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "b300f9c8-0000-0800-0000-5fe10a930000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset304476999", - "name": "Dataset304476999", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "b400a76e-0000-0800-0000-5fe10c290000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset742906215", - "name": "Dataset742906215", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "b4006578-0000-0800-0000-5fe10c410000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1229193366", - "name": "Dataset1229193366", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "b70025c3-0000-0800-0000-5fe1141d0000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset809552041", - "name": "Dataset809552041", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "b70013d1-0000-0800-0000-5fe1143e0000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset126732669", - "name": "Dataset126732669", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "b80049a5-0000-0800-0000-5fe1166f0000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset2009218825", - "name": "Dataset2009218825", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "b8006fad-0000-0800-0000-5fe116820000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1035838221", - "name": "Dataset1035838221", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "b9006b48-0000-0800-0000-5fe1182a0000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1513329315", - "name": "Dataset1513329315", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "b9006e4f-0000-0800-0000-5fe1183e0000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1610066326", - "name": "Dataset1610066326", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "00009deb-0000-0800-0000-5fe259200000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1263275506", - "name": "Dataset1263275506", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "0000dceb-0000-0800-0000-5fe259370000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset831101464", - "name": "Dataset831101464", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "000071f2-0000-0800-0000-5fe25b470000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset975710103", - "name": "Dataset975710103", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "0000c2f2-0000-0800-0000-5fe25b600000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1532745294", - "name": "Dataset1532745294", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "00009af8-0000-0800-0000-5fe25d0f0000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset642859093", - "name": "Dataset642859093", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "0000cbf8-0000-0800-0000-5fe25d290000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset610648447", - "name": "Dataset610648447", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "03008476-0000-0800-0000-5fe3896f0000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1768122808", - "name": "Dataset1768122808", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "0300c876-0000-0800-0000-5fe389890000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - } - ], - "nextLink": "https://workspacechhamosynapse.dev.azuresynapse.net:443/datasets?api-version=2019-06-01-preview\u0026%24skipToken=%2BRID%3A%7ESl8ZAKxwhAAEXAAAAAD8BA%3D%3D%23RT%3A2%23TRC%3A100%23ISV%3A2%23IEO%3A65551%23QCF%3A1" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset1013834792?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-58f6e602414af3479bb2cfc5b967852c-82fac5510bcc394c-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "c879594eaae33233cbed7126b91a6e2e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "452", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:00 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-ms-client-request-id": "c879594eaae33233cbed7126b91a6e2e", - "x-ms-correlation-request-id": "2427dc1a-25e1-45e7-9a4a-e497497fa119", - "x-ms-request-id": "bc228dbc-b03c-44ee-9126-8ee6cd16fc53", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1013834792", - "name": "Dataset1013834792", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "79003b83-0000-0800-0000-5fdbaf310000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset1027623633?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-7c6efb6d98efd142be18ff62161740a1-2413660d89ac0e41-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "b12c5a02cc677856fc63881b1a7a1fd7", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "452", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:00 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-ms-client-request-id": "b12c5a02cc677856fc63881b1a7a1fd7", - "x-ms-correlation-request-id": "5a3b8eea-0d3a-4b0c-bbee-233c1df499d3", - "x-ms-request-id": "14b21dd9-2b5e-45b3-a8b1-f8d4ac34e594", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1027623633", - "name": "Dataset1027623633", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "7900ab89-0000-0800-0000-5fdbaf420000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset261694513?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-c31fd38037b05d4797c61b5c76c789c9-e5a12a6f2b27f644-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "a01b71f75c480349e5fa8f72646b06c4", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "450", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:00 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-ms-client-request-id": "a01b71f75c480349e5fa8f72646b06c4", - "x-ms-correlation-request-id": "ef20bb49-9dd5-4b5a-a6a2-c33aeec32496", - "x-ms-request-id": "4ece8d54-de8f-439b-8e5d-00354219cad8", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset261694513", - "name": "Dataset261694513", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "790017e4-0000-0800-0000-5fdbb0410000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset865436919?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-5eecf944cb3b53469be2e70deb8ebc4b-b7b5e64bba91cf4b-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "cb62a803f7f781d90201cc7f22171851", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "450", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:01 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-ms-client-request-id": "cb62a803f7f781d90201cc7f22171851", - "x-ms-correlation-request-id": "85fcf036-9385-4d07-a8ab-485ed3c91092", - "x-ms-request-id": "05158515-873e-4870-a4d2-92d610694dae", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset865436919", - "name": "Dataset865436919", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "79002deb-0000-0800-0000-5fdbb0550000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset1444929577?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-ca7fa0a76c32ff45aba96414b431b7d9-cbcb266891420e49-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "472f9acdcdffa6e61128cc6c3de31490", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "452", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:01 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-ms-client-request-id": "472f9acdcdffa6e61128cc6c3de31490", - "x-ms-correlation-request-id": "3bb31adb-9b36-41c3-9fc4-fe3801ae893d", - "x-ms-request-id": "eceb8ff6-effc-4860-b650-b21820d53fd5", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1444929577", - "name": "Dataset1444929577", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "7a00354a-0000-0800-0000-5fdbb15c0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset110300100?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-76c6e77211fdcc41a59f63294f98d3bb-cb551472faf1f442-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "7118c35d5417ffdf979a9d478fc9e1cd", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "450", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:01 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-ms-client-request-id": "7118c35d5417ffdf979a9d478fc9e1cd", - "x-ms-correlation-request-id": "0c007d91-9845-43ed-95dd-f84f5f2cca39", - "x-ms-request-id": "aa907493-4f42-4652-92ff-22c8cecbf495", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset110300100", - "name": "Dataset110300100", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "7a00c351-0000-0800-0000-5fdbb1700000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset1501278946?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-e4a2d52a9cd0d74c8899336d74220005-9dc17173f1989d48-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "caa43ee2be3c35c5c2bcbace2b6d441e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "452", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:01 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-ms-client-request-id": "caa43ee2be3c35c5c2bcbace2b6d441e", - "x-ms-correlation-request-id": "d6ce91e3-a0af-4cd0-b6e8-97749371e36e", - "x-ms-request-id": "a99c7870-8857-4b75-bcc2-de7a3ddb3ac4", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1501278946", - "name": "Dataset1501278946", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "1200098b-0000-0800-0000-5fdcc7670000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset1295636335?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-35b402d94131d646a9c51ac0eb72df5a-50cfe932b8f4aa41-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "5e213beca7fe7939ba2faf64309f1647", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "452", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:01 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-ms-client-request-id": "5e213beca7fe7939ba2faf64309f1647", - "x-ms-correlation-request-id": "57097550-d440-4303-863f-d243a69c51bb", - "x-ms-request-id": "d902d414-4813-42f3-a629-334b69ad7247", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1295636335", - "name": "Dataset1295636335", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "1200b78d-0000-0800-0000-5fdcc77d0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset809383969?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-d1775f1a3ca6a54db01bcbb35d180097-b6aa9644d21c9f4c-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "fe8afe474a3e9f54fde3af5b9910d32a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "450", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:01 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-ms-client-request-id": "fe8afe474a3e9f54fde3af5b9910d32a", - "x-ms-correlation-request-id": "f83ef1cb-2731-4723-97d1-075956032776", - "x-ms-request-id": "e6ee7221-0a42-4ef6-aacb-ff45cd54b6e8", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset809383969", - "name": "Dataset809383969", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "1200afc5-0000-0800-0000-5fdcc9520000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset115263683?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-37603264049d3043a1adae40be1bcfd5-d01d552b830fa342-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "545a7e5582a73bcf052b0f0c0e600422", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "450", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:01 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-ms-client-request-id": "545a7e5582a73bcf052b0f0c0e600422", - "x-ms-correlation-request-id": "7fed9adb-ca0f-4e91-af79-4190ee5d35cf", - "x-ms-request-id": "6829ff54-9643-4e95-90dd-acb57b343365", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset115263683", - "name": "Dataset115263683", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "1200fbc7-0000-0800-0000-5fdcc9680000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset1979481993?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-9f473b8e4c43d740b06fde19d26c5d93-8ff08d0a5875484f-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "2d8672a645e2a2e0e782601af7dedfa9", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "452", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:02 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-ms-client-request-id": "2d8672a645e2a2e0e782601af7dedfa9", - "x-ms-correlation-request-id": "fc4a2755-af8d-4b5d-b37b-be499689c466", - "x-ms-request-id": "6b97a926-3f9a-4b40-bf51-c1a1c98908e1", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1979481993", - "name": "Dataset1979481993", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "1200f9f6-0000-0800-0000-5fdccaea0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset767018092?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-48c9660fe640224289f0c28096abd3f8-eaae03b6590a1847-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "b10f855cc145c59f2e4ff9133b47919d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "450", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:02 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-ms-client-request-id": "b10f855cc145c59f2e4ff9133b47919d", - "x-ms-correlation-request-id": "939c9518-7bcd-4316-9816-8ecdeb5914fa", - "x-ms-request-id": "0bcc23fa-1bc1-47b0-ae17-7266cb91a685", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset767018092", - "name": "Dataset767018092", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "120017f9-0000-0800-0000-5fdccb010000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset1987569395?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-7d53c3bda8f87147be09cef10e6d795e-00e6571a6c598242-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "27b58cdfa58910489eb86c2521b44327", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "452", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:02 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-ms-client-request-id": "27b58cdfa58910489eb86c2521b44327", - "x-ms-correlation-request-id": "1c8e86af-a53f-4eb5-8353-c89b71d685b4", - "x-ms-request-id": "383c6377-884d-4124-a6f4-52fa50f760e7", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1987569395", - "name": "Dataset1987569395", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "140054f3-0000-0800-0000-5fdcdcd90000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset1467123484?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-68df1f727653a24189422368bf8eadd6-0f405c4918bbd64c-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "89b0654b5251e4ddd3c1fe934ccc66a0", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "452", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:02 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-ms-client-request-id": "89b0654b5251e4ddd3c1fe934ccc66a0", - "x-ms-correlation-request-id": "ee9111b5-86b3-4090-a858-980364d0864f", - "x-ms-request-id": "6fe5471a-a136-42c4-9b3d-db752a62e9c0", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1467123484", - "name": "Dataset1467123484", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "140053f6-0000-0800-0000-5fdcdcf20000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset1631776164?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-999586c46981c4458fe9a68844d9e2b4-b156ca19e7bba041-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "6b3bc3f1b828b6203cfe138c557aa47a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "452", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:02 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-ms-client-request-id": "6b3bc3f1b828b6203cfe138c557aa47a", - "x-ms-correlation-request-id": "1e30920a-a4d4-4304-918e-ee82af5ef95d", - "x-ms-request-id": "fdab3893-54df-4717-880f-609af5e37b13", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1631776164", - "name": "Dataset1631776164", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "15007013-0000-0800-0000-5fdcddf10000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset178752379?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-cd4c57a2322a2b4b848de28f7464e324-8e793e21c1408747-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "d5c7d20c07978c4baed053c8a7b5c3d1", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "450", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:02 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-ms-client-request-id": "d5c7d20c07978c4baed053c8a7b5c3d1", - "x-ms-correlation-request-id": "b81c0a0b-be3c-487b-8f20-3a3f57de9d6c", - "x-ms-request-id": "472a8388-f095-4400-850b-cf2d5c42661d", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset178752379", - "name": "Dataset178752379", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "1500b815-0000-0800-0000-5fdcde060000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset1267181372?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-cea52184874a004e9283b9b262084456-8ad438b58c9ace43-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "5d33cc51d77893fe45f94c523f508f59", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "452", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:02 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-ms-client-request-id": "5d33cc51d77893fe45f94c523f508f59", - "x-ms-correlation-request-id": "f8dd19e1-c04f-41b1-a704-2ab3323784a4", - "x-ms-request-id": "bee7ef62-cff2-4459-9a7d-303960c61887", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1267181372", - "name": "Dataset1267181372", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "15000334-0000-0800-0000-5fdcdf0e0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset19672644?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-e6c5c36a2a9f274e9818861453aa1e7f-07d089b68ca0014a-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "7a86841c9105e90977afbc5864570f87", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "448", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:02 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-ms-client-request-id": "7a86841c9105e90977afbc5864570f87", - "x-ms-correlation-request-id": "21cf9cec-a365-4434-aec0-1c19a1610996", - "x-ms-request-id": "83175a0d-8b91-403f-a6c3-e0ca38a693a1", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset19672644", - "name": "Dataset19672644", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "15009d36-0000-0800-0000-5fdcdf260000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset1422914988?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-39df61d2d588d54e94e6ee207e1934c8-dfbcc13c57f81c41-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "893b423b46463402d334909dbbf84d5d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "452", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:03 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-ms-client-request-id": "893b423b46463402d334909dbbf84d5d", - "x-ms-correlation-request-id": "29fd8eaa-4f82-47fa-8b57-a9574dc2f832", - "x-ms-request-id": "10911da8-8485-47e2-a655-e33f11c433f1", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1422914988", - "name": "Dataset1422914988", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "1500a5e7-0000-0800-0000-5fdce54d0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset204200777?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-c99f4233b8df3a418f974e9abc9e18d2-dc74e4eaeeed6546-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "22abfa41492ebfccc34ae5c81aa52eed", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "450", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:03 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-ms-client-request-id": "22abfa41492ebfccc34ae5c81aa52eed", - "x-ms-correlation-request-id": "f57e16fa-3caa-42e9-84f9-1edfa5b7ab2b", - "x-ms-request-id": "f4ff8df2-8fd0-4144-a8ae-4fe7468f2a55", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset204200777", - "name": "Dataset204200777", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "1500ede9-0000-0800-0000-5fdce5620000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset833673190?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-1e3128aeefea734880e06e6b10f4cef2-498f9dee0e035842-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "fc17c4ea0615d6128252a6d1006b2e7e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "450", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:03 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-ms-client-request-id": "fc17c4ea0615d6128252a6d1006b2e7e", - "x-ms-correlation-request-id": "f8915326-1ed5-4564-80c9-233bd0176e91", - "x-ms-request-id": "4627093c-27d0-4a34-81c5-9ad776beeede", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset833673190", - "name": "Dataset833673190", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "1600b809-0000-0800-0000-5fdce67e0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset1195474683?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-a68f401422f1164a9c50ece247e6f548-1e6e5c9c5dad064d-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "69175f62ecabf259767bc5fc6039192e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "452", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:03 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-ms-client-request-id": "69175f62ecabf259767bc5fc6039192e", - "x-ms-correlation-request-id": "718af506-a4ed-4387-909e-c76ed84187c2", - "x-ms-request-id": "22f01710-7f2f-4c08-bef0-9f49cfa4b213", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1195474683", - "name": "Dataset1195474683", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "1600420c-0000-0800-0000-5fdce6940000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset2009508484?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-7c50862558f81a4ea9575456e10d0f42-849aa73a23c46249-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "f6b3a20550e13b48e8d5a0dba2fabf57", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "452", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:03 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-ms-client-request-id": "f6b3a20550e13b48e8d5a0dba2fabf57", - "x-ms-correlation-request-id": "0d375fbe-048f-4c74-af0d-fd1f1914dedc", - "x-ms-request-id": "35e98f22-08b7-4fae-89a6-55781cb3a990", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset2009508484", - "name": "Dataset2009508484", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "16002d32-0000-0800-0000-5fdce7df0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset1397582513?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-7d32c406e5945c4a9b93e55928f8e5f5-c991a05b8aecec49-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "bb66661cc48efd416b24869940167649", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "452", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:03 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-ms-client-request-id": "bb66661cc48efd416b24869940167649", - "x-ms-correlation-request-id": "a381d0a6-87cb-4abd-8f69-905a89223d90", - "x-ms-request-id": "752cbabf-b59d-4f04-83e5-c8c59419763a", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1397582513", - "name": "Dataset1397582513", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "16009e34-0000-0800-0000-5fdce7f40000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset290809178?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-d16f0bf6e510254cb50597feb0e265f3-446b8e8e1ac88e4d-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "5dcb783837b8119d16db81d64b7d4f7b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "450", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:03 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-ms-client-request-id": "5dcb783837b8119d16db81d64b7d4f7b", - "x-ms-correlation-request-id": "4950ee0f-9d22-46e3-8310-0a3b6218af7c", - "x-ms-request-id": "805faf01-2e9f-4d9b-9e3d-2fd316a75d05", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset290809178", - "name": "Dataset290809178", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "930011fc-0000-0800-0000-5fe0cdf00000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset1971695453?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-fc6a29ecffa8c54da8f926e52fcd91ba-60036ae007535e42-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "f9df6ebc5ed2409f61b58abcc9aefad1", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "452", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:03 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-ms-client-request-id": "f9df6ebc5ed2409f61b58abcc9aefad1", - "x-ms-correlation-request-id": "db7e8db3-7c6b-4882-b2cf-c979cf63a42e", - "x-ms-request-id": "dc645332-be13-4a89-8582-0abe87f1b26f", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1971695453", - "name": "Dataset1971695453", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "94004f0c-0000-0800-0000-5fe0ce060000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset1254317957?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-9b76d696b882134aa76645aa46bd247c-be8a0569906b9547-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "2aa3575f612fe49fc955a4b2426bb1ee", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "452", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:05 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-ms-client-request-id": "2aa3575f612fe49fc955a4b2426bb1ee", - "x-ms-correlation-request-id": "73da3a77-a3d7-45d5-9fc3-46df7d7bcb36", - "x-ms-request-id": "99ee5ce0-bba5-47cf-a63b-c6dc36673539", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1254317957", - "name": "Dataset1254317957", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "9500b50a-0000-0800-0000-5fe0cfd30000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset2077842606?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-2954c795a5a0574cb91a755935b387b9-718475642e471641-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "d1dc0bd57c36da76d88afc02ace04768", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "452", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:05 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-ms-client-request-id": "d1dc0bd57c36da76d88afc02ace04768", - "x-ms-correlation-request-id": "bba32ba6-efc5-4866-9fbd-48dc2c9481a7", - "x-ms-request-id": "3c8cd09d-97b6-46ce-b973-0e15833a5d2f", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset2077842606", - "name": "Dataset2077842606", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "95004b16-0000-0800-0000-5fe0cfe90000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset1574848707?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-f64a7735eb4e8a47a98706a04a59f123-495fde8c4b6ede48-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "f477afe124da5b4ccffa2f7db9ecfef5", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "452", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:05 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-ms-client-request-id": "f477afe124da5b4ccffa2f7db9ecfef5", - "x-ms-correlation-request-id": "2624c554-0568-4ec2-a15a-53eb077dd2d1", - "x-ms-request-id": "5fa8eb53-99fc-4c2f-a273-36222bfbb6ce", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1574848707", - "name": "Dataset1574848707", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "9500bde8-0000-0800-0000-5fe0d15b0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset477357622?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-dc5b482427ef514986e36cca78d74c9b-2c3600794796a443-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "bee79c0429d1e29be1c851a4649c38e9", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "450", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:05 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-ms-client-request-id": "bee79c0429d1e29be1c851a4649c38e9", - "x-ms-correlation-request-id": "c780fae2-3d4b-404f-8eaa-4b4eff2592d6", - "x-ms-request-id": "1e03744d-daff-4813-b400-72f28760c2c0", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset477357622", - "name": "Dataset477357622", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "9500eff2-0000-0800-0000-5fe0d16c0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset611494391?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-ccda951635bd43458e84d1c6c25da934-a7ef7a40b77bb747-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "92d13c0dbdf3b013bf81023b4cf920ec", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "450", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:05 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-ms-client-request-id": "92d13c0dbdf3b013bf81023b4cf920ec", - "x-ms-correlation-request-id": "82bff4ad-8cb6-4e05-a8b0-1ef6988d1f73", - "x-ms-request-id": "9b963125-608c-425c-ab0a-45cfec8c9fc8", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset611494391", - "name": "Dataset611494391", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "b200f4fa-0000-0800-0000-5fe108880000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset409566386?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-be641174a57a0240a10e2a538b11efd7-b7c989d8f19ee14b-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "0ffe068c89f9b89614941311d3a7f632", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "450", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:05 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-ms-client-request-id": "0ffe068c89f9b89614941311d3a7f632", - "x-ms-correlation-request-id": "7de1eb67-77e1-4d8a-aa07-561bca1d8b39", - "x-ms-request-id": "af509672-af1d-4545-926e-8de67282b5ca", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset409566386", - "name": "Dataset409566386", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "b3000101-0000-0800-0000-5fe108990000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset250306577?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-147426782ad18840826faa3172cae471-8e6343b53be9424c-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "7d6f46c26b1b46018836ff50265f96e7", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "450", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:05 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-ms-client-request-id": "7d6f46c26b1b46018836ff50265f96e7", - "x-ms-correlation-request-id": "9f00a58c-5029-4e0d-9d30-0e12b16146c7", - "x-ms-request-id": "ce13f734-6fe6-4731-9674-72e12bf9e13b", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset250306577", - "name": "Dataset250306577", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "b30071c0-0000-0800-0000-5fe10a7c0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset1088100696?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-0a27c9f51d57fe4e8ede0eca866ac646-9925547c1f397247-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "5d1765a8289d83efa6197e5faa02dd17", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "452", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:05 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-ms-client-request-id": "5d1765a8289d83efa6197e5faa02dd17", - "x-ms-correlation-request-id": "a1a7096b-1a3c-4e8e-8481-875cc0c22978", - "x-ms-request-id": "54be1b70-90ab-4a45-8c2e-8a62c6ffb063", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1088100696", - "name": "Dataset1088100696", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "b300f9c8-0000-0800-0000-5fe10a930000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset304476999?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-023720586195ff4dae21129cbc84d36f-1da4682802f2374d-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "0579cf8ba28921d104b886c2894591b5", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "450", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:06 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-ms-client-request-id": "0579cf8ba28921d104b886c2894591b5", - "x-ms-correlation-request-id": "d92b4983-fff2-4fb5-a8b4-90812e82318c", - "x-ms-request-id": "dbb9052f-b8b8-4382-acb9-9462a8265da6", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset304476999", - "name": "Dataset304476999", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "b400a76e-0000-0800-0000-5fe10c290000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset742906215?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-f99feedc335ba44ab408a8d587d80908-1b39e997e7c3bf41-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "6d682bfe988f999456ecd701eca29b86", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "450", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:06 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-ms-client-request-id": "6d682bfe988f999456ecd701eca29b86", - "x-ms-correlation-request-id": "75d2cf48-7cdc-462c-9eba-5c662e11c3eb", - "x-ms-request-id": "60d9f655-45f3-44de-88ec-a2e6991fcbf8", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset742906215", - "name": "Dataset742906215", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "b4006578-0000-0800-0000-5fe10c410000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset1229193366?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-a7f0255fcbe4654eb9def3bcf18f0434-a33f75bde264944b-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "57c4e85990e6055d94f658e5a12df960", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "452", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:06 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-ms-client-request-id": "57c4e85990e6055d94f658e5a12df960", - "x-ms-correlation-request-id": "32848ad3-6fed-4831-8747-6233028224e1", - "x-ms-request-id": "d446eb2d-4614-448a-8c74-ea94a7bb419a", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1229193366", - "name": "Dataset1229193366", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "b70025c3-0000-0800-0000-5fe1141d0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset809552041?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-07924e1c0ff9f446bab7d234c977fd76-785cbebfb7a2024c-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "7e61c9886f99f2873adfae9dcbcf3462", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "450", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:06 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-ms-client-request-id": "7e61c9886f99f2873adfae9dcbcf3462", - "x-ms-correlation-request-id": "0fa084e6-b901-4874-8e70-594dbd3d3f38", - "x-ms-request-id": "c4e4226f-cd01-45ed-a8d5-9bc9d7652239", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset809552041", - "name": "Dataset809552041", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "b70013d1-0000-0800-0000-5fe1143e0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset126732669?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-53858e943631d94f9e88fc6e1557b4ba-b1e057076f312c48-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "a168001c39806dcfce63d9993faff729", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "450", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:06 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-ms-client-request-id": "a168001c39806dcfce63d9993faff729", - "x-ms-correlation-request-id": "cd831085-af73-40da-a055-5845fc5db6e9", - "x-ms-request-id": "ab5bec9c-c55b-4ee4-a775-03857871edcb", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset126732669", - "name": "Dataset126732669", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "b80049a5-0000-0800-0000-5fe1166f0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset2009218825?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-2487e0f2f74aa24db01b39324776e133-5673b12fb9644c42-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "237976f21c41eaec60d21c06e1bf39c4", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "452", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:06 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-ms-client-request-id": "237976f21c41eaec60d21c06e1bf39c4", - "x-ms-correlation-request-id": "c0f1b1e2-479c-48f3-987b-efc8c42d01f8", - "x-ms-request-id": "b518b750-22d6-404a-b1c8-29be57dae635", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset2009218825", - "name": "Dataset2009218825", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "b8006fad-0000-0800-0000-5fe116820000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset1035838221?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-2cc92d1470a4c9488b71e6b1392800a5-993a2c5e702abe4a-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "a1c9f6c257c44edff9f3b03696eeb38b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "452", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:06 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-ms-client-request-id": "a1c9f6c257c44edff9f3b03696eeb38b", - "x-ms-correlation-request-id": "d2308d98-793a-42a5-b519-91a894cb6261", - "x-ms-request-id": "c6b17eb3-a386-4fc5-a686-146cd1d218fc", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1035838221", - "name": "Dataset1035838221", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "b9006b48-0000-0800-0000-5fe1182a0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset1513329315?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-98f3a343ac2a834abc7a72d9fe457d75-d5ec04141ea15248-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "55ab85e71056ff20147e41ae1dc88c0e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "452", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:06 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-ms-client-request-id": "55ab85e71056ff20147e41ae1dc88c0e", - "x-ms-correlation-request-id": "739d0d13-9de1-42f7-ab4f-7c523416b09c", - "x-ms-request-id": "5b32e745-e2f8-4962-9dcd-d673d932343e", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1513329315", - "name": "Dataset1513329315", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "b9006e4f-0000-0800-0000-5fe1183e0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset1610066326?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-88d33930b70f3844ba43f3177aa34b9c-9ef007a31fa87644-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "48d7142956e59a64972a2a4e6bb55472", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "452", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:07 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-ms-client-request-id": "48d7142956e59a64972a2a4e6bb55472", - "x-ms-correlation-request-id": "4ba77d84-5e8e-48c1-aa66-d0e7191f8a27", - "x-ms-request-id": "9dacaf41-7bec-48d6-8597-fc81abc87aed", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1610066326", - "name": "Dataset1610066326", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "00009deb-0000-0800-0000-5fe259200000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset1263275506?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-2bd7d6d8d8e95d4b946e017cf9e5e1fe-0710cfe22a4bdb42-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "5b1e911fe414b16ed5ca8c4516303131", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "452", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:07 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-ms-client-request-id": "5b1e911fe414b16ed5ca8c4516303131", - "x-ms-correlation-request-id": "38c9becd-c931-4ebf-b1d6-a77de201a1bd", - "x-ms-request-id": "8057796a-955c-418b-9d27-ebb0cc9b24c5", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1263275506", - "name": "Dataset1263275506", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "0000dceb-0000-0800-0000-5fe259370000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset831101464?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-96c85a67b85d6f44b06b3d341d1cf759-61456f10bc23974a-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "810da2666a1691a62011bd2be6d2935e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "450", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:07 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-ms-client-request-id": "810da2666a1691a62011bd2be6d2935e", - "x-ms-correlation-request-id": "c111351d-e748-40b3-89f0-7c5a74c39285", - "x-ms-request-id": "9f362c59-6e93-44b9-af76-ca25728028fe", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset831101464", - "name": "Dataset831101464", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "000071f2-0000-0800-0000-5fe25b470000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset975710103?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-9c24ae9ab978114398a23a7f02a82672-d9afede32cd3734a-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "8b8fce2a30aa44f9a625731ac91e8366", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "450", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:07 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-ms-client-request-id": "8b8fce2a30aa44f9a625731ac91e8366", - "x-ms-correlation-request-id": "957816f9-46a1-4f89-8505-0462214939dc", - "x-ms-request-id": "24ee241c-cc10-4086-9755-42e64d5cda81", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset975710103", - "name": "Dataset975710103", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "0000c2f2-0000-0800-0000-5fe25b600000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset1532745294?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-86ab1fa2999f914c954e2f96f4c42214-83074fbdf86be946-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "c9e7f8f9d2a8b55beb8d3b032642cb03", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "452", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:07 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-ms-client-request-id": "c9e7f8f9d2a8b55beb8d3b032642cb03", - "x-ms-correlation-request-id": "0d78d077-684b-4e8e-a34d-3de6207b7362", - "x-ms-request-id": "6f792e88-798b-4716-b7ef-7a7515cbbc30", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1532745294", - "name": "Dataset1532745294", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "00009af8-0000-0800-0000-5fe25d0f0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset642859093?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-9d823d3925db9e418976ce06dd68465e-caf5872b4f3d6f4d-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "481b2e37a5a13686a9c8dbf1f68bc701", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "450", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:07 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-ms-client-request-id": "481b2e37a5a13686a9c8dbf1f68bc701", - "x-ms-correlation-request-id": "3c7f28e2-e1f4-41dd-9061-faddbe1e5d47", - "x-ms-request-id": "fbeb0b3d-29b9-45fc-9c1f-bf981d9aed41", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset642859093", - "name": "Dataset642859093", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "0000cbf8-0000-0800-0000-5fe25d290000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset610648447?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-c2011e8a3ea46e42ae09f9c58a5139d7-4504ad19127d9f43-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "ed32578dcaeb57b572daa01df5f61d63", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "450", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:07 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-ms-client-request-id": "ed32578dcaeb57b572daa01df5f61d63", - "x-ms-correlation-request-id": "929275c3-d73d-41fa-a13c-76180d749c77", - "x-ms-request-id": "95ae8ea4-8b67-49ce-af53-57fb232e8b93", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset610648447", - "name": "Dataset610648447", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "03008476-0000-0800-0000-5fe3896f0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset1768122808?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-e8f565443fef424999b86062eb5c4429-cd7e7e17610f7144-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "9be3705a3b0353c572b120dff76abe5f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "452", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:08 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-ms-client-request-id": "9be3705a3b0353c572b120dff76abe5f", - "x-ms-correlation-request-id": "9b2c8429-48dc-43ff-b4f7-5bbecd96ab47", - "x-ms-request-id": "067eeab6-561b-4367-84b5-41e756ecfb86", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1768122808", - "name": "Dataset1768122808", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "0300c876-0000-0800-0000-5fe389890000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets?api-version=2019-06-01-preview\u0026%24skipToken=%2BRID%3A~Sl8ZAKxwhAAEXAAAAAD8BA%3D%3D%23RT%3A2%23TRC%3A100%23ISV%3A2%23IEO%3A65551%23QCF%3A1", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-ce6c91f14d47384590c4ff67a0b6f6b8-03f66ff1b4999144-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "cf7539c5dd106d1778c3d5c6056941b2", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Length": "11765", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:08 GMT", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "cf7539c5dd106d1778c3d5c6056941b2", - "x-ms-request-id": "f4d42847-f196-4486-9f02-c150c055ffef" - }, - "ResponseBody": { - "value": [ - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset452772599", - "name": "Dataset452772599", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "0300397f-0000-0800-0000-5fe38cbf0000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset507565816", - "name": "Dataset507565816", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "0300747f-0000-0800-0000-5fe38cd40000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset878355824", - "name": "Dataset878355824", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "0300538a-0000-0800-0000-5fe3906f0000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1540765703", - "name": "Dataset1540765703", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "03008f8a-0000-0800-0000-5fe390820000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1819106109", - "name": "Dataset1819106109", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "0300d193-0000-0800-0000-5fe3938e0000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1245887281", - "name": "Dataset1245887281", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "03001e94-0000-0800-0000-5fe393ab0000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1311114648", - "name": "Dataset1311114648", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "0300579c-0000-0800-0000-5fe396a80000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1981309649", - "name": "Dataset1981309649", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "0300979c-0000-0800-0000-5fe396c40000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset840729998", - "name": "Dataset840729998", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "030064a5-0000-0800-0000-5fe399bf0000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1716085994", - "name": "Dataset1716085994", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "0300a2a5-0000-0800-0000-5fe399d90000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset105243722", - "name": "Dataset105243722", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "030015b1-0000-0800-0000-5fe39dca0000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset636824184", - "name": "Dataset636824184", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "030069b1-0000-0800-0000-5fe39de50000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1769803455", - "name": "Dataset1769803455", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "0300b9c2-0000-0800-0000-5fe3a36a0000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1986683637", - "name": "Dataset1986683637", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "030013c3-0000-0800-0000-5fe3a3890000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1694914848", - "name": "Dataset1694914848", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "0300d6d0-0000-0800-0000-5fe3a7fd0000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset507166158", - "name": "Dataset507166158", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "03001ed1-0000-0800-0000-5fe3a81a0000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1301674281", - "name": "Dataset1301674281", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "02075845-0000-0800-0000-6000bc780000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset2019721760", - "name": "Dataset2019721760", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "02073a59-0000-0800-0000-6000bc920000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1276306815", - "name": "Dataset1276306815", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "c407b0ab-0000-0800-0000-6001c0970000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1596262510", - "name": "Dataset1596262510", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "c4079ac1-0000-0800-0000-6001c0b10000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset710526834", - "name": "Dataset710526834", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "c807dcc1-0000-0800-0000-6001c60b0000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1066387120", - "name": "Dataset1066387120", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "c80744d6-0000-0800-0000-6001c6270000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset917629639", - "name": "Dataset917629639", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "3000b4bd-0000-0800-0000-6008735b0000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset154359321", - "name": "Dataset154359321", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "300043d6-0000-0800-0000-6008737c0000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset104292326", - "name": "Dataset104292326", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "3300b865-0000-0800-0000-600876fc0000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset152774978", - "name": "Dataset152774978", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "3300b077-0000-0800-0000-600877180000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - } - ] - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset452772599?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-e612f91c252deb41b83996edb1f2239a-0be1e40e9936a64c-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "869777ab2ba852fe92de7b3aa9d66008", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "450", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:08 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-ms-client-request-id": "869777ab2ba852fe92de7b3aa9d66008", - "x-ms-correlation-request-id": "0a9d1b08-51e7-480a-86b5-c656acc07b8d", - "x-ms-request-id": "4be7788c-1046-4973-aa0b-de6197093805", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset452772599", - "name": "Dataset452772599", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "0300397f-0000-0800-0000-5fe38cbf0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset507565816?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-1bb25e2641cdf6489ceed9fe8f4b35c9-9dfbfc027aa2c742-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "bb57401c4e807c535875233f66fe4e08", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "450", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:08 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-ms-client-request-id": "bb57401c4e807c535875233f66fe4e08", - "x-ms-correlation-request-id": "8b45c154-b303-43b9-9e50-b9ba24d3136c", - "x-ms-request-id": "4069fa9d-ee69-4abb-b7b0-d0b93ab962b5", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset507565816", - "name": "Dataset507565816", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "0300747f-0000-0800-0000-5fe38cd40000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset878355824?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-c94a0983edc36145b7abd23021138f08-36308e9dbecdd94e-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "80346d6f37d39ab73b233c3162ddc3a2", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "450", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:08 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-ms-client-request-id": "80346d6f37d39ab73b233c3162ddc3a2", - "x-ms-correlation-request-id": "7c37b20f-0de2-4a4e-80a6-8de8e5a2ad48", - "x-ms-request-id": "92b65117-0fda-48f4-804c-42b6461dc740", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset878355824", - "name": "Dataset878355824", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "0300538a-0000-0800-0000-5fe3906f0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset1540765703?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-9172e12778cc244a82cfbb196fd23b02-e3ea2317b0c7b54f-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "c4aacc6385115c31231a2e3207beeb93", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "452", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:08 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-ms-client-request-id": "c4aacc6385115c31231a2e3207beeb93", - "x-ms-correlation-request-id": "3ecf19ec-af2a-4fa4-8bf2-647ce7c09f49", - "x-ms-request-id": "b9b30988-957f-45c5-afe3-ae5d0f565195", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1540765703", - "name": "Dataset1540765703", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "03008f8a-0000-0800-0000-5fe390820000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset1819106109?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-cd0cf3ed7153f24ba87f53be0f84035a-874ab10e21dea648-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "3cca728fe0a1e53589bd7f5d1122197b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "452", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:08 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-ms-client-request-id": "3cca728fe0a1e53589bd7f5d1122197b", - "x-ms-correlation-request-id": "6388f975-e9f7-4581-9cc1-a9b6b82fbe10", - "x-ms-request-id": "893a9acf-f0ad-477b-8863-41f10a20beed", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1819106109", - "name": "Dataset1819106109", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "0300d193-0000-0800-0000-5fe3938e0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset1245887281?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-6b28af92b2d59e4e867db37e91d6bb0f-33e93eb0b6b75e45-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "99dc81b28a54eaf73cd85cb80884927d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "452", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:09 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-ms-client-request-id": "99dc81b28a54eaf73cd85cb80884927d", - "x-ms-correlation-request-id": "cda6dea0-d800-4d64-afcf-e84e7db38773", - "x-ms-request-id": "40b250fb-6f8e-45e9-8ed1-041781917fd4", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1245887281", - "name": "Dataset1245887281", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "03001e94-0000-0800-0000-5fe393ab0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset1311114648?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-f69fe63dc60d8f45926d0702bc80e4fd-dbef5759e1626843-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "f0a1a8378712820097c43a5405d44b01", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "452", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:09 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-ms-client-request-id": "f0a1a8378712820097c43a5405d44b01", - "x-ms-correlation-request-id": "ccfbde81-22d4-466a-8214-c6ad80aaf241", - "x-ms-request-id": "d9b3e970-5f1c-480b-a61c-07164036dd5e", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1311114648", - "name": "Dataset1311114648", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "0300579c-0000-0800-0000-5fe396a80000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset1981309649?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-02c9f9e2a8beae498d0a478af2a48b75-785422acdbd98445-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "857fb30052e1043f7be000c8837cdc05", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "452", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:09 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-ms-client-request-id": "857fb30052e1043f7be000c8837cdc05", - "x-ms-correlation-request-id": "08950c73-4770-4291-8b23-6937986deb9d", - "x-ms-request-id": "e1fd9fbf-6838-4da0-b410-9458c0ef30c2", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1981309649", - "name": "Dataset1981309649", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "0300979c-0000-0800-0000-5fe396c40000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset840729998?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-57b4317c132b8548b7531c9cfa28f29d-d179970baaed8544-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "6825022a29802b688059028f50a2e467", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "450", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:09 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-ms-client-request-id": "6825022a29802b688059028f50a2e467", - "x-ms-correlation-request-id": "1dc93664-02ce-4b04-9f56-776581c4de5b", - "x-ms-request-id": "af617787-af61-4062-b785-429c68479a88", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset840729998", - "name": "Dataset840729998", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "030064a5-0000-0800-0000-5fe399bf0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset1716085994?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-b114f98954f3b942babf39c395841cb4-7826dff750d1b54d-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "55b85b8c0c04e59c699c74328638fe1a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "452", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:09 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-ms-client-request-id": "55b85b8c0c04e59c699c74328638fe1a", - "x-ms-correlation-request-id": "7bcd3212-adb7-4400-a2a8-7bc0512fab92", - "x-ms-request-id": "73711741-8700-4438-9912-496823d81a71", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1716085994", - "name": "Dataset1716085994", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "0300a2a5-0000-0800-0000-5fe399d90000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset105243722?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-1059cd8c7cfe3445bb2964d0947b1d37-5c2d4ad869b0c84e-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "032934e8e2aed6804a5405874fafb4d8", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "450", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:09 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-ms-client-request-id": "032934e8e2aed6804a5405874fafb4d8", - "x-ms-correlation-request-id": "88fb1749-b0f3-4d3d-ad5a-eac4c8d90ee0", - "x-ms-request-id": "887a16c7-b574-4de0-8217-86cf3079b534", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset105243722", - "name": "Dataset105243722", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "030015b1-0000-0800-0000-5fe39dca0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset636824184?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-b9fe9c4562c03c4d96569fda9928efed-f3ff8117ac43a048-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "283c98fc86c41e006640ffe3b536a448", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "450", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:09 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-ms-client-request-id": "283c98fc86c41e006640ffe3b536a448", - "x-ms-correlation-request-id": "2b61d3f9-4684-41bc-b6f8-9846efc9f91a", - "x-ms-request-id": "a3046abb-a6bb-493d-9fc2-b515ae419134", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset636824184", - "name": "Dataset636824184", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "030069b1-0000-0800-0000-5fe39de50000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset1769803455?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-b10930a2b1e7014b84017a710ce77277-1a49db5c24920349-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "1ba7e85be079aab9dae10bb0071496b9", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "452", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:09 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-ms-client-request-id": "1ba7e85be079aab9dae10bb0071496b9", - "x-ms-correlation-request-id": "33cb01e0-0d50-4f8c-b94b-f634c7681524", - "x-ms-request-id": "1ef6ca3a-afaf-4401-8458-7e0bb8a7d756", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1769803455", - "name": "Dataset1769803455", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "0300b9c2-0000-0800-0000-5fe3a36a0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset1986683637?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-342ed68910733c448ccfdea8db69c877-62be2cc3b344444f-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "ee359be8d6fb6255340b9d6ee39d2114", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "452", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:10 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-ms-client-request-id": "ee359be8d6fb6255340b9d6ee39d2114", - "x-ms-correlation-request-id": "8bfaac8f-84ad-47ae-91bd-0046751f573e", - "x-ms-request-id": "c1649ab2-0450-47da-bd82-fd46e1c70a82", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1986683637", - "name": "Dataset1986683637", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "030013c3-0000-0800-0000-5fe3a3890000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset1694914848?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-caeaa369ded7d948a1d4ba99723d98ca-d4954fac06068d4a-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "672cbcaf99081c5fdf924ee37b501751", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "452", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:10 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-ms-client-request-id": "672cbcaf99081c5fdf924ee37b501751", - "x-ms-correlation-request-id": "ceb55e09-077e-4234-9982-e32d0d3aa6a1", - "x-ms-request-id": "d02f62a9-3856-4bbc-a424-b0e7371bbe7f", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1694914848", - "name": "Dataset1694914848", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "0300d6d0-0000-0800-0000-5fe3a7fd0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset507166158?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-ea0005fe71ed9a47b87c85f9ccb38435-95c25401afe07b49-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "19fb45a9b600844c9244e66e424ac63c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "450", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:10 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-ms-client-request-id": "19fb45a9b600844c9244e66e424ac63c", - "x-ms-correlation-request-id": "88725743-c4fa-4178-b5b7-290c42bbf4a6", - "x-ms-request-id": "03d24e69-a41e-4980-a9ee-eedac242fa25", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset507166158", - "name": "Dataset507166158", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "03001ed1-0000-0800-0000-5fe3a81a0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset1301674281?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-dfa0a226f699284786e4fe86b956b8be-751eb78520afac4b-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "4a01f6bf2fe84fb03c190e698772e6e4", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "452", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:10 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-ms-client-request-id": "4a01f6bf2fe84fb03c190e698772e6e4", - "x-ms-correlation-request-id": "93c95474-6f1e-4967-9386-db9b3d85dd6b", - "x-ms-request-id": "faaabb8d-baa0-4023-912b-cb64e95e46ac", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1301674281", - "name": "Dataset1301674281", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" + "linkedServiceName": { + "referenceName": "testsynapseworkspace-WorkspaceDefaultStorage", + "type": "LinkedServiceReference" + }, + "annotations": [], + "type": "DelimitedText", + "typeProperties": { + "location": { + "type": "AzureBlobFSLocation" + }, + "columnDelimiter": ",", + "escapeChar": "\\", + "quoteChar": "\u0022" + }, + "schema": [] + } + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/datasets/Dataset2095422558", + "name": "Dataset2095422558", + "type": "Microsoft.Synapse/workspaces/datasets", + "etag": "00000c00-0000-0100-0000-600161bd0000", + "properties": { + "type1": "Dataset", + "linkedServiceName": { + "type": "LinkedServiceReference" + } + } + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/datasets/Dataset2095422559", + "name": "Dataset2095422559", + "type": "Microsoft.Synapse/workspaces/datasets", + "etag": "00005000-0000-0100-0000-6001625d0000", + "properties": { + "linkedServiceName": { + "type": "LinkedServiceReference" + } + } + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/datasets/Dataset710526834", + "name": "Dataset710526834", + "type": "Microsoft.Synapse/workspaces/datasets", + "etag": "2e00e07f-0000-0100-0000-6155565b0000", + "properties": { + "type": "Dataset", + "linkedServiceName": { + "type": "LinkedServiceReference", + "referenceName": "testsynapseworkspace-WorkspaceDefaultStorage" + } + } } - }, - "etag": "02075845-0000-0800-0000-6000bc780000" + ] } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset2019721760?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/datasets/DelimitedText1?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-ad82114a66e5c8469186a6771fe69162-03505cff2a95684c-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "9ec44cf308a2f8146fa7d4c3b2f1d994", + "traceparent": "00-fed1ca8410e5cb4392bad39270a8ae43-ff116a5c4a9d8947-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "d2a27652d721bf81592e3f3a51bfd3b3", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "452", + "Content-Length": "590", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:10 GMT", + "Date": "Thu, 30 Sep 2021 06:17:10 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "9ec44cf308a2f8146fa7d4c3b2f1d994", - "x-ms-correlation-request-id": "fea4bc84-e01b-47a0-bde3-edf04b15bf9b", - "x-ms-request-id": "26b2f618-849a-474f-966b-692e4e83fc61", + "x-ms-client-request-id": "d2a27652d721bf81592e3f3a51bfd3b3", + "x-ms-correlation-request-id": "bb7f5841-8d32-4621-a548-866164df34ee", + "x-ms-request-id": "63f5fa48-05f7-4db9-8dd7-28f78b4d5c33", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset2019721760", - "name": "Dataset2019721760", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/datasets/DelimitedText1", + "name": "DelimitedText1", "type": "Microsoft.Synapse/workspaces/datasets", "properties": { - "type": "Dataset", "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } + "referenceName": "testsynapseworkspace-WorkspaceDefaultStorage", + "type": "LinkedServiceReference" + }, + "annotations": [], + "type": "DelimitedText", + "typeProperties": { + "location": { + "type": "AzureBlobFSLocation" + }, + "columnDelimiter": ",", + "escapeChar": "\\", + "quoteChar": "\u0022" + }, + "schema": [] }, - "etag": "02073a59-0000-0800-0000-6000bc920000" + "etag": "1b004dbf-0000-0100-0000-5f5838240000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset1276306815?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/datasets/Dataset2095422558?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-be9d56c5379a89438b21f5071e03615f-a77eaed5986a664c-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "842311cbcc4e7a6994acdce6a7e3fc20", + "traceparent": "00-77edb008491117499b9f5e4f7f4e5d15-228586bc2e141640-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "9a47fe73c9099b12f41fb0030efbf4a1", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "452", + "Content-Length": "381", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:10 GMT", + "Date": "Thu, 30 Sep 2021 06:17:10 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "842311cbcc4e7a6994acdce6a7e3fc20", - "x-ms-correlation-request-id": "51247843-dbd5-4e3c-9a3e-ac9b3312c072", - "x-ms-request-id": "79cb3f05-a2e0-4933-bba4-349a90c1d89f", + "x-ms-client-request-id": "9a47fe73c9099b12f41fb0030efbf4a1", + "x-ms-correlation-request-id": "072704af-9b18-466d-8518-d157e81fd638", + "x-ms-request-id": "883fb05e-9d3e-4b1b-8369-cb741b0c82bb", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1276306815", - "name": "Dataset1276306815", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/datasets/Dataset2095422558", + "name": "Dataset2095422558", "type": "Microsoft.Synapse/workspaces/datasets", "properties": { - "type": "Dataset", + "type1": "Dataset", "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" + "type": "LinkedServiceReference" } }, - "etag": "c407b0ab-0000-0800-0000-6001c0970000" + "etag": "00000c00-0000-0100-0000-600161bd0000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset1596262510?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/datasets/Dataset2095422559?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-d7d614dc6a6f9344b2471ec44000a965-f022d1d87f704a4e-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "f67a025d2886b79ae208db405aed9c4b", + "traceparent": "00-dc315e8072490a4fad407e6e2ae8c028-1163d07ed221254b-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "41855815ba183549e6342d11efd96dac", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "452", + "Content-Length": "363", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:10 GMT", + "Date": "Thu, 30 Sep 2021 06:17:10 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "f67a025d2886b79ae208db405aed9c4b", - "x-ms-correlation-request-id": "807372a5-ecf4-4c0e-a7be-e14dc114070c", - "x-ms-request-id": "70055df7-f0c4-4bf6-b53e-47f5949f4948", + "x-ms-client-request-id": "41855815ba183549e6342d11efd96dac", + "x-ms-correlation-request-id": "07637594-4a80-4204-9325-7ec5cc149916", + "x-ms-request-id": "0e70a6a1-dc59-44de-b8d0-15a10a67b20d", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1596262510", - "name": "Dataset1596262510", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/datasets/Dataset2095422559", + "name": "Dataset2095422559", "type": "Microsoft.Synapse/workspaces/datasets", "properties": { - "type": "Dataset", "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" + "type": "LinkedServiceReference" } }, - "etag": "c4079ac1-0000-0800-0000-6001c0b10000" + "etag": "00005000-0000-0100-0000-6001625d0000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset710526834?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/datasets/Dataset710526834?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-03b30434773de845946c195d4a84bfe0-b0968b4b91ecd147-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "769e7a40624e2795e24909f62b2d518c", + "traceparent": "00-8f7905af8499f44c9b6cdc3c26e90fee-e3ce2bd0bc18d343-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "0f8b936be1de89336307de01267db15d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "450", + "Content-Length": "441", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:11 GMT", + "Date": "Thu, 30 Sep 2021 06:17:10 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "769e7a40624e2795e24909f62b2d518c", - "x-ms-correlation-request-id": "38a22dc1-83b3-4c7f-899c-bcfab819501f", - "x-ms-request-id": "e7d5928c-d7e5-47fe-be0d-0c2584556869", + "x-ms-client-request-id": "0f8b936be1de89336307de01267db15d", + "x-ms-correlation-request-id": "8944fbe9-7d5c-4d5f-b39f-28c9e02ccf3c", + "x-ms-request-id": "1c15d246-f425-41d0-9bd7-04c9a1e20501", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset710526834", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/datasets/Dataset710526834", "name": "Dataset710526834", "type": "Microsoft.Synapse/workspaces/datasets", "properties": { "type": "Dataset", "linkedServiceName": { "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "c807dcc1-0000-0800-0000-6001c60b0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset1066387120?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-7baa030bced61c4789098ab84f37836f-a7d550a059512942-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "af65b3aae276a30e776ca246f12820a7", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "452", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:11 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-ms-client-request-id": "af65b3aae276a30e776ca246f12820a7", - "x-ms-correlation-request-id": "03e30c25-f55d-4a37-a062-0d7530bc0896", - "x-ms-request-id": "228b644e-446f-4275-83c3-1641a67a4d43", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1066387120", - "name": "Dataset1066387120", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "c80744d6-0000-0800-0000-6001c6270000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset917629639?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-7e2f9ae35679124e84beff51a3152b2b-dacde3b269380841-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "2da6910f8645fbd26d52133c1ea38cb4", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "450", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:11 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-ms-client-request-id": "2da6910f8645fbd26d52133c1ea38cb4", - "x-ms-correlation-request-id": "897c92c5-57e6-4541-9808-227d0691dceb", - "x-ms-request-id": "8cf7e835-0e43-45d2-8684-be8baff51290", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset917629639", - "name": "Dataset917629639", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "3000b4bd-0000-0800-0000-6008735b0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset154359321?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-c8190293260c804a8428ae89c84f268d-9722fa53763e5e42-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "a6954eb7ed875dd46cfaffe2bf4e36ba", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "450", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:11 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-ms-client-request-id": "a6954eb7ed875dd46cfaffe2bf4e36ba", - "x-ms-correlation-request-id": "ccc09886-f850-41aa-acad-3319783f05fa", - "x-ms-request-id": "f1290b10-3e1e-4dd4-b851-5d46b0a7cf11", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset154359321", - "name": "Dataset154359321", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "300043d6-0000-0800-0000-6008737c0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset104292326?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-e4f7890c22412b4d805e69ce1aca5d32-b649757f7d03a645-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "99e7622923872447e16a4223cfd184d3", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "450", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:11 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-ms-client-request-id": "99e7622923872447e16a4223cfd184d3", - "x-ms-correlation-request-id": "c7c89569-498b-4396-92df-edb61f6bc8fd", - "x-ms-request-id": "74be37e2-63cc-443d-a9e6-2048b2ae8d80", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset104292326", - "name": "Dataset104292326", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "3300b865-0000-0800-0000-600876fc0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset152774978?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-c23082f568f2f0498b5197b5f3bbdd0c-3b9fb256f9f1f04f-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "a28eeddf79922220bc48c04a86ef3b1e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "450", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:11 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-ms-client-request-id": "a28eeddf79922220bc48c04a86ef3b1e", - "x-ms-correlation-request-id": "e581063b-c784-41a8-83e7-accf4a0a10dc", - "x-ms-request-id": "ae2b408c-a96f-4528-a746-ca17145facdd", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset152774978", - "name": "Dataset152774978", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" + "referenceName": "testsynapseworkspace-WorkspaceDefaultStorage" } }, - "etag": "3300b077-0000-0800-0000-600877180000" + "etag": "2e00e07f-0000-0100-0000-6155565b0000" } } ], "Variables": { - "AZURE_SYNAPSE_WORKSPACE_URL": "https://workspacechhamosynapse.dev.azuresynapse.net", + "AZURE_SYNAPSE_WORKSPACE_URL": "https://testsynapseworkspace.dev.azuresynapse.net", "RandomSeed": "2034242481" } } \ No newline at end of file diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DatasetClientLiveTests/TestGetDatasetAsync.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DatasetClientLiveTests/TestGetDatasetAsync.json index 77f904feb8c6..1925bd194e72 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DatasetClientLiveTests/TestGetDatasetAsync.json +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/DatasetClientLiveTests/TestGetDatasetAsync.json @@ -1,7847 +1,324 @@ { "Entries": [ { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/datasets?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-11ec4b3654ec43459bd999beca1d3ee3-a78c1d2e5f915c43-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "traceparent": "00-69fde5ebce10f643a10c28d63e83365b-3a15d5e9eadc5044-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f893fb330dc718655482c2551430d5f3", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Content-Length": "22824", + "Content-Length": "2232", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:24 GMT", + "Date": "Thu, 30 Sep 2021 06:17:20 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "f893fb330dc718655482c2551430d5f3", - "x-ms-request-id": "aa9ce3e8-ee28-4acc-ac17-8feb140167df" + "x-ms-request-id": "e827914a-7848-455b-9c66-e456b9abd681" }, "ResponseBody": { "value": [ { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset255462130", - "name": "Dataset255462130", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/datasets/DelimitedText1", + "name": "DelimitedText1", "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "f5019bfd-0000-0800-0000-5fd257db0000", + "etag": "1b004dbf-0000-0100-0000-5f5838240000", "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset425710911", - "name": "Dataset425710911", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "f50193fe-0000-0800-0000-5fd257e40000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset2029557966", - "name": "Dataset2029557966", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "f6010818-0000-0800-0000-5fd258c70000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset327372201", - "name": "Dataset327372201", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "f6015a19-0000-0800-0000-5fd258d20000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset578246037", - "name": "Dataset578246037", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "f601ab34-0000-0800-0000-5fd259b90000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1558645355", - "name": "Dataset1558645355", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "f601a236-0000-0800-0000-5fd259c60000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1749813746", - "name": "Dataset1749813746", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "f601c2a4-0000-0800-0000-5fd25dc80000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1075743753", - "name": "Dataset1075743753", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "f6016fa6-0000-0800-0000-5fd25dd60000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset328514073", - "name": "Dataset328514073", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "f60128be-0000-0800-0000-5fd25eac0000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset419725496", - "name": "Dataset419725496", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "f60137bf-0000-0800-0000-5fd25eb50000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1281888081", - "name": "Dataset1281888081", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "f60120d7-0000-0800-0000-5fd25f940000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset196080904", - "name": "Dataset196080904", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "f6012fd8-0000-0800-0000-5fd25f9e0000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset193365640", - "name": "Dataset193365640", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "f7012843-0000-0800-0000-5fd263ad0000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1829104859", - "name": "Dataset1829104859", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "f7015a45-0000-0800-0000-5fd263bf0000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset438936885", - "name": "Dataset438936885", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "f701c35f-0000-0800-0000-5fd264b50000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset2007343499", - "name": "Dataset2007343499", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "f701d160-0000-0800-0000-5fd264bd0000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset836314495", - "name": "Dataset836314495", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "f701058f-0000-0800-0000-5fd2666b0000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset856564196", - "name": "Dataset856564196", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "f701ab90-0000-0800-0000-5fd2667a0000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset2095422558", - "name": "Dataset2095422558", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "19029075-0000-0800-0000-5fd3a7d60000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset740002382", - "name": "Dataset740002382", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "1902ad76-0000-0800-0000-5fd3a7e20000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1729474358", - "name": "Dataset1729474358", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "6202568d-0000-0800-0000-5fd797300000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1026181826", - "name": "Dataset1026181826", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "6202f68e-0000-0800-0000-5fd7973b0000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1060370331", - "name": "Dataset1060370331", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "6202fbbc-0000-0800-0000-5fd798a40000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1734962837", - "name": "Dataset1734962837", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "6202e3be-0000-0800-0000-5fd798b30000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1643623177", - "name": "Dataset1643623177", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "6202a1e3-0000-0800-0000-5fd799c60000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset133717966", - "name": "Dataset133717966", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "62027de5-0000-0800-0000-5fd799d30000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset2069156527", - "name": "Dataset2069156527", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "8302e6ed-0000-0800-0000-5fd8d3790000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1361092452", - "name": "Dataset1361092452", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "83027cf0-0000-0800-0000-5fd8d38a0000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1982585264", - "name": "Dataset1982585264", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "84029a28-0000-0800-0000-5fd8d5350000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1584048031", - "name": "Dataset1584048031", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "8402992a-0000-0800-0000-5fd8d5470000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset2077225302", - "name": "Dataset2077225302", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "8402b851-0000-0800-0000-5fd8d6720000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset454764449", - "name": "Dataset454764449", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "8402da52-0000-0800-0000-5fd8d67a0000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset136456529", - "name": "Dataset136456529", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "87028aab-0000-0800-0000-5fd8f1030000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset684448508", - "name": "Dataset684448508", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "87029aad-0000-0800-0000-5fd8f1140000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset679270590", - "name": "Dataset679270590", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "8702a0ca-0000-0800-0000-5fd8f1ff0000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset214370204", - "name": "Dataset214370204", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "8702d5cc-0000-0800-0000-5fd8f2110000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset579166872", - "name": "Dataset579166872", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "87027dee-0000-0800-0000-5fd8f3190000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset2051259056", - "name": "Dataset2051259056", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "8702ddf0-0000-0800-0000-5fd8f32e0000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset622369459", - "name": "Dataset622369459", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "8802675b-0000-0800-0000-5fd8f6900000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset274408814", - "name": "Dataset274408814", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "8802cb5d-0000-0800-0000-5fd8f6a20000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset362233113", - "name": "Dataset362233113", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "8802bb7c-0000-0800-0000-5fd8f7b00000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1322562692", - "name": "Dataset1322562692", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "8802e07e-0000-0800-0000-5fd8f7c20000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1267783872", - "name": "Dataset1267783872", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "8802d3a0-0000-0800-0000-5fd8f8d80000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset54405418", - "name": "Dataset54405418", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "880238a3-0000-0800-0000-5fd8f8ea0000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1047788388", - "name": "Dataset1047788388", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "4200e453-0000-0800-0000-5fda866d0000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1088609233", - "name": "Dataset1088609233", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "42009658-0000-0800-0000-5fda867f0000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1683654226", - "name": "Dataset1683654226", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "4200f59a-0000-0800-0000-5fda87850000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset205771093", - "name": "Dataset205771093", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "4200749f-0000-0800-0000-5fda87960000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset70622159", - "name": "Dataset70622159", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "420080dd-0000-0800-0000-5fda88870000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1006965050", - "name": "Dataset1006965050", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "420057e2-0000-0800-0000-5fda88990000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - } - ], - "nextLink": "https://workspacechhamosynapse.dev.azuresynapse.net:443/datasets?api-version=2019-06-01-preview\u0026%24skipToken=%2BRID%3A%7ESl8ZAKxwhACFUgAAAAD8BA%3D%3D%23RT%3A1%23TRC%3A50%23ISV%3A2%23IEO%3A65551%23QCF%3A1" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset255462130?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-6d6569cb58f5784198d6cbbdeb699a67-aeb3937938595040-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "53df9581ac3104b9dc7b07371bf71393", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "450", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:24 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-ms-client-request-id": "53df9581ac3104b9dc7b07371bf71393", - "x-ms-correlation-request-id": "884f36bf-9a48-43a1-a19b-06d7e9d4aad1", - "x-ms-request-id": "779da1e1-60eb-478b-b573-2059a454e019", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset255462130", - "name": "Dataset255462130", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "f5019bfd-0000-0800-0000-5fd257db0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset425710911?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-3a4ad55d04972941bb9082f2b20995fa-01a29bf5a8c4a548-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "f43e2693f8fb254bfc7966758263b13f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "450", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:24 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-ms-client-request-id": "f43e2693f8fb254bfc7966758263b13f", - "x-ms-correlation-request-id": "9470fb53-2951-4640-b767-db23c695932e", - "x-ms-request-id": "9cd29dab-5939-4182-b7ae-321c242967d8", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset425710911", - "name": "Dataset425710911", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "f50193fe-0000-0800-0000-5fd257e40000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset2029557966?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-77dd810e6975d345abef764c7e19a7ea-18cdf5dbf92ac240-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "5c2d9500a44686a0428f1c4c052dfc5c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "452", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:24 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-ms-client-request-id": "5c2d9500a44686a0428f1c4c052dfc5c", - "x-ms-correlation-request-id": "b3fb0845-5222-429a-a827-320d9d8a7aab", - "x-ms-request-id": "82d49f6c-0814-44c0-bf40-094dea650350", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset2029557966", - "name": "Dataset2029557966", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "f6010818-0000-0800-0000-5fd258c70000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset327372201?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-f91f6f0d366ad844a4a811584128c59e-1d24c168eef84f48-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "eec12f6fe1f189f749ba57b746438279", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "450", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:24 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-ms-client-request-id": "eec12f6fe1f189f749ba57b746438279", - "x-ms-correlation-request-id": "146fc158-e05a-461b-9aef-294d5347541b", - "x-ms-request-id": "53397b8c-206b-43cd-b85d-d85afabf6e19", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset327372201", - "name": "Dataset327372201", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "f6015a19-0000-0800-0000-5fd258d20000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset578246037?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-8f637e92ad78394e8f8bb0ac8fbe9cf9-83acc5c53acb0d41-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "8636c7c9b6caef4c86b8b26cdcff20ce", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "450", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:25 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-ms-client-request-id": "8636c7c9b6caef4c86b8b26cdcff20ce", - "x-ms-correlation-request-id": "fd5851b0-e97e-406c-b8c4-8e1dc6012669", - "x-ms-request-id": "29b9015e-51f1-4a30-9bf2-9a264422a9fb", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset578246037", - "name": "Dataset578246037", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "f601ab34-0000-0800-0000-5fd259b90000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset1558645355?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-4f1c2c0e0636b44ab5e2e9032b8cbf5d-641b1ab4652b6741-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "5206097cc3a21f4e9ea3128c4ce840ff", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "452", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:25 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-ms-client-request-id": "5206097cc3a21f4e9ea3128c4ce840ff", - "x-ms-correlation-request-id": "81e00eb7-1391-48a5-ac5b-c9e9f9d12394", - "x-ms-request-id": "cc21f424-c6ac-4063-a763-2671bd0fc082", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1558645355", - "name": "Dataset1558645355", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "f601a236-0000-0800-0000-5fd259c60000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset1749813746?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-ee5f6bbd6cecdf4a88b03f359ca1632a-d4fad77163483c40-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "3d82a30c76f7b892e2d167392f8aad4a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "452", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:25 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-ms-client-request-id": "3d82a30c76f7b892e2d167392f8aad4a", - "x-ms-correlation-request-id": "dd976c82-a3f1-40c1-95dc-15dd9649848e", - "x-ms-request-id": "f76cf9a2-8112-40b0-8490-e03f894f0f26", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1749813746", - "name": "Dataset1749813746", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "f601c2a4-0000-0800-0000-5fd25dc80000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset1075743753?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-9f8e91d6476ee9479e53289ac9c1dd36-af6d4928f6d84349-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "3d3a88992f3d06d67917e826a4bfa29d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "452", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:25 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-ms-client-request-id": "3d3a88992f3d06d67917e826a4bfa29d", - "x-ms-correlation-request-id": "ce7f2fbf-6278-4c93-9dc4-b7cdca24df3c", - "x-ms-request-id": "5c6a1506-5d81-48b6-a32a-b0b52fa16533", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1075743753", - "name": "Dataset1075743753", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "f6016fa6-0000-0800-0000-5fd25dd60000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset328514073?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-50dbd4f95a5b0c48a507d47ef1a175ed-dd663cbac7fa9441-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "3960b278e27c06d7774d70d05b15f013", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "450", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:25 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-ms-client-request-id": "3960b278e27c06d7774d70d05b15f013", - "x-ms-correlation-request-id": "bbd86aa6-e605-4ccd-8efe-b1aefb64467b", - "x-ms-request-id": "755199d7-b0fa-44f2-a96c-02c84f054f91", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset328514073", - "name": "Dataset328514073", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "f60128be-0000-0800-0000-5fd25eac0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset419725496?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-f097e778c53ce04aa0a5effd3da523ac-1889974355a93046-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "c4f2c8f602addcc1cc7cc4e08d6b1423", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "450", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:25 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-ms-client-request-id": "c4f2c8f602addcc1cc7cc4e08d6b1423", - "x-ms-correlation-request-id": "49d95a34-d5fd-49b0-abbf-26e50b834697", - "x-ms-request-id": "cd1faccb-c1f5-495d-872d-32a767ad1b4c", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset419725496", - "name": "Dataset419725496", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "f60137bf-0000-0800-0000-5fd25eb50000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset1281888081?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-c11e6cf53a67f0489181f8dfd7afb034-8b76281e5c18c647-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "7cc1c92f7429b7cdb133c6efbf06aa64", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "452", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:25 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-ms-client-request-id": "7cc1c92f7429b7cdb133c6efbf06aa64", - "x-ms-correlation-request-id": "e3f3dd5e-ae1f-46b5-b491-4921daf7f469", - "x-ms-request-id": "d15ade18-a9e5-4dc5-a4df-b63e21ebbf16", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1281888081", - "name": "Dataset1281888081", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "f60120d7-0000-0800-0000-5fd25f940000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset196080904?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-ed40fe4f0dc010439999dbccd6665726-cd2db3a5a5b8064f-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "db30d426decc75f0f1836c001ef7780b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "450", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:25 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-ms-client-request-id": "db30d426decc75f0f1836c001ef7780b", - "x-ms-correlation-request-id": "92a1b49a-dca3-437b-8d57-3d63c0b020f3", - "x-ms-request-id": "b5a49315-b1cc-4fa0-be04-ce42f759f268", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset196080904", - "name": "Dataset196080904", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "f6012fd8-0000-0800-0000-5fd25f9e0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset193365640?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-b1eb88125cb0a540868ac001a33dcf11-68019f8e9af0de4c-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "91a14d39745481eafa3b12793cd21dc6", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "450", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:26 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-ms-client-request-id": "91a14d39745481eafa3b12793cd21dc6", - "x-ms-correlation-request-id": "ad3806f0-9420-4f23-9406-895cd385e060", - "x-ms-request-id": "71860119-70bf-42e2-be2d-a0d266c5b8ac", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset193365640", - "name": "Dataset193365640", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "f7012843-0000-0800-0000-5fd263ad0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset1829104859?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-53787b24779ab24bb951462d61709946-66523e9b25128049-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "b9b95fd1383b5056d94b8aa607cd99ba", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "452", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:26 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-ms-client-request-id": "b9b95fd1383b5056d94b8aa607cd99ba", - "x-ms-correlation-request-id": "dfd38d3c-85ed-4ed5-8024-996f65d77f41", - "x-ms-request-id": "3295b896-1ca7-4066-9636-9b7094c7f36f", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1829104859", - "name": "Dataset1829104859", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "f7015a45-0000-0800-0000-5fd263bf0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset438936885?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-3411b668c72a324cafaac128bfcd7f09-63eb0f7c623d504a-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "72b5bbbb1864b210eaaee191cb76381f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "450", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:26 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-ms-client-request-id": "72b5bbbb1864b210eaaee191cb76381f", - "x-ms-correlation-request-id": "3ea50b98-c9c9-4d58-b7ff-48369375a126", - "x-ms-request-id": "dde16d7b-218c-4554-8bd0-17ef4b5eba1d", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset438936885", - "name": "Dataset438936885", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "f701c35f-0000-0800-0000-5fd264b50000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset2007343499?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-74e8ff6ce47888429b34bdf841623d60-9527420766f62d43-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "be2ea665bf3d01cff650b808e9447a2d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "452", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:26 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-ms-client-request-id": "be2ea665bf3d01cff650b808e9447a2d", - "x-ms-correlation-request-id": "96444a65-6991-42c3-b2d8-3c24717d43a1", - "x-ms-request-id": "26c2d851-86e6-4814-8c83-0132c778366f", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset2007343499", - "name": "Dataset2007343499", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "f701d160-0000-0800-0000-5fd264bd0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset836314495?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-26f5d37256d2864bb7a41b9693d45afc-ac4e8e2c7b4cb34d-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "81be58a1ab1cb9614f07cf8d56c58563", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "450", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:26 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-ms-client-request-id": "81be58a1ab1cb9614f07cf8d56c58563", - "x-ms-correlation-request-id": "584de992-9464-493a-a879-487cdc9b1784", - "x-ms-request-id": "34b6e057-165d-4241-83cc-6be9bfc7dbfa", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset836314495", - "name": "Dataset836314495", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "f701058f-0000-0800-0000-5fd2666b0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset856564196?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-a4303137c0d692438b9f392e3d90bd89-19dd9d3613702343-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "60406b13db9efb7cebb47b146007c8a6", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "450", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:26 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-ms-client-request-id": "60406b13db9efb7cebb47b146007c8a6", - "x-ms-correlation-request-id": "dc54b042-3e4b-4aac-8a29-ddebcaf33396", - "x-ms-request-id": "45aeeeb1-7476-4103-80f2-8f4811c46f58", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset856564196", - "name": "Dataset856564196", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "f701ab90-0000-0800-0000-5fd2667a0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset2095422558?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-f0970ef2693c9c45b1d945c1c948baf9-903902acf7fd314f-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "73efb433b6b7ba0345756e36ef41aa31", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "452", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:26 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-ms-client-request-id": "73efb433b6b7ba0345756e36ef41aa31", - "x-ms-correlation-request-id": "f8a6dfe3-fed9-4e87-8c31-882d608f45e0", - "x-ms-request-id": "ecf2c816-914a-4900-99ce-1b6683c15820", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset2095422558", - "name": "Dataset2095422558", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "19029075-0000-0800-0000-5fd3a7d60000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset740002382?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-b5d656e7a22690439f478452360930bf-a3a9d27b595a8342-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "7ef454cb1903c68edbc295672f4c5847", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "450", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:27 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-ms-client-request-id": "7ef454cb1903c68edbc295672f4c5847", - "x-ms-correlation-request-id": "966ef5bf-00ac-4cec-9bdc-d5b7408d5ef1", - "x-ms-request-id": "c92f03fe-15f5-49a5-818c-d18a75454caa", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset740002382", - "name": "Dataset740002382", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "1902ad76-0000-0800-0000-5fd3a7e20000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset1729474358?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-a6961eb1bb75da4f93b5a7555883d782-ecf54084a323754d-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "a259293e11d55cac68851b286d460ca9", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "452", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:27 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-ms-client-request-id": "a259293e11d55cac68851b286d460ca9", - "x-ms-correlation-request-id": "8fb19123-3f44-478e-8d74-6c8af0f19522", - "x-ms-request-id": "99cff75c-233a-4ab1-bf47-b262e5672a2e", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1729474358", - "name": "Dataset1729474358", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "6202568d-0000-0800-0000-5fd797300000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset1026181826?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-aa9561fe8522b648ba2432f720216678-bfc4ad73e793e446-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "0b49490a49131aa2252997f4209b8af8", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "452", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:27 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-ms-client-request-id": "0b49490a49131aa2252997f4209b8af8", - "x-ms-correlation-request-id": "95db0c73-e600-4413-952e-6a33063186e0", - "x-ms-request-id": "8976f63a-3bdf-4704-80e5-cd8cc9edab98", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1026181826", - "name": "Dataset1026181826", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "6202f68e-0000-0800-0000-5fd7973b0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset1060370331?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-ecc790c09f308b4782165d9ec6004dc2-cf2a532b03a34440-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "c6f7261c08e8b95ca898167efd655895", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "452", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:27 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-ms-client-request-id": "c6f7261c08e8b95ca898167efd655895", - "x-ms-correlation-request-id": "814feed0-d4f5-4d1e-b303-ad21b3fde02e", - "x-ms-request-id": "17251ac4-b4e2-4287-ac53-b780bccf3233", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1060370331", - "name": "Dataset1060370331", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "6202fbbc-0000-0800-0000-5fd798a40000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset1734962837?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-0565c766d28c504382dcea251010d56c-7cb3fedadb93cc4f-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "e55debb64c03f434873e7cab79b73bcc", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "452", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:27 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-ms-client-request-id": "e55debb64c03f434873e7cab79b73bcc", - "x-ms-correlation-request-id": "636500b4-8ee2-490c-94c9-f758be29dfb5", - "x-ms-request-id": "f82ffa9d-1d89-41c4-abdb-898003fbd8f7", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1734962837", - "name": "Dataset1734962837", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "6202e3be-0000-0800-0000-5fd798b30000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset1643623177?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-3b7b916ce410a047be2a91ab3a06e31f-77b552ed485a4f46-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "460b22fa454e01c1ed8f637b33241cbf", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "452", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:27 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-ms-client-request-id": "460b22fa454e01c1ed8f637b33241cbf", - "x-ms-correlation-request-id": "0a88b01c-7b27-4e54-859a-2f06a33397b1", - "x-ms-request-id": "5390fdcc-5835-43f4-9877-19844342c888", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1643623177", - "name": "Dataset1643623177", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "6202a1e3-0000-0800-0000-5fd799c60000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset133717966?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-ea9c666af8854442a8faac4a47d20260-b0acf401a4586e4c-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "353d02d0a43dd0f5f1023fa98bb03ff0", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "450", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:27 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-ms-client-request-id": "353d02d0a43dd0f5f1023fa98bb03ff0", - "x-ms-correlation-request-id": "3bff6b1a-b1da-448e-9a5c-676271ab2c0a", - "x-ms-request-id": "15b93e9a-89f8-4934-8f9a-c135afff5584", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset133717966", - "name": "Dataset133717966", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "62027de5-0000-0800-0000-5fd799d30000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset2069156527?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-5738c59d9e03ff4ba753e4e74a70ec18-7a5093547f0d4d4e-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "da83495c125970462a5bf873e9b9c163", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "452", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:28 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-ms-client-request-id": "da83495c125970462a5bf873e9b9c163", - "x-ms-correlation-request-id": "1397d8df-4243-4129-9e28-36b8cdda0c33", - "x-ms-request-id": "a9b1fd59-24ec-4a6e-98dd-d0a4b65f856c", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset2069156527", - "name": "Dataset2069156527", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "8302e6ed-0000-0800-0000-5fd8d3790000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset1361092452?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-93abab6751f6f94b897717d0a27ea7e0-73903743b662a141-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "76dbbc210679558e2d3b544b0618753d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "452", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:28 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-ms-client-request-id": "76dbbc210679558e2d3b544b0618753d", - "x-ms-correlation-request-id": "c72ad8e3-6f04-427d-95a3-6abf8bf6fe10", - "x-ms-request-id": "0a1ffb3b-34cc-4208-8959-9ae61ac99b8b", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1361092452", - "name": "Dataset1361092452", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "83027cf0-0000-0800-0000-5fd8d38a0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset1982585264?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-8f8a52f1a79c794d890ba53eabef33b5-36be93f781ea4740-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "ea1e725041a0be65bccd0ae2ac81e638", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "452", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:28 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-ms-client-request-id": "ea1e725041a0be65bccd0ae2ac81e638", - "x-ms-correlation-request-id": "ab371296-9e4b-4b82-847f-1db3b1db9b17", - "x-ms-request-id": "224b5782-c913-4aa3-85a1-abed88b7efb0", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1982585264", - "name": "Dataset1982585264", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "84029a28-0000-0800-0000-5fd8d5350000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset1584048031?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-757ba5b6d69e3042badb2a633ed2e917-219bc139d7a55444-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "cf87dc41c8d55576ba2dad1ebdfa6912", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "452", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:28 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-ms-client-request-id": "cf87dc41c8d55576ba2dad1ebdfa6912", - "x-ms-correlation-request-id": "5e5d860e-180d-43c7-8530-0c13abe73333", - "x-ms-request-id": "e98cd65c-e10b-4ebb-8563-546019dcbed2", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1584048031", - "name": "Dataset1584048031", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "8402992a-0000-0800-0000-5fd8d5470000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset2077225302?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-a31bb22522b2954ea72574604309e28f-a1660765b87b8e4b-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "7623bae6d69adfc2561dbaacfcaca9ab", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "452", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:28 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-ms-client-request-id": "7623bae6d69adfc2561dbaacfcaca9ab", - "x-ms-correlation-request-id": "88dbe541-1f7e-4085-a488-466da7e47b80", - "x-ms-request-id": "8600ecee-6566-43c9-8299-b05fb186f000", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset2077225302", - "name": "Dataset2077225302", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "8402b851-0000-0800-0000-5fd8d6720000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset454764449?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-74430b43fd564b45a173e6003396a072-5528fd68639ba346-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "2a0a1c55a6908768fcc93073944700c2", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "450", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:28 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-ms-client-request-id": "2a0a1c55a6908768fcc93073944700c2", - "x-ms-correlation-request-id": "d04e93b0-9090-4411-94cf-eb8cedb53d33", - "x-ms-request-id": "91477ef3-386d-49e0-983a-d47111892992", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset454764449", - "name": "Dataset454764449", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "8402da52-0000-0800-0000-5fd8d67a0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset136456529?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-bbac56098f6d504badcfaba4cce0b1ec-40459cda9cea7846-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "f2fcf863705e6b9d19a779b80eca590d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "450", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:28 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-ms-client-request-id": "f2fcf863705e6b9d19a779b80eca590d", - "x-ms-correlation-request-id": "77921ddd-44a5-46a6-a45a-f80072512854", - "x-ms-request-id": "0af37734-96ca-4d3d-a15d-38b721209c9c", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset136456529", - "name": "Dataset136456529", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "87028aab-0000-0800-0000-5fd8f1030000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset684448508?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-e1ccd0225d321449842faa22d1678658-3d8ccd0674d0a84c-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "a1c901843ff03f81529c7ad1a64f4b0e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "450", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:28 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-ms-client-request-id": "a1c901843ff03f81529c7ad1a64f4b0e", - "x-ms-correlation-request-id": "c1720059-2bc1-4240-a828-9682d6608e9e", - "x-ms-request-id": "bdad7fea-ffb9-4765-83e9-4be5cd079965", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset684448508", - "name": "Dataset684448508", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "87029aad-0000-0800-0000-5fd8f1140000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset679270590?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-f080059d9714934284d80bf79e285dae-742182fe450b9f47-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "0349f81cb6b0e44d7e9f10e82db07831", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "450", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:29 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-ms-client-request-id": "0349f81cb6b0e44d7e9f10e82db07831", - "x-ms-correlation-request-id": "5b7d733a-5787-4b16-94c8-a604acdf2c11", - "x-ms-request-id": "1728cb7b-8767-4343-a4e0-372c252634ab", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset679270590", - "name": "Dataset679270590", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "8702a0ca-0000-0800-0000-5fd8f1ff0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset214370204?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-8b82e693929eb94a804e55a71ae6e929-546184ba690ec849-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "92ee22705e7e23d177bca0c2f5ccc4ca", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "450", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:29 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-ms-client-request-id": "92ee22705e7e23d177bca0c2f5ccc4ca", - "x-ms-correlation-request-id": "7c0a0b34-4f73-414f-ba60-318a2a3eb8bd", - "x-ms-request-id": "c1d6475b-a183-4faa-9198-fbcc46fde9a5", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset214370204", - "name": "Dataset214370204", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "8702d5cc-0000-0800-0000-5fd8f2110000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset579166872?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-bb1cba1acbea584fb6dd00953d798e45-8536c1c95928a641-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "169b6a5c5581cd5cb4e422512e9812a1", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "450", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:29 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-ms-client-request-id": "169b6a5c5581cd5cb4e422512e9812a1", - "x-ms-correlation-request-id": "646e135e-65af-4714-91a7-e902d2dbde09", - "x-ms-request-id": "eeaa555b-af1d-42a7-98b3-43aa054fa8f2", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset579166872", - "name": "Dataset579166872", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "87027dee-0000-0800-0000-5fd8f3190000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset2051259056?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-3ff3a5d7ce659244b9018b1a0743ad2e-1307dad6764eda4d-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "83604823b860bd8f26258cf4168aeeb2", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "452", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:29 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-ms-client-request-id": "83604823b860bd8f26258cf4168aeeb2", - "x-ms-correlation-request-id": "a2bd5899-1f9c-4457-9ed8-0170c0206c65", - "x-ms-request-id": "6893792c-64c4-4bf3-89b9-d7e5d1477939", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset2051259056", - "name": "Dataset2051259056", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "8702ddf0-0000-0800-0000-5fd8f32e0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset622369459?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-405d7b932149d44a9f67a3a0d838662d-1c291e3aeca1f345-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "c28c46da62151ab0c620dd9a3c80f5de", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "450", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:29 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-ms-client-request-id": "c28c46da62151ab0c620dd9a3c80f5de", - "x-ms-correlation-request-id": "036fe32e-0046-4c61-902f-6a1cb12a0035", - "x-ms-request-id": "95cecafc-64d9-41f7-9693-6a62733ad0e2", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset622369459", - "name": "Dataset622369459", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "8802675b-0000-0800-0000-5fd8f6900000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset274408814?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-54c1e1976222f14a92dfdb876730570c-4d4716b5440da543-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "ad9efea9406ba36adaddef5bc968b729", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "450", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:29 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-ms-client-request-id": "ad9efea9406ba36adaddef5bc968b729", - "x-ms-correlation-request-id": "6cd560b3-cabc-4cce-ac70-eebeff47d4f5", - "x-ms-request-id": "d2dd3932-1392-465c-bcfb-200fc13e7c1c", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset274408814", - "name": "Dataset274408814", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "8802cb5d-0000-0800-0000-5fd8f6a20000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset362233113?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-16d3d834f8b2a04a812db3c65c3eaf4c-6b50f6f8d6e41e47-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "e8766ff54f0cc08c9846bd3fdaf581a5", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "450", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:29 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-ms-client-request-id": "e8766ff54f0cc08c9846bd3fdaf581a5", - "x-ms-correlation-request-id": "391a274f-9a39-4e3c-849d-f4aa3b056a07", - "x-ms-request-id": "3ae40cff-e3c3-439f-aa6f-e75a32b02aa9", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset362233113", - "name": "Dataset362233113", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "8802bb7c-0000-0800-0000-5fd8f7b00000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset1322562692?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-5620008aeae38b44be09e36df85be31c-4414397ee572a144-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "174aae2f41ec9947dce9e8377254505e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "452", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:30 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-ms-client-request-id": "174aae2f41ec9947dce9e8377254505e", - "x-ms-correlation-request-id": "bddd74cc-1f95-4ba5-b625-1ca0bf992970", - "x-ms-request-id": "22cca708-ad71-47c4-a99b-e8568b8f760c", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1322562692", - "name": "Dataset1322562692", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "8802e07e-0000-0800-0000-5fd8f7c20000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset1267783872?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-24406fd4f00ee047b7ffbe14945a28ab-2465ddbc2354a448-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "cca4b4690d0a5ad172de1524832ac8e5", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "452", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:30 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-ms-client-request-id": "cca4b4690d0a5ad172de1524832ac8e5", - "x-ms-correlation-request-id": "34641383-bda2-4077-a938-4c60f7c9ea60", - "x-ms-request-id": "a530097e-c6db-4f0c-a972-e25d1e49b1f2", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1267783872", - "name": "Dataset1267783872", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "8802d3a0-0000-0800-0000-5fd8f8d80000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset54405418?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-041fc495f049154581aa882273ce86a4-e8a3f8c56b3df34c-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "1b2b4a5b9f1db33d28dc0c2367544d43", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "448", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:30 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-ms-client-request-id": "1b2b4a5b9f1db33d28dc0c2367544d43", - "x-ms-correlation-request-id": "00eda57d-6b42-4daa-a3ca-251b65e8db57", - "x-ms-request-id": "980f3709-ae05-4255-926a-2bffb0ab02df", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset54405418", - "name": "Dataset54405418", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "880238a3-0000-0800-0000-5fd8f8ea0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset1047788388?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-45b69c6a6d58e24aa74254f5ad1a3561-41f266f316e7174d-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "26d65ff5b550229bdcf0a50e2c2216b1", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "452", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:30 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-ms-client-request-id": "26d65ff5b550229bdcf0a50e2c2216b1", - "x-ms-correlation-request-id": "49e0e358-7b55-4ab4-92ad-cc94d0ed019e", - "x-ms-request-id": "89543fbc-b622-48ae-abc1-ba99dcbf6b54", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1047788388", - "name": "Dataset1047788388", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "4200e453-0000-0800-0000-5fda866d0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset1088609233?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-a56dcef0b8c12e469b25b34edcd35844-c301025828b8c741-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "28db02203529ca4076f0a32d00aef21d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "452", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:30 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-ms-client-request-id": "28db02203529ca4076f0a32d00aef21d", - "x-ms-correlation-request-id": "cfc3bf0e-0dd4-4b38-8627-493b735d804c", - "x-ms-request-id": "b93f591f-8846-4888-bf86-49ebb1d3f5db", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1088609233", - "name": "Dataset1088609233", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "42009658-0000-0800-0000-5fda867f0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset1683654226?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-1efa577ba039264f96b954f183f3013c-85b02d5e151e5442-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "232fd190a254a694ae093f2df92f8706", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "452", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:30 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-ms-client-request-id": "232fd190a254a694ae093f2df92f8706", - "x-ms-correlation-request-id": "b9e9448a-e910-48ce-abcd-585099e1add9", - "x-ms-request-id": "0e9d9f14-80f3-4304-9f7b-9953b6abae24", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1683654226", - "name": "Dataset1683654226", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "4200f59a-0000-0800-0000-5fda87850000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset205771093?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-da2482929b83c24589955db1dd978cb4-5f0338c82680a249-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "64025ac62578c01a1e0baf5f116d212d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "450", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:31 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-ms-client-request-id": "64025ac62578c01a1e0baf5f116d212d", - "x-ms-correlation-request-id": "ee7bfab7-4ba9-42a7-b065-966b0141b8c4", - "x-ms-request-id": "56cf81e4-80c6-4b93-a33d-ce554b73c281", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset205771093", - "name": "Dataset205771093", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "4200749f-0000-0800-0000-5fda87960000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset70622159?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-4f2272619825af42bc213302723eae25-2973afd832527f43-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "5a7e88fdf2f37e5c6e357920f613d047", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "448", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:31 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-ms-client-request-id": "5a7e88fdf2f37e5c6e357920f613d047", - "x-ms-correlation-request-id": "0885943a-c53e-45f3-9b39-5b9d7041b714", - "x-ms-request-id": "17c2ddca-2101-4e36-a5d2-676a953ac491", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset70622159", - "name": "Dataset70622159", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "420080dd-0000-0800-0000-5fda88870000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset1006965050?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-014bb898615a744698e3416d4fd25576-2df45b7236e8b94b-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "a6679d698eab6aa4b76e0548f2349541", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "452", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:31 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-ms-client-request-id": "a6679d698eab6aa4b76e0548f2349541", - "x-ms-correlation-request-id": "3c9e8707-a150-476b-bfed-35bf687151d4", - "x-ms-request-id": "b35a2390-2cf8-4647-9adf-900f7c0d916a", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1006965050", - "name": "Dataset1006965050", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "420057e2-0000-0800-0000-5fda88990000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets?api-version=2019-06-01-preview\u0026%24skipToken=%2BRID%3A~Sl8ZAKxwhACFUgAAAAD8BA%3D%3D%23RT%3A1%23TRC%3A50%23ISV%3A2%23IEO%3A65551%23QCF%3A1", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-da6fef22d99b414da3a97c2615e27d2e-d7d7cda9568f4c46-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "702f11e72db1d313fd84f643abf9ca0a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Length": "22831", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:31 GMT", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "702f11e72db1d313fd84f643abf9ca0a", - "x-ms-request-id": "4f29585b-cc92-405e-90d6-7097c42c098d" - }, - "ResponseBody": { - "value": [ - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1013834792", - "name": "Dataset1013834792", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "79003b83-0000-0800-0000-5fdbaf310000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1027623633", - "name": "Dataset1027623633", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "7900ab89-0000-0800-0000-5fdbaf420000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset261694513", - "name": "Dataset261694513", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "790017e4-0000-0800-0000-5fdbb0410000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset865436919", - "name": "Dataset865436919", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "79002deb-0000-0800-0000-5fdbb0550000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1444929577", - "name": "Dataset1444929577", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "7a00354a-0000-0800-0000-5fdbb15c0000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset110300100", - "name": "Dataset110300100", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "7a00c351-0000-0800-0000-5fdbb1700000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1501278946", - "name": "Dataset1501278946", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "1200098b-0000-0800-0000-5fdcc7670000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1295636335", - "name": "Dataset1295636335", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "1200b78d-0000-0800-0000-5fdcc77d0000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset809383969", - "name": "Dataset809383969", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "1200afc5-0000-0800-0000-5fdcc9520000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset115263683", - "name": "Dataset115263683", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "1200fbc7-0000-0800-0000-5fdcc9680000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1979481993", - "name": "Dataset1979481993", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "1200f9f6-0000-0800-0000-5fdccaea0000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset767018092", - "name": "Dataset767018092", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "120017f9-0000-0800-0000-5fdccb010000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1987569395", - "name": "Dataset1987569395", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "140054f3-0000-0800-0000-5fdcdcd90000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1467123484", - "name": "Dataset1467123484", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "140053f6-0000-0800-0000-5fdcdcf20000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1631776164", - "name": "Dataset1631776164", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "15007013-0000-0800-0000-5fdcddf10000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset178752379", - "name": "Dataset178752379", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "1500b815-0000-0800-0000-5fdcde060000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1267181372", - "name": "Dataset1267181372", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "15000334-0000-0800-0000-5fdcdf0e0000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset19672644", - "name": "Dataset19672644", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "15009d36-0000-0800-0000-5fdcdf260000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1422914988", - "name": "Dataset1422914988", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "1500a5e7-0000-0800-0000-5fdce54d0000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset204200777", - "name": "Dataset204200777", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "1500ede9-0000-0800-0000-5fdce5620000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset833673190", - "name": "Dataset833673190", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "1600b809-0000-0800-0000-5fdce67e0000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1195474683", - "name": "Dataset1195474683", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "1600420c-0000-0800-0000-5fdce6940000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset2009508484", - "name": "Dataset2009508484", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "16002d32-0000-0800-0000-5fdce7df0000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1397582513", - "name": "Dataset1397582513", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "16009e34-0000-0800-0000-5fdce7f40000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset290809178", - "name": "Dataset290809178", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "930011fc-0000-0800-0000-5fe0cdf00000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1971695453", - "name": "Dataset1971695453", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "94004f0c-0000-0800-0000-5fe0ce060000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1254317957", - "name": "Dataset1254317957", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "9500b50a-0000-0800-0000-5fe0cfd30000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset2077842606", - "name": "Dataset2077842606", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "95004b16-0000-0800-0000-5fe0cfe90000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1574848707", - "name": "Dataset1574848707", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "9500bde8-0000-0800-0000-5fe0d15b0000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset477357622", - "name": "Dataset477357622", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "9500eff2-0000-0800-0000-5fe0d16c0000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset611494391", - "name": "Dataset611494391", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "b200f4fa-0000-0800-0000-5fe108880000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset409566386", - "name": "Dataset409566386", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "b3000101-0000-0800-0000-5fe108990000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset250306577", - "name": "Dataset250306577", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "b30071c0-0000-0800-0000-5fe10a7c0000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1088100696", - "name": "Dataset1088100696", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "b300f9c8-0000-0800-0000-5fe10a930000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset304476999", - "name": "Dataset304476999", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "b400a76e-0000-0800-0000-5fe10c290000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset742906215", - "name": "Dataset742906215", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "b4006578-0000-0800-0000-5fe10c410000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1229193366", - "name": "Dataset1229193366", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "b70025c3-0000-0800-0000-5fe1141d0000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset809552041", - "name": "Dataset809552041", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "b70013d1-0000-0800-0000-5fe1143e0000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset126732669", - "name": "Dataset126732669", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "b80049a5-0000-0800-0000-5fe1166f0000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset2009218825", - "name": "Dataset2009218825", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "b8006fad-0000-0800-0000-5fe116820000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1035838221", - "name": "Dataset1035838221", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "b9006b48-0000-0800-0000-5fe1182a0000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1513329315", - "name": "Dataset1513329315", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "b9006e4f-0000-0800-0000-5fe1183e0000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1610066326", - "name": "Dataset1610066326", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "00009deb-0000-0800-0000-5fe259200000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1263275506", - "name": "Dataset1263275506", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "0000dceb-0000-0800-0000-5fe259370000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset831101464", - "name": "Dataset831101464", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "000071f2-0000-0800-0000-5fe25b470000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset975710103", - "name": "Dataset975710103", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "0000c2f2-0000-0800-0000-5fe25b600000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1532745294", - "name": "Dataset1532745294", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "00009af8-0000-0800-0000-5fe25d0f0000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset642859093", - "name": "Dataset642859093", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "0000cbf8-0000-0800-0000-5fe25d290000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset610648447", - "name": "Dataset610648447", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "03008476-0000-0800-0000-5fe3896f0000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1768122808", - "name": "Dataset1768122808", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "0300c876-0000-0800-0000-5fe389890000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - } - ], - "nextLink": "https://workspacechhamosynapse.dev.azuresynapse.net:443/datasets?api-version=2019-06-01-preview\u0026%24skipToken=%2BRID%3A%7ESl8ZAKxwhAAEXAAAAAD8BA%3D%3D%23RT%3A2%23TRC%3A100%23ISV%3A2%23IEO%3A65551%23QCF%3A1" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset1013834792?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-0a27075a26a08e46bdaa8f600bc41ea0-b8eeb1351269b74a-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "74f6683a7b066e82e313a284ed148c39", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "452", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:31 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-ms-client-request-id": "74f6683a7b066e82e313a284ed148c39", - "x-ms-correlation-request-id": "b8e46273-d113-415b-bd5f-9851c15f289b", - "x-ms-request-id": "4d6a771f-e288-4c6b-a771-ded7c0ccef5a", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1013834792", - "name": "Dataset1013834792", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "79003b83-0000-0800-0000-5fdbaf310000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset1027623633?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-9831665e07d3804d9079ca778e749d44-20f43e61c38dfa4a-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "e538389f5fe43c958993a8279860bfbe", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "452", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:31 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-ms-client-request-id": "e538389f5fe43c958993a8279860bfbe", - "x-ms-correlation-request-id": "678dfa87-9be3-4bab-9d9c-3ab3003b8aa7", - "x-ms-request-id": "a9049b1f-9690-406f-9ae9-d29fde920f6e", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1027623633", - "name": "Dataset1027623633", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "7900ab89-0000-0800-0000-5fdbaf420000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset261694513?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-3412592900fcae47a2539d642da29287-8fe76ad7cdc7b445-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "890dfaa3213e6b3a8ec08c9e8a8ee6e9", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "450", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:31 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-ms-client-request-id": "890dfaa3213e6b3a8ec08c9e8a8ee6e9", - "x-ms-correlation-request-id": "3757345f-4f85-4dbc-80c0-01396a7f50cc", - "x-ms-request-id": "ac7bdd26-3844-4a0e-a0fa-deb2ca8c929e", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset261694513", - "name": "Dataset261694513", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "790017e4-0000-0800-0000-5fdbb0410000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset865436919?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-54eb9c3a04a5174e9266c203c8e8d577-2d9e0a34ca8e3043-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "72a3bcf8e5c0db26d3baea73d35ad683", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "450", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:32 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-ms-client-request-id": "72a3bcf8e5c0db26d3baea73d35ad683", - "x-ms-correlation-request-id": "7cc4d51c-7cdc-4768-8a70-4ac0cada5a47", - "x-ms-request-id": "3176d608-383e-4be5-8751-76a92f747332", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset865436919", - "name": "Dataset865436919", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "79002deb-0000-0800-0000-5fdbb0550000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset1444929577?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-e16d6f748c7db34b972ac543be673506-58ab6eddc3280c47-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "f3e1e45302067efafecd5623d3f7b1fb", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "452", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:32 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-ms-client-request-id": "f3e1e45302067efafecd5623d3f7b1fb", - "x-ms-correlation-request-id": "6e44b995-1f53-48d6-8cf1-0bfc01975447", - "x-ms-request-id": "a996d666-e21c-4f4d-a2bb-b4095b3174cc", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1444929577", - "name": "Dataset1444929577", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "7a00354a-0000-0800-0000-5fdbb15c0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset110300100?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-23200a9f36bb10498d44c9a03c4d7aa9-d9e8ce8ddd51b948-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "db2fbeac4cbdbefdd332b68437c79834", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "450", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:32 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-ms-client-request-id": "db2fbeac4cbdbefdd332b68437c79834", - "x-ms-correlation-request-id": "ff2c62ad-505a-47e8-8494-183306628146", - "x-ms-request-id": "a814c48b-2070-4e3b-bd1a-174cea7af01e", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset110300100", - "name": "Dataset110300100", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "7a00c351-0000-0800-0000-5fdbb1700000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset1501278946?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-d3ff4c41e0c77143b247926da8e7ea45-bd90a11ef74ae848-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "a54a09e9f3adf5e3c22574f38f0308db", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "452", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:32 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-ms-client-request-id": "a54a09e9f3adf5e3c22574f38f0308db", - "x-ms-correlation-request-id": "1666c6af-b865-466d-9813-00b6e77603cf", - "x-ms-request-id": "6954acb6-3fe2-46f2-a40e-ea53afedc3ea", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1501278946", - "name": "Dataset1501278946", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "1200098b-0000-0800-0000-5fdcc7670000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset1295636335?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-d43279d3ff95174a859ce1e54c1beab2-d1e1844e686bf34a-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "14c6ee08fb2b07c5e7221fd34c764736", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "452", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:32 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-ms-client-request-id": "14c6ee08fb2b07c5e7221fd34c764736", - "x-ms-correlation-request-id": "4459e1b5-beb0-45b0-bbb7-74c253094257", - "x-ms-request-id": "6fa44eb2-a040-45ca-ad8e-8d4ae671f1c0", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1295636335", - "name": "Dataset1295636335", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "1200b78d-0000-0800-0000-5fdcc77d0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset809383969?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-10408a4879723646bcc0e4a89f194ba2-c021b9cd396c8e4b-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "c93922350cacb94ddb391998d8092ecf", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "450", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:32 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-ms-client-request-id": "c93922350cacb94ddb391998d8092ecf", - "x-ms-correlation-request-id": "f4be494f-1e95-486c-9c4c-7a41fab1cc5c", - "x-ms-request-id": "23377342-9925-49b4-8fa0-87340d892bb9", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset809383969", - "name": "Dataset809383969", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "1200afc5-0000-0800-0000-5fdcc9520000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset115263683?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-3966746dd63fa64faf88d61e2069b9b0-3c1f27bc12524e42-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "487cda2a8400ee084443be8ad30fa94c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "450", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:32 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-ms-client-request-id": "487cda2a8400ee084443be8ad30fa94c", - "x-ms-correlation-request-id": "339492c8-efae-4f20-935f-bdc392f19930", - "x-ms-request-id": "1e38b41d-1d83-46c1-a205-52bd482cc6de", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset115263683", - "name": "Dataset115263683", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "1200fbc7-0000-0800-0000-5fdcc9680000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset1979481993?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-380a0412cb94074db264c81a6eabfc28-253a5ac0b63ed842-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "6dbe3ddd3ecafb2ea10d38f1e22d2fde", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "452", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:33 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-ms-client-request-id": "6dbe3ddd3ecafb2ea10d38f1e22d2fde", - "x-ms-correlation-request-id": "e42be985-2f0a-4f05-a9a8-37e20c9be9e7", - "x-ms-request-id": "8a65476e-20f3-448d-875a-685ac460efa6", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1979481993", - "name": "Dataset1979481993", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "1200f9f6-0000-0800-0000-5fdccaea0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset767018092?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-7d780c7a23a8f94aae7ad6a5ee6e8176-317f641bbe2e734d-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "71a94ff4fff9b136194a85694dc3e5cc", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "450", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:33 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-ms-client-request-id": "71a94ff4fff9b136194a85694dc3e5cc", - "x-ms-correlation-request-id": "920334b9-d0e5-41c3-9910-c2e039ddeff1", - "x-ms-request-id": "534c9db1-ae91-4ced-bbc9-650d614012c1", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset767018092", - "name": "Dataset767018092", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "120017f9-0000-0800-0000-5fdccb010000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset1987569395?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-04da55030d36b24aa5edacf87bda40b2-c63d705ea2840845-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "9abacc90c14aeb05ab80a7f24b170c16", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "452", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:33 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-ms-client-request-id": "9abacc90c14aeb05ab80a7f24b170c16", - "x-ms-correlation-request-id": "90e53f4a-235a-4d72-b58b-fb225f4738d8", - "x-ms-request-id": "e020e388-6331-4ef9-a5fd-5acf9e3a4dde", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1987569395", - "name": "Dataset1987569395", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "140054f3-0000-0800-0000-5fdcdcd90000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset1467123484?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-d76ad5f9d5501e4e8ebe114fe0ed2d75-ebf472e8a225ef42-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "8496e0143766de52070d547fb9c5aedd", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "452", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:33 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-ms-client-request-id": "8496e0143766de52070d547fb9c5aedd", - "x-ms-correlation-request-id": "02608f6d-14da-43f8-8b1f-9bb34f6d71ef", - "x-ms-request-id": "9906cc0a-7522-4fa7-bf31-589d72413464", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1467123484", - "name": "Dataset1467123484", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "140053f6-0000-0800-0000-5fdcdcf20000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset1631776164?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-47350f5470e141489bbacaacd506c1ca-831697d09d34da4f-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "15606c289473329349bdc57958436501", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "452", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:33 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-ms-client-request-id": "15606c289473329349bdc57958436501", - "x-ms-correlation-request-id": "dc22a754-8582-45a1-8136-e5c37f04745d", - "x-ms-request-id": "7eb3fb75-ad40-42b7-9007-7fb5eb1d6fbb", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1631776164", - "name": "Dataset1631776164", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "15007013-0000-0800-0000-5fdcddf10000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset178752379?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-c2e4523f0dbf0343bcb389eab117ec94-a52211d5f5d59b42-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "6d556e3e612c58657adc923d6d8631e6", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "450", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:33 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-ms-client-request-id": "6d556e3e612c58657adc923d6d8631e6", - "x-ms-correlation-request-id": "94f33d0e-c19c-43ef-ad44-55cfcf1c5c6a", - "x-ms-request-id": "5832899d-e2a3-4d59-91c3-a9142dac529d", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset178752379", - "name": "Dataset178752379", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "1500b815-0000-0800-0000-5fdcde060000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset1267181372?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-7b61ab207c22f047b104053791080c7b-dc51caa67935ab47-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "decac9d2f7b67fa24c643aa872d985c3", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "452", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:33 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-ms-client-request-id": "decac9d2f7b67fa24c643aa872d985c3", - "x-ms-correlation-request-id": "e59151d2-3a06-4fbb-bd13-11e1bce93266", - "x-ms-request-id": "ab96a8dd-d11e-41aa-a304-c82248231508", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1267181372", - "name": "Dataset1267181372", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "15000334-0000-0800-0000-5fdcdf0e0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset19672644?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-f944b0a52b1be94dab5d36437833bcb3-e655a82adf0b1441-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "4b4152a7406fc7b106079a970155c5c3", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "448", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:34 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-ms-client-request-id": "4b4152a7406fc7b106079a970155c5c3", - "x-ms-correlation-request-id": "dbefb18c-f668-4e77-9670-6f8fb5e82432", - "x-ms-request-id": "eb5a2ab2-28d0-4bac-9e20-f28b3f9bc26d", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset19672644", - "name": "Dataset19672644", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "15009d36-0000-0800-0000-5fdcdf260000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset1422914988?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-8d44654aeb1fd2468c09b6acfdf0f56a-1526dfa84501c544-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "8fa6de8b8678474acbd620c826bce6a0", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "452", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:34 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-ms-client-request-id": "8fa6de8b8678474acbd620c826bce6a0", - "x-ms-correlation-request-id": "f7e1df3e-4332-45fd-a704-999d80a03dda", - "x-ms-request-id": "c1d0abea-0f10-472b-9f9b-c8b067fab9d0", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1422914988", - "name": "Dataset1422914988", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "1500a5e7-0000-0800-0000-5fdce54d0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset204200777?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-7cafe65772983145aa3c1b3634166940-80a8a58678f11c42-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "1b95cf56e64592771803d8af5c0b7df7", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "450", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:34 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-ms-client-request-id": "1b95cf56e64592771803d8af5c0b7df7", - "x-ms-correlation-request-id": "1ee32250-1eb9-41ce-aee5-2479a375fdd5", - "x-ms-request-id": "cdae70c6-3759-414a-9015-e03e1723561d", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset204200777", - "name": "Dataset204200777", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "1500ede9-0000-0800-0000-5fdce5620000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset833673190?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-247d09b6bbe8fe4aa0a0ad1efdc3914f-3c32c4602b546b45-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "931d779ef632214b07fa7f981fe8a049", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "450", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:34 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-ms-client-request-id": "931d779ef632214b07fa7f981fe8a049", - "x-ms-correlation-request-id": "ccedce5a-83f3-4cb1-acc3-dcf334c51945", - "x-ms-request-id": "9273534f-a3bc-49d7-9c43-536d96fdfa44", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset833673190", - "name": "Dataset833673190", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "1600b809-0000-0800-0000-5fdce67e0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset1195474683?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-913ea6cd9a6e8a45bca80539d9e17846-38c451f1f3d10b46-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "3240f921aac0a47d67147674ae9beac0", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "452", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:34 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-ms-client-request-id": "3240f921aac0a47d67147674ae9beac0", - "x-ms-correlation-request-id": "66c0310f-0038-46c5-a57e-b4762473b4b9", - "x-ms-request-id": "bc257bf2-3d9b-48ea-b6f5-c7403c0f6a83", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1195474683", - "name": "Dataset1195474683", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "1600420c-0000-0800-0000-5fdce6940000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset2009508484?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-51def6b802afc44d86631b50e16027b7-1a654077079f7146-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "af292959529f5f6e8374134b67de722f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "452", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:34 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-ms-client-request-id": "af292959529f5f6e8374134b67de722f", - "x-ms-correlation-request-id": "99908e7f-9fc0-49fd-b70d-506269079114", - "x-ms-request-id": "1f833566-c1ff-4ca6-8d47-c3b8d0614b65", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset2009508484", - "name": "Dataset2009508484", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "16002d32-0000-0800-0000-5fdce7df0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset1397582513?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-e3d49c34cc0b8846a4509e6388e1bb09-9784567cc703c34f-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "628d8e634acbf436f9782c1d7fd6726b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "452", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:34 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-ms-client-request-id": "628d8e634acbf436f9782c1d7fd6726b", - "x-ms-correlation-request-id": "7f87b69e-9130-44ae-a564-546d99458e69", - "x-ms-request-id": "6bc7699a-beab-4bdc-956d-7e1523478ce2", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1397582513", - "name": "Dataset1397582513", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "16009e34-0000-0800-0000-5fdce7f40000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset290809178?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-f2fd00bcc3a48d4ba58a54309be19153-9be84056c0b2054c-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "f63fbf0ff1beceaa8be1af4b96323d88", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "450", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:35 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-ms-client-request-id": "f63fbf0ff1beceaa8be1af4b96323d88", - "x-ms-correlation-request-id": "a1d05a5d-6540-4a0e-9b50-1769fca2b3e6", - "x-ms-request-id": "5d72352e-dc72-4cb6-9bc6-995c92181e09", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset290809178", - "name": "Dataset290809178", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "930011fc-0000-0800-0000-5fe0cdf00000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset1971695453?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-7ab4bf62d651bc45a57f1bb466de00d0-fc9bb2e32e8f1845-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "1f1146a2880e0ef4f235b5272650dfad", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "452", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:35 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-ms-client-request-id": "1f1146a2880e0ef4f235b5272650dfad", - "x-ms-correlation-request-id": "e3e8c556-3d9a-4d05-a607-37ff18d97b5e", - "x-ms-request-id": "cf94280f-749f-49dd-af34-38c8eb488722", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1971695453", - "name": "Dataset1971695453", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "94004f0c-0000-0800-0000-5fe0ce060000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset1254317957?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-8f7cda4513f7c841ac354a4607e17a76-5233e690947c4945-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "a83ca8027c9e7271e4bfd6ea9beb5ec7", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "452", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:35 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-ms-client-request-id": "a83ca8027c9e7271e4bfd6ea9beb5ec7", - "x-ms-correlation-request-id": "2e39eba7-3845-4b0f-adba-c06a3394a24d", - "x-ms-request-id": "b90688ca-1e6e-483d-ae26-964aea3034a9", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1254317957", - "name": "Dataset1254317957", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "9500b50a-0000-0800-0000-5fe0cfd30000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset2077842606?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-4b69d2b194e9e642a575b951cd715d0e-d28304ed75580d4e-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "397ba33a52c4865dca3003893b82a73b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "452", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:35 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-ms-client-request-id": "397ba33a52c4865dca3003893b82a73b", - "x-ms-correlation-request-id": "f65ae19e-1826-468d-b76f-2e22d9f7ccab", - "x-ms-request-id": "7f232718-28b2-43f9-8218-b4cc6811e550", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset2077842606", - "name": "Dataset2077842606", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "95004b16-0000-0800-0000-5fe0cfe90000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset1574848707?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-b0f5b32458d40943bec33f1df0f99ed0-831dfaf9895bef47-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "ee49010195f625ead59f3b4eb10a7307", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "452", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:35 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-ms-client-request-id": "ee49010195f625ead59f3b4eb10a7307", - "x-ms-correlation-request-id": "9f45fbcf-5232-4d5a-bff5-2eebf806890c", - "x-ms-request-id": "a1d39973-6fa4-46f5-9c49-af5afae29a27", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1574848707", - "name": "Dataset1574848707", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "9500bde8-0000-0800-0000-5fe0d15b0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset477357622?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-35da880abeaf244e8f5571d4d753c921-07e21e635c2a3e4d-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "82eceed6a6d4afe84ab5dd6e78e73761", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "450", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:35 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-ms-client-request-id": "82eceed6a6d4afe84ab5dd6e78e73761", - "x-ms-correlation-request-id": "89ee8162-3dee-48bc-a0bd-2531c01471d0", - "x-ms-request-id": "e27aaa4a-3542-4e8f-8c96-9f2959eb371b", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset477357622", - "name": "Dataset477357622", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "9500eff2-0000-0800-0000-5fe0d16c0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset611494391?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-e79f33037b37664f9a25bc309b29dfde-29817ab747ed274a-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "99e89b176fa1a5d0b9556325170ed5bf", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "450", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:36 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-ms-client-request-id": "99e89b176fa1a5d0b9556325170ed5bf", - "x-ms-correlation-request-id": "089b9432-dafe-4fdb-8848-cc83fe6a7019", - "x-ms-request-id": "61013f7a-4fc9-4c43-9bf4-feb0858dcbbd", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset611494391", - "name": "Dataset611494391", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "b200f4fa-0000-0800-0000-5fe108880000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset409566386?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-11e89d2742604f45a6b59ec6ffd965ff-ad7e61804c528142-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "4cb2fcbc24965a66199aa340b77caded", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "450", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:36 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-ms-client-request-id": "4cb2fcbc24965a66199aa340b77caded", - "x-ms-correlation-request-id": "b7b60215-48d6-45b1-882b-244cb09cf955", - "x-ms-request-id": "22c9ec81-c654-4b77-bced-c070e88814ad", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset409566386", - "name": "Dataset409566386", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "b3000101-0000-0800-0000-5fe108990000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset250306577?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-b332ff534fdcb448bf5c99c406729c8a-3b0418590e31da4f-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "1636d968da2266651d46c97e43c3983b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "450", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:36 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-ms-client-request-id": "1636d968da2266651d46c97e43c3983b", - "x-ms-correlation-request-id": "350658fc-80b8-4cc7-a887-676f480dc071", - "x-ms-request-id": "eda6a03b-81f7-4626-9cae-660a5c667405", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset250306577", - "name": "Dataset250306577", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "b30071c0-0000-0800-0000-5fe10a7c0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset1088100696?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-ae90a816c67477408fee9b80c90f1801-876ae403221e0946-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "7cb11ee0ea35f2cb348e8007cc90ee3d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "452", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:36 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-ms-client-request-id": "7cb11ee0ea35f2cb348e8007cc90ee3d", - "x-ms-correlation-request-id": "d74862a7-1129-46d4-ae7f-0f0180531371", - "x-ms-request-id": "1cfe9d62-5ef4-4a80-96da-0e72db65c933", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1088100696", - "name": "Dataset1088100696", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "b300f9c8-0000-0800-0000-5fe10a930000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset304476999?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-876dd027ed21234ca72ebfa453548b21-f41180a243296542-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "3dbc76a8bed7e29d964c2e505be71755", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "450", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:36 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-ms-client-request-id": "3dbc76a8bed7e29d964c2e505be71755", - "x-ms-correlation-request-id": "c707fa18-1506-4ac2-bb9d-3bd2db14941b", - "x-ms-request-id": "a757fadd-662c-47af-b7be-9a8f50c75a1f", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset304476999", - "name": "Dataset304476999", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "b400a76e-0000-0800-0000-5fe10c290000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset742906215?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-8f4c01e4d5e4b241b09be397c7f09687-4167e5d2e49dd940-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "9860680130ca7db80e44e293595e9a8d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "450", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:36 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-ms-client-request-id": "9860680130ca7db80e44e293595e9a8d", - "x-ms-correlation-request-id": "ca178bbe-56b8-4af7-8965-997694a8f99d", - "x-ms-request-id": "7138d592-deb9-45b3-928c-006824f6b561", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset742906215", - "name": "Dataset742906215", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "b4006578-0000-0800-0000-5fe10c410000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset1229193366?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-8e100190b7d52d4da144e83c1a916ddb-934413949d84c247-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "ccd68c575a06216381cee6e9bc7a974c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "452", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:36 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-ms-client-request-id": "ccd68c575a06216381cee6e9bc7a974c", - "x-ms-correlation-request-id": "ef64aafb-eca5-406e-9198-66e79d478540", - "x-ms-request-id": "0f31128f-cbcc-4bd3-aba5-cb3ecebaed50", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1229193366", - "name": "Dataset1229193366", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "b70025c3-0000-0800-0000-5fe1141d0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset809552041?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-3e68e1a06e76e844a4b667babecf8e84-1e935db5fe66374e-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "64052a76552f7872bd3f2f93dc098838", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "450", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:37 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-ms-client-request-id": "64052a76552f7872bd3f2f93dc098838", - "x-ms-correlation-request-id": "e1e2f734-0fd7-45ad-84c5-ffbc13535711", - "x-ms-request-id": "e8e72d98-6bec-4ddb-9882-f342d2af9d75", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset809552041", - "name": "Dataset809552041", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "b70013d1-0000-0800-0000-5fe1143e0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset126732669?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-aa23183e318b0a4a8ebe4b9afd112ba8-750378b10ea75344-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "cff8a0b14a11a74e043f16fc4acfc193", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "450", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:37 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-ms-client-request-id": "cff8a0b14a11a74e043f16fc4acfc193", - "x-ms-correlation-request-id": "20bd2d4f-f689-4d48-a5a8-973d7bd8b19b", - "x-ms-request-id": "f56e4b40-ad26-4f37-8273-2c70a3af8592", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset126732669", - "name": "Dataset126732669", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "b80049a5-0000-0800-0000-5fe1166f0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset2009218825?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-5d7a07c514ea3f4d9717407ad7725fd2-3fb49a179a75f449-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "2e1d96ad3658015e195e0ec72bd04578", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "452", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:37 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-ms-client-request-id": "2e1d96ad3658015e195e0ec72bd04578", - "x-ms-correlation-request-id": "b1b9d608-0aa6-4a06-aad6-c9e604ecf213", - "x-ms-request-id": "d9071d15-b377-40bc-8238-6143b5dcd481", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset2009218825", - "name": "Dataset2009218825", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "b8006fad-0000-0800-0000-5fe116820000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset1035838221?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-3c499ab36ca2064a9e2bc68b7d519a5f-71bdf5a99b193e43-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "1b37ae45c8822c3adc5e5fef3e762eee", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "452", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:37 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-ms-client-request-id": "1b37ae45c8822c3adc5e5fef3e762eee", - "x-ms-correlation-request-id": "e7a3e201-b862-4d22-9b90-b8595b5faece", - "x-ms-request-id": "61be588f-2401-4d8c-8262-6287b11b208e", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1035838221", - "name": "Dataset1035838221", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "b9006b48-0000-0800-0000-5fe1182a0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset1513329315?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-6846aa245fc2ed46ba275a61edbace76-08542d1f7d72904e-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "46e69b7d59ec7adf42f6b5b33b867b34", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "452", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:37 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-ms-client-request-id": "46e69b7d59ec7adf42f6b5b33b867b34", - "x-ms-correlation-request-id": "846a387b-e993-4182-97de-31cf93cb12d3", - "x-ms-request-id": "06f2b33c-235c-4881-93e7-ee74eabbc272", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1513329315", - "name": "Dataset1513329315", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "b9006e4f-0000-0800-0000-5fe1183e0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset1610066326?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-2fa5d9ad48f885439c307aa997dceee4-bf6b3022def6fc48-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "9bb69ef9a697e5115bf052f9d66ec3a3", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "452", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:37 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-ms-client-request-id": "9bb69ef9a697e5115bf052f9d66ec3a3", - "x-ms-correlation-request-id": "21588881-8187-445a-beda-25757bc4ab5c", - "x-ms-request-id": "bd8dac63-bc3d-4871-b8f1-998aaa340d05", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1610066326", - "name": "Dataset1610066326", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "00009deb-0000-0800-0000-5fe259200000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset1263275506?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-fd77c7682d658a40b18dd157c87f29ce-7a3c62634d3a614f-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "904a2030ffe9ec8ccebcd88c1287f055", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "452", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:37 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-ms-client-request-id": "904a2030ffe9ec8ccebcd88c1287f055", - "x-ms-correlation-request-id": "54f33e88-c493-457c-8236-e2d76a44bd72", - "x-ms-request-id": "1c381425-cd2d-4566-8080-faa8652ac228", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1263275506", - "name": "Dataset1263275506", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "0000dceb-0000-0800-0000-5fe259370000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset831101464?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-bf43ec0b13d24f4fbba34aacc747bf43-8510abe99e6e3444-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "a0f62be292bfd6578a01eafb07e5a4d3", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "450", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:37 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-ms-client-request-id": "a0f62be292bfd6578a01eafb07e5a4d3", - "x-ms-correlation-request-id": "a025b594-b357-4ca8-b377-5568d0b223b5", - "x-ms-request-id": "c3cfb6f0-9db0-4e94-a35c-1e9ca76c370a", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset831101464", - "name": "Dataset831101464", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "000071f2-0000-0800-0000-5fe25b470000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset975710103?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-4d4aacc37dbfc248a54e984d8c9d9d7e-127be6707a9f2b41-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "1b821133eb3cfa4a12cacddacd85d2d3", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "450", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36: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-ms-client-request-id": "1b821133eb3cfa4a12cacddacd85d2d3", - "x-ms-correlation-request-id": "86d100ae-c921-4331-8634-692c6527fb71", - "x-ms-request-id": "add1d256-1ebf-44c6-9f4e-1241cd34b1e9", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset975710103", - "name": "Dataset975710103", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "0000c2f2-0000-0800-0000-5fe25b600000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset1532745294?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-05f091025bd61c4b9cf8828f1817c60c-ab131540da544647-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "ab16fc0022789ee4c87305e81490e4e8", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "452", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36: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-ms-client-request-id": "ab16fc0022789ee4c87305e81490e4e8", - "x-ms-correlation-request-id": "7ec2afdd-b84a-4123-a966-769261fb0f40", - "x-ms-request-id": "67c3ffec-0165-44f3-8cf7-805fdc39ce4e", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1532745294", - "name": "Dataset1532745294", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "00009af8-0000-0800-0000-5fe25d0f0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset642859093?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-e08eb61cfc71264eadaff06dacba3669-5f10c2019505c643-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "01580518d404f719e1fb8df4c47c0804", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "450", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36: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-ms-client-request-id": "01580518d404f719e1fb8df4c47c0804", - "x-ms-correlation-request-id": "6753c62c-e57b-4ff0-8094-59779081e09a", - "x-ms-request-id": "33a4ff6d-da14-417e-944d-cff736ba7a45", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset642859093", - "name": "Dataset642859093", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "0000cbf8-0000-0800-0000-5fe25d290000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset610648447?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-9742ac604f35154d9ab79f21fba15aae-613e09851b5cfe42-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "0afa172ef8ce105b2de452c8e561e581", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "450", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36: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-ms-client-request-id": "0afa172ef8ce105b2de452c8e561e581", - "x-ms-correlation-request-id": "7db0a155-681b-4cf9-a9e1-91a0cd0491ce", - "x-ms-request-id": "62427150-8d1b-430c-b0fb-271a901f62bd", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset610648447", - "name": "Dataset610648447", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "03008476-0000-0800-0000-5fe3896f0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset1768122808?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-66cd5768a881024c81b828d3fbce6c36-ce79922155052d4a-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "c8c2e4e5d12c2ccee31fc97c94efd94c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "452", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36: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-ms-client-request-id": "c8c2e4e5d12c2ccee31fc97c94efd94c", - "x-ms-correlation-request-id": "2d6ffb27-8998-4621-b409-715892882acf", - "x-ms-request-id": "a6f20e0c-0d78-4f56-a38b-e6cef69ddb96", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1768122808", - "name": "Dataset1768122808", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "0300c876-0000-0800-0000-5fe389890000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets?api-version=2019-06-01-preview\u0026%24skipToken=%2BRID%3A~Sl8ZAKxwhAAEXAAAAAD8BA%3D%3D%23RT%3A2%23TRC%3A100%23ISV%3A2%23IEO%3A65551%23QCF%3A1", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-8a8203022b264743837b09a4aed3af3e-20e1926dfc28e54e-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "fdb9006ada961f19a948d3208150117f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Length": "12216", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:38 GMT", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "fdb9006ada961f19a948d3208150117f", - "x-ms-request-id": "df10566c-4ecd-456a-84bc-d7fb48c3d660" - }, - "ResponseBody": { - "value": [ - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset452772599", - "name": "Dataset452772599", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "0300397f-0000-0800-0000-5fe38cbf0000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset507565816", - "name": "Dataset507565816", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "0300747f-0000-0800-0000-5fe38cd40000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset878355824", - "name": "Dataset878355824", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "0300538a-0000-0800-0000-5fe3906f0000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1540765703", - "name": "Dataset1540765703", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "03008f8a-0000-0800-0000-5fe390820000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1819106109", - "name": "Dataset1819106109", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "0300d193-0000-0800-0000-5fe3938e0000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1245887281", - "name": "Dataset1245887281", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "03001e94-0000-0800-0000-5fe393ab0000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1311114648", - "name": "Dataset1311114648", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "0300579c-0000-0800-0000-5fe396a80000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1981309649", - "name": "Dataset1981309649", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "0300979c-0000-0800-0000-5fe396c40000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset840729998", - "name": "Dataset840729998", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "030064a5-0000-0800-0000-5fe399bf0000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1716085994", - "name": "Dataset1716085994", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "0300a2a5-0000-0800-0000-5fe399d90000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset105243722", - "name": "Dataset105243722", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "030015b1-0000-0800-0000-5fe39dca0000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset636824184", - "name": "Dataset636824184", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "030069b1-0000-0800-0000-5fe39de50000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1769803455", - "name": "Dataset1769803455", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "0300b9c2-0000-0800-0000-5fe3a36a0000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1986683637", - "name": "Dataset1986683637", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "030013c3-0000-0800-0000-5fe3a3890000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1694914848", - "name": "Dataset1694914848", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "0300d6d0-0000-0800-0000-5fe3a7fd0000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset507166158", - "name": "Dataset507166158", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "03001ed1-0000-0800-0000-5fe3a81a0000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1301674281", - "name": "Dataset1301674281", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "02075845-0000-0800-0000-6000bc780000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset2019721760", - "name": "Dataset2019721760", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "02073a59-0000-0800-0000-6000bc920000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1276306815", - "name": "Dataset1276306815", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "c407b0ab-0000-0800-0000-6001c0970000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1596262510", - "name": "Dataset1596262510", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "c4079ac1-0000-0800-0000-6001c0b10000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset710526834", - "name": "Dataset710526834", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "c807dcc1-0000-0800-0000-6001c60b0000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1066387120", - "name": "Dataset1066387120", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "c80744d6-0000-0800-0000-6001c6270000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset917629639", - "name": "Dataset917629639", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "3000b4bd-0000-0800-0000-6008735b0000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset154359321", - "name": "Dataset154359321", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "300043d6-0000-0800-0000-6008737c0000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset104292326", - "name": "Dataset104292326", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "3300b865-0000-0800-0000-600876fc0000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset152774978", - "name": "Dataset152774978", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "3300b077-0000-0800-0000-600877180000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset106638712", - "name": "Dataset106638712", - "type": "Microsoft.Synapse/workspaces/datasets", - "etag": "51007e5b-0000-0800-0000-6008a2510000", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - } - } - ] - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset452772599?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-c830d2939b2ea74282e8c3fe89d805dd-7b38db96371d784f-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "e00f0c1540ba5dd848ce26af2ede7b3d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "450", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36: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-ms-client-request-id": "e00f0c1540ba5dd848ce26af2ede7b3d", - "x-ms-correlation-request-id": "d61c7a53-c5cb-4d74-a69f-954e453f30fe", - "x-ms-request-id": "0d55df19-38e5-42a2-8e11-2da1de2c83c2", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset452772599", - "name": "Dataset452772599", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "0300397f-0000-0800-0000-5fe38cbf0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset507565816?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-2449d70f2416674cad56057e43b32880-70cc8bea545ec74d-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "e45d060be8a70bebcaa21ee4fdaeaa92", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "450", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:39 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-ms-client-request-id": "e45d060be8a70bebcaa21ee4fdaeaa92", - "x-ms-correlation-request-id": "7f4861d1-8156-4493-b3e8-aecbfc4ed6b1", - "x-ms-request-id": "9a196543-3eea-4b4d-8ff2-d1bdc59e5615", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset507565816", - "name": "Dataset507565816", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "0300747f-0000-0800-0000-5fe38cd40000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset878355824?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-6ab9c6480ce3b541b459b088236af6c8-9b5819dad3a8b049-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "88674a0df8e02a92285cb4c7b36af1cb", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "450", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:39 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-ms-client-request-id": "88674a0df8e02a92285cb4c7b36af1cb", - "x-ms-correlation-request-id": "28a3816a-6849-45e3-b18a-ef174593fba1", - "x-ms-request-id": "3c9e2d0c-0e66-4658-8997-829aa5655c9d", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset878355824", - "name": "Dataset878355824", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "0300538a-0000-0800-0000-5fe3906f0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset1540765703?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-a38008b5e156e546a76c0a04c3a275ae-0026cc0742a59b42-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "7b1496cc2cf22dd72004151721f46099", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "452", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:39 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-ms-client-request-id": "7b1496cc2cf22dd72004151721f46099", - "x-ms-correlation-request-id": "ac968abe-8fad-4904-97d2-dd18ccadaf95", - "x-ms-request-id": "149aabd6-a922-4925-b649-54bd2cb0eea4", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1540765703", - "name": "Dataset1540765703", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "03008f8a-0000-0800-0000-5fe390820000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset1819106109?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-692c249c3b8c9145b0539506d0c28a38-a930a0ba7107124e-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "e4a19324f277125d7333bc4b34245760", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "452", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:39 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-ms-client-request-id": "e4a19324f277125d7333bc4b34245760", - "x-ms-correlation-request-id": "357219c3-6ee7-4245-a992-22b30ac6eb22", - "x-ms-request-id": "55a0f64c-0154-434b-b250-d56d5b4e45a1", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1819106109", - "name": "Dataset1819106109", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "0300d193-0000-0800-0000-5fe3938e0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset1245887281?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-0e0293415d9abc4b81b3d8aef5d8895b-c68bff12de690d4b-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "671753b12e99e1a0723a68dbe37a0933", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "452", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:39 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-ms-client-request-id": "671753b12e99e1a0723a68dbe37a0933", - "x-ms-correlation-request-id": "d981ff8d-1cb6-4b45-852f-c45082acd466", - "x-ms-request-id": "2cc907c2-2b03-4983-b715-9a9f762c2580", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1245887281", - "name": "Dataset1245887281", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "03001e94-0000-0800-0000-5fe393ab0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset1311114648?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-2932055d98ab514f979d4e3d300134fb-6e904dcbaf406d47-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "1fa31afb0cc8d954380208bf6f8bf8fc", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "452", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:39 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-ms-client-request-id": "1fa31afb0cc8d954380208bf6f8bf8fc", - "x-ms-correlation-request-id": "6a7ea3fb-6100-4954-9a9b-d898297312bd", - "x-ms-request-id": "998ce1bd-435e-4e14-94e9-8d322de2ac74", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1311114648", - "name": "Dataset1311114648", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "0300579c-0000-0800-0000-5fe396a80000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset1981309649?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-09c54ab6ccf11d489dc07149827f84c4-202b704e4dd6fb4e-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "ce66b5acf9dcf600f3c0713d8a812ff8", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "452", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:39 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-ms-client-request-id": "ce66b5acf9dcf600f3c0713d8a812ff8", - "x-ms-correlation-request-id": "5432c717-305f-41b8-a664-272163d7467d", - "x-ms-request-id": "44d68523-4956-4d9a-9763-93cd7aae7d6e", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1981309649", - "name": "Dataset1981309649", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "0300979c-0000-0800-0000-5fe396c40000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset840729998?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-674c7f1e74017c418d7d1d39cf150277-05b736447af9794c-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "1950882a3880a497fe3e2e9726e071e6", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "450", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:40 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-ms-client-request-id": "1950882a3880a497fe3e2e9726e071e6", - "x-ms-correlation-request-id": "97d8a495-9129-4400-bfd2-50f14c0a22eb", - "x-ms-request-id": "9ceaa87d-3f58-49e5-92e5-0189bd57d65d", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset840729998", - "name": "Dataset840729998", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "030064a5-0000-0800-0000-5fe399bf0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset1716085994?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-e1c303b5ea95ea4bb12861a0cf1b4869-faf691bdc570bc41-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "2d2f6b413b1302571aac2b089a174eb6", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "452", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:40 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-ms-client-request-id": "2d2f6b413b1302571aac2b089a174eb6", - "x-ms-correlation-request-id": "88a57c7b-e207-4299-b326-f331a5b5f0c8", - "x-ms-request-id": "568c7e5e-fda1-4709-82c3-bb706bb6964b", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1716085994", - "name": "Dataset1716085994", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "0300a2a5-0000-0800-0000-5fe399d90000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset105243722?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-dd2fd7dad544ae47b9cce352f6978311-2414789d475d7e49-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "e7940fd2df3b747b1ec2cf9eca68d012", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "450", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:40 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-ms-client-request-id": "e7940fd2df3b747b1ec2cf9eca68d012", - "x-ms-correlation-request-id": "56038235-5480-4cb9-848e-2b316e962e11", - "x-ms-request-id": "41ce46c7-7f96-4107-91e5-f052246ebfad", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset105243722", - "name": "Dataset105243722", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "030015b1-0000-0800-0000-5fe39dca0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset636824184?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-f928f8b6a56d21478b67342be74801da-0078bfe34355ed43-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "1ffc8b4e0252efe5314dfed40c8e0ae7", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "450", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:40 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-ms-client-request-id": "1ffc8b4e0252efe5314dfed40c8e0ae7", - "x-ms-correlation-request-id": "d10fddad-4b27-420c-bd0f-aa6b8335748f", - "x-ms-request-id": "91ab6c01-761d-4143-87a6-623ffa37ddc3", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset636824184", - "name": "Dataset636824184", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "030069b1-0000-0800-0000-5fe39de50000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset1769803455?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-95bea9f4d6f4e8429093a59e341efcf3-b43d5517dad3d243-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "16c477ef8a4b61abf0bb0f516bb837b2", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "452", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:40 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-ms-client-request-id": "16c477ef8a4b61abf0bb0f516bb837b2", - "x-ms-correlation-request-id": "862956b7-ee73-40ed-a45f-9900594da12f", - "x-ms-request-id": "d5741576-5f8e-4f30-8075-10059c2c181c", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1769803455", - "name": "Dataset1769803455", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "0300b9c2-0000-0800-0000-5fe3a36a0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset1986683637?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-7f804c938a762e478965e029fdddda81-237c7c01f13d4447-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "0fba19dc2f1ad0642aa5b5ede0a7678f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "452", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:40 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-ms-client-request-id": "0fba19dc2f1ad0642aa5b5ede0a7678f", - "x-ms-correlation-request-id": "e13693e6-5b80-4d2c-875f-8839d9de2aa5", - "x-ms-request-id": "1735cf06-68f4-4064-8676-d8cf6e64970b", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1986683637", - "name": "Dataset1986683637", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "030013c3-0000-0800-0000-5fe3a3890000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset1694914848?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-6b0d523159879b41bea0ac058650d1a5-dd01efbfd61e5145-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "52afe7b8b9a3c4c6e09a2e96f2938378", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "452", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:40 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-ms-client-request-id": "52afe7b8b9a3c4c6e09a2e96f2938378", - "x-ms-correlation-request-id": "a0b19ee3-1956-446e-aab2-59048cea312d", - "x-ms-request-id": "35aa59be-768a-4ac9-80fc-420350b27344", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1694914848", - "name": "Dataset1694914848", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "0300d6d0-0000-0800-0000-5fe3a7fd0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset507166158?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-c69cd6fea554c0479f4459225790ac3a-0c0da046addf694f-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "f3f74c15fad4bfcc13f4eca6d4bd8148", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "450", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:40 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-ms-client-request-id": "f3f74c15fad4bfcc13f4eca6d4bd8148", - "x-ms-correlation-request-id": "7ba8e499-a39b-45e0-9b93-50f38fcca826", - "x-ms-request-id": "ed29f1f3-276f-40bb-8fb2-66e65966bba6", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset507166158", - "name": "Dataset507166158", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "03001ed1-0000-0800-0000-5fe3a81a0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset1301674281?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-0b9f2791f1a3d9469ac01a2f667b95af-19e23a481ff3b84b-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "84997f53e509230e52f52f8000cddd96", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "452", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:41 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-ms-client-request-id": "84997f53e509230e52f52f8000cddd96", - "x-ms-correlation-request-id": "3c701adc-1c94-4e2c-822e-ea97d621586d", - "x-ms-request-id": "fe47d2cc-db3c-47f0-be5d-e8a0e70f6a83", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1301674281", - "name": "Dataset1301674281", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" + "linkedServiceName": { + "referenceName": "testsynapseworkspace-WorkspaceDefaultStorage", + "type": "LinkedServiceReference" + }, + "annotations": [], + "type": "DelimitedText", + "typeProperties": { + "location": { + "type": "AzureBlobFSLocation" + }, + "columnDelimiter": ",", + "escapeChar": "\\", + "quoteChar": "\u0022" + }, + "schema": [] + } + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/datasets/Dataset2095422558", + "name": "Dataset2095422558", + "type": "Microsoft.Synapse/workspaces/datasets", + "etag": "00000c00-0000-0100-0000-600161bd0000", + "properties": { + "type1": "Dataset", + "linkedServiceName": { + "type": "LinkedServiceReference" + } + } + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/datasets/Dataset2095422559", + "name": "Dataset2095422559", + "type": "Microsoft.Synapse/workspaces/datasets", + "etag": "00005000-0000-0100-0000-6001625d0000", + "properties": { + "linkedServiceName": { + "type": "LinkedServiceReference" + } + } + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/datasets/Dataset710526834", + "name": "Dataset710526834", + "type": "Microsoft.Synapse/workspaces/datasets", + "etag": "2e00e07f-0000-0100-0000-6155565b0000", + "properties": { + "type": "Dataset", + "linkedServiceName": { + "type": "LinkedServiceReference", + "referenceName": "testsynapseworkspace-WorkspaceDefaultStorage" + } + } + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/datasets/Dataset106638712", + "name": "Dataset106638712", + "type": "Microsoft.Synapse/workspaces/datasets", + "etag": "2e00ed7f-0000-0100-0000-615556690000", + "properties": { + "type": "Dataset", + "linkedServiceName": { + "type": "LinkedServiceReference", + "referenceName": "testsynapseworkspace-WorkspaceDefaultStorage" + } + } } - }, - "etag": "02075845-0000-0800-0000-6000bc780000" + ] } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset2019721760?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/datasets/DelimitedText1?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-b00f72417318134baa2d5d218e4a9e37-bba3a6a3cccf7849-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "93d83d2274b0bdbb1aef3fafcc20f022", + "traceparent": "00-0d7cff79d0b6dd41a4f8b550272b9d34-15dd73da76f28141-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "53df9581ac3104b9dc7b07371bf71393", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "452", + "Content-Length": "590", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:41 GMT", + "Date": "Thu, 30 Sep 2021 06:17:20 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "93d83d2274b0bdbb1aef3fafcc20f022", - "x-ms-correlation-request-id": "75a92769-9862-4133-b8a1-d21256475378", - "x-ms-request-id": "740022b1-45e3-4d6b-9924-0ebc0ba498a5", + "x-ms-client-request-id": "53df9581ac3104b9dc7b07371bf71393", + "x-ms-correlation-request-id": "b5643324-fd18-418a-98d3-f28fd67d624c", + "x-ms-request-id": "53cd9672-19fe-4ceb-a951-e87958efa1c1", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset2019721760", - "name": "Dataset2019721760", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/datasets/DelimitedText1", + "name": "DelimitedText1", "type": "Microsoft.Synapse/workspaces/datasets", "properties": { - "type": "Dataset", "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } + "referenceName": "testsynapseworkspace-WorkspaceDefaultStorage", + "type": "LinkedServiceReference" + }, + "annotations": [], + "type": "DelimitedText", + "typeProperties": { + "location": { + "type": "AzureBlobFSLocation" + }, + "columnDelimiter": ",", + "escapeChar": "\\", + "quoteChar": "\u0022" + }, + "schema": [] }, - "etag": "02073a59-0000-0800-0000-6000bc920000" + "etag": "1b004dbf-0000-0100-0000-5f5838240000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset1276306815?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/datasets/Dataset2095422558?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-761a30af1709604fa8392030cf1ccf53-73d08f53bf651243-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "7343e618fff9306e3ed3a1decb4cbe45", + "traceparent": "00-8a8726cbf2ba094d8b4d98bf9893ee4c-5a210a47d65b7e4a-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "f43e2693f8fb254bfc7966758263b13f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "452", + "Content-Length": "381", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:41 GMT", + "Date": "Thu, 30 Sep 2021 06:17:20 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "7343e618fff9306e3ed3a1decb4cbe45", - "x-ms-correlation-request-id": "2fd1ec88-e79f-45a5-bbbb-1b3ab3a53de5", - "x-ms-request-id": "bdc00379-b7ee-4a0b-9030-fdc6c535bac0", + "x-ms-client-request-id": "f43e2693f8fb254bfc7966758263b13f", + "x-ms-correlation-request-id": "4ac823ab-378e-40b2-aeeb-549c68a6c5f4", + "x-ms-request-id": "5181bd6b-fa3a-4d55-981e-b42e7b815afb", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1276306815", - "name": "Dataset1276306815", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/datasets/Dataset2095422558", + "name": "Dataset2095422558", "type": "Microsoft.Synapse/workspaces/datasets", "properties": { - "type": "Dataset", + "type1": "Dataset", "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" + "type": "LinkedServiceReference" } }, - "etag": "c407b0ab-0000-0800-0000-6001c0970000" + "etag": "00000c00-0000-0100-0000-600161bd0000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset1596262510?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/datasets/Dataset2095422559?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-cfe0d57ad93b07449badc71f025bfddc-c4894361a74ce74c-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "97835616ede4de98c3dc691aa65f5731", + "traceparent": "00-13ecea58b102ed4cbf1c1c818c876f20-ba1de1a15c018c46-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "5c2d9500a44686a0428f1c4c052dfc5c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "452", + "Content-Length": "363", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:41 GMT", + "Date": "Thu, 30 Sep 2021 06:17:21 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "97835616ede4de98c3dc691aa65f5731", - "x-ms-correlation-request-id": "a98b55a3-c22f-4b61-b9b9-87fd9ecfb0b1", - "x-ms-request-id": "7688f7a6-554b-45cb-bb53-6a04142f3aa8", + "x-ms-client-request-id": "5c2d9500a44686a0428f1c4c052dfc5c", + "x-ms-correlation-request-id": "7f5b3586-a53e-4546-902d-8d5814c27447", + "x-ms-request-id": "7584c761-aa78-4035-b952-763c22508f18", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1596262510", - "name": "Dataset1596262510", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/datasets/Dataset2095422559", + "name": "Dataset2095422559", "type": "Microsoft.Synapse/workspaces/datasets", "properties": { - "type": "Dataset", "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" + "type": "LinkedServiceReference" } }, - "etag": "c4079ac1-0000-0800-0000-6001c0b10000" + "etag": "00005000-0000-0100-0000-6001625d0000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset710526834?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/datasets/Dataset710526834?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-6dc0fc23cf9de94cbee36d733bdeafd9-0cb7cfc9e678a943-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "1a670c056a8a239ccea755dcd3dcf2ce", + "traceparent": "00-06025cd9fbed9b4681103906d7ff9441-7322e2a8aead8444-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "eec12f6fe1f189f749ba57b746438279", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "450", + "Content-Length": "441", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:41 GMT", + "Date": "Thu, 30 Sep 2021 06:17:21 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "1a670c056a8a239ccea755dcd3dcf2ce", - "x-ms-correlation-request-id": "2664788b-8de7-485b-8abd-ef031aabc6e7", - "x-ms-request-id": "d930b2c8-300c-4f07-b44e-2c15bedc71a3", + "x-ms-client-request-id": "eec12f6fe1f189f749ba57b746438279", + "x-ms-correlation-request-id": "8834262c-4fa4-41ea-8d07-dcfe8da2f88b", + "x-ms-request-id": "63fb6963-5c79-4e4d-a5be-0af3d4c9aa0c", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset710526834", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/datasets/Dataset710526834", "name": "Dataset710526834", "type": "Microsoft.Synapse/workspaces/datasets", "properties": { "type": "Dataset", "linkedServiceName": { "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "c807dcc1-0000-0800-0000-6001c60b0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset1066387120?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-6ff510e0013d014d88b4cdd69a194ac0-3d711ace8acbea49-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "7698f931589c2b3e4e64af1d95548ade", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "452", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:41 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-ms-client-request-id": "7698f931589c2b3e4e64af1d95548ade", - "x-ms-correlation-request-id": "83786e76-d0e1-4332-b461-f5d93d64b1d7", - "x-ms-request-id": "2825ba04-7cc6-4536-82a2-f090b52dc8ba", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset1066387120", - "name": "Dataset1066387120", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "c80744d6-0000-0800-0000-6001c6270000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset917629639?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-8af5e34d477a744db700fb530b20c734-6ca59c0a045c8348-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "bed96f7ca3e4acbbb960c83d98bb0be7", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "450", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:41 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-ms-client-request-id": "bed96f7ca3e4acbbb960c83d98bb0be7", - "x-ms-correlation-request-id": "0547b653-72af-423f-94ce-b4dc73d012ad", - "x-ms-request-id": "b4e81d97-4d04-4b87-a1c9-693bacc2a872", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset917629639", - "name": "Dataset917629639", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "3000b4bd-0000-0800-0000-6008735b0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset154359321?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-4528542d5e6bd046bfd95f760e4b3ec3-aaddf05b89800c49-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "ace89beae0c6ac94ce3ccc25ba7e8d79", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "450", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:42 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-ms-client-request-id": "ace89beae0c6ac94ce3ccc25ba7e8d79", - "x-ms-correlation-request-id": "f770b7c7-ce1c-4efb-8594-892afd98544c", - "x-ms-request-id": "34a4c09d-4396-4b00-bc41-0e5ebbf9572a", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset154359321", - "name": "Dataset154359321", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "300043d6-0000-0800-0000-6008737c0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset104292326?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-8355a8ce6369a945a59ba9c0d38718c5-7947eb63eee7f74a-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "6360761d33028de93decbd3c8f009292", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "450", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:42 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-ms-client-request-id": "6360761d33028de93decbd3c8f009292", - "x-ms-correlation-request-id": "7cd8b9b3-7905-4eb3-8714-bc66b24efa83", - "x-ms-request-id": "6fc581e0-b8f7-40d9-ad91-49010ad2d5f4", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset104292326", - "name": "Dataset104292326", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" - } - }, - "etag": "3300b865-0000-0800-0000-600876fc0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset152774978?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-4c61e1ec7f0a074b8115a82876180b14-3e20fd5efee5e240-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "f933c859dd6b9b18da2cf0a8d796f13a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "450", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:42 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-ms-client-request-id": "f933c859dd6b9b18da2cf0a8d796f13a", - "x-ms-correlation-request-id": "d1003912-bb0d-4980-9148-04199e39b062", - "x-ms-request-id": "7470102c-51cd-4344-b5f3-99ec76fc3c2f", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset152774978", - "name": "Dataset152774978", - "type": "Microsoft.Synapse/workspaces/datasets", - "properties": { - "type": "Dataset", - "linkedServiceName": { - "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" + "referenceName": "testsynapseworkspace-WorkspaceDefaultStorage" } }, - "etag": "3300b077-0000-0800-0000-600877180000" + "etag": "2e00e07f-0000-0100-0000-6155565b0000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/datasets/Dataset106638712?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/datasets/Dataset106638712?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-e4e465b525c28348b9aad6100f63fd10-dcb859250d13c040-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210120.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "22204ed2a75bb6e4b25b6fda23581ccd", + "traceparent": "00-71c514336ec94245b14c05fd285fbd77-552a3211df941940-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "8636c7c9b6caef4c86b8b26cdcff20ce", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "450", + "Content-Length": "441", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 20 Jan 2021 21:36:42 GMT", + "Date": "Thu, 30 Sep 2021 06:17:21 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "22204ed2a75bb6e4b25b6fda23581ccd", - "x-ms-correlation-request-id": "964c0952-840c-4487-9658-958ba9db0a6c", - "x-ms-request-id": "5d8a1ca7-d5d0-4145-a5a8-320d2540b3a7", + "x-ms-client-request-id": "8636c7c9b6caef4c86b8b26cdcff20ce", + "x-ms-correlation-request-id": "1f707bc7-82a1-49f2-afcd-7098350c69ea", + "x-ms-request-id": "8a4263b5-3cc5-4c24-af7d-48da927e2ac7", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/datasets/Dataset106638712", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/datasets/Dataset106638712", "name": "Dataset106638712", "type": "Microsoft.Synapse/workspaces/datasets", "properties": { "type": "Dataset", "linkedServiceName": { "type": "LinkedServiceReference", - "referenceName": "workspacechhamosynapse-WorkspaceDefaultStorage" + "referenceName": "testsynapseworkspace-WorkspaceDefaultStorage" } }, - "etag": "51007e5b-0000-0800-0000-6008a2510000" + "etag": "2e00ed7f-0000-0100-0000-615556690000" } } ], "Variables": { - "AZURE_SYNAPSE_WORKSPACE_URL": "https://workspacechhamosynapse.dev.azuresynapse.net", + "AZURE_SYNAPSE_WORKSPACE_URL": "https://testsynapseworkspace.dev.azuresynapse.net", "RandomSeed": "696646395" } } \ No newline at end of file diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/IntegrationRuntimesClientLiveTests/TestGet.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/IntegrationRuntimesClientLiveTests/TestGet.json index 0b9586ddedef..a8394c28edb0 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/IntegrationRuntimesClientLiveTests/TestGet.json +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/IntegrationRuntimesClientLiveTests/TestGet.json @@ -1,16 +1,13 @@ { "Entries": [ { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/integrationRuntimes?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/integrationRuntimes?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-8847b42f51eb4f4c82b4be1afbd5fd4b-7bd2e92c6c51a34a-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210119.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "traceparent": "00-43d0fcc488ee6b44ace67b1eeb65e396-eb6e15ca81d5f143-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7f2f28e202271efdae6a4a8139adace1", "x-ms-return-client-request-id": "true" }, @@ -18,58 +15,125 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "618", + "Content-Length": "2644", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 19 Jan 2021 17:00:03 GMT", + "Date": "Thu, 30 Sep 2021 06:17:21 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "7f2f28e202271efdae6a4a8139adace1", - "x-ms-correlation-request-id": "2bb99e2c-caed-4867-bd1f-2182df8e73be", - "x-ms-request-id": "99312fb3-efd8-4735-9537-cda14ce2969b", + "x-ms-correlation-request-id": "f51d70ea-d596-4699-aac8-9fbfe0aa17d6", + "x-ms-request-id": "c712c41f-f438-464a-861e-641af74ad086", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": [ { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/integrationruntimes/AutoResolveIntegrationRuntime", - "name": "AutoResolveIntegrationRuntime", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/integrationruntimes/SelfHostedIntegrationRuntime", + "name": "SelfHostedIntegrationRuntime", + "type": "Microsoft.Synapse/workspaces/integrationruntimes", + "properties": { + "type": "SelfHosted", + "typeProperties": {} + }, + "etag": "01008934-0000-0100-0000-5f6059030000" + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/integrationruntimes/DataflowIR", + "name": "DataflowIR", "type": "Microsoft.Synapse/workspaces/integrationruntimes", "properties": { "type": "Managed", "typeProperties": { "computeProperties": { - "location": "AutoResolve" + "dataFlowProperties": { + "computeType": "General", + "coreCount": 8, + "timeToLive": 0 + } } - }, - "provisioningState": null, - "managedVirtualNetwork": { - "referenceName": "default", - "type": "ManagedVirtualNetworkReference", - "id": "00b37b7e-290e-4973-9420-b91c9919100d" } }, - "etag": "ab033e9d-0000-0800-0000-5fd14daa0000" + "etag": "0000e3d8-0000-0100-0000-5f86990d0000" + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/integrationruntimes/DataflowIR3216", + "name": "DataflowIR3216", + "type": "Microsoft.Synapse/workspaces/integrationruntimes", + "properties": { + "type": "Managed", + "typeProperties": { + "computeProperties": { + "location": "AutoResolve", + "dataFlowProperties": { + "computeType": "General", + "coreCount": 8, + "timeToLive": 0 + } + } + } + }, + "etag": "0000a0d9-0000-0100-0000-5f869e650000" + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/integrationruntimes/DataflowIR2171", + "name": "DataflowIR2171", + "type": "Microsoft.Synapse/workspaces/integrationruntimes", + "properties": { + "type": "Managed", + "typeProperties": { + "computeProperties": { + "location": "AutoResolve", + "dataFlowProperties": { + "computeType": "General", + "coreCount": 8, + "timeToLive": 0 + } + } + } + }, + "etag": "0000acd9-0000-0100-0000-5f869ee10000" + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/integrationruntimes/testDataFlowIR", + "name": "testDataFlowIR", + "type": "Microsoft.Synapse/workspaces/integrationruntimes", + "properties": { + "type": "Managed", + "typeProperties": { + "computeProperties": { + "dataFlowProperties": { + "computeType": "General1", + "coreCount": 8, + "timeToLive": 0 + } + } + } + }, + "etag": "01009006-0000-0100-0000-5f8801790000" + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/integrationruntimes/IntegrationRuntime3", + "name": "IntegrationRuntime3", + "type": "Microsoft.Synapse/workspaces/integrationruntimes", + "properties": { + "type": "SelfHosted" + }, + "etag": "c100a761-0000-0100-0000-5fceeb240000" } ] } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/integrationRuntimes/AutoResolveIntegrationRuntime?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/integrationRuntimes/SelfHostedIntegrationRuntime?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-ed40bb0606a879429fc5134aa67f3c6d-1e9b3a6334dc0545-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210119.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "traceparent": "00-2a4b3cfed2ac244885c7f1837d9153a7-050a041e0d6f8a45-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "4664c7a6463125a93b388d12ff7348c5", "x-ms-return-client-request-id": "true" }, @@ -77,46 +141,261 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "606", + "Content-Length": "393", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 19 Jan 2021 17:00:03 GMT", + "Date": "Thu, 30 Sep 2021 06:17:21 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "4664c7a6463125a93b388d12ff7348c5", - "x-ms-correlation-request-id": "e7b62151-06d5-4d07-984e-dbe7fd64c556", - "x-ms-request-id": "be253e61-917a-4898-af6f-f8a8af65141c", + "x-ms-correlation-request-id": "ce5ee225-1210-4cef-9f36-b6c62bc25928", + "x-ms-request-id": "16c6da14-4cad-4729-a325-3ead7aac3c17", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/integrationruntimes/SelfHostedIntegrationRuntime", + "name": "SelfHostedIntegrationRuntime", + "type": "Microsoft.Synapse/workspaces/integrationruntimes", + "properties": { + "type": "SelfHosted", + "typeProperties": {} + }, + "etag": "01008934-0000-0100-0000-5f6059030000" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/integrationRuntimes/DataflowIR?api-version=2020-12-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-1bc416aa0d2c0241b1120965d626c688-d25a9cf071025a4a-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "15d0fc6048dbe78badea78409b54a4bc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "451", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 30 Sep 2021 06:17:21 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-ms-client-request-id": "15d0fc6048dbe78badea78409b54a4bc", + "x-ms-correlation-request-id": "9010256a-541c-4e35-b230-a087667e59a2", + "x-ms-request-id": "37c795c7-958f-455b-9363-30f0fe2d1105", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/integrationruntimes/AutoResolveIntegrationRuntime", - "name": "AutoResolveIntegrationRuntime", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/integrationruntimes/DataflowIR", + "name": "DataflowIR", "type": "Microsoft.Synapse/workspaces/integrationruntimes", "properties": { "type": "Managed", "typeProperties": { "computeProperties": { - "location": "AutoResolve" + "dataFlowProperties": { + "computeType": "General", + "coreCount": 8, + "timeToLive": 0 + } + } + } + }, + "etag": "0000e3d8-0000-0100-0000-5f86990d0000" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/integrationRuntimes/DataflowIR3216?api-version=2020-12-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-e78153d4edf2b84eb9dce9bbcde3d4fd-7fd7007c1829c24b-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "aa01997e57869be07f0944ef74ea1f3b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "484", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 30 Sep 2021 06:17:22 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-ms-client-request-id": "aa01997e57869be07f0944ef74ea1f3b", + "x-ms-correlation-request-id": "e9e3f09a-2187-467b-8379-609ae8bd778b", + "x-ms-request-id": "cd54cff8-e6c7-46ea-af2f-c6eeca915a04", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/integrationruntimes/DataflowIR3216", + "name": "DataflowIR3216", + "type": "Microsoft.Synapse/workspaces/integrationruntimes", + "properties": { + "type": "Managed", + "typeProperties": { + "computeProperties": { + "location": "AutoResolve", + "dataFlowProperties": { + "computeType": "General", + "coreCount": 8, + "timeToLive": 0 + } + } + } + }, + "etag": "0000a0d9-0000-0100-0000-5f869e650000" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/integrationRuntimes/DataflowIR2171?api-version=2020-12-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-81329dafc96b9243aef5107108fb3c88-6fdf7859dc624441-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "3c21842197dc5d063b7c9847cd6889e7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "484", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 30 Sep 2021 06:17:22 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-ms-client-request-id": "3c21842197dc5d063b7c9847cd6889e7", + "x-ms-correlation-request-id": "6834c00c-3bf2-487e-993b-eaebdd4a02c6", + "x-ms-request-id": "e26f990d-a4eb-43cc-8ec9-d76a6c0cb0fc", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/integrationruntimes/DataflowIR2171", + "name": "DataflowIR2171", + "type": "Microsoft.Synapse/workspaces/integrationruntimes", + "properties": { + "type": "Managed", + "typeProperties": { + "computeProperties": { + "location": "AutoResolve", + "dataFlowProperties": { + "computeType": "General", + "coreCount": 8, + "timeToLive": 0 + } + } + } + }, + "etag": "0000acd9-0000-0100-0000-5f869ee10000" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/integrationRuntimes/testDataFlowIR?api-version=2020-12-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-a56efef62d51434886d378544755e27b-6eb8ead6e487ad4f-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "6594d0949e71083e1b3496d1049b73c3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "460", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 30 Sep 2021 06:17:22 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-ms-client-request-id": "6594d0949e71083e1b3496d1049b73c3", + "x-ms-correlation-request-id": "cdc01750-2e0a-47dc-9ab0-33a2fd01d6c4", + "x-ms-request-id": "cbc326b4-f421-47e3-b167-d53ced52fba2", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/integrationruntimes/testDataFlowIR", + "name": "testDataFlowIR", + "type": "Microsoft.Synapse/workspaces/integrationruntimes", + "properties": { + "type": "Managed", + "typeProperties": { + "computeProperties": { + "dataFlowProperties": { + "computeType": "General1", + "coreCount": 8, + "timeToLive": 0 + } } - }, - "provisioningState": null, - "managedVirtualNetwork": { - "referenceName": "default", - "type": "ManagedVirtualNetworkReference", - "id": "00b37b7e-290e-4973-9420-b91c9919100d" } }, - "etag": "ab033e9d-0000-0800-0000-5fd14daa0000" + "etag": "01009006-0000-0100-0000-5f8801790000" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/integrationRuntimes/IntegrationRuntime3?api-version=2020-12-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-973133d605c01649bdef3d0af2e60b28-a1584055fff59e4b-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "161e3dcb6732e7e093a36e09bf99cd16", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "355", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 30 Sep 2021 06:17:22 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-ms-client-request-id": "161e3dcb6732e7e093a36e09bf99cd16", + "x-ms-correlation-request-id": "fd468fcd-8f85-4403-a45f-99cd47e95b3a", + "x-ms-request-id": "fc4bc193-50ec-488b-bcee-926634512b05", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/integrationruntimes/IntegrationRuntime3", + "name": "IntegrationRuntime3", + "type": "Microsoft.Synapse/workspaces/integrationruntimes", + "properties": { + "type": "SelfHosted" + }, + "etag": "c100a761-0000-0100-0000-5fceeb240000" } } ], "Variables": { - "AZURE_SYNAPSE_WORKSPACE_URL": "https://workspacechhamosynapse.dev.azuresynapse.net", + "AZURE_SYNAPSE_WORKSPACE_URL": "https://testsynapseworkspace.dev.azuresynapse.net", "RandomSeed": "496600065" } } \ No newline at end of file diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/IntegrationRuntimesClientLiveTests/TestGetAsync.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/IntegrationRuntimesClientLiveTests/TestGetAsync.json index c5d9833e2a9d..89b4d84a8bf5 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/IntegrationRuntimesClientLiveTests/TestGetAsync.json +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/IntegrationRuntimesClientLiveTests/TestGetAsync.json @@ -1,16 +1,13 @@ { "Entries": [ { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/integrationRuntimes?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/integrationRuntimes?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-308fab1171bd3045b38056bd42f56219-023dd0ec03dcc04e-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210119.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "traceparent": "00-182ef962b4eab94f9d5a1dbda9bf01fc-b2d6fa21c000e448-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "da4ed6db380e2410697f0ad6cf6325f2", "x-ms-return-client-request-id": "true" }, @@ -18,58 +15,125 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "618", + "Content-Length": "2644", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 19 Jan 2021 17:00:04 GMT", + "Date": "Thu, 30 Sep 2021 06:17:23 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "da4ed6db380e2410697f0ad6cf6325f2", - "x-ms-correlation-request-id": "87725e75-399f-47ed-b2d6-89ba90bc88dc", - "x-ms-request-id": "32901d80-cd9c-4033-b918-6db519008783", + "x-ms-correlation-request-id": "eb8354d8-8f6a-480b-8ccd-f7ad09fd4e3b", + "x-ms-request-id": "585b29f2-8ae9-479d-afcd-95fadc301cd3", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": [ { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/integrationruntimes/AutoResolveIntegrationRuntime", - "name": "AutoResolveIntegrationRuntime", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/integrationruntimes/SelfHostedIntegrationRuntime", + "name": "SelfHostedIntegrationRuntime", + "type": "Microsoft.Synapse/workspaces/integrationruntimes", + "properties": { + "type": "SelfHosted", + "typeProperties": {} + }, + "etag": "01008934-0000-0100-0000-5f6059030000" + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/integrationruntimes/DataflowIR", + "name": "DataflowIR", "type": "Microsoft.Synapse/workspaces/integrationruntimes", "properties": { "type": "Managed", "typeProperties": { "computeProperties": { - "location": "AutoResolve" + "dataFlowProperties": { + "computeType": "General", + "coreCount": 8, + "timeToLive": 0 + } } - }, - "provisioningState": null, - "managedVirtualNetwork": { - "referenceName": "default", - "type": "ManagedVirtualNetworkReference", - "id": "00b37b7e-290e-4973-9420-b91c9919100d" } }, - "etag": "ab033e9d-0000-0800-0000-5fd14daa0000" + "etag": "0000e3d8-0000-0100-0000-5f86990d0000" + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/integrationruntimes/DataflowIR3216", + "name": "DataflowIR3216", + "type": "Microsoft.Synapse/workspaces/integrationruntimes", + "properties": { + "type": "Managed", + "typeProperties": { + "computeProperties": { + "location": "AutoResolve", + "dataFlowProperties": { + "computeType": "General", + "coreCount": 8, + "timeToLive": 0 + } + } + } + }, + "etag": "0000a0d9-0000-0100-0000-5f869e650000" + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/integrationruntimes/DataflowIR2171", + "name": "DataflowIR2171", + "type": "Microsoft.Synapse/workspaces/integrationruntimes", + "properties": { + "type": "Managed", + "typeProperties": { + "computeProperties": { + "location": "AutoResolve", + "dataFlowProperties": { + "computeType": "General", + "coreCount": 8, + "timeToLive": 0 + } + } + } + }, + "etag": "0000acd9-0000-0100-0000-5f869ee10000" + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/integrationruntimes/testDataFlowIR", + "name": "testDataFlowIR", + "type": "Microsoft.Synapse/workspaces/integrationruntimes", + "properties": { + "type": "Managed", + "typeProperties": { + "computeProperties": { + "dataFlowProperties": { + "computeType": "General1", + "coreCount": 8, + "timeToLive": 0 + } + } + } + }, + "etag": "01009006-0000-0100-0000-5f8801790000" + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/integrationruntimes/IntegrationRuntime3", + "name": "IntegrationRuntime3", + "type": "Microsoft.Synapse/workspaces/integrationruntimes", + "properties": { + "type": "SelfHosted" + }, + "etag": "c100a761-0000-0100-0000-5fceeb240000" } ] } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/integrationRuntimes/AutoResolveIntegrationRuntime?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/integrationRuntimes/SelfHostedIntegrationRuntime?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-008b763dfebcbf4e8c21a5168bb1b491-1b0be2cd6cd1d24f-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210119.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "traceparent": "00-bb774ea354499a419b1edf5ad6c5c507-508065b3d5a49948-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f456015d731801e2e68cf2430fc0b599", "x-ms-return-client-request-id": "true" }, @@ -77,46 +141,261 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "606", + "Content-Length": "393", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 19 Jan 2021 17:00:04 GMT", + "Date": "Thu, 30 Sep 2021 06:17:23 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "f456015d731801e2e68cf2430fc0b599", - "x-ms-correlation-request-id": "114dd4d6-e316-4feb-b6a8-788964706db2", - "x-ms-request-id": "1c2fa482-764b-4269-9663-cb3922ae8c8d", + "x-ms-correlation-request-id": "e49faebb-49c4-4818-833b-d5d421de39c5", + "x-ms-request-id": "e60df77f-c518-4afd-ac99-7e67a25a9116", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/integrationruntimes/SelfHostedIntegrationRuntime", + "name": "SelfHostedIntegrationRuntime", + "type": "Microsoft.Synapse/workspaces/integrationruntimes", + "properties": { + "type": "SelfHosted", + "typeProperties": {} + }, + "etag": "01008934-0000-0100-0000-5f6059030000" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/integrationRuntimes/DataflowIR?api-version=2020-12-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-1242bed5c610b643ab8ea968599c5539-fa1faacf5a90614b-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "e7774ac7211648ba98eb401f71dd9375", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "451", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 30 Sep 2021 06:17:23 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-ms-client-request-id": "e7774ac7211648ba98eb401f71dd9375", + "x-ms-correlation-request-id": "5064560e-2da6-465c-ba28-65f8c4c05b0c", + "x-ms-request-id": "0d155978-b100-4fce-bb38-120b411fda71", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/integrationruntimes/AutoResolveIntegrationRuntime", - "name": "AutoResolveIntegrationRuntime", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/integrationruntimes/DataflowIR", + "name": "DataflowIR", "type": "Microsoft.Synapse/workspaces/integrationruntimes", "properties": { "type": "Managed", "typeProperties": { "computeProperties": { - "location": "AutoResolve" + "dataFlowProperties": { + "computeType": "General", + "coreCount": 8, + "timeToLive": 0 + } + } + } + }, + "etag": "0000e3d8-0000-0100-0000-5f86990d0000" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/integrationRuntimes/DataflowIR3216?api-version=2020-12-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-c5bc49ee61bec84bb0ca60a48ca55eb4-7b57dfe412c15246-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "a0adabf86d6f68bbf44df38246cd14a9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "484", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 30 Sep 2021 06:17:23 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-ms-client-request-id": "a0adabf86d6f68bbf44df38246cd14a9", + "x-ms-correlation-request-id": "d5854e03-1030-4e95-9ffa-9d3c77f6d384", + "x-ms-request-id": "f4ad11cc-2869-4d1c-90c5-99f6b4210394", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/integrationruntimes/DataflowIR3216", + "name": "DataflowIR3216", + "type": "Microsoft.Synapse/workspaces/integrationruntimes", + "properties": { + "type": "Managed", + "typeProperties": { + "computeProperties": { + "location": "AutoResolve", + "dataFlowProperties": { + "computeType": "General", + "coreCount": 8, + "timeToLive": 0 + } + } + } + }, + "etag": "0000a0d9-0000-0100-0000-5f869e650000" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/integrationRuntimes/DataflowIR2171?api-version=2020-12-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-73b09773c36fbf468c6c342a6e1fc5e9-53175c7c4aaa6a4d-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "840f71c93dec3bdb470d5b2d33c28f09", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "484", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 30 Sep 2021 06:17:23 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-ms-client-request-id": "840f71c93dec3bdb470d5b2d33c28f09", + "x-ms-correlation-request-id": "06173742-c079-46a7-8b8b-c533e57de4a0", + "x-ms-request-id": "4ecc13b2-db02-4cbe-9f7d-94960fc58236", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/integrationruntimes/DataflowIR2171", + "name": "DataflowIR2171", + "type": "Microsoft.Synapse/workspaces/integrationruntimes", + "properties": { + "type": "Managed", + "typeProperties": { + "computeProperties": { + "location": "AutoResolve", + "dataFlowProperties": { + "computeType": "General", + "coreCount": 8, + "timeToLive": 0 + } + } + } + }, + "etag": "0000acd9-0000-0100-0000-5f869ee10000" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/integrationRuntimes/testDataFlowIR?api-version=2020-12-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-1331ec84a4b0ec48a1b16d2f0b2ca686-8e84b9959cc69946-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "644b7cf91412592a8e0ff3c92e3802cb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "460", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 30 Sep 2021 06:17:23 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-ms-client-request-id": "644b7cf91412592a8e0ff3c92e3802cb", + "x-ms-correlation-request-id": "69d68416-1ec0-4ee9-acff-f47f1dcaa57d", + "x-ms-request-id": "a538cbd7-9490-45f3-85fa-bd6fc6ae7fbf", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/integrationruntimes/testDataFlowIR", + "name": "testDataFlowIR", + "type": "Microsoft.Synapse/workspaces/integrationruntimes", + "properties": { + "type": "Managed", + "typeProperties": { + "computeProperties": { + "dataFlowProperties": { + "computeType": "General1", + "coreCount": 8, + "timeToLive": 0 + } } - }, - "provisioningState": null, - "managedVirtualNetwork": { - "referenceName": "default", - "type": "ManagedVirtualNetworkReference", - "id": "00b37b7e-290e-4973-9420-b91c9919100d" } }, - "etag": "ab033e9d-0000-0800-0000-5fd14daa0000" + "etag": "01009006-0000-0100-0000-5f8801790000" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/integrationRuntimes/IntegrationRuntime3?api-version=2020-12-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-b6a9b75e5d11f747970668cac586aa89-7b052d7dcb7e2642-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "005697d60ecdba89cf715961118e3531", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "355", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 30 Sep 2021 06:17:24 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-ms-client-request-id": "005697d60ecdba89cf715961118e3531", + "x-ms-correlation-request-id": "6a009c28-22e6-4293-8f92-08ba74b6be84", + "x-ms-request-id": "040cdd29-2b26-4e3d-a203-7a855ce28d01", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/integrationruntimes/IntegrationRuntime3", + "name": "IntegrationRuntime3", + "type": "Microsoft.Synapse/workspaces/integrationruntimes", + "properties": { + "type": "SelfHosted" + }, + "etag": "c100a761-0000-0100-0000-5fceeb240000" } } ], "Variables": { - "AZURE_SYNAPSE_WORKSPACE_URL": "https://workspacechhamosynapse.dev.azuresynapse.net", + "AZURE_SYNAPSE_WORKSPACE_URL": "https://testsynapseworkspace.dev.azuresynapse.net", "RandomSeed": "2108095870" } } \ No newline at end of file diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/IntegrationRuntimesClientLiveTests/TestList.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/IntegrationRuntimesClientLiveTests/TestList.json index 43b3e3defd16..acb3b9de6ac4 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/IntegrationRuntimesClientLiveTests/TestList.json +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/IntegrationRuntimesClientLiveTests/TestList.json @@ -1,16 +1,13 @@ { "Entries": [ { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/integrationRuntimes?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/integrationRuntimes?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-bbdfb83c12b8f4428df5d17c7f475649-a7b784b4f5a5a14b-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210119.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "traceparent": "00-4534f3a1d6916c40a5a95cddfc3b39eb-f7baf14b8ee18d4c-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "970f825f99d95b9a24e04d92eeb7d07f", "x-ms-return-client-request-id": "true" }, @@ -18,50 +15,120 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "618", + "Content-Length": "2644", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 19 Jan 2021 16:59:34 GMT", + "Date": "Thu, 30 Sep 2021 06:17:22 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "970f825f99d95b9a24e04d92eeb7d07f", - "x-ms-correlation-request-id": "8fd40e97-28a1-4638-8f22-755552789f75", - "x-ms-request-id": "7e9ac28f-9d16-4592-a647-813979ab7371", + "x-ms-correlation-request-id": "e3c45674-1425-4bf6-be4b-c815198fa365", + "x-ms-request-id": "5af8f824-bcb7-4e74-acd3-e01837a51bf5", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": [ { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/integrationruntimes/AutoResolveIntegrationRuntime", - "name": "AutoResolveIntegrationRuntime", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/integrationruntimes/SelfHostedIntegrationRuntime", + "name": "SelfHostedIntegrationRuntime", + "type": "Microsoft.Synapse/workspaces/integrationruntimes", + "properties": { + "type": "SelfHosted", + "typeProperties": {} + }, + "etag": "01008934-0000-0100-0000-5f6059030000" + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/integrationruntimes/DataflowIR", + "name": "DataflowIR", + "type": "Microsoft.Synapse/workspaces/integrationruntimes", + "properties": { + "type": "Managed", + "typeProperties": { + "computeProperties": { + "dataFlowProperties": { + "computeType": "General", + "coreCount": 8, + "timeToLive": 0 + } + } + } + }, + "etag": "0000e3d8-0000-0100-0000-5f86990d0000" + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/integrationruntimes/DataflowIR3216", + "name": "DataflowIR3216", "type": "Microsoft.Synapse/workspaces/integrationruntimes", "properties": { "type": "Managed", "typeProperties": { "computeProperties": { - "location": "AutoResolve" + "location": "AutoResolve", + "dataFlowProperties": { + "computeType": "General", + "coreCount": 8, + "timeToLive": 0 + } } - }, - "provisioningState": null, - "managedVirtualNetwork": { - "referenceName": "default", - "type": "ManagedVirtualNetworkReference", - "id": "00b37b7e-290e-4973-9420-b91c9919100d" } }, - "etag": "ab033e9d-0000-0800-0000-5fd14daa0000" + "etag": "0000a0d9-0000-0100-0000-5f869e650000" + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/integrationruntimes/DataflowIR2171", + "name": "DataflowIR2171", + "type": "Microsoft.Synapse/workspaces/integrationruntimes", + "properties": { + "type": "Managed", + "typeProperties": { + "computeProperties": { + "location": "AutoResolve", + "dataFlowProperties": { + "computeType": "General", + "coreCount": 8, + "timeToLive": 0 + } + } + } + }, + "etag": "0000acd9-0000-0100-0000-5f869ee10000" + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/integrationruntimes/testDataFlowIR", + "name": "testDataFlowIR", + "type": "Microsoft.Synapse/workspaces/integrationruntimes", + "properties": { + "type": "Managed", + "typeProperties": { + "computeProperties": { + "dataFlowProperties": { + "computeType": "General1", + "coreCount": 8, + "timeToLive": 0 + } + } + } + }, + "etag": "01009006-0000-0100-0000-5f8801790000" + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/integrationruntimes/IntegrationRuntime3", + "name": "IntegrationRuntime3", + "type": "Microsoft.Synapse/workspaces/integrationruntimes", + "properties": { + "type": "SelfHosted" + }, + "etag": "c100a761-0000-0100-0000-5fceeb240000" } ] } } ], "Variables": { - "AZURE_SYNAPSE_WORKSPACE_URL": "https://workspacechhamosynapse.dev.azuresynapse.net", + "AZURE_SYNAPSE_WORKSPACE_URL": "https://testsynapseworkspace.dev.azuresynapse.net", "RandomSeed": "1139595911" } } \ No newline at end of file diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/IntegrationRuntimesClientLiveTests/TestListAsync.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/IntegrationRuntimesClientLiveTests/TestListAsync.json index 35144b515a81..94c355c4b870 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/IntegrationRuntimesClientLiveTests/TestListAsync.json +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/IntegrationRuntimesClientLiveTests/TestListAsync.json @@ -1,16 +1,13 @@ { "Entries": [ { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/integrationRuntimes?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/integrationRuntimes?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-39ff85231cac834582bcb95ac2434431-06b40c15f8d2444d-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210119.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "traceparent": "00-978cac8e6f062d4d91debdeacaf739bb-8c0a63f6c4159b4b-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c91f073928a86edbf04d705f6b4e2bf9", "x-ms-return-client-request-id": "true" }, @@ -18,50 +15,120 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "618", + "Content-Length": "2644", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 19 Jan 2021 16:59:35 GMT", + "Date": "Thu, 30 Sep 2021 06:17:24 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "c91f073928a86edbf04d705f6b4e2bf9", - "x-ms-correlation-request-id": "b1a638be-7056-4a74-9756-c21d416bc88a", - "x-ms-request-id": "6a3f533f-b8aa-40b5-a6dd-463ed74eac7e", + "x-ms-correlation-request-id": "008d9762-f8d2-45fd-a552-aac1dca67593", + "x-ms-request-id": "f9cc53e5-6a8d-4ada-9841-318498b32605", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": [ { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/integrationruntimes/AutoResolveIntegrationRuntime", - "name": "AutoResolveIntegrationRuntime", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/integrationruntimes/SelfHostedIntegrationRuntime", + "name": "SelfHostedIntegrationRuntime", + "type": "Microsoft.Synapse/workspaces/integrationruntimes", + "properties": { + "type": "SelfHosted", + "typeProperties": {} + }, + "etag": "01008934-0000-0100-0000-5f6059030000" + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/integrationruntimes/DataflowIR", + "name": "DataflowIR", + "type": "Microsoft.Synapse/workspaces/integrationruntimes", + "properties": { + "type": "Managed", + "typeProperties": { + "computeProperties": { + "dataFlowProperties": { + "computeType": "General", + "coreCount": 8, + "timeToLive": 0 + } + } + } + }, + "etag": "0000e3d8-0000-0100-0000-5f86990d0000" + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/integrationruntimes/DataflowIR3216", + "name": "DataflowIR3216", "type": "Microsoft.Synapse/workspaces/integrationruntimes", "properties": { "type": "Managed", "typeProperties": { "computeProperties": { - "location": "AutoResolve" + "location": "AutoResolve", + "dataFlowProperties": { + "computeType": "General", + "coreCount": 8, + "timeToLive": 0 + } } - }, - "provisioningState": null, - "managedVirtualNetwork": { - "referenceName": "default", - "type": "ManagedVirtualNetworkReference", - "id": "00b37b7e-290e-4973-9420-b91c9919100d" } }, - "etag": "ab033e9d-0000-0800-0000-5fd14daa0000" + "etag": "0000a0d9-0000-0100-0000-5f869e650000" + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/integrationruntimes/DataflowIR2171", + "name": "DataflowIR2171", + "type": "Microsoft.Synapse/workspaces/integrationruntimes", + "properties": { + "type": "Managed", + "typeProperties": { + "computeProperties": { + "location": "AutoResolve", + "dataFlowProperties": { + "computeType": "General", + "coreCount": 8, + "timeToLive": 0 + } + } + } + }, + "etag": "0000acd9-0000-0100-0000-5f869ee10000" + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/integrationruntimes/testDataFlowIR", + "name": "testDataFlowIR", + "type": "Microsoft.Synapse/workspaces/integrationruntimes", + "properties": { + "type": "Managed", + "typeProperties": { + "computeProperties": { + "dataFlowProperties": { + "computeType": "General1", + "coreCount": 8, + "timeToLive": 0 + } + } + } + }, + "etag": "01009006-0000-0100-0000-5f8801790000" + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/integrationruntimes/IntegrationRuntime3", + "name": "IntegrationRuntime3", + "type": "Microsoft.Synapse/workspaces/integrationruntimes", + "properties": { + "type": "SelfHosted" + }, + "etag": "c100a761-0000-0100-0000-5fceeb240000" } ] } } ], "Variables": { - "AZURE_SYNAPSE_WORKSPACE_URL": "https://workspacechhamosynapse.dev.azuresynapse.net", + "AZURE_SYNAPSE_WORKSPACE_URL": "https://testsynapseworkspace.dev.azuresynapse.net", "RandomSeed": "936394399" } } \ No newline at end of file diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/LinkedServiceClientLiveTests/TestDeleteLinkedService.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/LinkedServiceClientLiveTests/TestDeleteLinkedService.json index fc7219beaa12..e7daf88bfefe 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/LinkedServiceClientLiveTests/TestDeleteLinkedService.json +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/LinkedServiceClientLiveTests/TestDeleteLinkedService.json @@ -1,18 +1,15 @@ { "Entries": [ { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedService607?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/linkedservices/LinkedService607?api-version=2020-12-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "119", "Content-Type": "application/json", - "traceparent": "00-925a0e462754a445ac092d98805207ce-a26137bab43a1943-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "traceparent": "00-98d1d4c306ccd443a95724263e3cf6a0-2f5fd88ee101914b-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2ef77131bd8865614f00870528fc298b", "x-ms-return-client-request-id": "true" }, @@ -34,37 +31,34 @@ "Location", "Retry-After" ], - "Content-Length": "459", + "Content-Length": "443", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:45:23 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/f5d01aa3-f002-4a6a-bde7-0aa65d44d14e?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:17:24 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/98617e97-64c1-4d2c-86c4-4206ad4782ca?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "2ef77131bd8865614f00870528fc298b", - "x-ms-request-id": "85774f2c-bf4d-4b1f-b4cf-3dbf6714dd87" + "x-ms-request-id": "f121817b-e7d8-4385-b46b-2c520278cc8c" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedServices/LinkedService607", - "recordId": 990798, + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/linkedServices/LinkedService607", + "recordId": 2424236, "state": "Creating", - "created": "2021-01-21T17:45:23.3333333Z", - "changed": "2021-01-21T17:45:23.3333333Z", + "created": "2021-09-30T06:17:25.73Z", + "changed": "2021-09-30T06:17:25.73Z", "type": "LinkedService", "name": "LinkedService607", - "operationId": "f5d01aa3-f002-4a6a-bde7-0aa65d44d14e", - "artifactId": "71792AE0-1AE4-4298-BE5A-294C0CEAA20A" + "operationId": "98617e97-64c1-4d2c-86c4-4206ad4782ca", + "artifactId": "CF205EE7-6D5C-477D-AD0F-B8036631B201" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/f5d01aa3-f002-4a6a-bde7-0aa65d44d14e?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/98617e97-64c1-4d2c-86c4-4206ad4782ca?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a77bad9f36d2da9cdcfe1c630ff39cde", "x-ms-return-client-request-id": "true" }, @@ -81,27 +75,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:45:23 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/f5d01aa3-f002-4a6a-bde7-0aa65d44d14e?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:17:24 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/98617e97-64c1-4d2c-86c4-4206ad4782ca?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "a77bad9f36d2da9cdcfe1c630ff39cde", - "x-ms-request-id": "89c3679a-5ae4-4839-8471-805930fcb4ed" + "x-ms-request-id": "83f65a9a-1ec9-463a-aca5-1ac081069b5a" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/f5d01aa3-f002-4a6a-bde7-0aa65d44d14e?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/98617e97-64c1-4d2c-86c4-4206ad4782ca?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e8719f5946df09a904385e45fcdc8e4c", "x-ms-return-client-request-id": "true" }, @@ -118,27 +109,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:45:24 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/f5d01aa3-f002-4a6a-bde7-0aa65d44d14e?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:17:26 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/98617e97-64c1-4d2c-86c4-4206ad4782ca?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "e8719f5946df09a904385e45fcdc8e4c", - "x-ms-request-id": "9d3dec4c-b106-428b-a424-2a167f431c25" + "x-ms-request-id": "54586c28-9e72-4417-b188-02b08f4d3292" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/f5d01aa3-f002-4a6a-bde7-0aa65d44d14e?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/98617e97-64c1-4d2c-86c4-4206ad4782ca?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7a651e688181e6b9a9e200e50b09afdc", "x-ms-return-client-request-id": "true" }, @@ -155,27 +143,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:45:25 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/f5d01aa3-f002-4a6a-bde7-0aa65d44d14e?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:17:28 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/98617e97-64c1-4d2c-86c4-4206ad4782ca?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "7a651e688181e6b9a9e200e50b09afdc", - "x-ms-request-id": "10cb8ece-7237-4fd7-abd5-d1fa41cad44e" + "x-ms-request-id": "affb0e7e-d0c7-48e7-ba3b-4cbafbed2fea" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/f5d01aa3-f002-4a6a-bde7-0aa65d44d14e?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/98617e97-64c1-4d2c-86c4-4206ad4782ca?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "362be2a6af9159890471a299d756deff", "x-ms-return-client-request-id": "true" }, @@ -192,52 +177,114 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:45:26 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/f5d01aa3-f002-4a6a-bde7-0aa65d44d14e?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:17:29 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/98617e97-64c1-4d2c-86c4-4206ad4782ca?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "362be2a6af9159890471a299d756deff", - "x-ms-request-id": "d2f7ac71-60a4-4d59-9ac7-d60010b7b992" + "x-ms-request-id": "82ed8868-aa91-43b0-ab2f-884b08845c5d" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/f5d01aa3-f002-4a6a-bde7-0aa65d44d14e?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/98617e97-64c1-4d2c-86c4-4206ad4782ca?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "f0facf6f218dd75ce68a3ffd46c3fefb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 30 Sep 2021 06:17:30 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/98617e97-64c1-4d2c-86c4-4206ad4782ca?api-version=2020-12-01", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "f0facf6f218dd75ce68a3ffd46c3fefb", + "x-ms-request-id": "fcd3b0dd-a5d3-4292-955b-1275f7917480" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/98617e97-64c1-4d2c-86c4-4206ad4782ca?api-version=2020-12-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "199f828957b1b9bb950c7510df200f52", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 30 Sep 2021 06:17:31 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/98617e97-64c1-4d2c-86c4-4206ad4782ca?api-version=2020-12-01", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "199f828957b1b9bb950c7510df200f52", + "x-ms-request-id": "bf76845c-793c-4db8-905f-c46870f4ac8f" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/98617e97-64c1-4d2c-86c4-4206ad4782ca?api-version=2020-12-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "3b760104be0e844e855350066f8b1240", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "429", + "Content-Length": "422", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:45:27 GMT", + "Date": "Thu, 30 Sep 2021 06:17:32 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "f0facf6f218dd75ce68a3ffd46c3fefb", - "x-ms-correlation-request-id": "687a0438-77a1-4c34-b47f-53ad36ebd6ad", - "x-ms-request-id": "1c4e84ac-4025-421f-84ce-04718c83002d", + "x-ms-client-request-id": "3b760104be0e844e855350066f8b1240", + "x-ms-correlation-request-id": "bb928a3c-87e1-4bdd-9486-30814df547d1", + "x-ms-request-id": "b61cc4c4-3f4d-458a-ae4b-08a96c73988e", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedService607", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/linkedservices/LinkedService607", "name": "LinkedService607", "type": "Microsoft.Synapse/workspaces/linkedservices", "properties": { @@ -246,21 +293,18 @@ "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" } }, - "etag": "0d015736-0000-0800-0000-6009bdb70000" + "etag": "2e00fc7f-0000-0100-0000-6155567b0000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedService607?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/linkedservices/LinkedService607?api-version=2020-12-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-a565274c9dd90f4b9604a77daf90e807-ea12c39278337d43-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "199f828957b1b9bb950c7510df200f52", + "traceparent": "00-e21329dfaa07f5428249c8adbed394f2-8876001b4296cb4e-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "540fa772c4b6174d14415a81ac4cf7c5", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -268,36 +312,33 @@ "ResponseHeaders": { "Access-Control-Allow-Headers": "Location", "Access-Control-Expose-Headers": "Location", - "Content-Length": "384", + "Content-Length": "377", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:45:27 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/1bc17477-87f8-45ea-ae43-8a40ddacc24e?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:17:32 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/3e179a1e-82e0-4fd8-b708-fb9829c2d1e7?api-version=2020-12-01", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "199f828957b1b9bb950c7510df200f52", - "x-ms-request-id": "fba2d2c1-46f3-4c13-8824-350324de921a" + "x-ms-client-request-id": "540fa772c4b6174d14415a81ac4cf7c5", + "x-ms-request-id": "0aed9947-592f-4d46-ad97-d47bbca70a56" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedServices/LinkedService607", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/linkedServices/LinkedService607", "recordId": 0, "state": "Deleting", "created": "0001-01-01T00:00:00", "changed": "0001-01-01T00:00:00", "type": "LinkedService", "name": "LinkedService607", - "operationId": "1bc17477-87f8-45ea-ae43-8a40ddacc24e" + "operationId": "3e179a1e-82e0-4fd8-b708-fb9829c2d1e7" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/1bc17477-87f8-45ea-ae43-8a40ddacc24e?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/3e179a1e-82e0-4fd8-b708-fb9829c2d1e7?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "540fa772c4b6174d14415a81ac4cf7c5", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "389d35f9bb10409cb35e27cc63cdd739", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -313,28 +354,59 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:45:27 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/1bc17477-87f8-45ea-ae43-8a40ddacc24e?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:17:32 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/3e179a1e-82e0-4fd8-b708-fb9829c2d1e7?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "540fa772c4b6174d14415a81ac4cf7c5", - "x-ms-request-id": "f03de2ab-2667-4456-ba61-2a5a1d45539f" + "x-ms-client-request-id": "389d35f9bb10409cb35e27cc63cdd739", + "x-ms-request-id": "38cbe5d2-ee4c-4df2-b9de-a0516d364a7b" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/1bc17477-87f8-45ea-ae43-8a40ddacc24e?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/3e179a1e-82e0-4fd8-b708-fb9829c2d1e7?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "828a8b5ccd93aff3ba44209b2fef105f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" ], - "x-ms-client-request-id": "44f8ec7bc34dcbed341b945d07b54a0a", + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 30 Sep 2021 06:17:33 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/3e179a1e-82e0-4fd8-b708-fb9829c2d1e7?api-version=2020-12-01", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "828a8b5ccd93aff3ba44209b2fef105f", + "x-ms-request-id": "4e9acf26-039a-4624-bf6e-ba7827964c11" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/3e179a1e-82e0-4fd8-b708-fb9829c2d1e7?api-version=2020-12-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "778750f7bfaec0b450b891ef9c206767", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -350,28 +422,59 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:45:29 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/1bc17477-87f8-45ea-ae43-8a40ddacc24e?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:17:34 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/3e179a1e-82e0-4fd8-b708-fb9829c2d1e7?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "44f8ec7bc34dcbed341b945d07b54a0a", - "x-ms-request-id": "3779ba48-5740-4f23-b48c-db79b62a15cf" + "x-ms-client-request-id": "778750f7bfaec0b450b891ef9c206767", + "x-ms-request-id": "5005ed5c-dd32-4023-af69-d77cf691181c" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/1bc17477-87f8-45ea-ae43-8a40ddacc24e?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/3e179a1e-82e0-4fd8-b708-fb9829c2d1e7?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "7b015b43c72a2b7641ee7ecc9a0110c3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" ], - "x-ms-client-request-id": "389d35f9bb10409cb35e27cc63cdd739", + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 30 Sep 2021 06:17:35 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/3e179a1e-82e0-4fd8-b708-fb9829c2d1e7?api-version=2020-12-01", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "7b015b43c72a2b7641ee7ecc9a0110c3", + "x-ms-request-id": "0d00380d-1881-4e04-a473-5fc82e737537" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/3e179a1e-82e0-4fd8-b708-fb9829c2d1e7?api-version=2020-12-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "12d5c74d60459c8ad6ca31db3c031299", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -387,45 +490,76 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:45:30 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/1bc17477-87f8-45ea-ae43-8a40ddacc24e?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:17:37 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/3e179a1e-82e0-4fd8-b708-fb9829c2d1e7?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "389d35f9bb10409cb35e27cc63cdd739", - "x-ms-request-id": "10e2220c-48ae-4b8e-a406-2a2e9a882595" + "x-ms-client-request-id": "12d5c74d60459c8ad6ca31db3c031299", + "x-ms-request-id": "f911c552-c7da-4ad1-b33c-956eca87be05" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/1bc17477-87f8-45ea-ae43-8a40ddacc24e?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/3e179a1e-82e0-4fd8-b708-fb9829c2d1e7?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "d457b9dd94ee2f34da5c35c040e8254f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" ], - "x-ms-client-request-id": "828a8b5ccd93aff3ba44209b2fef105f", + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 30 Sep 2021 06:17:38 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/3e179a1e-82e0-4fd8-b708-fb9829c2d1e7?api-version=2020-12-01", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "d457b9dd94ee2f34da5c35c040e8254f", + "x-ms-request-id": "4872837a-a313-4053-bc04-0248a7630059" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/3e179a1e-82e0-4fd8-b708-fb9829c2d1e7?api-version=2020-12-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "d4a2cda7544ae221d164a55f959bee3e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Content-Length": "0", - "Date": "Thu, 21 Jan 2021 17:45:31 GMT", + "Date": "Thu, 30 Sep 2021 06:17:39 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "828a8b5ccd93aff3ba44209b2fef105f", - "x-ms-request-id": "f87c8ebf-10bf-45ed-ac40-ff93918d21a5" + "x-ms-client-request-id": "d4a2cda7544ae221d164a55f959bee3e", + "x-ms-request-id": "528b43e9-a3bf-49ec-8db1-696e6368dac8" }, "ResponseBody": [] } ], "Variables": { - "AZURE_SYNAPSE_WORKSPACE_URL": "https://workspacechhamosynapse.dev.azuresynapse.net", + "AZURE_SYNAPSE_WORKSPACE_URL": "https://testsynapseworkspace.dev.azuresynapse.net", "RandomSeed": "1510904943" } } \ No newline at end of file diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/LinkedServiceClientLiveTests/TestDeleteLinkedServiceAsync.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/LinkedServiceClientLiveTests/TestDeleteLinkedServiceAsync.json index 71d37ee5ce0a..9a1e91960448 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/LinkedServiceClientLiveTests/TestDeleteLinkedServiceAsync.json +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/LinkedServiceClientLiveTests/TestDeleteLinkedServiceAsync.json @@ -1,18 +1,15 @@ { "Entries": [ { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedService313?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/linkedservices/LinkedService313?api-version=2020-12-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "119", "Content-Type": "application/json", - "traceparent": "00-af8246e05deff941bdb3c23b66cce84c-3d3323247e32484b-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "traceparent": "00-5965bd1600120b40b41485a2572bcfb1-1617d6956cfd3c4b-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "38392cfb477c1a6cc0fdc027e4f42a3e", "x-ms-return-client-request-id": "true" }, @@ -34,37 +31,34 @@ "Location", "Retry-After" ], - "Content-Length": "459", + "Content-Length": "453", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:46:32 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/36ce8429-f145-4336-a2fc-b4fe5da53752?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:18:13 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e5516994-4970-44e8-91f7-7fa165732d6d?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "38392cfb477c1a6cc0fdc027e4f42a3e", - "x-ms-request-id": "cdbdd1de-8d7c-4a77-bcc7-bc043f3f2893" + "x-ms-request-id": "24a99fcd-426f-42cf-b97d-b6e119412a09" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedServices/LinkedService313", - "recordId": 990802, + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/linkedServices/LinkedService313", + "recordId": 2424289, "state": "Creating", - "created": "2021-01-21T17:46:32.8066667Z", - "changed": "2021-01-21T17:46:32.8066667Z", + "created": "2021-09-30T06:18:14.0266667Z", + "changed": "2021-09-30T06:18:14.0266667Z", "type": "LinkedService", "name": "LinkedService313", - "operationId": "36ce8429-f145-4336-a2fc-b4fe5da53752", - "artifactId": "52C301E6-E4A1-43DD-9E7A-A8AE0A33F302" + "operationId": "e5516994-4970-44e8-91f7-7fa165732d6d", + "artifactId": "0E29A9E4-F73C-43AC-8203-FCFAFDF6AC65" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/36ce8429-f145-4336-a2fc-b4fe5da53752?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e5516994-4970-44e8-91f7-7fa165732d6d?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6fd18dd0d5f7f5adff758228f1aa4cdd", "x-ms-return-client-request-id": "true" }, @@ -81,27 +75,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:46:32 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/36ce8429-f145-4336-a2fc-b4fe5da53752?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:18:13 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e5516994-4970-44e8-91f7-7fa165732d6d?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "6fd18dd0d5f7f5adff758228f1aa4cdd", - "x-ms-request-id": "f0c699ac-27e4-4d0c-9c61-5321e9aab8bd" + "x-ms-request-id": "3c1d4cb4-2170-4ff6-bf5f-7bc109fc5097" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/36ce8429-f145-4336-a2fc-b4fe5da53752?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e5516994-4970-44e8-91f7-7fa165732d6d?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e1b80b901f744c766759e4b62e2e5fdf", "x-ms-return-client-request-id": "true" }, @@ -118,27 +109,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:46:33 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/36ce8429-f145-4336-a2fc-b4fe5da53752?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:18:14 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e5516994-4970-44e8-91f7-7fa165732d6d?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "e1b80b901f744c766759e4b62e2e5fdf", - "x-ms-request-id": "1eb59cac-4689-4612-8196-0789112d4105" + "x-ms-request-id": "d8d6bc02-8ac4-45d0-979b-8a63898ea243" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/36ce8429-f145-4336-a2fc-b4fe5da53752?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e5516994-4970-44e8-91f7-7fa165732d6d?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5656a36eba23d9460c1fb0562d9ceeaa", "x-ms-return-client-request-id": "true" }, @@ -155,149 +143,63 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:46:35 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/36ce8429-f145-4336-a2fc-b4fe5da53752?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:18:16 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e5516994-4970-44e8-91f7-7fa165732d6d?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "5656a36eba23d9460c1fb0562d9ceeaa", - "x-ms-request-id": "5442f731-5a2a-405d-9ebe-bdd2e5663b90" + "x-ms-request-id": "e58e63ac-cb7e-4295-8569-3391071bfd29" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/36ce8429-f145-4336-a2fc-b4fe5da53752?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e5516994-4970-44e8-91f7-7fa165732d6d?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "afac3c78ae27b1a81685079ef0f6c7d0", "x-ms-return-client-request-id": "true" }, "RequestBody": null, - "StatusCode": 202, + "StatusCode": 200, "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", + "Content-Length": "471", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:46:36 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/36ce8429-f145-4336-a2fc-b4fe5da53752?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", + "Date": "Thu, 30 Sep 2021 06:18:17 GMT", + "Server": "Kestrel Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "afac3c78ae27b1a81685079ef0f6c7d0", - "x-ms-request-id": "29cce513-9217-4ec6-86e7-1eefdde97304" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/36ce8429-f145-4336-a2fc-b4fe5da53752?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "4ebaa216f553d5b9c5dfd5546f1f1ecb", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:46:37 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/36ce8429-f145-4336-a2fc-b4fe5da53752?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "4ebaa216f553d5b9c5dfd5546f1f1ecb", - "x-ms-request-id": "1357d5a9-cd99-4df6-8807-d7855c6f5c5c" + "x-ms-correlation-request-id": "d0f2e141-1960-48c7-a9eb-39ec7cdcad33", + "x-ms-request-id": "a6866ae5-7f91-4848-899e-6c3eef1b74df" }, - "ResponseBody": { - "status": "InProgress" - } + "ResponseBody": [ + "{\n", + " \u0022id\u0022: \u0022/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/linkedservices/LinkedService313\u0022,\n", + " \u0022name\u0022: \u0022LinkedService313\u0022,\n", + " \u0022type\u0022: \u0022Microsoft.Synapse/workspaces/linkedservices\u0022,\n", + " \u0022properties\u0022: {\n", + " \u0022type\u0022: \u0022AzureDataLakeStore\u0022,\n", + " \u0022typeProperties\u0022: {\n", + " \u0022dataLakeStoreUri\u0022: \u0022adl://test.azuredatalakestore.net/\u0022\n", + " }\n", + " },\n", + " \u0022etag\u0022: \u00222e001380-0000-0100-0000-615556a80000\u0022\n", + "}" + ] }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/36ce8429-f145-4336-a2fc-b4fe5da53752?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "f23e3a6ab082bfb7faa4409eb2a8e816", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "429", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:46: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-ms-client-request-id": "f23e3a6ab082bfb7faa4409eb2a8e816", - "x-ms-correlation-request-id": "e9ab21e6-f01f-4298-ab23-bcf6ae3030de", - "x-ms-request-id": "db74c3b1-fc00-48b0-895f-5883acd311fc", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedService313", - "name": "LinkedService313", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "0d01c865-0000-0800-0000-6009bdfd0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedService313?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/linkedservices/LinkedService313?api-version=2020-12-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-5371fab5415f64459a973971815f8718-b033d0997ff70a45-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "8a40df58a0e1825682d6e948d85342f6", + "traceparent": "00-4a719fef12fe3148b39b2aba417b22d2-667ef78e51642049-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "4ebaa216f553d5b9c5dfd5546f1f1ecb", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -305,147 +207,33 @@ "ResponseHeaders": { "Access-Control-Allow-Headers": "Location", "Access-Control-Expose-Headers": "Location", - "Content-Length": "384", + "Content-Length": "377", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:46:38 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/42c3cd61-4af5-4458-bee7-d5c7428c24a5?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:18:17 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/00ae783b-50ce-4570-a743-f8b3e8db9bbd?api-version=2020-12-01", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "8a40df58a0e1825682d6e948d85342f6", - "x-ms-request-id": "b187ce89-7cde-4aed-89dc-c256da7a8147" + "x-ms-client-request-id": "4ebaa216f553d5b9c5dfd5546f1f1ecb", + "x-ms-request-id": "3f1a6aaa-0e09-4637-a017-a2ba16fc980d" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedServices/LinkedService313", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/linkedServices/LinkedService313", "recordId": 0, "state": "Deleting", "created": "0001-01-01T00:00:00", "changed": "0001-01-01T00:00:00", "type": "LinkedService", "name": "LinkedService313", - "operationId": "42c3cd61-4af5-4458-bee7-d5c7428c24a5" + "operationId": "00ae783b-50ce-4570-a743-f8b3e8db9bbd" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/42c3cd61-4af5-4458-bee7-d5c7428c24a5?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/00ae783b-50ce-4570-a743-f8b3e8db9bbd?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "8ffcbff694dfc9e9e4bb6fabc66fe6a7", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:46:38 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/42c3cd61-4af5-4458-bee7-d5c7428c24a5?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "8ffcbff694dfc9e9e4bb6fabc66fe6a7", - "x-ms-request-id": "97b4b335-4109-4d4d-afd6-ef4bf2c04fc2" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/42c3cd61-4af5-4458-bee7-d5c7428c24a5?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "763849623275835e91daa0e64da7cd67", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:46:39 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/42c3cd61-4af5-4458-bee7-d5c7428c24a5?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "763849623275835e91daa0e64da7cd67", - "x-ms-request-id": "1761bbb0-9746-4db4-81ee-6d59112d2ea6" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/42c3cd61-4af5-4458-bee7-d5c7428c24a5?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "1952cdb4b357d2175269d1fc65a39f7b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:46:40 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/42c3cd61-4af5-4458-bee7-d5c7428c24a5?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "1952cdb4b357d2175269d1fc65a39f7b", - "x-ms-request-id": "29e2c7a2-a692-47f2-a80a-03bc04ffe0df" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/42c3cd61-4af5-4458-bee7-d5c7428c24a5?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "6b4cac13ace2c4a76178fe05f3027c3c", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "8a40df58a0e1825682d6e948d85342f6", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -461,28 +249,25 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:46:42 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/42c3cd61-4af5-4458-bee7-d5c7428c24a5?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:18:17 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/00ae783b-50ce-4570-a743-f8b3e8db9bbd?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "6b4cac13ace2c4a76178fe05f3027c3c", - "x-ms-request-id": "3450de28-c851-42ca-aa55-197f0a32c0c1" + "x-ms-client-request-id": "8a40df58a0e1825682d6e948d85342f6", + "x-ms-request-id": "3c523fac-ee08-4aea-8b50-8a944f656d96" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/42c3cd61-4af5-4458-bee7-d5c7428c24a5?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/00ae783b-50ce-4570-a743-f8b3e8db9bbd?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "f9f707eecd1caf4f3266230b60611ded", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "b5333c66d5b7664eeafa53aeb51b221c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -498,45 +283,42 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:46:43 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/42c3cd61-4af5-4458-bee7-d5c7428c24a5?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:18:18 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/00ae783b-50ce-4570-a743-f8b3e8db9bbd?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "f9f707eecd1caf4f3266230b60611ded", - "x-ms-request-id": "27552083-f325-4b3a-872b-a840fe3581c0" + "x-ms-client-request-id": "b5333c66d5b7664eeafa53aeb51b221c", + "x-ms-request-id": "5b759c40-f594-4eb6-8909-a9fa57ef07d5" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/42c3cd61-4af5-4458-bee7-d5c7428c24a5?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/00ae783b-50ce-4570-a743-f8b3e8db9bbd?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "a1d3243a615a0784258eb8deb411de50", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "8ffcbff694dfc9e9e4bb6fabc66fe6a7", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Content-Length": "0", - "Date": "Thu, 21 Jan 2021 17:46:44 GMT", + "Date": "Thu, 30 Sep 2021 06:18:19 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "a1d3243a615a0784258eb8deb411de50", - "x-ms-request-id": "2b941a63-5f90-4918-bafb-ee650a4d5048" + "x-ms-client-request-id": "8ffcbff694dfc9e9e4bb6fabc66fe6a7", + "x-ms-request-id": "b3f7ec91-02fb-4f06-9d9c-a898f585364b" }, "ResponseBody": [] } ], "Variables": { - "AZURE_SYNAPSE_WORKSPACE_URL": "https://workspacechhamosynapse.dev.azuresynapse.net", + "AZURE_SYNAPSE_WORKSPACE_URL": "https://testsynapseworkspace.dev.azuresynapse.net", "RandomSeed": "15062238" } } \ No newline at end of file diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/LinkedServiceClientLiveTests/TestGetLinkedService.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/LinkedServiceClientLiveTests/TestGetLinkedService.json index b6eb7236c69a..b95e6e20fa46 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/LinkedServiceClientLiveTests/TestGetLinkedService.json +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/LinkedServiceClientLiveTests/TestGetLinkedService.json @@ -1,18 +1,15 @@ { "Entries": [ { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedService474?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/linkedservices/LinkedService474?api-version=2020-12-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "119", "Content-Type": "application/json", - "traceparent": "00-d827e3e144ab5e41b44491e4b2803446-fc005b6dba890f4c-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "traceparent": "00-e166c3251fd40c4cbf7ea3ba39ebe8bb-5f4dc6874999b64e-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "1c11b66e185f761344fd16d997448afb", "x-ms-return-client-request-id": "true" }, @@ -36,35 +33,32 @@ ], "Content-Length": "443", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:26:35 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9ff6f238-2c29-4bda-a5f5-9d68e7d3064d?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:17:39 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/651e3321-c361-4dcd-87bd-42569858c0d7?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "1c11b66e185f761344fd16d997448afb", - "x-ms-request-id": "6e32aa64-b8a9-423b-b887-7ff8b12f1de3" + "x-ms-request-id": "f49762fa-0dbf-4003-898c-784e727db2f3" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedServices/LinkedService474", - "recordId": 991680, + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/linkedServices/LinkedService474", + "recordId": 2424238, "state": "Creating", - "created": "2021-01-21T20:26:36Z", - "changed": "2021-01-21T20:26:36Z", + "created": "2021-09-30T06:17:39.56Z", + "changed": "2021-09-30T06:17:39.56Z", "type": "LinkedService", "name": "LinkedService474", - "operationId": "9ff6f238-2c29-4bda-a5f5-9d68e7d3064d", - "artifactId": "12A540AF-C5AB-4CF8-9FAE-089368ACC39C" + "operationId": "651e3321-c361-4dcd-87bd-42569858c0d7", + "artifactId": "52A15541-A643-4ED2-A01A-BA23CFCA2912" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9ff6f238-2c29-4bda-a5f5-9d68e7d3064d?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/651e3321-c361-4dcd-87bd-42569858c0d7?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5cbc1052c4de538eb8d9c26b86da405a", "x-ms-return-client-request-id": "true" }, @@ -81,27 +75,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:26:35 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9ff6f238-2c29-4bda-a5f5-9d68e7d3064d?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:17:39 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/651e3321-c361-4dcd-87bd-42569858c0d7?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "5cbc1052c4de538eb8d9c26b86da405a", - "x-ms-request-id": "1188ab57-4a23-4d95-9b4a-930c40581200" + "x-ms-request-id": "616bce05-1d17-43e5-9b63-b64ffe2bce88" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9ff6f238-2c29-4bda-a5f5-9d68e7d3064d?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/651e3321-c361-4dcd-87bd-42569858c0d7?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7d24d9680b1e98778dc00b2377375964", "x-ms-return-client-request-id": "true" }, @@ -118,7430 +109,183 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:26:37 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9ff6f238-2c29-4bda-a5f5-9d68e7d3064d?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:17:40 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/651e3321-c361-4dcd-87bd-42569858c0d7?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "7d24d9680b1e98778dc00b2377375964", - "x-ms-request-id": "60ed2331-352f-4a19-9dda-c8a8f3dcfff8" + "x-ms-request-id": "c5dff92e-930d-49a1-af23-9680d21aa1b9" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9ff6f238-2c29-4bda-a5f5-9d68e7d3064d?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/651e3321-c361-4dcd-87bd-42569858c0d7?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "878774062e88391d179e363913bdcb37", "x-ms-return-client-request-id": "true" }, "RequestBody": null, - "StatusCode": 200, + "StatusCode": 202, "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "429", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:26:38 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" ], - "Strict-Transport-Security": "max-age=15724800; includeSubDomains", - "X-Content-Type-Options": "nosniff", + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 30 Sep 2021 06:17:41 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/651e3321-c361-4dcd-87bd-42569858c0d7?api-version=2020-12-01", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "878774062e88391d179e363913bdcb37", - "x-ms-correlation-request-id": "a671655b-6dfc-4de1-9062-00cd02a14210", - "x-ms-request-id": "42545150-e020-4712-bd66-3743bc16cd3d", - "X-Powered-By": "ASP.NET" + "x-ms-request-id": "f3709b52-699e-4f48-9d15-6ae285ce75d1" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedService474", - "name": "LinkedService474", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "27017458-0000-0800-0000-6009e37e0000" + "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/651e3321-c361-4dcd-87bd-42569858c0d7?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-b0c625d1dfdeb247b529efe70d0ab25f-4739da5d2017404e-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "437245fa79bb46839823ce1eb86adc80", "x-ms-return-client-request-id": "true" }, "RequestBody": null, - "StatusCode": 200, + "StatusCode": 202, "ResponseHeaders": { - "Content-Length": "22775", + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:26:38 GMT", + "Date": "Thu, 30 Sep 2021 06:17:42 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/651e3321-c361-4dcd-87bd-42569858c0d7?api-version=2020-12-01", + "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "437245fa79bb46839823ce1eb86adc80", - "x-ms-request-id": "a4e118bc-b936-4c92-8dba-f7fb1c4f3f1c" + "x-ms-request-id": "2ac1b02a-b336-4de0-94eb-6f71375a28d3" }, "ResponseBody": { - "value": [ - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/workspacechhamosynapse-WorkspaceDefaultSqlServer", - "name": "workspacechhamosynapse-WorkspaceDefaultSqlServer", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "ab035c9e-0000-0800-0000-5fd14daf0000", - "properties": { - "typeProperties": { - "connectionString": "Data Source=tcp:workspacechhamosynapse.sql.azuresynapse.net,1433;Initial Catalog=@{linkedService().DBName}" - }, - "parameters": { - "DBName": { - "type": "String" - } - }, - "type": "AzureSqlDW", - "connectVia": { - "referenceName": "AutoResolveIntegrationRuntime", - "type": "IntegrationRuntimeReference" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/workspacechhamosynapse-WorkspaceDefaultStorage", - "name": "workspacechhamosynapse-WorkspaceDefaultStorage", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "ab03399f-0000-0800-0000-5fd14db30000", - "properties": { - "typeProperties": { - "url": "https://storagechhamosynapse.dfs.core.windows.net" - }, - "type": "AzureBlobFS", - "connectVia": { - "referenceName": "AutoResolveIntegrationRuntime", - "type": "IntegrationRuntimeReference" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1927657153", - "name": "LinkedSercive1927657153", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "f501bdff-0000-0800-0000-5fd257ee0000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive48615674", - "name": "LinkedSercive48615674", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "f6013401-0000-0800-0000-5fd257fb0000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive259949839", - "name": "LinkedSercive259949839", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "f601b61a-0000-0800-0000-5fd258dd0000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive552714012", - "name": "LinkedSercive552714012", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "f601191c-0000-0800-0000-5fd258ea0000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive494735049", - "name": "LinkedSercive494735049", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "f6014839-0000-0800-0000-5fd259d80000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1075151942", - "name": "LinkedSercive1075151942", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "f601503a-0000-0800-0000-5fd259e10000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive334963779", - "name": "LinkedSercive334963779", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "f601bca7-0000-0800-0000-5fd25de30000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1909004730", - "name": "LinkedSercive1909004730", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "f60192a9-0000-0800-0000-5fd25df30000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive488681607", - "name": "LinkedSercive488681607", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "f60138c0-0000-0800-0000-5fd25ebf0000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive834727455", - "name": "LinkedSercive834727455", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "f6014cc1-0000-0800-0000-5fd25eca0000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive546967853", - "name": "LinkedSercive546967853", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "f601d8d9-0000-0800-0000-5fd25fae0000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1749654824", - "name": "LinkedSercive1749654824", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "f60153db-0000-0800-0000-5fd25fbc0000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive2030616186", - "name": "LinkedSercive2030616186", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "f701d646-0000-0800-0000-5fd263cd0000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive543683066", - "name": "LinkedSercive543683066", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "f7019c48-0000-0800-0000-5fd263de0000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive2127521067", - "name": "LinkedSercive2127521067", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "f7016562-0000-0800-0000-5fd264cd0000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive694203911", - "name": "LinkedSercive694203911", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "f7015f64-0000-0800-0000-5fd264df0000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1422502982", - "name": "LinkedSercive1422502982", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "f7016e92-0000-0800-0000-5fd2668b0000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive471022701", - "name": "LinkedSercive471022701", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "f701c993-0000-0800-0000-5fd266980000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1266290659", - "name": "LinkedSercive1266290659", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "19028578-0000-0800-0000-5fd3a7f20000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive468335119", - "name": "LinkedSercive468335119", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "19025b7a-0000-0800-0000-5fd3a8010000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive169045690", - "name": "LinkedSercive169045690", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "62028790-0000-0800-0000-5fd797470000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive149240830", - "name": "LinkedSercive149240830", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "62029e92-0000-0800-0000-5fd797560000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1242831133", - "name": "LinkedSercive1242831133", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "620236c1-0000-0800-0000-5fd798c50000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1055826840", - "name": "LinkedSercive1055826840", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "6202e6c3-0000-0800-0000-5fd798d60000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1643748789", - "name": "LinkedSercive1643748789", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "6202f8e6-0000-0800-0000-5fd799dd0000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1366609036", - "name": "LinkedSercive1366609036", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "6202f7e8-0000-0800-0000-5fd799ef0000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive697524680", - "name": "LinkedSercive697524680", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "83029df2-0000-0800-0000-5fd8d39b0000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1665537899", - "name": "LinkedSercive1665537899", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "8302a2f4-0000-0800-0000-5fd8d3ad0000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1987327059", - "name": "LinkedSercive1987327059", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "8402d32b-0000-0800-0000-5fd8d5520000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1602624665", - "name": "LinkedSercive1602624665", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "8402c02e-0000-0800-0000-5fd8d5680000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive944610075", - "name": "LinkedSercive944610075", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "8402ae54-0000-0800-0000-5fd8d6870000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive797666631", - "name": "LinkedSercive797666631", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "8402be55-0000-0800-0000-5fd8d6910000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive263692593", - "name": "LinkedSercive263692593", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "8702baaf-0000-0800-0000-5fd8f1270000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive819295136", - "name": "LinkedSercive819295136", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "8702cfb1-0000-0800-0000-5fd8f1360000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1527582843", - "name": "LinkedSercive1527582843", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "870288ce-0000-0800-0000-5fd8f21f0000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive600518366", - "name": "LinkedSercive600518366", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "8702e3d1-0000-0800-0000-5fd8f2370000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1420436778", - "name": "LinkedSercive1420436778", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "8702aff2-0000-0800-0000-5fd8f33e0000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1785865340", - "name": "LinkedSercive1785865340", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "8702daf4-0000-0800-0000-5fd8f3500000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive672261494", - "name": "LinkedSercive672261494", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "88024060-0000-0800-0000-5fd8f6b40000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive901808331", - "name": "LinkedSercive901808331", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "88027e62-0000-0800-0000-5fd8f6c80000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1709596576", - "name": "LinkedSercive1709596576", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "88020d81-0000-0800-0000-5fd8f7d30000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1095119785", - "name": "LinkedSercive1095119785", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "88024683-0000-0800-0000-5fd8f7e70000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1810830919", - "name": "LinkedSercive1810830919", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "8802f1a5-0000-0800-0000-5fd8f8ff0000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive881765773", - "name": "LinkedSercive881765773", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "8802b0a8-0000-0800-0000-5fd8f9150000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive80443021", - "name": "LinkedSercive80443021", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "42000b5d-0000-0800-0000-5fda868f0000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1533253258", - "name": "LinkedSercive1533253258", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "4200e562-0000-0800-0000-5fda86a60000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1609548572", - "name": "LinkedSercive1609548572", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "42005da4-0000-0800-0000-5fda87a90000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive88790287", - "name": "LinkedSercive88790287", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "420000a9-0000-0800-0000-5fda87bd0000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - } - ], - "nextLink": "https://workspacechhamosynapse.dev.azuresynapse.net:443/linkedservices?api-version=2019-06-01-preview\u0026%24skipToken=%2BRID%3A%7ESl8ZAKxwhABQUgAAAAD8BA%3D%3D%23RT%3A1%23TRC%3A50%23ISV%3A2%23IEO%3A65551%23QCF%3A1" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices?api-version=2019-06-01-preview\u0026%24skipToken=%2BRID%3A~Sl8ZAKxwhABQUgAAAAD8BA%3D%3D%23RT%3A1%23TRC%3A50%23ISV%3A2%23IEO%3A65551%23QCF%3A1", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-4419fe3309e3ef468128711a01ed0e5d-df3e1fff9f92014f-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "11655d80b9523ad2bbea6680d53e85d0", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Length": "22381", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:26:38 GMT", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "11655d80b9523ad2bbea6680d53e85d0", - "x-ms-request-id": "13045b93-9760-422c-bf46-b62a7086be9c" - }, - "ResponseBody": { - "value": [ - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive2135321969", - "name": "LinkedSercive2135321969", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "420087e7-0000-0800-0000-5fda88ab0000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1388175726", - "name": "LinkedSercive1388175726", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "4200cced-0000-0800-0000-5fda88c40000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive838395211", - "name": "LinkedSercive838395211", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "79002090-0000-0800-0000-5fdbaf550000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1185988641", - "name": "LinkedSercive1185988641", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "79007897-0000-0800-0000-5fdbaf6a0000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive465005367", - "name": "LinkedSercive465005367", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "7900aaef-0000-0800-0000-5fdbb0610000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive887421172", - "name": "LinkedSercive887421172", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "7900c8f5-0000-0800-0000-5fdbb0720000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive515318195", - "name": "LinkedSercive515318195", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "7a004859-0000-0800-0000-5fdbb1830000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1843363636", - "name": "LinkedSercive1843363636", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "7a007e62-0000-0800-0000-5fdbb1990000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1690403739", - "name": "LinkedSercive1690403739", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "12000290-0000-0800-0000-5fdcc7900000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive42707264", - "name": "LinkedSercive42707264", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "12003192-0000-0800-0000-5fdcc7a10000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1233836124", - "name": "LinkedSercive1233836124", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "120021ca-0000-0800-0000-5fdcc9790000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive139239537", - "name": "LinkedSercive139239537", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "1200a1cc-0000-0800-0000-5fdcc98f0000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive610829349", - "name": "LinkedSercive610829349", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "12005cfb-0000-0800-0000-5fdccb150000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1405507449", - "name": "LinkedSercive1405507449", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "12006efd-0000-0800-0000-5fdccb2a0000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1937683374", - "name": "LinkedSercive1937683374", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "140039f8-0000-0800-0000-5fdcdd030000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1879162900", - "name": "LinkedSercive1879162900", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "140070fa-0000-0800-0000-5fdcdd150000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1048841025", - "name": "LinkedSercive1048841025", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "15004218-0000-0800-0000-5fdcde1e0000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1678343714", - "name": "LinkedSercive1678343714", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "1500801a-0000-0800-0000-5fdcde340000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1008491562", - "name": "LinkedSercive1008491562", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "15001c3a-0000-0800-0000-5fdcdf3c0000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1390065082", - "name": "LinkedSercive1390065082", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "1500ba3c-0000-0800-0000-5fdcdf500000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive506195076", - "name": "LinkedSercive506195076", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "1500f2eb-0000-0800-0000-5fdce5770000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive914511652", - "name": "LinkedSercive914511652", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "15000fee-0000-0800-0000-5fdce58c0000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1595131040", - "name": "LinkedSercive1595131040", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "1600ed0e-0000-0800-0000-5fdce6aa0000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1805011694", - "name": "LinkedSercive1805011694", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "1600c712-0000-0800-0000-5fdce6c40000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive675313907", - "name": "LinkedSercive675313907", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "1600b536-0000-0800-0000-5fdce8080000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1464325023", - "name": "LinkedSercive1464325023", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "16002039-0000-0800-0000-5fdce81e0000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive851402915", - "name": "LinkedSercive851402915", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "94008e1c-0000-0800-0000-5fe0ce1f0000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive60722854", - "name": "LinkedSercive60722854", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "9400e728-0000-0800-0000-5fe0ce330000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1490350231", - "name": "LinkedSercive1490350231", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "95000f23-0000-0800-0000-5fe0d0020000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1088839151", - "name": "LinkedSercive1088839151", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "9500e92f-0000-0800-0000-5fe0d01a0000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive686460023", - "name": "LinkedSercive686460023", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "95008bfe-0000-0800-0000-5fe0d1820000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive756252000", - "name": "LinkedSercive756252000", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "9600e507-0000-0800-0000-5fe0d1930000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive78281727", - "name": "LinkedSercive78281727", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "b3001609-0000-0800-0000-5fe108ad0000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive206290723", - "name": "LinkedSercive206290723", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "b3007212-0000-0800-0000-5fe108c40000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1749145264", - "name": "LinkedSercive1749145264", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "b3001ed2-0000-0800-0000-5fe10aa90000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1498880387", - "name": "LinkedSercive1498880387", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "b3001fda-0000-0800-0000-5fe10abf0000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1088740958", - "name": "LinkedSercive1088740958", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "b4001383-0000-0800-0000-5fe10c5a0000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive668009510", - "name": "LinkedSercive668009510", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "b400e98c-0000-0800-0000-5fe10c700000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive2018805938", - "name": "LinkedSercive2018805938", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "b700cedc-0000-0800-0000-5fe1145a0000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1933269774", - "name": "LinkedSercive1933269774", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "b70099e7-0000-0800-0000-5fe114750000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive678807123", - "name": "LinkedSercive678807123", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "b800ecb9-0000-0800-0000-5fe116a20000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive225295812", - "name": "LinkedSercive225295812", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "b8003ec5-0000-0800-0000-5fe116bf0000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive45741747", - "name": "LinkedSercive45741747", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "b9009056-0000-0800-0000-5fe118520000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive2138812515", - "name": "LinkedSercive2138812515", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "b900695e-0000-0800-0000-5fe118690000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive417042405", - "name": "LinkedSercive417042405", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "000012ec-0000-0800-0000-5fe2594d0000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive55088323", - "name": "LinkedSercive55088323", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "000057ec-0000-0800-0000-5fe259660000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive2142776433", - "name": "LinkedSercive2142776433", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "00001bf3-0000-0800-0000-5fe25b7b0000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1199639292", - "name": "LinkedSercive1199639292", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "000066f3-0000-0800-0000-5fe25b920000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1401426573", - "name": "LinkedSercive1401426573", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "000001f9-0000-0800-0000-5fe25d410000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1164265271", - "name": "LinkedSercive1164265271", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "00003bf9-0000-0800-0000-5fe25d5a0000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - } - ], - "nextLink": "https://workspacechhamosynapse.dev.azuresynapse.net:443/linkedservices?api-version=2019-06-01-preview\u0026%24skipToken=%2BRID%3A%7ESl8ZAKxwhACFWwAAAAD8BA%3D%3D%23RT%3A2%23TRC%3A100%23ISV%3A2%23IEO%3A65551%23QCF%3A1" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices?api-version=2019-06-01-preview\u0026%24skipToken=%2BRID%3A~Sl8ZAKxwhACFWwAAAAD8BA%3D%3D%23RT%3A2%23TRC%3A100%23ISV%3A2%23IEO%3A65551%23QCF%3A1", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-1e32b40396e10e4aa326671db6bf1f38-25fcff27010d8d48-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "3229d4f415c58ca8f141ee655fff81ac", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Length": "13649", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:26:38 GMT", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "3229d4f415c58ca8f141ee655fff81ac", - "x-ms-request-id": "b5b5f7cc-f567-4e07-b42c-c752e9e14321" - }, - "ResponseBody": { - "value": [ - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1871992189", - "name": "LinkedSercive1871992189", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "0300fc76-0000-0800-0000-5fe389a40000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1310468832", - "name": "LinkedSercive1310468832", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "03002777-0000-0800-0000-5fe389b90000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive216597668", - "name": "LinkedSercive216597668", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "0300c17f-0000-0800-0000-5fe38ced0000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1718222757", - "name": "LinkedSercive1718222757", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "0300f77f-0000-0800-0000-5fe38d040000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1245075161", - "name": "LinkedSercive1245075161", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "0300d38a-0000-0800-0000-5fe3909d0000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive88302679", - "name": "LinkedSercive88302679", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "0300158b-0000-0800-0000-5fe390b80000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1495412509", - "name": "LinkedSercive1495412509", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "03007894-0000-0800-0000-5fe393c50000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive2137046366", - "name": "LinkedSercive2137046366", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "0300c894-0000-0800-0000-5fe393de0000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1857600842", - "name": "LinkedSercive1857600842", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "0300de9c-0000-0800-0000-5fe396dd0000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive469786997", - "name": "LinkedSercive469786997", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "0300299d-0000-0800-0000-5fe396fb0000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive400436699", - "name": "LinkedSercive400436699", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "03000aa6-0000-0800-0000-5fe399ec0000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive495886452", - "name": "LinkedSercive495886452", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "03005da6-0000-0800-0000-5fe39a010000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1101442691", - "name": "LinkedSercive1101442691", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "0300a7b1-0000-0800-0000-5fe39e040000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1774188743", - "name": "LinkedSercive1774188743", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "0300ebb1-0000-0800-0000-5fe39e1c0000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive2073787042", - "name": "LinkedSercive2073787042", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "030052c3-0000-0800-0000-5fe3a39f0000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive660565946", - "name": "LinkedSercive660565946", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "030095c3-0000-0800-0000-5fe3a3b50000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive80437647", - "name": "LinkedSercive80437647", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "030060d1-0000-0800-0000-5fe3a8360000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive898252850", - "name": "LinkedSercive898252850", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "0300a7d1-0000-0800-0000-5fe3a8530000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1073730247", - "name": "LinkedSercive1073730247", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "0207786f-0000-0800-0000-6000bcaf0000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive681108007", - "name": "LinkedSercive681108007", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "02073b83-0000-0800-0000-6000bcc90000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1698779984", - "name": "LinkedSercive1698779984", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "c407c7d8-0000-0800-0000-6001c0d10000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive357215418", - "name": "LinkedSercive357215418", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "c40749ed-0000-0800-0000-6001c0ee0000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive991201870", - "name": "LinkedSercive991201870", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "c80757ec-0000-0800-0000-6001c6440000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive583860423", - "name": "LinkedSercive583860423", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "c9079001-0000-0800-0000-6001c6600000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedService159", - "name": "LinkedService159", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "30005eed-0000-0800-0000-6008739a0000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedService777", - "name": "LinkedService777", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "3100e105-0000-0800-0000-600873bd0000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedService759", - "name": "LinkedService759", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "33007a8c-0000-0800-0000-600877360000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedService112", - "name": "LinkedService112", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "3300f59e-0000-0800-0000-600877520000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedService991", - "name": "LinkedService991", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "5100c270-0000-0800-0000-6008a26e0000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedService583", - "name": "LinkedService583", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "51005884-0000-0800-0000-6008a28b0000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedService474", - "name": "LinkedService474", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "27017458-0000-0800-0000-6009e37e0000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - } - ] - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/workspacechhamosynapse-WorkspaceDefaultSqlServer?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-b0319aac717d0a41b8e66284ef080344-2fa1cadbecd8434b-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "b5b8b6c2ba5740e4733887d01302705a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "699", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:26:39 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-ms-client-request-id": "b5b8b6c2ba5740e4733887d01302705a", - "x-ms-correlation-request-id": "f1634425-2784-45d3-ad20-5b09d818bbb9", - "x-ms-request-id": "3de8676b-0225-42c8-85d8-9b774a7c33ca", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/workspacechhamosynapse-WorkspaceDefaultSqlServer", - "name": "workspacechhamosynapse-WorkspaceDefaultSqlServer", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "typeProperties": { - "connectionString": "Data Source=tcp:workspacechhamosynapse.sql.azuresynapse.net,1433;Initial Catalog=@{linkedService().DBName}" - }, - "parameters": { - "DBName": { - "type": "String" - } - }, - "type": "AzureSqlDW", - "connectVia": { - "referenceName": "AutoResolveIntegrationRuntime", - "type": "IntegrationRuntimeReference" - } - }, - "etag": "ab035c9e-0000-0800-0000-5fd14daf0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/workspacechhamosynapse-WorkspaceDefaultStorage?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-4c53850798ed7447942e4f22e574dead-f0c24282c0b88444-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "e429fd9ea9416abab5d81f11ca6ddabc", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "584", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:26:39 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-ms-client-request-id": "e429fd9ea9416abab5d81f11ca6ddabc", - "x-ms-correlation-request-id": "19f9ceeb-e547-4685-a51a-0b422b510104", - "x-ms-request-id": "91ed41ea-2a4b-440a-8314-f75de93900c0", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/workspacechhamosynapse-WorkspaceDefaultStorage", - "name": "workspacechhamosynapse-WorkspaceDefaultStorage", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "typeProperties": { - "url": "https://storagechhamosynapse.dfs.core.windows.net" - }, - "type": "AzureBlobFS", - "connectVia": { - "referenceName": "AutoResolveIntegrationRuntime", - "type": "IntegrationRuntimeReference" - } - }, - "etag": "ab03399f-0000-0800-0000-5fd14db30000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive1927657153?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-5c6a009700b85d4d935946e295df4164-01135b6b150f0a4d-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "1fbeb969cf853a78f0e8bf8d8ed779ee", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "443", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:26:39 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-ms-client-request-id": "1fbeb969cf853a78f0e8bf8d8ed779ee", - "x-ms-correlation-request-id": "66356c3d-fb88-4783-a44d-9441931642fb", - "x-ms-request-id": "9a0e6ee3-e84a-45f8-81d7-0e2c73fa9b5f", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1927657153", - "name": "LinkedSercive1927657153", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "f501bdff-0000-0800-0000-5fd257ee0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive48615674?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-10c3120d2c5f2149885f03a8b6d7af28-f8cf2ba204317e44-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "61c794d09dd5186bfb4e007f9ad37505", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "439", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:26:39 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-ms-client-request-id": "61c794d09dd5186bfb4e007f9ad37505", - "x-ms-correlation-request-id": "e2edd181-4175-4703-a4d3-e6d50a9fe5c4", - "x-ms-request-id": "052bd0e2-5879-43cd-adea-d7383c73cccd", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive48615674", - "name": "LinkedSercive48615674", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "f6013401-0000-0800-0000-5fd257fb0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive259949839?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-4df1189599e2a9498ba9611a8e89b3c5-d300882d92ed194d-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "5966cb5e5144ced585eff358ea2ddcdd", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "441", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:26:39 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-ms-client-request-id": "5966cb5e5144ced585eff358ea2ddcdd", - "x-ms-correlation-request-id": "1fbcc91e-ca0b-4988-b367-8a2ac9ff20e3", - "x-ms-request-id": "d4de3fad-5aad-4fa1-b11f-b5d5b36f2b25", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive259949839", - "name": "LinkedSercive259949839", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "f601b61a-0000-0800-0000-5fd258dd0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive552714012?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-86a9f954b637ab4184ea9cb7d12839ea-92859ec6de3f1744-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "3640315e78a6cce64da62437cef9a01d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "441", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:26:40 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-ms-client-request-id": "3640315e78a6cce64da62437cef9a01d", - "x-ms-correlation-request-id": "155f2477-92c6-4c57-93ab-6d905217d800", - "x-ms-request-id": "d9ec20a2-93e5-42b8-870f-5fed295f964e", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive552714012", - "name": "LinkedSercive552714012", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "f601191c-0000-0800-0000-5fd258ea0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive494735049?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-88ab62c2b3c40e43b0f5be21e339fc5a-4f3157a735202e40-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "c32eb9721f707faabff8dce6a9122dcd", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "441", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:26:40 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-ms-client-request-id": "c32eb9721f707faabff8dce6a9122dcd", - "x-ms-correlation-request-id": "ca940d8f-abf4-4e1e-8ef5-0d0d59d9a4bf", - "x-ms-request-id": "5c915032-050e-4f71-af90-8602a64a644f", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive494735049", - "name": "LinkedSercive494735049", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "f6014839-0000-0800-0000-5fd259d80000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive1075151942?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-9011abf7c10fec409f3217010d16d11c-c05fa51174b99045-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "692023713f92e65fe49a0b9e2c9d008b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "443", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:26:40 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-ms-client-request-id": "692023713f92e65fe49a0b9e2c9d008b", - "x-ms-correlation-request-id": "668db5f8-1512-4585-9c24-e118cb394ada", - "x-ms-request-id": "dfff74c3-906e-44f1-8284-3f8179f73217", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1075151942", - "name": "LinkedSercive1075151942", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "f601503a-0000-0800-0000-5fd259e10000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive334963779?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-f4aba48c2c79dd4d8db9fbf80f5c85cd-a6af77eaa774114b-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "30e6d64f19ff3e6c86c077ae9bff233b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "441", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:26:40 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-ms-client-request-id": "30e6d64f19ff3e6c86c077ae9bff233b", - "x-ms-correlation-request-id": "fc4c472c-f698-4ead-9ad7-e73e5644a3a9", - "x-ms-request-id": "f37ca393-db2f-4f67-ad64-bccfad498d1d", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive334963779", - "name": "LinkedSercive334963779", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "f601bca7-0000-0800-0000-5fd25de30000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive1909004730?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-bb251c9222832044b54c3d5c6751a5fd-1956fabfc4fdee41-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "abc5567836d9338a5948ded6140b5221", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "443", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:26:40 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-ms-client-request-id": "abc5567836d9338a5948ded6140b5221", - "x-ms-correlation-request-id": "33780dd0-747c-46be-89da-d851c31b5716", - "x-ms-request-id": "5b76f9b2-37ee-472c-8f32-769d8a0c7aa4", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1909004730", - "name": "LinkedSercive1909004730", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "f60192a9-0000-0800-0000-5fd25df30000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive488681607?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-b48333fee81a834786eef0a1e5443bb8-4c1cb3fe6986fe4b-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "d29751f7fc2c57ceb6e1e2d1c7b14ae4", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "441", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:26:40 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-ms-client-request-id": "d29751f7fc2c57ceb6e1e2d1c7b14ae4", - "x-ms-correlation-request-id": "e40151f8-e631-447f-8d7a-7f0cb4007ad0", - "x-ms-request-id": "2b840af1-a8b2-4073-8285-01466991300c", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive488681607", - "name": "LinkedSercive488681607", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "f60138c0-0000-0800-0000-5fd25ebf0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive834727455?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-601c96e30028174486e311ce2ac818a3-edbdf484faef0a4d-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "d526d07655d818b24cb3d7b63b952a7a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "441", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:26:40 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-ms-client-request-id": "d526d07655d818b24cb3d7b63b952a7a", - "x-ms-correlation-request-id": "4985136f-de1d-41a2-8f70-7b49428b16d5", - "x-ms-request-id": "ae63f4c1-6332-4733-bd45-a855366b1689", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive834727455", - "name": "LinkedSercive834727455", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "f6014cc1-0000-0800-0000-5fd25eca0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive546967853?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-3568e99c249e874fbec68efadfe194c5-c6acc6cb5352ea44-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "49b6556d51677b0f886df4f754b86ba8", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "441", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:26:41 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-ms-client-request-id": "49b6556d51677b0f886df4f754b86ba8", - "x-ms-correlation-request-id": "ab1f143e-56e3-4c5b-91c1-c8372b927d4a", - "x-ms-request-id": "7130aaff-22b5-4ead-ba58-0982f3ce2b0a", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive546967853", - "name": "LinkedSercive546967853", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "f601d8d9-0000-0800-0000-5fd25fae0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive1749654824?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-2d05837ba7287e4faf5bbf3e7f5abd9f-fbb4d89453137f45-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "4360f9fd7ce5a2499f7f867825171c21", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "443", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:26:41 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-ms-client-request-id": "4360f9fd7ce5a2499f7f867825171c21", - "x-ms-correlation-request-id": "63468cbd-8b31-4758-ac51-76e800488448", - "x-ms-request-id": "2117a647-d05c-409a-a4c8-c57a7810f60c", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1749654824", - "name": "LinkedSercive1749654824", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "f60153db-0000-0800-0000-5fd25fbc0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive2030616186?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-4bc9f624dfeb574bb615485167c208e2-0ee4737344cc5a4c-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "716467b600fb257cc1aa4d6a61bac493", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "443", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:26:41 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-ms-client-request-id": "716467b600fb257cc1aa4d6a61bac493", - "x-ms-correlation-request-id": "0f47e9c6-ea90-4af5-a682-5941503d9429", - "x-ms-request-id": "b4b1e2db-9443-48cb-ba8f-89972ec00263", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive2030616186", - "name": "LinkedSercive2030616186", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "f701d646-0000-0800-0000-5fd263cd0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive543683066?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-548f6913d8f5c547b0839e65b8611b30-ffe37c7f61b8894b-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "41b82e48e735f0950c14aae8ca965571", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "441", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:26:41 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-ms-client-request-id": "41b82e48e735f0950c14aae8ca965571", - "x-ms-correlation-request-id": "b579db91-8535-4c7e-a018-8a5a22e0863b", - "x-ms-request-id": "50fdfe5a-6158-46cf-b4f0-a4e8d01e2151", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive543683066", - "name": "LinkedSercive543683066", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "f7019c48-0000-0800-0000-5fd263de0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive2127521067?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-404be95727614b4f81ef73533971c7e5-4a021c2f3b28a142-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "ec41d250f954fcad7c3b813a2fdf41e4", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "443", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:26:41 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-ms-client-request-id": "ec41d250f954fcad7c3b813a2fdf41e4", - "x-ms-correlation-request-id": "1acd6261-807b-4af6-b71b-3689485be19d", - "x-ms-request-id": "9146c51e-e680-479e-868b-4c1fe8e71ac6", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive2127521067", - "name": "LinkedSercive2127521067", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "f7016562-0000-0800-0000-5fd264cd0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive694203911?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-56ef7c6f5d139a4bbdee8f04feefe8c4-37c83c01443c2442-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "f630f2bbdb5eceecd27365e655945a2b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "441", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:26:42 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-ms-client-request-id": "f630f2bbdb5eceecd27365e655945a2b", - "x-ms-correlation-request-id": "0ef5012e-8528-4a1e-a8d0-84987b3bf04a", - "x-ms-request-id": "253bb220-d885-4f54-9e18-5c52b3394aa5", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive694203911", - "name": "LinkedSercive694203911", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "f7015f64-0000-0800-0000-5fd264df0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive1422502982?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-8f4ac376526d354fa2553ae06ae9b1f6-fb45c36de6f0f149-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "8e19dc55d7794f3f81bcc4f9655ac12d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "443", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:26:42 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-ms-client-request-id": "8e19dc55d7794f3f81bcc4f9655ac12d", - "x-ms-correlation-request-id": "029535a1-cfa9-4b17-8657-07e20afaf08f", - "x-ms-request-id": "6f85723e-66ad-4a59-a1c0-8cd19ea18938", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1422502982", - "name": "LinkedSercive1422502982", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "f7016e92-0000-0800-0000-5fd2668b0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive471022701?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-a6af240c6f5e97459475fe8cfcd39b40-a4576af00046bb49-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "d82cc6d35e667512e67219e193c6a6e8", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "441", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:26:42 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-ms-client-request-id": "d82cc6d35e667512e67219e193c6a6e8", - "x-ms-correlation-request-id": "3af44895-cc3e-484a-b58a-e96d79391668", - "x-ms-request-id": "6adbdeb4-29df-4604-a723-275404109ce9", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive471022701", - "name": "LinkedSercive471022701", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "f701c993-0000-0800-0000-5fd266980000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive1266290659?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-e3ad0f27d319a94c86c6a3bfaff77f2d-8538d48eb7cf4e4e-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "53e556e0b2c5e36bb3e075a217f26878", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "443", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:26:42 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-ms-client-request-id": "53e556e0b2c5e36bb3e075a217f26878", - "x-ms-correlation-request-id": "b129bd54-fbfb-4ab8-90c5-310b78343171", - "x-ms-request-id": "fff4705e-0851-46fc-8912-3087415f55d0", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1266290659", - "name": "LinkedSercive1266290659", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "19028578-0000-0800-0000-5fd3a7f20000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive468335119?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-fc608d9846963a44b3966338ff7a7d1a-44443af7f8d86c4d-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "8f1337b28267f6c5caa4a706bd5ebbbb", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "441", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:26:42 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-ms-client-request-id": "8f1337b28267f6c5caa4a706bd5ebbbb", - "x-ms-correlation-request-id": "513a90f6-1dd7-40c0-8e2c-6dce7cf047b6", - "x-ms-request-id": "da91a22c-2dc2-43f7-a90f-2e66d0923392", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive468335119", - "name": "LinkedSercive468335119", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "19025b7a-0000-0800-0000-5fd3a8010000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive169045690?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-792d2a25a528dc4a901104ffacff663e-fc04866bed719e48-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "0f19dc156d7420675b492585e96f5ef4", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "441", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:26:42 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-ms-client-request-id": "0f19dc156d7420675b492585e96f5ef4", - "x-ms-correlation-request-id": "549f1d2e-9453-43d3-b904-ff46dffb12a6", - "x-ms-request-id": "95757b04-ed8c-431c-bfb3-f0da5b39aef6", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive169045690", - "name": "LinkedSercive169045690", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "62028790-0000-0800-0000-5fd797470000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive149240830?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-83837806f1c75544b2b9e4724c06bfbe-189d5f5a95841a4d-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "5b2ea10917b25d8091ee89210b642654", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "441", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:26:43 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-ms-client-request-id": "5b2ea10917b25d8091ee89210b642654", - "x-ms-correlation-request-id": "75814c8a-9d83-4458-b816-247b73899479", - "x-ms-request-id": "a6a9a474-1084-4237-9600-e1dde9920635", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive149240830", - "name": "LinkedSercive149240830", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "62029e92-0000-0800-0000-5fd797560000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive1242831133?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-257ec1f056af204dbd1872342de0eca9-262df5a22a675144-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "3a8db92559d84403d0f3341e5d3f0d5a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "443", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:26:43 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-ms-client-request-id": "3a8db92559d84403d0f3341e5d3f0d5a", - "x-ms-correlation-request-id": "4586eddc-34f9-4cd7-8a49-7194d0b3a95f", - "x-ms-request-id": "290b6cc9-8523-4b54-ba9b-2e794e0b8fca", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1242831133", - "name": "LinkedSercive1242831133", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "620236c1-0000-0800-0000-5fd798c50000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive1055826840?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-5dd042e5641b6641813a6ee0f5980abe-68ed61192b48f244-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "1cfdb3465f2ffd085bbb7d85e44615f6", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "443", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:26:43 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-ms-client-request-id": "1cfdb3465f2ffd085bbb7d85e44615f6", - "x-ms-correlation-request-id": "e31084d3-7868-4ca7-8f1f-d6dd3ad64bec", - "x-ms-request-id": "5ada17a0-76f3-46cb-b561-1c83520f8372", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1055826840", - "name": "LinkedSercive1055826840", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "6202e6c3-0000-0800-0000-5fd798d60000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive1643748789?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-1f82407ee98c5f478ee56a81acb8165c-67833e5cbdb5c449-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "2f5fd02223e1af1b9dea8bbfe2620051", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "443", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:26:43 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-ms-client-request-id": "2f5fd02223e1af1b9dea8bbfe2620051", - "x-ms-correlation-request-id": "2ea787c1-2e3f-45ba-a6c4-418d9519a80f", - "x-ms-request-id": "21a25653-ea18-4b5a-81d4-cc8167ba240f", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1643748789", - "name": "LinkedSercive1643748789", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "6202f8e6-0000-0800-0000-5fd799dd0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive1366609036?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-e99a2a72f06f3d4f86d9375ac0e0d298-f2e3f49a88961e44-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "57db2ee10967c524b18fdf1ddb7e6089", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "443", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:26:43 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-ms-client-request-id": "57db2ee10967c524b18fdf1ddb7e6089", - "x-ms-correlation-request-id": "716d3e29-c79c-4bfc-aafa-e84473178d77", - "x-ms-request-id": "72b743e2-52c4-4458-94f8-8d003fb7cf2a", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1366609036", - "name": "LinkedSercive1366609036", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "6202f7e8-0000-0800-0000-5fd799ef0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive697524680?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-b583c0ad17a7004ea708a1db096ee28c-d3320db8b367284a-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "8cfb3ededddf2278984d7f45d4491bf9", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "441", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:26:43 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-ms-client-request-id": "8cfb3ededddf2278984d7f45d4491bf9", - "x-ms-correlation-request-id": "a4afcbfc-f99b-4df8-be11-126d5ffdd870", - "x-ms-request-id": "4e8b9bdf-5e4c-4dea-b0d3-a8a7e9601026", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive697524680", - "name": "LinkedSercive697524680", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "83029df2-0000-0800-0000-5fd8d39b0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive1665537899?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-4180ec432199d14e8e0793e11bbfa3cd-3211cd429ef35243-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "b5a32cbbbd6a198fab9a7e5243fdd41f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "443", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:26:45 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-ms-client-request-id": "b5a32cbbbd6a198fab9a7e5243fdd41f", - "x-ms-correlation-request-id": "9f211a8a-d4c7-4adc-9ebc-944cd0522d5f", - "x-ms-request-id": "b9944da2-a113-4613-8aeb-7fbef1f0f06e", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1665537899", - "name": "LinkedSercive1665537899", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "8302a2f4-0000-0800-0000-5fd8d3ad0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive1987327059?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-4be93556f85aa347befb87745a919376-5d9c9e295a1f684c-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "a4e1018a73660471b6b8be198adff168", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "443", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:26:45 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-ms-client-request-id": "a4e1018a73660471b6b8be198adff168", - "x-ms-correlation-request-id": "7ca35cf1-9c79-42cc-ba5b-0859d8053e6d", - "x-ms-request-id": "07b4f56c-72c0-445c-ae52-c12ea3652351", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1987327059", - "name": "LinkedSercive1987327059", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "8402d32b-0000-0800-0000-5fd8d5520000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive1602624665?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-d4b4703a820ff247b4a1de617a48dd17-7392d27e55a63649-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "af61e674aada201faee2e1455f26de9a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "443", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:26:45 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-ms-client-request-id": "af61e674aada201faee2e1455f26de9a", - "x-ms-correlation-request-id": "f2ef85dc-8821-43d7-a266-193dd26e162d", - "x-ms-request-id": "1e558329-08c3-417e-891f-a2ace5359070", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1602624665", - "name": "LinkedSercive1602624665", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "8402c02e-0000-0800-0000-5fd8d5680000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive944610075?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-357fc1998769314795f524c6f06d092b-e6e8a12a3da9cf47-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "d2ba607976684892ba9fffb1fe758ecb", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "441", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:26:45 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-ms-client-request-id": "d2ba607976684892ba9fffb1fe758ecb", - "x-ms-correlation-request-id": "633b180e-c57a-40dd-9a96-88c9b3aac05e", - "x-ms-request-id": "8f7a703b-8abd-4424-beba-b6d86aa9e168", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive944610075", - "name": "LinkedSercive944610075", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "8402ae54-0000-0800-0000-5fd8d6870000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive797666631?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-db79b7cabfc7f54bbd28b4a086e184c3-0ebd8f31b0f17c4e-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "5ddd16a8249cdf44e2c0f584912ca48f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "441", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:26:45 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-ms-client-request-id": "5ddd16a8249cdf44e2c0f584912ca48f", - "x-ms-correlation-request-id": "00770d3e-8922-48e2-a864-1b3f3c2a7e1b", - "x-ms-request-id": "d8ad1d15-453e-4761-bdf4-a91f1d5f3b43", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive797666631", - "name": "LinkedSercive797666631", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "8402be55-0000-0800-0000-5fd8d6910000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive263692593?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-bfb8639768c9394297e80a884ef5fc77-f1024f81e4104b4b-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "2aa024d91e24fe005319f53aab6d2139", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "441", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:26:45 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-ms-client-request-id": "2aa024d91e24fe005319f53aab6d2139", - "x-ms-correlation-request-id": "15fb0f81-fbde-49d2-85f2-cb136d8bf030", - "x-ms-request-id": "201af676-bfca-4503-b739-079c092d41b5", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive263692593", - "name": "LinkedSercive263692593", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "8702baaf-0000-0800-0000-5fd8f1270000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive819295136?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-a3a37a6f4a010442bc86cba8a84f9b9b-6c744278f426be4e-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "499c1553814954fe1bdbf0a7800db68d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "441", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:26:46 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-ms-client-request-id": "499c1553814954fe1bdbf0a7800db68d", - "x-ms-correlation-request-id": "b4927a15-cc7f-4f39-baf7-0e64de3348ab", - "x-ms-request-id": "604b88c9-2212-403f-8a81-e22b6c42a048", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive819295136", - "name": "LinkedSercive819295136", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "8702cfb1-0000-0800-0000-5fd8f1360000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive1527582843?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-fc38c17f0410854d9e8d397670d882a2-fc9161d03cbaf442-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "dad86ffa64d489a615df09822f093375", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "443", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:26:46 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-ms-client-request-id": "dad86ffa64d489a615df09822f093375", - "x-ms-correlation-request-id": "25ce7cbd-0bef-47e6-a46d-47864cd6f2ab", - "x-ms-request-id": "1af6cf34-e43f-40f0-9db1-ef13bb04a31d", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1527582843", - "name": "LinkedSercive1527582843", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "870288ce-0000-0800-0000-5fd8f21f0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive600518366?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-4e5836730ea2e44f8379aa6f6876adcd-ed316da9661d9241-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "7c31bc9e5b8f5846264c0e492e587d45", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "441", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:26:46 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-ms-client-request-id": "7c31bc9e5b8f5846264c0e492e587d45", - "x-ms-correlation-request-id": "d73c6990-2349-4dfa-8901-57b67cc80b67", - "x-ms-request-id": "9bb346a3-8b71-4d6f-a44d-831b25f9ec48", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive600518366", - "name": "LinkedSercive600518366", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "8702e3d1-0000-0800-0000-5fd8f2370000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive1420436778?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-5b9d04a585459d448c800ae8569f4923-bc112dd34ff7634c-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "3b3f67634795ee656e123369777b2511", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "443", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:26:46 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-ms-client-request-id": "3b3f67634795ee656e123369777b2511", - "x-ms-correlation-request-id": "c0bf25cd-37d7-4711-ba48-3e868f3676f0", - "x-ms-request-id": "d0590df2-dcc2-4599-880e-3bfe629fcbbb", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1420436778", - "name": "LinkedSercive1420436778", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "8702aff2-0000-0800-0000-5fd8f33e0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive1785865340?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-7aa743ee5829f3498374f8ab95f42cc2-9aae9ce992907743-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "c4097ba73adc9ffe297fb488565d5bbd", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "443", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:26:46 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-ms-client-request-id": "c4097ba73adc9ffe297fb488565d5bbd", - "x-ms-correlation-request-id": "6f58b2b8-7326-46b5-bf25-87dec6b8936a", - "x-ms-request-id": "36c845f6-45d1-4199-a819-9add1e118a2d", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1785865340", - "name": "LinkedSercive1785865340", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "8702daf4-0000-0800-0000-5fd8f3500000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive672261494?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-bda7a98b19266a47ace767256365e966-e9cbd565bc0bf14d-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "c81fc461f7ca56df57420d7c28dce1aa", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "441", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:26:46 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-ms-client-request-id": "c81fc461f7ca56df57420d7c28dce1aa", - "x-ms-correlation-request-id": "bc5d6fa8-def7-49cb-958d-50973e40b977", - "x-ms-request-id": "afb32951-0f26-42e6-bde0-5a38e2925db9", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive672261494", - "name": "LinkedSercive672261494", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "88024060-0000-0800-0000-5fd8f6b40000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive901808331?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-fe68bd3a671a9c4ea83a3f052779be07-b4790b1b2d173e44-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "b3a1fc27b94f296969a0121593dc9811", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "441", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:26:47 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-ms-client-request-id": "b3a1fc27b94f296969a0121593dc9811", - "x-ms-correlation-request-id": "6c0da019-498b-42f0-be45-be25479dac32", - "x-ms-request-id": "0507a70d-d570-4d7d-a53e-7b704f3ecf1b", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive901808331", - "name": "LinkedSercive901808331", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "88027e62-0000-0800-0000-5fd8f6c80000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive1709596576?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-f53faa7a578c44439eb006d97997ddec-2b05cc6d6e09694f-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "b30875b75c5caf479bb26d992d81774c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "443", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:26:47 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-ms-client-request-id": "b30875b75c5caf479bb26d992d81774c", - "x-ms-correlation-request-id": "c9fb8e20-029f-4885-bd89-3e0b66f3a2a0", - "x-ms-request-id": "04c463a3-46d1-4e86-be2e-278111b32d0e", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1709596576", - "name": "LinkedSercive1709596576", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "88020d81-0000-0800-0000-5fd8f7d30000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive1095119785?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-a4faebf193e77445b2e16ebac9bfffc6-0527e52d57a67c4b-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "5961099ea7bba86e5af65f29e5c9c37a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "443", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:26:47 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-ms-client-request-id": "5961099ea7bba86e5af65f29e5c9c37a", - "x-ms-correlation-request-id": "49f9fa89-d481-41ce-b181-45ea9fdcc825", - "x-ms-request-id": "9bd3e8ed-7d99-40e1-9103-358c4e774640", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1095119785", - "name": "LinkedSercive1095119785", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "88024683-0000-0800-0000-5fd8f7e70000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive1810830919?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-c8c0c60c27de2a48aef0ee75a1434960-9acf6c2e2fba7b44-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "b2c5fbaa2dd4ca4eb5f2189c4ccffbe7", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "443", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:26:47 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-ms-client-request-id": "b2c5fbaa2dd4ca4eb5f2189c4ccffbe7", - "x-ms-correlation-request-id": "8035c801-fbde-4cf6-a5c3-1fb7efd0e1c4", - "x-ms-request-id": "627326b1-13a4-4df5-9516-5aad850e9ef0", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1810830919", - "name": "LinkedSercive1810830919", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "8802f1a5-0000-0800-0000-5fd8f8ff0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive881765773?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-c576f058a917dc4faf6d686cb2b31a88-e266673b4716b846-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "8977c6293f7b1056075f5866fd1dcad1", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "441", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:26:47 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-ms-client-request-id": "8977c6293f7b1056075f5866fd1dcad1", - "x-ms-correlation-request-id": "e795089b-888e-4206-972f-c5bb2ff6097e", - "x-ms-request-id": "a8c1064d-2438-4dac-a2d2-7fb90b29a36b", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive881765773", - "name": "LinkedSercive881765773", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "8802b0a8-0000-0800-0000-5fd8f9150000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive80443021?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-3f20059bbc843f4cae1d96d10b826320-16e5ae6ebf7d1347-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "31eff2eec4bc7077bb96a3c88ed15c8b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "439", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:26:48 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-ms-client-request-id": "31eff2eec4bc7077bb96a3c88ed15c8b", - "x-ms-correlation-request-id": "7551fd83-6ace-416e-a0e4-7f04de9aa20d", - "x-ms-request-id": "c91bb37d-2f0b-4422-9983-9850536e60b4", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive80443021", - "name": "LinkedSercive80443021", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "42000b5d-0000-0800-0000-5fda868f0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive1533253258?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-c00a42bf5a7247439727952c9a6403d5-2c2ab9d346e28446-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "1e0077fa3a526bfea5b4aa74d5e8cc97", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "443", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:26:48 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-ms-client-request-id": "1e0077fa3a526bfea5b4aa74d5e8cc97", - "x-ms-correlation-request-id": "11d6762c-aa81-4ebe-b79c-98e023c26d39", - "x-ms-request-id": "3505ebf5-88f5-4918-a726-ec7f334a06fd", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1533253258", - "name": "LinkedSercive1533253258", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "4200e562-0000-0800-0000-5fda86a60000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive1609548572?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-778cae09768d6d48bc8c1de074cbf7da-f8bd73c97de26d46-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "59ad4628cadf642b4e07cde49b8d8135", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "443", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:26:48 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-ms-client-request-id": "59ad4628cadf642b4e07cde49b8d8135", - "x-ms-correlation-request-id": "fb7ac963-16d8-45f6-8e26-0a241fe8c92c", - "x-ms-request-id": "0b8dddd1-1388-4bfc-9e25-cc47c5a0115f", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1609548572", - "name": "LinkedSercive1609548572", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "42005da4-0000-0800-0000-5fda87a90000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive88790287?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-d2b763575a2a01498357d545d81acf58-0f5ff0aaf8c1c94a-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "866bcc03ab1db47ff4848c0719039bd3", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "439", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:26:48 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-ms-client-request-id": "866bcc03ab1db47ff4848c0719039bd3", - "x-ms-correlation-request-id": "052662df-a49a-482d-b5df-a0a206609cf9", - "x-ms-request-id": "ee7dd761-aa86-408b-8331-43979e107009", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive88790287", - "name": "LinkedSercive88790287", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "420000a9-0000-0800-0000-5fda87bd0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive2135321969?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-70202e21661702488834ff31713036ce-4714bcf90d637f48-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "48a00bca032330ac4b9bd04b6c1acf17", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "443", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:26:48 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-ms-client-request-id": "48a00bca032330ac4b9bd04b6c1acf17", - "x-ms-correlation-request-id": "58cd3eaf-5eb0-4414-b19f-a9bfb1970a9e", - "x-ms-request-id": "632179a8-3666-41f2-bd34-54ae19ca9f92", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive2135321969", - "name": "LinkedSercive2135321969", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "420087e7-0000-0800-0000-5fda88ab0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive1388175726?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-e67e30164cca6b48a19502027d5db66e-a3c99cd864c24142-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "08707433467c7c7ac7f9645a3d244b4a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "443", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:26:48 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-ms-client-request-id": "08707433467c7c7ac7f9645a3d244b4a", - "x-ms-correlation-request-id": "c8100abb-2a6c-4323-8478-8d12abcbf10a", - "x-ms-request-id": "89d7381d-62ce-46a8-8b5c-f62cc5add7c0", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1388175726", - "name": "LinkedSercive1388175726", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "4200cced-0000-0800-0000-5fda88c40000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive838395211?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-ca90117550c68146b71cc28fb439dd40-708a8b48dbad0f4c-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "901afa6b39ec0012203b3a81db3448da", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "441", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:26:48 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-ms-client-request-id": "901afa6b39ec0012203b3a81db3448da", - "x-ms-correlation-request-id": "e8511523-f869-47ce-9ed1-4738c1bf207e", - "x-ms-request-id": "74165deb-5f8d-40e4-95eb-b941dee5a3a5", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive838395211", - "name": "LinkedSercive838395211", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "79002090-0000-0800-0000-5fdbaf550000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive1185988641?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-c359233757df0141a2245cf8ba592601-6b79853029582b45-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "a4d474b5929284579124802a9e51f227", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "443", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:26:49 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-ms-client-request-id": "a4d474b5929284579124802a9e51f227", - "x-ms-correlation-request-id": "89e1f0cb-4837-4f8b-bef1-3d8015f318b0", - "x-ms-request-id": "a3ab19b1-2a91-4bee-bce2-1efee6614512", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1185988641", - "name": "LinkedSercive1185988641", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "79007897-0000-0800-0000-5fdbaf6a0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive465005367?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-039fee1e563c8744bd375a22699cf22d-0ca19386e5219645-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "72df85503ffffa2b6270e8400bf8a193", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "441", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:26:49 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-ms-client-request-id": "72df85503ffffa2b6270e8400bf8a193", - "x-ms-correlation-request-id": "881cab0a-746e-471b-87c8-891a50673ca2", - "x-ms-request-id": "c0781bab-8e40-44f9-a408-c200e66a7c80", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive465005367", - "name": "LinkedSercive465005367", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "7900aaef-0000-0800-0000-5fdbb0610000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive887421172?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-97c40eb6b1d2754cbfbcd3d0117a6cd5-6d67f3b741f2d444-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "c8a58ab0a650d9b8a296fec8b8e761ce", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "441", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:26:49 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-ms-client-request-id": "c8a58ab0a650d9b8a296fec8b8e761ce", - "x-ms-correlation-request-id": "a3cfda61-b04a-4f06-afbb-51fd246c965c", - "x-ms-request-id": "4abe4678-6d9b-41ab-98a9-0937a26735de", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive887421172", - "name": "LinkedSercive887421172", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "7900c8f5-0000-0800-0000-5fdbb0720000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive515318195?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-7bfdbe50fd25e540b194871f769cdf57-c19eb9e5532d7244-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "55311249d65475da49d94222aa167898", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "441", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:26:49 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-ms-client-request-id": "55311249d65475da49d94222aa167898", - "x-ms-correlation-request-id": "cf43cf4e-c5d4-4fcd-b8cc-f191eab81b97", - "x-ms-request-id": "67a6de94-9e8a-4fc9-a2b6-3f3691040eb5", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive515318195", - "name": "LinkedSercive515318195", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "7a004859-0000-0800-0000-5fdbb1830000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive1843363636?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-c9917acaf7c7844f9be24cfd59f472dd-7e4708a1c678a546-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "1379ed8229abaad7cc06cf694062427b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "443", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:26:49 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-ms-client-request-id": "1379ed8229abaad7cc06cf694062427b", - "x-ms-correlation-request-id": "e6f5a22d-7136-4dd2-a95e-cc39d6e0da56", - "x-ms-request-id": "44966dec-da78-4236-bc51-0c41b5cf8ac3", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1843363636", - "name": "LinkedSercive1843363636", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "7a007e62-0000-0800-0000-5fdbb1990000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive1690403739?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-36c8f9bea0521c45bde9a190b7934bcf-1d5c5f1260de134d-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "f9f7190e4bc7da3eb02f7f7664962e8c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "443", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:26:49 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-ms-client-request-id": "f9f7190e4bc7da3eb02f7f7664962e8c", - "x-ms-correlation-request-id": "654a0fa2-2fe7-48df-b7d0-2831d164f5d4", - "x-ms-request-id": "b7a9f267-2773-41fa-bc86-92693b046887", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1690403739", - "name": "LinkedSercive1690403739", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "12000290-0000-0800-0000-5fdcc7900000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive42707264?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-7cbcdaa1ffd2ff46b1a060f89a0de8b5-9b92761817e1ba41-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "ca45661d4d6d1f233a86884e067035e6", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "439", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:26:49 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-ms-client-request-id": "ca45661d4d6d1f233a86884e067035e6", - "x-ms-correlation-request-id": "e4b58684-2c78-4cdc-8598-8dc13074f555", - "x-ms-request-id": "39324515-2a70-4380-baf2-03cf3ee7c8e9", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive42707264", - "name": "LinkedSercive42707264", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "12003192-0000-0800-0000-5fdcc7a10000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive1233836124?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-e53024705c45994c81872917e1f42c69-9d647e9b2c79904b-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "9113c7977e1e36d0af9f637baa614636", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "443", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:26:50 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-ms-client-request-id": "9113c7977e1e36d0af9f637baa614636", - "x-ms-correlation-request-id": "8c84697b-c15d-4b94-8e72-031eb426f0cc", - "x-ms-request-id": "bbb7a547-ce31-4c73-96f8-1bbbb0a0a3d5", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1233836124", - "name": "LinkedSercive1233836124", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "120021ca-0000-0800-0000-5fdcc9790000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive139239537?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-cfee20d73f218c48a5e33b1d6cf20ad0-45c29c25f13bc544-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "d94b43d7771cc00df6d8bf40c2efd43f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "441", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:26:50 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-ms-client-request-id": "d94b43d7771cc00df6d8bf40c2efd43f", - "x-ms-correlation-request-id": "ff013316-e5c5-40e4-a771-d8240faa11e7", - "x-ms-request-id": "5265f604-406e-4b44-ab41-b71ef7f23ca4", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive139239537", - "name": "LinkedSercive139239537", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "1200a1cc-0000-0800-0000-5fdcc98f0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive610829349?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-09f29f5280162f4fac94a9ca00919d68-d2445fec0be0b245-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "9dde98fa9d829f6d950f1aceeaa774d8", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "441", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:26:50 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-ms-client-request-id": "9dde98fa9d829f6d950f1aceeaa774d8", - "x-ms-correlation-request-id": "3dfed465-1abd-49ce-87ea-cc04810d1c2e", - "x-ms-request-id": "6c9c5429-8bd7-4860-a9df-ae5c5bf15cd8", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive610829349", - "name": "LinkedSercive610829349", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "12005cfb-0000-0800-0000-5fdccb150000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive1405507449?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-423ecc593f58ea478fff8b546cbf16ff-daf21857457b3d42-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "c37652405b2520c9b9529a46bf9073bf", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "443", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:26:50 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-ms-client-request-id": "c37652405b2520c9b9529a46bf9073bf", - "x-ms-correlation-request-id": "5e5e51e8-206d-42ad-9ea0-753eb9fae56d", - "x-ms-request-id": "08ff2340-f6c2-41a3-9cbb-101cef6c2894", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1405507449", - "name": "LinkedSercive1405507449", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "12006efd-0000-0800-0000-5fdccb2a0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive1937683374?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-e2227b5639c9424a90e2cc8d7434d73b-8f90587330876741-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "128124cba9833ab3d6ac440d5c3ed64e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "443", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:26:50 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-ms-client-request-id": "128124cba9833ab3d6ac440d5c3ed64e", - "x-ms-correlation-request-id": "2b6b54b3-4b3c-419d-a565-46306658f6c6", - "x-ms-request-id": "dda99b66-5c4e-48ce-bea7-9ee2ef232bd2", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1937683374", - "name": "LinkedSercive1937683374", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "140039f8-0000-0800-0000-5fdcdd030000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive1879162900?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-19e4a049f97fb74fb3f9b4aaca510c96-c068ee38bc447d40-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "7000e66411799f1acebee3300226df05", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "443", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:26:50 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-ms-client-request-id": "7000e66411799f1acebee3300226df05", - "x-ms-correlation-request-id": "9d78bce9-7ab7-442f-81c5-e642b1c9129d", - "x-ms-request-id": "1702542f-8f47-4c47-b80b-9570be6ceaa4", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1879162900", - "name": "LinkedSercive1879162900", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "140070fa-0000-0800-0000-5fdcdd150000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive1048841025?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-f0a1cfa33932524f8efb5f56f0fb8aad-a6ee0774d38e2f44-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "c5035b9b612697559e3cec7817bcc37a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "443", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:26:50 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-ms-client-request-id": "c5035b9b612697559e3cec7817bcc37a", - "x-ms-correlation-request-id": "e34dc0e0-9185-43df-b135-b5642623ce70", - "x-ms-request-id": "63db9f66-a607-49ad-96e7-ae90d70e160d", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1048841025", - "name": "LinkedSercive1048841025", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "15004218-0000-0800-0000-5fdcde1e0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive1678343714?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-82f784dd6b988849af71b5a38eb720e1-6f5f11a46794444d-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "d9e24c7c038fba460ae244c5c58337af", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "443", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:26: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-ms-client-request-id": "d9e24c7c038fba460ae244c5c58337af", - "x-ms-correlation-request-id": "805a7feb-9f2c-426d-b72a-9b6ed642ef67", - "x-ms-request-id": "d69434a4-458d-4c6f-ac0a-75b880a6a9da", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1678343714", - "name": "LinkedSercive1678343714", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "1500801a-0000-0800-0000-5fdcde340000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive1008491562?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-2ce847051b311b45ac0ff37cd3261390-b36d0cdb2b91ff47-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "01723ecc113b02289068d13c24a18712", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "443", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:26: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-ms-client-request-id": "01723ecc113b02289068d13c24a18712", - "x-ms-correlation-request-id": "83372a82-ad48-4f37-8389-bf6359acfa52", - "x-ms-request-id": "982cbb09-0488-4afa-9fbc-2fc352b3908d", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1008491562", - "name": "LinkedSercive1008491562", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "15001c3a-0000-0800-0000-5fdcdf3c0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive1390065082?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-738149589d1c034ebb1e4513093f9921-ad7e3046e0e56440-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "b6b368fa064497751548ba441d90d21b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "443", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:26: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-ms-client-request-id": "b6b368fa064497751548ba441d90d21b", - "x-ms-correlation-request-id": "9e89563b-fbb3-4ecb-99c3-8610a5ce0d81", - "x-ms-request-id": "51c0f203-d2e2-4c91-bdab-62581ae54076", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1390065082", - "name": "LinkedSercive1390065082", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "1500ba3c-0000-0800-0000-5fdcdf500000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive506195076?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-51d9530c4323f84f91a2153609d6caf9-0c37ba9e84280a4d-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "d8ac3c04c2496a3f24e0482731099569", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "441", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:26: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-ms-client-request-id": "d8ac3c04c2496a3f24e0482731099569", - "x-ms-correlation-request-id": "c0ee3a9a-f8b9-4093-bdf5-b6721f91f7d0", - "x-ms-request-id": "0a1e7445-f1d2-46ea-9260-af6234dcc7b7", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive506195076", - "name": "LinkedSercive506195076", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "1500f2eb-0000-0800-0000-5fdce5770000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive914511652?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-218d458d77ca1a4aa89f6b44eb815c46-166b3ad53d70654e-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "5dca325a81cfc66bc8dbecf256e3e400", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "441", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:26: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-ms-client-request-id": "5dca325a81cfc66bc8dbecf256e3e400", - "x-ms-correlation-request-id": "801b281a-11ac-4356-a2b8-8b727626fa19", - "x-ms-request-id": "f136affb-0b34-4213-a161-ac5fcfae7d01", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive914511652", - "name": "LinkedSercive914511652", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "15000fee-0000-0800-0000-5fdce58c0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive1595131040?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-c252896c0ef5c745ae27e2112a5da485-e0aa62d57aac0d4d-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "e738b696aff538c829489164bd4e660c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "443", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:26: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-ms-client-request-id": "e738b696aff538c829489164bd4e660c", - "x-ms-correlation-request-id": "b40be27e-9b2e-4699-982a-79ed256ef9c5", - "x-ms-request-id": "d3e21200-06c6-411e-a606-18d7c75a4004", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1595131040", - "name": "LinkedSercive1595131040", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "1600ed0e-0000-0800-0000-5fdce6aa0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive1805011694?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-d89fc31a0a82764fb0c5eedfa45616a1-9a25ea5e2b66cd46-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "ebea50b374c6834bd1e6106ed64c1440", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "443", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:26: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-ms-client-request-id": "ebea50b374c6834bd1e6106ed64c1440", - "x-ms-correlation-request-id": "07d8384f-ca6e-4bbb-a5e0-a3ea7443b016", - "x-ms-request-id": "56384818-f99b-4119-b376-143cc5dca37b", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1805011694", - "name": "LinkedSercive1805011694", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "1600c712-0000-0800-0000-5fdce6c40000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive675313907?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-dbd204ba687c914096c624ecde68275a-1161c3616dc7104d-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "7a9148fbaed1ab7469913487ef07087a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "441", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:26:52 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-ms-client-request-id": "7a9148fbaed1ab7469913487ef07087a", - "x-ms-correlation-request-id": "3ed92922-b72d-4e03-a414-8d1bf7063c3d", - "x-ms-request-id": "a1cadfa7-ec06-49c3-8414-180f6b1a1649", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive675313907", - "name": "LinkedSercive675313907", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "1600b536-0000-0800-0000-5fdce8080000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive1464325023?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-d7968b973cfbe64986713c1b1fe85377-196d32871f910e4d-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "053fdf74f8f921396bb4150e9e5a62dc", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "443", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:26:52 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-ms-client-request-id": "053fdf74f8f921396bb4150e9e5a62dc", - "x-ms-correlation-request-id": "12000c1b-5514-4810-934f-317f55717f78", - "x-ms-request-id": "4c68651a-52fb-40d7-8841-2599a80d7874", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1464325023", - "name": "LinkedSercive1464325023", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "16002039-0000-0800-0000-5fdce81e0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive851402915?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-836f5757b26ecf489e73817845f4a31a-72aed69d6cc0e547-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "75685034ebbc043adc3f823440c493ca", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "441", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:26:52 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-ms-client-request-id": "75685034ebbc043adc3f823440c493ca", - "x-ms-correlation-request-id": "077d807e-1626-4e1c-9902-de5e7d22419f", - "x-ms-request-id": "6c793174-beb3-4a25-addb-fff3a14b08ab", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive851402915", - "name": "LinkedSercive851402915", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "94008e1c-0000-0800-0000-5fe0ce1f0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive60722854?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-df669a00c38a6d4c83447d8480191fb6-a3bccb04f5a07848-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "f6f995de0e0d03470e6f0f1c98650c0e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "439", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:26:52 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-ms-client-request-id": "f6f995de0e0d03470e6f0f1c98650c0e", - "x-ms-correlation-request-id": "bec7c30b-cd2c-4074-a432-8ffc62c24206", - "x-ms-request-id": "047bf9bd-90f3-440b-9907-b3bf02d2448d", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive60722854", - "name": "LinkedSercive60722854", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "9400e728-0000-0800-0000-5fe0ce330000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive1490350231?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-ef479ae2b13ef54c96ad6c38b65a41e3-c10039e3266a6846-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "9f52572f929f89bda53a29ba7605e0a7", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "443", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:26:52 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-ms-client-request-id": "9f52572f929f89bda53a29ba7605e0a7", - "x-ms-correlation-request-id": "04638f88-68c4-47c2-80d0-161ddf1d65d8", - "x-ms-request-id": "73b886f7-17a3-4f8d-946f-9df276fb5f1a", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1490350231", - "name": "LinkedSercive1490350231", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "95000f23-0000-0800-0000-5fe0d0020000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive1088839151?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-48085dea05eca14a8e8d56405e3aeffa-8df98470116ad94e-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "09304b216b6126cf0965664cdc1e6c76", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "443", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:26: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-ms-client-request-id": "09304b216b6126cf0965664cdc1e6c76", - "x-ms-correlation-request-id": "5689065f-410b-4d5e-9804-db171fc3dde5", - "x-ms-request-id": "5ae691ac-3d6f-4ca3-a820-8d83006f46f5", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1088839151", - "name": "LinkedSercive1088839151", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "9500e92f-0000-0800-0000-5fe0d01a0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive686460023?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-18a76f3c0c0dfa419181c0923bea669f-880b08977ff7d74d-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "e8047432f4724b2bd77051d2e48d8d08", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "441", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:26: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-ms-client-request-id": "e8047432f4724b2bd77051d2e48d8d08", - "x-ms-correlation-request-id": "d4dceac3-6c32-4298-8e86-37cb2a538957", - "x-ms-request-id": "1866bf66-2222-4a00-b574-2a2992187d93", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive686460023", - "name": "LinkedSercive686460023", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "95008bfe-0000-0800-0000-5fe0d1820000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive756252000?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-e2d5b234a4e48f4683a37f761306fda5-c678a07cc82bb74e-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "4dfa678e0234c3ac882b953a2c71ac86", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "441", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:26: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-ms-client-request-id": "4dfa678e0234c3ac882b953a2c71ac86", - "x-ms-correlation-request-id": "423fc0ca-50dd-4970-81a7-c64b80280aa0", - "x-ms-request-id": "f2368452-6dae-4624-a220-a6ee24f7a52e", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive756252000", - "name": "LinkedSercive756252000", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "9600e507-0000-0800-0000-5fe0d1930000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive78281727?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-066000c413e3d4479eab4b45426b032b-1722183d2e0c4b49-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "0187b2cef8012d3520e531f11afd427c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "439", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:26: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-ms-client-request-id": "0187b2cef8012d3520e531f11afd427c", - "x-ms-correlation-request-id": "3690700b-273d-4155-a774-580ec4d3fe42", - "x-ms-request-id": "3e3f0c84-87eb-47f8-b72c-35b3eb101f86", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive78281727", - "name": "LinkedSercive78281727", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "b3001609-0000-0800-0000-5fe108ad0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive206290723?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-9fd085b51208c54dab2b341e2e56e169-81dac0d744352b4f-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "74bd5dd71f243041c74060465ef11f66", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "441", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:26: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-ms-client-request-id": "74bd5dd71f243041c74060465ef11f66", - "x-ms-correlation-request-id": "fee774fa-31cd-4acc-bc2d-f32944d4c524", - "x-ms-request-id": "41f43f62-ce4d-4a72-a437-a70974c30285", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive206290723", - "name": "LinkedSercive206290723", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "b3007212-0000-0800-0000-5fe108c40000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive1749145264?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-1eedd2d326f7ca4a8ec16e7645d1b607-f899032468c04c49-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "3203cac38b05960732cd2c4fd1bba98b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "443", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:26: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-ms-client-request-id": "3203cac38b05960732cd2c4fd1bba98b", - "x-ms-correlation-request-id": "a607f8b3-6cdd-4195-9fcd-965a0c62506c", - "x-ms-request-id": "40192efb-affc-406c-af39-da663a3a4102", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1749145264", - "name": "LinkedSercive1749145264", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "b3001ed2-0000-0800-0000-5fe10aa90000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive1498880387?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-5caf51ec8a4fcf46b2cddd565adb30f9-3f43f7368633764e-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "ce6219e938b3af6270573ac097eece2f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "443", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:26: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-ms-client-request-id": "ce6219e938b3af6270573ac097eece2f", - "x-ms-correlation-request-id": "f02199d7-deae-4221-89f4-77bc222fb275", - "x-ms-request-id": "b33f7b0a-bd84-474c-8b90-4fd9ab108ad7", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1498880387", - "name": "LinkedSercive1498880387", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "b3001fda-0000-0800-0000-5fe10abf0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive1088740958?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-16b4efd0a20c2b4c8e1c5934b13d9a66-e7366739eb50cd4d-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "4f2ecbc60ff94c7656264156f2f25f0b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "443", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:26:54 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-ms-client-request-id": "4f2ecbc60ff94c7656264156f2f25f0b", - "x-ms-correlation-request-id": "c73867d2-6ddb-481e-bfeb-bc7d39f52ec1", - "x-ms-request-id": "48454277-1738-4860-8bbf-87f0e68163e9", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1088740958", - "name": "LinkedSercive1088740958", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "b4001383-0000-0800-0000-5fe10c5a0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive668009510?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-b1a930434497a643a07725b2c1f9b9cf-a9ed6c1dead91b45-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "455dd597518e8ab26854c1ae5047ff44", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "441", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:26:54 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-ms-client-request-id": "455dd597518e8ab26854c1ae5047ff44", - "x-ms-correlation-request-id": "3b63f6b1-3c85-49f6-b784-250925594024", - "x-ms-request-id": "97c64b68-c2eb-4089-b548-a53318f8ac08", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive668009510", - "name": "LinkedSercive668009510", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "b400e98c-0000-0800-0000-5fe10c700000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive2018805938?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-0d1205881b0f3e42a4e6d9c3292f3f8c-398f77ac13f38d4b-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "0589fdff598dd991a215778cf70bbc7e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "443", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:26:54 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-ms-client-request-id": "0589fdff598dd991a215778cf70bbc7e", - "x-ms-correlation-request-id": "d6b465ba-11cc-48d5-aecb-95a99a2c0cd2", - "x-ms-request-id": "aed096d7-ca81-4c82-a851-75a321f146c8", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive2018805938", - "name": "LinkedSercive2018805938", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "b700cedc-0000-0800-0000-5fe1145a0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive1933269774?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-bbd3e9b490b8b84f9ef6f24cb6fd442f-680647ebb19b2545-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "c2282ef7889174a018a3e6a54ec7fb0f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "443", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:26:54 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-ms-client-request-id": "c2282ef7889174a018a3e6a54ec7fb0f", - "x-ms-correlation-request-id": "4ecb9d82-866d-46e9-bb42-75d40bbe0791", - "x-ms-request-id": "04711a2c-3b86-4b36-ba00-2d4a683cca53", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1933269774", - "name": "LinkedSercive1933269774", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "b70099e7-0000-0800-0000-5fe114750000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive678807123?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-ccd9db2aec69314a80c795bae8fddd49-bcd10387f3d98e44-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "f557fd2759683e7e4383a279d926935d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "441", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:26:54 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-ms-client-request-id": "f557fd2759683e7e4383a279d926935d", - "x-ms-correlation-request-id": "c45707f0-0976-486c-931b-80572c351b08", - "x-ms-request-id": "aaaffd09-325d-454a-bf4c-a032b66b2263", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive678807123", - "name": "LinkedSercive678807123", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "b800ecb9-0000-0800-0000-5fe116a20000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive225295812?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-89edd4cbc9eaa34f8909a5dc7c1f5a5c-cd12532f5b23e54f-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "22b643973d1e76b25c14ede972ec8bdb", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "441", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:26:54 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-ms-client-request-id": "22b643973d1e76b25c14ede972ec8bdb", - "x-ms-correlation-request-id": "24a85aa3-7b8c-4b43-99c5-b8fd42a6e643", - "x-ms-request-id": "25f1e5f1-056d-4c5c-a27e-dd09eaba229f", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive225295812", - "name": "LinkedSercive225295812", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "b8003ec5-0000-0800-0000-5fe116bf0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive45741747?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-8a4ded757a357d40a362e5bedab28815-32220cf6ca9cf046-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "f9646819c7b39e15b0ea7e0de6269bf1", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "439", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:26:55 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-ms-client-request-id": "f9646819c7b39e15b0ea7e0de6269bf1", - "x-ms-correlation-request-id": "7f06357e-62f0-4cf4-b4a2-8b64d3cfa859", - "x-ms-request-id": "4f8fde47-5788-49b5-b890-d209128e556a", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive45741747", - "name": "LinkedSercive45741747", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "b9009056-0000-0800-0000-5fe118520000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive2138812515?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-b29908a60cbfab498c8bfb89a0104d0d-786bee9caaf59944-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "0b0e8910d910eaf04be198546c94cb57", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "443", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:26:55 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-ms-client-request-id": "0b0e8910d910eaf04be198546c94cb57", - "x-ms-correlation-request-id": "db74cdc5-66f8-4637-92d0-8c00607698f2", - "x-ms-request-id": "5581f6fc-6c90-41df-a967-1b6cf55da290", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive2138812515", - "name": "LinkedSercive2138812515", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "b900695e-0000-0800-0000-5fe118690000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive417042405?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-8818b93e7e049140a593d9eac2ddf606-46c418d4afe26f47-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "705fc7f89ac1cfa92d187133bea49035", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "441", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:26:55 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-ms-client-request-id": "705fc7f89ac1cfa92d187133bea49035", - "x-ms-correlation-request-id": "d1ba9795-6e2a-4b06-b7a2-e647d6875a3d", - "x-ms-request-id": "0d03f5e1-4564-4cf3-b4da-cc21ee89388f", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive417042405", - "name": "LinkedSercive417042405", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "000012ec-0000-0800-0000-5fe2594d0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive55088323?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-008c7d5863b3b8499cd66a76e5191dee-913aa729c24feb4a-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "e8d9fb787fde40ca777aaed22ec1321c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "439", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:26:55 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-ms-client-request-id": "e8d9fb787fde40ca777aaed22ec1321c", - "x-ms-correlation-request-id": "e59dab33-5f7d-4a9f-85dc-ce749dd10a14", - "x-ms-request-id": "f10bd489-04dd-491d-9624-6e6efc984646", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive55088323", - "name": "LinkedSercive55088323", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "000057ec-0000-0800-0000-5fe259660000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive2142776433?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-c2f0793faec8f745ae9d5e9937e07a48-3ff2820df2be214b-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "1e15271e2bc77630e03eddf868bd2ca6", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "443", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:26:55 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-ms-client-request-id": "1e15271e2bc77630e03eddf868bd2ca6", - "x-ms-correlation-request-id": "03d4fc22-a042-40cf-9fd4-480e8bce5258", - "x-ms-request-id": "f229e23f-7a0f-4e37-9852-6122f137f6d0", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive2142776433", - "name": "LinkedSercive2142776433", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "00001bf3-0000-0800-0000-5fe25b7b0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive1199639292?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-d8529fb24d7d0e41a1d5cf557ea6d027-170265c765693548-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "70db6351e2ba7878fd1ff847ebd7a06c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "443", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:26:55 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-ms-client-request-id": "70db6351e2ba7878fd1ff847ebd7a06c", - "x-ms-correlation-request-id": "4ef72911-e125-4a73-b730-d2b83bbd4f97", - "x-ms-request-id": "c4f02239-cfdd-4906-8ec5-c6c654e3a806", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1199639292", - "name": "LinkedSercive1199639292", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "000066f3-0000-0800-0000-5fe25b920000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive1401426573?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-95f0bbe4eb769a4cb6db60e56238149d-2d5a388f30f57544-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "961454e5718f4d6eca6308a0a2d1d7ba", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "443", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:26:56 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-ms-client-request-id": "961454e5718f4d6eca6308a0a2d1d7ba", - "x-ms-correlation-request-id": "0fa549ba-f906-4604-9643-2951129b64a7", - "x-ms-request-id": "7785a20e-e2ce-4d09-908e-20bf16f85c56", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1401426573", - "name": "LinkedSercive1401426573", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "000001f9-0000-0800-0000-5fe25d410000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive1164265271?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-523f085236f78d47a1a58bf67cb8a9ae-d85ccc63bf90b245-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "cb80074ec1e53b62af9c21a733e98a08", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "443", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:26:56 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-ms-client-request-id": "cb80074ec1e53b62af9c21a733e98a08", - "x-ms-correlation-request-id": "83867901-2041-498d-8af4-d53201b37ce8", - "x-ms-request-id": "e362c175-fd97-46a5-82b2-c00921ce402c", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1164265271", - "name": "LinkedSercive1164265271", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "00003bf9-0000-0800-0000-5fe25d5a0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive1871992189?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-d48042b5214698438d7393285af5ee9b-481ae2bc833e7043-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "1312709d95a9df17f48ea556dad8d52b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "443", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:26:56 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-ms-client-request-id": "1312709d95a9df17f48ea556dad8d52b", - "x-ms-correlation-request-id": "66754862-fdaf-4edf-8e46-d4bb2836cd54", - "x-ms-request-id": "853cc4e9-e734-40a7-b6a6-20c754d2b630", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1871992189", - "name": "LinkedSercive1871992189", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "0300fc76-0000-0800-0000-5fe389a40000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive1310468832?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-c9943e1e990a0544b0be537ced3a0e2b-e11ac4f9a0e32247-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "e3f93e48d5562387f2d8e7f250c71ae1", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "443", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:26:56 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-ms-client-request-id": "e3f93e48d5562387f2d8e7f250c71ae1", - "x-ms-correlation-request-id": "29807bd9-ba4b-4991-b3e1-89301fd69081", - "x-ms-request-id": "1c4f8874-137c-44bc-afd6-b9a965f806f2", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1310468832", - "name": "LinkedSercive1310468832", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "03002777-0000-0800-0000-5fe389b90000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive216597668?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-5e4a8af662da18409ccee874bb9aa822-55c778fcd10b114b-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "320200d9c3beb811f0a0d7571c0b61d6", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "441", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:26:56 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-ms-client-request-id": "320200d9c3beb811f0a0d7571c0b61d6", - "x-ms-correlation-request-id": "63fbc15a-c789-4f70-bec8-0383462e7d1d", - "x-ms-request-id": "6663e880-4f89-40d0-a7cc-d9ff3f548048", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive216597668", - "name": "LinkedSercive216597668", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "0300c17f-0000-0800-0000-5fe38ced0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive1718222757?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-5fd35ca1d1d5b14784dda3e1892ef9d7-3f75b9fc341a774a-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "f55ff6c7a6efc8b2e8ef20d0ad258f2d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "443", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:26:56 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-ms-client-request-id": "f55ff6c7a6efc8b2e8ef20d0ad258f2d", - "x-ms-correlation-request-id": "cc7f5550-bc4c-48ae-a146-afce4efa2d25", - "x-ms-request-id": "09e2610e-1fa0-4863-8f75-a0e6e9f13797", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1718222757", - "name": "LinkedSercive1718222757", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "0300f77f-0000-0800-0000-5fe38d040000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive1245075161?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-c9edd3e3bb78eb42a62a3ff2d28c08d9-4a1199cf68fd5e4b-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "da7dc373a3d6846c2c40f3b5fd3007e7", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "443", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:26:57 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-ms-client-request-id": "da7dc373a3d6846c2c40f3b5fd3007e7", - "x-ms-correlation-request-id": "d669e1c1-b6bd-4779-ad51-e8cdd51f4100", - "x-ms-request-id": "fde524dd-f65d-4436-81d4-51179287f1f7", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1245075161", - "name": "LinkedSercive1245075161", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "0300d38a-0000-0800-0000-5fe3909d0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive88302679?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-38a4eb9ba8bdf64ebb8311d06fbcd647-48433233ad5d0442-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "592a1176256832f14d394acfa3400aca", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "439", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:26:57 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-ms-client-request-id": "592a1176256832f14d394acfa3400aca", - "x-ms-correlation-request-id": "e8feedfc-9b4a-4f19-8903-2034a84b4d79", - "x-ms-request-id": "0f1fe0d4-fbae-47b8-a738-476911b47a23", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive88302679", - "name": "LinkedSercive88302679", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "0300158b-0000-0800-0000-5fe390b80000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive1495412509?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-dbf2480d9ed3a24c80aecceda65daa02-74505f3dd639414e-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "58e3aa10878d240089dac8afb3fccbb8", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "443", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:26:57 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-ms-client-request-id": "58e3aa10878d240089dac8afb3fccbb8", - "x-ms-correlation-request-id": "ab7cb96a-3cc3-461b-8b3f-581dcba54752", - "x-ms-request-id": "45663165-4960-4ce0-8afe-5268a0d2cd75", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1495412509", - "name": "LinkedSercive1495412509", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "03007894-0000-0800-0000-5fe393c50000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive2137046366?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-4e5b995025786e458387ab2f364848ff-624561a0512d8043-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "9c5939e836fa4ec4d24b8c9c589ce1eb", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "443", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:26:57 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-ms-client-request-id": "9c5939e836fa4ec4d24b8c9c589ce1eb", - "x-ms-correlation-request-id": "e3be3b9f-a3cf-407e-9639-2dd423f0f755", - "x-ms-request-id": "3d7806ec-db8c-469f-b9e9-86b5d866c91a", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive2137046366", - "name": "LinkedSercive2137046366", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "0300c894-0000-0800-0000-5fe393de0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive1857600842?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-c9653ced11fd8a42b32f104abfc1af68-f7fbe0dbf2812947-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "53a42835ae4cee5a1006cf8d5c427f50", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "443", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:26:57 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-ms-client-request-id": "53a42835ae4cee5a1006cf8d5c427f50", - "x-ms-correlation-request-id": "c0401932-8390-4bf9-8282-fa3c15e78197", - "x-ms-request-id": "d7a2cf0b-5554-4e1b-9079-f5db28741352", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1857600842", - "name": "LinkedSercive1857600842", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "0300de9c-0000-0800-0000-5fe396dd0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive469786997?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-1f951e05353f3f44ae0db65a8e4dc188-1cc51fc9d8f04841-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "69e7916e6ee7dad0e5948642fb63cbed", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "441", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:26:57 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-ms-client-request-id": "69e7916e6ee7dad0e5948642fb63cbed", - "x-ms-correlation-request-id": "5acbb2cf-5cbc-4cb5-87b9-f8ac569a3a1b", - "x-ms-request-id": "98ccdf5a-5483-49b8-903a-2c9a0c7e758b", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive469786997", - "name": "LinkedSercive469786997", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "0300299d-0000-0800-0000-5fe396fb0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive400436699?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-d7ee362f7107e44a9ed0c12c1352cf12-8fcd638eff038943-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "8a79dcf97758396bdf6b8bf36637f18f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "441", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:26:58 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-ms-client-request-id": "8a79dcf97758396bdf6b8bf36637f18f", - "x-ms-correlation-request-id": "a45ee8cd-4264-449a-b108-83daf867f17f", - "x-ms-request-id": "f9086718-545a-4b7f-be1b-2ebd8c1a438d", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive400436699", - "name": "LinkedSercive400436699", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "03000aa6-0000-0800-0000-5fe399ec0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive495886452?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-886de69fe1cd0b429dddb7a5f7f0345e-81f958854473f242-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "c72d3bcc77b5c70458c96db72817f3ac", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "441", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:26:58 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-ms-client-request-id": "c72d3bcc77b5c70458c96db72817f3ac", - "x-ms-correlation-request-id": "9be61f8b-2398-4780-9075-4ed08611329c", - "x-ms-request-id": "37378ff6-8d3e-45c0-83fd-46d952d600f6", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive495886452", - "name": "LinkedSercive495886452", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "03005da6-0000-0800-0000-5fe39a010000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive1101442691?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-de0d9ba2f4a27242a337191e5f35215e-8623590c6a1eea4b-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "8094e23bf4c8f6f825ae8a7ce2dc74ae", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "443", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:26:58 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-ms-client-request-id": "8094e23bf4c8f6f825ae8a7ce2dc74ae", - "x-ms-correlation-request-id": "49e9e870-bee7-4262-afd6-08a6f4934936", - "x-ms-request-id": "3f6810b2-8451-4182-8644-c8ab1a165354", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1101442691", - "name": "LinkedSercive1101442691", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "0300a7b1-0000-0800-0000-5fe39e040000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive1774188743?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-695a27e3da22c6469038392ce31632cb-d9326d8e144fcc46-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "c075f6a303368137d7b2328e0ab410c7", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "443", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:26:58 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-ms-client-request-id": "c075f6a303368137d7b2328e0ab410c7", - "x-ms-correlation-request-id": "2bd079e0-b123-4fb9-9f87-ca2c4caeb72f", - "x-ms-request-id": "d705cf81-a201-4f78-b716-5b82d4c89ce0", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1774188743", - "name": "LinkedSercive1774188743", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "0300ebb1-0000-0800-0000-5fe39e1c0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive2073787042?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-46d0648b2b735a459d1957588ebcaa24-266dd76e04b65644-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "83b7df7771a3d8c74236a106ed88e47b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "443", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:26:58 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-ms-client-request-id": "83b7df7771a3d8c74236a106ed88e47b", - "x-ms-correlation-request-id": "c0d5e377-26f9-4642-972e-b33e4b947f89", - "x-ms-request-id": "f18ab6e7-f40c-42c8-9d9e-638fd90d97c4", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive2073787042", - "name": "LinkedSercive2073787042", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "030052c3-0000-0800-0000-5fe3a39f0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive660565946?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-8a8b15966a217e4384fe0cf4907aec3e-7f7dad5f7d16d842-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "3214bf5532a13876aa12a816c16aec71", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "441", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:26:58 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-ms-client-request-id": "3214bf5532a13876aa12a816c16aec71", - "x-ms-correlation-request-id": "70ca3565-6d85-461d-8c5d-7be40fe618b0", - "x-ms-request-id": "633a0d5b-2fd1-4161-88ae-8912ca5dd3fe", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive660565946", - "name": "LinkedSercive660565946", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "030095c3-0000-0800-0000-5fe3a3b50000" + "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive80437647?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/651e3321-c361-4dcd-87bd-42569858c0d7?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-afd9b1034624e047a00cbbe710ca454b-2545831514ad4945-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "0304c29ef124310b2f9d7dff6131944f", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "11655d80b9523ad2bbea6680d53e85d0", "x-ms-return-client-request-id": "true" }, "RequestBody": null, - "StatusCode": 200, + "StatusCode": 202, "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "439", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:26:58 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" ], - "Strict-Transport-Security": "max-age=15724800; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "0304c29ef124310b2f9d7dff6131944f", - "x-ms-correlation-request-id": "286019f4-1186-4bbf-a9f8-d60f2089e975", - "x-ms-request-id": "a3e88609-742c-4c39-815d-eb0468aee30b", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive80437647", - "name": "LinkedSercive80437647", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "030060d1-0000-0800-0000-5fe3a8360000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive898252850?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-26568dd74031d0448719f73bfcd77042-a897dddcb7c9dc45-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" ], - "x-ms-client-request-id": "4a38b6cdde9f4425687fd891c9b116d7", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "441", + "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:26: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-ms-client-request-id": "4a38b6cdde9f4425687fd891c9b116d7", - "x-ms-correlation-request-id": "a7b13a07-4a18-4cad-a23e-d5267d2faaba", - "x-ms-request-id": "1793cd3b-6743-448d-990b-00a6443dfc69", - "X-Powered-By": "ASP.NET" + "Date": "Thu, 30 Sep 2021 06:17:44 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/651e3321-c361-4dcd-87bd-42569858c0d7?api-version=2020-12-01", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "11655d80b9523ad2bbea6680d53e85d0", + "x-ms-request-id": "964a25c8-8a6a-4290-9d4b-3615a4b3afd2" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive898252850", - "name": "LinkedSercive898252850", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "0300a7d1-0000-0800-0000-5fe3a8530000" + "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive1073730247?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/651e3321-c361-4dcd-87bd-42569858c0d7?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-989777aab3d96e45a71db59e9b8c1a20-4af2e032d3f01e4d-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "2a683049e1846456b4e20204b577d679", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "3229d4f415c58ca8f141ee655fff81ac", "x-ms-return-client-request-id": "true" }, "RequestBody": null, - "StatusCode": 200, + "StatusCode": 202, "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "443", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:26:59 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" ], - "Strict-Transport-Security": "max-age=15724800; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "2a683049e1846456b4e20204b577d679", - "x-ms-correlation-request-id": "861024b2-6839-4685-b725-8653bced05ab", - "x-ms-request-id": "73634ae2-11d6-4b57-9846-e2bbc9896c58", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1073730247", - "name": "LinkedSercive1073730247", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "0207786f-0000-0800-0000-6000bcaf0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive681108007?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-86e84a3a1df2a64b8458b2f62dffdc90-bc107e1e2248954a-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" ], - "x-ms-client-request-id": "0b48587da232bfd19dbf9aa5187a687e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "441", + "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:26: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-ms-client-request-id": "0b48587da232bfd19dbf9aa5187a687e", - "x-ms-correlation-request-id": "a96bfb81-f91f-4521-883a-6a54b87bb251", - "x-ms-request-id": "c94d48e5-9ec3-4b26-b9b2-77805b4b8182", - "X-Powered-By": "ASP.NET" + "Date": "Thu, 30 Sep 2021 06:17:45 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/651e3321-c361-4dcd-87bd-42569858c0d7?api-version=2020-12-01", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "3229d4f415c58ca8f141ee655fff81ac", + "x-ms-request-id": "d06ae719-7985-45e3-a6b6-111bff45dacc" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive681108007", - "name": "LinkedSercive681108007", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "02073b83-0000-0800-0000-6000bcc90000" + "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive1698779984?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/651e3321-c361-4dcd-87bd-42569858c0d7?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-464bd147fd95f74bb4e68254e5cf0962-4af47b9495ee5349-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "31b5a6876ac8ebca5fd496bddb218ff1", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "b5b8b6c2ba5740e4733887d01302705a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "443", + "Content-Length": "422", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:26:59 GMT", + "Date": "Thu, 30 Sep 2021 06:17:46 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "31b5a6876ac8ebca5fd496bddb218ff1", - "x-ms-correlation-request-id": "356e8f4b-a824-4e72-acf7-18c1e84bb5f5", - "x-ms-request-id": "a566bf06-9a8e-4d9d-af5d-8d767c3c4024", + "x-ms-client-request-id": "b5b8b6c2ba5740e4733887d01302705a", + "x-ms-correlation-request-id": "acbebedc-7c98-4951-9104-495747f39902", + "x-ms-request-id": "d431291f-616c-469b-a053-4697fcefa71b", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1698779984", - "name": "LinkedSercive1698779984", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/linkedservices/LinkedService474", + "name": "LinkedService474", "type": "Microsoft.Synapse/workspaces/linkedservices", "properties": { "type": "AzureDataLakeStore", @@ -7549,187 +293,274 @@ "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" } }, - "etag": "c407c7d8-0000-0800-0000-6001c0d10000" + "etag": "2e000180-0000-0100-0000-615556890000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive357215418?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/linkedservices?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-281866dc588e314e812f6ac552915186-09a306781cb25043-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "70135ea90a68a7a55fa98dc546b14b3a", + "traceparent": "00-9721db817fafd04e88b14f66791ee068-7b20a0bdb3069344-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "e429fd9ea9416abab5d81f11ca6ddabc", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "441", + "Content-Length": "4430", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:26: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-ms-client-request-id": "70135ea90a68a7a55fa98dc546b14b3a", - "x-ms-correlation-request-id": "ccc545b5-5d60-4f35-b8d6-acdb53fd284f", - "x-ms-request-id": "37395263-ad18-451f-a7b3-a937bd552775", - "X-Powered-By": "ASP.NET" + "Date": "Thu, 30 Sep 2021 06:17:46 GMT", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "e429fd9ea9416abab5d81f11ca6ddabc", + "x-ms-request-id": "b4834828-c6d6-41b4-bdf3-b1b0150eb119" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive357215418", - "name": "LinkedSercive357215418", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" + "value": [ + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/linkedservices/testsynapseworkspace-WorkspaceDefaultStorage", + "name": "testsynapseworkspace-WorkspaceDefaultStorage", + "type": "Microsoft.Synapse/workspaces/linkedservices", + "etag": "4500110d-0000-0100-0000-5df21ebd0000", + "properties": { + "type": "AzureBlobFS", + "typeProperties": { + "url": "https://newzzyadlsgen2.dfs.core.windows.net" + } + } + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/linkedservices/testsynapseworkspace-WorkspaceDefaultSqlServer", + "name": "testsynapseworkspace-WorkspaceDefaultSqlServer", + "type": "Microsoft.Synapse/workspaces/linkedservices", + "etag": "4500400d-0000-0100-0000-5df21ec50000", + "properties": { + "type": "AzureSqlDW", + "typeProperties": { + "connectionString": "Sanitized" + }, + "parameters": { + "DBName": { + "type": "String" + } + } + } + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/linkedservices/LinkedSercive1266290659", + "name": "LinkedSercive1266290659", + "type": "Microsoft.Synapse/workspaces/linkedservices", + "etag": "0000e600-0000-0100-0000-600163ba0000", + "properties": { + "type": "AzureDataLakeStore", + "typeProperties": { + "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" + } + } + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/linkedservices/LinkedSercive468335119", + "name": "LinkedSercive468335119", + "type": "Microsoft.Synapse/workspaces/linkedservices", + "etag": "0000e900-0000-0100-0000-600163be0000", + "properties": { + "type": "AzureDataLakeStore", + "typeProperties": { + "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" + } + } + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/linkedservices/newzzyadlsgen2", + "name": "newzzyadlsgen2", + "type": "Microsoft.Synapse/workspaces/linkedservices", + "etag": "8b00d594-0000-0100-0000-600bd35f0000", + "properties": { + "annotations": [], + "type": "AzureBlobStorage", + "typeProperties": { + "connectionString": "Sanitized", + "encryptedCredential": "ew0KICAiVmVyc2lvbiI6ICIyMDE3LTExLTMwIiwNCiAgIlByb3RlY3Rpb25Nb2RlIjogIktleSIsDQogICJTZWNyZXRDb250ZW50VHlwZSI6ICJQbGFpbnRleHQiLA0KICAiQ3JlZGVudGlhbElkIjogIlRFU1RTWU5BUFNFV09SS1NQQUNFXzU0NzYzMmI3LWIwOTUtNDQ2MC1iOTRjLTFhMDgwNzQ4N2NiZSINCn0=" + } + } + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/linkedservices/dongwwagen", + "name": "dongwwagen", + "type": "Microsoft.Synapse/workspaces/linkedservices", + "etag": "8e00378e-0000-0100-0000-600c13ae0000", + "properties": { + "annotations": [], + "type": "AzureBlobFS", + "typeProperties": { + "url": "https://newzzyadlsgen2.dfs.core.windows.net", + "encryptedCredential": "ew0KICAiVmVyc2lvbiI6ICIyMDE3LTExLTMwIiwNCiAgIlByb3RlY3Rpb25Nb2RlIjogIktleSIsDQogICJTZWNyZXRDb250ZW50VHlwZSI6ICJQbGFpbnRleHQiLA0KICAiQ3JlZGVudGlhbElkIjogIlRFU1RTWU5BUFNFV09SS1NQQUNFX2UyY2Y0NWQyLTM2ZTAtNDhmNy05OTBkLWVhYTNkZWZkY2NjZCINCn0=" + } + } + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/linkedservices/Hdfs1", + "name": "Hdfs1", + "type": "Microsoft.Synapse/workspaces/linkedservices", + "etag": "0200e324-0000-0100-0000-60e5086e0000", + "properties": { + "annotations": [], + "type": "Hdfs", + "typeProperties": { + "url": "a", + "authenticationType": "Anonymous" + } + } + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/linkedservices/AzureKeyVault1", + "name": "AzureKeyVault1", + "type": "Microsoft.Synapse/workspaces/linkedservices", + "etag": "0a003769-0000-0100-0000-6131f51b0000", + "properties": { + "annotations": [], + "type": "AzureKeyVault", + "typeProperties": { + "baseUrl": "https://dongwwakeyce.vault.azure.net/" + } + } + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/linkedservices/LinkedService474", + "name": "LinkedService474", + "type": "Microsoft.Synapse/workspaces/linkedservices", + "etag": "2e000180-0000-0100-0000-615556890000", + "properties": { + "type": "AzureDataLakeStore", + "typeProperties": { + "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" + } + } } - }, - "etag": "c40749ed-0000-0800-0000-6001c0ee0000" + ] } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive991201870?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/linkedservices/testsynapseworkspace-WorkspaceDefaultStorage?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-6d2936df98dc6141b930b06b6759eae2-45bfd6ead068a845-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "0e7c847aa5c113b18e5cab5d0b14e47b", + "traceparent": "00-8fcc39af0cabf74caba39b8b4528fd0a-520a079943c03c4e-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "1fbeb969cf853a78f0e8bf8d8ed779ee", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "441", + "Content-Length": "467", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:26:59 GMT", + "Date": "Thu, 30 Sep 2021 06:17:46 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "0e7c847aa5c113b18e5cab5d0b14e47b", - "x-ms-correlation-request-id": "70dfc976-b103-476e-bf38-ff7ddab24428", - "x-ms-request-id": "208ccbcb-7688-43d5-b851-4d0befefb3fe", + "x-ms-client-request-id": "1fbeb969cf853a78f0e8bf8d8ed779ee", + "x-ms-correlation-request-id": "ee295f00-5a51-49de-a10f-f6c49904575e", + "x-ms-request-id": "5c5c420c-9cb4-44b1-a772-304b5e6ffad4", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive991201870", - "name": "LinkedSercive991201870", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/linkedservices/testsynapseworkspace-WorkspaceDefaultStorage", + "name": "testsynapseworkspace-WorkspaceDefaultStorage", "type": "Microsoft.Synapse/workspaces/linkedservices", "properties": { - "type": "AzureDataLakeStore", + "type": "AzureBlobFS", "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" + "url": "https://newzzyadlsgen2.dfs.core.windows.net" } }, - "etag": "c80757ec-0000-0800-0000-6001c6440000" + "etag": "4500110d-0000-0100-0000-5df21ebd0000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive583860423?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/linkedservices/testsynapseworkspace-WorkspaceDefaultSqlServer?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-e5c07bd1ad2f11418833181fd9f0f906-3ee4f315dd008a4d-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "b9fba92ff8667c15000dd11fdd05a4ae", + "traceparent": "00-dc7ed3a495466f4f8a0b5e97f880451d-aaaa4b40d26e5d48-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "61c794d09dd5186bfb4e007f9ad37505", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "441", + "Content-Length": "491", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:00 GMT", + "Date": "Thu, 30 Sep 2021 06:17:47 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "b9fba92ff8667c15000dd11fdd05a4ae", - "x-ms-correlation-request-id": "1391c587-8a5c-4284-8b40-33a4339d7fe1", - "x-ms-request-id": "2cd6b511-75af-43f9-91e4-dc09845dd5a6", + "x-ms-client-request-id": "61c794d09dd5186bfb4e007f9ad37505", + "x-ms-correlation-request-id": "51088d11-1ee9-4dae-a521-2a742161cdc7", + "x-ms-request-id": "9201d054-9bb6-4325-943b-30f43a385517", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive583860423", - "name": "LinkedSercive583860423", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/linkedservices/testsynapseworkspace-WorkspaceDefaultSqlServer", + "name": "testsynapseworkspace-WorkspaceDefaultSqlServer", "type": "Microsoft.Synapse/workspaces/linkedservices", "properties": { - "type": "AzureDataLakeStore", + "type": "AzureSqlDW", "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" + "connectionString": "Sanitized" + }, + "parameters": { + "DBName": { + "type": "String" + } } }, - "etag": "c9079001-0000-0800-0000-6001c6600000" + "etag": "4500400d-0000-0100-0000-5df21ec50000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedService159?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/linkedservices/LinkedSercive1266290659?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-8c7012f699ad8a45a7f068c7bee84d76-30f32282e5f5de44-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "57425c8880a5042fac00e20c5f479c4b", + "traceparent": "00-cc02379b554b4d46bc8a2fc073d179ec-3d890da06eb7cb43-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "5966cb5e5144ced585eff358ea2ddcdd", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "429", + "Content-Length": "436", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:00 GMT", + "Date": "Thu, 30 Sep 2021 06:17:47 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "57425c8880a5042fac00e20c5f479c4b", - "x-ms-correlation-request-id": "772022a6-17c7-42fa-a9ff-2f7e031775f1", - "x-ms-request-id": "be0220d9-6ad9-4381-8ed1-9fa9cd5f7e8b", + "x-ms-client-request-id": "5966cb5e5144ced585eff358ea2ddcdd", + "x-ms-correlation-request-id": "ca831d9c-d142-4e9d-8ea7-191fa5c5b92b", + "x-ms-request-id": "142b8d99-e2d1-4c3d-be87-30905f9e49b6", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedService159", - "name": "LinkedService159", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/linkedservices/LinkedSercive1266290659", + "name": "LinkedSercive1266290659", "type": "Microsoft.Synapse/workspaces/linkedservices", "properties": { "type": "AzureDataLakeStore", @@ -7737,46 +568,40 @@ "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" } }, - "etag": "30005eed-0000-0800-0000-6008739a0000" + "etag": "0000e600-0000-0100-0000-600163ba0000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedService777?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/linkedservices/LinkedSercive468335119?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-8411e129cd3dc9409b6baad6f9b397fd-6896351bb2aa3a47-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "9d9511c491b682d36eff0eb4d3923688", + "traceparent": "00-d3170f4101b84746ac0ed9f590baaaf1-b87e7458ca5aa44b-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "3640315e78a6cce64da62437cef9a01d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "429", + "Content-Length": "434", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:00 GMT", + "Date": "Thu, 30 Sep 2021 06:17:47 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "9d9511c491b682d36eff0eb4d3923688", - "x-ms-correlation-request-id": "ad7e8d4e-01e6-4343-adf6-885123ba5c4b", - "x-ms-request-id": "9fe71845-3243-4fbb-aa0b-7c9adbcb80f6", + "x-ms-client-request-id": "3640315e78a6cce64da62437cef9a01d", + "x-ms-correlation-request-id": "85ed34b2-f4f7-45e8-97b2-a283e464c30f", + "x-ms-request-id": "d75c6297-f90d-443b-b717-ee9e311e1ebc", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedService777", - "name": "LinkedService777", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/linkedservices/LinkedSercive468335119", + "name": "LinkedSercive468335119", "type": "Microsoft.Synapse/workspaces/linkedservices", "properties": { "type": "AzureDataLakeStore", @@ -7784,233 +609,210 @@ "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" } }, - "etag": "3100e105-0000-0800-0000-600873bd0000" + "etag": "0000e900-0000-0100-0000-600163be0000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedService759?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/linkedservices/newzzyadlsgen2?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-8ffc8dbe18cf6f41a6e17b53a459cb49-d9e21f2ffcbb5f40-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "afd5fdb78dd1aed679f70d6615091db8", + "traceparent": "00-5ecaf83e858fd449819026c45ec0c1fe-d3548dc916e92745-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "c32eb9721f707faabff8dce6a9122dcd", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "429", + "Content-Length": "669", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:00 GMT", + "Date": "Thu, 30 Sep 2021 06:17:47 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "afd5fdb78dd1aed679f70d6615091db8", - "x-ms-correlation-request-id": "70a31c98-9ed1-4f6f-8520-152379d38fdf", - "x-ms-request-id": "bec7dfe1-9bb1-4850-802a-7a58e4aff473", + "x-ms-client-request-id": "c32eb9721f707faabff8dce6a9122dcd", + "x-ms-correlation-request-id": "a59d703a-38d6-46cf-b0e3-2086b50de400", + "x-ms-request-id": "9ee51314-0f96-4d56-905d-1f837f7fa660", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedService759", - "name": "LinkedService759", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/linkedservices/newzzyadlsgen2", + "name": "newzzyadlsgen2", "type": "Microsoft.Synapse/workspaces/linkedservices", "properties": { - "type": "AzureDataLakeStore", + "annotations": [], + "type": "AzureBlobStorage", "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" + "connectionString": "Sanitized", + "encryptedCredential": "ew0KICAiVmVyc2lvbiI6ICIyMDE3LTExLTMwIiwNCiAgIlByb3RlY3Rpb25Nb2RlIjogIktleSIsDQogICJTZWNyZXRDb250ZW50VHlwZSI6ICJQbGFpbnRleHQiLA0KICAiQ3JlZGVudGlhbElkIjogIlRFU1RTWU5BUFNFV09SS1NQQUNFXzU0NzYzMmI3LWIwOTUtNDQ2MC1iOTRjLTFhMDgwNzQ4N2NiZSINCn0=" } }, - "etag": "33007a8c-0000-0800-0000-600877360000" + "etag": "8b00d594-0000-0100-0000-600bd35f0000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedService112?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/linkedservices/dongwwagen?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-61f0e07ae0e1a84a80d223051184c633-0685a9fd3a22dd4d-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "cb5a8671076ff6f788c0e8a5727b301a", + "traceparent": "00-ed5258935355db41b8ab75aeff5dc174-2240519895861b41-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "692023713f92e65fe49a0b9e2c9d008b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "429", + "Content-Length": "677", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:00 GMT", + "Date": "Thu, 30 Sep 2021 06:17:47 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "cb5a8671076ff6f788c0e8a5727b301a", - "x-ms-correlation-request-id": "e9709873-02f4-478c-89d9-f251aad79171", - "x-ms-request-id": "84627b02-0a68-41e7-8953-578f09616bd8", + "x-ms-client-request-id": "692023713f92e65fe49a0b9e2c9d008b", + "x-ms-correlation-request-id": "99e2aa8c-3b72-450e-95e4-23daca8dc84e", + "x-ms-request-id": "f88e44cd-d2d4-4dfc-83fd-f635f72ee100", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedService112", - "name": "LinkedService112", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/linkedservices/dongwwagen", + "name": "dongwwagen", "type": "Microsoft.Synapse/workspaces/linkedservices", "properties": { - "type": "AzureDataLakeStore", + "annotations": [], + "type": "AzureBlobFS", "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" + "url": "https://newzzyadlsgen2.dfs.core.windows.net", + "encryptedCredential": "ew0KICAiVmVyc2lvbiI6ICIyMDE3LTExLTMwIiwNCiAgIlByb3RlY3Rpb25Nb2RlIjogIktleSIsDQogICJTZWNyZXRDb250ZW50VHlwZSI6ICJQbGFpbnRleHQiLA0KICAiQ3JlZGVudGlhbElkIjogIlRFU1RTWU5BUFNFV09SS1NQQUNFX2UyY2Y0NWQyLTM2ZTAtNDhmNy05OTBkLWVhYTNkZWZkY2NjZCINCn0=" } }, - "etag": "3300f59e-0000-0800-0000-600877520000" + "etag": "8e00378e-0000-0100-0000-600c13ae0000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedService991?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/linkedservices/Hdfs1?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-ac9b1e666aff3148a75d55cb00989f87-357c937a7c212e4c-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "625459caec7237793ae724be846d6c65", + "traceparent": "00-be8ee4db3412094cbc3baea82d17cb46-b9ad84de9e916c48-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "30e6d64f19ff3e6c86c077ae9bff233b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "429", + "Content-Length": "390", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:00 GMT", + "Date": "Thu, 30 Sep 2021 06:17:47 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "625459caec7237793ae724be846d6c65", - "x-ms-correlation-request-id": "637478b4-54ee-45a6-951c-980beefc1631", - "x-ms-request-id": "341915a2-1c45-4be1-8261-900077e6307e", + "x-ms-client-request-id": "30e6d64f19ff3e6c86c077ae9bff233b", + "x-ms-correlation-request-id": "e8334d68-6093-4824-8b0a-479913a3c60f", + "x-ms-request-id": "31276808-7632-4753-a86d-11e3f2a51668", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedService991", - "name": "LinkedService991", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/linkedservices/Hdfs1", + "name": "Hdfs1", "type": "Microsoft.Synapse/workspaces/linkedservices", "properties": { - "type": "AzureDataLakeStore", + "annotations": [], + "type": "Hdfs", "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" + "url": "a", + "authenticationType": "Anonymous" } }, - "etag": "5100c270-0000-0800-0000-6008a26e0000" + "etag": "0200e324-0000-0100-0000-60e5086e0000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedService583?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/linkedservices/AzureKeyVault1?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-a317c5c41b5b4543ae04df8d4e5625b5-a1e167c83537b342-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "4d4255e26a38b01805de2610a4303bfe", + "traceparent": "00-3ab096e9c4eff341ac54f7a5afdb1dac-d856a4bb42b06848-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "abc5567836d9338a5948ded6140b5221", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "429", + "Content-Length": "424", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:02 GMT", + "Date": "Thu, 30 Sep 2021 06:17:48 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "4d4255e26a38b01805de2610a4303bfe", - "x-ms-correlation-request-id": "cac46d6e-ecb7-4126-bce3-c9dd57c7d644", - "x-ms-request-id": "2b0fab92-1d1a-4124-aed5-d33317d5cf5d", + "x-ms-client-request-id": "abc5567836d9338a5948ded6140b5221", + "x-ms-correlation-request-id": "c94faa09-372d-4ca5-8686-f123330c095b", + "x-ms-request-id": "dd2dde7e-0e48-4b07-93ce-4779b13a917d", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedService583", - "name": "LinkedService583", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/linkedservices/AzureKeyVault1", + "name": "AzureKeyVault1", "type": "Microsoft.Synapse/workspaces/linkedservices", "properties": { - "type": "AzureDataLakeStore", + "annotations": [], + "type": "AzureKeyVault", "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" + "baseUrl": "https://dongwwakeyce.vault.azure.net/" } }, - "etag": "51005884-0000-0800-0000-6008a28b0000" + "etag": "0a003769-0000-0100-0000-6131f51b0000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedService474?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/linkedservices/LinkedService474?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-20db5e83158b6f48bde94584e64e3ef2-58c0ad6a55f55d4e-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "bc9bf2c7bab484450c229088e339721a", + "traceparent": "00-da2f1e034d1c6d4fbdd15a7fb4e6ec03-03e8035d57447d45-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "d29751f7fc2c57ceb6e1e2d1c7b14ae4", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "429", + "Content-Length": "422", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:02 GMT", + "Date": "Thu, 30 Sep 2021 06:17:48 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "bc9bf2c7bab484450c229088e339721a", - "x-ms-correlation-request-id": "614b52a6-1f35-4016-8c1b-6bb768dde183", - "x-ms-request-id": "9b0e9234-d1d7-42d9-8620-f2e244878338", + "x-ms-client-request-id": "d29751f7fc2c57ceb6e1e2d1c7b14ae4", + "x-ms-correlation-request-id": "41367cdc-7e12-4452-83db-dabdc156ba0c", + "x-ms-request-id": "a9fac613-0aaf-417e-985c-7db13de1b41c", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedService474", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/linkedservices/LinkedService474", "name": "LinkedService474", "type": "Microsoft.Synapse/workspaces/linkedservices", "properties": { @@ -8019,21 +821,18 @@ "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" } }, - "etag": "27017458-0000-0800-0000-6009e37e0000" + "etag": "2e000180-0000-0100-0000-615556890000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedService474?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/linkedservices/LinkedService474?api-version=2020-12-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-68ed1753b53cf94d9d5e98edf12dad1c-c7dee6152bcaa344-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "1cc38254e3395fe240a45d94c669930a", + "traceparent": "00-e008982009bc754b97b621ea3be2523a-00eec33e3b61c645-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "d526d07655d818b24cb3d7b63b952a7a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -8041,147 +840,33 @@ "ResponseHeaders": { "Access-Control-Allow-Headers": "Location", "Access-Control-Expose-Headers": "Location", - "Content-Length": "384", + "Content-Length": "377", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:02 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/08489163-89b7-4409-8435-a57e26a1a8fd?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:17:48 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c774cb8e-4b6e-47a5-90cc-7273d160bd1d?api-version=2020-12-01", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "1cc38254e3395fe240a45d94c669930a", - "x-ms-request-id": "c5269fb0-9b61-462f-b8cc-cd5a3ad47fa4" + "x-ms-client-request-id": "d526d07655d818b24cb3d7b63b952a7a", + "x-ms-request-id": "ffd81a63-6c07-4eef-be55-2f58fc16f249" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedServices/LinkedService474", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/linkedServices/LinkedService474", "recordId": 0, "state": "Deleting", "created": "0001-01-01T00:00:00", "changed": "0001-01-01T00:00:00", "type": "LinkedService", "name": "LinkedService474", - "operationId": "08489163-89b7-4409-8435-a57e26a1a8fd" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/08489163-89b7-4409-8435-a57e26a1a8fd?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "22bc0b6c1f6ce4c5103b7b105db1bea3", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:02 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/08489163-89b7-4409-8435-a57e26a1a8fd?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "22bc0b6c1f6ce4c5103b7b105db1bea3", - "x-ms-request-id": "05ee85cb-4dd1-4653-9623-abda0d229495" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/08489163-89b7-4409-8435-a57e26a1a8fd?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "bcdc868fe041a349d29c0c7ba2cc86af", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:03 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/08489163-89b7-4409-8435-a57e26a1a8fd?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "bcdc868fe041a349d29c0c7ba2cc86af", - "x-ms-request-id": "7206aa88-0212-4a51-a47e-5b0402e91385" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/08489163-89b7-4409-8435-a57e26a1a8fd?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "ba2791d770ac8c9d6113809534a0c95f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:04 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/08489163-89b7-4409-8435-a57e26a1a8fd?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "ba2791d770ac8c9d6113809534a0c95f", - "x-ms-request-id": "829c1c11-b545-4e38-8975-1aa10bebd6c3" - }, - "ResponseBody": { - "status": "InProgress" + "operationId": "c774cb8e-4b6e-47a5-90cc-7273d160bd1d" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/08489163-89b7-4409-8435-a57e26a1a8fd?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c774cb8e-4b6e-47a5-90cc-7273d160bd1d?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "52869dff10b48c8ac2194fcf12494244", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "4360f9fd7ce5a2499f7f867825171c21", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -8197,28 +882,25 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:06 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/08489163-89b7-4409-8435-a57e26a1a8fd?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:17:48 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c774cb8e-4b6e-47a5-90cc-7273d160bd1d?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "52869dff10b48c8ac2194fcf12494244", - "x-ms-request-id": "3d432d69-cff6-420a-82b7-d638f2df345a" + "x-ms-client-request-id": "4360f9fd7ce5a2499f7f867825171c21", + "x-ms-request-id": "fbd60d15-6a6b-41de-b413-2ab346b0f265" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/08489163-89b7-4409-8435-a57e26a1a8fd?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c774cb8e-4b6e-47a5-90cc-7273d160bd1d?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "cc39cbb504891ef7e9505b2e5fb36e32", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "716467b600fb257cc1aa4d6a61bac493", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -8234,45 +916,42 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:07 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/08489163-89b7-4409-8435-a57e26a1a8fd?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:17:49 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c774cb8e-4b6e-47a5-90cc-7273d160bd1d?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "cc39cbb504891ef7e9505b2e5fb36e32", - "x-ms-request-id": "ad899d34-b884-4112-ad31-527354b7264a" + "x-ms-client-request-id": "716467b600fb257cc1aa4d6a61bac493", + "x-ms-request-id": "43cadf5e-9498-4dda-9b08-383d5be47980" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/08489163-89b7-4409-8435-a57e26a1a8fd?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c774cb8e-4b6e-47a5-90cc-7273d160bd1d?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "047cadd33345c6fb079bf79320cd7917", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "41b82e48e735f0950c14aae8ca965571", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Content-Length": "0", - "Date": "Thu, 21 Jan 2021 20:27:08 GMT", + "Date": "Thu, 30 Sep 2021 06:17:50 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "047cadd33345c6fb079bf79320cd7917", - "x-ms-request-id": "f8edce43-9716-45f4-9f1e-8ac08c832801" + "x-ms-client-request-id": "41b82e48e735f0950c14aae8ca965571", + "x-ms-request-id": "6f7ff916-628f-4c68-98a0-93498acf17ce" }, "ResponseBody": [] } ], "Variables": { - "AZURE_SYNAPSE_WORKSPACE_URL": "https://workspacechhamosynapse.dev.azuresynapse.net", + "AZURE_SYNAPSE_WORKSPACE_URL": "https://testsynapseworkspace.dev.azuresynapse.net", "RandomSeed": "274019473" } } \ No newline at end of file diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/LinkedServiceClientLiveTests/TestGetLinkedServiceAsync.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/LinkedServiceClientLiveTests/TestGetLinkedServiceAsync.json index e605e5277af0..950e2cf76c4c 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/LinkedServiceClientLiveTests/TestGetLinkedServiceAsync.json +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/LinkedServiceClientLiveTests/TestGetLinkedServiceAsync.json @@ -1,18 +1,15 @@ { "Entries": [ { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedService171?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/linkedservices/LinkedService171?api-version=2020-12-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "119", "Content-Type": "application/json", - "traceparent": "00-7bc904988641fb4798aa4447393f3915-1f64950289838f4d-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "traceparent": "00-dfae2ef29d4dda43b5092c30def0c8e5-d2105c0ffa2f3c4d-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "212e04cf6f2b5523effb5e3e52e36908", "x-ms-return-client-request-id": "true" }, @@ -34,37 +31,34 @@ "Location", "Retry-After" ], - "Content-Length": "449", + "Content-Length": "443", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:08 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/4938b047-b937-4c74-9d3b-a723256d0540?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:18:19 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/28e6e0e4-8c42-48d6-9190-b92d4f076040?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "212e04cf6f2b5523effb5e3e52e36908", - "x-ms-request-id": "b9ce8161-ca3e-43fd-86e3-5a08a4f264a9" + "x-ms-request-id": "e4aacd8c-1eea-4999-b708-1a06bb0041b4" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedServices/LinkedService171", - "recordId": 991681, + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/linkedServices/LinkedService171", + "recordId": 2424290, "state": "Creating", - "created": "2021-01-21T20:27:09.03Z", - "changed": "2021-01-21T20:27:09.03Z", + "created": "2021-09-30T06:18:20.34Z", + "changed": "2021-09-30T06:18:20.34Z", "type": "LinkedService", "name": "LinkedService171", - "operationId": "4938b047-b937-4c74-9d3b-a723256d0540", - "artifactId": "041FCFE5-EFF2-43F7-AC35-1F0F536E8A0A" + "operationId": "28e6e0e4-8c42-48d6-9190-b92d4f076040", + "artifactId": "180D1966-6595-4AD7-BB47-E43B79188781" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/4938b047-b937-4c74-9d3b-a723256d0540?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/28e6e0e4-8c42-48d6-9190-b92d4f076040?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5271af9536a07dcf2d6c420e72d42cf1", "x-ms-return-client-request-id": "true" }, @@ -81,27 +75,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:08 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/4938b047-b937-4c74-9d3b-a723256d0540?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:18:19 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/28e6e0e4-8c42-48d6-9190-b92d4f076040?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "5271af9536a07dcf2d6c420e72d42cf1", - "x-ms-request-id": "601e180e-568b-4109-806f-66e14b57804c" + "x-ms-request-id": "4e08a741-30b3-4e6e-81e3-d4a022744afe" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/4938b047-b937-4c74-9d3b-a723256d0540?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/28e6e0e4-8c42-48d6-9190-b92d4f076040?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "aef9137c9ce3b526cb7ed9eec59e8aeb", "x-ms-return-client-request-id": "true" }, @@ -118,27 +109,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:10 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/4938b047-b937-4c74-9d3b-a723256d0540?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:18:21 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/28e6e0e4-8c42-48d6-9190-b92d4f076040?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "aef9137c9ce3b526cb7ed9eec59e8aeb", - "x-ms-request-id": "7871489d-61fb-4926-962b-4281aad5c652" + "x-ms-request-id": "8973f702-b362-4023-86b1-bd4613adfaaf" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/4938b047-b937-4c74-9d3b-a723256d0540?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/28e6e0e4-8c42-48d6-9190-b92d4f076040?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a2a835111672d167a6b12d0dd62b3d73", "x-ms-return-client-request-id": "true" }, @@ -155,8033 +143,560 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:11 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/4938b047-b937-4c74-9d3b-a723256d0540?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:18:22 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/28e6e0e4-8c42-48d6-9190-b92d4f076040?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "a2a835111672d167a6b12d0dd62b3d73", - "x-ms-request-id": "c49bbb5e-924b-4ce2-9559-88d9f492010b" + "x-ms-request-id": "7a1cf245-d214-41cb-9dc4-bb9a3c219d3e" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/4938b047-b937-4c74-9d3b-a723256d0540?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/28e6e0e4-8c42-48d6-9190-b92d4f076040?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b708b80f3b0af84589bb87215ce0b88e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, - "StatusCode": 202, + "StatusCode": 200, "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", + "Content-Length": "471", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:12 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/4938b047-b937-4c74-9d3b-a723256d0540?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", + "Date": "Thu, 30 Sep 2021 06:18:23 GMT", + "Server": "Kestrel Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "b708b80f3b0af84589bb87215ce0b88e", - "x-ms-request-id": "0b0fe3ce-176c-4071-85e5-2f863d418030" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/4938b047-b937-4c74-9d3b-a723256d0540?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "3cfc57e18a2b667eab2708316e18dfa0", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:13 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/4938b047-b937-4c74-9d3b-a723256d0540?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "3cfc57e18a2b667eab2708316e18dfa0", - "x-ms-request-id": "164f2e06-42ce-4a2c-91ef-475c5f0f3387" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/4938b047-b937-4c74-9d3b-a723256d0540?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "0cde6641d296d6e0f0af19b78f4574c6", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:14 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/4938b047-b937-4c74-9d3b-a723256d0540?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "0cde6641d296d6e0f0af19b78f4574c6", - "x-ms-request-id": "cfb17a52-d6a6-4182-946f-38c225bd6802" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/4938b047-b937-4c74-9d3b-a723256d0540?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "7e2c9ef9002e854739a10ce332138a71", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "429", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:15 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-ms-client-request-id": "7e2c9ef9002e854739a10ce332138a71", - "x-ms-correlation-request-id": "fc1c710e-bba6-4a85-aea3-38c3327965b3", - "x-ms-request-id": "64b4618e-4e1e-4c9c-a4bd-a32cffdad818", - "X-Powered-By": "ASP.NET" + "x-ms-correlation-request-id": "2661f212-1ca8-48b2-9f2e-4e88a601c0f9", + "x-ms-request-id": "1e4e9ead-c57b-4919-9d73-f54d89a9ac51" }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedService171", - "name": "LinkedService171", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "2701ac70-0000-0800-0000-6009e3a20000" - } + "ResponseBody": [ + "{\n", + " \u0022id\u0022: \u0022/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/linkedservices/LinkedService171\u0022,\n", + " \u0022name\u0022: \u0022LinkedService171\u0022,\n", + " \u0022type\u0022: \u0022Microsoft.Synapse/workspaces/linkedservices\u0022,\n", + " \u0022properties\u0022: {\n", + " \u0022type\u0022: \u0022AzureDataLakeStore\u0022,\n", + " \u0022typeProperties\u0022: {\n", + " \u0022dataLakeStoreUri\u0022: \u0022adl://test.azuredatalakestore.net/\u0022\n", + " }\n", + " },\n", + " \u0022etag\u0022: \u00222e001980-0000-0100-0000-615556af0000\u0022\n", + "}" + ] }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/linkedservices?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-f431d3251ae27a4da0ba5f2d0e7b46ce-c60dc87ee26d354e-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "f6e0e7dcab010ef877254c7b70c7d665", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Length": "22775", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:15 GMT", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "f6e0e7dcab010ef877254c7b70c7d665", - "x-ms-request-id": "fa451b39-d51f-40ee-8d47-71bbe33ba1ab" - }, - "ResponseBody": { - "value": [ - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/workspacechhamosynapse-WorkspaceDefaultSqlServer", - "name": "workspacechhamosynapse-WorkspaceDefaultSqlServer", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "ab035c9e-0000-0800-0000-5fd14daf0000", - "properties": { - "typeProperties": { - "connectionString": "Data Source=tcp:workspacechhamosynapse.sql.azuresynapse.net,1433;Initial Catalog=@{linkedService().DBName}" - }, - "parameters": { - "DBName": { - "type": "String" - } - }, - "type": "AzureSqlDW", - "connectVia": { - "referenceName": "AutoResolveIntegrationRuntime", - "type": "IntegrationRuntimeReference" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/workspacechhamosynapse-WorkspaceDefaultStorage", - "name": "workspacechhamosynapse-WorkspaceDefaultStorage", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "ab03399f-0000-0800-0000-5fd14db30000", - "properties": { - "typeProperties": { - "url": "https://storagechhamosynapse.dfs.core.windows.net" - }, - "type": "AzureBlobFS", - "connectVia": { - "referenceName": "AutoResolveIntegrationRuntime", - "type": "IntegrationRuntimeReference" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1927657153", - "name": "LinkedSercive1927657153", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "f501bdff-0000-0800-0000-5fd257ee0000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive48615674", - "name": "LinkedSercive48615674", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "f6013401-0000-0800-0000-5fd257fb0000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive259949839", - "name": "LinkedSercive259949839", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "f601b61a-0000-0800-0000-5fd258dd0000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive552714012", - "name": "LinkedSercive552714012", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "f601191c-0000-0800-0000-5fd258ea0000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive494735049", - "name": "LinkedSercive494735049", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "f6014839-0000-0800-0000-5fd259d80000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1075151942", - "name": "LinkedSercive1075151942", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "f601503a-0000-0800-0000-5fd259e10000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive334963779", - "name": "LinkedSercive334963779", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "f601bca7-0000-0800-0000-5fd25de30000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1909004730", - "name": "LinkedSercive1909004730", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "f60192a9-0000-0800-0000-5fd25df30000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive488681607", - "name": "LinkedSercive488681607", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "f60138c0-0000-0800-0000-5fd25ebf0000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive834727455", - "name": "LinkedSercive834727455", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "f6014cc1-0000-0800-0000-5fd25eca0000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive546967853", - "name": "LinkedSercive546967853", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "f601d8d9-0000-0800-0000-5fd25fae0000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1749654824", - "name": "LinkedSercive1749654824", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "f60153db-0000-0800-0000-5fd25fbc0000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive2030616186", - "name": "LinkedSercive2030616186", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "f701d646-0000-0800-0000-5fd263cd0000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive543683066", - "name": "LinkedSercive543683066", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "f7019c48-0000-0800-0000-5fd263de0000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive2127521067", - "name": "LinkedSercive2127521067", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "f7016562-0000-0800-0000-5fd264cd0000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive694203911", - "name": "LinkedSercive694203911", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "f7015f64-0000-0800-0000-5fd264df0000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1422502982", - "name": "LinkedSercive1422502982", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "f7016e92-0000-0800-0000-5fd2668b0000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive471022701", - "name": "LinkedSercive471022701", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "f701c993-0000-0800-0000-5fd266980000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1266290659", - "name": "LinkedSercive1266290659", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "19028578-0000-0800-0000-5fd3a7f20000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive468335119", - "name": "LinkedSercive468335119", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "19025b7a-0000-0800-0000-5fd3a8010000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive169045690", - "name": "LinkedSercive169045690", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "62028790-0000-0800-0000-5fd797470000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive149240830", - "name": "LinkedSercive149240830", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "62029e92-0000-0800-0000-5fd797560000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1242831133", - "name": "LinkedSercive1242831133", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "620236c1-0000-0800-0000-5fd798c50000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1055826840", - "name": "LinkedSercive1055826840", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "6202e6c3-0000-0800-0000-5fd798d60000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1643748789", - "name": "LinkedSercive1643748789", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "6202f8e6-0000-0800-0000-5fd799dd0000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1366609036", - "name": "LinkedSercive1366609036", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "6202f7e8-0000-0800-0000-5fd799ef0000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive697524680", - "name": "LinkedSercive697524680", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "83029df2-0000-0800-0000-5fd8d39b0000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1665537899", - "name": "LinkedSercive1665537899", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "8302a2f4-0000-0800-0000-5fd8d3ad0000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1987327059", - "name": "LinkedSercive1987327059", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "8402d32b-0000-0800-0000-5fd8d5520000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1602624665", - "name": "LinkedSercive1602624665", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "8402c02e-0000-0800-0000-5fd8d5680000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive944610075", - "name": "LinkedSercive944610075", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "8402ae54-0000-0800-0000-5fd8d6870000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive797666631", - "name": "LinkedSercive797666631", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "8402be55-0000-0800-0000-5fd8d6910000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive263692593", - "name": "LinkedSercive263692593", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "8702baaf-0000-0800-0000-5fd8f1270000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive819295136", - "name": "LinkedSercive819295136", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "8702cfb1-0000-0800-0000-5fd8f1360000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1527582843", - "name": "LinkedSercive1527582843", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "870288ce-0000-0800-0000-5fd8f21f0000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive600518366", - "name": "LinkedSercive600518366", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "8702e3d1-0000-0800-0000-5fd8f2370000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1420436778", - "name": "LinkedSercive1420436778", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "8702aff2-0000-0800-0000-5fd8f33e0000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1785865340", - "name": "LinkedSercive1785865340", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "8702daf4-0000-0800-0000-5fd8f3500000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive672261494", - "name": "LinkedSercive672261494", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "88024060-0000-0800-0000-5fd8f6b40000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive901808331", - "name": "LinkedSercive901808331", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "88027e62-0000-0800-0000-5fd8f6c80000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1709596576", - "name": "LinkedSercive1709596576", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "88020d81-0000-0800-0000-5fd8f7d30000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1095119785", - "name": "LinkedSercive1095119785", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "88024683-0000-0800-0000-5fd8f7e70000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1810830919", - "name": "LinkedSercive1810830919", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "8802f1a5-0000-0800-0000-5fd8f8ff0000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive881765773", - "name": "LinkedSercive881765773", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "8802b0a8-0000-0800-0000-5fd8f9150000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive80443021", - "name": "LinkedSercive80443021", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "42000b5d-0000-0800-0000-5fda868f0000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1533253258", - "name": "LinkedSercive1533253258", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "4200e562-0000-0800-0000-5fda86a60000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1609548572", - "name": "LinkedSercive1609548572", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "42005da4-0000-0800-0000-5fda87a90000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive88790287", - "name": "LinkedSercive88790287", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "420000a9-0000-0800-0000-5fda87bd0000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - } - ], - "nextLink": "https://workspacechhamosynapse.dev.azuresynapse.net:443/linkedservices?api-version=2019-06-01-preview\u0026%24skipToken=%2BRID%3A%7ESl8ZAKxwhABQUgAAAAD8BA%3D%3D%23RT%3A1%23TRC%3A50%23ISV%3A2%23IEO%3A65551%23QCF%3A1" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices?api-version=2019-06-01-preview\u0026%24skipToken=%2BRID%3A~Sl8ZAKxwhABQUgAAAAD8BA%3D%3D%23RT%3A1%23TRC%3A50%23ISV%3A2%23IEO%3A65551%23QCF%3A1", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-d64d6c4abeea144191100e91a7d6ed7b-40d9812bac926a4a-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "cf3841b260ec41711e59d2f4c6fda3dd", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Length": "22381", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:15 GMT", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "cf3841b260ec41711e59d2f4c6fda3dd", - "x-ms-request-id": "ccc9fffe-e5fd-480c-a7e5-a32eb3faa425" - }, - "ResponseBody": { - "value": [ - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive2135321969", - "name": "LinkedSercive2135321969", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "420087e7-0000-0800-0000-5fda88ab0000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1388175726", - "name": "LinkedSercive1388175726", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "4200cced-0000-0800-0000-5fda88c40000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive838395211", - "name": "LinkedSercive838395211", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "79002090-0000-0800-0000-5fdbaf550000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1185988641", - "name": "LinkedSercive1185988641", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "79007897-0000-0800-0000-5fdbaf6a0000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive465005367", - "name": "LinkedSercive465005367", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "7900aaef-0000-0800-0000-5fdbb0610000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive887421172", - "name": "LinkedSercive887421172", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "7900c8f5-0000-0800-0000-5fdbb0720000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive515318195", - "name": "LinkedSercive515318195", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "7a004859-0000-0800-0000-5fdbb1830000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1843363636", - "name": "LinkedSercive1843363636", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "7a007e62-0000-0800-0000-5fdbb1990000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1690403739", - "name": "LinkedSercive1690403739", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "12000290-0000-0800-0000-5fdcc7900000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive42707264", - "name": "LinkedSercive42707264", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "12003192-0000-0800-0000-5fdcc7a10000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1233836124", - "name": "LinkedSercive1233836124", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "120021ca-0000-0800-0000-5fdcc9790000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive139239537", - "name": "LinkedSercive139239537", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "1200a1cc-0000-0800-0000-5fdcc98f0000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive610829349", - "name": "LinkedSercive610829349", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "12005cfb-0000-0800-0000-5fdccb150000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1405507449", - "name": "LinkedSercive1405507449", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "12006efd-0000-0800-0000-5fdccb2a0000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1937683374", - "name": "LinkedSercive1937683374", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "140039f8-0000-0800-0000-5fdcdd030000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1879162900", - "name": "LinkedSercive1879162900", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "140070fa-0000-0800-0000-5fdcdd150000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1048841025", - "name": "LinkedSercive1048841025", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "15004218-0000-0800-0000-5fdcde1e0000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1678343714", - "name": "LinkedSercive1678343714", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "1500801a-0000-0800-0000-5fdcde340000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1008491562", - "name": "LinkedSercive1008491562", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "15001c3a-0000-0800-0000-5fdcdf3c0000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1390065082", - "name": "LinkedSercive1390065082", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "1500ba3c-0000-0800-0000-5fdcdf500000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive506195076", - "name": "LinkedSercive506195076", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "1500f2eb-0000-0800-0000-5fdce5770000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive914511652", - "name": "LinkedSercive914511652", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "15000fee-0000-0800-0000-5fdce58c0000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1595131040", - "name": "LinkedSercive1595131040", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "1600ed0e-0000-0800-0000-5fdce6aa0000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1805011694", - "name": "LinkedSercive1805011694", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "1600c712-0000-0800-0000-5fdce6c40000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive675313907", - "name": "LinkedSercive675313907", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "1600b536-0000-0800-0000-5fdce8080000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1464325023", - "name": "LinkedSercive1464325023", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "16002039-0000-0800-0000-5fdce81e0000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive851402915", - "name": "LinkedSercive851402915", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "94008e1c-0000-0800-0000-5fe0ce1f0000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive60722854", - "name": "LinkedSercive60722854", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "9400e728-0000-0800-0000-5fe0ce330000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1490350231", - "name": "LinkedSercive1490350231", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "95000f23-0000-0800-0000-5fe0d0020000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1088839151", - "name": "LinkedSercive1088839151", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "9500e92f-0000-0800-0000-5fe0d01a0000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive686460023", - "name": "LinkedSercive686460023", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "95008bfe-0000-0800-0000-5fe0d1820000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive756252000", - "name": "LinkedSercive756252000", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "9600e507-0000-0800-0000-5fe0d1930000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive78281727", - "name": "LinkedSercive78281727", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "b3001609-0000-0800-0000-5fe108ad0000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive206290723", - "name": "LinkedSercive206290723", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "b3007212-0000-0800-0000-5fe108c40000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1749145264", - "name": "LinkedSercive1749145264", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "b3001ed2-0000-0800-0000-5fe10aa90000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1498880387", - "name": "LinkedSercive1498880387", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "b3001fda-0000-0800-0000-5fe10abf0000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1088740958", - "name": "LinkedSercive1088740958", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "b4001383-0000-0800-0000-5fe10c5a0000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive668009510", - "name": "LinkedSercive668009510", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "b400e98c-0000-0800-0000-5fe10c700000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive2018805938", - "name": "LinkedSercive2018805938", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "b700cedc-0000-0800-0000-5fe1145a0000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1933269774", - "name": "LinkedSercive1933269774", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "b70099e7-0000-0800-0000-5fe114750000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive678807123", - "name": "LinkedSercive678807123", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "b800ecb9-0000-0800-0000-5fe116a20000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive225295812", - "name": "LinkedSercive225295812", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "b8003ec5-0000-0800-0000-5fe116bf0000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive45741747", - "name": "LinkedSercive45741747", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "b9009056-0000-0800-0000-5fe118520000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive2138812515", - "name": "LinkedSercive2138812515", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "b900695e-0000-0800-0000-5fe118690000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive417042405", - "name": "LinkedSercive417042405", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "000012ec-0000-0800-0000-5fe2594d0000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive55088323", - "name": "LinkedSercive55088323", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "000057ec-0000-0800-0000-5fe259660000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive2142776433", - "name": "LinkedSercive2142776433", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "00001bf3-0000-0800-0000-5fe25b7b0000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1199639292", - "name": "LinkedSercive1199639292", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "000066f3-0000-0800-0000-5fe25b920000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1401426573", - "name": "LinkedSercive1401426573", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "000001f9-0000-0800-0000-5fe25d410000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1164265271", - "name": "LinkedSercive1164265271", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "00003bf9-0000-0800-0000-5fe25d5a0000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - } - ], - "nextLink": "https://workspacechhamosynapse.dev.azuresynapse.net:443/linkedservices?api-version=2019-06-01-preview\u0026%24skipToken=%2BRID%3A%7ESl8ZAKxwhACFWwAAAAD8BA%3D%3D%23RT%3A2%23TRC%3A100%23ISV%3A2%23IEO%3A65551%23QCF%3A1" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices?api-version=2019-06-01-preview\u0026%24skipToken=%2BRID%3A~Sl8ZAKxwhACFWwAAAAD8BA%3D%3D%23RT%3A2%23TRC%3A100%23ISV%3A2%23IEO%3A65551%23QCF%3A1", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-e6f6093fb1f2024b8a14382a040b1210-da12679412639047-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "a8daa8257e654dc4a51d0709b4cb1471", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Length": "13649", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:16 GMT", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "a8daa8257e654dc4a51d0709b4cb1471", - "x-ms-request-id": "e7ad098c-85a7-4c84-a03f-f50a42423ee0" - }, - "ResponseBody": { - "value": [ - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1871992189", - "name": "LinkedSercive1871992189", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "0300fc76-0000-0800-0000-5fe389a40000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1310468832", - "name": "LinkedSercive1310468832", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "03002777-0000-0800-0000-5fe389b90000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive216597668", - "name": "LinkedSercive216597668", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "0300c17f-0000-0800-0000-5fe38ced0000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1718222757", - "name": "LinkedSercive1718222757", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "0300f77f-0000-0800-0000-5fe38d040000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1245075161", - "name": "LinkedSercive1245075161", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "0300d38a-0000-0800-0000-5fe3909d0000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive88302679", - "name": "LinkedSercive88302679", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "0300158b-0000-0800-0000-5fe390b80000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1495412509", - "name": "LinkedSercive1495412509", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "03007894-0000-0800-0000-5fe393c50000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive2137046366", - "name": "LinkedSercive2137046366", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "0300c894-0000-0800-0000-5fe393de0000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1857600842", - "name": "LinkedSercive1857600842", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "0300de9c-0000-0800-0000-5fe396dd0000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive469786997", - "name": "LinkedSercive469786997", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "0300299d-0000-0800-0000-5fe396fb0000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive400436699", - "name": "LinkedSercive400436699", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "03000aa6-0000-0800-0000-5fe399ec0000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive495886452", - "name": "LinkedSercive495886452", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "03005da6-0000-0800-0000-5fe39a010000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1101442691", - "name": "LinkedSercive1101442691", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "0300a7b1-0000-0800-0000-5fe39e040000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1774188743", - "name": "LinkedSercive1774188743", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "0300ebb1-0000-0800-0000-5fe39e1c0000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive2073787042", - "name": "LinkedSercive2073787042", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "030052c3-0000-0800-0000-5fe3a39f0000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive660565946", - "name": "LinkedSercive660565946", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "030095c3-0000-0800-0000-5fe3a3b50000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive80437647", - "name": "LinkedSercive80437647", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "030060d1-0000-0800-0000-5fe3a8360000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive898252850", - "name": "LinkedSercive898252850", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "0300a7d1-0000-0800-0000-5fe3a8530000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1073730247", - "name": "LinkedSercive1073730247", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "0207786f-0000-0800-0000-6000bcaf0000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive681108007", - "name": "LinkedSercive681108007", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "02073b83-0000-0800-0000-6000bcc90000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1698779984", - "name": "LinkedSercive1698779984", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "c407c7d8-0000-0800-0000-6001c0d10000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive357215418", - "name": "LinkedSercive357215418", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "c40749ed-0000-0800-0000-6001c0ee0000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive991201870", - "name": "LinkedSercive991201870", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "c80757ec-0000-0800-0000-6001c6440000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive583860423", - "name": "LinkedSercive583860423", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "c9079001-0000-0800-0000-6001c6600000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedService159", - "name": "LinkedService159", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "30005eed-0000-0800-0000-6008739a0000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedService777", - "name": "LinkedService777", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "3100e105-0000-0800-0000-600873bd0000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedService759", - "name": "LinkedService759", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "33007a8c-0000-0800-0000-600877360000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedService112", - "name": "LinkedService112", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "3300f59e-0000-0800-0000-600877520000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedService991", - "name": "LinkedService991", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "5100c270-0000-0800-0000-6008a26e0000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedService583", - "name": "LinkedService583", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "51005884-0000-0800-0000-6008a28b0000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedService171", - "name": "LinkedService171", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "etag": "2701ac70-0000-0800-0000-6009e3a20000", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - } - } - ] - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/workspacechhamosynapse-WorkspaceDefaultSqlServer?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-8b5d114c05183a40bf2d5a3b3e7f4017-03bcab8cb6a89e4a-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "f030a6cbbada7b84769ed7a8d9044879", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "699", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:16 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-ms-client-request-id": "f030a6cbbada7b84769ed7a8d9044879", - "x-ms-correlation-request-id": "4cb3c844-a04e-467b-bf47-a518af67a385", - "x-ms-request-id": "cdcd97f2-095b-4aa2-981f-068a49177193", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/workspacechhamosynapse-WorkspaceDefaultSqlServer", - "name": "workspacechhamosynapse-WorkspaceDefaultSqlServer", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "typeProperties": { - "connectionString": "Data Source=tcp:workspacechhamosynapse.sql.azuresynapse.net,1433;Initial Catalog=@{linkedService().DBName}" - }, - "parameters": { - "DBName": { - "type": "String" - } - }, - "type": "AzureSqlDW", - "connectVia": { - "referenceName": "AutoResolveIntegrationRuntime", - "type": "IntegrationRuntimeReference" - } - }, - "etag": "ab035c9e-0000-0800-0000-5fd14daf0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/workspacechhamosynapse-WorkspaceDefaultStorage?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-62f05e7061d42e498765e7e26e1dbff1-4af717ba86cdc747-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "c8556e812eed34ff7deb29cf59678c53", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "584", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:16 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-ms-client-request-id": "c8556e812eed34ff7deb29cf59678c53", - "x-ms-correlation-request-id": "13b96e21-0b38-42b8-945f-de218a147f68", - "x-ms-request-id": "f013ace2-c518-4d15-9667-b6db9918e54c", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/workspacechhamosynapse-WorkspaceDefaultStorage", - "name": "workspacechhamosynapse-WorkspaceDefaultStorage", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "typeProperties": { - "url": "https://storagechhamosynapse.dfs.core.windows.net" - }, - "type": "AzureBlobFS", - "connectVia": { - "referenceName": "AutoResolveIntegrationRuntime", - "type": "IntegrationRuntimeReference" - } - }, - "etag": "ab03399f-0000-0800-0000-5fd14db30000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive1927657153?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-3c20f6a96c2503468cbcd3a24a418778-5c32c0b80962a34f-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "20286044b3cd6b02235f32c6a61c73a1", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "443", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:16 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-ms-client-request-id": "20286044b3cd6b02235f32c6a61c73a1", - "x-ms-correlation-request-id": "5a870921-0450-4397-b572-938d11923560", - "x-ms-request-id": "d9557b72-cbf4-423b-a9c8-ff9ba902b81b", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1927657153", - "name": "LinkedSercive1927657153", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "f501bdff-0000-0800-0000-5fd257ee0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive48615674?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-273ac33593c1e6478e9e0a3f6b492902-90a3c552ba3c7f46-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "45878dd54c769c84a6fb73ef90b5220e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "439", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:16 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-ms-client-request-id": "45878dd54c769c84a6fb73ef90b5220e", - "x-ms-correlation-request-id": "554e43c9-9768-48ee-aaee-ae81e5050f54", - "x-ms-request-id": "c4cff2d0-fcc3-4348-ac6c-9378f13e7631", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive48615674", - "name": "LinkedSercive48615674", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "f6013401-0000-0800-0000-5fd257fb0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive259949839?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-f463732768975547bb8b6752cf3167a3-1828af01c9b43d49-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "7963841127dbceac6be9a58dfc388d60", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "441", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:16 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-ms-client-request-id": "7963841127dbceac6be9a58dfc388d60", - "x-ms-correlation-request-id": "a1bf073c-697d-4243-8ebf-de0f07365422", - "x-ms-request-id": "dcb14c8b-834f-4309-8199-c60e009c0f11", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive259949839", - "name": "LinkedSercive259949839", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "f601b61a-0000-0800-0000-5fd258dd0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive552714012?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-6c7f01b2e44c7b4a8f5956a4cd3df064-f305e17727a1ae48-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "ccf9887747e0f8dcdb8c79d13f13db6d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "441", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:17 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-ms-client-request-id": "ccf9887747e0f8dcdb8c79d13f13db6d", - "x-ms-correlation-request-id": "964cac97-b1f6-4f9f-b592-bddd28f135c1", - "x-ms-request-id": "066ab614-1044-4776-b9f1-97c926844637", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive552714012", - "name": "LinkedSercive552714012", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "f601191c-0000-0800-0000-5fd258ea0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive494735049?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-8d185ec016bab44ab16bc05ea25f4a5a-d091d2759f856348-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "22b5233dfab8adc5e0b8d98ca6f7a06d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "441", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:17 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-ms-client-request-id": "22b5233dfab8adc5e0b8d98ca6f7a06d", - "x-ms-correlation-request-id": "55c1b258-05a6-4661-878f-e0958d2348fd", - "x-ms-request-id": "62decfc4-fae2-4297-a0c0-26d90f89c950", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive494735049", - "name": "LinkedSercive494735049", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "f6014839-0000-0800-0000-5fd259d80000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive1075151942?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-7ffa158f0615294d9080bcac25805a5f-280be1795b501d44-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "0777126e56bbca2da76b9d4faedb8f58", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "443", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:17 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-ms-client-request-id": "0777126e56bbca2da76b9d4faedb8f58", - "x-ms-correlation-request-id": "38b27fd9-b5c6-41de-8b38-dfc6d7ed08dd", - "x-ms-request-id": "15b5af5a-fd95-43cc-b0c2-5c8b060ce146", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1075151942", - "name": "LinkedSercive1075151942", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "f601503a-0000-0800-0000-5fd259e10000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive334963779?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-4489f4f21f1a6b4685b1c3c6858c16d6-273a269297a4d646-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "d850370e6a837ca8c34ceb276d5051e4", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "441", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:17 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-ms-client-request-id": "d850370e6a837ca8c34ceb276d5051e4", - "x-ms-correlation-request-id": "1ed36e59-e05d-43ec-8cdb-6c10a9717258", - "x-ms-request-id": "a7982fdb-8795-4944-aa34-d27b111026d2", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive334963779", - "name": "LinkedSercive334963779", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "f601bca7-0000-0800-0000-5fd25de30000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive1909004730?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-ad8d08b890282c489c0ab7a08c3db4b1-6814cd974691794b-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "2c630becd49be6b2f5ea7b4c5d76fe05", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "443", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:17 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-ms-client-request-id": "2c630becd49be6b2f5ea7b4c5d76fe05", - "x-ms-correlation-request-id": "207b80ad-f7b6-4ffd-80e5-abef4b6b2d62", - "x-ms-request-id": "8a553d8d-21e6-44b0-bda0-75a763a30c41", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1909004730", - "name": "LinkedSercive1909004730", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "f60192a9-0000-0800-0000-5fd25df30000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive488681607?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-d120928039d7ff449dd6f52db7e5e8fc-d68d5431dbd3ac46-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "6f7d8129c7a603ea6afa446e6a065d56", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "441", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:17 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-ms-client-request-id": "6f7d8129c7a603ea6afa446e6a065d56", - "x-ms-correlation-request-id": "836fb1e7-d952-4b32-b099-7b5da81f687d", - "x-ms-request-id": "c082a013-0d3b-47f2-9dab-e1ae04a973e9", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive488681607", - "name": "LinkedSercive488681607", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "f60138c0-0000-0800-0000-5fd25ebf0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive834727455?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-c058d0215bfaa14fafe68a28c18be040-e8feff252009a44a-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "a363b81a627839bc8469e299ef5b1f4d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "441", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:17 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-ms-client-request-id": "a363b81a627839bc8469e299ef5b1f4d", - "x-ms-correlation-request-id": "480f371a-a821-4c85-ae2c-b521b2a424f7", - "x-ms-request-id": "605ddde2-7d93-4b08-86a9-3a01860d5add", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive834727455", - "name": "LinkedSercive834727455", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "f6014cc1-0000-0800-0000-5fd25eca0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive546967853?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-ad90b764c92dca4db3f83699ba9ec148-a9093fc3dc20d846-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "ebfde64ee2d2253e215fc1a190437cef", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "441", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:17 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-ms-client-request-id": "ebfde64ee2d2253e215fc1a190437cef", - "x-ms-correlation-request-id": "365d8acf-f31a-44b7-b305-b4ae064572ef", - "x-ms-request-id": "d272e9aa-5eed-4d6b-a301-e9748136060e", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive546967853", - "name": "LinkedSercive546967853", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "f601d8d9-0000-0800-0000-5fd25fae0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive1749654824?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-d800e8678bf85548aef19fa23bcb844e-3bda30ec162d4147-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "a432248d5b13c68dc544ea3ce450130f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "443", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:19 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-ms-client-request-id": "a432248d5b13c68dc544ea3ce450130f", - "x-ms-correlation-request-id": "dfa0f365-4a02-4e28-bab6-12f6f6d69188", - "x-ms-request-id": "4dce763f-bf85-40b8-be9e-b1287d00dfaf", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1749654824", - "name": "LinkedSercive1749654824", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "f60153db-0000-0800-0000-5fd25fbc0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive2030616186?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-d2bd5214c2a6ea4ea775d5d9d607372a-6ef7b5b4faa07d45-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "8420f6db710838837a3d8218a01ba941", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "443", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:19 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-ms-client-request-id": "8420f6db710838837a3d8218a01ba941", - "x-ms-correlation-request-id": "c11023fa-bff7-4f45-b1ee-e219e14ae51b", - "x-ms-request-id": "f290615d-3afa-4857-babc-769371dd795e", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive2030616186", - "name": "LinkedSercive2030616186", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "f701d646-0000-0800-0000-5fd263cd0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive543683066?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-e19b9e2cb6753b4ca34a52371356c9b7-f778abf7a138bf4d-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "cb0cf3ed7a28f33a5837258ef70140d0", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "441", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:19 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-ms-client-request-id": "cb0cf3ed7a28f33a5837258ef70140d0", - "x-ms-correlation-request-id": "efae57e9-134a-4ac2-88c5-bd89625fb070", - "x-ms-request-id": "9bded5fd-b5cf-40a0-a45d-6d99862a211b", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive543683066", - "name": "LinkedSercive543683066", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "f7019c48-0000-0800-0000-5fd263de0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive2127521067?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-8438cb63068de84ca659b51c9a16dfc6-f8287dccf1b2974b-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "99c5b24bf7231be6a0fa2ad5d87525aa", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "443", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:19 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-ms-client-request-id": "99c5b24bf7231be6a0fa2ad5d87525aa", - "x-ms-correlation-request-id": "bee8f07b-125b-4e81-bbf2-e4b1d6007a36", - "x-ms-request-id": "479b4a7e-24e1-44d5-a6d5-aa48f8aa9edb", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive2127521067", - "name": "LinkedSercive2127521067", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "f7016562-0000-0800-0000-5fd264cd0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive694203911?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-b79028b82b7fa449bdf4d73c99255e40-3f888598297cb943-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "f14ea99a484460e6bc2d2bd14bf54078", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "441", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:19 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-ms-client-request-id": "f14ea99a484460e6bc2d2bd14bf54078", - "x-ms-correlation-request-id": "aac98015-20bd-46ba-adbf-de23ad98abd0", - "x-ms-request-id": "80989763-9534-4fa8-872b-94962b42cebd", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive694203911", - "name": "LinkedSercive694203911", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "f7015f64-0000-0800-0000-5fd264df0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive1422502982?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-9b843254c2b5cd47b3c8324e3c01b3c4-ca8e2c264bc4de46-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "eeccb1fd1055f51d0cf02a2e50641ae3", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "443", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:19 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-ms-client-request-id": "eeccb1fd1055f51d0cf02a2e50641ae3", - "x-ms-correlation-request-id": "911b620c-6e94-4a7e-b5cb-d2c5bbd85d51", - "x-ms-request-id": "7c56d641-be4d-4533-aa0c-f025e8ab707e", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1422502982", - "name": "LinkedSercive1422502982", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "f7016e92-0000-0800-0000-5fd2668b0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive471022701?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-82c74e3b71a1b74394ee675a77318047-209b2a2d6dfea24e-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "4ef37b114fb3038bcc65dcf6cc15cfab", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "441", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:20 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-ms-client-request-id": "4ef37b114fb3038bcc65dcf6cc15cfab", - "x-ms-correlation-request-id": "ffe5963c-0f02-4d7c-a2ab-56fe994b9cb3", - "x-ms-request-id": "0bffee80-8fd7-4e5d-8f99-41017a7d74c4", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive471022701", - "name": "LinkedSercive471022701", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "f701c993-0000-0800-0000-5fd266980000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive1266290659?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-0fa8d64ecda0e148998b3223f3659bd0-185fff2fe4455841-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "26d7b1b937a88a548b59e4531db80f57", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "443", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:20 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-ms-client-request-id": "26d7b1b937a88a548b59e4531db80f57", - "x-ms-correlation-request-id": "f6f05462-56e1-4118-8cd5-0595b742d5e4", - "x-ms-request-id": "2d0a46d6-27e7-4178-8e35-8a7b976d8209", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1266290659", - "name": "LinkedSercive1266290659", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "19028578-0000-0800-0000-5fd3a7f20000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive468335119?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-822ac2a6ba178b4f8ba07d0c4ae46a97-d9671b79c3050943-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "d0bf4712f201adc526c822f0332729f6", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "441", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:20 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-ms-client-request-id": "d0bf4712f201adc526c822f0332729f6", - "x-ms-correlation-request-id": "368a3811-6c35-4eed-88a0-3f62c5c491f8", - "x-ms-request-id": "3a725b92-5fe5-42d1-b940-dd058cf96481", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive468335119", - "name": "LinkedSercive468335119", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "19025b7a-0000-0800-0000-5fd3a8010000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive169045690?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-977360f03b93fa4488d1eeca10c33216-4b254dbabaa6aa44-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "9f747f21f38dd93b2668c2596a38e513", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "441", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:20 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-ms-client-request-id": "9f747f21f38dd93b2668c2596a38e513", - "x-ms-correlation-request-id": "40eeceef-6fd0-4946-9fcb-8e1fc4837402", - "x-ms-request-id": "87f40a2c-7044-445f-9a74-1f726f574ea4", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive169045690", - "name": "LinkedSercive169045690", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "62028790-0000-0800-0000-5fd797470000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive149240830?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-f1451dd0cd037449a5056d4a772f338c-1584ae37cc918149-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "84e38455ff55c7a9ec2900df15645763", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "441", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:20 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-ms-client-request-id": "84e38455ff55c7a9ec2900df15645763", - "x-ms-correlation-request-id": "95be64ec-b541-4cbe-8ce0-67fd1164ac5d", - "x-ms-request-id": "3af86685-0d2b-423a-8aca-baa8a8f7c2bb", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive149240830", - "name": "LinkedSercive149240830", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "62029e92-0000-0800-0000-5fd797560000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive1242831133?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-c7b850e77222a44abe211e42b5e770f7-8b42b782b7bbf74b-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "9e32ee2f70431eca0ce5a9982f6b43ee", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "443", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:20 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-ms-client-request-id": "9e32ee2f70431eca0ce5a9982f6b43ee", - "x-ms-correlation-request-id": "b62995c7-fdac-447c-910f-924f2115866f", - "x-ms-request-id": "38e20fde-0456-4591-940f-87d6cc11d572", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1242831133", - "name": "LinkedSercive1242831133", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "620236c1-0000-0800-0000-5fd798c50000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive1055826840?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-0eeefca0a8787e448c48b1473d4d7708-8ca4cd455f57b647-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "af9b0ee2a54321a0d5adb363f35bc4c2", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "443", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:20 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-ms-client-request-id": "af9b0ee2a54321a0d5adb363f35bc4c2", - "x-ms-correlation-request-id": "b292ed8c-66e8-483b-8348-0a5c974ee50b", - "x-ms-request-id": "1b10a9ab-d329-46c9-81b7-610e5f9ab31f", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1055826840", - "name": "LinkedSercive1055826840", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "6202e6c3-0000-0800-0000-5fd798d60000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive1643748789?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-8e0c5312cdc86b4f9dfd9330d4adfdef-e42f851b3929584f-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "7c2a5f114705e4d0b9c5776f55119780", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "443", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:21 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-ms-client-request-id": "7c2a5f114705e4d0b9c5776f55119780", - "x-ms-correlation-request-id": "f79d53cc-4f91-42fa-a89c-e8f7695ab327", - "x-ms-request-id": "29cc315c-884e-4452-8689-23f0851d8320", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1643748789", - "name": "LinkedSercive1643748789", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "6202f8e6-0000-0800-0000-5fd799dd0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive1366609036?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-ca0b67fbf1277d4898a295171f4e0c80-7b9ba0233d12604c-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "07fc12e6a8c98a1f4d11c896bd672bb1", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "443", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:21 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-ms-client-request-id": "07fc12e6a8c98a1f4d11c896bd672bb1", - "x-ms-correlation-request-id": "c8a9fd89-a1bc-470c-9cc6-bd1088f62a15", - "x-ms-request-id": "6251ad68-38d9-44a9-b5f4-9d5a990405a7", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1366609036", - "name": "LinkedSercive1366609036", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "6202f7e8-0000-0800-0000-5fd799ef0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive697524680?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-819a12edcb4ed641863ab58d6d3b04ff-9ab89075aabad643-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "d086e721c7419be83eb6f57e2e30cbc4", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "441", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:21 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-ms-client-request-id": "d086e721c7419be83eb6f57e2e30cbc4", - "x-ms-correlation-request-id": "02ec5318-ce99-4c11-9307-2b35c196fede", - "x-ms-request-id": "35f78e66-d6d4-40df-b587-02afd02db6b4", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive697524680", - "name": "LinkedSercive697524680", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "83029df2-0000-0800-0000-5fd8d39b0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive1665537899?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-7837d4447f0b454188c83dd0c3c0e2d7-7666ac8d8b2e854c-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "e07c3216bd5e69f83fa02ef47f392752", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "443", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:21 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-ms-client-request-id": "e07c3216bd5e69f83fa02ef47f392752", - "x-ms-correlation-request-id": "5497e5dc-7dc4-4c10-8446-96e697ead2e1", - "x-ms-request-id": "1e567d6d-da71-4f3d-8e9a-3f68a4ea1397", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1665537899", - "name": "LinkedSercive1665537899", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "8302a2f4-0000-0800-0000-5fd8d3ad0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive1987327059?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-85b391c92a7d6d448be35d35e00c394e-3a15b43040dc984d-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "6e4ec599c68a1f3f2961c913b2a15b1c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "443", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:21 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-ms-client-request-id": "6e4ec599c68a1f3f2961c913b2a15b1c", - "x-ms-correlation-request-id": "5b3aaab1-97b3-4ee0-a806-afd20ae3546e", - "x-ms-request-id": "5067d19a-fa39-410e-9476-74031e65f1fe", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1987327059", - "name": "LinkedSercive1987327059", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "8402d32b-0000-0800-0000-5fd8d5520000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive1602624665?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-f23e3850385a0f419c283c16ffaa2ce9-87eaea813fffc44b-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "8a8004454bea6453ee1d91a198f41c04", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "443", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:21 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-ms-client-request-id": "8a8004454bea6453ee1d91a198f41c04", - "x-ms-correlation-request-id": "2f6ab438-1c9c-4638-9c54-9e6baf42775b", - "x-ms-request-id": "8cfa69a4-00dc-4176-80c8-1de1def977f0", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1602624665", - "name": "LinkedSercive1602624665", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "8402c02e-0000-0800-0000-5fd8d5680000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive944610075?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-770df2dde46b584fb0e3e0191f1d7e47-bf9b644b435f7e47-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "68e5a38e5de25039f35db6fcf4e5b69e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "441", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:22 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-ms-client-request-id": "68e5a38e5de25039f35db6fcf4e5b69e", - "x-ms-correlation-request-id": "e336e1fd-863b-4712-9da7-21dd64752009", - "x-ms-request-id": "422d34e7-22df-4c9a-adb0-b4a995a272b4", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive944610075", - "name": "LinkedSercive944610075", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "8402ae54-0000-0800-0000-5fd8d6870000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive797666631?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-a23ad9225403fd418c1343e2f62059a9-d8eab873cfc0a84d-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "7aae12449db94e6772ea7f6d349e8634", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "441", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:22 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-ms-client-request-id": "7aae12449db94e6772ea7f6d349e8634", - "x-ms-correlation-request-id": "be9fd8ee-db73-45e8-9be4-2f7e88b6a821", - "x-ms-request-id": "ccf00b05-6193-472a-af4a-199754c26403", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive797666631", - "name": "LinkedSercive797666631", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "8402be55-0000-0800-0000-5fd8d6910000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive263692593?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-bf419823d518a54bb763cc07da374d20-6509881dac73f942-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "0f84c445f2bce83aca2f968c94566f08", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "441", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:22 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-ms-client-request-id": "0f84c445f2bce83aca2f968c94566f08", - "x-ms-correlation-request-id": "77e9f6fb-67c7-428e-abfd-64511921dd68", - "x-ms-request-id": "64666451-4b49-4a22-b831-88db836c034e", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive263692593", - "name": "LinkedSercive263692593", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "8702baaf-0000-0800-0000-5fd8f1270000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive819295136?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-fad95cd7e3ea0340aca5f72469c40bd5-b7174c9790cbc444-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "865cf366a146f14a3b96f6f7ddcc1b55", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "441", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:22 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-ms-client-request-id": "865cf366a146f14a3b96f6f7ddcc1b55", - "x-ms-correlation-request-id": "730845ad-055d-4d5a-b289-207b367ac58d", - "x-ms-request-id": "8809db21-9e83-4fb1-a42d-4786bc95f4c0", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive819295136", - "name": "LinkedSercive819295136", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "8702cfb1-0000-0800-0000-5fd8f1360000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive1527582843?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-65c6148a306b92459ca5cb777451af15-42f993ff0a108d4d-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "2fb781d7a66151e2d7c6b08906dbba1b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "443", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:22 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-ms-client-request-id": "2fb781d7a66151e2d7c6b08906dbba1b", - "x-ms-correlation-request-id": "1937d885-f81c-4a70-b21d-83f70804151a", - "x-ms-request-id": "da337df8-7792-4959-b382-d20394a9ade7", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1527582843", - "name": "LinkedSercive1527582843", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "870288ce-0000-0800-0000-5fd8f21f0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive600518366?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-79adc243ef531e48ac1fcd8a133e43fc-529ff6a4180dce4e-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "4006767a0041a4ee7a92d425fc420afe", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "441", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:22 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-ms-client-request-id": "4006767a0041a4ee7a92d425fc420afe", - "x-ms-correlation-request-id": "53b153e1-e445-4720-a0f6-afeda33e7bc2", - "x-ms-request-id": "1eb6afb6-c118-43ea-94b4-f5497aa8fc9c", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive600518366", - "name": "LinkedSercive600518366", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "8702e3d1-0000-0800-0000-5fd8f2370000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive1420436778?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-1ba640368a27724086ae557c5f9dde09-f87b058b46002f46-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "12b54014409fc0a7110aae7ff1c0eb60", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "443", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:23 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-ms-client-request-id": "12b54014409fc0a7110aae7ff1c0eb60", - "x-ms-correlation-request-id": "cd4c5c01-f0af-4d65-94b1-376a7e31fecd", - "x-ms-request-id": "c53b37a9-6a3a-4acf-8760-7908e1a86b67", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1420436778", - "name": "LinkedSercive1420436778", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "8702aff2-0000-0800-0000-5fd8f33e0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive1785865340?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-99a94cb056d88b45987cd1504e43f4d8-b79a17354a2cf648-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "667ddbdbdac6d7149212b4ced2bc5595", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "443", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:23 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-ms-client-request-id": "667ddbdbdac6d7149212b4ced2bc5595", - "x-ms-correlation-request-id": "eacf2acb-3466-4a80-bd49-cbeb1da61361", - "x-ms-request-id": "eacd2d23-9ca5-4755-a5b1-ba0b11314e98", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1785865340", - "name": "LinkedSercive1785865340", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "8702daf4-0000-0800-0000-5fd8f3500000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive672261494?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-9e4db3e0cd8ce1448a6b35f0c003e68a-1081b4df6ef0774d-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "c575b1bba725397ccf462f37516fb3b9", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "441", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:23 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-ms-client-request-id": "c575b1bba725397ccf462f37516fb3b9", - "x-ms-correlation-request-id": "56f4e0eb-96af-4a05-aab0-a09cdc442f2d", - "x-ms-request-id": "75bac465-b855-4da5-9b24-3fc083e8b712", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive672261494", - "name": "LinkedSercive672261494", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "88024060-0000-0800-0000-5fd8f6b40000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive901808331?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-e582f462de9ca94eae0330c446a0e1cb-a3768f1226d31b4f-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "214974a7a3c539382cde7f8d8bd9ee54", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "441", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:23 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-ms-client-request-id": "214974a7a3c539382cde7f8d8bd9ee54", - "x-ms-correlation-request-id": "28292bce-cd59-44bb-b8ff-4a730b8b0cc9", - "x-ms-request-id": "6c5106a9-f76c-4f16-ad17-fd3139ef5a42", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive901808331", - "name": "LinkedSercive901808331", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "88027e62-0000-0800-0000-5fd8f6c80000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive1709596576?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-84655e1fc8eee44baaacad6e72443d73-c2382db060b31344-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "3fc319b4254b333a5f439780aadd8523", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "443", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:23 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-ms-client-request-id": "3fc319b4254b333a5f439780aadd8523", - "x-ms-correlation-request-id": "c9ce3cd9-b8d3-416c-9475-ec86567c21b1", - "x-ms-request-id": "54356f97-668c-4522-af19-dd897e23a9f2", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1709596576", - "name": "LinkedSercive1709596576", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "88020d81-0000-0800-0000-5fd8f7d30000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive1095119785?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-0a10fe8ad6f18649848459ef4c6323d9-5630323aa534244e-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "5d27fa5f347218cf793c994728efaef6", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "443", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:23 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-ms-client-request-id": "5d27fa5f347218cf793c994728efaef6", - "x-ms-correlation-request-id": "5610fcc5-a220-4a7a-bfc3-3376c4b0ecf3", - "x-ms-request-id": "35a4ab38-e1d7-4320-8c75-4200dd711e13", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1095119785", - "name": "LinkedSercive1095119785", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "88024683-0000-0800-0000-5fd8f7e70000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive1810830919?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-4a30178ba3700d4086f6d36bf9139c6c-0016318f9d290a4c-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "3782db5773ab826e3915c2810cb78e4f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "443", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:24 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-ms-client-request-id": "3782db5773ab826e3915c2810cb78e4f", - "x-ms-correlation-request-id": "d93f6918-e8c0-4ce0-9a12-16c0dd0d89b1", - "x-ms-request-id": "8eca0b3b-0df4-408a-917e-f2e543d02b1f", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1810830919", - "name": "LinkedSercive1810830919", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "8802f1a5-0000-0800-0000-5fd8f8ff0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive881765773?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-b26d5403aef21447b2a30ffa47f10616-414aa5fa6dfc144f-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "902d5b5890b180e149abc50e8bf30b70", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "441", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:24 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-ms-client-request-id": "902d5b5890b180e149abc50e8bf30b70", - "x-ms-correlation-request-id": "f7da4474-0f49-484b-84ff-6f1a1345444b", - "x-ms-request-id": "e541517f-3710-46c0-807f-e4524b6d181c", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive881765773", - "name": "LinkedSercive881765773", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "8802b0a8-0000-0800-0000-5fd8f9150000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive80443021?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-593d9de4ef32154db68aeb8f1873198d-2f1c8d6e350eef4b-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "cf28a1954d5aeb788ca4245c724d0bc1", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "439", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:24 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-ms-client-request-id": "cf28a1954d5aeb788ca4245c724d0bc1", - "x-ms-correlation-request-id": "80ef7a5d-68b3-433c-b682-0422f564a997", - "x-ms-request-id": "36d64e8f-c995-4097-b112-4f437456b1b3", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive80443021", - "name": "LinkedSercive80443021", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "42000b5d-0000-0800-0000-5fda868f0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive1533253258?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-59e399e7d793dd48a964ce211eb462d3-dc56a29633c5d94d-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "ccee49ad1dc1c744f902ee00ae5ff646", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "443", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:24 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-ms-client-request-id": "ccee49ad1dc1c744f902ee00ae5ff646", - "x-ms-correlation-request-id": "3ea0f66c-673a-4464-b1a8-87ba8ef62f7e", - "x-ms-request-id": "f00e2416-93f9-425c-b5c4-3a34567fda6e", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1533253258", - "name": "LinkedSercive1533253258", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "4200e562-0000-0800-0000-5fda86a60000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive1609548572?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-8b46d3e4413fb14eb8d92e292770e16d-166d9dba00424f40-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "6aec520abe8f0bf4e342040d6c850dfb", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "443", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:24 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-ms-client-request-id": "6aec520abe8f0bf4e342040d6c850dfb", - "x-ms-correlation-request-id": "4369b19f-b49b-4487-8069-e65f3c8ff668", - "x-ms-request-id": "4f5ad2ae-3009-4f1b-88e0-aa15780810b3", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1609548572", - "name": "LinkedSercive1609548572", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "42005da4-0000-0800-0000-5fda87a90000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive88790287?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-74d2121289bae1428dabf1491855d098-93b12a4d5a26d54a-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "4161039f3f0478ae5d61d6585f773d2c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "439", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:24 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-ms-client-request-id": "4161039f3f0478ae5d61d6585f773d2c", - "x-ms-correlation-request-id": "7b8a3163-0ee8-4dd7-adb6-17ce625100a3", - "x-ms-request-id": "ab36bda6-a10a-470c-ae7a-60e5f0a7099a", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive88790287", - "name": "LinkedSercive88790287", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "420000a9-0000-0800-0000-5fda87bd0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive2135321969?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-7c9149807d56174a8c6980ba0ebaccfc-5a61beecaf02ce4b-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "2052deaea161ef3255e3e87f18365b73", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "443", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:25 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-ms-client-request-id": "2052deaea161ef3255e3e87f18365b73", - "x-ms-correlation-request-id": "f976e1d8-a82b-4dde-aab9-e44e85891f8f", - "x-ms-request-id": "3bab129e-48ab-4382-ae3a-e408fd7470ec", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive2135321969", - "name": "LinkedSercive2135321969", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "420087e7-0000-0800-0000-5fda88ab0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive1388175726?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-cd22474993acef47adc93a4bf10fe04e-4b25a0e8be6c904e-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "aa60f2f4b4fecb41a3740d2ee79cab6b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "443", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:25 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-ms-client-request-id": "aa60f2f4b4fecb41a3740d2ee79cab6b", - "x-ms-correlation-request-id": "79a992c5-1f46-4103-a078-e5def821eb4e", - "x-ms-request-id": "54d8dcf0-1c74-4a5f-86f6-c4738bce93a0", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1388175726", - "name": "LinkedSercive1388175726", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "4200cced-0000-0800-0000-5fda88c40000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive838395211?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-e6b8fcd4028f09459d63849966296137-6fd59f06b1ef3245-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "8e5fd804ed32fe9ad172ec21562f5f26", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "441", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:25 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-ms-client-request-id": "8e5fd804ed32fe9ad172ec21562f5f26", - "x-ms-correlation-request-id": "b7fe9652-a87f-44b6-b3c7-e19966465d36", - "x-ms-request-id": "eb30f38a-81ab-40af-9c05-6a9998984839", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive838395211", - "name": "LinkedSercive838395211", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "79002090-0000-0800-0000-5fdbaf550000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive1185988641?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-0d6cf7f0469f754187504189940a713b-9d99e0bc64d10943-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "6c6462069217f92d9c877cec930307b8", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "443", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:25 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-ms-client-request-id": "6c6462069217f92d9c877cec930307b8", - "x-ms-correlation-request-id": "4b4503f0-d18d-43d3-a225-ed57da52c52f", - "x-ms-request-id": "485760a1-ead6-4982-82e4-9ed219befbb7", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1185988641", - "name": "LinkedSercive1185988641", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "79007897-0000-0800-0000-5fdbaf6a0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive465005367?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-b7a5e1c7d5263e44a99e49970f39b54e-647270b44745674e-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "407a7c37ccd706415861d88cc71f7474", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "441", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:25 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-ms-client-request-id": "407a7c37ccd706415861d88cc71f7474", - "x-ms-correlation-request-id": "950973c0-7dc1-4133-ac69-fe52870c9459", - "x-ms-request-id": "0bc7aff1-cdcd-488d-9e5e-90dd9943155c", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive465005367", - "name": "LinkedSercive465005367", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "7900aaef-0000-0800-0000-5fdbb0610000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive887421172?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-166831da91505c458aa17fa15703aa9b-34a06830dd8f7044-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "8428e6153f377154aa65f1aa70ad6acd", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "441", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:26 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-ms-client-request-id": "8428e6153f377154aa65f1aa70ad6acd", - "x-ms-correlation-request-id": "25d4bb22-ac34-4b06-90ac-81365a2fdf26", - "x-ms-request-id": "a625ba48-830f-462a-acb2-8cf365404a36", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive887421172", - "name": "LinkedSercive887421172", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "7900c8f5-0000-0800-0000-5fdbb0720000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive515318195?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-186fdcb4587d8c42920f3da90f40d60f-bb7a74c15257b647-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "d9e9346a1fb5394e215d14b5baa1317c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "441", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:26 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-ms-client-request-id": "d9e9346a1fb5394e215d14b5baa1317c", - "x-ms-correlation-request-id": "500a5384-19be-475b-ae0f-a0c20c550b35", - "x-ms-request-id": "036efc45-04d8-424c-b322-10a5c11a18a5", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive515318195", - "name": "LinkedSercive515318195", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "7a004859-0000-0800-0000-5fdbb1830000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive1843363636?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-daf7bd810ed7be41a95373419e53fe52-8c210120a145ee46-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "acd7081382dbf88028089572db9695aa", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "443", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:26 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-ms-client-request-id": "acd7081382dbf88028089572db9695aa", - "x-ms-correlation-request-id": "e1e89022-4412-4883-a66e-f124412f1dcb", - "x-ms-request-id": "aa8d3151-1ee6-42af-9f47-2dbf1dab6c10", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1843363636", - "name": "LinkedSercive1843363636", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "7a007e62-0000-0800-0000-5fdbb1990000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive1690403739?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-54b0dc6b86500744be6409765f5ef0c1-e68509464aa0d54f-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "93210af79b36f5be98ee63da2a9eb709", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "443", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:26 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-ms-client-request-id": "93210af79b36f5be98ee63da2a9eb709", - "x-ms-correlation-request-id": "392d1c35-4d79-40cf-971d-16e7cb3cb058", - "x-ms-request-id": "41cb6f02-e295-46a4-876e-dab97ee08acf", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1690403739", - "name": "LinkedSercive1690403739", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "12000290-0000-0800-0000-5fdcc7900000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive42707264?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-a3f1024c4fea5f4fab3c7c2c8ed91d21-0a631677fe9f094f-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "68977433bed6e8f2b3f1b0ac8adc5d8a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "439", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:27 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-ms-client-request-id": "68977433bed6e8f2b3f1b0ac8adc5d8a", - "x-ms-correlation-request-id": "e951b9b0-02cb-480c-8b2e-2b27a538599e", - "x-ms-request-id": "4ea7b935-a34e-458c-acd2-519c285f25d9", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive42707264", - "name": "LinkedSercive42707264", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "12003192-0000-0800-0000-5fdcc7a10000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive1233836124?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-2d24187f16b18c4eaeced3972dd2dc4e-2d8edee460981140-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "afbe6ac79e7f77464ae214ec1ea6cd8a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "443", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:27 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-ms-client-request-id": "afbe6ac79e7f77464ae214ec1ea6cd8a", - "x-ms-correlation-request-id": "64d3658a-d0ff-4035-b687-ee5e11902fe1", - "x-ms-request-id": "543054f6-d584-4dfc-9f8d-e74872b5bb86", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1233836124", - "name": "LinkedSercive1233836124", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "120021ca-0000-0800-0000-5fdcc9790000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive139239537?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-7d55b7a803d9da40b08e588d573700e6-7c3f60b0caf5dd4b-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "663e8b502dff39d41838e044ea116bbb", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "441", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:27 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-ms-client-request-id": "663e8b502dff39d41838e044ea116bbb", - "x-ms-correlation-request-id": "c75491c1-117c-471b-8cab-5f12af8b196f", - "x-ms-request-id": "1c34da48-8782-4d02-8bbd-fd1ceff42477", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive139239537", - "name": "LinkedSercive139239537", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "1200a1cc-0000-0800-0000-5fdcc98f0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive610829349?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-3450373d13db944fbe21e648e16e4606-0853e335b6bc0542-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "c012d89007e0958a2d1f1ef4a905c90c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "441", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:27 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-ms-client-request-id": "c012d89007e0958a2d1f1ef4a905c90c", - "x-ms-correlation-request-id": "99c4bba4-1521-41c0-a4fc-12d55528e747", - "x-ms-request-id": "ec8ffa77-10c7-424f-a03a-92060564d63c", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive610829349", - "name": "LinkedSercive610829349", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "12005cfb-0000-0800-0000-5fdccb150000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive1405507449?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-da56b188b098784fa92d73d365452163-c6e729b2fb80b146-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "fe5c2623f79e9a8b95859746bd028d38", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "443", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:27 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-ms-client-request-id": "fe5c2623f79e9a8b95859746bd028d38", - "x-ms-correlation-request-id": "05932cba-562b-4794-a61d-70fea39da78c", - "x-ms-request-id": "be94b301-f514-494d-af00-fa9d0b121c59", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1405507449", - "name": "LinkedSercive1405507449", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "12006efd-0000-0800-0000-5fdccb2a0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive1937683374?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-ffdd4c27fd67c94ebad8567474bac5f5-61349eecb3da3842-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "455b59760d9449a901a838df0fe08f12", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "443", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:27 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-ms-client-request-id": "455b59760d9449a901a838df0fe08f12", - "x-ms-correlation-request-id": "9a260714-db83-406a-9550-ed7219bf4601", - "x-ms-request-id": "ae20f764-dea1-4e1e-ba4d-88684fcf83b9", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1937683374", - "name": "LinkedSercive1937683374", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "140039f8-0000-0800-0000-5fdcdd030000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive1879162900?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-4ff4aec6897fac44aeb98255376d0c00-790aa315e2e7d340-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "c321d36f6cb5991d4d772a5b6f43d72b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "443", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:28 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-ms-client-request-id": "c321d36f6cb5991d4d772a5b6f43d72b", - "x-ms-correlation-request-id": "ae490cbc-29d7-425b-8dd7-ee3626dc10b2", - "x-ms-request-id": "aa6593dd-3c32-4b85-9be3-d7c24f521828", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1879162900", - "name": "LinkedSercive1879162900", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "140070fa-0000-0800-0000-5fdcdd150000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive1048841025?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-7f4e2ef97dbd9149af325c2411921208-af66ddb51ee0664f-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "507de59283aa16787d12fdf5beac8ab5", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "443", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:28 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-ms-client-request-id": "507de59283aa16787d12fdf5beac8ab5", - "x-ms-correlation-request-id": "b4b629d5-ae25-41d5-8076-7669e78c1dd6", - "x-ms-request-id": "41402220-10ba-4d57-b318-f218a890dd27", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1048841025", - "name": "LinkedSercive1048841025", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "15004218-0000-0800-0000-5fdcde1e0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive1678343714?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-63c7a19cd89e5446b2ef6d2bc31e6f54-984882b7660ea645-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "ead785f5cae109823bc1f81ce24ed9bd", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "443", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:28 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-ms-client-request-id": "ead785f5cae109823bc1f81ce24ed9bd", - "x-ms-correlation-request-id": "2250c732-67cd-4959-ad3d-60d525a65e3c", - "x-ms-request-id": "aded9b4d-2908-499d-9904-23cded8241b1", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1678343714", - "name": "LinkedSercive1678343714", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "1500801a-0000-0800-0000-5fdcde340000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive1008491562?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-289e806f079a114dbec66bc28abd9550-8f1dcb29783c364b-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "294d0dd13f62eb685b0a46a26f27dba1", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "443", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:28 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-ms-client-request-id": "294d0dd13f62eb685b0a46a26f27dba1", - "x-ms-correlation-request-id": "2f2e2a4d-0b5e-4569-8a0c-4fd99729ebf2", - "x-ms-request-id": "b847f24e-d15a-414b-ac62-b1661a162729", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1008491562", - "name": "LinkedSercive1008491562", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "15001c3a-0000-0800-0000-5fdcdf3c0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive1390065082?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-d2cfdb9d2329c344a5f89fc5724f57eb-88f0489c8ca7ab47-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "ea6574eded6cc74a637314e88b5c332e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "443", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:28 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-ms-client-request-id": "ea6574eded6cc74a637314e88b5c332e", - "x-ms-correlation-request-id": "08f741a5-08d6-4431-8849-f091d1b7935f", - "x-ms-request-id": "6b763885-151d-4437-bcab-02740a1173d8", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1390065082", - "name": "LinkedSercive1390065082", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "1500ba3c-0000-0800-0000-5fdcdf500000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive506195076?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-331bf9dbe998ab4b831b38a7d5aabfdc-b2b6dabcd6b5f344-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "b1243f39615fb6531deb8fd683df9a14", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "441", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:28 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-ms-client-request-id": "b1243f39615fb6531deb8fd683df9a14", - "x-ms-correlation-request-id": "9c254406-5520-40c5-906b-937d21763417", - "x-ms-request-id": "30e829ff-003d-4566-aaa7-0536fe31f0aa", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive506195076", - "name": "LinkedSercive506195076", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "1500f2eb-0000-0800-0000-5fdce5770000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive914511652?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-a88bf851c3be5f4fa0b5c9fa02ca894a-3a4ac408f0eedb4b-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "6e2f57e6eee9e451c285c6ee2a7f60ff", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "441", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:29 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-ms-client-request-id": "6e2f57e6eee9e451c285c6ee2a7f60ff", - "x-ms-correlation-request-id": "6d503851-f232-43c4-9db7-9998108c6c01", - "x-ms-request-id": "db7ba476-22bb-45c6-ae37-4acabd9e709e", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive914511652", - "name": "LinkedSercive914511652", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "15000fee-0000-0800-0000-5fdce58c0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive1595131040?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-5de6526e644a72449ec80ce1a1f30e58-85e8534f2d37174f-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "306918d72a038c4121afcd805d744383", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "443", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:29 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-ms-client-request-id": "306918d72a038c4121afcd805d744383", - "x-ms-correlation-request-id": "4d7ecdf7-5627-4f6f-a851-5eecafffb928", - "x-ms-request-id": "42271741-52f6-4c6a-95dd-ede7462432c9", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1595131040", - "name": "LinkedSercive1595131040", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "1600ed0e-0000-0800-0000-5fdce6aa0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive1805011694?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-e446efc99393574da697b44b587ead35-e5660fdae2aef342-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "330100d9c52c4a45ee40eed99a648b9d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "443", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:29 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-ms-client-request-id": "330100d9c52c4a45ee40eed99a648b9d", - "x-ms-correlation-request-id": "b06993d2-32e0-4bee-9c51-3104138b8de7", - "x-ms-request-id": "e52b4eba-bda1-47e3-aa1f-8425ae434027", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1805011694", - "name": "LinkedSercive1805011694", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "1600c712-0000-0800-0000-5fdce6c40000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive675313907?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-8a6b7051d3ef4f47ade72c32e95500a0-05e21cdc319ed34a-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "6bff908b6a76bc1015a34d3921d0864e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "441", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:29 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-ms-client-request-id": "6bff908b6a76bc1015a34d3921d0864e", - "x-ms-correlation-request-id": "a5b82714-34aa-4293-8f53-eccf77e17c7c", - "x-ms-request-id": "c0713475-7f65-4667-a031-9aad4f96701d", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive675313907", - "name": "LinkedSercive675313907", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "1600b536-0000-0800-0000-5fdce8080000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive1464325023?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-93acc52ee25dec4a9ce37c91cd37a966-eb5f13a0d38dca4a-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "2a1542412c7d11d2d21e42c33b67f1bc", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "443", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:29 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-ms-client-request-id": "2a1542412c7d11d2d21e42c33b67f1bc", - "x-ms-correlation-request-id": "4c4baa65-e859-4062-aab2-0db6f06eaf8c", - "x-ms-request-id": "f9a7f395-c3ed-411f-b6d0-f8a19c5a2d68", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1464325023", - "name": "LinkedSercive1464325023", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "16002039-0000-0800-0000-5fdce81e0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive851402915?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-b7168e8461a9d145b53459a8fe4d98b2-eb30a2eec6910d47-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "cdf42f24d8756f0def451e89780b281d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "441", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:29 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-ms-client-request-id": "cdf42f24d8756f0def451e89780b281d", - "x-ms-correlation-request-id": "e4eb479e-de1c-475b-a8ce-f899b9665f2e", - "x-ms-request-id": "a6268558-6cf9-4689-a95c-c22204b851d7", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive851402915", - "name": "LinkedSercive851402915", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "94008e1c-0000-0800-0000-5fe0ce1f0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive60722854?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-c80d33b610811d4fb3fabe3e81aad862-078fe3eef8406b4a-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "5898a0b9604f5f20bded9857274d80ad", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "439", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:29 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-ms-client-request-id": "5898a0b9604f5f20bded9857274d80ad", - "x-ms-correlation-request-id": "2ba88037-0528-47f4-b87f-1f0d2e888764", - "x-ms-request-id": "31fe00a9-7514-4117-aa4a-78a7db0d251e", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive60722854", - "name": "LinkedSercive60722854", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "9400e728-0000-0800-0000-5fe0ce330000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive1490350231?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-fe5b15bbd40f5241bcb6980b02ed5b97-6affe31e5b3a9f40-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "f21590b2b8dc69d935a53b380d4899c7", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "443", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:30 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-ms-client-request-id": "f21590b2b8dc69d935a53b380d4899c7", - "x-ms-correlation-request-id": "a5d7e5c7-8e02-4c1b-a462-4846e8cbfc27", - "x-ms-request-id": "bc2cf9a0-8210-4594-9884-a566754de406", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1490350231", - "name": "LinkedSercive1490350231", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "95000f23-0000-0800-0000-5fe0d0020000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive1088839151?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-65be33837482f946abd9d95e25343807-81b3c469bc05e244-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "9b0924f598cfc36d0f9410883fb547a1", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "443", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:30 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-ms-client-request-id": "9b0924f598cfc36d0f9410883fb547a1", - "x-ms-correlation-request-id": "13ebce87-b93c-465b-8c9e-a402b178993e", - "x-ms-request-id": "4ce9f3f8-266d-4446-8e68-63723cfa41a0", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1088839151", - "name": "LinkedSercive1088839151", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "9500e92f-0000-0800-0000-5fe0d01a0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive686460023?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-b9393c7fe935ce40bab6a6185a263e0a-ab1dafef53875545-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "e7d770c536f50140c72f22a924e75174", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "441", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:30 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-ms-client-request-id": "e7d770c536f50140c72f22a924e75174", - "x-ms-correlation-request-id": "990d87be-3980-4a30-bc10-0483472a1900", - "x-ms-request-id": "3158c5fb-45ff-4a6e-baf8-7f2b418fca37", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive686460023", - "name": "LinkedSercive686460023", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "95008bfe-0000-0800-0000-5fe0d1820000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive756252000?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-15f1cffded9ecc42bd097bba80f65c0c-bc61549d23806241-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "0362d053e44419de2351e347a8512980", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "441", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:30 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-ms-client-request-id": "0362d053e44419de2351e347a8512980", - "x-ms-correlation-request-id": "6ef3ad02-2871-4d30-9535-cf098e8ef0d1", - "x-ms-request-id": "029c687e-d639-4788-916d-966295b800e4", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive756252000", - "name": "LinkedSercive756252000", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "9600e507-0000-0800-0000-5fe0d1930000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive78281727?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-bd938b7dc557d84baeb53fffb8aec988-c2abc7dca786414d-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "9d72995eb271bfd2e407d49f76c39f27", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "439", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:30 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-ms-client-request-id": "9d72995eb271bfd2e407d49f76c39f27", - "x-ms-correlation-request-id": "889f2f33-f319-4ce1-a110-09ee0b8c383d", - "x-ms-request-id": "213abd37-1f6c-4a10-812f-2b4524ca4799", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive78281727", - "name": "LinkedSercive78281727", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "b3001609-0000-0800-0000-5fe108ad0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive206290723?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-6c66511675f02d4c93e4ba4175c10a17-27ec86b14ce8b548-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "6e349b424452e05d91bec3a353f95876", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "441", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:30 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-ms-client-request-id": "6e349b424452e05d91bec3a353f95876", - "x-ms-correlation-request-id": "71edce71-138a-4926-933b-e59dd62a0ef7", - "x-ms-request-id": "dd8e977f-b781-4cfc-bf53-b4a9fd8fa7e3", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive206290723", - "name": "LinkedSercive206290723", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "b3007212-0000-0800-0000-5fe108c40000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive1749145264?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-303def21559e714685820941b42e42f4-658603e260aa1c42-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "8a4ba205b474a003fea21e3c103ea260", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "443", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:31 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-ms-client-request-id": "8a4ba205b474a003fea21e3c103ea260", - "x-ms-correlation-request-id": "2617ba84-af27-41df-ac49-0c0a29d71c09", - "x-ms-request-id": "bd7fe533-760d-419a-bde8-1e2503537ef2", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1749145264", - "name": "LinkedSercive1749145264", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "b3001ed2-0000-0800-0000-5fe10aa90000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive1498880387?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-35ac6c1a19fde647bb6ef113c1859711-233277d2c864cd4c-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "0d04bbb2bb1c192d3c920bb2ef2f6cea", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "443", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:31 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-ms-client-request-id": "0d04bbb2bb1c192d3c920bb2ef2f6cea", - "x-ms-correlation-request-id": "553785fe-5085-482c-9c68-275232209e59", - "x-ms-request-id": "6d0bc334-1ec5-44e3-ad17-8ba5ad85fc38", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1498880387", - "name": "LinkedSercive1498880387", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "b3001fda-0000-0800-0000-5fe10abf0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive1088740958?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-7f3e3e4891b8d44cb7fe733cfbbb6682-70af74c2c5a0ff4e-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "d39a5eae14788eb297936fb02521cf53", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "443", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:31 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-ms-client-request-id": "d39a5eae14788eb297936fb02521cf53", - "x-ms-correlation-request-id": "08ac5f3e-ef3d-4185-a3f6-a11de5107088", - "x-ms-request-id": "54edff4c-58b7-4f5f-b66e-02f76b4bd27a", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1088740958", - "name": "LinkedSercive1088740958", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "b4001383-0000-0800-0000-5fe10c5a0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive668009510?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-391544e6a4fa6c43bf7df13e602b49f6-8c0de95fc0b1a343-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "97f0631b4bf44a5975314ee2a850b1cf", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "441", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:31 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-ms-client-request-id": "97f0631b4bf44a5975314ee2a850b1cf", - "x-ms-correlation-request-id": "71adc5de-78c8-4434-8a52-ff6e88ee9ca7", - "x-ms-request-id": "0fd04688-4f67-4458-917e-f6f8e39e109d", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive668009510", - "name": "LinkedSercive668009510", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "b400e98c-0000-0800-0000-5fe10c700000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive2018805938?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-d812e451fa33ed40a3f71c741705921b-84f5d9d24f39e348-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "b28d3336cfa49ee7097675884b7df41b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "443", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:31 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-ms-client-request-id": "b28d3336cfa49ee7097675884b7df41b", - "x-ms-correlation-request-id": "3b41a31e-b3fb-4c1a-9569-9af6b8bd08c8", - "x-ms-request-id": "bdaef3dd-d8c3-46e4-aafd-a0e8914199f0", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive2018805938", - "name": "LinkedSercive2018805938", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "b700cedc-0000-0800-0000-5fe1145a0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive1933269774?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-9059b2026264ec49bfaa4bcbade11ce2-6d5d9724bbe81f47-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "8b97b8c3d53e63f604505e47c5d0e546", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "443", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:31 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-ms-client-request-id": "8b97b8c3d53e63f604505e47c5d0e546", - "x-ms-correlation-request-id": "25ca9af7-bfce-4eb9-99dc-efd78338893a", - "x-ms-request-id": "02269e14-864d-4f89-97c7-56c539fdc2ce", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1933269774", - "name": "LinkedSercive1933269774", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "b70099e7-0000-0800-0000-5fe114750000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive678807123?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-ef92ed2ea393c845b4f02adf218f39cc-f44342acf0c3784a-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "f179a0e21d934cae7b518d7ed5d1fef7", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "441", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:31 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-ms-client-request-id": "f179a0e21d934cae7b518d7ed5d1fef7", - "x-ms-correlation-request-id": "e2b33a0d-3f0e-4543-84ef-b5efffc73d60", - "x-ms-request-id": "878c0d41-8337-4347-832c-6cfebaed0889", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive678807123", - "name": "LinkedSercive678807123", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "b800ecb9-0000-0800-0000-5fe116a20000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive225295812?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-4d953f79e75ca446a52d750b6ab389ee-8d4afe9480287349-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "f01f333d26b961913d29ad5470a0d939", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "441", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:32 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-ms-client-request-id": "f01f333d26b961913d29ad5470a0d939", - "x-ms-correlation-request-id": "b575429b-729c-4aa9-b2cb-4a8357a62cbe", - "x-ms-request-id": "ca62a0f7-6dce-4e28-b49d-55c642cb5480", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive225295812", - "name": "LinkedSercive225295812", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "b8003ec5-0000-0800-0000-5fe116bf0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive45741747?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-b41c5c28cf0e9049ab948edb453d9c2e-ca8e2401fdb2ba40-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "aba62e900203a5870a4a0fec47788d33", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "439", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:32 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-ms-client-request-id": "aba62e900203a5870a4a0fec47788d33", - "x-ms-correlation-request-id": "734b974c-f2f2-4a8d-a8df-24c4b659c3df", - "x-ms-request-id": "cb86f598-8450-4929-8491-13bebf49b623", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive45741747", - "name": "LinkedSercive45741747", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "b9009056-0000-0800-0000-5fe118520000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive2138812515?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-f7054b9d1e18a241a18399f7a77e4937-6e45b5d2114ffd47-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "920a6651f5b1bb8d0f18b4697059dcdb", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "443", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:32 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-ms-client-request-id": "920a6651f5b1bb8d0f18b4697059dcdb", - "x-ms-correlation-request-id": "f364da98-39cb-48f0-b15d-0e9e0c0076fa", - "x-ms-request-id": "98b3679a-3033-446c-a283-58a6c34ae14a", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive2138812515", - "name": "LinkedSercive2138812515", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "b900695e-0000-0800-0000-5fe118690000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive417042405?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-f87b15e8244cb64e9a469016d847ec16-6cbc841528cfa84b-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "a7ed5478532a3af4ac79e56e16a419c5", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "441", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:32 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-ms-client-request-id": "a7ed5478532a3af4ac79e56e16a419c5", - "x-ms-correlation-request-id": "f72ff7ff-e184-48bb-9506-7113876a6c64", - "x-ms-request-id": "1dab0982-40d4-4acd-818f-cd5146409ea2", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive417042405", - "name": "LinkedSercive417042405", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "000012ec-0000-0800-0000-5fe2594d0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive55088323?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-3decb05a821ee84594bafaa7640b7f40-4ab00debf0fc3b4c-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "0903799c46969a88a1ea9cea4e1d35b0", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "439", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:32 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-ms-client-request-id": "0903799c46969a88a1ea9cea4e1d35b0", - "x-ms-correlation-request-id": "f1c1dce7-4602-416c-9a4b-c8b3f3c2b298", - "x-ms-request-id": "831509f2-4170-42ef-8626-e9114c656e82", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive55088323", - "name": "LinkedSercive55088323", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "000057ec-0000-0800-0000-5fe259660000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive2142776433?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-9e419b0440269d4b8f4baf1dc5a35712-9bfd126f59a0734b-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "f373336ee68afe0972cfe6370f1fa56a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "443", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:32 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-ms-client-request-id": "f373336ee68afe0972cfe6370f1fa56a", - "x-ms-correlation-request-id": "d7292955-49ea-4b21-b3f8-bdf6d8eb49e7", - "x-ms-request-id": "ed54d27b-8637-49df-af64-316008dedbdf", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive2142776433", - "name": "LinkedSercive2142776433", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "00001bf3-0000-0800-0000-5fe25b7b0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive1199639292?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-67264c6a574e2d49bb9d795a476adf7f-027150bbefac8948-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "f6cdeeffd2563145cb530640b709ec8e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "443", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:32 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-ms-client-request-id": "f6cdeeffd2563145cb530640b709ec8e", - "x-ms-correlation-request-id": "06fd7644-5c56-4e95-accc-90519cd5b288", - "x-ms-request-id": "7f67afa0-e897-4614-9922-f783d0779bd1", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1199639292", - "name": "LinkedSercive1199639292", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "000066f3-0000-0800-0000-5fe25b920000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive1401426573?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-5d3b8cfd13f5f440a4800c82bc8b1b7d-3714503a37a76443-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "e2ff35442530b63b700497c660508a81", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "443", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:33 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-ms-client-request-id": "e2ff35442530b63b700497c660508a81", - "x-ms-correlation-request-id": "6b786ad3-b594-45a6-9783-27294ec6ce5f", - "x-ms-request-id": "9377e645-b671-4390-9311-f169f3bb4ae8", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1401426573", - "name": "LinkedSercive1401426573", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "000001f9-0000-0800-0000-5fe25d410000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive1164265271?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-bc203120056b044986790e202383c4ca-5cb4fcd0b21ecd43-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "5feb31443e4f9c59ee412737e0c84768", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "443", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:33 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-ms-client-request-id": "5feb31443e4f9c59ee412737e0c84768", - "x-ms-correlation-request-id": "3505a026-c521-4a6a-be8d-7ce02eda8f1c", - "x-ms-request-id": "642c88f5-d9fb-46f0-8bb3-f328937462b5", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1164265271", - "name": "LinkedSercive1164265271", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "00003bf9-0000-0800-0000-5fe25d5a0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive1871992189?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-0f9b9bae83471f4690eab1ef928b4f33-d982ed3e5d3fe645-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "daf357e3c21fd939b31786513b7fd17b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "443", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:33 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-ms-client-request-id": "daf357e3c21fd939b31786513b7fd17b", - "x-ms-correlation-request-id": "d5af1025-532f-4c86-92d0-3d0da8046d32", - "x-ms-request-id": "3ae8a335-663e-44d5-80c4-72f3c118a22e", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1871992189", - "name": "LinkedSercive1871992189", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "0300fc76-0000-0800-0000-5fe389a40000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive1310468832?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-428c4cd248584a4089628c25b7631c0e-b5c9958ad9692e4b-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "85fb84c88c1e053edb63f4eefe04d5a7", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "443", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:33 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-ms-client-request-id": "85fb84c88c1e053edb63f4eefe04d5a7", - "x-ms-correlation-request-id": "0c3d068d-1600-4ca3-90bd-5e1a4a73a2fc", - "x-ms-request-id": "86d5dcbc-b11f-4819-b3b2-ce369fbff818", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1310468832", - "name": "LinkedSercive1310468832", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "03002777-0000-0800-0000-5fe389b90000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive216597668?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-d787a48b95ba8b4cbc86739a778a6902-a7ffbd7d0fd9cb41-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "09e32ebdb05c8262f711ac38b708606e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "441", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:33 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-ms-client-request-id": "09e32ebdb05c8262f711ac38b708606e", - "x-ms-correlation-request-id": "6d3f8138-2b61-4944-bfbd-a70403e31240", - "x-ms-request-id": "fbb30fd8-59ae-4c6c-98cf-3054a239101b", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive216597668", - "name": "LinkedSercive216597668", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "0300c17f-0000-0800-0000-5fe38ced0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive1718222757?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-39aeda4b98378f4fad86f8ca2cca3b13-4ea27d250009334c-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "5c6fac70c1cd564918edffbbce4bdbaf", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "443", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:33 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-ms-client-request-id": "5c6fac70c1cd564918edffbbce4bdbaf", - "x-ms-correlation-request-id": "6013bfaf-76f4-49b7-8a55-839f1130b3fd", - "x-ms-request-id": "f90b00af-1936-4701-aa90-b8e9cd80562e", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1718222757", - "name": "LinkedSercive1718222757", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "0300f77f-0000-0800-0000-5fe38d040000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive1245075161?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-aabb8ef278e8974db6ca6319469ff664-47a6afe85f56034d-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "0c94de41c79b171e21798e0de0064dd3", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "443", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:34 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-ms-client-request-id": "0c94de41c79b171e21798e0de0064dd3", - "x-ms-correlation-request-id": "c2fa9840-ceaa-4f86-856c-a3c04ea21293", - "x-ms-request-id": "993266d3-9225-4797-8452-c618ec8d2c4e", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1245075161", - "name": "LinkedSercive1245075161", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "0300d38a-0000-0800-0000-5fe3909d0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive88302679?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-0a990343d94e3442944e765321529bad-ee5226caaa1e2a47-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "517e85027994fcdae48cf16eb1a6b4ac", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "439", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:34 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-ms-client-request-id": "517e85027994fcdae48cf16eb1a6b4ac", - "x-ms-correlation-request-id": "fee89c0f-1b1b-42b0-b692-f47ef1d2da5a", - "x-ms-request-id": "e5a7a27e-4ace-45df-a911-98d3b8ba7227", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive88302679", - "name": "LinkedSercive88302679", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "0300158b-0000-0800-0000-5fe390b80000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive1495412509?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-3e7ee9fb66faba49842618e958f0a7af-9a433ed3a2ad5542-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "d8f7fd355474a8d28d573a54333c7611", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "443", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:34 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-ms-client-request-id": "d8f7fd355474a8d28d573a54333c7611", - "x-ms-correlation-request-id": "d5d5e351-ccba-4d54-9d6c-202f203fad09", - "x-ms-request-id": "c31f52a7-a435-4599-bff0-1706c43f7479", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1495412509", - "name": "LinkedSercive1495412509", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "03007894-0000-0800-0000-5fe393c50000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive2137046366?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-0febddbdb6a4034288feedc3a2d120af-1d6056e79577a548-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "48b92ca089ccc71a0497270fd6af667b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "443", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:34 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-ms-client-request-id": "48b92ca089ccc71a0497270fd6af667b", - "x-ms-correlation-request-id": "d480dbb1-6b99-42f2-a71c-064906d646d4", - "x-ms-request-id": "d1cf9a18-b49f-46d2-a9a0-64d1b9c94908", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive2137046366", - "name": "LinkedSercive2137046366", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "0300c894-0000-0800-0000-5fe393de0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive1857600842?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-fde139a832cc58469e6e34d1295f3ee5-d548dc5777c88043-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "e2d7e1c5750eae5eb2d5c33d3f86c8a8", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "443", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:34 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-ms-client-request-id": "e2d7e1c5750eae5eb2d5c33d3f86c8a8", - "x-ms-correlation-request-id": "abba222a-1f56-4d4c-8781-0b77b6d2d9b8", - "x-ms-request-id": "3edcbb96-3c3f-4be1-91f0-09ae2887d0d0", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1857600842", - "name": "LinkedSercive1857600842", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "0300de9c-0000-0800-0000-5fe396dd0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive469786997?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-0c5f237aef68274797d9ff707bf474b9-828e1f1a4c6b0d42-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "84cedf166bedabdfe330d4dc2cc3d2de", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "441", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:35 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-ms-client-request-id": "84cedf166bedabdfe330d4dc2cc3d2de", - "x-ms-correlation-request-id": "2115a24d-0de8-40fb-841e-aa00ba12fac4", - "x-ms-request-id": "1a717b50-8d82-4cc9-808a-5983fff53b42", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive469786997", - "name": "LinkedSercive469786997", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "0300299d-0000-0800-0000-5fe396fb0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive400436699?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-f4fc53021f56694d9f9f40de50971f10-d79a26939584ed4c-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "528ebef193652b03cd0a95f7c6dc877e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "441", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:39 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-ms-client-request-id": "528ebef193652b03cd0a95f7c6dc877e", - "x-ms-correlation-request-id": "b9e8a39d-eb40-4b3a-8a27-6ad612f66906", - "x-ms-request-id": "8d01e061-b8e1-4624-92f6-c15d9484c40e", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive400436699", - "name": "LinkedSercive400436699", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "03000aa6-0000-0800-0000-5fe399ec0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive495886452?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-dc0b912ee9039a46a4ab5d966e344460-b6afb4ef68f72549-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "f7f97fcfe1e0598e012bffdea08282ef", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "441", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:39 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-ms-client-request-id": "f7f97fcfe1e0598e012bffdea08282ef", - "x-ms-correlation-request-id": "3d4edcd1-3da0-4cd2-a1d9-4914fe14bac7", - "x-ms-request-id": "a5d510eb-fafb-4a02-a761-407d54ca39c8", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive495886452", - "name": "LinkedSercive495886452", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "03005da6-0000-0800-0000-5fe39a010000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive1101442691?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-5b021ba96aa65947be4032d46a56776e-fbb3bc1f95ae3747-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "804ce50376f78242dba3b7e2d5e8e506", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "443", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:39 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-ms-client-request-id": "804ce50376f78242dba3b7e2d5e8e506", - "x-ms-correlation-request-id": "209856e4-f5e1-4108-88e5-58547b1d3707", - "x-ms-request-id": "0cfb8a6e-a2a0-4aa3-8fbc-93c97b0b3911", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1101442691", - "name": "LinkedSercive1101442691", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "0300a7b1-0000-0800-0000-5fe39e040000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive1774188743?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-37707c32b2f8604a9fded36dc009203c-293f4439d7e1f544-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "ad0c55a8dbca0ffd3035503a94248a4a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "443", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:39 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-ms-client-request-id": "ad0c55a8dbca0ffd3035503a94248a4a", - "x-ms-correlation-request-id": "fa4d8804-0352-4d17-b5bc-e8b1984393f9", - "x-ms-request-id": "81dfa1ab-33f6-40da-915a-19dbabe58e9a", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1774188743", - "name": "LinkedSercive1774188743", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "0300ebb1-0000-0800-0000-5fe39e1c0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive2073787042?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-a94624425426a542bce98488c2c003f7-68c861fc3316454c-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "e0f4a688069058873c761b3d29ab8319", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "443", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:39 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-ms-client-request-id": "e0f4a688069058873c761b3d29ab8319", - "x-ms-correlation-request-id": "3d9f91ba-f6c8-4abd-bb2b-f9707a94e268", - "x-ms-request-id": "9fd90739-298e-4c88-a380-b521239130aa", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive2073787042", - "name": "LinkedSercive2073787042", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "030052c3-0000-0800-0000-5fe3a39f0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive660565946?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-cb528e0e8cc0f244b9b58b8c0fddf2ea-7d73342ec9efb741-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "4b35f945d4752724e83c50c12608eeb7", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "441", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:40 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-ms-client-request-id": "4b35f945d4752724e83c50c12608eeb7", - "x-ms-correlation-request-id": "1ca441cf-f7ca-45bd-be43-e9b0b043bd2b", - "x-ms-request-id": "f2374b66-ae68-4e20-8042-c3cc271da4e4", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive660565946", - "name": "LinkedSercive660565946", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "030095c3-0000-0800-0000-5fe3a3b50000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive80437647?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-429369924a76274184689d30f7f4a490-5acfc57fb1b0724f-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "2f5a6c1905f4a175ceb47053bfbfe585", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "439", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:40 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-ms-client-request-id": "2f5a6c1905f4a175ceb47053bfbfe585", - "x-ms-correlation-request-id": "73b227bf-f0f1-4695-8d7c-5f61044c73df", - "x-ms-request-id": "03f89986-ecb9-48d9-a89b-b2e6d6674c24", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive80437647", - "name": "LinkedSercive80437647", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "030060d1-0000-0800-0000-5fe3a8360000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive898252850?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-c7251e68c19e7d4d956d2e6391f027b3-f9f823950c65424e-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "9af437b13eeeb3d482ccf754b6c53234", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "441", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:40 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-ms-client-request-id": "9af437b13eeeb3d482ccf754b6c53234", - "x-ms-correlation-request-id": "3e3cc3e4-8b11-4f51-91c3-18e4b48fbb79", - "x-ms-request-id": "b3f88422-7c86-4115-9591-2a16270360d8", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive898252850", - "name": "LinkedSercive898252850", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "0300a7d1-0000-0800-0000-5fe3a8530000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive1073730247?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-8d8ada834bc3794088b520f79610c287-91cb9d193125cf40-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "bc23648854513f2483947dc164d06828", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "443", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:40 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-ms-client-request-id": "bc23648854513f2483947dc164d06828", - "x-ms-correlation-request-id": "b1c6dd2d-a019-4406-8c20-6f07800e4691", - "x-ms-request-id": "5b751ccf-43f0-4fb3-94e4-005eade55186", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1073730247", - "name": "LinkedSercive1073730247", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "0207786f-0000-0800-0000-6000bcaf0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive681108007?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-4c430df333d09c47b235e3485478f67d-4dca665b04ba8647-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "ee10cb565313dac898a6ac280d21eb08", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "441", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:40 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-ms-client-request-id": "ee10cb565313dac898a6ac280d21eb08", - "x-ms-correlation-request-id": "feced0a5-d2a5-4fc7-8e7d-faa7a3ba05dd", - "x-ms-request-id": "052b7964-ee2c-4a03-8a16-b45d9383b243", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive681108007", - "name": "LinkedSercive681108007", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "02073b83-0000-0800-0000-6000bcc90000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive1698779984?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-f2540d60ae52bc4d966c78209dd9d50f-b5a5950d8c49e94b-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "5bcb3c81289c5d3312b4175ac1134eb1", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "443", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:41 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-ms-client-request-id": "5bcb3c81289c5d3312b4175ac1134eb1", - "x-ms-correlation-request-id": "2671adb8-61ae-4b41-82a3-1747d67ef1bb", - "x-ms-request-id": "ab3364fc-0c37-4d69-879b-b004774e3082", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive1698779984", - "name": "LinkedSercive1698779984", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "c407c7d8-0000-0800-0000-6001c0d10000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive357215418?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-7bb07732fd99a0498daca7437f7c6649-855191129415ce4d-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "eafdcf6443b535209c4924aaa7fc3262", + "traceparent": "00-9b8a3558ff96ba4ab7a045e0f0f0a470-8bd8e5d9ea4aac45-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "3cfc57e18a2b667eab2708316e18dfa0", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "441", + "Content-Length": "4430", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:41 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-ms-client-request-id": "eafdcf6443b535209c4924aaa7fc3262", - "x-ms-correlation-request-id": "32926635-b28e-43fa-acc4-42f44cd0966d", - "x-ms-request-id": "a4c2da7b-b6a6-4b0c-9278-6cc3a0679803", - "X-Powered-By": "ASP.NET" + "Date": "Thu, 30 Sep 2021 06:18:23 GMT", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "3cfc57e18a2b667eab2708316e18dfa0", + "x-ms-request-id": "7ca151f5-bc8e-4698-8718-d76a604f468e" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive357215418", - "name": "LinkedSercive357215418", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" + "value": [ + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/linkedservices/testsynapseworkspace-WorkspaceDefaultStorage", + "name": "testsynapseworkspace-WorkspaceDefaultStorage", + "type": "Microsoft.Synapse/workspaces/linkedservices", + "etag": "4500110d-0000-0100-0000-5df21ebd0000", + "properties": { + "type": "AzureBlobFS", + "typeProperties": { + "url": "https://newzzyadlsgen2.dfs.core.windows.net" + } + } + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/linkedservices/testsynapseworkspace-WorkspaceDefaultSqlServer", + "name": "testsynapseworkspace-WorkspaceDefaultSqlServer", + "type": "Microsoft.Synapse/workspaces/linkedservices", + "etag": "4500400d-0000-0100-0000-5df21ec50000", + "properties": { + "type": "AzureSqlDW", + "typeProperties": { + "connectionString": "Sanitized" + }, + "parameters": { + "DBName": { + "type": "String" + } + } + } + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/linkedservices/LinkedSercive1266290659", + "name": "LinkedSercive1266290659", + "type": "Microsoft.Synapse/workspaces/linkedservices", + "etag": "0000e600-0000-0100-0000-600163ba0000", + "properties": { + "type": "AzureDataLakeStore", + "typeProperties": { + "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" + } + } + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/linkedservices/LinkedSercive468335119", + "name": "LinkedSercive468335119", + "type": "Microsoft.Synapse/workspaces/linkedservices", + "etag": "0000e900-0000-0100-0000-600163be0000", + "properties": { + "type": "AzureDataLakeStore", + "typeProperties": { + "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" + } + } + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/linkedservices/newzzyadlsgen2", + "name": "newzzyadlsgen2", + "type": "Microsoft.Synapse/workspaces/linkedservices", + "etag": "8b00d594-0000-0100-0000-600bd35f0000", + "properties": { + "annotations": [], + "type": "AzureBlobStorage", + "typeProperties": { + "connectionString": "Sanitized", + "encryptedCredential": "ew0KICAiVmVyc2lvbiI6ICIyMDE3LTExLTMwIiwNCiAgIlByb3RlY3Rpb25Nb2RlIjogIktleSIsDQogICJTZWNyZXRDb250ZW50VHlwZSI6ICJQbGFpbnRleHQiLA0KICAiQ3JlZGVudGlhbElkIjogIlRFU1RTWU5BUFNFV09SS1NQQUNFXzU0NzYzMmI3LWIwOTUtNDQ2MC1iOTRjLTFhMDgwNzQ4N2NiZSINCn0=" + } + } + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/linkedservices/dongwwagen", + "name": "dongwwagen", + "type": "Microsoft.Synapse/workspaces/linkedservices", + "etag": "8e00378e-0000-0100-0000-600c13ae0000", + "properties": { + "annotations": [], + "type": "AzureBlobFS", + "typeProperties": { + "url": "https://newzzyadlsgen2.dfs.core.windows.net", + "encryptedCredential": "ew0KICAiVmVyc2lvbiI6ICIyMDE3LTExLTMwIiwNCiAgIlByb3RlY3Rpb25Nb2RlIjogIktleSIsDQogICJTZWNyZXRDb250ZW50VHlwZSI6ICJQbGFpbnRleHQiLA0KICAiQ3JlZGVudGlhbElkIjogIlRFU1RTWU5BUFNFV09SS1NQQUNFX2UyY2Y0NWQyLTM2ZTAtNDhmNy05OTBkLWVhYTNkZWZkY2NjZCINCn0=" + } + } + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/linkedservices/Hdfs1", + "name": "Hdfs1", + "type": "Microsoft.Synapse/workspaces/linkedservices", + "etag": "0200e324-0000-0100-0000-60e5086e0000", + "properties": { + "annotations": [], + "type": "Hdfs", + "typeProperties": { + "url": "a", + "authenticationType": "Anonymous" + } + } + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/linkedservices/AzureKeyVault1", + "name": "AzureKeyVault1", + "type": "Microsoft.Synapse/workspaces/linkedservices", + "etag": "0a003769-0000-0100-0000-6131f51b0000", + "properties": { + "annotations": [], + "type": "AzureKeyVault", + "typeProperties": { + "baseUrl": "https://dongwwakeyce.vault.azure.net/" + } + } + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/linkedservices/LinkedService171", + "name": "LinkedService171", + "type": "Microsoft.Synapse/workspaces/linkedservices", + "etag": "2e001980-0000-0100-0000-615556af0000", + "properties": { + "type": "AzureDataLakeStore", + "typeProperties": { + "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" + } + } } - }, - "etag": "c40749ed-0000-0800-0000-6001c0ee0000" + ] } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive991201870?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/linkedservices/testsynapseworkspace-WorkspaceDefaultStorage?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-72b51bb3604ee04fab5c43513f66f47a-1aee3135323a3b47-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "284074a80c052d8c97b2dc5f3c6d1984", + "traceparent": "00-721e17b0c4900b4f9d4cf223db224981-51eff45e689f2e4f-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "0cde6641d296d6e0f0af19b78f4574c6", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "441", + "Content-Length": "516", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:41 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-ms-client-request-id": "284074a80c052d8c97b2dc5f3c6d1984", - "x-ms-correlation-request-id": "f6143ef1-2f5c-444d-8766-1605b4d46c78", - "x-ms-request-id": "6e194363-aef9-4ae3-81d1-f192ad5d1870", - "X-Powered-By": "ASP.NET" + "Date": "Thu, 30 Sep 2021 06:18:23 GMT", + "Server": "Kestrel Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "0cde6641d296d6e0f0af19b78f4574c6", + "x-ms-correlation-request-id": "e4f0028b-dffe-4be8-a763-a4fef0d3c6a5", + "x-ms-request-id": "7dc56325-8114-4c10-8b7c-68e9d928895f" }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive991201870", - "name": "LinkedSercive991201870", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "c80757ec-0000-0800-0000-6001c6440000" - } + "ResponseBody": [ + "{\n", + " \u0022id\u0022: \u0022/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/linkedservices/testsynapseworkspace-WorkspaceDefaultStorage\u0022,\n", + " \u0022name\u0022: \u0022testsynapseworkspace-WorkspaceDefaultStorage\u0022,\n", + " \u0022type\u0022: \u0022Microsoft.Synapse/workspaces/linkedservices\u0022,\n", + " \u0022properties\u0022: {\n", + " \u0022type\u0022: \u0022AzureBlobFS\u0022,\n", + " \u0022typeProperties\u0022: {\n", + " \u0022url\u0022: \u0022https://newzzyadlsgen2.dfs.core.windows.net\u0022\n", + " }\n", + " },\n", + " \u0022etag\u0022: \u00224500110d-0000-0100-0000-5df21ebd0000\u0022\n", + "}" + ] }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedSercive583860423?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/linkedservices/testsynapseworkspace-WorkspaceDefaultSqlServer?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-10257d3daf5276478e17c136613866bb-b1290daee4626c4b-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "3ec3fb5700243d521b95bf530489b515", + "traceparent": "00-54e5c022dc5cc14a876343d12ffae0ca-bf74e153f2882f41-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "7e2c9ef9002e854739a10ce332138a71", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "441", + "Content-Length": "491", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:41 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-ms-client-request-id": "3ec3fb5700243d521b95bf530489b515", - "x-ms-correlation-request-id": "fae2104b-94c1-4998-bbfb-9337300dce35", - "x-ms-request-id": "a476b9a5-a3fb-4eec-b273-bcf9f4f56ad2", - "X-Powered-By": "ASP.NET" + "Date": "Thu, 30 Sep 2021 06:18:23 GMT", + "Server": "Kestrel Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "7e2c9ef9002e854739a10ce332138a71", + "x-ms-correlation-request-id": "db2e7a83-022c-4f4b-9a32-0ed152bcf3f7", + "x-ms-request-id": "8ad8b3b4-af11-433c-89d5-8d210eb1b623" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedSercive583860423", - "name": "LinkedSercive583860423", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/linkedservices/testsynapseworkspace-WorkspaceDefaultSqlServer", + "name": "testsynapseworkspace-WorkspaceDefaultSqlServer", "type": "Microsoft.Synapse/workspaces/linkedservices", "properties": { - "type": "AzureDataLakeStore", + "type": "AzureSqlDW", "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" + "connectionString": "Sanitized" + }, + "parameters": { + "DBName": { + "type": "String" + } } }, - "etag": "c9079001-0000-0800-0000-6001c6600000" + "etag": "4500400d-0000-0100-0000-5df21ec50000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedService159?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/linkedservices/LinkedSercive1266290659?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-10bb2cb7155f3e469d2ad38bf1a47d79-c136dd7672b07645-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "4cb2b58226d257ab42cf530267c1f92e", + "traceparent": "00-9b27a200ee5b694ebf5945f943de331d-2956174a58307444-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "f6e0e7dcab010ef877254c7b70c7d665", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "429", + "Content-Length": "485", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:41 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-ms-client-request-id": "4cb2b58226d257ab42cf530267c1f92e", - "x-ms-correlation-request-id": "93e6018f-3d23-4275-8c3d-d3b162fd5a01", - "x-ms-request-id": "38ac08ff-1296-4eb8-becc-460e5fba67cb", - "X-Powered-By": "ASP.NET" + "Date": "Thu, 30 Sep 2021 06:18:23 GMT", + "Server": "Kestrel Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "f6e0e7dcab010ef877254c7b70c7d665", + "x-ms-correlation-request-id": "694725dd-5701-42c4-af2a-90c495df1498", + "x-ms-request-id": "e0abf62e-da77-47f3-9a78-c2cd21cae85b" }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedService159", - "name": "LinkedService159", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "30005eed-0000-0800-0000-6008739a0000" - } + "ResponseBody": [ + "{\n", + " \u0022id\u0022: \u0022/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/linkedservices/LinkedSercive1266290659\u0022,\n", + " \u0022name\u0022: \u0022LinkedSercive1266290659\u0022,\n", + " \u0022type\u0022: \u0022Microsoft.Synapse/workspaces/linkedservices\u0022,\n", + " \u0022properties\u0022: {\n", + " \u0022type\u0022: \u0022AzureDataLakeStore\u0022,\n", + " \u0022typeProperties\u0022: {\n", + " \u0022dataLakeStoreUri\u0022: \u0022adl://test.azuredatalakestore.net/\u0022\n", + " }\n", + " },\n", + " \u0022etag\u0022: \u00220000e600-0000-0100-0000-600163ba0000\u0022\n", + "}" + ] }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedService777?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/linkedservices/LinkedSercive468335119?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-2a761c9615f8864baa483debecd57a8c-fe106d261b071748-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "ac52a02ff338a83d22020c704c39290e", + "traceparent": "00-e7a254983b0db34fa60e1c8220edd805-1f5df4ef55d4ab40-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "cf3841b260ec41711e59d2f4c6fda3dd", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "429", + "Content-Length": "483", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:41 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-ms-client-request-id": "ac52a02ff338a83d22020c704c39290e", - "x-ms-correlation-request-id": "3aa48a07-6142-4453-916e-14e0cf66fa32", - "x-ms-request-id": "9568ac63-ec0a-44c6-95df-36d5d6f41250", - "X-Powered-By": "ASP.NET" + "Date": "Thu, 30 Sep 2021 06:18:23 GMT", + "Server": "Kestrel Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "cf3841b260ec41711e59d2f4c6fda3dd", + "x-ms-correlation-request-id": "6b5d5dd4-ff57-4465-b665-3df0312f510f", + "x-ms-request-id": "4ddbcf86-ed86-42cd-8733-79eb7e501a15" }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedService777", - "name": "LinkedService777", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "3100e105-0000-0800-0000-600873bd0000" - } + "ResponseBody": [ + "{\n", + " \u0022id\u0022: \u0022/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/linkedservices/LinkedSercive468335119\u0022,\n", + " \u0022name\u0022: \u0022LinkedSercive468335119\u0022,\n", + " \u0022type\u0022: \u0022Microsoft.Synapse/workspaces/linkedservices\u0022,\n", + " \u0022properties\u0022: {\n", + " \u0022type\u0022: \u0022AzureDataLakeStore\u0022,\n", + " \u0022typeProperties\u0022: {\n", + " \u0022dataLakeStoreUri\u0022: \u0022adl://test.azuredatalakestore.net/\u0022\n", + " }\n", + " },\n", + " \u0022etag\u0022: \u00220000e900-0000-0100-0000-600163be0000\u0022\n", + "}" + ] }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedService759?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/linkedservices/newzzyadlsgen2?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-64429902ff208949b946d55757035bcf-77fc26f10be81440-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "87dcc6fcccba31b14f6cfc54ad4fd65a", + "traceparent": "00-91ea5bdcac8b4a4db6c2c36061be695f-4ed8118c7863b842-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "a8daa8257e654dc4a51d0709b4cb1471", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "429", + "Content-Length": "669", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:41 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-ms-client-request-id": "87dcc6fcccba31b14f6cfc54ad4fd65a", - "x-ms-correlation-request-id": "40723a5e-7f2a-452f-92ef-e6d448c808b6", - "x-ms-request-id": "52330a80-1efa-450b-89dd-53efea1c81a5", - "X-Powered-By": "ASP.NET" + "Date": "Thu, 30 Sep 2021 06:18:23 GMT", + "Server": "Kestrel Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "a8daa8257e654dc4a51d0709b4cb1471", + "x-ms-correlation-request-id": "6ca1596f-d304-4a49-bdd9-1cc01edfb137", + "x-ms-request-id": "f782e4b1-ede6-448b-b812-fd4052adfcf7" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedService759", - "name": "LinkedService759", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/linkedservices/newzzyadlsgen2", + "name": "newzzyadlsgen2", "type": "Microsoft.Synapse/workspaces/linkedservices", "properties": { - "type": "AzureDataLakeStore", + "annotations": [], + "type": "AzureBlobStorage", "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" + "connectionString": "Sanitized", + "encryptedCredential": "ew0KICAiVmVyc2lvbiI6ICIyMDE3LTExLTMwIiwNCiAgIlByb3RlY3Rpb25Nb2RlIjogIktleSIsDQogICJTZWNyZXRDb250ZW50VHlwZSI6ICJQbGFpbnRleHQiLA0KICAiQ3JlZGVudGlhbElkIjogIlRFU1RTWU5BUFNFV09SS1NQQUNFXzU0NzYzMmI3LWIwOTUtNDQ2MC1iOTRjLTFhMDgwNzQ4N2NiZSINCn0=" } }, - "etag": "33007a8c-0000-0800-0000-600877360000" + "etag": "8b00d594-0000-0100-0000-600bd35f0000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedService112?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/linkedservices/dongwwagen?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-8b8aa4f38dcb514f81a960afa4a06218-4efe85be29a32d48-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "6323909c09368fdd770a2ad0193b0a09", + "traceparent": "00-c492f313e07a1f44991e7feb758753cc-646eb190ed0f354b-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "f030a6cbbada7b84769ed7a8d9044879", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "429", + "Content-Length": "740", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:42 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-ms-client-request-id": "6323909c09368fdd770a2ad0193b0a09", - "x-ms-correlation-request-id": "223cf716-6080-4494-9486-d6cd3b50c0a5", - "x-ms-request-id": "a6de8e90-df43-40ed-b716-b8427c3aa20a", - "X-Powered-By": "ASP.NET" + "Date": "Thu, 30 Sep 2021 06:18:23 GMT", + "Server": "Kestrel Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "f030a6cbbada7b84769ed7a8d9044879", + "x-ms-correlation-request-id": "a6eb4d3a-3153-45ef-b3b0-beb555de8821", + "x-ms-request-id": "8da21b74-e4f0-4d45-85ad-230dad7b9b5d" }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedService112", - "name": "LinkedService112", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "3300f59e-0000-0800-0000-600877520000" - } + "ResponseBody": [ + "{\n", + " \u0022id\u0022: \u0022/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/linkedservices/dongwwagen\u0022,\n", + " \u0022name\u0022: \u0022dongwwagen\u0022,\n", + " \u0022type\u0022: \u0022Microsoft.Synapse/workspaces/linkedservices\u0022,\n", + " \u0022properties\u0022: {\n", + " \u0022annotations\u0022: [],\n", + " \u0022type\u0022: \u0022AzureBlobFS\u0022,\n", + " \u0022typeProperties\u0022: {\n", + " \u0022url\u0022: \u0022https://newzzyadlsgen2.dfs.core.windows.net\u0022,\n", + " \u0022encryptedCredential\u0022: \u0022ew0KICAiVmVyc2lvbiI6ICIyMDE3LTExLTMwIiwNCiAgIlByb3RlY3Rpb25Nb2RlIjogIktleSIsDQogICJTZWNyZXRDb250ZW50VHlwZSI6ICJQbGFpbnRleHQiLA0KICAiQ3JlZGVudGlhbElkIjogIlRFU1RTWU5BUFNFV09SS1NQQUNFX2UyY2Y0NWQyLTM2ZTAtNDhmNy05OTBkLWVhYTNkZWZkY2NjZCINCn0=\u0022\n", + " }\n", + " },\n", + " \u0022etag\u0022: \u00228e00378e-0000-0100-0000-600c13ae0000\u0022\n", + "}" + ] }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedService991?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/linkedservices/Hdfs1?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-3251c8b5d0b57d4ca8469dbd93f00373-994c1b000384234a-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "a00645a572e46373ee205cccf7e9fbd2", + "traceparent": "00-0eb59f7dddf00348a092aed09895cbad-c63691df1270a84e-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "c8556e812eed34ff7deb29cf59678c53", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "429", + "Content-Length": "453", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:42 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-ms-client-request-id": "a00645a572e46373ee205cccf7e9fbd2", - "x-ms-correlation-request-id": "e931cd39-d983-41b4-a193-9597f4c0f76d", - "x-ms-request-id": "6532eed5-8148-4cdb-8237-43bc59fb1058", - "X-Powered-By": "ASP.NET" + "Date": "Thu, 30 Sep 2021 06:18:24 GMT", + "Server": "Kestrel Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "c8556e812eed34ff7deb29cf59678c53", + "x-ms-correlation-request-id": "fd5eea29-88e5-44e7-9c71-017abf3a0347", + "x-ms-request-id": "d66ad26d-5ba3-4555-8fd4-c21f1675e96d" }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedService991", - "name": "LinkedService991", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "5100c270-0000-0800-0000-6008a26e0000" - } + "ResponseBody": [ + "{\n", + " \u0022id\u0022: \u0022/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/linkedservices/Hdfs1\u0022,\n", + " \u0022name\u0022: \u0022Hdfs1\u0022,\n", + " \u0022type\u0022: \u0022Microsoft.Synapse/workspaces/linkedservices\u0022,\n", + " \u0022properties\u0022: {\n", + " \u0022annotations\u0022: [],\n", + " \u0022type\u0022: \u0022Hdfs\u0022,\n", + " \u0022typeProperties\u0022: {\n", + " \u0022url\u0022: \u0022a\u0022,\n", + " \u0022authenticationType\u0022: \u0022Anonymous\u0022\n", + " }\n", + " },\n", + " \u0022etag\u0022: \u00220200e324-0000-0100-0000-60e5086e0000\u0022\n", + "}" + ] }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedService583?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/linkedservices/AzureKeyVault1?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-ce3ab25322ed664386cd9a8bdafdb555-45dc034a1d3ff74c-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "bbd3b22bc516f3d7e94c10b0a2e11813", + "traceparent": "00-35c5eb2355e6eb40a2f85d400557260a-86985035a400c14f-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "20286044b3cd6b02235f32c6a61c73a1", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "429", + "Content-Length": "479", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:42 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-ms-client-request-id": "bbd3b22bc516f3d7e94c10b0a2e11813", - "x-ms-correlation-request-id": "8ef80c5d-bb24-4cf7-ad98-db89959a4f86", - "x-ms-request-id": "ad69fb41-6aab-4e47-a29c-c71112f33ad3", - "X-Powered-By": "ASP.NET" + "Date": "Thu, 30 Sep 2021 06:18:24 GMT", + "Server": "Kestrel Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "20286044b3cd6b02235f32c6a61c73a1", + "x-ms-correlation-request-id": "d311f06c-decb-4e79-a3b3-b976bdf9dd56", + "x-ms-request-id": "9889303e-d081-40f8-804d-267ed4d47795" }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedService583", - "name": "LinkedService583", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "51005884-0000-0800-0000-6008a28b0000" - } + "ResponseBody": [ + "{\n", + " \u0022id\u0022: \u0022/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/linkedservices/AzureKeyVault1\u0022,\n", + " \u0022name\u0022: \u0022AzureKeyVault1\u0022,\n", + " \u0022type\u0022: \u0022Microsoft.Synapse/workspaces/linkedservices\u0022,\n", + " \u0022properties\u0022: {\n", + " \u0022annotations\u0022: [],\n", + " \u0022type\u0022: \u0022AzureKeyVault\u0022,\n", + " \u0022typeProperties\u0022: {\n", + " \u0022baseUrl\u0022: \u0022https://dongwwakeyce.vault.azure.net/\u0022\n", + " }\n", + " },\n", + " \u0022etag\u0022: \u00220a003769-0000-0100-0000-6131f51b0000\u0022\n", + "}" + ] }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedService171?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/linkedservices/LinkedService171?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-25e05bb9aa4a01428d7c350c828dcc33-4373f24b56cc3243-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "67aef26136492a751cc07515ad10988d", + "traceparent": "00-7edb93e7021f2b4f8e1642c19f3fb4f0-bb39ef14e9443d4f-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "45878dd54c769c84a6fb73ef90b5220e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "429", + "Content-Length": "471", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:42 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-ms-client-request-id": "67aef26136492a751cc07515ad10988d", - "x-ms-correlation-request-id": "3a523cc3-68d7-4d00-ba0c-71a65899c120", - "x-ms-request-id": "b31d1cfa-e203-48ad-ae37-155be94f4d67", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedService171", - "name": "LinkedService171", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "2701ac70-0000-0800-0000-6009e3a20000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedService171?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:18:24 GMT", + "Server": "Kestrel Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "45878dd54c769c84a6fb73ef90b5220e", + "x-ms-correlation-request-id": "de068b38-9e86-4a93-b744-eef34dd750ca", + "x-ms-request-id": "0e1680ce-f315-4c7d-8225-30cb4d5ca4bb" + }, + "ResponseBody": [ + "{\n", + " \u0022id\u0022: \u0022/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/linkedservices/LinkedService171\u0022,\n", + " \u0022name\u0022: \u0022LinkedService171\u0022,\n", + " \u0022type\u0022: \u0022Microsoft.Synapse/workspaces/linkedservices\u0022,\n", + " \u0022properties\u0022: {\n", + " \u0022type\u0022: \u0022AzureDataLakeStore\u0022,\n", + " \u0022typeProperties\u0022: {\n", + " \u0022dataLakeStoreUri\u0022: \u0022adl://test.azuredatalakestore.net/\u0022\n", + " }\n", + " },\n", + " \u0022etag\u0022: \u00222e001980-0000-0100-0000-615556af0000\u0022\n", + "}" + ] + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/linkedservices/LinkedService171?api-version=2020-12-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-756c0f082180e84ca531554d432d43b3-fa05d6da975c7145-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "67a4570f4f68e0f36d13b79762c3c00d", + "traceparent": "00-8e9fbd4936e23546befa1c9ebac418d2-0fda94f5fc5a364c-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "7963841127dbceac6be9a58dfc388d60", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -8189,73 +704,33 @@ "ResponseHeaders": { "Access-Control-Allow-Headers": "Location", "Access-Control-Expose-Headers": "Location", - "Content-Length": "384", + "Content-Length": "377", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:42 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/a7902f46-f676-428b-8a43-39ff6c25f032?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:18:24 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/0f15e3ea-f42c-4efe-a11e-634c28258286?api-version=2020-12-01", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "67a4570f4f68e0f36d13b79762c3c00d", - "x-ms-request-id": "d4e0d094-2650-4377-9247-13e0443ae822" + "x-ms-client-request-id": "7963841127dbceac6be9a58dfc388d60", + "x-ms-request-id": "dce59e7b-f188-479c-9603-0d99b055f54a" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedServices/LinkedService171", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/linkedServices/LinkedService171", "recordId": 0, "state": "Deleting", "created": "0001-01-01T00:00:00", "changed": "0001-01-01T00:00:00", "type": "LinkedService", "name": "LinkedService171", - "operationId": "a7902f46-f676-428b-8a43-39ff6c25f032" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/a7902f46-f676-428b-8a43-39ff6c25f032?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "4aa182b4b13c12abffcefa367edec859", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:42 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/a7902f46-f676-428b-8a43-39ff6c25f032?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "4aa182b4b13c12abffcefa367edec859", - "x-ms-request-id": "678d08c1-e77d-429e-ace3-a76a20c58ba3" - }, - "ResponseBody": { - "status": "InProgress" + "operationId": "0f15e3ea-f42c-4efe-a11e-634c28258286" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/a7902f46-f676-428b-8a43-39ff6c25f032?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/0f15e3ea-f42c-4efe-a11e-634c28258286?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "630d68ff93a57b53cfaf2abeb09d8fab", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "22b5233dfab8adc5e0b8d98ca6f7a06d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -8271,28 +746,25 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:44 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/a7902f46-f676-428b-8a43-39ff6c25f032?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:18:24 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/0f15e3ea-f42c-4efe-a11e-634c28258286?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "630d68ff93a57b53cfaf2abeb09d8fab", - "x-ms-request-id": "35528f12-364f-4274-b0be-a34c625e942c" + "x-ms-client-request-id": "22b5233dfab8adc5e0b8d98ca6f7a06d", + "x-ms-request-id": "9a465b8a-a04f-4054-b782-d871e7ed946d" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/a7902f46-f676-428b-8a43-39ff6c25f032?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/0f15e3ea-f42c-4efe-a11e-634c28258286?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "dfe3decd762157d09e58056b9952765e", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "0777126e56bbca2da76b9d4faedb8f58", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -8308,28 +780,25 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:46 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/a7902f46-f676-428b-8a43-39ff6c25f032?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:18:25 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/0f15e3ea-f42c-4efe-a11e-634c28258286?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "dfe3decd762157d09e58056b9952765e", - "x-ms-request-id": "f03ad775-b135-4a7a-a3df-383a55c723f4" + "x-ms-client-request-id": "0777126e56bbca2da76b9d4faedb8f58", + "x-ms-request-id": "5f61baa2-976e-4223-b8dd-954e24b1093f" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/a7902f46-f676-428b-8a43-39ff6c25f032?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/0f15e3ea-f42c-4efe-a11e-634c28258286?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "e75645e1e2b420322f257b8d86ec6262", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "d850370e6a837ca8c34ceb276d5051e4", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -8345,45 +814,42 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 20:27:47 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/a7902f46-f676-428b-8a43-39ff6c25f032?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:18:27 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/0f15e3ea-f42c-4efe-a11e-634c28258286?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "e75645e1e2b420322f257b8d86ec6262", - "x-ms-request-id": "668fab8b-8f94-4643-87dc-79912f318e88" + "x-ms-client-request-id": "d850370e6a837ca8c34ceb276d5051e4", + "x-ms-request-id": "f07ef763-bf6f-4be9-8b2e-14160603b8bf" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/a7902f46-f676-428b-8a43-39ff6c25f032?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/0f15e3ea-f42c-4efe-a11e-634c28258286?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "9f694e3ee8fa883798b5c54d8ee7e27d", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "2c630becd49be6b2f5ea7b4c5d76fe05", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Content-Length": "0", - "Date": "Thu, 21 Jan 2021 20:27:48 GMT", + "Date": "Thu, 30 Sep 2021 06:18:28 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "9f694e3ee8fa883798b5c54d8ee7e27d", - "x-ms-request-id": "d96ba26f-5d2b-49a8-a500-a04e8a0a396c" + "x-ms-client-request-id": "2c630becd49be6b2f5ea7b4c5d76fe05", + "x-ms-request-id": "e59010f5-4b26-4aa8-8e93-59318f2d1f06" }, "ResponseBody": [] } ], "Variables": { - "AZURE_SYNAPSE_WORKSPACE_URL": "https://workspacechhamosynapse.dev.azuresynapse.net", + "AZURE_SYNAPSE_WORKSPACE_URL": "https://testsynapseworkspace.dev.azuresynapse.net", "RandomSeed": "661654724" } } \ No newline at end of file diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/LinkedServiceClientLiveTests/TestRenameLinkedService.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/LinkedServiceClientLiveTests/TestRenameLinkedService.json index d9982c734054..d2466e2deca6 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/LinkedServiceClientLiveTests/TestRenameLinkedService.json +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/LinkedServiceClientLiveTests/TestRenameLinkedService.json @@ -1,18 +1,15 @@ { "Entries": [ { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedService412?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/linkedservices/LinkedService412?api-version=2020-12-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "119", "Content-Type": "application/json", - "traceparent": "00-38721e7fe37eae40aa5e6a4d6324c7f3-08555ec0fcfa9d4a-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "traceparent": "00-ead7d2be9cbc7047a1d98ad0db5c0a3c-cffa0a1fbd5c6040-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "36bddabfc9c65f0654c393bea268d445", "x-ms-return-client-request-id": "true" }, @@ -34,37 +31,34 @@ "Location", "Retry-After" ], - "Content-Length": "459", + "Content-Length": "443", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:45:58 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/2da879e6-5db5-423e-b52b-c5bcd0fc6e3f?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:17:50 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/594bebf4-63a9-45f6-a75f-e2e577c054dc?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "36bddabfc9c65f0654c393bea268d445", - "x-ms-request-id": "881ba62d-6d60-4a33-9c49-e34ba3b76892" + "x-ms-request-id": "f998bf2c-05c2-4765-8c87-be3de2d38425" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedServices/LinkedService412", - "recordId": 990800, + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/linkedServices/LinkedService412", + "recordId": 2424246, "state": "Creating", - "created": "2021-01-21T17:45:59.2033333Z", - "changed": "2021-01-21T17:45:59.2033333Z", + "created": "2021-09-30T06:17:51.18Z", + "changed": "2021-09-30T06:17:51.18Z", "type": "LinkedService", "name": "LinkedService412", - "operationId": "2da879e6-5db5-423e-b52b-c5bcd0fc6e3f", - "artifactId": "6C4D7BFC-C9C6-468D-A997-A3ECB6EEAC91" + "operationId": "594bebf4-63a9-45f6-a75f-e2e577c054dc", + "artifactId": "015AFDC6-A2DA-4D9B-B92E-37149715BB53" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/2da879e6-5db5-423e-b52b-c5bcd0fc6e3f?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/594bebf4-63a9-45f6-a75f-e2e577c054dc?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a0d556080a260bf6a35187f35e6bbc7a", "x-ms-return-client-request-id": "true" }, @@ -81,27 +75,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:45:58 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/2da879e6-5db5-423e-b52b-c5bcd0fc6e3f?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:17:50 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/594bebf4-63a9-45f6-a75f-e2e577c054dc?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "a0d556080a260bf6a35187f35e6bbc7a", - "x-ms-request-id": "a8e61a17-9d2f-401d-9850-507157cfd0b6" + "x-ms-request-id": "2e288b18-6cad-49e0-8e5d-cd4ef57ea27a" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/2da879e6-5db5-423e-b52b-c5bcd0fc6e3f?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/594bebf4-63a9-45f6-a75f-e2e577c054dc?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d4107309568de29463adda5fa7ba2f74", "x-ms-return-client-request-id": "true" }, @@ -118,82 +109,28 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:46:00 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/2da879e6-5db5-423e-b52b-c5bcd0fc6e3f?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:17:51 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/594bebf4-63a9-45f6-a75f-e2e577c054dc?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "d4107309568de29463adda5fa7ba2f74", - "x-ms-request-id": "f229fa93-8434-4c3d-b463-24bffc966729" + "x-ms-request-id": "dba4be64-82da-4262-95a6-4d00325d73b5" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/2da879e6-5db5-423e-b52b-c5bcd0fc6e3f?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/594bebf4-63a9-45f6-a75f-e2e577c054dc?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "4bb69f8634927a1e0e1d1f2c5582b1ef", "x-ms-return-client-request-id": "true" }, "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "429", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:46:01 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-ms-client-request-id": "4bb69f8634927a1e0e1d1f2c5582b1ef", - "x-ms-correlation-request-id": "d0c707d0-d6ba-4a28-9525-0c908da8d72d", - "x-ms-request-id": "c9be5838-d55d-48b9-9657-2a5bed963337", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedService412", - "name": "LinkedService412", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "0d012a4d-0000-0800-0000-6009bdd90000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedService412/rename?api-version=2019-06-01-preview", - "RequestMethod": "POST", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Length": "30", - "Content-Type": "application/json", - "traceparent": "00-88d0609d8267d946896b0567efdb647a-30a2723f4c606241-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "cfbc42a66667c1b1f23c792f9663e922", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "newName": "LinkedService239" - }, "StatusCode": 202, "ResponseHeaders": { "Access-Control-Allow-Headers": [ @@ -204,38 +141,27 @@ "Location", "Retry-After" ], - "Content-Length": "459", + "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:46:01 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/ba87021c-8801-44a5-ad68-9d4d5960873f?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:17:52 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/594bebf4-63a9-45f6-a75f-e2e577c054dc?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "cfbc42a66667c1b1f23c792f9663e922", - "x-ms-request-id": "e255dbbd-6298-407d-95ad-86d09e9b5aec" + "x-ms-client-request-id": "4bb69f8634927a1e0e1d1f2c5582b1ef", + "x-ms-request-id": "3bf1aeb5-775a-4563-ac81-898efa6b27e4" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedServices/LinkedService412", - "recordId": 990800, - "state": "Renaming", - "created": "2021-01-21T17:45:59.2033333Z", - "changed": "2021-01-21T17:46:01.2933333Z", - "type": "LinkedService", - "name": "LinkedService412", - "operationId": "ba87021c-8801-44a5-ad68-9d4d5960873f", - "artifactId": "6C4D7BFC-C9C6-468D-A997-A3ECB6EEAC91" + "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/ba87021c-8801-44a5-ad68-9d4d5960873f?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/594bebf4-63a9-45f6-a75f-e2e577c054dc?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "7700b4eba473391f04899ff8a54a77b9", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "bc42a6ab67cfb166c1f23c792f9663e9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -251,31 +177,73 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:46:01 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/ba87021c-8801-44a5-ad68-9d4d5960873f?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:17:53 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/594bebf4-63a9-45f6-a75f-e2e577c054dc?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "7700b4eba473391f04899ff8a54a77b9", - "x-ms-request-id": "36748b41-0743-4fb2-87b3-ecdce0a69e69" + "x-ms-client-request-id": "bc42a6ab67cfb166c1f23c792f9663e9", + "x-ms-request-id": "e8bd9555-7d2e-4b44-a053-b4171e93eddc" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/ba87021c-8801-44a5-ad68-9d4d5960873f?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/594bebf4-63a9-45f6-a75f-e2e577c054dc?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "15420a353af3be3a6d6739a1f67a5965", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "be6c132270b5d5e85496c66f37688de1", "x-ms-return-client-request-id": "true" }, "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "422", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 30 Sep 2021 06:17:55 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-ms-client-request-id": "be6c132270b5d5e85496c66f37688de1", + "x-ms-correlation-request-id": "b452501c-c304-4602-8c49-f7363f858189", + "x-ms-request-id": "91b6b355-fa6d-4d00-955a-3fddecdfa56a", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/linkedservices/LinkedService412", + "name": "LinkedService412", + "type": "Microsoft.Synapse/workspaces/linkedservices", + "properties": { + "type": "AzureDataLakeStore", + "typeProperties": { + "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" + } + }, + "etag": "2e000780-0000-0100-0000-615556920000" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/linkedservices/LinkedService412/rename?api-version=2020-12-01", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "30", + "Content-Type": "application/json", + "traceparent": "00-89cf8549028a8949a1925c885a4099e8-3a703aa7c4a48644-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "7700b4eba473391f04899ff8a54a77b9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "newName": "LinkedService218" + }, "StatusCode": 202, "ResponseHeaders": { "Access-Control-Allow-Headers": [ @@ -286,29 +254,34 @@ "Location", "Retry-After" ], - "Content-Length": "23", + "Content-Length": "443", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:46:02 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/ba87021c-8801-44a5-ad68-9d4d5960873f?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:17:55 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a0c5f6e6-a305-4428-9c9f-909536424741?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "15420a353af3be3a6d6739a1f67a5965", - "x-ms-request-id": "ff4f6dd8-54fd-4bcc-b807-05e494c64cd9" + "x-ms-client-request-id": "7700b4eba473391f04899ff8a54a77b9", + "x-ms-request-id": "ee968bf8-af3c-4fdf-8d3c-e1c13f389ad5" }, "ResponseBody": { - "status": "InProgress" + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/linkedServices/LinkedService412", + "recordId": 2424246, + "state": "Renaming", + "created": "2021-09-30T06:17:51.18Z", + "changed": "2021-09-30T06:17:54.94Z", + "type": "LinkedService", + "name": "LinkedService412", + "operationId": "a0c5f6e6-a305-4428-9c9f-909536424741", + "artifactId": "015AFDC6-A2DA-4D9B-B92E-37149715BB53" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/ba87021c-8801-44a5-ad68-9d4d5960873f?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a0c5f6e6-a305-4428-9c9f-909536424741?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e2437d5b71636eaf4d85b0e648dcaf4b", "x-ms-return-client-request-id": "true" }, @@ -325,27 +298,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:46:04 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/ba87021c-8801-44a5-ad68-9d4d5960873f?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:17:55 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a0c5f6e6-a305-4428-9c9f-909536424741?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "e2437d5b71636eaf4d85b0e648dcaf4b", - "x-ms-request-id": "5dccaed1-67e6-4886-9384-eb29c1b66b1c" + "x-ms-request-id": "441c3f34-9b45-4656-81a6-338e3a664bef" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/ba87021c-8801-44a5-ad68-9d4d5960873f?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a0c5f6e6-a305-4428-9c9f-909536424741?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5e01b64ecb4bb00879420a0b6b7d428a", "x-ms-return-client-request-id": "true" }, @@ -362,27 +332,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:46:05 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/ba87021c-8801-44a5-ad68-9d4d5960873f?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:17:56 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a0c5f6e6-a305-4428-9c9f-909536424741?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "5e01b64ecb4bb00879420a0b6b7d428a", - "x-ms-request-id": "fbd4d996-9516-4a6d-bf09-89f8d1cef478" + "x-ms-request-id": "dedd99e4-dbad-4182-acb0-aa56ee46354b" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/ba87021c-8801-44a5-ad68-9d4d5960873f?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a0c5f6e6-a305-4428-9c9f-909536424741?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "279d3a309506c3565bd3c86d89537590", "x-ms-return-client-request-id": "true" }, @@ -399,27 +366,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:46:06 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/ba87021c-8801-44a5-ad68-9d4d5960873f?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:17:57 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a0c5f6e6-a305-4428-9c9f-909536424741?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "279d3a309506c3565bd3c86d89537590", - "x-ms-request-id": "6cc68748-6c21-4674-8bfd-3f737c1c9869" + "x-ms-request-id": "03763d30-53ef-4edb-a772-7ab309ea5a1d" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/ba87021c-8801-44a5-ad68-9d4d5960873f?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a0c5f6e6-a305-4428-9c9f-909536424741?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "4053edb8fa7890197493682167a303d0", "x-ms-return-client-request-id": "true" }, @@ -436,27 +400,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:46:07 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/ba87021c-8801-44a5-ad68-9d4d5960873f?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:17:59 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a0c5f6e6-a305-4428-9c9f-909536424741?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "4053edb8fa7890197493682167a303d0", - "x-ms-request-id": "1929b3ca-abf5-462c-9136-be79e62c2d1c" + "x-ms-request-id": "1e086fb6-9776-40a9-bb9d-0e81482fcda1" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/ba87021c-8801-44a5-ad68-9d4d5960873f?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a0c5f6e6-a305-4428-9c9f-909536424741?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "0eb62643873fb944603e0378029a2626", "x-ms-return-client-request-id": "true" }, @@ -473,27 +434,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:46:08 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/ba87021c-8801-44a5-ad68-9d4d5960873f?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:18:00 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a0c5f6e6-a305-4428-9c9f-909536424741?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "0eb62643873fb944603e0378029a2626", - "x-ms-request-id": "ec755758-5fd6-4a63-b4ed-b25bc0a54897" + "x-ms-request-id": "33756c0d-9ea1-4501-a125-86be1f672be0" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/ba87021c-8801-44a5-ad68-9d4d5960873f?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a0c5f6e6-a305-4428-9c9f-909536424741?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7d5279cc01293512200db2732c345cb7", "x-ms-return-client-request-id": "true" }, @@ -510,27 +468,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:46:09 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/ba87021c-8801-44a5-ad68-9d4d5960873f?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:18:01 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a0c5f6e6-a305-4428-9c9f-909536424741?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "7d5279cc01293512200db2732c345cb7", - "x-ms-request-id": "87a9f103-c377-4098-af5d-47e8d79761c0" + "x-ms-request-id": "db288dc9-fc65-4b6c-873d-f6f4eb462536" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/ba87021c-8801-44a5-ad68-9d4d5960873f?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a0c5f6e6-a305-4428-9c9f-909536424741?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "632af7cf679d3150a99ae03af7a18dda", "x-ms-return-client-request-id": "true" }, @@ -547,27 +502,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:46:10 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/ba87021c-8801-44a5-ad68-9d4d5960873f?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:18:02 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a0c5f6e6-a305-4428-9c9f-909536424741?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "632af7cf679d3150a99ae03af7a18dda", - "x-ms-request-id": "8db6320f-afe7-4678-aad5-be870dc8a463" + "x-ms-request-id": "f7688971-4a74-41e5-bb1d-88b47ff8e06b" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/ba87021c-8801-44a5-ad68-9d4d5960873f?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a0c5f6e6-a305-4428-9c9f-909536424741?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ed55426c865141a61480ed32d4d08c2b", "x-ms-return-client-request-id": "true" }, @@ -584,27 +536,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:46:11 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/ba87021c-8801-44a5-ad68-9d4d5960873f?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:18:03 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a0c5f6e6-a305-4428-9c9f-909536424741?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "ed55426c865141a61480ed32d4d08c2b", - "x-ms-request-id": "0cabb7d0-e73b-4f7e-a68c-26a0d2a674ef" + "x-ms-request-id": "5f4af6bc-3122-4c87-aaa5-9843841a1607" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/ba87021c-8801-44a5-ad68-9d4d5960873f?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a0c5f6e6-a305-4428-9c9f-909536424741?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "0ba84ce1c36f64882820d48f21d73e7f", "x-ms-return-client-request-id": "true" }, @@ -621,27 +570,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:46:12 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/ba87021c-8801-44a5-ad68-9d4d5960873f?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:18:04 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a0c5f6e6-a305-4428-9c9f-909536424741?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "0ba84ce1c36f64882820d48f21d73e7f", - "x-ms-request-id": "1498a01f-143b-4988-a39b-7ea4b547c2da" + "x-ms-request-id": "db2f11cc-52ec-4982-b5a6-562fb84eba0f" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/ba87021c-8801-44a5-ad68-9d4d5960873f?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a0c5f6e6-a305-4428-9c9f-909536424741?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ea07d8806edf496550e94f1c7a1e5dd8", "x-ms-return-client-request-id": "true" }, @@ -658,27 +604,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:46:14 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/ba87021c-8801-44a5-ad68-9d4d5960873f?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:18:05 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a0c5f6e6-a305-4428-9c9f-909536424741?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "ea07d8806edf496550e94f1c7a1e5dd8", - "x-ms-request-id": "2439b94e-3324-4f40-ad55-17e0606ac913" + "x-ms-request-id": "a28eeb0c-e13a-40c5-a88d-aa463453f115" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/ba87021c-8801-44a5-ad68-9d4d5960873f?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a0c5f6e6-a305-4428-9c9f-909536424741?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ab58b40e81f8a96ab9f1c430b2171f3c", "x-ms-return-client-request-id": "true" }, @@ -695,175 +638,119 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:46:15 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/ba87021c-8801-44a5-ad68-9d4d5960873f?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:18:06 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a0c5f6e6-a305-4428-9c9f-909536424741?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "ab58b40e81f8a96ab9f1c430b2171f3c", - "x-ms-request-id": "e96bae19-6440-4d8c-8449-229944d0a3c7" + "x-ms-request-id": "0f919463-ac95-434b-ace1-9d7d7a3a69e6" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/ba87021c-8801-44a5-ad68-9d4d5960873f?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a0c5f6e6-a305-4428-9c9f-909536424741?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "fbb26e42a1c9724be65fba86736ce90a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, - "StatusCode": 202, + "StatusCode": 200, "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:46:16 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/ba87021c-8801-44a5-ad68-9d4d5960873f?api-version=2019-06-01-preview", - "Retry-After": "10", + "Content-Length": "0", + "Date": "Thu, 30 Sep 2021 06:18:07 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "fbb26e42a1c9724be65fba86736ce90a", - "x-ms-request-id": "e0f10131-48a1-4c54-bea9-fbe5df4456f9" + "x-ms-request-id": "7861f00f-dbfd-41e5-9295-a4406f963b88" }, - "ResponseBody": { - "status": "InProgress" - } + "ResponseBody": [] }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/ba87021c-8801-44a5-ad68-9d4d5960873f?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/linkedservices/LinkedService218?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "traceparent": "00-aee454e349d9ad469f2fad02d7ce5aab-54e9ceb3e631b946-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6c81fbc3937ffe866e5e30eeaa359639", "x-ms-return-client-request-id": "true" }, "RequestBody": null, - "StatusCode": 202, + "StatusCode": 200, "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", + "Content-Length": "471", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:46:17 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/ba87021c-8801-44a5-ad68-9d4d5960873f?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", + "Date": "Thu, 30 Sep 2021 06:18:07 GMT", + "Server": "Kestrel Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "6c81fbc3937ffe866e5e30eeaa359639", - "x-ms-request-id": "c2c7d857-4c72-4652-992f-bfe033b8421d" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/ba87021c-8801-44a5-ad68-9d4d5960873f?api-version=2019-06-01-preview", - "RequestMethod": "GET", + "x-ms-correlation-request-id": "f6451b7f-1a9c-42ff-afd9-0b6cee892f88", + "x-ms-request-id": "e3b2647d-3749-401a-a51e-7e9da61f1467" + }, + "ResponseBody": [ + "{\n", + " \u0022id\u0022: \u0022/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/linkedservices/LinkedService218\u0022,\n", + " \u0022name\u0022: \u0022LinkedService218\u0022,\n", + " \u0022type\u0022: \u0022Microsoft.Synapse/workspaces/linkedservices\u0022,\n", + " \u0022properties\u0022: {\n", + " \u0022type\u0022: \u0022AzureDataLakeStore\u0022,\n", + " \u0022typeProperties\u0022: {\n", + " \u0022dataLakeStoreUri\u0022: \u0022adl://test.azuredatalakestore.net/\u0022\n", + " }\n", + " },\n", + " \u0022etag\u0022: \u00222e000f80-0000-0100-0000-6155569d0000\u0022\n", + "}" + ] + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/linkedservices/LinkedService218?api-version=2020-12-01", + "RequestMethod": "DELETE", "RequestHeaders": { + "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "traceparent": "00-66f40d421f77b44887ff97a7406f1dc8-9906e85b0e01df41-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "0cda13ca616b6c0f69e5c599c7e4354d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", + "Access-Control-Allow-Headers": "Location", + "Access-Control-Expose-Headers": "Location", + "Content-Length": "377", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:46:18 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/ba87021c-8801-44a5-ad68-9d4d5960873f?api-version=2019-06-01-preview", - "Retry-After": "10", + "Date": "Thu, 30 Sep 2021 06:18:07 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/5ee460f4-cd61-4845-8dc0-e4fde7d87997?api-version=2020-12-01", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "0cda13ca616b6c0f69e5c599c7e4354d", - "x-ms-request-id": "4a2a5000-dc85-4c56-a184-0fc1132624f9" + "x-ms-request-id": "cddc5aec-8291-4bea-801a-44b915b7ec5a" }, "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/ba87021c-8801-44a5-ad68-9d4d5960873f?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "b66cb907b296aebce7b48d6b715cc8b0", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:46:19 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/ba87021c-8801-44a5-ad68-9d4d5960873f?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "b66cb907b296aebce7b48d6b715cc8b0", - "x-ms-request-id": "f7722b14-aea1-4392-9c09-88ba903cf5ea" - }, - "ResponseBody": { - "status": "InProgress" + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/linkedServices/LinkedService218", + "recordId": 0, + "state": "Deleting", + "created": "0001-01-01T00:00:00", + "changed": "0001-01-01T00:00:00", + "type": "LinkedService", + "name": "LinkedService218", + "operationId": "5ee460f4-cd61-4845-8dc0-e4fde7d87997" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/ba87021c-8801-44a5-ad68-9d4d5960873f?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/5ee460f4-cd61-4845-8dc0-e4fde7d87997?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5fbc81c8dd91629eeb140399ceed368a", "x-ms-return-client-request-id": "true" }, @@ -880,27 +767,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:46:20 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/ba87021c-8801-44a5-ad68-9d4d5960873f?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:18:07 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/5ee460f4-cd61-4845-8dc0-e4fde7d87997?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "5fbc81c8dd91629eeb140399ceed368a", - "x-ms-request-id": "5d5df372-1df8-4483-b360-c7f4315fad09" + "x-ms-request-id": "d4d26c5a-0524-4bbc-89f5-fc23721fb7e8" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/ba87021c-8801-44a5-ad68-9d4d5960873f?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/5ee460f4-cd61-4845-8dc0-e4fde7d87997?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f0e7e328dfc817a2562b25b7d3a4fa0c", "x-ms-return-client-request-id": "true" }, @@ -917,27 +801,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:46:21 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/ba87021c-8801-44a5-ad68-9d4d5960873f?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:18:09 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/5ee460f4-cd61-4845-8dc0-e4fde7d87997?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "f0e7e328dfc817a2562b25b7d3a4fa0c", - "x-ms-request-id": "5258edb8-88cd-4407-9be3-ef49cd7ad4c4" + "x-ms-request-id": "f87d14e7-d418-4c0e-b5d6-24a1fa79ab17" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/ba87021c-8801-44a5-ad68-9d4d5960873f?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/5ee460f4-cd61-4845-8dc0-e4fde7d87997?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "45d0141dd5272abc1a0aca81ae23e0f9", "x-ms-return-client-request-id": "true" }, @@ -954,27 +835,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:46:22 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/ba87021c-8801-44a5-ad68-9d4d5960873f?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:18:10 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/5ee460f4-cd61-4845-8dc0-e4fde7d87997?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "45d0141dd5272abc1a0aca81ae23e0f9", - "x-ms-request-id": "a14765ad-acc3-4501-8c6e-a0c745719f27" + "x-ms-request-id": "f27326a2-ae97-4efa-b423-404a2b4296dc" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/ba87021c-8801-44a5-ad68-9d4d5960873f?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/5ee460f4-cd61-4845-8dc0-e4fde7d87997?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "8e42037dd775e8e8dfa40965b8e78e47", "x-ms-return-client-request-id": "true" }, @@ -991,27 +869,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:46:24 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/ba87021c-8801-44a5-ad68-9d4d5960873f?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:18:11 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/5ee460f4-cd61-4845-8dc0-e4fde7d87997?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "8e42037dd775e8e8dfa40965b8e78e47", - "x-ms-request-id": "9bc21ea0-a4c9-4474-8752-02f880c06f88" + "x-ms-request-id": "1907c62b-81fb-4466-9875-2616af5efaf2" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/ba87021c-8801-44a5-ad68-9d4d5960873f?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/5ee460f4-cd61-4845-8dc0-e4fde7d87997?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ba7cf719f01d526226bdd5be14206833", "x-ms-return-client-request-id": "true" }, @@ -1028,340 +903,42 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:46:25 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/ba87021c-8801-44a5-ad68-9d4d5960873f?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:18:12 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/5ee460f4-cd61-4845-8dc0-e4fde7d87997?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "ba7cf719f01d526226bdd5be14206833", - "x-ms-request-id": "6c48045d-6896-4704-83b6-fc9e734d316a" + "x-ms-request-id": "98664f32-8fd9-4d2d-9572-faea8be9aa36" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/ba87021c-8801-44a5-ad68-9d4d5960873f?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/5ee460f4-cd61-4845-8dc0-e4fde7d87997?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "d0392b4b6c6145972be76683cc567133", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:46:26 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/ba87021c-8801-44a5-ad68-9d4d5960873f?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d0392b4b6c6145972be76683cc567133", - "x-ms-request-id": "bfcbcd5c-c569-4811-891d-5b84560c9815" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/ba87021c-8801-44a5-ad68-9d4d5960873f?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "b767837b26a68cdca0f067b8022ad3be", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Length": "0", - "Date": "Thu, 21 Jan 2021 17:46:27 GMT", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "b767837b26a68cdca0f067b8022ad3be", - "x-ms-request-id": "7cc07adb-0079-4c70-b2ca-8f899e4eb3ad" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedService239?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-7ce48620b2cce746882f1d42236c1759-7fc6148ed15dda49-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "8c1ad53bbeadade660368e3689df85d0", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "429", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:46:27 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-ms-client-request-id": "8c1ad53bbeadade660368e3689df85d0", - "x-ms-correlation-request-id": "b2e50c4b-a5ae-433c-9f83-6cd97e4f5d57", - "x-ms-request-id": "d22a28ea-7a82-4fa4-8abe-679e7657503c", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedService239", - "name": "LinkedService239", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "0d01305d-0000-0800-0000-6009bdf00000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedService239?api-version=2019-06-01-preview", - "RequestMethod": "DELETE", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-8a2166e6aa455c4c8ba18568837e2b22-924d6f011554b744-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "9143a24bb1b8248c4fac2f7005de4301", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": "Location", - "Access-Control-Expose-Headers": "Location", - "Content-Length": "384", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:46:27 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/6818acbe-28a3-473a-b81b-ead7148b0017?api-version=2019-06-01-preview", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "9143a24bb1b8248c4fac2f7005de4301", - "x-ms-request-id": "705d8c66-c4a0-452a-8c2d-b4b8f4f0426c" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedServices/LinkedService239", - "recordId": 0, - "state": "Deleting", - "created": "0001-01-01T00:00:00", - "changed": "0001-01-01T00:00:00", - "type": "LinkedService", - "name": "LinkedService239", - "operationId": "6818acbe-28a3-473a-b81b-ead7148b0017" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/6818acbe-28a3-473a-b81b-ead7148b0017?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "606c976a42e6890549f63d018e75a781", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:46:27 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/6818acbe-28a3-473a-b81b-ead7148b0017?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "606c976a42e6890549f63d018e75a781", - "x-ms-request-id": "242da706-557f-4b72-b187-198a2ae7cdaf" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/6818acbe-28a3-473a-b81b-ead7148b0017?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "e1228cf38e9766931c85f4fd5a1c8ba8", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:46:29 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/6818acbe-28a3-473a-b81b-ead7148b0017?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "e1228cf38e9766931c85f4fd5a1c8ba8", - "x-ms-request-id": "b0bf79a6-6afc-4573-8f45-c39751ab613e" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/6818acbe-28a3-473a-b81b-ead7148b0017?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "6e066eaae372d11aa2bdad46a7842e27", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:46:30 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/6818acbe-28a3-473a-b81b-ead7148b0017?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "6e066eaae372d11aa2bdad46a7842e27", - "x-ms-request-id": "880da0a9-fa9d-40f7-aa01-ec180f082870" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/6818acbe-28a3-473a-b81b-ead7148b0017?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "0b7cd5122183db2a030643604d082f2c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:46:31 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/6818acbe-28a3-473a-b81b-ead7148b0017?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "0b7cd5122183db2a030643604d082f2c", - "x-ms-request-id": "16323fd4-8442-47cf-8b12-9ffb34ecc501" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/6818acbe-28a3-473a-b81b-ead7148b0017?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "1f57946a396f100f72513fd9e14dbe98", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Content-Length": "0", - "Date": "Thu, 21 Jan 2021 17:46:32 GMT", + "Date": "Thu, 30 Sep 2021 06:18:13 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "1f57946a396f100f72513fd9e14dbe98", - "x-ms-request-id": "a76536a7-2771-4a91-bfd0-72ba08ce7434" + "x-ms-client-request-id": "d0392b4b6c6145972be76683cc567133", + "x-ms-request-id": "c87f3110-0912-4af8-b065-fdffb7a22c43" }, "ResponseBody": [] } ], "Variables": { - "AZURE_SYNAPSE_WORKSPACE_URL": "https://workspacechhamosynapse.dev.azuresynapse.net", + "AZURE_SYNAPSE_WORKSPACE_URL": "https://testsynapseworkspace.dev.azuresynapse.net", "RandomSeed": "2063912910" } } \ No newline at end of file diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/LinkedServiceClientLiveTests/TestRenameLinkedServiceAsync.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/LinkedServiceClientLiveTests/TestRenameLinkedServiceAsync.json index 19355b84fcef..c8029c5f9740 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/LinkedServiceClientLiveTests/TestRenameLinkedServiceAsync.json +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/LinkedServiceClientLiveTests/TestRenameLinkedServiceAsync.json @@ -1,18 +1,15 @@ { "Entries": [ { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedService296?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/linkedservices/LinkedService296?api-version=2020-12-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "119", "Content-Type": "application/json", - "traceparent": "00-8bafdcac24cdeb42be08333c552b7407-e82666bdad086a4e-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "traceparent": "00-3e1e32f71940804cb9329e24d973f553-3441c4c979787740-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c684baee6e96449bc04317a7b91eeb28", "x-ms-return-client-request-id": "true" }, @@ -34,37 +31,34 @@ "Location", "Retry-After" ], - "Content-Length": "449", + "Content-Length": "453", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:46:52 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/01b47fbf-7d9c-47fa-91aa-f52c24f02500?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:18:28 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/7a3afabd-f676-4480-937f-1f0c1ad6dcb7?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "c684baee6e96449bc04317a7b91eeb28", - "x-ms-request-id": "49ef372e-1120-4c49-8679-32df0cbe849b" + "x-ms-request-id": "1380852d-4fa7-444a-8887-1e502bae4b01" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedServices/LinkedService296", - "recordId": 990805, + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/linkedServices/LinkedService296", + "recordId": 2424299, "state": "Creating", - "created": "2021-01-21T17:46:52.48Z", - "changed": "2021-01-21T17:46:52.48Z", + "created": "2021-09-30T06:18:28.8733333Z", + "changed": "2021-09-30T06:18:28.8733333Z", "type": "LinkedService", "name": "LinkedService296", - "operationId": "01b47fbf-7d9c-47fa-91aa-f52c24f02500", - "artifactId": "51FDE451-61F6-4EEA-8365-AA43438BD59D" + "operationId": "7a3afabd-f676-4480-937f-1f0c1ad6dcb7", + "artifactId": "68B9260F-3CB2-4CED-81A6-6585D9DE0AC2" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/01b47fbf-7d9c-47fa-91aa-f52c24f02500?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/7a3afabd-f676-4480-937f-1f0c1ad6dcb7?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d2177c44a7b88935769fc95d67f9a58f", "x-ms-return-client-request-id": "true" }, @@ -81,82 +75,28 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:46:52 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/01b47fbf-7d9c-47fa-91aa-f52c24f02500?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:18:28 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/7a3afabd-f676-4480-937f-1f0c1ad6dcb7?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "d2177c44a7b88935769fc95d67f9a58f", - "x-ms-request-id": "972902cc-66c5-4a6a-82ca-4112b7add6f0" + "x-ms-request-id": "10631a60-1313-4db2-ac2a-8a2664046164" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/01b47fbf-7d9c-47fa-91aa-f52c24f02500?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/7a3afabd-f676-4480-937f-1f0c1ad6dcb7?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "922a37881ec92f453e6722533c1db960", "x-ms-return-client-request-id": "true" }, "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "429", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:46:54 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-ms-client-request-id": "922a37881ec92f453e6722533c1db960", - "x-ms-correlation-request-id": "931c1fb6-8eca-4452-b7cc-447918d3dbe0", - "x-ms-request-id": "eb050b08-dcf6-48ac-8215-e180b84237b3", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedService296", - "name": "LinkedService296", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "0d019170-0000-0800-0000-6009be0d0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedService296/rename?api-version=2019-06-01-preview", - "RequestMethod": "POST", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Length": "30", - "Content-Type": "application/json", - "traceparent": "00-70658818ccaf254d9c1ef3e7ee787b9b-ff624fe4d5b2b84d-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "073c63f87018ba62a59277f51eb6aa9d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "newName": "LinkedService216" - }, "StatusCode": 202, "ResponseHeaders": { "Access-Control-Allow-Headers": [ @@ -167,38 +107,27 @@ "Location", "Retry-After" ], - "Content-Length": "454", + "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:46:54 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/7bbd9744-d23c-4ef8-bfa7-c86304da8f5b?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:18:29 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/7a3afabd-f676-4480-937f-1f0c1ad6dcb7?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "073c63f87018ba62a59277f51eb6aa9d", - "x-ms-request-id": "68ff1542-c479-4a58-9373-9337979d626a" + "x-ms-client-request-id": "922a37881ec92f453e6722533c1db960", + "x-ms-request-id": "a7264984-58d9-4149-bebb-078b5c274428" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedServices/LinkedService296", - "recordId": 990805, - "state": "Renaming", - "created": "2021-01-21T17:46:52.48Z", - "changed": "2021-01-21T17:46:53.9333333Z", - "type": "LinkedService", - "name": "LinkedService296", - "operationId": "7bbd9744-d23c-4ef8-bfa7-c86304da8f5b", - "artifactId": "51FDE451-61F6-4EEA-8365-AA43438BD59D" + "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/7bbd9744-d23c-4ef8-bfa7-c86304da8f5b?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/7a3afabd-f676-4480-937f-1f0c1ad6dcb7?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "966e09698768c76fc8d7248bcd391fb1", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "3c63f85318076270baa59277f51eb6aa", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -214,31 +143,70 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:46:54 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/7bbd9744-d23c-4ef8-bfa7-c86304da8f5b?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:18:30 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/7a3afabd-f676-4480-937f-1f0c1ad6dcb7?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "966e09698768c76fc8d7248bcd391fb1", - "x-ms-request-id": "c3980028-ee26-40e0-b6e4-9c54eee41928" + "x-ms-client-request-id": "3c63f85318076270baa59277f51eb6aa", + "x-ms-request-id": "2014733c-7a8b-4c22-9d55-a77af4f51615" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/7bbd9744-d23c-4ef8-bfa7-c86304da8f5b?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/7a3afabd-f676-4480-937f-1f0c1ad6dcb7?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "279ab5782b65a2f63c051f841fdcd858", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "53f5a29d5d35265536e8945085e24c59", "x-ms-return-client-request-id": "true" }, "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Content-Length": "471", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 30 Sep 2021 06:18:32 GMT", + "Server": "Kestrel Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "53f5a29d5d35265536e8945085e24c59", + "x-ms-correlation-request-id": "409bbc7c-7052-4e42-b212-386c59b188c9", + "x-ms-request-id": "1131b834-1a25-4042-b188-084d3dfa667e" + }, + "ResponseBody": [ + "{\n", + " \u0022id\u0022: \u0022/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/linkedservices/LinkedService296\u0022,\n", + " \u0022name\u0022: \u0022LinkedService296\u0022,\n", + " \u0022type\u0022: \u0022Microsoft.Synapse/workspaces/linkedservices\u0022,\n", + " \u0022properties\u0022: {\n", + " \u0022type\u0022: \u0022AzureDataLakeStore\u0022,\n", + " \u0022typeProperties\u0022: {\n", + " \u0022dataLakeStoreUri\u0022: \u0022adl://test.azuredatalakestore.net/\u0022\n", + " }\n", + " },\n", + " \u0022etag\u0022: \u00222e001f80-0000-0100-0000-615556b70000\u0022\n", + "}" + ] + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/linkedservices/LinkedService296/rename?api-version=2020-12-01", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "30", + "Content-Type": "application/json", + "traceparent": "00-50571d809bb84645ab5c17a5d2d40671-1199f9987f125146-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "966e09698768c76fc8d7248bcd391fb1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "newName": "LinkedService283" + }, "StatusCode": 202, "ResponseHeaders": { "Access-Control-Allow-Headers": [ @@ -249,29 +217,34 @@ "Location", "Retry-After" ], - "Content-Length": "23", + "Content-Length": "447", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:46:55 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/7bbd9744-d23c-4ef8-bfa7-c86304da8f5b?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:18:32 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/3c68ee5e-8105-4903-a728-a4c4b6c099bf?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "279ab5782b65a2f63c051f841fdcd858", - "x-ms-request-id": "480803bf-a854-4897-ac9f-7cea5eaa7654" + "x-ms-client-request-id": "966e09698768c76fc8d7248bcd391fb1", + "x-ms-request-id": "a2365068-71f1-4365-9729-26f516f18d52" }, "ResponseBody": { - "status": "InProgress" + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/linkedServices/LinkedService296", + "recordId": 2424299, + "state": "Renaming", + "created": "2021-09-30T06:18:28.8733333Z", + "changed": "2021-09-30T06:18:31.6Z", + "type": "LinkedService", + "name": "LinkedService296", + "operationId": "3c68ee5e-8105-4903-a728-a4c4b6c099bf", + "artifactId": "68B9260F-3CB2-4CED-81A6-6585D9DE0AC2" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/7bbd9744-d23c-4ef8-bfa7-c86304da8f5b?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/3c68ee5e-8105-4903-a728-a4c4b6c099bf?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "148c913913471a35858b6d85319a68ae", "x-ms-return-client-request-id": "true" }, @@ -288,27 +261,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:46:56 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/7bbd9744-d23c-4ef8-bfa7-c86304da8f5b?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:18:32 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/3c68ee5e-8105-4903-a728-a4c4b6c099bf?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "148c913913471a35858b6d85319a68ae", - "x-ms-request-id": "d66b4ab4-1a94-45d7-a5e5-d05f0b974cbd" + "x-ms-request-id": "a5f514ec-64d5-43f0-a35c-f34f2fb3e1cf" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/7bbd9744-d23c-4ef8-bfa7-c86304da8f5b?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/3c68ee5e-8105-4903-a728-a4c4b6c099bf?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2c0d9f7431b23d8013cc5a6268eaa8eb", "x-ms-return-client-request-id": "true" }, @@ -325,27 +295,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:46:57 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/7bbd9744-d23c-4ef8-bfa7-c86304da8f5b?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:18:33 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/3c68ee5e-8105-4903-a728-a4c4b6c099bf?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "2c0d9f7431b23d8013cc5a6268eaa8eb", - "x-ms-request-id": "ced0260a-875d-4023-9958-4d0ab80fd867" + "x-ms-request-id": "d588a38b-c835-4f95-bb2a-d11baf8aefdb" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/7bbd9744-d23c-4ef8-bfa7-c86304da8f5b?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/3c68ee5e-8105-4903-a728-a4c4b6c099bf?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "3c52ccfe0bac646a807fa2dabe7071a1", "x-ms-return-client-request-id": "true" }, @@ -362,27 +329,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:46:58 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/7bbd9744-d23c-4ef8-bfa7-c86304da8f5b?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:18:34 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/3c68ee5e-8105-4903-a728-a4c4b6c099bf?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "3c52ccfe0bac646a807fa2dabe7071a1", - "x-ms-request-id": "daa4ede5-045a-4b9d-bf27-912ee73fbef7" + "x-ms-request-id": "5b2aa150-c3eb-47de-b563-fad0c61c5b15" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/7bbd9744-d23c-4ef8-bfa7-c86304da8f5b?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/3c68ee5e-8105-4903-a728-a4c4b6c099bf?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "8010709caccf07a5104e017bb9d2b29a", "x-ms-return-client-request-id": "true" }, @@ -399,27 +363,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:46:59 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/7bbd9744-d23c-4ef8-bfa7-c86304da8f5b?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:18:35 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/3c68ee5e-8105-4903-a728-a4c4b6c099bf?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "8010709caccf07a5104e017bb9d2b29a", - "x-ms-request-id": "5f2ecca0-2021-4982-96c5-9cb8bc3f8860" + "x-ms-request-id": "8edb507e-88f5-427e-8397-f27e6be294b3" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/7bbd9744-d23c-4ef8-bfa7-c86304da8f5b?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/3c68ee5e-8105-4903-a728-a4c4b6c099bf?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "658781e32c48690135a8ab338fa67fa2", "x-ms-return-client-request-id": "true" }, @@ -436,27 +397,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:47:00 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/7bbd9744-d23c-4ef8-bfa7-c86304da8f5b?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:18:36 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/3c68ee5e-8105-4903-a728-a4c4b6c099bf?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "658781e32c48690135a8ab338fa67fa2", - "x-ms-request-id": "f1cd70d1-4beb-49b5-a54c-883f4889485a" + "x-ms-request-id": "801e697d-3d70-4ac9-ae4f-ae15de07e930" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/7bbd9744-d23c-4ef8-bfa7-c86304da8f5b?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/3c68ee5e-8105-4903-a728-a4c4b6c099bf?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f7c6b85a27da521b264a2b5e09eeaaae", "x-ms-return-client-request-id": "true" }, @@ -473,27 +431,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:47:02 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/7bbd9744-d23c-4ef8-bfa7-c86304da8f5b?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:18:37 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/3c68ee5e-8105-4903-a728-a4c4b6c099bf?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "f7c6b85a27da521b264a2b5e09eeaaae", - "x-ms-request-id": "d51d0549-d958-477c-9bda-3c8cc3b2fd90" + "x-ms-request-id": "3d07ff92-6741-4ee5-abc2-98a14c527ae3" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/7bbd9744-d23c-4ef8-bfa7-c86304da8f5b?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/3c68ee5e-8105-4903-a728-a4c4b6c099bf?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "3cf607cd0ce970596ea64b260072786a", "x-ms-return-client-request-id": "true" }, @@ -510,27 +465,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:47:03 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/7bbd9744-d23c-4ef8-bfa7-c86304da8f5b?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:18:39 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/3c68ee5e-8105-4903-a728-a4c4b6c099bf?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "3cf607cd0ce970596ea64b260072786a", - "x-ms-request-id": "c56972e4-8868-4560-b328-daae7908ce49" + "x-ms-request-id": "aab0cbf1-2000-493c-b004-14d4d728c1e5" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/7bbd9744-d23c-4ef8-bfa7-c86304da8f5b?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/3c68ee5e-8105-4903-a728-a4c4b6c099bf?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "01205eceba0cbbc065343ffd00a35f46", "x-ms-return-client-request-id": "true" }, @@ -547,27 +499,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:47:04 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/7bbd9744-d23c-4ef8-bfa7-c86304da8f5b?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:18:40 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/3c68ee5e-8105-4903-a728-a4c4b6c099bf?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "01205eceba0cbbc065343ffd00a35f46", - "x-ms-request-id": "f1fea6e0-7656-4ff0-a7e4-8925d838aadb" + "x-ms-request-id": "5d3c1bcd-01e0-4b4f-b2f9-eb0c43160cfe" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/7bbd9744-d23c-4ef8-bfa7-c86304da8f5b?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/3c68ee5e-8105-4903-a728-a4c4b6c099bf?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "8765fdfd43af4eb95e558833dcf551b3", "x-ms-return-client-request-id": "true" }, @@ -584,27 +533,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:47:05 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/7bbd9744-d23c-4ef8-bfa7-c86304da8f5b?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:18:41 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/3c68ee5e-8105-4903-a728-a4c4b6c099bf?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "8765fdfd43af4eb95e558833dcf551b3", - "x-ms-request-id": "e5cd8696-c09a-449b-90b0-53ddd2095fcf" + "x-ms-request-id": "9eb7ac7a-a70a-46d1-9231-f0263010e4fe" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/7bbd9744-d23c-4ef8-bfa7-c86304da8f5b?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/3c68ee5e-8105-4903-a728-a4c4b6c099bf?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "aa8fc1d1a9ce12a2473ad6b4cd5c6fcb", "x-ms-return-client-request-id": "true" }, @@ -621,27 +567,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:47:06 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/7bbd9744-d23c-4ef8-bfa7-c86304da8f5b?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:18:42 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/3c68ee5e-8105-4903-a728-a4c4b6c099bf?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "aa8fc1d1a9ce12a2473ad6b4cd5c6fcb", - "x-ms-request-id": "d2f35e92-0a69-44c2-9848-f9def569daad" + "x-ms-request-id": "4eef3224-8397-4059-bfdc-287eb8a43132" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/7bbd9744-d23c-4ef8-bfa7-c86304da8f5b?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/3c68ee5e-8105-4903-a728-a4c4b6c099bf?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "03280547f10d8bbaa5d2a2b6318cdf70", "x-ms-return-client-request-id": "true" }, @@ -658,27 +601,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:47:07 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/7bbd9744-d23c-4ef8-bfa7-c86304da8f5b?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:18:43 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/3c68ee5e-8105-4903-a728-a4c4b6c099bf?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "03280547f10d8bbaa5d2a2b6318cdf70", - "x-ms-request-id": "43bda8f0-4789-499a-a954-0d210a13f52f" + "x-ms-request-id": "201108ca-630a-49e1-b848-7e5cedd68a25" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/7bbd9744-d23c-4ef8-bfa7-c86304da8f5b?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/3c68ee5e-8105-4903-a728-a4c4b6c099bf?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "3f2b8be2b41354785a533f746c048002", "x-ms-return-client-request-id": "true" }, @@ -695,101 +635,120 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:47:08 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/7bbd9744-d23c-4ef8-bfa7-c86304da8f5b?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:18:44 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/3c68ee5e-8105-4903-a728-a4c4b6c099bf?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "3f2b8be2b41354785a533f746c048002", - "x-ms-request-id": "720dd1e2-979a-487c-851f-873f693d4db4" + "x-ms-request-id": "594532ed-e6e0-4922-ba2f-689b8300068a" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/7bbd9744-d23c-4ef8-bfa7-c86304da8f5b?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/3c68ee5e-8105-4903-a728-a4c4b6c099bf?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "d7ecbde54ecce0a6060405fb06ebe1bb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 30 Sep 2021 06:18:45 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/3c68ee5e-8105-4903-a728-a4c4b6c099bf?api-version=2020-12-01", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "d7ecbde54ecce0a6060405fb06ebe1bb", + "x-ms-request-id": "09acaa11-a25a-499e-9800-95cad7a45a6f" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/3c68ee5e-8105-4903-a728-a4c4b6c099bf?api-version=2020-12-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "41d2665b303092b78cd4a8b9b1461ea0", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Content-Length": "0", - "Date": "Thu, 21 Jan 2021 17:47:09 GMT", + "Date": "Thu, 30 Sep 2021 06:18:46 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "d7ecbde54ecce0a6060405fb06ebe1bb", - "x-ms-request-id": "72bc5c61-64b8-4daf-85eb-113c06cd923d" + "x-ms-client-request-id": "41d2665b303092b78cd4a8b9b1461ea0", + "x-ms-request-id": "38065220-7001-4007-8dc3-97c47f17b934" }, "ResponseBody": [] }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedService216?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/linkedservices/LinkedService283?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-ec6e89ee4bbb444bb78d4428375bee1d-da28e45cb13db644-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "41d2665b303092b78cd4a8b9b1461ea0", + "traceparent": "00-7b717fdc19e9a6448009711b9751640f-e31b0e1150f5b148-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "74d0a051079f94a4e54b380faf7c4e6e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "429", + "Content-Length": "471", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:47:09 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-ms-client-request-id": "41d2665b303092b78cd4a8b9b1461ea0", - "x-ms-correlation-request-id": "c49cae11-b072-417e-8ddb-37ab42cefb98", - "x-ms-request-id": "fd589fc4-9c2c-42b2-b682-ced08e227c42", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedservices/LinkedService216", - "name": "LinkedService216", - "type": "Microsoft.Synapse/workspaces/linkedservices", - "properties": { - "type": "AzureDataLakeStore", - "typeProperties": { - "dataLakeStoreUri": "adl://test.azuredatalakestore.net/" - } - }, - "etag": "0d012c77-0000-0800-0000-6009be170000" - } + "Date": "Thu, 30 Sep 2021 06:18:46 GMT", + "Server": "Kestrel Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "74d0a051079f94a4e54b380faf7c4e6e", + "x-ms-correlation-request-id": "7d555cb8-12f1-45ad-8ec4-00763e67f020", + "x-ms-request-id": "a4d8265c-3240-4353-ad69-0aed5e53c46f" + }, + "ResponseBody": [ + "{\n", + " \u0022id\u0022: \u0022/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/linkedservices/LinkedService283\u0022,\n", + " \u0022name\u0022: \u0022LinkedService283\u0022,\n", + " \u0022type\u0022: \u0022Microsoft.Synapse/workspaces/linkedservices\u0022,\n", + " \u0022properties\u0022: {\n", + " \u0022type\u0022: \u0022AzureDataLakeStore\u0022,\n", + " \u0022typeProperties\u0022: {\n", + " \u0022dataLakeStoreUri\u0022: \u0022adl://test.azuredatalakestore.net/\u0022\n", + " }\n", + " },\n", + " \u0022etag\u0022: \u00222e002680-0000-0100-0000-615556c10000\u0022\n", + "}" + ] }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/linkedservices/LinkedService216?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/linkedservices/LinkedService283?api-version=2020-12-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-2d1a5afb391dfe41bf0e42f2f02687b4-80cb2b11bab8234e-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "74d0a051079f94a4e54b380faf7c4e6e", + "traceparent": "00-a6ba167982c73e4a8c8be3085fa3a00c-6732f8c45d4bfd4c-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "061884723f32b5d1055a4af8a6ec2fc0", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -797,36 +756,33 @@ "ResponseHeaders": { "Access-Control-Allow-Headers": "Location", "Access-Control-Expose-Headers": "Location", - "Content-Length": "384", + "Content-Length": "377", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:47:09 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/7d3e0163-8e06-49ed-9a14-4848476ef795?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:18:46 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/4fec062b-4495-4194-b767-0347dc0c6c77?api-version=2020-12-01", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "74d0a051079f94a4e54b380faf7c4e6e", - "x-ms-request-id": "0d1220c1-78f0-4884-9284-253df179a3dc" + "x-ms-client-request-id": "061884723f32b5d1055a4af8a6ec2fc0", + "x-ms-request-id": "5f362353-1f75-4435-b257-2dddbdaaaecd" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/linkedServices/LinkedService216", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/linkedServices/LinkedService283", "recordId": 0, "state": "Deleting", "created": "0001-01-01T00:00:00", "changed": "0001-01-01T00:00:00", "type": "LinkedService", - "name": "LinkedService216", - "operationId": "7d3e0163-8e06-49ed-9a14-4848476ef795" + "name": "LinkedService283", + "operationId": "4fec062b-4495-4194-b767-0347dc0c6c77" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/7d3e0163-8e06-49ed-9a14-4848476ef795?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/4fec062b-4495-4194-b767-0347dc0c6c77?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "65a965e56c1b541bc13e5be5f8a7e310", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "2c473985182d116dce1b6e45bcacedf9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -842,28 +798,25 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:47:09 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/7d3e0163-8e06-49ed-9a14-4848476ef795?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:18:46 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/4fec062b-4495-4194-b767-0347dc0c6c77?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "65a965e56c1b541bc13e5be5f8a7e310", - "x-ms-request-id": "f478975e-69ad-4fe8-b983-59573a334770" + "x-ms-client-request-id": "2c473985182d116dce1b6e45bcacedf9", + "x-ms-request-id": "676ad3f4-cf3f-4c33-9c5b-e6a3c61babe7" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/7d3e0163-8e06-49ed-9a14-4848476ef795?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/4fec062b-4495-4194-b767-0347dc0c6c77?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "2c473985182d116dce1b6e45bcacedf9", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "492a781ce8d2055369c444f4e4ecbc5e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -879,28 +832,25 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:47:10 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/7d3e0163-8e06-49ed-9a14-4848476ef795?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:18:47 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/4fec062b-4495-4194-b767-0347dc0c6c77?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "2c473985182d116dce1b6e45bcacedf9", - "x-ms-request-id": "8755214b-6223-46a4-8dac-87f4994fa4af" + "x-ms-client-request-id": "492a781ce8d2055369c444f4e4ecbc5e", + "x-ms-request-id": "edc5f800-33e5-4b6a-98e4-579d88d35a44" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/7d3e0163-8e06-49ed-9a14-4848476ef795?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/4fec062b-4495-4194-b767-0347dc0c6c77?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "492a781ce8d2055369c444f4e4ecbc5e", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "6c723a7702a4cc93f79897fffed69715", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -916,28 +866,59 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:47:11 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/7d3e0163-8e06-49ed-9a14-4848476ef795?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:18:48 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/4fec062b-4495-4194-b767-0347dc0c6c77?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "492a781ce8d2055369c444f4e4ecbc5e", - "x-ms-request-id": "fa75291b-749f-4153-ba67-cf39d9a8a934" + "x-ms-client-request-id": "6c723a7702a4cc93f79897fffed69715", + "x-ms-request-id": "2f124879-8314-4cc5-88c3-fe57f3f52b94" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/7d3e0163-8e06-49ed-9a14-4848476ef795?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/4fec062b-4495-4194-b767-0347dc0c6c77?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "7fc96250997c9c3de542c368d3792de2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" ], - "x-ms-client-request-id": "6c723a7702a4cc93f79897fffed69715", + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 30 Sep 2021 06:18:49 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/4fec062b-4495-4194-b767-0347dc0c6c77?api-version=2020-12-01", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "7fc96250997c9c3de542c368d3792de2", + "x-ms-request-id": "6b10ed5f-ecab-41d9-9e66-082906f4392a" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/4fec062b-4495-4194-b767-0347dc0c6c77?api-version=2020-12-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "82ce105e81391954e55e513a51530692", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -953,45 +934,76 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:47:13 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/7d3e0163-8e06-49ed-9a14-4848476ef795?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:18:51 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/4fec062b-4495-4194-b767-0347dc0c6c77?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "6c723a7702a4cc93f79897fffed69715", - "x-ms-request-id": "444460da-6bd8-4ac4-adef-0b28e4712212" + "x-ms-client-request-id": "82ce105e81391954e55e513a51530692", + "x-ms-request-id": "99e3636c-f99c-4bdf-a821-0bb5da39a1dd" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/7d3e0163-8e06-49ed-9a14-4848476ef795?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/4fec062b-4495-4194-b767-0347dc0c6c77?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "81a42f2d3c22dde1fdd586623e2af87e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" ], - "x-ms-client-request-id": "7fc96250997c9c3de542c368d3792de2", + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 30 Sep 2021 06:18:52 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/4fec062b-4495-4194-b767-0347dc0c6c77?api-version=2020-12-01", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "81a42f2d3c22dde1fdd586623e2af87e", + "x-ms-request-id": "c19b3c22-3d62-4fdb-8deb-5f061e714dd3" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/4fec062b-4495-4194-b767-0347dc0c6c77?api-version=2020-12-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "eea0b56a1408cedb0daf9a1e47024b92", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Content-Length": "0", - "Date": "Thu, 21 Jan 2021 17:47:14 GMT", + "Date": "Thu, 30 Sep 2021 06:18:53 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "7fc96250997c9c3de542c368d3792de2", - "x-ms-request-id": "30502329-25fc-440e-a17e-08589775406b" + "x-ms-client-request-id": "eea0b56a1408cedb0daf9a1e47024b92", + "x-ms-request-id": "ad884bec-cbbe-4127-9701-e355ba8ddd98" }, "ResponseBody": [] } ], "Variables": { - "AZURE_SYNAPSE_WORKSPACE_URL": "https://workspacechhamosynapse.dev.azuresynapse.net", + "AZURE_SYNAPSE_WORKSPACE_URL": "https://testsynapseworkspace.dev.azuresynapse.net", "RandomSeed": "827958184" } } \ No newline at end of file diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/NotebookClientLiveTests/TestDeleteNotebook.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/NotebookClientLiveTests/TestDeleteNotebook.json index 88a5a4fcb57a..8fa23c2109be 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/NotebookClientLiveTests/TestDeleteNotebook.json +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/NotebookClientLiveTests/TestDeleteNotebook.json @@ -1,18 +1,15 @@ { "Entries": [ { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook12171954?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebooks/Notebook12171954?api-version=2020-12-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "132", "Content-Type": "application/json", - "traceparent": "00-76765331f1f8044190c0097570304103-222c48f5642b8e43-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "traceparent": "00-7ad47d498d6d7f4fa319737ba357c5b0-509ce4cf26486945-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "1a1b1b92460cb50694e5ff40dbfa976a", "x-ms-return-client-request-id": "true" }, @@ -39,37 +36,34 @@ "Location", "Retry-After" ], - "Content-Length": "449", + "Content-Length": "443", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:47:14 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/notebookOperationResults/5cd2f9ea-096d-49cf-abc6-7a4d2a805986?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 07:32:30 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/notebookOperationResults/108fb9cd-631c-4784-ab1f-2162f6b86124?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "1a1b1b92460cb50694e5ff40dbfa976a", - "x-ms-request-id": "bb3d82d4-b88f-416d-919b-5000d87be8eb" + "x-ms-request-id": "7d100861-3efa-410f-92d5-161151f93d4e" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook12171954", - "recordId": 990807, - "state": "Creating", - "created": "2021-01-21T17:47:15.3833333Z", - "changed": "2021-01-21T17:47:15.3833333Z", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/Notebook12171954", + "recordId": 2424360, + "state": "Updating", + "created": "2021-09-30T06:18:54.5366667Z", + "changed": "2021-09-30T06:18:55.9633333Z", "type": "Notebook", "name": "Notebook12171954", - "operationId": "5cd2f9ea-096d-49cf-abc6-7a4d2a805986", - "artifactId": "75fe1cc4-c38f-4528-b8bc-508f4cccebf9" + "operationId": "108fb9cd-631c-4784-ab1f-2162f6b86124", + "artifactId": "b6feb1c7-0b67-40fd-b6fb-97433395f282" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebookOperationResults/5cd2f9ea-096d-49cf-abc6-7a4d2a805986?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebookOperationResults/108fb9cd-631c-4784-ab1f-2162f6b86124?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "cbdb5eea0a71db7729ea780b485b6d76", "x-ms-return-client-request-id": "true" }, @@ -86,27 +80,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:47:14 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/notebookOperationResults/5cd2f9ea-096d-49cf-abc6-7a4d2a805986?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 07:32:31 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/notebookOperationResults/108fb9cd-631c-4784-ab1f-2162f6b86124?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "cbdb5eea0a71db7729ea780b485b6d76", - "x-ms-request-id": "f896161d-7a35-4129-8206-24581017efeb" + "x-ms-request-id": "ae778506-e50d-4899-b6a8-1a63950472b1" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebookOperationResults/5cd2f9ea-096d-49cf-abc6-7a4d2a805986?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebookOperationResults/108fb9cd-631c-4784-ab1f-2162f6b86124?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "37f133d6c4d4fd6c28b477f66e7f02c9", "x-ms-return-client-request-id": "true" }, @@ -123,27 +114,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:47:16 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/notebookOperationResults/5cd2f9ea-096d-49cf-abc6-7a4d2a805986?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 07:32:32 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/notebookOperationResults/108fb9cd-631c-4784-ab1f-2162f6b86124?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "37f133d6c4d4fd6c28b477f66e7f02c9", - "x-ms-request-id": "f3fc9459-7529-4c7a-a02d-557b2788af52" + "x-ms-request-id": "431d56fc-34e0-4648-a7fa-576d970d717b" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebookOperationResults/5cd2f9ea-096d-49cf-abc6-7a4d2a805986?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebookOperationResults/108fb9cd-631c-4784-ab1f-2162f6b86124?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7c556b3ecc1e62f8c1a01a6a1be71e46", "x-ms-return-client-request-id": "true" }, @@ -160,27 +148,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:47:17 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/notebookOperationResults/5cd2f9ea-096d-49cf-abc6-7a4d2a805986?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 07:32:33 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/notebookOperationResults/108fb9cd-631c-4784-ab1f-2162f6b86124?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "7c556b3ecc1e62f8c1a01a6a1be71e46", - "x-ms-request-id": "bb6f0a94-3620-4775-b65f-97cd197eb92d" + "x-ms-request-id": "b2d3c62e-fede-46f9-8b62-015e734e5632" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebookOperationResults/5cd2f9ea-096d-49cf-abc6-7a4d2a805986?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebookOperationResults/108fb9cd-631c-4784-ab1f-2162f6b86124?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7fb062a96fd926bff2dda3bc92806daa", "x-ms-return-client-request-id": "true" }, @@ -197,47 +182,75 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:47:18 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/notebookOperationResults/5cd2f9ea-096d-49cf-abc6-7a4d2a805986?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 07:32:34 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/notebookOperationResults/108fb9cd-631c-4784-ab1f-2162f6b86124?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "7fb062a96fd926bff2dda3bc92806daa", - "x-ms-request-id": "aaebde88-1602-45da-9875-9cf273ced030" + "x-ms-request-id": "212ef6c3-c897-4c9e-96be-1c124a1dfc70" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebookOperationResults/5cd2f9ea-096d-49cf-abc6-7a4d2a805986?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebookOperationResults/108fb9cd-631c-4784-ab1f-2162f6b86124?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "ddccafe7f0060a573a8f7534a902e240", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 30 Sep 2021 07:32:35 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/notebookOperationResults/108fb9cd-631c-4784-ab1f-2162f6b86124?api-version=2020-12-01", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "ddccafe7f0060a573a8f7534a902e240", + "x-ms-request-id": "05aeadc1-3ba2-4ba6-8739-6342b1aa061c" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebookOperationResults/108fb9cd-631c-4784-ab1f-2162f6b86124?api-version=2020-12-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "0c4c319682cecfefac2f8941293cd041", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:47:19 GMT", + "Date": "Thu, 30 Sep 2021 07:32:36 GMT", "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Kestrel Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "ddccafe7f0060a573a8f7534a902e240", - "x-ms-request-id": "73d5d0f1-8153-4b37-aaf7-64e5cdb7c1d8" + "x-ms-client-request-id": "0c4c319682cecfefac2f8941293cd041", + "x-ms-request-id": "f6d5fdaa-155f-4684-bdb3-7448075de12e" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook12171954", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/Notebook12171954", "name": "Notebook12171954", "type": "Microsoft.Synapse/workspaces/notebooks", "properties": { @@ -257,21 +270,18 @@ "cells": [], "folder": null }, - "etag": "0d01a382-0000-0800-0000-6009be270000" + "etag": "2e00e787-0000-0100-0000-615568140000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook12171954?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebooks/Notebook12171954?api-version=2020-12-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-9837a7c6b274864894966ddda2175a45-ed7280f873bba844-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "0c4c319682cecfefac2f8941293cd041", + "traceparent": "00-5f1f1d7901839e44bd9c113d5a888039-4531262f5b59c944-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "6b827033411bb8400aa5454afa8b7cf0", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -279,36 +289,33 @@ "ResponseHeaders": { "Access-Control-Allow-Headers": "Location", "Access-Control-Expose-Headers": "Location", - "Content-Length": "374", + "Content-Length": "367", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:47:19 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/notebookOperationResults/7d7385b4-583d-48cc-905e-5baf857d1ccc?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 07:32:36 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/notebookOperationResults/7a29edb4-9dd9-4047-be66-91b119c88e49?api-version=2020-12-01", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "0c4c319682cecfefac2f8941293cd041", - "x-ms-request-id": "3f8974a4-926a-4556-955c-7003accb9ce7" + "x-ms-client-request-id": "6b827033411bb8400aa5454afa8b7cf0", + "x-ms-request-id": "7593f42d-2b1d-4360-9009-77d195398b04" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook12171954", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/Notebook12171954", "recordId": 0, "state": "Deleting", "created": "0001-01-01T00:00:00", "changed": "0001-01-01T00:00:00", "type": "Notebook", "name": "Notebook12171954", - "operationId": "7d7385b4-583d-48cc-905e-5baf857d1ccc" + "operationId": "7a29edb4-9dd9-4047-be66-91b119c88e49" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebookOperationResults/7d7385b4-583d-48cc-905e-5baf857d1ccc?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebookOperationResults/7a29edb4-9dd9-4047-be66-91b119c88e49?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "612662fb613465dbbffc31d76616e1fe", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "390034be76805424f19301283da5d520", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -324,28 +331,25 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:47:19 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/notebookOperationResults/7d7385b4-583d-48cc-905e-5baf857d1ccc?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 07:32:36 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/notebookOperationResults/7a29edb4-9dd9-4047-be66-91b119c88e49?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "612662fb613465dbbffc31d76616e1fe", - "x-ms-request-id": "8e093f51-fd14-4706-8a71-dbcaa3e5ae1e" + "x-ms-client-request-id": "390034be76805424f19301283da5d520", + "x-ms-request-id": "053a7546-521e-44c8-b6fe-b3cf15cd5636" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebookOperationResults/7d7385b4-583d-48cc-905e-5baf857d1ccc?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebookOperationResults/7a29edb4-9dd9-4047-be66-91b119c88e49?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "390034be76805424f19301283da5d520", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "c64599b26f15d20c941dab1f106951f4", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -361,45 +365,76 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:47:21 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/notebookOperationResults/7d7385b4-583d-48cc-905e-5baf857d1ccc?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 07:32:37 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/notebookOperationResults/7a29edb4-9dd9-4047-be66-91b119c88e49?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "390034be76805424f19301283da5d520", - "x-ms-request-id": "01b5b73d-4d93-4c03-8501-54ac3d0b526b" + "x-ms-client-request-id": "c64599b26f15d20c941dab1f106951f4", + "x-ms-request-id": "04146f27-7f1e-4c07-809d-5904e2984a26" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebookOperationResults/7d7385b4-583d-48cc-905e-5baf857d1ccc?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebookOperationResults/7a29edb4-9dd9-4047-be66-91b119c88e49?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "c68b47c4428a84703ed270a05fb2271a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" ], - "x-ms-client-request-id": "c64599b26f15d20c941dab1f106951f4", + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 30 Sep 2021 07:32:39 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/notebookOperationResults/7a29edb4-9dd9-4047-be66-91b119c88e49?api-version=2020-12-01", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "c68b47c4428a84703ed270a05fb2271a", + "x-ms-request-id": "a53911ad-1950-4266-8ee2-98c1d0854a2f" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebookOperationResults/7a29edb4-9dd9-4047-be66-91b119c88e49?api-version=2020-12-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "cd2410271bd04fe8272ea463cb054488", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Content-Length": "0", - "Date": "Thu, 21 Jan 2021 17:47:22 GMT", + "Date": "Thu, 30 Sep 2021 07:32:40 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "c64599b26f15d20c941dab1f106951f4", - "x-ms-request-id": "67e24c9b-8b1b-4903-a05d-0503c9a378e0" + "x-ms-client-request-id": "cd2410271bd04fe8272ea463cb054488", + "x-ms-request-id": "2e219dc1-7d4e-4d19-889b-c7305f4b09d1" }, "ResponseBody": [] } ], "Variables": { - "AZURE_SYNAPSE_WORKSPACE_URL": "https://workspacechhamosynapse.dev.azuresynapse.net", + "AZURE_SYNAPSE_WORKSPACE_URL": "https://testsynapseworkspace.dev.azuresynapse.net", "RandomSeed": "225257974" } } \ No newline at end of file diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/NotebookClientLiveTests/TestDeleteNotebookAsync.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/NotebookClientLiveTests/TestDeleteNotebookAsync.json index dd8ac8c71e5d..969251c5b668 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/NotebookClientLiveTests/TestDeleteNotebookAsync.json +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/NotebookClientLiveTests/TestDeleteNotebookAsync.json @@ -1,18 +1,15 @@ { "Entries": [ { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook54387962?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebooks/Notebook54387962?api-version=2020-12-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "132", "Content-Type": "application/json", - "traceparent": "00-53a8e229828f334c932b638e2de24aaf-85560ed8c33fb045-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "traceparent": "00-9ffe4d356aebd748bb97e395c2cbf510-6266c9df94267345-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "bab2c79521f504573c81702383e63b17", "x-ms-return-client-request-id": "true" }, @@ -39,37 +36,34 @@ "Location", "Retry-After" ], - "Content-Length": "449", + "Content-Length": "438", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:48:43 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/notebookOperationResults/dde36a87-1326-4c31-8d5d-2a1c720949e9?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 07:33:42 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/notebookOperationResults/375ee940-4997-4ee9-9924-6b8030f7da4f?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "bab2c79521f504573c81702383e63b17", - "x-ms-request-id": "69b15618-70a8-4e77-9c8a-80dd3be0cf0c" + "x-ms-request-id": "c7eca72e-42d4-43f1-a897-694f163b179a" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook54387962", - "recordId": 990815, - "state": "Creating", - "created": "2021-01-21T17:48:44.0933333Z", - "changed": "2021-01-21T17:48:44.0933333Z", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/Notebook54387962", + "recordId": 2424367, + "state": "Updating", + "created": "2021-09-30T06:19:09.6033333Z", + "changed": "2021-09-30T06:19:12.43Z", "type": "Notebook", "name": "Notebook54387962", - "operationId": "dde36a87-1326-4c31-8d5d-2a1c720949e9", - "artifactId": "3ed148b2-26bd-49e5-b38f-7875eec796fc" + "operationId": "375ee940-4997-4ee9-9924-6b8030f7da4f", + "artifactId": "35a0d329-b60c-4ffc-a9b0-ada2a90757a8" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebookOperationResults/dde36a87-1326-4c31-8d5d-2a1c720949e9?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebookOperationResults/375ee940-4997-4ee9-9924-6b8030f7da4f?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "352545b8c63ad2a8416dc7d52bc83743", "x-ms-return-client-request-id": "true" }, @@ -86,27 +80,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:48:43 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/notebookOperationResults/dde36a87-1326-4c31-8d5d-2a1c720949e9?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 07:33:43 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/notebookOperationResults/375ee940-4997-4ee9-9924-6b8030f7da4f?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "352545b8c63ad2a8416dc7d52bc83743", - "x-ms-request-id": "5a15fc88-6f6c-4008-99d4-655c583bbae3" + "x-ms-request-id": "afee5fb9-82fd-4af4-8005-fbcca0a7f349" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebookOperationResults/dde36a87-1326-4c31-8d5d-2a1c720949e9?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebookOperationResults/375ee940-4997-4ee9-9924-6b8030f7da4f?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "09953d093abd22ef3beda544af4654b1", "x-ms-return-client-request-id": "true" }, @@ -123,27 +114,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:48:45 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/notebookOperationResults/dde36a87-1326-4c31-8d5d-2a1c720949e9?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 07:33:44 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/notebookOperationResults/375ee940-4997-4ee9-9924-6b8030f7da4f?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "09953d093abd22ef3beda544af4654b1", - "x-ms-request-id": "a895a524-ba19-4bb8-8055-138f77971326" + "x-ms-request-id": "40512ed8-aac5-4411-bbf9-164222a5d928" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebookOperationResults/dde36a87-1326-4c31-8d5d-2a1c720949e9?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebookOperationResults/375ee940-4997-4ee9-9924-6b8030f7da4f?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "3e6a813005c016dcff1a2b70abb6984c", "x-ms-return-client-request-id": "true" }, @@ -151,19 +139,16 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:48:46 GMT", + "Date": "Thu, 30 Sep 2021 07:33:45 GMT", "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Kestrel Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", "x-ms-client-request-id": "3e6a813005c016dcff1a2b70abb6984c", - "x-ms-request-id": "7ff8c67b-b275-4e5e-b2b2-f330db6e3c31" + "x-ms-request-id": "649e4e41-485c-4ed6-a729-6ab4b7b5a00f" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook54387962", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/Notebook54387962", "name": "Notebook54387962", "type": "Microsoft.Synapse/workspaces/notebooks", "properties": { @@ -183,20 +168,17 @@ "cells": [], "folder": null }, - "etag": "0d0199be-0000-0800-0000-6009be7e0000" + "etag": "2e001988-0000-0100-0000-615568590000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook54387962?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebooks/Notebook54387962?api-version=2020-12-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-738bd64c0292d84d8ed805af7359a925-5b86a767f9ee4c4a-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "traceparent": "00-58ac42fbae91664f86753e2516d2f451-0f5fd68994eca94b-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "71082e7946f57d305503fa4d206322fa", "x-ms-return-client-request-id": "true" }, @@ -205,35 +187,32 @@ "ResponseHeaders": { "Access-Control-Allow-Headers": "Location", "Access-Control-Expose-Headers": "Location", - "Content-Length": "374", + "Content-Length": "367", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:48:46 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/notebookOperationResults/8759d626-2fac-4023-bab1-02ebe7e7da7d?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 07:33:45 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/notebookOperationResults/f4c011ff-b76e-4b8c-9b15-47e94323d8d5?api-version=2020-12-01", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "71082e7946f57d305503fa4d206322fa", - "x-ms-request-id": "12554261-8144-4ee0-8898-2c237cf14fee" + "x-ms-request-id": "8ae888bd-920e-4261-8dd8-ede5e5ba252e" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook54387962", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/Notebook54387962", "recordId": 0, "state": "Deleting", "created": "0001-01-01T00:00:00", "changed": "0001-01-01T00:00:00", "type": "Notebook", "name": "Notebook54387962", - "operationId": "8759d626-2fac-4023-bab1-02ebe7e7da7d" + "operationId": "f4c011ff-b76e-4b8c-9b15-47e94323d8d5" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebookOperationResults/8759d626-2fac-4023-bab1-02ebe7e7da7d?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebookOperationResults/f4c011ff-b76e-4b8c-9b15-47e94323d8d5?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "81ca5955e23eeabc50ece8bd0a8ff59c", "x-ms-return-client-request-id": "true" }, @@ -250,27 +229,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:48:46 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/notebookOperationResults/8759d626-2fac-4023-bab1-02ebe7e7da7d?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 07:33:45 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/notebookOperationResults/f4c011ff-b76e-4b8c-9b15-47e94323d8d5?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "81ca5955e23eeabc50ece8bd0a8ff59c", - "x-ms-request-id": "f69b96b6-a26a-4ed0-b8f2-1e8ec0cb033d" + "x-ms-request-id": "b68fe3d0-7f34-47da-ad1b-bb00e0574d37" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebookOperationResults/8759d626-2fac-4023-bab1-02ebe7e7da7d?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebookOperationResults/f4c011ff-b76e-4b8c-9b15-47e94323d8d5?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "955731f8ee1181eeac0311753b8d6fd6", "x-ms-return-client-request-id": "true" }, @@ -287,45 +263,178 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:48:48 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/notebookOperationResults/8759d626-2fac-4023-bab1-02ebe7e7da7d?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 07:33:46 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/notebookOperationResults/f4c011ff-b76e-4b8c-9b15-47e94323d8d5?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "955731f8ee1181eeac0311753b8d6fd6", - "x-ms-request-id": "08367d41-8543-4473-afdf-59377e46d620" + "x-ms-request-id": "09d7d3ed-5e6b-422b-80ce-f8e7f741e444" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebookOperationResults/8759d626-2fac-4023-bab1-02ebe7e7da7d?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebookOperationResults/f4c011ff-b76e-4b8c-9b15-47e94323d8d5?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "c6f7748ca19835bc58b959700fc4f9d0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 30 Sep 2021 07:33:47 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/notebookOperationResults/f4c011ff-b76e-4b8c-9b15-47e94323d8d5?api-version=2020-12-01", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "c6f7748ca19835bc58b959700fc4f9d0", + "x-ms-request-id": "4ff9b1ad-23c8-4031-bb88-105919e37463" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebookOperationResults/f4c011ff-b76e-4b8c-9b15-47e94323d8d5?api-version=2020-12-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "ddab6e89e12767736a49d43ad147aec3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 30 Sep 2021 07:33:49 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/notebookOperationResults/f4c011ff-b76e-4b8c-9b15-47e94323d8d5?api-version=2020-12-01", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "ddab6e89e12767736a49d43ad147aec3", + "x-ms-request-id": "5ad58ed2-e18a-4874-841d-5b967d0cd2ca" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebookOperationResults/f4c011ff-b76e-4b8c-9b15-47e94323d8d5?api-version=2020-12-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "9531127d2e98570375213d57947e71e7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 30 Sep 2021 07:33:50 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/notebookOperationResults/f4c011ff-b76e-4b8c-9b15-47e94323d8d5?api-version=2020-12-01", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "9531127d2e98570375213d57947e71e7", + "x-ms-request-id": "bacec0a1-b392-4001-bf6e-1b0e8202d094" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebookOperationResults/f4c011ff-b76e-4b8c-9b15-47e94323d8d5?api-version=2020-12-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "cdeb400a91e2abae018f5c4fcc816411", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 30 Sep 2021 07:33:51 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/notebookOperationResults/f4c011ff-b76e-4b8c-9b15-47e94323d8d5?api-version=2020-12-01", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "cdeb400a91e2abae018f5c4fcc816411", + "x-ms-request-id": "ede1b82e-6549-437c-a009-095dc3678bf9" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebookOperationResults/f4c011ff-b76e-4b8c-9b15-47e94323d8d5?api-version=2020-12-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "fcf3960b63925b386a546806a41cd2ec", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Content-Length": "0", - "Date": "Thu, 21 Jan 2021 17:48:49 GMT", + "Date": "Thu, 30 Sep 2021 07:33:52 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "c6f7748ca19835bc58b959700fc4f9d0", - "x-ms-request-id": "ba99a938-2ca6-4490-b08d-d721fbb778e3" + "x-ms-client-request-id": "fcf3960b63925b386a546806a41cd2ec", + "x-ms-request-id": "dba563a5-cd17-4efd-922b-9fd0c9eca5d2" }, "ResponseBody": [] } ], "Variables": { - "AZURE_SYNAPSE_WORKSPACE_URL": "https://workspacechhamosynapse.dev.azuresynapse.net", + "AZURE_SYNAPSE_WORKSPACE_URL": "https://testsynapseworkspace.dev.azuresynapse.net", "RandomSeed": "1964029563" } } \ No newline at end of file diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/NotebookClientLiveTests/TestGetNotebook.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/NotebookClientLiveTests/TestGetNotebook.json index 4d9c6cc44750..b8ae73123c35 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/NotebookClientLiveTests/TestGetNotebook.json +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/NotebookClientLiveTests/TestGetNotebook.json @@ -1,18 +1,15 @@ { "Entries": [ { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook51465148?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebooks/Notebook51465148?api-version=2020-12-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "132", "Content-Type": "application/json", - "traceparent": "00-e89cb956b1183940bafd0a184ddaf5b2-31c22bf5c97f5240-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "traceparent": "00-3fc1fbdf2adf124cbe030ec12316f28d-d23c32a497930549-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6ef3b7b79e3efa8a6416504be8ec066e", "x-ms-return-client-request-id": "true" }, @@ -39,37 +36,34 @@ "Location", "Retry-After" ], - "Content-Length": "449", + "Content-Length": "443", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:29:54 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/notebookOperationResults/16f5790f-73bc-4838-8719-de1f89380765?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 07:32:40 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/notebookOperationResults/e57984aa-a1c7-4ab0-9f90-e8e37431c3a1?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "6ef3b7b79e3efa8a6416504be8ec066e", - "x-ms-request-id": "895094cf-8038-43c0-90c8-b955a2ca28ac" + "x-ms-request-id": "d38fc892-f8d7-4b0e-b3d2-6625722285ff" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook51465148", - "recordId": 990951, - "state": "Creating", - "created": "2021-01-21T18:29:54.9333333Z", - "changed": "2021-01-21T18:29:54.9333333Z", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/Notebook51465148", + "recordId": 2424363, + "state": "Updating", + "created": "2021-09-30T06:18:58.7133333Z", + "changed": "2021-09-30T06:34:27.3933333Z", "type": "Notebook", "name": "Notebook51465148", - "operationId": "16f5790f-73bc-4838-8719-de1f89380765", - "artifactId": "63856d21-a3e4-469b-9f81-663e279d4f12" + "operationId": "e57984aa-a1c7-4ab0-9f90-e8e37431c3a1", + "artifactId": "3243ff1d-37a5-40b1-8b3f-ebbed51f33cf" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebookOperationResults/16f5790f-73bc-4838-8719-de1f89380765?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebookOperationResults/e57984aa-a1c7-4ab0-9f90-e8e37431c3a1?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "018f75917c860a7e34c83ecb4883d596", "x-ms-return-client-request-id": "true" }, @@ -86,27 +80,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:29:54 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/notebookOperationResults/16f5790f-73bc-4838-8719-de1f89380765?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 07:32:40 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/notebookOperationResults/e57984aa-a1c7-4ab0-9f90-e8e37431c3a1?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "018f75917c860a7e34c83ecb4883d596", - "x-ms-request-id": "94aa758a-1896-4105-9e88-1081cb325239" + "x-ms-request-id": "8292316b-ad4d-471b-be40-5620f8ad41db" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebookOperationResults/16f5790f-73bc-4838-8719-de1f89380765?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebookOperationResults/e57984aa-a1c7-4ab0-9f90-e8e37431c3a1?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "494f2f796a9af70cb7d18a9dfed8294b", "x-ms-return-client-request-id": "true" }, @@ -123,27 +114,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:29:56 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/notebookOperationResults/16f5790f-73bc-4838-8719-de1f89380765?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 07:32:42 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/notebookOperationResults/e57984aa-a1c7-4ab0-9f90-e8e37431c3a1?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "494f2f796a9af70cb7d18a9dfed8294b", - "x-ms-request-id": "36d3347c-2e0f-4706-8936-4dc3827f8673" + "x-ms-request-id": "a2916420-f3a1-43a8-b11d-a17b4ac52608" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebookOperationResults/16f5790f-73bc-4838-8719-de1f89380765?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebookOperationResults/e57984aa-a1c7-4ab0-9f90-e8e37431c3a1?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "72bad965055c42e7be215c868134d960", "x-ms-return-client-request-id": "true" }, @@ -160,47 +148,75 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:29:57 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/notebookOperationResults/16f5790f-73bc-4838-8719-de1f89380765?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 07:32:43 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/notebookOperationResults/e57984aa-a1c7-4ab0-9f90-e8e37431c3a1?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "72bad965055c42e7be215c868134d960", - "x-ms-request-id": "46b773f8-285c-4cd4-aa10-9b570ff1e233" + "x-ms-request-id": "229ad844-9773-459f-98d5-7e109c0840d3" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebookOperationResults/16f5790f-73bc-4838-8719-de1f89380765?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebookOperationResults/e57984aa-a1c7-4ab0-9f90-e8e37431c3a1?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "a13708ca66c926dc699849b4f2e00b5c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 30 Sep 2021 07:32:44 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/notebookOperationResults/e57984aa-a1c7-4ab0-9f90-e8e37431c3a1?api-version=2020-12-01", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "a13708ca66c926dc699849b4f2e00b5c", + "x-ms-request-id": "70f6b791-f83e-4ae1-a449-35a5d1af4916" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebookOperationResults/e57984aa-a1c7-4ab0-9f90-e8e37431c3a1?api-version=2020-12-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "6e66f29f63c97339480c8b790e857582", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:29:58 GMT", + "Date": "Thu, 30 Sep 2021 07:32:45 GMT", "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Kestrel Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "a13708ca66c926dc699849b4f2e00b5c", - "x-ms-request-id": "c3e1fc44-8a86-4791-ab54-7783589bbf91" + "x-ms-client-request-id": "6e66f29f63c97339480c8b790e857582", + "x-ms-request-id": "eadfbc3a-92ce-4943-95ad-485bea5f9c3a" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook51465148", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/Notebook51465148", "name": "Notebook51465148", "type": "Microsoft.Synapse/workspaces/notebooks", "properties": { @@ -220,8822 +236,677 @@ "cells": [], "folder": null }, - "etag": "14016666-0000-0800-0000-6009c8260000" + "etag": "2e00eb87-0000-0100-0000-6155681c0000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebooks?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-b16d23ed2a4b0840b0b5cef1f75bcbc8-1bdccff37480444e-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "6e66f29f63c97339480c8b790e857582", + "traceparent": "00-507bd967139023448432fd37efaa2433-0900ced3a0f05c47-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "f5d32af888a0fe81fd9409c4bc3350dd", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Content-Length": "29024", + "Content-Length": "90983", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:29:59 GMT", + "Date": "Thu, 30 Sep 2021 07:32:45 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "6e66f29f63c97339480c8b790e857582", - "x-ms-request-id": "1e9612e6-49c4-426d-a9ec-ecbed38f7318" + "x-ms-client-request-id": "f5d32af888a0fe81fd9409c4bc3350dd", + "x-ms-request-id": "360cf456-3099-4348-ab44-014c51c0bc55" + }, + "ResponseBody": "{\u0022value\u0022:[{\u0022id\u0022:\u0022/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/Notebook 1\u0022,\u0022name\u0022:\u0022Notebook 1\u0022,\u0022type\u0022:\u0022Microsoft.Synapse/workspaces/notebooks\u0022,\u0022etag\u0022:\u00221700db78-0000-0100-0000-60f7a2160000\u0022,\u0022properties\u0022:{\u0022nbformat\u0022:4,\u0022nbformat_minor\u0022:2,\u0022entityState\u0022:null,\u0022renameOperationDetails\u0022:null,\u0022bigDataPool\u0022:{\u0022referenceName\u0022:\u0022testsparkpool\u0022,\u0022type\u0022:\u0022BigDataPoolReference\u0022},\u0022sessionProperties\u0022:{\u0022driverMemory\u0022:\u002228g\u0022,\u0022driverCores\u0022:4,\u0022executorMemory\u0022:\u002228g\u0022,\u0022executorCores\u0022:4,\u0022numExecutors\u0022:1,\u0022conf\u0022:{\u0022spark.dynamicAllocation.enabled\u0022:\u0022false\u0022,\u0022spark.dynamicAllocation.minExecutors\u0022:\u00221\u0022,\u0022spark.dynamicAllocation.maxExecutors\u0022:\u00221\u0022}},\u0022metadata\u0022:{\u0022language_info\u0022:{\u0022name\u0022:\u0022python\u0022},\u0022a365ComputeOptions\u0022:{\u0022id\u0022:\u0022/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/bigDataPools/testsparkpool\u0022,\u0022name\u0022:\u0022testsparkpool\u0022,\u0022type\u0022:\u0022Spark\u0022,\u0022endpoint\u0022:\u0022https://testsynapseworkspace.dev.azuresynapse.net/livyApi/versions/2019-11-01-preview/sparkPools/testsparkpool\u0022,\u0022auth\u0022:{\u0022type\u0022:\u0022AAD\u0022,\u0022authResource\u0022:\u0022https://dev.azuresynapse.net\u0022},\u0022sparkVersion\u0022:\u00222.4\u0022,\u0022nodeCount\u0022:3,\u0022cores\u0022:8,\u0022memory\u0022:56,\u0022extraHeader\u0022:null},\u0022sessionKeepAliveTimeout\u0022:30,\u0022saveOutput\u0022:true,\u0022synapse_widget\u0022:{\u0022version\u0022:\u00220.1\u0022,\u0022state\u0022:{}},\u0022kernelspec\u0022:{\u0022name\u0022:\u0022synapse_pyspark\u0022,\u0022display_name\u0022:\u0022python\u0022}},\u0022cells\u0022:[{\u0022cell_type\u0022:\u0022code\u0022,\u0022metadata\u0022:{},\u0022source\u0022:[\u0022print(\\\u0022hello from portal\\\u0022)\u0022],\u0022attachments\u0022:{},\u0022outputs\u0022:[],\u0022execution_count\u0022:null}],\u0022folder\u0022:{\u0022name\u0022:\u0022nbfolder\u0022}}},{\u0022id\u0022:\u0022/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/dongwwaTestNotebook\u0022,\u0022name\u0022:\u0022dongwwaTestNotebook\u0022,\u0022type\u0022:\u0022Microsoft.Synapse/workspaces/notebooks\u0022,\u0022etag\u0022:\u00220100d5a0-0000-0100-0000-5ecba4720000\u0022,\u0022properties\u0022:{\u0022nbformat\u0022:4,\u0022nbformat_minor\u0022:2,\u0022entityState\u0022:null,\u0022renameOperationDetails\u0022:null,\u0022bigDataPool\u0022:null,\u0022sessionProperties\u0022:{\u0022driverMemory\u0022:\u002228g\u0022,\u0022driverCores\u0022:4,\u0022executorMemory\u0022:\u002228g\u0022,\u0022executorCores\u0022:4,\u0022numExecutors\u0022:2,\u0022conf\u0022:null},\u0022metadata\u0022:{\u0022language_info\u0022:{\u0022name\u0022:\u0022python\u0022},\u0022a365ComputeOptions\u0022:null,\u0022sessionKeepAliveTimeout\u0022:30},\u0022cells\u0022:[{\u0022cell_type\u0022:\u0022code\u0022,\u0022metadata\u0022:{},\u0022source\u0022:[\u0022print(\u0027hello\u0027)\u0022],\u0022attachments\u0022:{},\u0022outputs\u0022:[],\u0022execution_count\u0022:null}],\u0022folder\u0022:null}},{\u0022id\u0022:\u0022/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/dongwwaNb2\u0022,\u0022name\u0022:\u0022dongwwaNb2\u0022,\u0022type\u0022:\u0022Microsoft.Synapse/workspaces/notebooks\u0022,\u0022etag\u0022:\u00221100d8f9-0000-0100-0000-5f1560de0000\u0022,\u0022properties\u0022:{\u0022nbformat\u0022:4,\u0022nbformat_minor\u0022:2,\u0022entityState\u0022:null,\u0022renameOperationDetails\u0022:null,\u0022bigDataPool\u0022:{\u0022referenceName\u0022:\u0022testportal\u0022,\u0022type\u0022:\u0022BigDataPoolReference\u0022},\u0022sessionProperties\u0022:{\u0022driverMemory\u0022:\u002228g\u0022,\u0022driverCores\u0022:4,\u0022executorMemory\u0022:\u002228g\u0022,\u0022executorCores\u0022:4,\u0022numExecutors\u0022:3,\u0022conf\u0022:null},\u0022metadata\u0022:{\u0022language_info\u0022:{\u0022name\u0022:\u0022python\u0022},\u0022a365ComputeOptions\u0022:{\u0022id\u0022:\u0022/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/bigDataPools/testportal\u0022,\u0022name\u0022:\u0022testportal\u0022,\u0022type\u0022:\u0022Spark\u0022,\u0022endpoint\u0022:\u0022https://testsynapseworkspace.dev.azuresynapse.net/livyApi/versions/2019-11-01-preview/sparkPools/testportal\u0022,\u0022auth\u0022:{\u0022type\u0022:\u0022AAD\u0022,\u0022authResource\u0022:\u0022https://dev.azuresynapse.net\u0022},\u0022sparkVersion\u0022:\u00222.4\u0022,\u0022nodeCount\u0022:3,\u0022cores\u0022:8,\u0022memory\u0022:56,\u0022extraHeader\u0022:{}},\u0022sessionKeepAliveTimeout\u0022:15},\u0022cells\u0022:[],\u0022folder\u0022:null}},{\u0022id\u0022:\u0022/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/dongwwanb23\u0022,\u0022name\u0022:\u0022dongwwanb23\u0022,\u0022type\u0022:\u0022Microsoft.Synapse/workspaces/notebooks\u0022,\u0022etag\u0022:\u00225f0005d3-0000-0100-0000-5f06bc3e0000\u0022,\u0022properties\u0022:{\u0022nbformat\u0022:4,\u0022nbformat_minor\u0022:2,\u0022entityState\u0022:null,\u0022renameOperationDetails\u0022:null,\u0022bigDataPool\u0022:{\u0022referenceName\u0022:\u0022testportal\u0022,\u0022type\u0022:\u0022BigDataPoolReference\u0022},\u0022sessionProperties\u0022:{\u0022driverMemory\u0022:\u002228g\u0022,\u0022driverCores\u0022:4,\u0022executorMemory\u0022:\u002228g\u0022,\u0022executorCores\u0022:4,\u0022numExecutors\u0022:2,\u0022conf\u0022:null},\u0022metadata\u0022:{\u0022language_info\u0022:{\u0022name\u0022:\u0022python\u0022},\u0022a365ComputeOptions\u0022:{\u0022id\u0022:\u0022/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/bigDataPools/testportal\u0022,\u0022name\u0022:\u0022testportal\u0022,\u0022type\u0022:\u0022Spark\u0022,\u0022endpoint\u0022:\u0022https://testsynapseworkspace.dev.azuresynapse.net/livyApi/versions/2019-11-01-preview/sparkPools/testportal\u0022,\u0022auth\u0022:{\u0022type\u0022:\u0022AAD\u0022,\u0022authResource\u0022:\u0022https://dev.azuresynapse.net\u0022},\u0022sparkVersion\u0022:\u00222.4\u0022,\u0022nodeCount\u0022:3,\u0022cores\u0022:8,\u0022memory\u0022:56,\u0022extraHeader\u0022:{}},\u0022sessionKeepAliveTimeout\u0022:30},\u0022cells\u0022:[],\u0022folder\u0022:null}},{\u0022id\u0022:\u0022/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/dongwwatestnb1446\u0022,\u0022name\u0022:\u0022dongwwatestnb1446\u0022,\u0022type\u0022:\u0022Microsoft.Synapse/workspaces/notebooks\u0022,\u0022etag\u0022:\u00225f0029d3-0000-0100-0000-5f06bd6a0000\u0022,\u0022properties\u0022:{\u0022nbformat\u0022:4,\u0022nbformat_minor\u0022:2,\u0022entityState\u0022:null,\u0022renameOperationDetails\u0022:null,\u0022bigDataPool\u0022:null,\u0022sessionProperties\u0022:{\u0022driverMemory\u0022:\u002228g\u0022,\u0022driverCores\u0022:4,\u0022executorMemory\u0022:\u002228g\u0022,\u0022executorCores\u0022:4,\u0022numExecutors\u0022:2,\u0022conf\u0022:null},\u0022metadata\u0022:{\u0022language_info\u0022:{\u0022name\u0022:\u0022python\u0022},\u0022a365ComputeOptions\u0022:null,\u0022sessionKeepAliveTimeout\u0022:30},\u0022cells\u0022:[],\u0022folder\u0022:null}},{\u0022id\u0022:\u0022/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/dongwwaCreateNbwithCell\u0022,\u0022name\u0022:\u0022dongwwaCreateNbwithCell\u0022,\u0022type\u0022:\u0022Microsoft.Synapse/workspaces/notebooks\u0022,\u0022etag\u0022:\u00220e00d468-0000-0100-0000-611a2f1e0000\u0022,\u0022properties\u0022:{\u0022nbformat\u0022:4,\u0022nbformat_minor\u0022:2,\u0022entityState\u0022:null,\u0022renameOperationDetails\u0022:null,\u0022bigDataPool\u0022:{\u0022referenceName\u0022:\u0022testportal\u0022,\u0022type\u0022:\u0022BigDataPoolReference\u0022},\u0022sessionProperties\u0022:{\u0022driverMemory\u0022:\u002228g\u0022,\u0022driverCores\u0022:4,\u0022executorMemory\u0022:\u002228g\u0022,\u0022executorCores\u0022:4,\u0022numExecutors\u0022:1,\u0022conf\u0022:{\u0022spark.dynamicAllocation.enabled\u0022:\u0022false\u0022,\u0022spark.dynamicAllocation.minExecutors\u0022:\u00221\u0022,\u0022spark.dynamicAllocation.maxExecutors\u0022:\u00221\u0022}},\u0022metadata\u0022:{\u0022language_info\u0022:{\u0022name\u0022:\u0022python\u0022},\u0022a365ComputeOptions\u0022:{\u0022id\u0022:\u0022/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/bigDataPools/testportal\u0022,\u0022name\u0022:\u0022testportal\u0022,\u0022type\u0022:\u0022Spark\u0022,\u0022endpoint\u0022:\u0022https://testsynapseworkspace.dev.azuresynapse.net/livyApi/versions/2019-11-01-preview/sparkPools/testportal\u0022,\u0022auth\u0022:{\u0022type\u0022:\u0022AAD\u0022,\u0022authResource\u0022:\u0022https://dev.azuresynapse.net\u0022},\u0022sparkVersion\u0022:\u00222.4\u0022,\u0022nodeCount\u0022:3,\u0022cores\u0022:8,\u0022memory\u0022:56,\u0022extraHeader\u0022:null},\u0022sessionKeepAliveTimeout\u0022:30,\u0022saveOutput\u0022:true,\u0022synapse_widget\u0022:{\u0022version\u0022:\u00220.1\u0022,\u0022state\u0022:{}},\u0022kernelspec\u0022:{\u0022name\u0022:\u0022synapse_pyspark\u0022,\u0022display_name\u0022:\u0022python\u0022}},\u0022cells\u0022:[{\u0022cell_type\u0022:\u0022code\u0022,\u0022metadata\u0022:{},\u0022source\u0022:[\u0022print(\u0027hello world\u0027)\u0022],\u0022attachments\u0022:null,\u0022outputs\u0022:[],\u0022execution_count\u0022:null}],\u0022folder\u0022:null}},{\u0022id\u0022:\u0022/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/Notebook1980347592\u0022,\u0022name\u0022:\u0022Notebook1980347592\u0022,\u0022type\u0022:\u0022Microsoft.Synapse/workspaces/notebooks\u0022,\u0022etag\u0022:\u002200001701-0000-0100-0000-600164550000\u0022,\u0022properties\u0022:{\u0022nbformat\u0022:-1,\u0022nbformat_minor\u0022:2,\u0022entityState\u0022:null,\u0022renameOperationDetails\u0022:null,\u0022bigDataPool\u0022:null,\u0022sessionProperties\u0022:null,\u0022metadata\u0022:{\u0022language_info\u0022:null,\u0022a365ComputeOptions\u0022:null,\u0022sessionKeepAliveTimeout\u0022:0},\u0022cells\u0022:[],\u0022folder\u0022:null}},{\u0022id\u0022:\u0022/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/Notebook1304984445\u0022,\u0022name\u0022:\u0022Notebook1304984445\u0022,\u0022type\u0022:\u0022Microsoft.Synapse/workspaces/notebooks\u0022,\u0022etag\u0022:\u002200004501-0000-0100-0000-600164960000\u0022,\u0022properties\u0022:{\u0022nbformat\u0022:0,\u0022nbformat_minor\u0022:0,\u0022entityState\u0022:null,\u0022renameOperationDetails\u0022:null,\u0022bigDataPool\u0022:null,\u0022sessionProperties\u0022:null,\u0022metadata\u0022:{\u0022language_info\u0022:null,\u0022a365ComputeOptions\u0022:null,\u0022sessionKeepAliveTimeout\u0022:0},\u0022cells\u0022:[],\u0022folder\u0022:null}},{\u0022id\u0022:\u0022/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/dwnb1218\u0022,\u0022name\u0022:\u0022dwnb1218\u0022,\u0022type\u0022:\u0022Microsoft.Synapse/workspaces/notebooks\u0022,\u0022etag\u0022:\u0022c2009a8b-0000-0100-0000-5fd32e170000\u0022,\u0022properties\u0022:{\u0022nbformat\u0022:4,\u0022nbformat_minor\u0022:2,\u0022entityState\u0022:null,\u0022renameOperationDetails\u0022:null,\u0022bigDataPool\u0022:null,\u0022sessionProperties\u0022:null,\u0022metadata\u0022:{\u0022language_info\u0022:{\u0022name\u0022:\u0022python\u0022},\u0022a365ComputeOptions\u0022:{\u0022id\u0022:\u0022/subscriptions/132ed640-b28a-4f12-b8b6-3792c4e9d55f/resourceGroups/z-ago-dhp-ana-ari-ew1-rg01/providers/Microsoft.Synapse/workspaces/synapseari002/bigDataPools/RunningPool\u0022,\u0022name\u0022:\u0022RunningPool\u0022,\u0022type\u0022:\u0022Spark\u0022,\u0022endpoint\u0022:\u0022https://synapseari002.dev.azuresynapse.net/livyApi/versions/2019-11-01-preview/sparkPools/RunningPool\u0022,\u0022auth\u0022:{\u0022type\u0022:\u0022AAD\u0022,\u0022authResource\u0022:\u0022https://dev.azuresynapse.net\u0022},\u0022sparkVersion\u0022:\u00222.4\u0022,\u0022nodeCount\u0022:3,\u0022cores\u0022:0,\u0022memory\u0022:0,\u0022extraHeader\u0022:null},\u0022sessionKeepAliveTimeout\u0022:0,\u0022sessionOptions\u0022:{\u0022driverMemory\u0022:\u002228g\u0022,\u0022driverCores\u0022:4,\u0022executorMemory\u0022:\u002228g\u0022,\u0022executorCores\u0022:4,\u0022numExecutors\u0022:2,\u0022keepAliveTimeout\u0022:30,\u0022conf\u0022:{\u0022spark.dynamicAllocation.enabled\u0022:\u0022false\u0022,\u0022spark.dynamicAllocation.minExecutors\u0022:\u00222\u0022,\u0022spark.dynamicAllocation.maxExecutors\u0022:\u00222\u0022}},\u0022saveOutput\u0022:true},\u0022cells\u0022:[{\u0022cell_type\u0022:\u0022code\u0022,\u0022metadata\u0022:{\u0022microsoft\u0022:{\u0022language\u0022:\u0022python1\u0022}},\u0022source\u0022:[\u0022%%pyspark\\r\\n\u0022,\u0022df = spark.read.load(\u0027abfss://synapse@zagodhpanaariew1sto02.dfs.core.windows.net/Data/COCKPIT_V0.csv\u0027, format=\u0027csv\u0027\\r\\n\u0022,\u0022## If\u202Fheader\u202Fexists\u202Funcomment\u202Fline\u202Fbelow\\r\\n\u0022,\u0022##, header=True\\r\\n\u0022,\u0022)\\r\\n\u0022,\u0022display(df.limit(10))\u0022],\u0022attachments\u0022:null,\u0022outputs\u0022:[],\u0022execution_count\u0022:null}],\u0022folder\u0022:null}},{\u0022id\u0022:\u0022/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/dwnb1219\u0022,\u0022name\u0022:\u0022dwnb1219\u0022,\u0022type\u0022:\u0022Microsoft.Synapse/workspaces/notebooks\u0022,\u0022etag\u0022:\u0022c2009f8b-0000-0100-0000-5fd32e6c0000\u0022,\u0022properties\u0022:{\u0022nbformat\u0022:4,\u0022nbformat_minor\u0022:2,\u0022entityState\u0022:null,\u0022renameOperationDetails\u0022:null,\u0022bigDataPool\u0022:null,\u0022sessionProperties\u0022:null,\u0022metadata\u0022:{\u0022language_info\u0022:{\u0022name\u0022:\u0022python\u0022},\u0022a365ComputeOptions\u0022:{\u0022id\u0022:\u0022/subscriptions/132ed640-b28a-4f12-b8b6-3792c4e9d55f/resourceGroups/z-ago-dhp-ana-ari-ew1-rg01/providers/Microsoft.Synapse/workspaces/synapseari002/bigDataPools/RunningPool\u0022,\u0022name\u0022:\u0022RunningPool\u0022,\u0022type\u0022:\u0022Spark\u0022,\u0022endpoint\u0022:\u0022https://synapseari002.dev.azuresynapse.net/livyApi/versions/2019-11-01-preview/sparkPools/RunningPool\u0022,\u0022auth\u0022:{\u0022type\u0022:\u0022AAD\u0022,\u0022authResource\u0022:\u0022https://dev.azuresynapse.net\u0022},\u0022sparkVersion\u0022:\u00222.4\u0022,\u0022nodeCount\u0022:3,\u0022cores\u0022:0,\u0022memory\u0022:0,\u0022extraHeader\u0022:null},\u0022sessionKeepAliveTimeout\u0022:0,\u0022sessionOptions\u0022:{\u0022driverMemory\u0022:\u002228g\u0022,\u0022driverCores\u0022:4,\u0022executorMemory\u0022:\u002228g\u0022,\u0022executorCores\u0022:4,\u0022numExecutors\u0022:2,\u0022keepAliveTimeout\u0022:30,\u0022conf\u0022:{\u0022spark.dynamicAllocation.enabled\u0022:\u0022false\u0022,\u0022spark.dynamicAllocation.minExecutors\u0022:\u00222\u0022,\u0022spark.dynamicAllocation.maxExecutors\u0022:\u00222\u0022}},\u0022saveOutput\u0022:true},\u0022cells\u0022:[{\u0022cell_type\u0022:\u0022code\u0022,\u0022metadata\u0022:{\u0022microsoft\u0022:{\u0022language\u0022:\u0022python1\u0022}},\u0022source\u0022:[\u0022%%pyspark\\r\\n\u0022,\u0022df = spark.read.load(\u0027abfss://synapse@zagodhpanaariew1sto02.dfs.core.windows.net/Data/COCKPIT_V0.csv\u0027, format=\u0027csv\u0027\\r\\n\u0022,\u0022## If\u202Fheader\u202Fexists\u202Funcomment\u202Fline\u202Fbelow\\r\\n\u0022,\u0022##, header=True\\r\\n\u0022,\u0022)\\r\\n\u0022,\u0022display(df.limit(10))\u0022],\u0022attachments\u0022:null,\u0022outputs\u0022:[],\u0022execution_count\u0022:null}],\u0022folder\u0022:null}},{\u0022id\u0022:\u0022/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/dwnb1232\u0022,\u0022name\u0022:\u0022dwnb1232\u0022,\u0022type\u0022:\u0022Microsoft.Synapse/workspaces/notebooks\u0022,\u0022etag\u0022:\u0022c200a08b-0000-0100-0000-5fd32eb70000\u0022,\u0022properties\u0022:{\u0022nbformat\u0022:4,\u0022nbformat_minor\u0022:2,\u0022entityState\u0022:null,\u0022renameOperationDetails\u0022:null,\u0022bigDataPool\u0022:null,\u0022sessionProperties\u0022:null,\u0022metadata\u0022:{\u0022language_info\u0022:{\u0022name\u0022:\u0022python\u0022},\u0022a365ComputeOptions\u0022:{\u0022id\u0022:\u0022/subscriptions/132ed640-b28a-4f12-b8b6-3792c4e9d55f/resourceGroups/z-ago-dhp-ana-ari-ew1-rg01/providers/Microsoft.Synapse/workspaces/synapseari002/bigDataPools/RunningPool\u0022,\u0022name\u0022:\u0022RunningPool\u0022,\u0022type\u0022:\u0022Spark\u0022,\u0022endpoint\u0022:\u0022https://synapseari002.dev.azuresynapse.net/livyApi/versions/2019-11-01-preview/sparkPools/RunningPool\u0022,\u0022auth\u0022:{\u0022type\u0022:\u0022AAD\u0022,\u0022authResource\u0022:\u0022https://dev.azuresynapse.net\u0022},\u0022sparkVersion\u0022:\u00222.4\u0022,\u0022nodeCount\u0022:3,\u0022cores\u0022:0,\u0022memory\u0022:0,\u0022extraHeader\u0022:null},\u0022sessionKeepAliveTimeout\u0022:0,\u0022sessionOptions\u0022:{\u0022driverMemory\u0022:\u002228g\u0022,\u0022driverCores\u0022:4,\u0022executorMemory\u0022:\u002228g\u0022,\u0022executorCores\u0022:4,\u0022numExecutors\u0022:2,\u0022keepAliveTimeout\u0022:30,\u0022conf\u0022:{\u0022spark.dynamicAllocation.enabled\u0022:\u0022false\u0022,\u0022spark.dynamicAllocation.minExecutors\u0022:\u00222\u0022,\u0022spark.dynamicAllocation.maxExecutors\u0022:\u00222\u0022}},\u0022saveOutput\u0022:true},\u0022cells\u0022:[{\u0022cell_type\u0022:\u0022code1\u0022,\u0022metadata\u0022:{\u0022microsoft\u0022:{\u0022language\u0022:\u0022python\u0022}},\u0022source\u0022:[\u0022%%pyspark\\r\\n\u0022,\u0022df = spark.read.load(\u0027abfss://synapse@zagodhpanaariew1sto02.dfs.core.windows.net/Data/COCKPIT_V0.csv\u0027, format=\u0027csv\u0027\\r\\n\u0022,\u0022## If\u202Fheader\u202Fexists\u202Funcomment\u202Fline\u202Fbelow\\r\\n\u0022,\u0022##, header=True\\r\\n\u0022,\u0022)\\r\\n\u0022,\u0022display(df.limit(10))\u0022],\u0022attachments\u0022:null,\u0022outputs\u0022:[],\u0022execution_count\u0022:null}],\u0022folder\u0022:null}},{\u0022id\u0022:\u0022/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/Notebook1655116845\u0022,\u0022name\u0022:\u0022Notebook1655116845\u0022,\u0022type\u0022:\u0022Microsoft.Synapse/workspaces/notebooks\u0022,\u0022etag\u0022:\u00221a0072ca-0000-0100-0000-5fd6ffec0000\u0022,\u0022properties\u0022:{\u0022nbformat\u0022:4,\u0022nbformat_minor\u0022:2,\u0022entityState\u0022:null,\u0022renameOperationDetails\u0022:null,\u0022bigDataPool\u0022:null,\u0022sessionProperties\u0022:null,\u0022metadata\u0022:{\u0022language_info\u0022:null,\u0022a365ComputeOptions\u0022:null,\u0022sessionKeepAliveTimeout\u0022:0},\u0022cells\u0022:[{\u0022cell_type\u0022:\u0022code\u0022,\u0022metadata\u0022:{},\u0022source\u0022:[\u0022from azureml.opendatasets import NycTlcYellow\\n\u0022,\u0022\\n\u0022,\u0022data = NycTlcYellow()\\n\u0022,\u0022df = data.to_spark_dataframe()\\n\u0022,\u0022# Display 10 rows\\n\u0022,\u0022display(df.limit(10))\u0022],\u0022attachments\u0022:null,\u0022outputs\u0022:[],\u0022execution_count\u0022:null}],\u0022folder\u0022:null}},{\u0022id\u0022:\u0022/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/Notebook598190831\u0022,\u0022name\u0022:\u0022Notebook598190831\u0022,\u0022type\u0022:\u0022Microsoft.Synapse/workspaces/notebooks\u0022,\u0022etag\u0022:\u00221a0074ca-0000-0100-0000-5fd6fff20000\u0022,\u0022properties\u0022:{\u0022nbformat\u0022:4,\u0022nbformat_minor\u0022:2,\u0022entityState\u0022:null,\u0022renameOperationDetails\u0022:null,\u0022bigDataPool\u0022:null,\u0022sessionProperties\u0022:null,\u0022metadata\u0022:{\u0022language_info\u0022:null,\u0022a365ComputeOptions\u0022:null,\u0022sessionKeepAliveTimeout\u0022:0},\u0022cells\u0022:[{\u0022cell_type\u0022:\u0022code\u0022,\u0022metadata\u0022:{},\u0022source\u0022:[\u0022from azureml.opendatasets import NycTlcYellow\\n\u0022,\u0022\\n\u0022,\u0022data = NycTlcYellow()\\n\u0022,\u0022df = data.to_spark_dataframe()\\n\u0022,\u0022# Display 10 rows\\n\u0022,\u0022display(df.limit(10))\u0022],\u0022attachments\u0022:null,\u0022outputs\u0022:[],\u0022execution_count\u0022:null}],\u0022folder\u0022:null}},{\u0022id\u0022:\u0022/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/Notebook1970176056\u0022,\u0022name\u0022:\u0022Notebook1970176056\u0022,\u0022type\u0022:\u0022Microsoft.Synapse/workspaces/notebooks\u0022,\u0022etag\u0022:\u00221a0076ca-0000-0100-0000-5fd700340000\u0022,\u0022properties\u0022:{\u0022nbformat\u0022:4,\u0022nbformat_minor\u0022:2,\u0022entityState\u0022:null,\u0022renameOperationDetails\u0022:null,\u0022bigDataPool\u0022:null,\u0022sessionProperties\u0022:null,\u0022metadata\u0022:{\u0022language_info\u0022:null,\u0022a365ComputeOptions\u0022:null,\u0022sessionKeepAliveTimeout\u0022:0},\u0022cells\u0022:[{\u0022cell_type\u0022:\u0022code\u0022,\u0022metadata\u0022:{},\u0022source\u0022:[\u0022from azureml.opendatasets import NycTlcYellow\\n\u0022,\u0022\\n\u0022,\u0022data = NycTlcYellow()\\n\u0022,\u0022df = data.to_spark_dataframe()\\n\u0022,\u0022# Display 10 rows\\n\u0022,\u0022display(df.limit(10))\u0022],\u0022attachments\u0022:null,\u0022outputs\u0022:[],\u0022execution_count\u0022:null}],\u0022folder\u0022:null}},{\u0022id\u0022:\u0022/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/Notebook1782019395\u0022,\u0022name\u0022:\u0022Notebook1782019395\u0022,\u0022type\u0022:\u0022Microsoft.Synapse/workspaces/notebooks\u0022,\u0022etag\u0022:\u00221a0078ca-0000-0100-0000-5fd700380000\u0022,\u0022properties\u0022:{\u0022nbformat\u0022:4,\u0022nbformat_minor\u0022:2,\u0022entityState\u0022:null,\u0022renameOperationDetails\u0022:null,\u0022bigDataPool\u0022:null,\u0022sessionProperties\u0022:null,\u0022metadata\u0022:{\u0022language_info\u0022:null,\u0022a365ComputeOptions\u0022:null,\u0022sessionKeepAliveTimeout\u0022:0},\u0022cells\u0022:[{\u0022cell_type\u0022:\u0022code\u0022,\u0022metadata\u0022:{},\u0022source\u0022:[\u0022from azureml.opendatasets import NycTlcYellow\\n\u0022,\u0022\\n\u0022,\u0022data = NycTlcYellow()\\n\u0022,\u0022df = data.to_spark_dataframe()\\n\u0022,\u0022# Display 10 rows\\n\u0022,\u0022display(df.limit(10))\u0022],\u0022attachments\u0022:null,\u0022outputs\u0022:[],\u0022execution_count\u0022:null}],\u0022folder\u0022:null}},{\u0022id\u0022:\u0022/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/Notebook407138930\u0022,\u0022name\u0022:\u0022Notebook407138930\u0022,\u0022type\u0022:\u0022Microsoft.Synapse/workspaces/notebooks\u0022,\u0022etag\u0022:\u00221a007bca-0000-0100-0000-5fd7021d0000\u0022,\u0022properties\u0022:{\u0022nbformat\u0022:4,\u0022nbformat_minor\u0022:2,\u0022entityState\u0022:null,\u0022renameOperationDetails\u0022:null,\u0022bigDataPool\u0022:null,\u0022sessionProperties\u0022:null,\u0022metadata\u0022:{\u0022language_info\u0022:null,\u0022a365ComputeOptions\u0022:null,\u0022sessionKeepAliveTimeout\u0022:0},\u0022cells\u0022:[{\u0022cell_type\u0022:\u0022code\u0022,\u0022metadata\u0022:{},\u0022source\u0022:[\u0022from azureml.opendatasets import NycTlcYellow\\n\u0022,\u0022\\n\u0022,\u0022data = NycTlcYellow()\\n\u0022,\u0022df = data.to_spark_dataframe()\\n\u0022,\u0022# Display 10 rows\\n\u0022,\u0022display(df.limit(10))\u0022],\u0022attachments\u0022:null,\u0022outputs\u0022:[],\u0022execution_count\u0022:null}],\u0022folder\u0022:null}},{\u0022id\u0022:\u0022/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/Notebook1964062232\u0022,\u0022name\u0022:\u0022Notebook1964062232\u0022,\u0022type\u0022:\u0022Microsoft.Synapse/workspaces/notebooks\u0022,\u0022etag\u0022:\u00221a007dca-0000-0100-0000-5fd702220000\u0022,\u0022properties\u0022:{\u0022nbformat\u0022:4,\u0022nbformat_minor\u0022:2,\u0022entityState\u0022:null,\u0022renameOperationDetails\u0022:null,\u0022bigDataPool\u0022:null,\u0022sessionProperties\u0022:null,\u0022metadata\u0022:{\u0022language_info\u0022:null,\u0022a365ComputeOptions\u0022:null,\u0022sessionKeepAliveTimeout\u0022:0},\u0022cells\u0022:[{\u0022cell_type\u0022:\u0022code\u0022,\u0022metadata\u0022:{},\u0022source\u0022:[\u0022from azureml.opendatasets import NycTlcYellow\\n\u0022,\u0022\\n\u0022,\u0022data = NycTlcYellow()\\n\u0022,\u0022df = data.to_spark_dataframe()\\n\u0022,\u0022# Display 10 rows\\n\u0022,\u0022display(df.limit(10))\u0022],\u0022attachments\u0022:null,\u0022outputs\u0022:[],\u0022execution_count\u0022:null}],\u0022folder\u0022:null}},{\u0022id\u0022:\u0022/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/Notebook1621408096\u0022,\u0022name\u0022:\u0022Notebook1621408096\u0022,\u0022type\u0022:\u0022Microsoft.Synapse/workspaces/notebooks\u0022,\u0022etag\u0022:\u00221a007fca-0000-0100-0000-5fd703dc0000\u0022,\u0022properties\u0022:{\u0022nbformat\u0022:4,\u0022nbformat_minor\u0022:2,\u0022entityState\u0022:null,\u0022renameOperationDetails\u0022:null,\u0022bigDataPool\u0022:null,\u0022sessionProperties\u0022:null,\u0022metadata\u0022:{\u0022language_info\u0022:null,\u0022a365ComputeOptions\u0022:null,\u0022sessionKeepAliveTimeout\u0022:0},\u0022cells\u0022:[{\u0022cell_type\u0022:\u0022code\u0022,\u0022metadata\u0022:{},\u0022source\u0022:[\u0022from azureml.opendatasets import NycTlcYellow\\n\u0022,\u0022\\n\u0022,\u0022data = NycTlcYellow()\\n\u0022,\u0022df = data.to_spark_dataframe()\\n\u0022,\u0022# Display 10 rows\\n\u0022,\u0022display(df.limit(10))\u0022],\u0022attachments\u0022:null,\u0022outputs\u0022:[],\u0022execution_count\u0022:null}],\u0022folder\u0022:null}},{\u0022id\u0022:\u0022/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/Notebook391889253\u0022,\u0022name\u0022:\u0022Notebook391889253\u0022,\u0022type\u0022:\u0022Microsoft.Synapse/workspaces/notebooks\u0022,\u0022etag\u0022:\u00221a0081ca-0000-0100-0000-5fd703e90000\u0022,\u0022properties\u0022:{\u0022nbformat\u0022:4,\u0022nbformat_minor\u0022:2,\u0022entityState\u0022:null,\u0022renameOperationDetails\u0022:null,\u0022bigDataPool\u0022:null,\u0022sessionProperties\u0022:null,\u0022metadata\u0022:{\u0022language_info\u0022:null,\u0022a365ComputeOptions\u0022:null,\u0022sessionKeepAliveTimeout\u0022:0},\u0022cells\u0022:[{\u0022cell_type\u0022:\u0022code\u0022,\u0022metadata\u0022:{},\u0022source\u0022:[\u0022from azureml.opendatasets import NycTlcYellow\\n\u0022,\u0022\\n\u0022,\u0022data = NycTlcYellow()\\n\u0022,\u0022df = data.to_spark_dataframe()\\n\u0022,\u0022# Display 10 rows\\n\u0022,\u0022display(df.limit(10))\u0022],\u0022attachments\u0022:null,\u0022outputs\u0022:[],\u0022execution_count\u0022:null}],\u0022folder\u0022:null}},{\u0022id\u0022:\u0022/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/dongwwanb\u0022,\u0022name\u0022:\u0022dongwwanb\u0022,\u0022type\u0022:\u0022Microsoft.Synapse/workspaces/notebooks\u0022,\u0022etag\u0022:\u00220e003468-0000-0100-0000-611a2ee30000\u0022,\u0022properties\u0022:{\u0022nbformat\u0022:4,\u0022nbformat_minor\u0022:0,\u0022entityState\u0022:null,\u0022renameOperationDetails\u0022:null,\u0022bigDataPool\u0022:null,\u0022sessionProperties\u0022:{\u0022driverMemory\u0022:\u002228g\u0022,\u0022driverCores\u0022:4,\u0022executorMemory\u0022:\u002228g\u0022,\u0022executorCores\u0022:4,\u0022numExecutors\u0022:2,\u0022conf\u0022:{\u0022spark.dynamicAllocation.enabled\u0022:\u0022false\u0022,\u0022spark.dynamicAllocation.minExecutors\u0022:\u00222\u0022,\u0022spark.dynamicAllocation.maxExecutors\u0022:\u00222\u0022}},\u0022metadata\u0022:{\u0022language_info\u0022:{\u0022name\u0022:\u0022python\u0022},\u0022a365ComputeOptions\u0022:null,\u0022sessionKeepAliveTimeout\u0022:30,\u0022saveOutput\u0022:true,\u0022synapse_widget\u0022:{\u0022version\u0022:\u00220.1\u0022,\u0022state\u0022:{}},\u0022kernelspec\u0022:{\u0022name\u0022:\u0022synapse_pyspark\u0022,\u0022display_name\u0022:\u0022python\u0022}},\u0022cells\u0022:[{\u0022cell_type\u0022:\u0022markdown\u0022,\u0022metadata\u0022:{\u0022application/vnd.databricks.v1\u002Bcell\u0022:{\u0022title\u0022:\u0022\u0022,\u0022showTitle\u0022:false,\u0022inputWidgets\u0022:{},\u0022nuid\u0022:\u0022ec9689e6-a215-42cf-aa9f-85a38cca6362\u0022}},\u0022source\u0022:[\u0022Copyright (c) Microsoft Corporation. All rights reserved.\u0022],\u0022attachments\u0022:null,\u0022outputs\u0022:[],\u0022execution_count\u0022:null},{\u0022cell_type\u0022:\u0022code\u0022,\u0022metadata\u0022:{\u0022application/vnd.databricks.v1\u002Bcell\u0022:{\u0022title\u0022:\u0022\u0022,\u0022showTitle\u0022:false,\u0022inputWidgets\u0022:{},\u0022nuid\u0022:\u00224eb23c41-ffd4-412f-a887-102462d4d316\u0022}},\u0022source\u0022:[\u0022# Disable the verbose log\\n\u0022,\u0022import logging\\n\u0022,\u0022logging.getLogger(\\\u0022py4j\\\u0022).setLevel(logging.ERROR) \u0022],\u0022attachments\u0022:null,\u0022outputs\u0022:[{\u0022output_type\u0022:\u0022display_data\u0022,\u0022data\u0022:{\u0022text/html\u0022:\u0022\u003Cstyle scoped\u003E\\n .ansiout {\\n display: block;\\n unicode-bidi: embed;\\n white-space: pre-wrap;\\n word-wrap: break-word;\\n word-break: break-all;\\n font-family: \\\u0022Source Code Pro\\\u0022, \\\u0022Menlo\\\u0022, monospace;;\\n font-size: 13px;\\n color: #555;\\n margin-left: 4px;\\n line-height: 19px;\\n }\\n\u003C/style\u003E\\n\u003Cdiv class=\\\u0022ansiout\\\u0022\u003E\u003C/div\u003E\u0022},\u0022metadata\u0022:{\u0022application/vnd.databricks.v1\u002Boutput\u0022:{\u0022datasetInfos\u0022:[],\u0022data\u0022:\u0022\u003Cdiv class=\\\u0022ansiout\\\u0022\u003E\u003C/div\u003E\u0022,\u0022removedWidgets\u0022:[],\u0022addedWidgets\u0022:{},\u0022type\u0022:\u0022html\u0022,\u0022arguments\u0022:{}}}}],\u0022execution_count\u0022:0},{\u0022cell_type\u0022:\u0022code\u0022,\u0022metadata\u0022:{\u0022application/vnd.databricks.v1\u002Bcell\u0022:{\u0022title\u0022:\u0022\u0022,\u0022showTitle\u0022:false,\u0022inputWidgets\u0022:{},\u0022nuid\u0022:\u0022b5c38c38-a7f7-43f5-a15c-e387079ac8d7\u0022}},\u0022source\u0022:[\u0022\\n\u0022,\u0022!pip install \\\u0022https://retaildatastore.blob.core.windows.net/artifacts/cdmsdk/commondatamodel-objectmodel-1.0.10-py3-none-any.whl?sp=r\u0026st=2021-02-11T11:46:58Z\u0026se=2022-02-11T19:46:58Z\u0026spr=https\u0026sv=2020-02-10\u0026sr=b\u0026sig=XXXXXXXXXXXXXXXXXXXXXXXX\\\u0022\\n\u0022,\u0022\u0022],\u0022attachments\u0022:null,\u0022outputs\u0022:[{\u0022output_type\u0022:\u0022display_data\u0022,\u0022data\u0022:{\u0022text/html\u0022:\u0022\u003Cstyle scoped\u003E\\n .ansiout {\\n display: block;\\n unicode-bidi: embed;\\n white-space: pre-wrap;\\n word-wrap: break-word;\\n word-break: break-all;\\n font-family: \\\u0022Source Code Pro\\\u0022, \\\u0022Menlo\\\u0022, monospace;;\\n font-size: 13px;\\n color: #555;\\n margin-left: 4px;\\n line-height: 19px;\\n }\\n\u003C/style\u003E\\n\u003Cdiv class=\\\u0022ansiout\\\u0022\u003E\u003C/div\u003E\u0022},\u0022metadata\u0022:{\u0022application/vnd.databricks.v1\u002Boutput\u0022:{\u0022datasetInfos\u0022:[],\u0022data\u0022:\u0022\u003Cdiv class=\\\u0022ansiout\\\u0022\u003E\u003C/div\u003E\u0022,\u0022removedWidgets\u0022:[],\u0022addedWidgets\u0022:{},\u0022type\u0022:\u0022html\u0022,\u0022arguments\u0022:{}}}}],\u0022execution_count\u0022:0},{\u0022cell_type\u0022:\u0022code\u0022,\u0022metadata\u0022:{\u0022application/vnd.databricks.v1\u002Bcell\u0022:{\u0022title\u0022:\u0022\u0022,\u0022showTitle\u0022:false,\u0022inputWidgets\u0022:{},\u0022nuid\u0022:\u0022b255d876-363a-446e-a0fa-e51f866efa77\u0022}},\u0022source\u0022:[\u0022\\n\u0022,\u0022\\n\u0022,\u0022# Generic imports\\n\u0022,\u0022import dotenv\\n\u0022,\u0022import json\\n\u0022,\u0022import numpy as np\\n\u0022,\u0022import os\\n\u0022,\u0022import fnmatch\\n\u0022,\u0022import shutil\\n\u0022,\u0022import random\\n\u0022,\u0022import string\\n\u0022,\u0022import pandas as pd\\n\u0022,\u0022import requests\\n\u0022,\u0022import asyncio\\n\u0022,\u0022import copy\\n\u0022,\u0022import functools\\n\u0022,\u0022import pathlib\\n\u0022,\u0022import string\\n\u0022,\u0022from datetime import datetime, timezone\\n\u0022,\u0022\\n\u0022,\u0022# Spark imports\\n\u0022,\u0022from pyspark.sql import SparkSession, SQLContext\\n\u0022,\u0022from pyspark.sql.types import *\\n\u0022,\u0022from pyspark.sql import functions as F\\n\u0022,\u0022\\n\u0022,\u0022# Recommenders imports\\n\u0022,\u0022# from azureiai.reco_utils.dataset.spark_splitters import spark_random_split\\n\u0022,\u0022# from azureiai.reco_utils.evaluation.spark_evaluation import (\\n\u0022,\u0022# SparkRankingEvaluation,\\n\u0022,\u0022# SparkRatingEvaluation,\\n\u0022,\u0022# )\\n\u0022,\u0022from pysarplus import SARPlus\\n\u0022,\u0022from azureiai.retail.cdm2ai.reader import CONFIG\\n\u0022,\u0022\\n\u0022,\u0022# AzureML imports\\n\u0022,\u0022import azureml.core\\n\u0022,\u0022from azureml.core.runconfig import JarLibrary\\n\u0022,\u0022from azureml.core.compute import ComputeTarget, DatabricksCompute\\n\u0022,\u0022from azureml.pipeline.steps import DatabricksStep\\n\u0022,\u0022from azureml.core.datastore import Datastore\\n\u0022,\u0022from azureml.data.data_reference import DataReference\\n\u0022,\u0022from azureml.core import Workspace\\n\u0022,\u0022from azureml.core.run import Run\\n\u0022,\u0022from azureml.core.experiment import Experiment\\n\u0022,\u0022from azureml.core import Environment\\n\u0022,\u0022from azureml.core.environment import CondaDependencies\\n\u0022,\u0022from azureml.core.environment import SparkPackage\\n\u0022,\u0022from azureml.core.model import Model\\n\u0022,\u0022from azureml.core.webservice import Webservice\\n\u0022,\u0022\\n\u0022,\u0022# Cosmos DB imports\\n\u0022,\u0022# Install Cosmos DB connector from: https://docs.databricks.com/data/data-sources/azure/cosmosdb-connector.html\\n\u0022,\u0022from azure.common.client_factory import get_client_from_json_dict\\n\u0022,\u0022\\n\u0022,\u0022# CDM imports\\n\u0022,\u0022from cdm.storage import ADLSAdapter\\n\u0022,\u0022from cdm.objectmodel import CdmCorpusDefinition, CdmManifestDefinition\\n\u0022,\u0022from cdm.persistence.cdmfolder import ManifestPersistence\\n\u0022,\u0022from cdm.persistence.cdmfolder.types import ManifestContent\\n\u0022,\u0022from cdm.storage import LocalAdapter, ADLSAdapter\\n\u0022,\u0022from cdm.utilities import time_utils\\n\u0022,\u0022\\n\u0022,\u0022from cdm.utilities.string_utils import kvprint\\n\u0022,\u0022\\n\u0022,\u0022# AKS imports\\n\u0022,\u0022from azureml.core.compute import AksCompute\\n\u0022,\u0022from azureml.core.compute_target import ComputeTargetException\\n\u0022,\u0022from azureml.core.webservice import AksWebservice\\n\u0022,\u0022from azureml.exceptions import WebserviceException\\n\u0022,\u0022from azureml.core.model import InferenceConfig\\n\u0022,\u0022\\n\u0022,\u0022\u0022],\u0022attachments\u0022:null,\u0022outputs\u0022:[{\u0022output_type\u0022:\u0022display_data\u0022,\u0022data\u0022:{\u0022text/html\u0022:\u0022\u003Cstyle scoped\u003E\\n .ansiout {\\n display: block;\\n unicode-bidi: embed;\\n white-space: pre-wrap;\\n word-wrap: break-word;\\n word-break: break-all;\\n font-family: \\\u0022Source Code Pro\\\u0022, \\\u0022Menlo\\\u0022, monospace;;\\n font-size: 13px;\\n color: #555;\\n margin-left: 4px;\\n line-height: 19px;\\n }\\n\u003C/style\u003E\\n\u003Cdiv class=\\\u0022ansiout\\\u0022\u003E\u003C/div\u003E\u0022},\u0022metadata\u0022:{\u0022application/vnd.databricks.v1\u002Boutput\u0022:{\u0022datasetInfos\u0022:[],\u0022data\u0022:\u0022\u003Cdiv class=\\\u0022ansiout\\\u0022\u003E\u003C/div\u003E\u0022,\u0022removedWidgets\u0022:[],\u0022addedWidgets\u0022:{},\u0022type\u0022:\u0022html\u0022,\u0022arguments\u0022:{}}}}],\u0022execution_count\u0022:0},{\u0022cell_type\u0022:\u0022code\u0022,\u0022metadata\u0022:{\u0022application/vnd.databricks.v1\u002Bcell\u0022:{\u0022title\u0022:\u0022\u0022,\u0022showTitle\u0022:false,\u0022inputWidgets\u0022:{},\u0022nuid\u0022:\u0022bb6041f1-a825-41ae-ba4d-de6dff6e361a\u0022}},\u0022source\u0022:[\u0022# Global variables\\n\u0022,\u0022# NOTE these variables are visible in the scope of the entire pipeline\\n\u0022,\u0022\\n\u0022,\u0022# Load the .env file to manage persistent variables\\n\u0022,\u0022_GLOBAL_DOTENV_PATH = pathlib.Path(dotenv.find_dotenv(\\n\u0022,\u0022 filename=\\\u0022/dbfs/FileStore/.env\\\u0022,\\n\u0022,\u0022 raise_error_if_not_found=True\\n\u0022,\u0022))\\n\u0022,\u0022\\n\u0022,\u0022# -------------------------------------------------------------------------\\n\u0022,\u0022# Azure general variables\\n\u0022,\u0022# -------------------------------------------------------------------------\\n\u0022,\u0022_GLOBAL_SUBSCRIPTION_ID = dotenv.get_key(_GLOBAL_DOTENV_PATH, \\\u0022subscription_id\\\u0022)\\n\u0022,\u0022_GLOBAL_RESOURCE_GROUP = dotenv.get_key(_GLOBAL_DOTENV_PATH, \\\u0022resource_group\\\u0022)\\n\u0022,\u0022_GLOBAL_CONFIG_DICT = {\\n\u0022,\u0022 \\\u0022clientIdKey\\\u0022: \\\u0022sp_client_id\\\u0022,\\n\u0022,\u0022 \\\u0022clientSecretKey\\\u0022: \\\u0022sp_password\\\u0022,\\n\u0022,\u0022 \\\u0022clientId\\\u0022: dbutils.secrets.get(scope=\\\u0022secrets\\\u0022, key=\\\u0022sp_client_id\\\u0022),\\n\u0022,\u0022 \\\u0022clientSecret\\\u0022: dbutils.secrets.get(scope=\\\u0022secrets\\\u0022, key=\\\u0022sp_password\\\u0022),\\n\u0022,\u0022 \\\u0022subscriptionId\\\u0022: _GLOBAL_SUBSCRIPTION_ID,\\n\u0022,\u0022 \\\u0022tenantId\\\u0022: dotenv.get_key(_GLOBAL_DOTENV_PATH, \\\u0022tenant_id\\\u0022),\\n\u0022,\u0022 \\\u0022activeDirectoryEndpointUrl\\\u0022: \\\u0022https://login.microsoftonline.com\\\u0022,\\n\u0022,\u0022 \\\u0022resourceManagerEndpointUrl\\\u0022: \\\u0022https://management.azure.com/\\\u0022,\\n\u0022,\u0022 \\\u0022activeDirectoryGraphResourceId\\\u0022: \\\u0022https://graph.windows.net/\\\u0022,\\n\u0022,\u0022 \\\u0022sqlManagementEndpointUrl\\\u0022: \\\u0022https://management.core.windows.net:8443/\\\u0022,\\n\u0022,\u0022 \\\u0022galleryEndpointUrl\\\u0022: \\\u0022https://gallery.azure.com/\\\u0022,\\n\u0022,\u0022 \\\u0022managementEndpointUrl\\\u0022: \\\u0022https://management.core.windows.net/\\\u0022\\n\u0022,\u0022}\\n\u0022,\u0022\\n\u0022,\u0022# -------------------------------------------------------------------------\\n\u0022,\u0022# ADLS variables\\n\u0022,\u0022# -------------------------------------------------------------------------\\n\u0022,\u0022_GLOBAL_ADLS_ACCOUNT = dotenv.get_key(_GLOBAL_DOTENV_PATH, \\\u0022data_account\\\u0022)\\n\u0022,\u0022_GLOBAL_ADLS_CONTAINER = dotenv.get_key(_GLOBAL_DOTENV_PATH, \\\u0022data_container\\\u0022)\\n\u0022,\u0022_GLOBAL_ADLS_APPID = _GLOBAL_CONFIG_DICT[\\\u0022clientId\\\u0022]\\n\u0022,\u0022_GLOBAL_ADLS_DIRID = _GLOBAL_CONFIG_DICT[\\\u0022tenantId\\\u0022]\\n\u0022,\u0022_GLOBAL_ADLS_SECRET = _GLOBAL_CONFIG_DICT[\\\u0022clientSecret\\\u0022]\\n\u0022,\u0022_GLOBAL_ADLS_HOSTNAME = f\u0027{_GLOBAL_ADLS_ACCOUNT}.dfs.core.windows.net\u0027\\n\u0022,\u0022_GLOBAL_ADLS_DICT = {\\n\u0022,\u0022 \\\u0022adls_source\\\u0022: \\\u0022abfss://{0}@{1}.dfs.core.windows.net\\\u0022.format(_GLOBAL_ADLS_CONTAINER, _GLOBAL_ADLS_ACCOUNT),\\n\u0022,\u0022 \\\u0022oauth_endpoint\\\u0022: \\\u0022https://login.microsoftonline.com/{0}/oauth2/token\\\u0022.format(_GLOBAL_CONFIG_DICT[\\\u0022tenantId\\\u0022]),\\n\u0022,\u0022 \\\u0022adls_dfs_endpoint\\\u0022: \\\u0022{0}.dfs.core.windows.net\\\u0022.format(_GLOBAL_ADLS_ACCOUNT),\\n\u0022,\u0022 \\\u0022adls_container_mount_point\\\u0022: \\\u0022/mnt/{0}\\\u0022.format(_GLOBAL_ADLS_CONTAINER),\\n\u0022,\u0022 \\\u0022adls_resource_type\\\u0022: \\\u0022https://storage.azure.com\\\u0022,\\n\u0022,\u0022 \\\u0022adls_mount_root\\\u0022: \\\u0022/mnt\\\u0022,\\n\u0022,\u0022 \\\u0022adls_model_cache\\\u0022: \\\u0022dbfs:/mnt/{0}/cache\\\u0022.format(_GLOBAL_ADLS_CONTAINER)\\n\u0022,\u0022}\\n\u0022,\u0022\\n\u0022,\u0022# -------------------------------------------------------------------------\\n\u0022,\u0022# COSMOS DB variables\\n\u0022,\u0022# -------------------------------------------------------------------------\\n\u0022,\u0022_GLOBAL_DB_SECRETS = {\\n\u0022,\u0022 \\\u0022Endpoint\\\u0022: \\\u0022https://{0}.documents.azure.com:443/\\\u0022.format(dotenv.get_key(_GLOBAL_DOTENV_PATH, \\\u0022azure_cosmosdb_account_name\\\u0022)),\\n\u0022,\u0022 \\\u0022Masterkey\\\u0022: dbutils.secrets.get(scope=\\\u0022secrets\\\u0022, key=\\\u0022cosmosdb_primary_master_key\\\u0022),\\n\u0022,\u0022 \\\u0022Database\\\u0022: dotenv.get_key(_GLOBAL_DOTENV_PATH, \\\u0022azure_cosmosdb_database\\\u0022),\\n\u0022,\u0022 \\\u0022Collection\\\u0022: dotenv.get_key(_GLOBAL_DOTENV_PATH, \\\u0022azure_cosmosdb_container\\\u0022),\\n\u0022,\u0022 \\\u0022Upsert\\\u0022: True\\n\u0022,\u0022}\\n\u0022,\u0022\\n\u0022,\u0022# -------------------------------------------------------------------------\\n\u0022,\u0022# Data variables\\n\u0022,\u0022# -------------------------------------------------------------------------\\n\u0022,\u0022_GLOBAL_DATA_ROOT = dotenv.get_key(_GLOBAL_DOTENV_PATH, \\\u0022physical_data_model_directory\\\u0022)\\n\u0022,\u0022_GLOBAL_TPC_RAW_ROOT = \u0027tpcds-raw-data\u0027\\n\u0022,\u0022_GLOBAL_IDM_SCHEMA_ROOT = dotenv.get_key(_GLOBAL_DOTENV_PATH, \\\u0022logical_data_model_directory\\\u0022)\\n\u0022,\u0022_GLOBAL_DATA_NAME = dotenv.get_key(_GLOBAL_DOTENV_PATH, \\\u0022data_name\\\u0022)\\n\u0022,\u0022_GLOBAL_ADAPTER_PARTIAL = functools.partial(\\n\u0022,\u0022 ADLSAdapter,\\n\u0022,\u0022 hostname=_GLOBAL_ADLS_HOSTNAME,\\n\u0022,\u0022 tenant=_GLOBAL_ADLS_DIRID,\\n\u0022,\u0022 client_id=_GLOBAL_ADLS_APPID,\\n\u0022,\u0022 secret=_GLOBAL_ADLS_SECRET\\n\u0022,\u0022)\\n\u0022,\u0022_GLOBAL_CONFIG_JSON = copy.deepcopy(CONFIG)\\n\u0022,\u0022_GLOBAL_CONFIG_JSON[\\\u0022adls\\\u0022][\\\u0022account\\\u0022] = _GLOBAL_ADLS_ACCOUNT\\n\u0022,\u0022_GLOBAL_CONFIG_JSON[\\\u0022adls\\\u0022][\\\u0022container\\\u0022] = _GLOBAL_ADLS_CONTAINER\\n\u0022,\u0022_GLOBAL_CONFIG_JSON[\\\u0022adls\\\u0022][\\\u0022appid\\\u0022] = _GLOBAL_ADLS_APPID\\n\u0022,\u0022_GLOBAL_CONFIG_JSON[\\\u0022adls\\\u0022][\\\u0022dirid\\\u0022] = _GLOBAL_ADLS_DIRID\\n\u0022,\u0022_GLOBAL_CONFIG_JSON[\\\u0022adls\\\u0022][\\\u0022secret\\\u0022] = _GLOBAL_ADLS_SECRET\\n\u0022,\u0022_GLOBAL_CONFIG_JSON[\\\u0022adls\\\u0022][\\\u0022hostname\\\u0022] = _GLOBAL_ADLS_HOSTNAME\\n\u0022,\u0022_GLOBAL_CONFIG_JSON[\\\u0022cdm\\\u0022][\\\u0022data_root\\\u0022] = _GLOBAL_DATA_ROOT\\n\u0022,\u0022_GLOBAL_CONFIG_JSON[\\\u0022cdm\\\u0022][\\\u0022manifest_name\\\u0022] = \\\u0022{0}.manifest.cdm.json\\\u0022.format(dotenv.get_key(_GLOBAL_DOTENV_PATH, \\\u0022industry_data_model_name\\\u0022))\\n\u0022,\u0022_GLOBAL_INPUT_DATA_FILE = dotenv.get_key(_GLOBAL_DOTENV_PATH, \\\u0022processed_data_file\\\u0022)\\n\u0022,\u0022_GLOBAL_CUSTOMER_DATA_FILE = dotenv.get_key(_GLOBAL_DOTENV_PATH, \\\u0022processed_customer_data_file\\\u0022)\\n\u0022,\u0022\\n\u0022,\u0022# -------------------------------------------------------------------------\\n\u0022,\u0022# Model variables\\n\u0022,\u0022# -------------------------------------------------------------------------\\n\u0022,\u0022_GLOBAL_MODEL_LOCAL_CACHE = \u0027dbfs:/model/{0}\u0027.format(\\n\u0022,\u0022 \u0027\u0027.join(random.choice(string.ascii_lowercase) for i in range(10))\\n\u0022,\u0022)\\n\u0022,\u0022\\n\u0022,\u0022# -------------------------------------------------------------------------\\n\u0022,\u0022# Azure Machine Learning service variables\\n\u0022,\u0022# -------------------------------------------------------------------------\\n\u0022,\u0022_GLOBAL_AML_DICT = {\\n\u0022,\u0022 \\\u0022workspace_name\\\u0022: dotenv.get_key(_GLOBAL_DOTENV_PATH, \\\u0022azureml_workspace\\\u0022),\\n\u0022,\u0022 \\\u0022model_file_name\\\u0022: dotenv.get_key(_GLOBAL_DOTENV_PATH, \\\u0022azureml_model_file_name\\\u0022),\\n\u0022,\u0022 \\\u0022aml_experiment_name\\\u0022: dotenv.get_key(_GLOBAL_DOTENV_PATH, \\\u0022azureml_experiment_name\\\u0022)\\n\u0022,\u0022}\\n\u0022,\u0022\\n\u0022,\u0022# -------------------------------------------------------------------------\\n\u0022,\u0022# Azure Kubernetes Service variables\\n\u0022,\u0022# -------------------------------------------------------------------------\\n\u0022,\u0022_GLOBAL_AKS_NAME = dotenv.get_key(_GLOBAL_DOTENV_PATH, \\\u0022aks_cluster_name\\\u0022)\\n\u0022,\u0022_GLOBAL_SERVICE_NAME = \\\u0022aks-service-{0}\\\u0022.format(dotenv.get_key(_GLOBAL_DOTENV_PATH, \\\u0022unique_key\\\u0022))\\n\u0022,\u0022_GLOBAL_AKS_CONFIG_LEVEL = dotenv.get_key(_GLOBAL_DOTENV_PATH, \\\u0022aks_config_level\\\u0022)\\n\u0022,\u0022_GLOBAL_AKS_COMPUTE_TARGET_NAME = \u0027aks\u0027 \u002B dotenv.get_key(_GLOBAL_DOTENV_PATH, \\\u0022unique_key\\\u0022)\u0022],\u0022attachments\u0022:null,\u0022outputs\u0022:[{\u0022output_type\u0022:\u0022display_data\u0022,\u0022data\u0022:{\u0022text/html\u0022:\u0022\u003Cstyle scoped\u003E\\n .ansiout {\\n display: block;\\n unicode-bidi: embed;\\n white-space: pre-wrap;\\n word-wrap: break-word;\\n word-break: break-all;\\n font-family: \\\u0022Source Code Pro\\\u0022, \\\u0022Menlo\\\u0022, monospace;;\\n font-size: 13px;\\n color: #555;\\n margin-left: 4px;\\n line-height: 19px;\\n }\\n\u003C/style\u003E\\n\u003Cdiv class=\\\u0022ansiout\\\u0022\u003E\u003C/div\u003E\u0022},\u0022metadata\u0022:{\u0022application/vnd.databricks.v1\u002Boutput\u0022:{\u0022datasetInfos\u0022:[],\u0022data\u0022:\u0022\u003Cdiv class=\\\u0022ansiout\\\u0022\u003E\u003C/div\u003E\u0022,\u0022removedWidgets\u0022:[],\u0022addedWidgets\u0022:{},\u0022type\u0022:\u0022html\u0022,\u0022arguments\u0022:{}}}},{\u0022output_type\u0022:\u0022display_data\u0022,\u0022data\u0022:{\u0022text/html\u0022:\u0022\u003Cstyle scoped\u003E\\n .ansiout {\\n display: block;\\n unicode-bidi: embed;\\n white-space: pre-wrap;\\n word-wrap: break-word;\\n word-break: break-all;\\n font-family: \\\u0022Source Code Pro\\\u0022, \\\u0022Menlo\\\u0022, monospace;;\\n font-size: 13px;\\n color: #555;\\n margin-left: 4px;\\n line-height: 19px;\\n }\\n\u003C/style\u003E\\n\u003Cdiv class=\\\u0022ansiout\\\u0022\u003E\u003Cspan class=\\\u0022ansi-red-fg\\\u0022\u003E---------------------------------------------------------------------------\u003C/span\u003E\\n\u003Cspan class=\\\u0022ansi-red-fg\\\u0022\u003ENameError\u003C/span\u003E Traceback (most recent call last)\\n\u003Cspan class=\\\u0022ansi-green-fg\\\u0022\u003E\u0026lt;command-1159393715563018\u0026gt;\u003C/span\u003E in \u003Cspan class=\\\u0022ansi-cyan-fg\\\u0022\u003E\u0026lt;module\u0026gt;\u003C/span\u003E\\n\u003Cspan class=\\\u0022ansi-green-intense-fg ansi-bold\\\u0022\u003E 66\u003C/span\u003E _GLOBAL_DATA_NAME \u003Cspan class=\\\u0022ansi-blue-fg\\\u0022\u003E=\u003C/span\u003E dotenv\u003Cspan class=\\\u0022ansi-blue-fg\\\u0022\u003E.\u003C/span\u003Eget_key\u003Cspan class=\\\u0022ansi-blue-fg\\\u0022\u003E(\u003C/span\u003E_GLOBAL_DOTENV_PATH\u003Cspan class=\\\u0022ansi-blue-fg\\\u0022\u003E,\u003C/span\u003E \u003Cspan class=\\\u0022ansi-blue-fg\\\u0022\u003E\u0026#34;data_name\u0026#34;\u003C/span\u003E\u003Cspan class=\\\u0022ansi-blue-fg\\\u0022\u003E)\u003C/span\u003E\\n\u003Cspan class=\\\u0022ansi-green-intense-fg ansi-bold\\\u0022\u003E 67\u003C/span\u003E _GLOBAL_ADAPTER_PARTIAL = functools.partial(\\n\u003Cspan class=\\\u0022ansi-green-fg\\\u0022\u003E---\u0026gt; 68\u003C/span\u003E\u003Cspan class=\\\u0022ansi-red-fg\\\u0022\u003E \u003C/span\u003EADLSAdapter\u003Cspan class=\\\u0022ansi-blue-fg\\\u0022\u003E,\u003C/span\u003E\\n\u003Cspan class=\\\u0022ansi-green-intense-fg ansi-bold\\\u0022\u003E 69\u003C/span\u003E hostname\u003Cspan class=\\\u0022ansi-blue-fg\\\u0022\u003E=\u003C/span\u003E_GLOBAL_ADLS_HOSTNAME\u003Cspan class=\\\u0022ansi-blue-fg\\\u0022\u003E,\u003C/span\u003E\\n\u003Cspan class=\\\u0022ansi-green-intense-fg ansi-bold\\\u0022\u003E 70\u003C/span\u003E tenant\u003Cspan class=\\\u0022ansi-blue-fg\\\u0022\u003E=\u003C/span\u003E_GLOBAL_ADLS_DIRID\u003Cspan class=\\\u0022ansi-blue-fg\\\u0022\u003E,\u003C/span\u003E\\n\\n\u003Cspan class=\\\u0022ansi-red-fg\\\u0022\u003ENameError\u003C/span\u003E: name \u0026#39;ADLSAdapter\u0026#39; is not defined\u003C/div\u003E\u0022},\u0022metadata\u0022:{\u0022application/vnd.databricks.v1\u002Boutput\u0022:{\u0022type\u0022:\u0022ipynbError\u0022,\u0022data\u0022:\u0022\u003Cdiv class=\\\u0022ansiout\\\u0022\u003E\u003Cspan class=\\\u0022ansi-red-fg\\\u0022\u003E---------------------------------------------------------------------------\u003C/span\u003E\\n\u003Cspan class=\\\u0022ansi-red-fg\\\u0022\u003ENameError\u003C/span\u003E Traceback (most recent call last)\\n\u003Cspan class=\\\u0022ansi-green-fg\\\u0022\u003E\u0026lt;command-1159393715563018\u0026gt;\u003C/span\u003E in \u003Cspan class=\\\u0022ansi-cyan-fg\\\u0022\u003E\u0026lt;module\u0026gt;\u003C/span\u003E\\n\u003Cspan class=\\\u0022ansi-green-intense-fg ansi-bold\\\u0022\u003E 66\u003C/span\u003E _GLOBAL_DATA_NAME \u003Cspan class=\\\u0022ansi-blue-fg\\\u0022\u003E=\u003C/span\u003E dotenv\u003Cspan class=\\\u0022ansi-blue-fg\\\u0022\u003E.\u003C/span\u003Eget_key\u003Cspan class=\\\u0022ansi-blue-fg\\\u0022\u003E(\u003C/span\u003E_GLOBAL_DOTENV_PATH\u003Cspan class=\\\u0022ansi-blue-fg\\\u0022\u003E,\u003C/span\u003E \u003Cspan class=\\\u0022ansi-blue-fg\\\u0022\u003E\u0026#34;data_name\u0026#34;\u003C/span\u003E\u003Cspan class=\\\u0022ansi-blue-fg\\\u0022\u003E)\u003C/span\u003E\\n\u003Cspan class=\\\u0022ansi-green-intense-fg ansi-bold\\\u0022\u003E 67\u003C/span\u003E _GLOBAL_ADAPTER_PARTIAL = functools.partial(\\n\u003Cspan class=\\\u0022ansi-green-fg\\\u0022\u003E---\u0026gt; 68\u003C/span\u003E\u003Cspan class=\\\u0022ansi-red-fg\\\u0022\u003E \u003C/span\u003EADLSAdapter\u003Cspan class=\\\u0022ansi-blue-fg\\\u0022\u003E,\u003C/span\u003E\\n\u003Cspan class=\\\u0022ansi-green-intense-fg ansi-bold\\\u0022\u003E 69\u003C/span\u003E hostname\u003Cspan class=\\\u0022ansi-blue-fg\\\u0022\u003E=\u003C/span\u003E_GLOBAL_ADLS_HOSTNAME\u003Cspan class=\\\u0022ansi-blue-fg\\\u0022\u003E,\u003C/span\u003E\\n\u003Cspan class=\\\u0022ansi-green-intense-fg ansi-bold\\\u0022\u003E 70\u003C/span\u003E tenant\u003Cspan class=\\\u0022ansi-blue-fg\\\u0022\u003E=\u003C/span\u003E_GLOBAL_ADLS_DIRID\u003Cspan class=\\\u0022ansi-blue-fg\\\u0022\u003E,\u003C/span\u003E\\n\\n\u003Cspan class=\\\u0022ansi-red-fg\\\u0022\u003ENameError\u003C/span\u003E: name \u0026#39;ADLSAdapter\u0026#39; is not defined\u003C/div\u003E\u0022,\u0022errorSummary\u0022:\u0022\u003Cspan class=\\\u0022ansi-red-fg\\\u0022\u003ENameError\u003C/span\u003E: name \u0026#39;ADLSAdapter\u0026#39; is not defined\u0022,\u0022arguments\u0022:{}}}}],\u0022execution_count\u0022:0},{\u0022cell_type\u0022:\u0022code\u0022,\u0022metadata\u0022:{\u0022application/vnd.databricks.v1\u002Bcell\u0022:{\u0022title\u0022:\u0022\u0022,\u0022showTitle\u0022:false,\u0022inputWidgets\u0022:{},\u0022nuid\u0022:\u0022639595d4-4083-4f33-a7d4-15af60e7b3d6\u0022}},\u0022source\u0022:[\u0022# Spark initialization\\n\u0022,\u0022SUBMIT_ARGS = \\\u0022--packages eisber:sarplus:0.2.6 pyspark-shell\\\u0022\\n\u0022,\u0022os.environ[\\\u0022PYSPARK_SUBMIT_ARGS\\\u0022] = SUBMIT_ARGS\\n\u0022,\u0022\\n\u0022,\u0022spark = (\\n\u0022,\u0022 SparkSession.builder.appName(\\\u0022sample\\\u0022)\\n\u0022,\u0022 .master(\\\u0022local[*]\\\u0022)\\n\u0022,\u0022 .config(\\\u0022memory\\\u0022, \\\u00221G\\\u0022)\\n\u0022,\u0022 .config(\\\u0022spark.sql.shuffle.partitions\\\u0022, \\\u00221\\\u0022)\\n\u0022,\u0022 .config(\\\u0022spark.sql.crossJoin.enabled\\\u0022, True)\\n\u0022,\u0022 .config(\\\u0022spark.ui.enabled\\\u0022, False)\\n\u0022,\u0022 .getOrCreate()\\n\u0022,\u0022)\\n\u0022,\u0022\\n\u0022,\u0022# SqlContext helps with doing SQL like queries on spark DFs.\\n\u0022,\u0022sqlContext = SQLContext(spark)\\n\u0022,\u0022\\n\u0022,\u0022# Configure the Spark session to avoid using mount\\n\u0022,\u0022spark.conf.set(\\\u0022fs.azure.account.auth.type.{0}.dfs.core.windows.net\\\u0022.format(_GLOBAL_ADLS_ACCOUNT), \\\u0022OAuth\\\u0022)\\n\u0022,\u0022spark.conf.set(\\n\u0022,\u0022 \\\u0022fs.azure.account.oauth.provider.type.{0}.dfs.core.windows.net\\\u0022.format(_GLOBAL_ADLS_ACCOUNT),\\n\u0022,\u0022 \\\u0022org.apache.hadoop.fs.azurebfs.oauth2.ClientCredsTokenProvider\\\u0022,\\n\u0022,\u0022)\\n\u0022,\u0022spark.conf.set(\\n\u0022,\u0022 \\\u0022fs.azure.account.oauth2.client.id.{0}.dfs.core.windows.net\\\u0022.format(_GLOBAL_ADLS_ACCOUNT), _GLOBAL_ADLS_APPID\\n\u0022,\u0022)\\n\u0022,\u0022spark.conf.set(\\n\u0022,\u0022 \\\u0022fs.azure.account.oauth2.client.secret.{0}.dfs.core.windows.net\\\u0022.format(_GLOBAL_ADLS_ACCOUNT), _GLOBAL_ADLS_SECRET\\n\u0022,\u0022)\\n\u0022,\u0022spark.conf.set(\\n\u0022,\u0022 \\\u0022fs.azure.account.oauth2.client.endpoint.{0}.dfs.core.windows.net\\\u0022.format(_GLOBAL_ADLS_ACCOUNT),\\n\u0022,\u0022 \\\u0022https://login.microsoftonline.com/{0}/oauth2/token\\\u0022.format(_GLOBAL_ADLS_DIRID),\\n\u0022,\u0022)\u0022],\u0022attachments\u0022:null,\u0022outputs\u0022:[],\u0022execution_count\u0022:0},{\u0022cell_type\u0022:\u0022code\u0022,\u0022metadata\u0022:{\u0022application/vnd.databricks.v1\u002Bcell\u0022:{\u0022title\u0022:\u0022\u0022,\u0022showTitle\u0022:false,\u0022inputWidgets\u0022:{},\u0022nuid\u0022:\u0022614662de-2288-451e-b238-b6190156aac4\u0022}},\u0022source\u0022:[\u0022# Mount the remove ADLS container on the local databricks\\n\u0022,\u0022\\n\u0022,\u0022# Unmount an existing mount point\\n\u0022,\u0022try:\\n\u0022,\u0022 dbutils.fs.unmount(_GLOBAL_ADLS_DICT[\\\u0022adls_container_mount_point\\\u0022])\\n\u0022,\u0022except Exception as ex:\\n\u0022,\u0022 if \\\u0022Directory not mounted\\\u0022 not in str(ex):\\n\u0022,\u0022 raise Exception(\\\u0022Error in unmounting\\\u0022)\\n\u0022,\u0022\\n\u0022,\u0022# Mount wit the provided configuration information\\n\u0022,\u0022configs = {\\n\u0022,\u0022 \\\u0022fs.azure.account.auth.type\\\u0022: \\\u0022OAuth\\\u0022,\\n\u0022,\u0022 \\\u0022fs.azure.account.oauth.provider.type\\\u0022: \\\u0022org.apache.hadoop.fs.azurebfs.oauth2.ClientCredsTokenProvider\\\u0022,\\n\u0022,\u0022 \\\u0022fs.azure.account.oauth2.client.id\\\u0022: _GLOBAL_CONFIG_DICT[\\\u0022clientId\\\u0022],\\n\u0022,\u0022 \\\u0022fs.azure.account.oauth2.client.secret\\\u0022: _GLOBAL_CONFIG_DICT[\\\u0022clientSecret\\\u0022],\\n\u0022,\u0022 \\\u0022fs.azure.account.oauth2.client.endpoint\\\u0022: _GLOBAL_ADLS_DICT[\\\u0022oauth_endpoint\\\u0022],\\n\u0022,\u0022}\\n\u0022,\u0022dbutils.fs.mount(\\n\u0022,\u0022 source=_GLOBAL_ADLS_DICT[\\\u0022adls_source\\\u0022],\\n\u0022,\u0022 mount_point=_GLOBAL_ADLS_DICT[\\\u0022adls_container_mount_point\\\u0022],\\n\u0022,\u0022 extra_configs=configs,\\n\u0022,\u0022)\\n\u0022,\u0022\\n\u0022,\u0022# List the contents in the mounted directory\\n\u0022,\u0022dbutils.fs.ls(_GLOBAL_ADLS_DICT[\\\u0022adls_container_mount_point\\\u0022])\\n\u0022,\u0022\\n\u0022,\u0022# Make a new directory for model cache use\\n\u0022,\u0022dbutils.fs.mkdirs(_GLOBAL_ADLS_DICT[\\\u0022adls_model_cache\\\u0022])\u0022],\u0022attachments\u0022:null,\u0022outputs\u0022:[],\u0022execution_count\u0022:0}],\u0022folder\u0022:null}},{\u0022id\u0022:\u0022/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/dongwwanb1\u0022,\u0022name\u0022:\u0022dongwwanb1\u0022,\u0022type\u0022:\u0022Microsoft.Synapse/workspaces/notebooks\u0022,\u0022etag\u0022:\u00220000f8ed-0000-0100-0000-605349810000\u0022,\u0022properties\u0022:{\u0022nbformat\u0022:4,\u0022nbformat_minor\u0022:0,\u0022entityState\u0022:null,\u0022renameOperationDetails\u0022:null,\u0022bigDataPool\u0022:null,\u0022sessionProperties\u0022:null,\u0022metadata\u0022:{\u0022language_info\u0022:null,\u0022a365ComputeOptions\u0022:null,\u0022sessionKeepAliveTimeout\u0022:0,\u0022application/vnd.databricks.v1\u002Bnotebook\u0022:{\u0022notebookName\u0022:\u0022config\u0022,\u0022dashboards\u0022:[],\u0022language\u0022:\u0022python\u0022,\u0022widgets\u0022:{},\u0022notebookOrigID\u0022:1159393715563015}},\u0022cells\u0022:[{\u0022cell_type\u0022:\u0022markdown\u0022,\u0022metadata\u0022:{\u0022application/vnd.databricks.v1\u002Bcell\u0022:{\u0022title\u0022:\u0022\u0022,\u0022showTitle\u0022:false,\u0022inputWidgets\u0022:{},\u0022nuid\u0022:\u0022ec9689e6-a215-42cf-aa9f-85a38cca6362\u0022}},\u0022source\u0022:[\u0022Copyright (c) Microsoft Corporation. All rights reserved.\u0022],\u0022attachments\u0022:null,\u0022outputs\u0022:[],\u0022execution_count\u0022:null},{\u0022cell_type\u0022:\u0022code\u0022,\u0022metadata\u0022:{\u0022application/vnd.databricks.v1\u002Bcell\u0022:{\u0022title\u0022:\u0022\u0022,\u0022showTitle\u0022:false,\u0022inputWidgets\u0022:{},\u0022nuid\u0022:\u00224eb23c41-ffd4-412f-a887-102462d4d316\u0022}},\u0022source\u0022:[\u0022# Disable the verbose log\\nimport logging\\nlogging.getLogger(\\\u0022py4j\\\u0022).setLevel(logging.ERROR)\u0022],\u0022attachments\u0022:null,\u0022outputs\u0022:[{\u0022output_type\u0022:\u0022display_data\u0022,\u0022data\u0022:{\u0022text/html\u0022:[\u0022\u003Cstyle scoped\u003E\\n .ansiout {\\n display: block;\\n unicode-bidi: embed;\\n white-space: pre-wrap;\\n word-wrap: break-word;\\n word-break: break-all;\\n font-family: \\\u0022Source Code Pro\\\u0022, \\\u0022Menlo\\\u0022, monospace;;\\n font-size: 13px;\\n color: #555;\\n margin-left: 4px;\\n line-height: 19px;\\n }\\n\u003C/style\u003E\\n\u003Cdiv class=\\\u0022ansiout\\\u0022\u003E\u003C/div\u003E\u0022]},\u0022metadata\u0022:{\u0022application/vnd.databricks.v1\u002Boutput\u0022:{\u0022datasetInfos\u0022:[],\u0022data\u0022:\u0022\u003Cdiv class=\\\u0022ansiout\\\u0022\u003E\u003C/div\u003E\u0022,\u0022removedWidgets\u0022:[],\u0022addedWidgets\u0022:{},\u0022type\u0022:\u0022html\u0022,\u0022arguments\u0022:{}}}}],\u0022execution_count\u0022:0},{\u0022cell_type\u0022:\u0022code\u0022,\u0022metadata\u0022:{\u0022application/vnd.databricks.v1\u002Bcell\u0022:{\u0022title\u0022:\u0022\u0022,\u0022showTitle\u0022:false,\u0022inputWidgets\u0022:{},\u0022nuid\u0022:\u0022b5c38c38-a7f7-43f5-a15c-e387079ac8d7\u0022}},\u0022source\u0022:[\u0022\\n!pip install \\\u0022https://retaildatastore.blob.core.windows.net/artifacts/cdmsdk/commondatamodel-objectmodel-1.0.10-py3-none-any.whl?sp=r\u0026st=2021-02-11T11:46:58Z\u0026se=2022-02-11T19:46:58Z\u0026spr=https\u0026sv=2020-02-10\u0026sr=b\u0026sig=XXXXXXXXXXXXXXXXXXXXXXXX\\\u0022\\n\u0022],\u0022attachments\u0022:null,\u0022outputs\u0022:[{\u0022output_type\u0022:\u0022display_data\u0022,\u0022data\u0022:{\u0022text/html\u0022:[\u0022\u003Cstyle scoped\u003E\\n .ansiout {\\n display: block;\\n unicode-bidi: embed;\\n white-space: pre-wrap;\\n word-wrap: break-word;\\n word-break: break-all;\\n font-family: \\\u0022Source Code Pro\\\u0022, \\\u0022Menlo\\\u0022, monospace;;\\n font-size: 13px;\\n color: #555;\\n margin-left: 4px;\\n line-height: 19px;\\n }\\n\u003C/style\u003E\\n\u003Cdiv class=\\\u0022ansiout\\\u0022\u003E\u003C/div\u003E\u0022]},\u0022metadata\u0022:{\u0022application/vnd.databricks.v1\u002Boutput\u0022:{\u0022datasetInfos\u0022:[],\u0022data\u0022:\u0022\u003Cdiv class=\\\u0022ansiout\\\u0022\u003E\u003C/div\u003E\u0022,\u0022removedWidgets\u0022:[],\u0022addedWidgets\u0022:{},\u0022type\u0022:\u0022html\u0022,\u0022arguments\u0022:{}}}}],\u0022execution_count\u0022:0},{\u0022cell_type\u0022:\u0022code\u0022,\u0022metadata\u0022:{\u0022application/vnd.databricks.v1\u002Bcell\u0022:{\u0022title\u0022:\u0022\u0022,\u0022showTitle\u0022:false,\u0022inputWidgets\u0022:{},\u0022nuid\u0022:\u0022b255d876-363a-446e-a0fa-e51f866efa77\u0022}},\u0022source\u0022:[\u0022\\n\\n# Generic imports\\nimport dotenv\\nimport json\\nimport numpy as np\\nimport os\\nimport fnmatch\\nimport shutil\\nimport random\\nimport string\\nimport pandas as pd\\nimport requests\\nimport asyncio\\nimport copy\\nimport functools\\nimport pathlib\\nimport string\\nfrom datetime import datetime, timezone\\n\\n# Spark imports\\nfrom pyspark.sql import SparkSession, SQLContext\\nfrom pyspark.sql.types import *\\nfrom pyspark.sql import functions as F\\n\\n# Recommenders imports\\n# from azureiai.reco_utils.dataset.spark_splitters import spark_random_split\\n# from azureiai.reco_utils.evaluation.spark_evaluation import (\\n# SparkRankingEvaluation,\\n# SparkRatingEvaluation,\\n# )\\nfrom pysarplus import SARPlus\\nfrom azureiai.retail.cdm2ai.reader import CONFIG\\n\\n# AzureML imports\\nimport azureml.core\\nfrom azureml.core.runconfig import JarLibrary\\nfrom azureml.core.compute import ComputeTarget, DatabricksCompute\\nfrom azureml.pipeline.steps import DatabricksStep\\nfrom azureml.core.datastore import Datastore\\nfrom azureml.data.data_reference import DataReference\\nfrom azureml.core import Workspace\\nfrom azureml.core.run import Run\\nfrom azureml.core.experiment import Experiment\\nfrom azureml.core import Environment\\nfrom azureml.core.environment import CondaDependencies\\nfrom azureml.core.environment import SparkPackage\\nfrom azureml.core.model import Model\\nfrom azureml.core.webservice import Webservice\\n\\n# Cosmos DB imports\\n# Install Cosmos DB connector from: https://docs.databricks.com/data/data-sources/azure/cosmosdb-connector.html\\nfrom azure.common.client_factory import get_client_from_json_dict\\n\\n# CDM imports\\nfrom cdm.storage import ADLSAdapter\\nfrom cdm.objectmodel import CdmCorpusDefinition, CdmManifestDefinition\\nfrom cdm.persistence.cdmfolder import ManifestPersistence\\nfrom cdm.persistence.cdmfolder.types import ManifestContent\\nfrom cdm.storage import LocalAdapter, ADLSAdapter\\nfrom cdm.utilities import time_utils\\n\\nfrom cdm.utilities.string_utils import kvprint\\n\\n# AKS imports\\nfrom azureml.core.compute import AksCompute\\nfrom azureml.core.compute_target import ComputeTargetException\\nfrom azureml.core.webservice import AksWebservice\\nfrom azureml.exceptions import WebserviceException\\nfrom azureml.core.model import InferenceConfig\\n\\n\u0022],\u0022attachments\u0022:null,\u0022outputs\u0022:[{\u0022output_type\u0022:\u0022display_data\u0022,\u0022data\u0022:{\u0022text/html\u0022:[\u0022\u003Cstyle scoped\u003E\\n .ansiout {\\n display: block;\\n unicode-bidi: embed;\\n white-space: pre-wrap;\\n word-wrap: break-word;\\n word-break: break-all;\\n font-family: \\\u0022Source Code Pro\\\u0022, \\\u0022Menlo\\\u0022, monospace;;\\n font-size: 13px;\\n color: #555;\\n margin-left: 4px;\\n line-height: 19px;\\n }\\n\u003C/style\u003E\\n\u003Cdiv class=\\\u0022ansiout\\\u0022\u003E\u003C/div\u003E\u0022]},\u0022metadata\u0022:{\u0022application/vnd.databricks.v1\u002Boutput\u0022:{\u0022datasetInfos\u0022:[],\u0022data\u0022:\u0022\u003Cdiv class=\\\u0022ansiout\\\u0022\u003E\u003C/div\u003E\u0022,\u0022removedWidgets\u0022:[],\u0022addedWidgets\u0022:{},\u0022type\u0022:\u0022html\u0022,\u0022arguments\u0022:{}}}}],\u0022execution_count\u0022:0},{\u0022cell_type\u0022:\u0022code\u0022,\u0022metadata\u0022:{\u0022application/vnd.databricks.v1\u002Bcell\u0022:{\u0022title\u0022:\u0022\u0022,\u0022showTitle\u0022:false,\u0022inputWidgets\u0022:{},\u0022nuid\u0022:\u0022bb6041f1-a825-41ae-ba4d-de6dff6e361a\u0022}},\u0022source\u0022:[\u0022# Global variables\\n# NOTE these variables are visible in the scope of the entire pipeline\\n\\n# Load the .env file to manage persistent variables\\n_GLOBAL_DOTENV_PATH = pathlib.Path(dotenv.find_dotenv(\\n filename=\\\u0022/dbfs/FileStore/.env\\\u0022,\\n raise_error_if_not_found=True\\n))\\n\\n# -------------------------------------------------------------------------\\n# Azure general variables\\n# -------------------------------------------------------------------------\\n_GLOBAL_SUBSCRIPTION_ID = dotenv.get_key(_GLOBAL_DOTENV_PATH, \\\u0022subscription_id\\\u0022)\\n_GLOBAL_RESOURCE_GROUP = dotenv.get_key(_GLOBAL_DOTENV_PATH, \\\u0022resource_group\\\u0022)\\n_GLOBAL_CONFIG_DICT = {\\n \\\u0022clientIdKey\\\u0022: \\\u0022sp_client_id\\\u0022,\\n \\\u0022clientSecretKey\\\u0022: \\\u0022sp_password\\\u0022,\\n \\\u0022clientId\\\u0022: dbutils.secrets.get(scope=\\\u0022secrets\\\u0022, key=\\\u0022sp_client_id\\\u0022),\\n \\\u0022clientSecret\\\u0022: dbutils.secrets.get(scope=\\\u0022secrets\\\u0022, key=\\\u0022sp_password\\\u0022),\\n \\\u0022subscriptionId\\\u0022: _GLOBAL_SUBSCRIPTION_ID,\\n \\\u0022tenantId\\\u0022: dotenv.get_key(_GLOBAL_DOTENV_PATH, \\\u0022tenant_id\\\u0022),\\n \\\u0022activeDirectoryEndpointUrl\\\u0022: \\\u0022https://login.microsoftonline.com\\\u0022,\\n \\\u0022resourceManagerEndpointUrl\\\u0022: \\\u0022https://management.azure.com/\\\u0022,\\n \\\u0022activeDirectoryGraphResourceId\\\u0022: \\\u0022https://graph.windows.net/\\\u0022,\\n \\\u0022sqlManagementEndpointUrl\\\u0022: \\\u0022https://management.core.windows.net:8443/\\\u0022,\\n \\\u0022galleryEndpointUrl\\\u0022: \\\u0022https://gallery.azure.com/\\\u0022,\\n \\\u0022managementEndpointUrl\\\u0022: \\\u0022https://management.core.windows.net/\\\u0022\\n}\\n\\n# -------------------------------------------------------------------------\\n# ADLS variables\\n# -------------------------------------------------------------------------\\n_GLOBAL_ADLS_ACCOUNT = dotenv.get_key(_GLOBAL_DOTENV_PATH, \\\u0022data_account\\\u0022)\\n_GLOBAL_ADLS_CONTAINER = dotenv.get_key(_GLOBAL_DOTENV_PATH, \\\u0022data_container\\\u0022)\\n_GLOBAL_ADLS_APPID = _GLOBAL_CONFIG_DICT[\\\u0022clientId\\\u0022]\\n_GLOBAL_ADLS_DIRID = _GLOBAL_CONFIG_DICT[\\\u0022tenantId\\\u0022]\\n_GLOBAL_ADLS_SECRET = _GLOBAL_CONFIG_DICT[\\\u0022clientSecret\\\u0022]\\n_GLOBAL_ADLS_HOSTNAME = f\u0027{_GLOBAL_ADLS_ACCOUNT}.dfs.core.windows.net\u0027\\n_GLOBAL_ADLS_DICT = {\\n \\\u0022adls_source\\\u0022: \\\u0022abfss://{0}@{1}.dfs.core.windows.net\\\u0022.format(_GLOBAL_ADLS_CONTAINER, _GLOBAL_ADLS_ACCOUNT),\\n \\\u0022oauth_endpoint\\\u0022: \\\u0022https://login.microsoftonline.com/{0}/oauth2/token\\\u0022.format(_GLOBAL_CONFIG_DICT[\\\u0022tenantId\\\u0022]),\\n \\\u0022adls_dfs_endpoint\\\u0022: \\\u0022{0}.dfs.core.windows.net\\\u0022.format(_GLOBAL_ADLS_ACCOUNT),\\n \\\u0022adls_container_mount_point\\\u0022: \\\u0022/mnt/{0}\\\u0022.format(_GLOBAL_ADLS_CONTAINER),\\n \\\u0022adls_resource_type\\\u0022: \\\u0022https://storage.azure.com\\\u0022,\\n \\\u0022adls_mount_root\\\u0022: \\\u0022/mnt\\\u0022,\\n \\\u0022adls_model_cache\\\u0022: \\\u0022dbfs:/mnt/{0}/cache\\\u0022.format(_GLOBAL_ADLS_CONTAINER)\\n}\\n\\n# -------------------------------------------------------------------------\\n# COSMOS DB variables\\n# -------------------------------------------------------------------------\\n_GLOBAL_DB_SECRETS = {\\n \\\u0022Endpoint\\\u0022: \\\u0022https://{0}.documents.azure.com:443/\\\u0022.format(dotenv.get_key(_GLOBAL_DOTENV_PATH, \\\u0022azure_cosmosdb_account_name\\\u0022)),\\n \\\u0022Masterkey\\\u0022: dbutils.secrets.get(scope=\\\u0022secrets\\\u0022, key=\\\u0022cosmosdb_primary_master_key\\\u0022),\\n \\\u0022Database\\\u0022: dotenv.get_key(_GLOBAL_DOTENV_PATH, \\\u0022azure_cosmosdb_database\\\u0022),\\n \\\u0022Collection\\\u0022: dotenv.get_key(_GLOBAL_DOTENV_PATH, \\\u0022azure_cosmosdb_container\\\u0022),\\n \\\u0022Upsert\\\u0022: True\\n}\\n\\n# -------------------------------------------------------------------------\\n# Data variables\\n# -------------------------------------------------------------------------\\n_GLOBAL_DATA_ROOT = dotenv.get_key(_GLOBAL_DOTENV_PATH, \\\u0022physical_data_model_directory\\\u0022)\\n_GLOBAL_TPC_RAW_ROOT = \u0027tpcds-raw-data\u0027\\n_GLOBAL_IDM_SCHEMA_ROOT = dotenv.get_key(_GLOBAL_DOTENV_PATH, \\\u0022logical_data_model_directory\\\u0022)\\n_GLOBAL_DATA_NAME = dotenv.get_key(_GLOBAL_DOTENV_PATH, \\\u0022data_name\\\u0022)\\n_GLOBAL_ADAPTER_PARTIAL = functools.partial(\\n ADLSAdapter,\\n hostname=_GLOBAL_ADLS_HOSTNAME,\\n tenant=_GLOBAL_ADLS_DIRID,\\n client_id=_GLOBAL_ADLS_APPID,\\n secret=_GLOBAL_ADLS_SECRET\\n)\\n_GLOBAL_CONFIG_JSON = copy.deepcopy(CONFIG)\\n_GLOBAL_CONFIG_JSON[\\\u0022adls\\\u0022][\\\u0022account\\\u0022] = _GLOBAL_ADLS_ACCOUNT\\n_GLOBAL_CONFIG_JSON[\\\u0022adls\\\u0022][\\\u0022container\\\u0022] = _GLOBAL_ADLS_CONTAINER\\n_GLOBAL_CONFIG_JSON[\\\u0022adls\\\u0022][\\\u0022appid\\\u0022] = _GLOBAL_ADLS_APPID\\n_GLOBAL_CONFIG_JSON[\\\u0022adls\\\u0022][\\\u0022dirid\\\u0022] = _GLOBAL_ADLS_DIRID\\n_GLOBAL_CONFIG_JSON[\\\u0022adls\\\u0022][\\\u0022secret\\\u0022] = _GLOBAL_ADLS_SECRET\\n_GLOBAL_CONFIG_JSON[\\\u0022adls\\\u0022][\\\u0022hostname\\\u0022] = _GLOBAL_ADLS_HOSTNAME\\n_GLOBAL_CONFIG_JSON[\\\u0022cdm\\\u0022][\\\u0022data_root\\\u0022] = _GLOBAL_DATA_ROOT\\n_GLOBAL_CONFIG_JSON[\\\u0022cdm\\\u0022][\\\u0022manifest_name\\\u0022] = \\\u0022{0}.manifest.cdm.json\\\u0022.format(dotenv.get_key(_GLOBAL_DOTENV_PATH, \\\u0022industry_data_model_name\\\u0022))\\n_GLOBAL_INPUT_DATA_FILE = dotenv.get_key(_GLOBAL_DOTENV_PATH, \\\u0022processed_data_file\\\u0022)\\n_GLOBAL_CUSTOMER_DATA_FILE = dotenv.get_key(_GLOBAL_DOTENV_PATH, \\\u0022processed_customer_data_file\\\u0022)\\n\\n# -------------------------------------------------------------------------\\n# Model variables\\n# -------------------------------------------------------------------------\\n_GLOBAL_MODEL_LOCAL_CACHE = \u0027dbfs:/model/{0}\u0027.format(\\n \u0027\u0027.join(random.choice(string.ascii_lowercase) for i in range(10))\\n)\\n\\n# -------------------------------------------------------------------------\\n# Azure Machine Learning service variables\\n# -------------------------------------------------------------------------\\n_GLOBAL_AML_DICT = {\\n \\\u0022workspace_name\\\u0022: dotenv.get_key(_GLOBAL_DOTENV_PATH, \\\u0022azureml_workspace\\\u0022),\\n \\\u0022model_file_name\\\u0022: dotenv.get_key(_GLOBAL_DOTENV_PATH, \\\u0022azureml_model_file_name\\\u0022),\\n \\\u0022aml_experiment_name\\\u0022: dotenv.get_key(_GLOBAL_DOTENV_PATH, \\\u0022azureml_experiment_name\\\u0022)\\n}\\n\\n# -------------------------------------------------------------------------\\n# Azure Kubernetes Service variables\\n# -------------------------------------------------------------------------\\n_GLOBAL_AKS_NAME = dotenv.get_key(_GLOBAL_DOTENV_PATH, \\\u0022aks_cluster_name\\\u0022)\\n_GLOBAL_SERVICE_NAME = \\\u0022aks-service-{0}\\\u0022.format(dotenv.get_key(_GLOBAL_DOTENV_PATH, \\\u0022unique_key\\\u0022))\\n_GLOBAL_AKS_CONFIG_LEVEL = dotenv.get_key(_GLOBAL_DOTENV_PATH, \\\u0022aks_config_level\\\u0022)\\n_GLOBAL_AKS_COMPUTE_TARGET_NAME = \u0027aks\u0027 \u002B dotenv.get_key(_GLOBAL_DOTENV_PATH, \\\u0022unique_key\\\u0022)\u0022],\u0022attachments\u0022:null,\u0022outputs\u0022:[{\u0022output_type\u0022:\u0022display_data\u0022,\u0022data\u0022:{\u0022text/html\u0022:[\u0022\u003Cstyle scoped\u003E\\n .ansiout {\\n display: block;\\n unicode-bidi: embed;\\n white-space: pre-wrap;\\n word-wrap: break-word;\\n word-break: break-all;\\n font-family: \\\u0022Source Code Pro\\\u0022, \\\u0022Menlo\\\u0022, monospace;;\\n font-size: 13px;\\n color: #555;\\n margin-left: 4px;\\n line-height: 19px;\\n }\\n\u003C/style\u003E\\n\u003Cdiv class=\\\u0022ansiout\\\u0022\u003E\u003C/div\u003E\u0022]},\u0022metadata\u0022:{\u0022application/vnd.databricks.v1\u002Boutput\u0022:{\u0022datasetInfos\u0022:[],\u0022data\u0022:\u0022\u003Cdiv class=\\\u0022ansiout\\\u0022\u003E\u003C/div\u003E\u0022,\u0022removedWidgets\u0022:[],\u0022addedWidgets\u0022:{},\u0022type\u0022:\u0022html\u0022,\u0022arguments\u0022:{}}}},{\u0022output_type\u0022:\u0022display_data\u0022,\u0022data\u0022:{\u0022text/html\u0022:[\u0022\u003Cstyle scoped\u003E\\n .ansiout {\\n display: block;\\n unicode-bidi: embed;\\n white-space: pre-wrap;\\n word-wrap: break-word;\\n word-break: break-all;\\n font-family: \\\u0022Source Code Pro\\\u0022, \\\u0022Menlo\\\u0022, monospace;;\\n font-size: 13px;\\n color: #555;\\n margin-left: 4px;\\n line-height: 19px;\\n }\\n\u003C/style\u003E\\n\u003Cdiv class=\\\u0022ansiout\\\u0022\u003E\u003Cspan class=\\\u0022ansi-red-fg\\\u0022\u003E---------------------------------------------------------------------------\u003C/span\u003E\\n\u003Cspan class=\\\u0022ansi-red-fg\\\u0022\u003ENameError\u003C/span\u003E Traceback (most recent call last)\\n\u003Cspan class=\\\u0022ansi-green-fg\\\u0022\u003E\u0026lt;command-1159393715563018\u0026gt;\u003C/span\u003E in \u003Cspan class=\\\u0022ansi-cyan-fg\\\u0022\u003E\u0026lt;module\u0026gt;\u003C/span\u003E\\n\u003Cspan class=\\\u0022ansi-green-intense-fg ansi-bold\\\u0022\u003E 66\u003C/span\u003E _GLOBAL_DATA_NAME \u003Cspan class=\\\u0022ansi-blue-fg\\\u0022\u003E=\u003C/span\u003E dotenv\u003Cspan class=\\\u0022ansi-blue-fg\\\u0022\u003E.\u003C/span\u003Eget_key\u003Cspan class=\\\u0022ansi-blue-fg\\\u0022\u003E(\u003C/span\u003E_GLOBAL_DOTENV_PATH\u003Cspan class=\\\u0022ansi-blue-fg\\\u0022\u003E,\u003C/span\u003E \u003Cspan class=\\\u0022ansi-blue-fg\\\u0022\u003E\u0026#34;data_name\u0026#34;\u003C/span\u003E\u003Cspan class=\\\u0022ansi-blue-fg\\\u0022\u003E)\u003C/span\u003E\\n\u003Cspan class=\\\u0022ansi-green-intense-fg ansi-bold\\\u0022\u003E 67\u003C/span\u003E _GLOBAL_ADAPTER_PARTIAL = functools.partial(\\n\u003Cspan class=\\\u0022ansi-green-fg\\\u0022\u003E---\u0026gt; 68\u003C/span\u003E\u003Cspan class=\\\u0022ansi-red-fg\\\u0022\u003E \u003C/span\u003EADLSAdapter\u003Cspan class=\\\u0022ansi-blue-fg\\\u0022\u003E,\u003C/span\u003E\\n\u003Cspan class=\\\u0022ansi-green-intense-fg ansi-bold\\\u0022\u003E 69\u003C/span\u003E hostname\u003Cspan class=\\\u0022ansi-blue-fg\\\u0022\u003E=\u003C/span\u003E_GLOBAL_ADLS_HOSTNAME\u003Cspan class=\\\u0022ansi-blue-fg\\\u0022\u003E,\u003C/span\u003E\\n\u003Cspan class=\\\u0022ansi-green-intense-fg ansi-bold\\\u0022\u003E 70\u003C/span\u003E tenant\u003Cspan class=\\\u0022ansi-blue-fg\\\u0022\u003E=\u003C/span\u003E_GLOBAL_ADLS_DIRID\u003Cspan class=\\\u0022ansi-blue-fg\\\u0022\u003E,\u003C/span\u003E\\n\\n\u003Cspan class=\\\u0022ansi-red-fg\\\u0022\u003ENameError\u003C/span\u003E: name \u0026#39;ADLSAdapter\u0026#39; is not defined\u003C/div\u003E\u0022]},\u0022metadata\u0022:{\u0022application/vnd.databricks.v1\u002Boutput\u0022:{\u0022type\u0022:\u0022ipynbError\u0022,\u0022data\u0022:\u0022\u003Cdiv class=\\\u0022ansiout\\\u0022\u003E\u003Cspan class=\\\u0022ansi-red-fg\\\u0022\u003E---------------------------------------------------------------------------\u003C/span\u003E\\n\u003Cspan class=\\\u0022ansi-red-fg\\\u0022\u003ENameError\u003C/span\u003E Traceback (most recent call last)\\n\u003Cspan class=\\\u0022ansi-green-fg\\\u0022\u003E\u0026lt;command-1159393715563018\u0026gt;\u003C/span\u003E in \u003Cspan class=\\\u0022ansi-cyan-fg\\\u0022\u003E\u0026lt;module\u0026gt;\u003C/span\u003E\\n\u003Cspan class=\\\u0022ansi-green-intense-fg ansi-bold\\\u0022\u003E 66\u003C/span\u003E _GLOBAL_DATA_NAME \u003Cspan class=\\\u0022ansi-blue-fg\\\u0022\u003E=\u003C/span\u003E dotenv\u003Cspan class=\\\u0022ansi-blue-fg\\\u0022\u003E.\u003C/span\u003Eget_key\u003Cspan class=\\\u0022ansi-blue-fg\\\u0022\u003E(\u003C/span\u003E_GLOBAL_DOTENV_PATH\u003Cspan class=\\\u0022ansi-blue-fg\\\u0022\u003E,\u003C/span\u003E \u003Cspan class=\\\u0022ansi-blue-fg\\\u0022\u003E\u0026#34;data_name\u0026#34;\u003C/span\u003E\u003Cspan class=\\\u0022ansi-blue-fg\\\u0022\u003E)\u003C/span\u003E\\n\u003Cspan class=\\\u0022ansi-green-intense-fg ansi-bold\\\u0022\u003E 67\u003C/span\u003E _GLOBAL_ADAPTER_PARTIAL = functools.partial(\\n\u003Cspan class=\\\u0022ansi-green-fg\\\u0022\u003E---\u0026gt; 68\u003C/span\u003E\u003Cspan class=\\\u0022ansi-red-fg\\\u0022\u003E \u003C/span\u003EADLSAdapter\u003Cspan class=\\\u0022ansi-blue-fg\\\u0022\u003E,\u003C/span\u003E\\n\u003Cspan class=\\\u0022ansi-green-intense-fg ansi-bold\\\u0022\u003E 69\u003C/span\u003E hostname\u003Cspan class=\\\u0022ansi-blue-fg\\\u0022\u003E=\u003C/span\u003E_GLOBAL_ADLS_HOSTNAME\u003Cspan class=\\\u0022ansi-blue-fg\\\u0022\u003E,\u003C/span\u003E\\n\u003Cspan class=\\\u0022ansi-green-intense-fg ansi-bold\\\u0022\u003E 70\u003C/span\u003E tenant\u003Cspan class=\\\u0022ansi-blue-fg\\\u0022\u003E=\u003C/span\u003E_GLOBAL_ADLS_DIRID\u003Cspan class=\\\u0022ansi-blue-fg\\\u0022\u003E,\u003C/span\u003E\\n\\n\u003Cspan class=\\\u0022ansi-red-fg\\\u0022\u003ENameError\u003C/span\u003E: name \u0026#39;ADLSAdapter\u0026#39; is not defined\u003C/div\u003E\u0022,\u0022errorSummary\u0022:\u0022\u003Cspan class=\\\u0022ansi-red-fg\\\u0022\u003ENameError\u003C/span\u003E: name \u0026#39;ADLSAdapter\u0026#39; is not defined\u0022,\u0022arguments\u0022:{}}}}],\u0022execution_count\u0022:0},{\u0022cell_type\u0022:\u0022code\u0022,\u0022metadata\u0022:{\u0022application/vnd.databricks.v1\u002Bcell\u0022:{\u0022title\u0022:\u0022\u0022,\u0022showTitle\u0022:false,\u0022inputWidgets\u0022:{},\u0022nuid\u0022:\u0022639595d4-4083-4f33-a7d4-15af60e7b3d6\u0022}},\u0022source\u0022:[\u0022# Spark initialization\\nSUBMIT_ARGS = \\\u0022--packages eisber:sarplus:0.2.6 pyspark-shell\\\u0022\\nos.environ[\\\u0022PYSPARK_SUBMIT_ARGS\\\u0022] = SUBMIT_ARGS\\n\\nspark = (\\n SparkSession.builder.appName(\\\u0022sample\\\u0022)\\n .master(\\\u0022local[*]\\\u0022)\\n .config(\\\u0022memory\\\u0022, \\\u00221G\\\u0022)\\n .config(\\\u0022spark.sql.shuffle.partitions\\\u0022, \\\u00221\\\u0022)\\n .config(\\\u0022spark.sql.crossJoin.enabled\\\u0022, True)\\n .config(\\\u0022spark.ui.enabled\\\u0022, False)\\n .getOrCreate()\\n)\\n\\n# SqlContext helps with doing SQL like queries on spark DFs.\\nsqlContext = SQLContext(spark)\\n\\n# Configure the Spark session to avoid using mount\\nspark.conf.set(\\\u0022fs.azure.account.auth.type.{0}.dfs.core.windows.net\\\u0022.format(_GLOBAL_ADLS_ACCOUNT), \\\u0022OAuth\\\u0022)\\nspark.conf.set(\\n \\\u0022fs.azure.account.oauth.provider.type.{0}.dfs.core.windows.net\\\u0022.format(_GLOBAL_ADLS_ACCOUNT),\\n \\\u0022org.apache.hadoop.fs.azurebfs.oauth2.ClientCredsTokenProvider\\\u0022,\\n)\\nspark.conf.set(\\n \\\u0022fs.azure.account.oauth2.client.id.{0}.dfs.core.windows.net\\\u0022.format(_GLOBAL_ADLS_ACCOUNT), _GLOBAL_ADLS_APPID\\n)\\nspark.conf.set(\\n \\\u0022fs.azure.account.oauth2.client.secret.{0}.dfs.core.windows.net\\\u0022.format(_GLOBAL_ADLS_ACCOUNT), _GLOBAL_ADLS_SECRET\\n)\\nspark.conf.set(\\n \\\u0022fs.azure.account.oauth2.client.endpoint.{0}.dfs.core.windows.net\\\u0022.format(_GLOBAL_ADLS_ACCOUNT),\\n \\\u0022https://login.microsoftonline.com/{0}/oauth2/token\\\u0022.format(_GLOBAL_ADLS_DIRID),\\n)\u0022],\u0022attachments\u0022:null,\u0022outputs\u0022:[],\u0022execution_count\u0022:0},{\u0022cell_type\u0022:\u0022code\u0022,\u0022metadata\u0022:{\u0022application/vnd.databricks.v1\u002Bcell\u0022:{\u0022title\u0022:\u0022\u0022,\u0022showTitle\u0022:false,\u0022inputWidgets\u0022:{},\u0022nuid\u0022:\u0022614662de-2288-451e-b238-b6190156aac4\u0022}},\u0022source\u0022:[\u0022# Mount the remove ADLS container on the local databricks\\n\\n# Unmount an existing mount point\\ntry:\\n dbutils.fs.unmount(_GLOBAL_ADLS_DICT[\\\u0022adls_container_mount_point\\\u0022])\\nexcept Exception as ex:\\n if \\\u0022Directory not mounted\\\u0022 not in str(ex):\\n raise Exception(\\\u0022Error in unmounting\\\u0022)\\n\\n# Mount wit the provided configuration information\\nconfigs = {\\n \\\u0022fs.azure.account.auth.type\\\u0022: \\\u0022OAuth\\\u0022,\\n \\\u0022fs.azure.account.oauth.provider.type\\\u0022: \\\u0022org.apache.hadoop.fs.azurebfs.oauth2.ClientCredsTokenProvider\\\u0022,\\n \\\u0022fs.azure.account.oauth2.client.id\\\u0022: _GLOBAL_CONFIG_DICT[\\\u0022clientId\\\u0022],\\n \\\u0022fs.azure.account.oauth2.client.secret\\\u0022: _GLOBAL_CONFIG_DICT[\\\u0022clientSecret\\\u0022],\\n \\\u0022fs.azure.account.oauth2.client.endpoint\\\u0022: _GLOBAL_ADLS_DICT[\\\u0022oauth_endpoint\\\u0022],\\n}\\ndbutils.fs.mount(\\n source=_GLOBAL_ADLS_DICT[\\\u0022adls_source\\\u0022],\\n mount_point=_GLOBAL_ADLS_DICT[\\\u0022adls_container_mount_point\\\u0022],\\n extra_configs=configs,\\n)\\n\\n# List the contents in the mounted directory\\ndbutils.fs.ls(_GLOBAL_ADLS_DICT[\\\u0022adls_container_mount_point\\\u0022])\\n\\n# Make a new directory for model cache use\\ndbutils.fs.mkdirs(_GLOBAL_ADLS_DICT[\\\u0022adls_model_cache\\\u0022])\u0022],\u0022attachments\u0022:null,\u0022outputs\u0022:[],\u0022execution_count\u0022:0}],\u0022folder\u0022:null}},{\u0022id\u0022:\u0022/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/testclinb\u0022,\u0022name\u0022:\u0022testclinb\u0022,\u0022type\u0022:\u0022Microsoft.Synapse/workspaces/notebooks\u0022,\u0022etag\u0022:\u00220900eeb9-0000-0100-0000-61408d200000\u0022,\u0022properties\u0022:{\u0022nbformat\u0022:4,\u0022nbformat_minor\u0022:0,\u0022entityState\u0022:null,\u0022renameOperationDetails\u0022:null,\u0022bigDataPool\u0022:null,\u0022sessionProperties\u0022:{\u0022driverMemory\u0022:\u002228g\u0022,\u0022driverCores\u0022:4,\u0022executorMemory\u0022:\u002228g\u0022,\u0022executorCores\u0022:4,\u0022numExecutors\u0022:2,\u0022conf\u0022:{\u0022spark.dynamicAllocation.enabled\u0022:\u0022false\u0022,\u0022spark.dynamicAllocation.minExecutors\u0022:\u00222\u0022,\u0022spark.dynamicAllocation.maxExecutors\u0022:\u00222\u0022}},\u0022metadata\u0022:{\u0022language_info\u0022:{\u0022name\u0022:\u0022python\u0022},\u0022a365ComputeOptions\u0022:null,\u0022sessionKeepAliveTimeout\u0022:30,\u0022saveOutput\u0022:true,\u0022synapse_widget\u0022:{\u0022version\u0022:\u00220.1\u0022,\u0022state\u0022:{}},\u0022kernelspec\u0022:{\u0022name\u0022:\u0022synapse_pyspark\u0022,\u0022display_name\u0022:\u0022python\u0022}},\u0022cells\u0022:[{\u0022cell_type\u0022:\u0022markdown\u0022,\u0022metadata\u0022:{\u0022application/vnd.databricks.v1\u002Bcell\u0022:{\u0022title\u0022:\u0022\u0022,\u0022showTitle\u0022:false,\u0022inputWidgets\u0022:{},\u0022nuid\u0022:\u0022ec9689e6-a215-42cf-aa9f-85a38cca6362\u0022}},\u0022source\u0022:[\u0022Copyright (c) Microsoft Corporation. All rights reserved.\u0022],\u0022attachments\u0022:null,\u0022outputs\u0022:[],\u0022execution_count\u0022:null},{\u0022cell_type\u0022:\u0022code\u0022,\u0022metadata\u0022:{\u0022application/vnd.databricks.v1\u002Bcell\u0022:{\u0022title\u0022:\u0022\u0022,\u0022showTitle\u0022:false,\u0022inputWidgets\u0022:{},\u0022nuid\u0022:\u00224eb23c41-ffd4-412f-a887-102462d4d316\u0022}},\u0022source\u0022:[\u0022# Disable the verbose log\\n\u0022,\u0022import logging\\n\u0022,\u0022logging.getLogger(\\\u0022py4j\\\u0022).setLevel(logging.ERROR)\u0022],\u0022attachments\u0022:null,\u0022outputs\u0022:[{\u0022output_type\u0022:\u0022display_data\u0022,\u0022data\u0022:{\u0022text/html\u0022:\u0022\u003Cstyle scoped\u003E\\n .ansiout {\\n display: block;\\n unicode-bidi: embed;\\n white-space: pre-wrap;\\n word-wrap: break-word;\\n word-break: break-all;\\n font-family: \\\u0022Source Code Pro\\\u0022, \\\u0022Menlo\\\u0022, monospace;;\\n font-size: 13px;\\n color: #555;\\n margin-left: 4px;\\n line-height: 19px;\\n }\\n\u003C/style\u003E\\n\u003Cdiv class=\\\u0022ansiout\\\u0022\u003E\u003C/div\u003E\u0022},\u0022metadata\u0022:{\u0022application/vnd.databricks.v1\u002Boutput\u0022:{\u0022datasetInfos\u0022:[],\u0022data\u0022:\u0022\u003Cdiv class=\\\u0022ansiout\\\u0022\u003E\u003C/div\u003E\u0022,\u0022removedWidgets\u0022:[],\u0022addedWidgets\u0022:{},\u0022type\u0022:\u0022html\u0022,\u0022arguments\u0022:{}}}}],\u0022execution_count\u0022:0},{\u0022cell_type\u0022:\u0022code\u0022,\u0022metadata\u0022:{\u0022application/vnd.databricks.v1\u002Bcell\u0022:{\u0022title\u0022:\u0022\u0022,\u0022showTitle\u0022:false,\u0022inputWidgets\u0022:{},\u0022nuid\u0022:\u0022b5c38c38-a7f7-43f5-a15c-e387079ac8d7\u0022}},\u0022source\u0022:[\u0022\\n\u0022,\u0022!pip install \\\u0022https://retaildatastore.blob.core.windows.net/artifacts/cdmsdk/commondatamodel-objectmodel-1.0.10-py3-none-any.whl?sp=r\u0026st=2021-02-11T11:46:58Z\u0026se=2022-02-11T19:46:58Z\u0026spr=https\u0026sv=2020-02-10\u0026sr=b\u0026sig=XXXXXXXXXXXXXXXXXXXXXXXX\\\u0022\\n\u0022,\u0022\u0022],\u0022attachments\u0022:null,\u0022outputs\u0022:[{\u0022output_type\u0022:\u0022display_data\u0022,\u0022data\u0022:{\u0022text/html\u0022:\u0022\u003Cstyle scoped\u003E\\n .ansiout {\\n display: block;\\n unicode-bidi: embed;\\n white-space: pre-wrap;\\n word-wrap: break-word;\\n word-break: break-all;\\n font-family: \\\u0022Source Code Pro\\\u0022, \\\u0022Menlo\\\u0022, monospace;;\\n font-size: 13px;\\n color: #555;\\n margin-left: 4px;\\n line-height: 19px;\\n }\\n\u003C/style\u003E\\n\u003Cdiv class=\\\u0022ansiout\\\u0022\u003E\u003C/div\u003E\u0022},\u0022metadata\u0022:{\u0022application/vnd.databricks.v1\u002Boutput\u0022:{\u0022datasetInfos\u0022:[],\u0022data\u0022:\u0022\u003Cdiv class=\\\u0022ansiout\\\u0022\u003E\u003C/div\u003E\u0022,\u0022removedWidgets\u0022:[],\u0022addedWidgets\u0022:{},\u0022type\u0022:\u0022html\u0022,\u0022arguments\u0022:{}}}}],\u0022execution_count\u0022:0},{\u0022cell_type\u0022:\u0022code\u0022,\u0022metadata\u0022:{\u0022application/vnd.databricks.v1\u002Bcell\u0022:{\u0022title\u0022:\u0022\u0022,\u0022showTitle\u0022:false,\u0022inputWidgets\u0022:{},\u0022nuid\u0022:\u0022b255d876-363a-446e-a0fa-e51f866efa77\u0022}},\u0022source\u0022:[\u0022\\n\u0022,\u0022\\n\u0022,\u0022# Generic imports\\n\u0022,\u0022import dotenv\\n\u0022,\u0022import json\\n\u0022,\u0022import numpy as np\\n\u0022,\u0022import os\\n\u0022,\u0022import fnmatch\\n\u0022,\u0022import shutil\\n\u0022,\u0022import random\\n\u0022,\u0022import string\\n\u0022,\u0022import pandas as pd\\n\u0022,\u0022import requests\\n\u0022,\u0022import asyncio\\n\u0022,\u0022import copy\\n\u0022,\u0022import functools\\n\u0022,\u0022import pathlib\\n\u0022,\u0022import string\\n\u0022,\u0022from datetime import datetime, timezone\\n\u0022,\u0022\\n\u0022,\u0022# Spark imports\\n\u0022,\u0022from pyspark.sql import SparkSession, SQLContext\\n\u0022,\u0022from pyspark.sql.types import *\\n\u0022,\u0022from pyspark.sql import functions as F\\n\u0022,\u0022\\n\u0022,\u0022# Recommenders imports\\n\u0022,\u0022# from azureiai.reco_utils.dataset.spark_splitters import spark_random_split\\n\u0022,\u0022# from azureiai.reco_utils.evaluation.spark_evaluation import (\\n\u0022,\u0022# SparkRankingEvaluation,\\n\u0022,\u0022# SparkRatingEvaluation,\\n\u0022,\u0022# )\\n\u0022,\u0022from pysarplus import SARPlus\\n\u0022,\u0022from azureiai.retail.cdm2ai.reader import CONFIG\\n\u0022,\u0022\\n\u0022,\u0022# AzureML imports\\n\u0022,\u0022import azureml.core\\n\u0022,\u0022from azureml.core.runconfig import JarLibrary\\n\u0022,\u0022from azureml.core.compute import ComputeTarget, DatabricksCompute\\n\u0022,\u0022from azureml.pipeline.steps import DatabricksStep\\n\u0022,\u0022from azureml.core.datastore import Datastore\\n\u0022,\u0022from azureml.data.data_reference import DataReference\\n\u0022,\u0022from azureml.core import Workspace\\n\u0022,\u0022from azureml.core.run import Run\\n\u0022,\u0022from azureml.core.experiment import Experiment\\n\u0022,\u0022from azureml.core import Environment\\n\u0022,\u0022from azureml.core.environment import CondaDependencies\\n\u0022,\u0022from azureml.core.environment import SparkPackage\\n\u0022,\u0022from azureml.core.model import Model\\n\u0022,\u0022from azureml.core.webservice import Webservice\\n\u0022,\u0022\\n\u0022,\u0022# Cosmos DB imports\\n\u0022,\u0022# Install Cosmos DB connector from: https://docs.databricks.com/data/data-sources/azure/cosmosdb-connector.html\\n\u0022,\u0022from azure.common.client_factory import get_client_from_json_dict\\n\u0022,\u0022\\n\u0022,\u0022# CDM imports\\n\u0022,\u0022from cdm.storage import ADLSAdapter\\n\u0022,\u0022from cdm.objectmodel import CdmCorpusDefinition, CdmManifestDefinition\\n\u0022,\u0022from cdm.persistence.cdmfolder import ManifestPersistence\\n\u0022,\u0022from cdm.persistence.cdmfolder.types import ManifestContent\\n\u0022,\u0022from cdm.storage import LocalAdapter, ADLSAdapter\\n\u0022,\u0022from cdm.utilities import time_utils\\n\u0022,\u0022\\n\u0022,\u0022from cdm.utilities.string_utils import kvprint\\n\u0022,\u0022\\n\u0022,\u0022# AKS imports\\n\u0022,\u0022from azureml.core.compute import AksCompute\\n\u0022,\u0022from azureml.core.compute_target import ComputeTargetException\\n\u0022,\u0022from azureml.core.webservice import AksWebservice\\n\u0022,\u0022from azureml.exceptions import WebserviceException\\n\u0022,\u0022from azureml.core.model import InferenceConfig\\n\u0022,\u0022\\n\u0022,\u0022\u0022],\u0022attachments\u0022:null,\u0022outputs\u0022:[{\u0022output_type\u0022:\u0022display_data\u0022,\u0022data\u0022:{\u0022text/html\u0022:\u0022\u003Cstyle scoped\u003E\\n .ansiout {\\n display: block;\\n unicode-bidi: embed;\\n white-space: pre-wrap;\\n word-wrap: break-word;\\n word-break: break-all;\\n font-family: \\\u0022Source Code Pro\\\u0022, \\\u0022Menlo\\\u0022, monospace;;\\n font-size: 13px;\\n color: #555;\\n margin-left: 4px;\\n line-height: 19px;\\n }\\n\u003C/style\u003E\\n\u003Cdiv class=\\\u0022ansiout\\\u0022\u003E\u003C/div\u003E\u0022},\u0022metadata\u0022:{\u0022application/vnd.databricks.v1\u002Boutput\u0022:{\u0022datasetInfos\u0022:[],\u0022data\u0022:\u0022\u003Cdiv class=\\\u0022ansiout\\\u0022\u003E\u003C/div\u003E\u0022,\u0022removedWidgets\u0022:[],\u0022addedWidgets\u0022:{},\u0022type\u0022:\u0022html\u0022,\u0022arguments\u0022:{}}}}],\u0022execution_count\u0022:0},{\u0022cell_type\u0022:\u0022code\u0022,\u0022metadata\u0022:{\u0022application/vnd.databricks.v1\u002Bcell\u0022:{\u0022title\u0022:\u0022\u0022,\u0022showTitle\u0022:false,\u0022inputWidgets\u0022:{},\u0022nuid\u0022:\u0022bb6041f1-a825-41ae-ba4d-de6dff6e361a\u0022}},\u0022source\u0022:[\u0022# Global variables\\n\u0022,\u0022# NOTE these variables are visible in the scope of the entire pipeline\\n\u0022,\u0022\\n\u0022,\u0022# Load the .env file to manage persistent variables\\n\u0022,\u0022_GLOBAL_DOTENV_PATH = pathlib.Path(dotenv.find_dotenv(\\n\u0022,\u0022 filename=\\\u0022/dbfs/FileStore/.env\\\u0022,\\n\u0022,\u0022 raise_error_if_not_found=True\\n\u0022,\u0022))\\n\u0022,\u0022\\n\u0022,\u0022# -------------------------------------------------------------------------\\n\u0022,\u0022# Azure general variables\\n\u0022,\u0022# -------------------------------------------------------------------------\\n\u0022,\u0022_GLOBAL_SUBSCRIPTION_ID = dotenv.get_key(_GLOBAL_DOTENV_PATH, \\\u0022subscription_id\\\u0022)\\n\u0022,\u0022_GLOBAL_RESOURCE_GROUP = dotenv.get_key(_GLOBAL_DOTENV_PATH, \\\u0022resource_group\\\u0022)\\n\u0022,\u0022_GLOBAL_CONFIG_DICT = {\\n\u0022,\u0022 \\\u0022clientIdKey\\\u0022: \\\u0022sp_client_id\\\u0022,\\n\u0022,\u0022 \\\u0022clientSecretKey\\\u0022: \\\u0022sp_password\\\u0022,\\n\u0022,\u0022 \\\u0022clientId\\\u0022: dbutils.secrets.get(scope=\\\u0022secrets\\\u0022, key=\\\u0022sp_client_id\\\u0022),\\n\u0022,\u0022 \\\u0022clientSecret\\\u0022: dbutils.secrets.get(scope=\\\u0022secrets\\\u0022, key=\\\u0022sp_password\\\u0022),\\n\u0022,\u0022 \\\u0022subscriptionId\\\u0022: _GLOBAL_SUBSCRIPTION_ID,\\n\u0022,\u0022 \\\u0022tenantId\\\u0022: dotenv.get_key(_GLOBAL_DOTENV_PATH, \\\u0022tenant_id\\\u0022),\\n\u0022,\u0022 \\\u0022activeDirectoryEndpointUrl\\\u0022: \\\u0022https://login.microsoftonline.com\\\u0022,\\n\u0022,\u0022 \\\u0022resourceManagerEndpointUrl\\\u0022: \\\u0022https://management.azure.com/\\\u0022,\\n\u0022,\u0022 \\\u0022activeDirectoryGraphResourceId\\\u0022: \\\u0022https://graph.windows.net/\\\u0022,\\n\u0022,\u0022 \\\u0022sqlManagementEndpointUrl\\\u0022: \\\u0022https://management.core.windows.net:8443/\\\u0022,\\n\u0022,\u0022 \\\u0022galleryEndpointUrl\\\u0022: \\\u0022https://gallery.azure.com/\\\u0022,\\n\u0022,\u0022 \\\u0022managementEndpointUrl\\\u0022: \\\u0022https://management.core.windows.net/\\\u0022\\n\u0022,\u0022}\\n\u0022,\u0022\\n\u0022,\u0022# -------------------------------------------------------------------------\\n\u0022,\u0022# ADLS variables\\n\u0022,\u0022# -------------------------------------------------------------------------\\n\u0022,\u0022_GLOBAL_ADLS_ACCOUNT = dotenv.get_key(_GLOBAL_DOTENV_PATH, \\\u0022data_account\\\u0022)\\n\u0022,\u0022_GLOBAL_ADLS_CONTAINER = dotenv.get_key(_GLOBAL_DOTENV_PATH, \\\u0022data_container\\\u0022)\\n\u0022,\u0022_GLOBAL_ADLS_APPID = _GLOBAL_CONFIG_DICT[\\\u0022clientId\\\u0022]\\n\u0022,\u0022_GLOBAL_ADLS_DIRID = _GLOBAL_CONFIG_DICT[\\\u0022tenantId\\\u0022]\\n\u0022,\u0022_GLOBAL_ADLS_SECRET = _GLOBAL_CONFIG_DICT[\\\u0022clientSecret\\\u0022]\\n\u0022,\u0022_GLOBAL_ADLS_HOSTNAME = f\u0027{_GLOBAL_ADLS_ACCOUNT}.dfs.core.windows.net\u0027\\n\u0022,\u0022_GLOBAL_ADLS_DICT = {\\n\u0022,\u0022 \\\u0022adls_source\\\u0022: \\\u0022abfss://{0}@{1}.dfs.core.windows.net\\\u0022.format(_GLOBAL_ADLS_CONTAINER, _GLOBAL_ADLS_ACCOUNT),\\n\u0022,\u0022 \\\u0022oauth_endpoint\\\u0022: \\\u0022https://login.microsoftonline.com/{0}/oauth2/token\\\u0022.format(_GLOBAL_CONFIG_DICT[\\\u0022tenantId\\\u0022]),\\n\u0022,\u0022 \\\u0022adls_dfs_endpoint\\\u0022: \\\u0022{0}.dfs.core.windows.net\\\u0022.format(_GLOBAL_ADLS_ACCOUNT),\\n\u0022,\u0022 \\\u0022adls_container_mount_point\\\u0022: \\\u0022/mnt/{0}\\\u0022.format(_GLOBAL_ADLS_CONTAINER),\\n\u0022,\u0022 \\\u0022adls_resource_type\\\u0022: \\\u0022https://storage.azure.com\\\u0022,\\n\u0022,\u0022 \\\u0022adls_mount_root\\\u0022: \\\u0022/mnt\\\u0022,\\n\u0022,\u0022 \\\u0022adls_model_cache\\\u0022: \\\u0022dbfs:/mnt/{0}/cache\\\u0022.format(_GLOBAL_ADLS_CONTAINER)\\n\u0022,\u0022}\\n\u0022,\u0022\\n\u0022,\u0022# -------------------------------------------------------------------------\\n\u0022,\u0022# COSMOS DB variables\\n\u0022,\u0022# -------------------------------------------------------------------------\\n\u0022,\u0022_GLOBAL_DB_SECRETS = {\\n\u0022,\u0022 \\\u0022Endpoint\\\u0022: \\\u0022https://{0}.documents.azure.com:443/\\\u0022.format(dotenv.get_key(_GLOBAL_DOTENV_PATH, \\\u0022azure_cosmosdb_account_name\\\u0022)),\\n\u0022,\u0022 \\\u0022Masterkey\\\u0022: dbutils.secrets.get(scope=\\\u0022secrets\\\u0022, key=\\\u0022cosmosdb_primary_master_key\\\u0022),\\n\u0022,\u0022 \\\u0022Database\\\u0022: dotenv.get_key(_GLOBAL_DOTENV_PATH, \\\u0022azure_cosmosdb_database\\\u0022),\\n\u0022,\u0022 \\\u0022Collection\\\u0022: dotenv.get_key(_GLOBAL_DOTENV_PATH, \\\u0022azure_cosmosdb_container\\\u0022),\\n\u0022,\u0022 \\\u0022Upsert\\\u0022: True\\n\u0022,\u0022}\\n\u0022,\u0022\\n\u0022,\u0022# -------------------------------------------------------------------------\\n\u0022,\u0022# Data variables\\n\u0022,\u0022# -------------------------------------------------------------------------\\n\u0022,\u0022_GLOBAL_DATA_ROOT = dotenv.get_key(_GLOBAL_DOTENV_PATH, \\\u0022physical_data_model_directory\\\u0022)\\n\u0022,\u0022_GLOBAL_TPC_RAW_ROOT = \u0027tpcds-raw-data\u0027\\n\u0022,\u0022_GLOBAL_IDM_SCHEMA_ROOT = dotenv.get_key(_GLOBAL_DOTENV_PATH, \\\u0022logical_data_model_directory\\\u0022)\\n\u0022,\u0022_GLOBAL_DATA_NAME = dotenv.get_key(_GLOBAL_DOTENV_PATH, \\\u0022data_name\\\u0022)\\n\u0022,\u0022_GLOBAL_ADAPTER_PARTIAL = functools.partial(\\n\u0022,\u0022 ADLSAdapter,\\n\u0022,\u0022 hostname=_GLOBAL_ADLS_HOSTNAME,\\n\u0022,\u0022 tenant=_GLOBAL_ADLS_DIRID,\\n\u0022,\u0022 client_id=_GLOBAL_ADLS_APPID,\\n\u0022,\u0022 secret=_GLOBAL_ADLS_SECRET\\n\u0022,\u0022)\\n\u0022,\u0022_GLOBAL_CONFIG_JSON = copy.deepcopy(CONFIG)\\n\u0022,\u0022_GLOBAL_CONFIG_JSON[\\\u0022adls\\\u0022][\\\u0022account\\\u0022] = _GLOBAL_ADLS_ACCOUNT\\n\u0022,\u0022_GLOBAL_CONFIG_JSON[\\\u0022adls\\\u0022][\\\u0022container\\\u0022] = _GLOBAL_ADLS_CONTAINER\\n\u0022,\u0022_GLOBAL_CONFIG_JSON[\\\u0022adls\\\u0022][\\\u0022appid\\\u0022] = _GLOBAL_ADLS_APPID\\n\u0022,\u0022_GLOBAL_CONFIG_JSON[\\\u0022adls\\\u0022][\\\u0022dirid\\\u0022] = _GLOBAL_ADLS_DIRID\\n\u0022,\u0022_GLOBAL_CONFIG_JSON[\\\u0022adls\\\u0022][\\\u0022secret\\\u0022] = _GLOBAL_ADLS_SECRET\\n\u0022,\u0022_GLOBAL_CONFIG_JSON[\\\u0022adls\\\u0022][\\\u0022hostname\\\u0022] = _GLOBAL_ADLS_HOSTNAME\\n\u0022,\u0022_GLOBAL_CONFIG_JSON[\\\u0022cdm\\\u0022][\\\u0022data_root\\\u0022] = _GLOBAL_DATA_ROOT\\n\u0022,\u0022_GLOBAL_CONFIG_JSON[\\\u0022cdm\\\u0022][\\\u0022manifest_name\\\u0022] = \\\u0022{0}.manifest.cdm.json\\\u0022.format(dotenv.get_key(_GLOBAL_DOTENV_PATH, \\\u0022industry_data_model_name\\\u0022))\\n\u0022,\u0022_GLOBAL_INPUT_DATA_FILE = dotenv.get_key(_GLOBAL_DOTENV_PATH, \\\u0022processed_data_file\\\u0022)\\n\u0022,\u0022_GLOBAL_CUSTOMER_DATA_FILE = dotenv.get_key(_GLOBAL_DOTENV_PATH, \\\u0022processed_customer_data_file\\\u0022)\\n\u0022,\u0022\\n\u0022,\u0022# -------------------------------------------------------------------------\\n\u0022,\u0022# Model variables\\n\u0022,\u0022# -------------------------------------------------------------------------\\n\u0022,\u0022_GLOBAL_MODEL_LOCAL_CACHE = \u0027dbfs:/model/{0}\u0027.format(\\n\u0022,\u0022 \u0027\u0027.join(random.choice(string.ascii_lowercase) for i in range(10))\\n\u0022,\u0022)\\n\u0022,\u0022\\n\u0022,\u0022# -------------------------------------------------------------------------\\n\u0022,\u0022# Azure Machine Learning service variables\\n\u0022,\u0022# -------------------------------------------------------------------------\\n\u0022,\u0022_GLOBAL_AML_DICT = {\\n\u0022,\u0022 \\\u0022workspace_name\\\u0022: dotenv.get_key(_GLOBAL_DOTENV_PATH, \\\u0022azureml_workspace\\\u0022),\\n\u0022,\u0022 \\\u0022model_file_name\\\u0022: dotenv.get_key(_GLOBAL_DOTENV_PATH, \\\u0022azureml_model_file_name\\\u0022),\\n\u0022,\u0022 \\\u0022aml_experiment_name\\\u0022: dotenv.get_key(_GLOBAL_DOTENV_PATH, \\\u0022azureml_experiment_name\\\u0022)\\n\u0022,\u0022}\\n\u0022,\u0022\\n\u0022,\u0022# -------------------------------------------------------------------------\\n\u0022,\u0022# Azure Kubernetes Service variables\\n\u0022,\u0022# -------------------------------------------------------------------------\\n\u0022,\u0022_GLOBAL_AKS_NAME = dotenv.get_key(_GLOBAL_DOTENV_PATH, \\\u0022aks_cluster_name\\\u0022)\\n\u0022,\u0022_GLOBAL_SERVICE_NAME = \\\u0022aks-service-{0}\\\u0022.format(dotenv.get_key(_GLOBAL_DOTENV_PATH, \\\u0022unique_key\\\u0022))\\n\u0022,\u0022_GLOBAL_AKS_CONFIG_LEVEL = dotenv.get_key(_GLOBAL_DOTENV_PATH, \\\u0022aks_config_level\\\u0022)\\n\u0022,\u0022_GLOBAL_AKS_COMPUTE_TARGET_NAME = \u0027aks\u0027 \u002B dotenv.get_key(_GLOBAL_DOTENV_PATH, \\\u0022unique_key\\\u0022)\u0022],\u0022attachments\u0022:null,\u0022outputs\u0022:[{\u0022output_type\u0022:\u0022display_data\u0022,\u0022data\u0022:{\u0022text/html\u0022:\u0022\u003Cstyle scoped\u003E\\n .ansiout {\\n display: block;\\n unicode-bidi: embed;\\n white-space: pre-wrap;\\n word-wrap: break-word;\\n word-break: break-all;\\n font-family: \\\u0022Source Code Pro\\\u0022, \\\u0022Menlo\\\u0022, monospace;;\\n font-size: 13px;\\n color: #555;\\n margin-left: 4px;\\n line-height: 19px;\\n }\\n\u003C/style\u003E\\n\u003Cdiv class=\\\u0022ansiout\\\u0022\u003E\u003C/div\u003E\u0022},\u0022metadata\u0022:{\u0022application/vnd.databricks.v1\u002Boutput\u0022:{\u0022datasetInfos\u0022:[],\u0022data\u0022:\u0022\u003Cdiv class=\\\u0022ansiout\\\u0022\u003E\u003C/div\u003E\u0022,\u0022removedWidgets\u0022:[],\u0022addedWidgets\u0022:{},\u0022type\u0022:\u0022html\u0022,\u0022arguments\u0022:{}}}},{\u0022output_type\u0022:\u0022display_data\u0022,\u0022data\u0022:{\u0022text/html\u0022:\u0022\u003Cstyle scoped\u003E\\n .ansiout {\\n display: block;\\n unicode-bidi: embed;\\n white-space: pre-wrap;\\n word-wrap: break-word;\\n word-break: break-all;\\n font-family: \\\u0022Source Code Pro\\\u0022, \\\u0022Menlo\\\u0022, monospace;;\\n font-size: 13px;\\n color: #555;\\n margin-left: 4px;\\n line-height: 19px;\\n }\\n\u003C/style\u003E\\n\u003Cdiv class=\\\u0022ansiout\\\u0022\u003E\u003Cspan class=\\\u0022ansi-red-fg\\\u0022\u003E---------------------------------------------------------------------------\u003C/span\u003E\\n\u003Cspan class=\\\u0022ansi-red-fg\\\u0022\u003ENameError\u003C/span\u003E Traceback (most recent call last)\\n\u003Cspan class=\\\u0022ansi-green-fg\\\u0022\u003E\u0026lt;command-1159393715563018\u0026gt;\u003C/span\u003E in \u003Cspan class=\\\u0022ansi-cyan-fg\\\u0022\u003E\u0026lt;module\u0026gt;\u003C/span\u003E\\n\u003Cspan class=\\\u0022ansi-green-intense-fg ansi-bold\\\u0022\u003E 66\u003C/span\u003E _GLOBAL_DATA_NAME \u003Cspan class=\\\u0022ansi-blue-fg\\\u0022\u003E=\u003C/span\u003E dotenv\u003Cspan class=\\\u0022ansi-blue-fg\\\u0022\u003E.\u003C/span\u003Eget_key\u003Cspan class=\\\u0022ansi-blue-fg\\\u0022\u003E(\u003C/span\u003E_GLOBAL_DOTENV_PATH\u003Cspan class=\\\u0022ansi-blue-fg\\\u0022\u003E,\u003C/span\u003E \u003Cspan class=\\\u0022ansi-blue-fg\\\u0022\u003E\u0026#34;data_name\u0026#34;\u003C/span\u003E\u003Cspan class=\\\u0022ansi-blue-fg\\\u0022\u003E)\u003C/span\u003E\\n\u003Cspan class=\\\u0022ansi-green-intense-fg ansi-bold\\\u0022\u003E 67\u003C/span\u003E _GLOBAL_ADAPTER_PARTIAL = functools.partial(\\n\u003Cspan class=\\\u0022ansi-green-fg\\\u0022\u003E---\u0026gt; 68\u003C/span\u003E\u003Cspan class=\\\u0022ansi-red-fg\\\u0022\u003E \u003C/span\u003EADLSAdapter\u003Cspan class=\\\u0022ansi-blue-fg\\\u0022\u003E,\u003C/span\u003E\\n\u003Cspan class=\\\u0022ansi-green-intense-fg ansi-bold\\\u0022\u003E 69\u003C/span\u003E hostname\u003Cspan class=\\\u0022ansi-blue-fg\\\u0022\u003E=\u003C/span\u003E_GLOBAL_ADLS_HOSTNAME\u003Cspan class=\\\u0022ansi-blue-fg\\\u0022\u003E,\u003C/span\u003E\\n\u003Cspan class=\\\u0022ansi-green-intense-fg ansi-bold\\\u0022\u003E 70\u003C/span\u003E tenant\u003Cspan class=\\\u0022ansi-blue-fg\\\u0022\u003E=\u003C/span\u003E_GLOBAL_ADLS_DIRID\u003Cspan class=\\\u0022ansi-blue-fg\\\u0022\u003E,\u003C/span\u003E\\n\\n\u003Cspan class=\\\u0022ansi-red-fg\\\u0022\u003ENameError\u003C/span\u003E: name \u0026#39;ADLSAdapter\u0026#39; is not defined\u003C/div\u003E\u0022},\u0022metadata\u0022:{\u0022application/vnd.databricks.v1\u002Boutput\u0022:{\u0022type\u0022:\u0022ipynbError\u0022,\u0022data\u0022:\u0022\u003Cdiv class=\\\u0022ansiout\\\u0022\u003E\u003Cspan class=\\\u0022ansi-red-fg\\\u0022\u003E---------------------------------------------------------------------------\u003C/span\u003E\\n\u003Cspan class=\\\u0022ansi-red-fg\\\u0022\u003ENameError\u003C/span\u003E Traceback (most recent call last)\\n\u003Cspan class=\\\u0022ansi-green-fg\\\u0022\u003E\u0026lt;command-1159393715563018\u0026gt;\u003C/span\u003E in \u003Cspan class=\\\u0022ansi-cyan-fg\\\u0022\u003E\u0026lt;module\u0026gt;\u003C/span\u003E\\n\u003Cspan class=\\\u0022ansi-green-intense-fg ansi-bold\\\u0022\u003E 66\u003C/span\u003E _GLOBAL_DATA_NAME \u003Cspan class=\\\u0022ansi-blue-fg\\\u0022\u003E=\u003C/span\u003E dotenv\u003Cspan class=\\\u0022ansi-blue-fg\\\u0022\u003E.\u003C/span\u003Eget_key\u003Cspan class=\\\u0022ansi-blue-fg\\\u0022\u003E(\u003C/span\u003E_GLOBAL_DOTENV_PATH\u003Cspan class=\\\u0022ansi-blue-fg\\\u0022\u003E,\u003C/span\u003E \u003Cspan class=\\\u0022ansi-blue-fg\\\u0022\u003E\u0026#34;data_name\u0026#34;\u003C/span\u003E\u003Cspan class=\\\u0022ansi-blue-fg\\\u0022\u003E)\u003C/span\u003E\\n\u003Cspan class=\\\u0022ansi-green-intense-fg ansi-bold\\\u0022\u003E 67\u003C/span\u003E _GLOBAL_ADAPTER_PARTIAL = functools.partial(\\n\u003Cspan class=\\\u0022ansi-green-fg\\\u0022\u003E---\u0026gt; 68\u003C/span\u003E\u003Cspan class=\\\u0022ansi-red-fg\\\u0022\u003E \u003C/span\u003EADLSAdapter\u003Cspan class=\\\u0022ansi-blue-fg\\\u0022\u003E,\u003C/span\u003E\\n\u003Cspan class=\\\u0022ansi-green-intense-fg ansi-bold\\\u0022\u003E 69\u003C/span\u003E hostname\u003Cspan class=\\\u0022ansi-blue-fg\\\u0022\u003E=\u003C/span\u003E_GLOBAL_ADLS_HOSTNAME\u003Cspan class=\\\u0022ansi-blue-fg\\\u0022\u003E,\u003C/span\u003E\\n\u003Cspan class=\\\u0022ansi-green-intense-fg ansi-bold\\\u0022\u003E 70\u003C/span\u003E tenant\u003Cspan class=\\\u0022ansi-blue-fg\\\u0022\u003E=\u003C/span\u003E_GLOBAL_ADLS_DIRID\u003Cspan class=\\\u0022ansi-blue-fg\\\u0022\u003E,\u003C/span\u003E\\n\\n\u003Cspan class=\\\u0022ansi-red-fg\\\u0022\u003ENameError\u003C/span\u003E: name \u0026#39;ADLSAdapter\u0026#39; is not defined\u003C/div\u003E\u0022,\u0022errorSummary\u0022:\u0022\u003Cspan class=\\\u0022ansi-red-fg\\\u0022\u003ENameError\u003C/span\u003E: name \u0026#39;ADLSAdapter\u0026#39; is not defined\u0022,\u0022arguments\u0022:{}}}}],\u0022execution_count\u0022:0},{\u0022cell_type\u0022:\u0022code\u0022,\u0022metadata\u0022:{\u0022application/vnd.databricks.v1\u002Bcell\u0022:{\u0022title\u0022:\u0022\u0022,\u0022showTitle\u0022:false,\u0022inputWidgets\u0022:{},\u0022nuid\u0022:\u0022639595d4-4083-4f33-a7d4-15af60e7b3d6\u0022}},\u0022source\u0022:[\u0022# Spark initialization\\n\u0022,\u0022SUBMIT_ARGS = \\\u0022--packages eisber:sarplus:0.2.6 pyspark-shell\\\u0022\\n\u0022,\u0022os.environ[\\\u0022PYSPARK_SUBMIT_ARGS\\\u0022] = SUBMIT_ARGS\\n\u0022,\u0022\\n\u0022,\u0022spark = (\\n\u0022,\u0022 SparkSession.builder.appName(\\\u0022sample\\\u0022)\\n\u0022,\u0022 .master(\\\u0022local[*]\\\u0022)\\n\u0022,\u0022 .config(\\\u0022memory\\\u0022, \\\u00221G\\\u0022)\\n\u0022,\u0022 .config(\\\u0022spark.sql.shuffle.partitions\\\u0022, \\\u00221\\\u0022)\\n\u0022,\u0022 .config(\\\u0022spark.sql.crossJoin.enabled\\\u0022, True)\\n\u0022,\u0022 .config(\\\u0022spark.ui.enabled\\\u0022, False)\\n\u0022,\u0022 .getOrCreate()\\n\u0022,\u0022)\\n\u0022,\u0022\\n\u0022,\u0022# SqlContext helps with doing SQL like queries on spark DFs.\\n\u0022,\u0022sqlContext = SQLContext(spark)\\n\u0022,\u0022\\n\u0022,\u0022# Configure the Spark session to avoid using mount\\n\u0022,\u0022spark.conf.set(\\\u0022fs.azure.account.auth.type.{0}.dfs.core.windows.net\\\u0022.format(_GLOBAL_ADLS_ACCOUNT), \\\u0022OAuth\\\u0022)\\n\u0022,\u0022spark.conf.set(\\n\u0022,\u0022 \\\u0022fs.azure.account.oauth.provider.type.{0}.dfs.core.windows.net\\\u0022.format(_GLOBAL_ADLS_ACCOUNT),\\n\u0022,\u0022 \\\u0022org.apache.hadoop.fs.azurebfs.oauth2.ClientCredsTokenProvider\\\u0022,\\n\u0022,\u0022)\\n\u0022,\u0022spark.conf.set(\\n\u0022,\u0022 \\\u0022fs.azure.account.oauth2.client.id.{0}.dfs.core.windows.net\\\u0022.format(_GLOBAL_ADLS_ACCOUNT), _GLOBAL_ADLS_APPID\\n\u0022,\u0022)\\n\u0022,\u0022spark.conf.set(\\n\u0022,\u0022 \\\u0022fs.azure.account.oauth2.client.secret.{0}.dfs.core.windows.net\\\u0022.format(_GLOBAL_ADLS_ACCOUNT), _GLOBAL_ADLS_SECRET\\n\u0022,\u0022)\\n\u0022,\u0022spark.conf.set(\\n\u0022,\u0022 \\\u0022fs.azure.account.oauth2.client.endpoint.{0}.dfs.core.windows.net\\\u0022.format(_GLOBAL_ADLS_ACCOUNT),\\n\u0022,\u0022 \\\u0022https://login.microsoftonline.com/{0}/oauth2/token\\\u0022.format(_GLOBAL_ADLS_DIRID),\\n\u0022,\u0022)\u0022],\u0022attachments\u0022:null,\u0022outputs\u0022:[],\u0022execution_count\u0022:0},{\u0022cell_type\u0022:\u0022code\u0022,\u0022metadata\u0022:{\u0022application/vnd.databricks.v1\u002Bcell\u0022:{\u0022title\u0022:\u0022\u0022,\u0022showTitle\u0022:false,\u0022inputWidgets\u0022:{},\u0022nuid\u0022:\u0022614662de-2288-451e-b238-b6190156aac4\u0022}},\u0022source\u0022:[\u0022# Mount the remove ADLS container on the local databricks\\n\u0022,\u0022\\n\u0022,\u0022# Unmount an existing mount point\\n\u0022,\u0022try:\\n\u0022,\u0022 dbutils.fs.unmount(_GLOBAL_ADLS_DICT[\\\u0022adls_container_mount_point\\\u0022])\\n\u0022,\u0022except Exception as ex:\\n\u0022,\u0022 if \\\u0022Directory not mounted\\\u0022 not in str(ex):\\n\u0022,\u0022 raise Exception(\\\u0022Error in unmounting\\\u0022)\\n\u0022,\u0022\\n\u0022,\u0022# Mount wit the provided configuration information\\n\u0022,\u0022configs = {\\n\u0022,\u0022 \\\u0022fs.azure.account.auth.type\\\u0022: \\\u0022OAuth\\\u0022,\\n\u0022,\u0022 \\\u0022fs.azure.account.oauth.provider.type\\\u0022: \\\u0022org.apache.hadoop.fs.azurebfs.oauth2.ClientCredsTokenProvider\\\u0022,\\n\u0022,\u0022 \\\u0022fs.azure.account.oauth2.client.id\\\u0022: _GLOBAL_CONFIG_DICT[\\\u0022clientId\\\u0022],\\n\u0022,\u0022 \\\u0022fs.azure.account.oauth2.client.secret\\\u0022: _GLOBAL_CONFIG_DICT[\\\u0022clientSecret\\\u0022],\\n\u0022,\u0022 \\\u0022fs.azure.account.oauth2.client.endpoint\\\u0022: _GLOBAL_ADLS_DICT[\\\u0022oauth_endpoint\\\u0022],\\n\u0022,\u0022}\\n\u0022,\u0022dbutils.fs.mount(\\n\u0022,\u0022 source=_GLOBAL_ADLS_DICT[\\\u0022adls_source\\\u0022],\\n\u0022,\u0022 mount_point=_GLOBAL_ADLS_DICT[\\\u0022adls_container_mount_point\\\u0022],\\n\u0022,\u0022 extra_configs=configs,\\n\u0022,\u0022)\\n\u0022,\u0022\\n\u0022,\u0022# List the contents in the mounted directory\\n\u0022,\u0022dbutils.fs.ls(_GLOBAL_ADLS_DICT[\\\u0022adls_container_mount_point\\\u0022])\\n\u0022,\u0022\\n\u0022,\u0022# Make a new directory for model cache use\\n\u0022,\u0022dbutils.fs.mkdirs(_GLOBAL_ADLS_DICT[\\\u0022adls_model_cache\\\u0022])\u0022],\u0022attachments\u0022:null,\u0022outputs\u0022:[],\u0022execution_count\u0022:0}],\u0022folder\u0022:{\u0022name\u0022:\u0022nbfolder/test1\u0022}}},{\u0022id\u0022:\u0022/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/HelloWorld\u0022,\u0022name\u0022:\u0022HelloWorld\u0022,\u0022type\u0022:\u0022Microsoft.Synapse/workspaces/notebooks\u0022,\u0022etag\u0022:\u00220e00670b-0000-0100-0000-6142dcab0000\u0022,\u0022properties\u0022:{\u0022nbformat\u0022:4,\u0022nbformat_minor\u0022:2,\u0022entityState\u0022:null,\u0022renameOperationDetails\u0022:null,\u0022bigDataPool\u0022:{\u0022referenceName\u0022:\u0022testsparkpool\u0022,\u0022type\u0022:\u0022BigDataPoolReference\u0022},\u0022sessionProperties\u0022:{\u0022driverMemory\u0022:\u002228g\u0022,\u0022driverCores\u0022:4,\u0022executorMemory\u0022:\u002228g\u0022,\u0022executorCores\u0022:4,\u0022numExecutors\u0022:2,\u0022conf\u0022:{\u0022spark.dynamicAllocation.enabled\u0022:\u0022false\u0022,\u0022spark.dynamicAllocation.minExecutors\u0022:\u00222\u0022,\u0022spark.dynamicAllocation.maxExecutors\u0022:\u00222\u0022}},\u0022metadata\u0022:{\u0022language_info\u0022:{\u0022name\u0022:\u0022python\u0022},\u0022a365ComputeOptions\u0022:{\u0022id\u0022:\u0022/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/bigDataPools/testsparkpool\u0022,\u0022name\u0022:\u0022testsparkpool\u0022,\u0022type\u0022:\u0022Spark\u0022,\u0022endpoint\u0022:\u0022https://testsynapseworkspace.dev.azuresynapse.net/livyApi/versions/2019-11-01-preview/sparkPools/testsparkpool\u0022,\u0022auth\u0022:{\u0022type\u0022:\u0022AAD\u0022,\u0022authResource\u0022:\u0022https://dev.azuresynapse.net\u0022},\u0022sparkVersion\u0022:\u00222.4\u0022,\u0022nodeCount\u0022:3,\u0022cores\u0022:8,\u0022memory\u0022:56,\u0022extraHeader\u0022:null},\u0022sessionKeepAliveTimeout\u0022:30,\u0022saveOutput\u0022:true,\u0022synapse_widget\u0022:{\u0022version\u0022:\u00220.1\u0022,\u0022state\u0022:{}},\u0022kernelspec\u0022:{\u0022name\u0022:\u0022synapse_pyspark\u0022,\u0022display_name\u0022:\u0022python\u0022}},\u0022cells\u0022:[{\u0022cell_type\u0022:\u0022code\u0022,\u0022metadata\u0022:{},\u0022source\u0022:[\u0022# comment\\r\\n\u0022,\u0022print(\\\u0022Hello World\\\u0022)\u0022],\u0022attachments\u0022:null,\u0022outputs\u0022:[],\u0022execution_count\u0022:null}],\u0022folder\u0022:null}},{\u0022id\u0022:\u0022/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/notebook-04-14-00-07\u0022,\u0022name\u0022:\u0022notebook-04-14-00-07\u0022,\u0022type\u0022:\u0022Microsoft.Synapse/workspaces/notebooks\u0022,\u0022etag\u0022:\u00226003a078-0000-0100-0000-607694d80000\u0022,\u0022properties\u0022:{\u0022nbformat\u0022:4,\u0022nbformat_minor\u0022:2,\u0022entityState\u0022:null,\u0022renameOperationDetails\u0022:null,\u0022bigDataPool\u0022:{\u0022referenceName\u0022:\u0022testsparkpool\u0022,\u0022type\u0022:\u0022BigDataPoolReference\u0022},\u0022sessionProperties\u0022:{\u0022driverMemory\u0022:\u002228g\u0022,\u0022driverCores\u0022:3,\u0022executorMemory\u0022:\u002245g\u0022,\u0022executorCores\u0022:7,\u0022numExecutors\u0022:2,\u0022conf\u0022:null},\u0022metadata\u0022:{\u0022language_info\u0022:{\u0022name\u0022:\u0022python\u0022},\u0022a365ComputeOptions\u0022:null,\u0022sessionKeepAliveTimeout\u0022:0},\u0022cells\u0022:[{\u0022cell_type\u0022:\u0022code\u0022,\u0022metadata\u0022:{\u0022tags\u0022:[\u0022parameters\u0022]},\u0022source\u0022:[\u0022\u0022],\u0022attachments\u0022:null,\u0022outputs\u0022:[],\u0022execution_count\u0022:null},{\u0022cell_type\u0022:\u0022code\u0022,\u0022metadata\u0022:{},\u0022source\u0022:[\u0022print(param)\u0022],\u0022attachments\u0022:null,\u0022outputs\u0022:[],\u0022execution_count\u0022:null}],\u0022folder\u0022:null}},{\u0022id\u0022:\u0022/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/notebook-04-14-00-09\u0022,\u0022name\u0022:\u0022notebook-04-14-00-09\u0022,\u0022type\u0022:\u0022Microsoft.Synapse/workspaces/notebooks\u0022,\u0022etag\u0022:\u00226103a451-0000-0100-0000-6076953a0000\u0022,\u0022properties\u0022:{\u0022nbformat\u0022:4,\u0022nbformat_minor\u0022:2,\u0022entityState\u0022:null,\u0022renameOperationDetails\u0022:null,\u0022bigDataPool\u0022:{\u0022referenceName\u0022:\u0022testsparkpool\u0022,\u0022type\u0022:\u0022BigDataPoolReference\u0022},\u0022sessionProperties\u0022:{\u0022driverMemory\u0022:\u002228g\u0022,\u0022driverCores\u0022:3,\u0022executorMemory\u0022:\u002245g\u0022,\u0022executorCores\u0022:7,\u0022numExecutors\u0022:2,\u0022conf\u0022:null},\u0022metadata\u0022:{\u0022language_info\u0022:{\u0022name\u0022:\u0022python\u0022},\u0022a365ComputeOptions\u0022:null,\u0022sessionKeepAliveTimeout\u0022:0},\u0022cells\u0022:[{\u0022cell_type\u0022:\u0022code\u0022,\u0022metadata\u0022:{\u0022tags\u0022:[\u0022parameters\u0022]},\u0022source\u0022:[\u0022\u0022],\u0022attachments\u0022:null,\u0022outputs\u0022:[],\u0022execution_count\u0022:null},{\u0022cell_type\u0022:\u0022code\u0022,\u0022metadata\u0022:{},\u0022source\u0022:[\u0022print(param)\u0022],\u0022attachments\u0022:null,\u0022outputs\u0022:[],\u0022execution_count\u0022:null}],\u0022folder\u0022:null}},{\u0022id\u0022:\u0022/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/notebook-04-19-23-25\u0022,\u0022name\u0022:\u0022notebook-04-19-23-25\u0022,\u0022type\u0022:\u0022Microsoft.Synapse/workspaces/notebooks\u0022,\u0022etag\u0022:\u0022060096a2-0000-0100-0000-607e73c90000\u0022,\u0022properties\u0022:{\u0022nbformat\u0022:4,\u0022nbformat_minor\u0022:2,\u0022entityState\u0022:null,\u0022renameOperationDetails\u0022:null,\u0022bigDataPool\u0022:{\u0022referenceName\u0022:\u0022testsparkpool\u0022,\u0022type\u0022:\u0022BigDataPoolReference\u0022},\u0022sessionProperties\u0022:{\u0022driverMemory\u0022:\u002228g\u0022,\u0022driverCores\u0022:3,\u0022executorMemory\u0022:\u002245g\u0022,\u0022executorCores\u0022:7,\u0022numExecutors\u0022:2,\u0022conf\u0022:null},\u0022metadata\u0022:{\u0022language_info\u0022:{\u0022name\u0022:\u0022python\u0022},\u0022a365ComputeOptions\u0022:null,\u0022sessionKeepAliveTimeout\u0022:0},\u0022cells\u0022:[{\u0022cell_type\u0022:\u0022code\u0022,\u0022metadata\u0022:{\u0022tags\u0022:[\u0022parameters\u0022]},\u0022source\u0022:[\u0022\u0022],\u0022attachments\u0022:null,\u0022outputs\u0022:[],\u0022execution_count\u0022:null},{\u0022cell_type\u0022:\u0022code\u0022,\u0022metadata\u0022:{},\u0022source\u0022:[\u0022print(param)\u0022],\u0022attachments\u0022:null,\u0022outputs\u0022:[],\u0022execution_count\u0022:null}],\u0022folder\u0022:null}},{\u0022id\u0022:\u0022/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/dwnb0723\u0022,\u0022name\u0022:\u0022dwnb0723\u0022,\u0022type\u0022:\u0022Microsoft.Synapse/workspaces/notebooks\u0022,\u0022etag\u0022:\u002203001052-0000-0100-0000-60e831ea0000\u0022,\u0022properties\u0022:{\u0022nbformat\u0022:4,\u0022nbformat_minor\u0022:2,\u0022entityState\u0022:null,\u0022renameOperationDetails\u0022:null,\u0022bigDataPool\u0022:null,\u0022sessionProperties\u0022:{\u0022driverMemory\u0022:\u002228g\u0022,\u0022driverCores\u0022:4,\u0022executorMemory\u0022:\u002228g\u0022,\u0022executorCores\u0022:4,\u0022numExecutors\u0022:2,\u0022conf\u0022:{\u0022spark.dynamicAllocation.enabled\u0022:\u0022false\u0022,\u0022spark.dynamicAllocation.minExecutors\u0022:\u00222\u0022,\u0022spark.dynamicAllocation.maxExecutors\u0022:\u00222\u0022}},\u0022metadata\u0022:{\u0022language_info\u0022:{\u0022name\u0022:\u0022python\u0022},\u0022a365ComputeOptions\u0022:null,\u0022sessionKeepAliveTimeout\u0022:30,\u0022saveOutput\u0022:true,\u0022synapse_widget\u0022:{\u0022version\u0022:\u00220.1\u0022,\u0022state\u0022:{}},\u0022kernelspec\u0022:{\u0022name\u0022:\u0022synapse_pyspark\u0022,\u0022display_name\u0022:\u0022python\u0022}},\u0022cells\u0022:[{\u0022cell_type\u0022:\u0022code\u0022,\u0022metadata\u0022:{},\u0022source\u0022:[\u0022print(\u0027hello\u0027)\u0022],\u0022attachments\u0022:null,\u0022outputs\u0022:[],\u0022execution_count\u0022:null}],\u0022folder\u0022:null}},{\u0022id\u0022:\u0022/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/BRMSRule\u0022,\u0022name\u0022:\u0022BRMSRule\u0022,\u0022type\u0022:\u0022Microsoft.Synapse/workspaces/notebooks\u0022,\u0022etag\u0022:\u00220e00f869-0000-0100-0000-611a2fa50000\u0022,\u0022properties\u0022:{\u0022nbformat\u0022:4,\u0022nbformat_minor\u0022:2,\u0022entityState\u0022:null,\u0022renameOperationDetails\u0022:null,\u0022bigDataPool\u0022:{\u0022referenceName\u0022:\u0022testportal\u0022,\u0022type\u0022:\u0022BigDataPoolReference\u0022},\u0022sessionProperties\u0022:{\u0022driverMemory\u0022:\u002228g\u0022,\u0022driverCores\u0022:4,\u0022executorMemory\u0022:\u002228g\u0022,\u0022executorCores\u0022:4,\u0022numExecutors\u0022:2,\u0022conf\u0022:null},\u0022metadata\u0022:{\u0022language_info\u0022:{\u0022name\u0022:\u0022python\u0022},\u0022a365ComputeOptions\u0022:{\u0022id\u0022:\u0022/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/bigDataPools/testportal\u0022,\u0022name\u0022:\u0022testportal\u0022,\u0022type\u0022:\u0022Spark\u0022,\u0022endpoint\u0022:\u0022https://testsynapseworkspace.dev.azuresynapse.net/livyApi/versions/2019-11-01-preview/sparkPools/testportal\u0022,\u0022auth\u0022:{\u0022type\u0022:\u0022AAD\u0022,\u0022authResource\u0022:\u0022https://dev.azuresynapse.net\u0022},\u0022sparkVersion\u0022:\u00223.0\u0022,\u0022nodeCount\u0022:10,\u0022cores\u0022:4,\u0022memory\u0022:28,\u0022extraHeader\u0022:null},\u0022sessionKeepAliveTimeout\u0022:30,\u0022saveOutput\u0022:true},\u0022cells\u0022:[{\u0022cell_type\u0022:\u0022code\u0022,\u0022metadata\u0022:{\u0022cellLanguage\u0022:\u0022python\u0022,\u0022tags\u0022:[\u0022parameters\u0022]},\u0022source\u0022:[\u0022param = \\\u0022\\\u0022\u0022],\u0022attachments\u0022:null,\u0022outputs\u0022:[],\u0022execution_count\u0022:null},{\u0022cell_type\u0022:\u0022code\u0022,\u0022metadata\u0022:null,\u0022source\u0022:[\u0022print(param)\\n\u0022,\u0022print(\\\u0022updated 12:29\\\u0022)\\n\u0022,\u0022a = \\\u0022\\\u0022\\\u0022\\n\u0022,\u0022/*Rule:OEMDealFlagPlan_OneConsumerPlanCustomGrouping-BEGIN*/ /*Rule:OEMDealFlagPlan_OneConsumerPlanCustomGrouping-END*/\\n\u0022,\u0022\\\u0022\\\u0022\\\u0022\\n\u0022,\u0022print(a)\u0022],\u0022attachments\u0022:null,\u0022outputs\u0022:[],\u0022execution_count\u0022:null}],\u0022folder\u0022:null}},{\u0022id\u0022:\u0022/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/dwtestnbdescription\u0022,\u0022name\u0022:\u0022dwtestnbdescription\u0022,\u0022type\u0022:\u0022Microsoft.Synapse/workspaces/notebooks\u0022,\u0022etag\u0022:\u00220e00710b-0000-0100-0000-6142dcb10000\u0022,\u0022properties\u0022:{\u0022nbformat\u0022:4,\u0022nbformat_minor\u0022:2,\u0022entityState\u0022:null,\u0022renameOperationDetails\u0022:null,\u0022bigDataPool\u0022:null,\u0022sessionProperties\u0022:{\u0022driverMemory\u0022:\u002228g\u0022,\u0022driverCores\u0022:4,\u0022executorMemory\u0022:\u002228g\u0022,\u0022executorCores\u0022:4,\u0022numExecutors\u0022:2,\u0022conf\u0022:{\u0022spark.dynamicAllocation.enabled\u0022:\u0022false\u0022,\u0022spark.dynamicAllocation.minExecutors\u0022:\u00222\u0022,\u0022spark.dynamicAllocation.maxExecutors\u0022:\u00222\u0022}},\u0022metadata\u0022:{\u0022language_info\u0022:{\u0022name\u0022:\u0022python\u0022},\u0022a365ComputeOptions\u0022:null,\u0022sessionKeepAliveTimeout\u0022:30,\u0022saveOutput\u0022:true,\u0022synapse_widget\u0022:{\u0022version\u0022:\u00220.1\u0022,\u0022state\u0022:{}},\u0022kernelspec\u0022:{\u0022name\u0022:\u0022synapse_pyspark\u0022,\u0022display_name\u0022:\u0022python\u0022}},\u0022cells\u0022:[{\u0022cell_type\u0022:\u0022code\u0022,\u0022metadata\u0022:{},\u0022source\u0022:[\u0022\u0022],\u0022attachments\u0022:null,\u0022outputs\u0022:[],\u0022execution_count\u0022:null}],\u0022folder\u0022:null}},{\u0022id\u0022:\u0022/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/Notebook51465148\u0022,\u0022name\u0022:\u0022Notebook51465148\u0022,\u0022type\u0022:\u0022Microsoft.Synapse/workspaces/notebooks\u0022,\u0022etag\u0022:\u00222e00eb87-0000-0100-0000-6155681c0000\u0022,\u0022properties\u0022:{\u0022nbformat\u0022:4,\u0022nbformat_minor\u0022:2,\u0022entityState\u0022:null,\u0022renameOperationDetails\u0022:null,\u0022bigDataPool\u0022:null,\u0022sessionProperties\u0022:null,\u0022metadata\u0022:{\u0022language_info\u0022:{\u0022name\u0022:\u0022Python\u0022},\u0022a365ComputeOptions\u0022:null,\u0022sessionKeepAliveTimeout\u0022:0},\u0022cells\u0022:[],\u0022folder\u0022:null}},{\u0022id\u0022:\u0022/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/Notebook82440489\u0022,\u0022name\u0022:\u0022Notebook82440489\u0022,\u0022type\u0022:\u0022Microsoft.Synapse/workspaces/notebooks\u0022,\u0022etag\u0022:\u00222e005180-0000-0100-0000-615556dc0000\u0022,\u0022properties\u0022:{\u0022nbformat\u0022:4,\u0022nbformat_minor\u0022:2,\u0022entityState\u0022:null,\u0022renameOperationDetails\u0022:null,\u0022bigDataPool\u0022:null,\u0022sessionProperties\u0022:null,\u0022metadata\u0022:{\u0022language_info\u0022:{\u0022name\u0022:\u0022Python\u0022},\u0022a365ComputeOptions\u0022:null,\u0022sessionKeepAliveTimeout\u0022:0},\u0022cells\u0022:[],\u0022folder\u0022:null}},{\u0022id\u0022:\u0022/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/Notebook54387962\u0022,\u0022name\u0022:\u0022Notebook54387962\u0022,\u0022type\u0022:\u0022Microsoft.Synapse/workspaces/notebooks\u0022,\u0022etag\u0022:\u00222e005680-0000-0100-0000-615556e00000\u0022,\u0022properties\u0022:{\u0022nbformat\u0022:4,\u0022nbformat_minor\u0022:2,\u0022entityState\u0022:null,\u0022renameOperationDetails\u0022:null,\u0022bigDataPool\u0022:null,\u0022sessionProperties\u0022:null,\u0022metadata\u0022:{\u0022language_info\u0022:{\u0022name\u0022:\u0022Python\u0022},\u0022a365ComputeOptions\u0022:null,\u0022sessionKeepAliveTimeout\u0022:0},\u0022cells\u0022:[],\u0022folder\u0022:null}},{\u0022id\u0022:\u0022/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/Notebook82429219\u0022,\u0022name\u0022:\u0022Notebook82429219\u0022,\u0022type\u0022:\u0022Microsoft.Synapse/workspaces/notebooks\u0022,\u0022etag\u0022:\u00222e005880-0000-0100-0000-615556e20000\u0022,\u0022properties\u0022:{\u0022nbformat\u0022:4,\u0022nbformat_minor\u0022:2,\u0022entityState\u0022:null,\u0022renameOperationDetails\u0022:null,\u0022bigDataPool\u0022:null,\u0022sessionProperties\u0022:null,\u0022metadata\u0022:{\u0022language_info\u0022:{\u0022name\u0022:\u0022Python\u0022},\u0022a365ComputeOptions\u0022:null,\u0022sessionKeepAliveTimeout\u0022:0},\u0022cells\u0022:[],\u0022folder\u0022:null}},{\u0022id\u0022:\u0022/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/Notebook12432614\u0022,\u0022name\u0022:\u0022Notebook12432614\u0022,\u0022type\u0022:\u0022Microsoft.Synapse/workspaces/notebooks\u0022,\u0022etag\u0022:\u00222e005a80-0000-0100-0000-615556e70000\u0022,\u0022properties\u0022:{\u0022nbformat\u0022:4,\u0022nbformat_minor\u0022:2,\u0022entityState\u0022:null,\u0022renameOperationDetails\u0022:null,\u0022bigDataPool\u0022:null,\u0022sessionProperties\u0022:null,\u0022metadata\u0022:{\u0022language_info\u0022:{\u0022name\u0022:\u0022Python\u0022},\u0022a365ComputeOptions\u0022:null,\u0022sessionKeepAliveTimeout\u0022:0},\u0022cells\u0022:[],\u0022folder\u0022:null}}]}" + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebooks/Notebook%201?api-version=2020-12-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-2774e2bec3be7a4988c1bb3816405da4-7533be6a1cd14346-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "8fe700156ace6796cfc458bddb6217e3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 30 Sep 2021 07:32:47 GMT", + "Request-Context": "appId=", + "Server": "Kestrel Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=2592000", + "Transfer-Encoding": "chunked", + "x-ms-client-request-id": "8fe700156ace6796cfc458bddb6217e3", + "x-ms-request-id": "ab520bb0-9a29-4b8c-b51c-1547eed60aef" }, "ResponseBody": { - "value": [ - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1684117927", - "name": "Notebook1684117927", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "f6012603-0000-0800-0000-5fd2580b0000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/Notebook 1", + "name": "Notebook 1", + "type": "Microsoft.Synapse/workspaces/notebooks", + "properties": { + "nbformat": 4, + "nbformat_minor": 2, + "entityState": null, + "renameOperationDetails": null, + "bigDataPool": { + "referenceName": "testsparkpool", + "type": "BigDataPoolReference" }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1804657934", - "name": "Notebook1804657934", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "f601cc04-0000-0800-0000-5fd258190000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null + "sessionProperties": { + "driverMemory": "28g", + "driverCores": 4, + "executorMemory": "28g", + "executorCores": 4, + "numExecutors": 1, + "conf": { + "spark.dynamicAllocation.enabled": "false", + "spark.dynamicAllocation.minExecutors": "1", + "spark.dynamicAllocation.maxExecutors": "1" } }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1646004302", - "name": "Notebook1646004302", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "f6016c1d-0000-0800-0000-5fd258f80000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 + "metadata": { + "language_info": { + "name": "python" + }, + "a365ComputeOptions": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/bigDataPools/testsparkpool", + "name": "testsparkpool", + "type": "Spark", + "endpoint": "https://testsynapseworkspace.dev.azuresynapse.net/livyApi/versions/2019-11-01-preview/sparkPools/testsparkpool", + "auth": { + "type": "AAD", + "authResource": "https://dev.azuresynapse.net" }, - "cells": [], - "folder": null + "sparkVersion": "2.4", + "nodeCount": 3, + "cores": 8, + "memory": 56, + "extraHeader": null + }, + "sessionKeepAliveTimeout": 30, + "saveOutput": true, + "synapse_widget": { + "version": "0.1", + "state": {} + }, + "kernelspec": { + "name": "synapse_pyspark", + "display_name": "python" } }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1859490190", - "name": "Notebook1859490190", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "f6017c1f-0000-0800-0000-5fd2590b0000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null + "cells": [ + { + "cell_type": "code", + "metadata": {}, + "source": [ + "print(\u0022hello from portal\u0022)" + ], + "attachments": {}, + "outputs": [], + "execution_count": null } + ], + "folder": { + "name": "nbfolder" + } + }, + "etag": "1700db78-0000-0100-0000-60f7a2160000" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebooks/dongwwaTestNotebook?api-version=2020-12-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-cb884a966982df46be10f6c84a074e35-01ed0d738c39b34e-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "c7bbc622150d17bb716871355a75b714", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 30 Sep 2021 07:32:47 GMT", + "Request-Context": "appId=", + "Server": "Kestrel Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=2592000", + "Transfer-Encoding": "chunked", + "x-ms-client-request-id": "c7bbc622150d17bb716871355a75b714", + "x-ms-request-id": "ae95e0e4-5217-47a8-8e9a-06a02ae973a4" + }, + "ResponseBody": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/dongwwaTestNotebook", + "name": "dongwwaTestNotebook", + "type": "Microsoft.Synapse/workspaces/notebooks", + "properties": { + "nbformat": 4, + "nbformat_minor": 2, + "entityState": null, + "renameOperationDetails": null, + "bigDataPool": null, + "sessionProperties": { + "driverMemory": "28g", + "driverCores": 4, + "executorMemory": "28g", + "executorCores": 4, + "numExecutors": 2, + "conf": null }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook654468314", - "name": "Notebook654468314", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "f601a43c-0000-0800-0000-5fd259f00000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } + "metadata": { + "language_info": { + "name": "python" + }, + "a365ComputeOptions": null, + "sessionKeepAliveTimeout": 30 }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook549168620", - "name": "Notebook549168620", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "f6011246-0000-0800-0000-5fd25a380000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null + "cells": [ + { + "cell_type": "code", + "metadata": {}, + "source": [ + "print(\u0027hello\u0027)" + ], + "attachments": {}, + "outputs": [], + "execution_count": null } + ], + "folder": null + }, + "etag": "0100d5a0-0000-0100-0000-5ecba4720000" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebooks/dongwwaNb2?api-version=2020-12-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-eca471617f4d5e428aca5e1ea5071257-11fc37bdbacf4649-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "0d63adbce69e8eb4936b26dc2fc4239a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 30 Sep 2021 07:32:47 GMT", + "Request-Context": "appId=", + "Server": "Kestrel Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=2592000", + "Transfer-Encoding": "chunked", + "x-ms-client-request-id": "0d63adbce69e8eb4936b26dc2fc4239a", + "x-ms-request-id": "dd6224a9-cafb-4452-91ee-a107908af9c5" + }, + "ResponseBody": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/dongwwaNb2", + "name": "dongwwaNb2", + "type": "Microsoft.Synapse/workspaces/notebooks", + "properties": { + "nbformat": 4, + "nbformat_minor": 2, + "entityState": null, + "renameOperationDetails": null, + "bigDataPool": { + "referenceName": "testportal", + "type": "BigDataPoolReference" }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1579958647", - "name": "Notebook1579958647", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "f601f6ab-0000-0800-0000-5fd25e090000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } + "sessionProperties": { + "driverMemory": "28g", + "driverCores": 4, + "executorMemory": "28g", + "executorCores": 4, + "numExecutors": 3, + "conf": null }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook2051316949", - "name": "Notebook2051316949", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "f601d5ad-0000-0800-0000-5fd25e1a0000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 + "metadata": { + "language_info": { + "name": "python" + }, + "a365ComputeOptions": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/bigDataPools/testportal", + "name": "testportal", + "type": "Spark", + "endpoint": "https://testsynapseworkspace.dev.azuresynapse.net/livyApi/versions/2019-11-01-preview/sparkPools/testportal", + "auth": { + "type": "AAD", + "authResource": "https://dev.azuresynapse.net" }, - "cells": [], - "folder": null - } + "sparkVersion": "2.4", + "nodeCount": 3, + "cores": 8, + "memory": 56, + "extraHeader": {} + }, + "sessionKeepAliveTimeout": 15 }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1928140462", - "name": "Notebook1928140462", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "f601d3c2-0000-0800-0000-5fd25ed90000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } + "cells": [], + "folder": null + }, + "etag": "1100d8f9-0000-0100-0000-5f1560de0000" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebooks/dongwwanb23?api-version=2020-12-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-34d561e9aabfa043bda241a7d518fba8-1ccc85e74295a641-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "f5a1267c887700d045cf1e66f9610d59", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 30 Sep 2021 07:32:47 GMT", + "Request-Context": "appId=", + "Server": "Kestrel Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=2592000", + "Transfer-Encoding": "chunked", + "x-ms-client-request-id": "f5a1267c887700d045cf1e66f9610d59", + "x-ms-request-id": "c20dcada-c3a1-4005-b651-a92ba057da4b" + }, + "ResponseBody": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/dongwwanb23", + "name": "dongwwanb23", + "type": "Microsoft.Synapse/workspaces/notebooks", + "properties": { + "nbformat": 4, + "nbformat_minor": 2, + "entityState": null, + "renameOperationDetails": null, + "bigDataPool": { + "referenceName": "testportal", + "type": "BigDataPoolReference" }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1404386034", - "name": "Notebook1404386034", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "f601cfc4-0000-0800-0000-5fd25eeb0000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } + "sessionProperties": { + "driverMemory": "28g", + "driverCores": 4, + "executorMemory": "28g", + "executorCores": 4, + "numExecutors": 2, + "conf": null }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook303724026", - "name": "Notebook303724026", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "f601d5dc-0000-0800-0000-5fd25fca0000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 + "metadata": { + "language_info": { + "name": "python" + }, + "a365ComputeOptions": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/bigDataPools/testportal", + "name": "testportal", + "type": "Spark", + "endpoint": "https://testsynapseworkspace.dev.azuresynapse.net/livyApi/versions/2019-11-01-preview/sparkPools/testportal", + "auth": { + "type": "AAD", + "authResource": "https://dev.azuresynapse.net" }, - "cells": [], - "folder": null - } + "sparkVersion": "2.4", + "nodeCount": 3, + "cores": 8, + "memory": 56, + "extraHeader": {} + }, + "sessionKeepAliveTimeout": 30 }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1986851418", - "name": "Notebook1986851418", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "f7019633-0000-0800-0000-5fd2630c0000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } + "cells": [], + "folder": null + }, + "etag": "5f0005d3-0000-0100-0000-5f06bc3e0000" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebooks/dongwwatestnb1446?api-version=2020-12-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-5e0eedfe74451e46b58fd8f88ab13c63-e9de2d1c7b47784e-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "2d00440c0aff3c44122d34a1eedee8ac", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 30 Sep 2021 07:32:48 GMT", + "Request-Context": "appId=", + "Server": "Kestrel Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=2592000", + "Transfer-Encoding": "chunked", + "x-ms-client-request-id": "2d00440c0aff3c44122d34a1eedee8ac", + "x-ms-request-id": "3e1365bf-9aa0-485d-a794-d8163570a2df" + }, + "ResponseBody": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/dongwwatestnb1446", + "name": "dongwwatestnb1446", + "type": "Microsoft.Synapse/workspaces/notebooks", + "properties": { + "nbformat": 4, + "nbformat_minor": 2, + "entityState": null, + "renameOperationDetails": null, + "bigDataPool": null, + "sessionProperties": { + "driverMemory": "28g", + "driverCores": 4, + "executorMemory": "28g", + "executorCores": 4, + "numExecutors": 2, + "conf": null }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1143245528", - "name": "Notebook1143245528", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "f701674a-0000-0800-0000-5fd263ee0000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook776941946", - "name": "Notebook776941946", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "f701ad4c-0000-0800-0000-5fd264020000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook768271578", - "name": "Notebook768271578", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "f701ea65-0000-0800-0000-5fd264ed0000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1861354853", - "name": "Notebook1861354853", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "f7013468-0000-0800-0000-5fd265030000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook266631340", - "name": "Notebook266631340", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "f7017295-0000-0800-0000-5fd266a80000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook646248896", - "name": "Notebook646248896", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "f701cf98-0000-0800-0000-5fd266c70000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1980347592", - "name": "Notebook1980347592", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "190267ff-0000-0800-0000-5fd3ace00000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1304984445", - "name": "Notebook1304984445", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "1a028e01-0000-0800-0000-5fd3acf20000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/demo_notebook", - "name": "demo_notebook", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "b4007455-0000-0800-0000-5fe10bec0000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": null, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [ - { - "cell_type": "code", - "metadata": {}, - "source": [ - "from azureml.opendatasets import NycTlcYellow\n", - "\n", - "data = NycTlcYellow()\n", - "df = data.to_spark_dataframe()\n", - "# Display 10 rows\n", - "display(df.limit(10))" - ], - "attachments": null, - "outputs": [], - "execution_count": null - } - ], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1633376452", - "name": "Notebook1633376452", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "62022795-0000-0800-0000-5fd797690000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook655988637", - "name": "Notebook655988637", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "62026e97-0000-0800-0000-5fd797790000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook532689105", - "name": "Notebook532689105", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "620262c6-0000-0800-0000-5fd798eb0000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1829358631", - "name": "Notebook1829358631", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "6202fdc7-0000-0800-0000-5fd798f70000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1089839457", - "name": "Notebook1089839457", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "6202aaea-0000-0800-0000-5fd799fd0000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1770509283", - "name": "Notebook1770509283", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "620269ec-0000-0800-0000-5fd79a0b0000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook2091752578", - "name": "Notebook2091752578", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "830222f7-0000-0800-0000-5fd8d3c00000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook55604260", - "name": "Notebook55604260", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "830296f9-0000-0800-0000-5fd8d3d40000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1878657682", - "name": "Notebook1878657682", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "8402a931-0000-0800-0000-5fd8d57b0000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1963301614", - "name": "Notebook1963301614", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "84025134-0000-0800-0000-5fd8d58f0000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook254029507", - "name": "Notebook254029507", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "84026757-0000-0800-0000-5fd8d69f0000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook646101363", - "name": "Notebook646101363", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "8402385a-0000-0800-0000-5fd8d6b60000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1881803406", - "name": "Notebook1881803406", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "8702bdb3-0000-0800-0000-5fd8f1460000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1158468516", - "name": "Notebook1158468516", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "8702d8b5-0000-0800-0000-5fd8f1580000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook2118558115", - "name": "Notebook2118558115", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "8702abd4-0000-0800-0000-5fd8f24b0000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook878364584", - "name": "Notebook878364584", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "87023ad6-0000-0800-0000-5fd8f2570000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook691293477", - "name": "Notebook691293477", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "8702d2f6-0000-0800-0000-5fd8f3620000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook359117693", - "name": "Notebook359117693", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "870217f9-0000-0800-0000-5fd8f3740000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1137625687", - "name": "Notebook1137625687", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "8802bd64-0000-0800-0000-5fd8f6d90000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook701971566", - "name": "Notebook701971566", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "8802b566-0000-0800-0000-5fd8f6e80000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook709354216", - "name": "Notebook709354216", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "8802ac85-0000-0800-0000-5fd8f7fc0000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook2126593779", - "name": "Notebook2126593779", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "8802f687-0000-0800-0000-5fd8f8100000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook988670801", - "name": "Notebook988670801", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "8802fbaa-0000-0800-0000-5fd8f9290000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1106903387", - "name": "Notebook1106903387", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "88023fad-0000-0800-0000-5fd8f93b0000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook2083235159", - "name": "Notebook2083235159", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "4200b366-0000-0800-0000-5fda86b80000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook844332905", - "name": "Notebook844332905", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "42005e6a-0000-0800-0000-5fda86c80000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook536090795", - "name": "Notebook536090795", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "42001aae-0000-0800-0000-5fda87d10000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1387270550", - "name": "Notebook1387270550", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "420011b2-0000-0800-0000-5fda87df0000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook415720389", - "name": "Notebook415720389", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "4200a0f2-0000-0800-0000-5fda88d60000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - } - ], - "nextLink": "https://workspacechhamosynapse.dev.azuresynapse.net:443/notebooks?api-version=2019-06-01-preview\u0026%24skipToken=%2BRID%3A%7ESl8ZAKxwhACOUgAAAAD8BA%3D%3D%23RT%3A1%23TRC%3A50%23ISV%3A2%23IEO%3A65551%23QCF%3A1" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks?api-version=2019-06-01-preview\u0026%24skipToken=%2BRID%3A~Sl8ZAKxwhACOUgAAAAD8BA%3D%3D%23RT%3A1%23TRC%3A50%23ISV%3A2%23IEO%3A65551%23QCF%3A1", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-221567a820038d4ea0d9e30953a9c49b-16c722c87ee5cd46-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "f5d32af888a0fe81fd9409c4bc3350dd", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Length": "28788", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:29:59 GMT", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "f5d32af888a0fe81fd9409c4bc3350dd", - "x-ms-request-id": "9115b36b-4d71-4987-8c51-c24b1562cd62" - }, - "ResponseBody": { - "value": [ - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook830360622", - "name": "Notebook830360622", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "420092f6-0000-0800-0000-5fda88e70000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1973916934", - "name": "Notebook1973916934", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "79007ba0-0000-0800-0000-5fdbaf830000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook2004418696", - "name": "Notebook2004418696", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "790036a5-0000-0800-0000-5fdbaf910000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1708824606", - "name": "Notebook1708824606", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "790039fc-0000-0800-0000-5fdbb0880000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook2125255332", - "name": "Notebook2125255332", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "7a00ad01-0000-0800-0000-5fdbb0970000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1794393844", - "name": "Notebook1794393844", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "7a00276a-0000-0800-0000-5fdbb1ac0000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook663395038", - "name": "Notebook663395038", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "7a001c6f-0000-0800-0000-5fdbb1b90000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1523732538", - "name": "Notebook1523732538", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "12009e94-0000-0800-0000-5fdcc7b50000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook503290111", - "name": "Notebook503290111", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "12008e98-0000-0800-0000-5fdcc7d40000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook2049484071", - "name": "Notebook2049484071", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "12003fcf-0000-0800-0000-5fdcc9a30000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook814493065", - "name": "Notebook814493065", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "120071d3-0000-0800-0000-5fdcc9c40000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook303835151", - "name": "Notebook303835151", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "1200eaff-0000-0800-0000-5fdccb400000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook140022211", - "name": "Notebook140022211", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "1300ee03-0000-0800-0000-5fdccb660000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1858151255", - "name": "Notebook1858151255", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "140000fd-0000-0800-0000-5fdcdd270000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1475602166", - "name": "Notebook1475602166", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "1400b1fe-0000-0800-0000-5fdcdd380000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1648685834", - "name": "Notebook1648685834", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "15005d1c-0000-0800-0000-5fdcde470000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1465462531", - "name": "Notebook1465462531", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "1500951d-0000-0800-0000-5fdcde520000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1324750336", - "name": "Notebook1324750336", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "1500933e-0000-0800-0000-5fdcdf620000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1321525518", - "name": "Notebook1321525518", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "15003a40-0000-0800-0000-5fdcdf710000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook959845833", - "name": "Notebook959845833", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "1500cef0-0000-0800-0000-5fdce5a20000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook881083414", - "name": "Notebook881083414", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "1500a3f2-0000-0800-0000-5fdce5b20000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook916866820", - "name": "Notebook916866820", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "1600fd14-0000-0800-0000-5fdce6d80000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1937416381", - "name": "Notebook1937416381", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "16001d17-0000-0800-0000-5fdce6eb0000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook948731996", - "name": "Notebook948731996", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "1600bd3b-0000-0800-0000-5fdce8350000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1354233639", - "name": "Notebook1354233639", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "16007f41-0000-0800-0000-5fdce8690000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1684312522", - "name": "Notebook1684312522", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "9400b436-0000-0800-0000-5fe0ce4a0000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1951782986", - "name": "Notebook1951782986", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "94007d4b-0000-0800-0000-5fe0ce700000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1394878024", - "name": "Notebook1394878024", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "9500693b-0000-0800-0000-5fe0d0310000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook2015798398", - "name": "Notebook2015798398", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "9500da4b-0000-0800-0000-5fe0d0500000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook312294723", - "name": "Notebook312294723", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "96004015-0000-0800-0000-5fe0d1ac0000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook96181799", - "name": "Notebook96181799", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "9600482c-0000-0800-0000-5fe0d1d40000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1738469849", - "name": "Notebook1738469849", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "b300c31c-0000-0800-0000-5fe108de0000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook721018453", - "name": "Notebook721018453", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "b300b02c-0000-0800-0000-5fe109060000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook56403818", - "name": "Notebook56403818", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "b30095e5-0000-0800-0000-5fe10adc0000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1072630194", - "name": "Notebook1072630194", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "b300adf3-0000-0800-0000-5fe10b010000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook779301290", - "name": "Notebook779301290", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "b4002996-0000-0800-0000-5fe10c850000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook972141614", - "name": "Notebook972141614", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "b4005baf-0000-0800-0000-5fe10cbb0000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1413336542", - "name": "Notebook1413336542", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "b7006df1-0000-0800-0000-5fe1148e0000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1398489324", - "name": "Notebook1398489324", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "b800d700-0000-0800-0000-5fe114b50000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook389141035", - "name": "Notebook389141035", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "b80019d1-0000-0800-0000-5fe116de0000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1650327112", - "name": "Notebook1650327112", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "b80079df-0000-0800-0000-5fe117060000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1212269171", - "name": "Notebook1212269171", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "b9007f66-0000-0800-0000-5fe118800000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1101304862", - "name": "Notebook1101304862", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "b900cd73-0000-0800-0000-5fe118a50000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook201258263", - "name": "Notebook201258263", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "0000abec-0000-0800-0000-5fe259810000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook766215414", - "name": "Notebook766215414", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "000014ed-0000-0800-0000-5fe259a60000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1067074944", - "name": "Notebook1067074944", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "0000f4f3-0000-0800-0000-5fe25bac0000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1308863453", - "name": "Notebook1308863453", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "0000f4f4-0000-0800-0000-5fe25bd80000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1160758455", - "name": "Notebook1160758455", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "000074f9-0000-0800-0000-5fe25d700000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1117942749", - "name": "Notebook1117942749", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "0000d5f9-0000-0800-0000-5fe25d950000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1218638232", - "name": "Notebook1218638232", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "03007877-0000-0800-0000-5fe389d40000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - } - ], - "nextLink": "https://workspacechhamosynapse.dev.azuresynapse.net:443/notebooks?api-version=2019-06-01-preview\u0026%24skipToken=%2BRID%3A%7ESl8ZAKxwhAANXAAAAAD8BA%3D%3D%23RT%3A2%23TRC%3A100%23ISV%3A2%23IEO%3A65551%23QCF%3A1" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks?api-version=2019-06-01-preview\u0026%24skipToken=%2BRID%3A~Sl8ZAKxwhAANXAAAAAD8BA%3D%3D%23RT%3A2%23TRC%3A100%23ISV%3A2%23IEO%3A65551%23QCF%3A1", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-035aec41186a7849861ee0936812d693-5894b01b303cfb4e-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "8fe700156ace6796cfc458bddb6217e3", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Length": "17117", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:00 GMT", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "8fe700156ace6796cfc458bddb6217e3", - "x-ms-request-id": "58346643-d20a-4447-ae9e-b5c9ccb4a038" - }, - "ResponseBody": { - "value": [ - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1203127906", - "name": "Notebook1203127906", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "0300d677-0000-0800-0000-5fe389f70000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook500281749", - "name": "Notebook500281749", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "03004480-0000-0800-0000-5fe38d1d0000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook754630834", - "name": "Notebook754630834", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "0300bb80-0000-0800-0000-5fe38d470000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook642331279", - "name": "Notebook642331279", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "03004b8b-0000-0800-0000-5fe390d00000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1333753034", - "name": "Notebook1333753034", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "0300ac8b-0000-0800-0000-5fe390f40000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook865145813", - "name": "Notebook865145813", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "03002095-0000-0800-0000-5fe393fa0000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook708684366", - "name": "Notebook708684366", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "0300a395-0000-0800-0000-5fe394280000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook679439297", - "name": "Notebook679439297", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "0300119e-0000-0800-0000-5fe3971a0000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1932813353", - "name": "Notebook1932813353", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "0300679e-0000-0800-0000-5fe397430000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook856832754", - "name": "Notebook856832754", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "0300bea6-0000-0800-0000-5fe39a1d0000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1790751747", - "name": "Notebook1790751747", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "030030a7-0000-0800-0000-5fe39a450000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1811244433", - "name": "Notebook1811244433", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "0300b5b2-0000-0800-0000-5fe39e390000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook226052528", - "name": "Notebook226052528", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "030027b3-0000-0800-0000-5fe39e690000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1898451087", - "name": "Notebook1898451087", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "030008c4-0000-0800-0000-5fe3a3d00000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1153376657", - "name": "Notebook1153376657", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "0300f9c4-0000-0800-0000-5fe3a3fe0000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook912671182", - "name": "Notebook912671182", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "0300fbd1-0000-0800-0000-5fe3a8730000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook2123043987", - "name": "Notebook2123043987", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "030036d3-0000-0800-0000-5fe3a8a80000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook531852650", - "name": "Notebook531852650", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "0807a71b-0000-0800-0000-6000c4570000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1417891841", - "name": "Notebook1417891841", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "08075a49-0000-0800-0000-6000c4930000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook493783868", - "name": "Notebook493783868", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "c507ac00-0000-0800-0000-6001c1080000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook2029453227", - "name": "Notebook2029453227", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "c507732b-0000-0800-0000-6001c1410000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook401570095", - "name": "Notebook401570095", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "d9079a8e-0000-0800-0000-6001dc5a0000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook410522585", - "name": "Notebook410522585", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "d90764b1-0000-0800-0000-6001dc860000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook20726443", - "name": "Notebook20726443", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "3100e91d-0000-0800-0000-600873dd0000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook13089502", - "name": "Notebook13089502", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "31007349-0000-0800-0000-600874170000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook99280730", - "name": "Notebook99280730", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "330005b5-0000-0800-0000-600877720000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook16542947", - "name": "Notebook16542947", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "3300cbd7-0000-0800-0000-600877a40000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook40157009", - "name": "Notebook40157009", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "5100e89c-0000-0800-0000-6008a2af0000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook41052258", - "name": "Notebook41052258", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "510029c4-0000-0800-0000-6008a2e60000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook51465148", - "name": "Notebook51465148", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "14016666-0000-0800-0000-6009c8260000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - } - ] - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook1684117927?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-6d1c71a024601f4db6cdb0b058a5a993-6c9425e202778147-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "c7bbc622150d17bb716871355a75b714", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:00 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "c7bbc622150d17bb716871355a75b714", - "x-ms-request-id": "7c1adc29-c3da-4369-8cd7-dc2761c7d18d" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1684117927", - "name": "Notebook1684117927", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "f6012603-0000-0800-0000-5fd2580b0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook1804657934?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-c082a7f1a4e5cd4daefe8cb6288b11ee-35f0d95ed3890a45-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "0d63adbce69e8eb4936b26dc2fc4239a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:00 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "0d63adbce69e8eb4936b26dc2fc4239a", - "x-ms-request-id": "e13dca53-82f1-406d-8c65-7986fe2e3b85" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1804657934", - "name": "Notebook1804657934", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "f601cc04-0000-0800-0000-5fd258190000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook1646004302?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-d75a6f58473f1d4d8ed13df62743e5c0-2be68cf902784941-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "f5a1267c887700d045cf1e66f9610d59", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:01 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "f5a1267c887700d045cf1e66f9610d59", - "x-ms-request-id": "8852a7fb-54c1-4d73-b27a-db5b3c333ebc" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1646004302", - "name": "Notebook1646004302", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "f6016c1d-0000-0800-0000-5fd258f80000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook1859490190?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-7caa50750e5b1342b3ff847465381dba-fd1b34512c5cf94c-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "2d00440c0aff3c44122d34a1eedee8ac", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:01 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "2d00440c0aff3c44122d34a1eedee8ac", - "x-ms-request-id": "ebf17cc1-54c1-44e4-83ca-8f1357de6b91" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1859490190", - "name": "Notebook1859490190", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "f6017c1f-0000-0800-0000-5fd2590b0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook654468314?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-1af769784756d84c9aa311cffbaaea21-9cb7ffb70bb44448-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "34b8d645c2d3349ddd62c8cec84e9531", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:01 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "34b8d645c2d3349ddd62c8cec84e9531", - "x-ms-request-id": "35dd3a95-462b-4aa5-a232-17be759a85b0" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook654468314", - "name": "Notebook654468314", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "f601a43c-0000-0800-0000-5fd259f00000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook549168620?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-4b8dd04d4849ee489bc3bb93ba60b5ce-4c42e53eacb43b41-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "ebd0cd5ef5c4729ae165e349532e1166", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:02 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "ebd0cd5ef5c4729ae165e349532e1166", - "x-ms-request-id": "a25d34fb-cbbc-47a7-9c07-c9fb72e83c01" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook549168620", - "name": "Notebook549168620", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "f6011246-0000-0800-0000-5fd25a380000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook1579958647?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-89f5fd6e46bb514bb417130ca2a75676-cd8440e89fd3b748-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "222171e7d8a84a85a6cc4f9c417573c3", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:02 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "222171e7d8a84a85a6cc4f9c417573c3", - "x-ms-request-id": "088ba4d7-4f12-44b1-9dac-d72dbec4c568" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1579958647", - "name": "Notebook1579958647", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "f601f6ab-0000-0800-0000-5fd25e090000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook2051316949?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-0ba9e1a9e805794986039f0ef33b6f98-7629a49bfacfe84b-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "21430298fc0e4fe83b46526edf53e0af", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:03 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "21430298fc0e4fe83b46526edf53e0af", - "x-ms-request-id": "3ccd3a6c-4aed-4cae-b713-c83d08199d7f" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook2051316949", - "name": "Notebook2051316949", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "f601d5ad-0000-0800-0000-5fd25e1a0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook1928140462?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-b6817ebdb6f81c4189e4a687e21b6fd8-edbf0669d96bcd47-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "56e66150722d8588478544f7a5fe306b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:03 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "56e66150722d8588478544f7a5fe306b", - "x-ms-request-id": "29256cbc-5fae-4e12-bab8-298735036806" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1928140462", - "name": "Notebook1928140462", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "f601d3c2-0000-0800-0000-5fd25ed90000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook1404386034?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-c3c5883c52ff4d49b939c0728f5bf1ee-4eebba08fd427541-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "50b11ff1f0ebeb5889d1e66286166a52", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:03 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "50b11ff1f0ebeb5889d1e66286166a52", - "x-ms-request-id": "8e70a3b5-6a97-4bd4-b4ca-cb8b6205c4d2" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1404386034", - "name": "Notebook1404386034", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "f601cfc4-0000-0800-0000-5fd25eeb0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook303724026?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-4c42d639adda4d46b75a84f0f801bb89-afde6dfa2a33c940-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "df4ba0ec1d8f25957abdd988b8f0a93d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:03 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "df4ba0ec1d8f25957abdd988b8f0a93d", - "x-ms-request-id": "dfd4fb53-8d34-44a6-86a2-75bb87b0d951" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook303724026", - "name": "Notebook303724026", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "f601d5dc-0000-0800-0000-5fd25fca0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook1986851418?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-7d922348490d674e8b45af67bde4d96a-3af0bd87bc911d45-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "bf7de7168fa260c409fbcd5c8c26ff30", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:05 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "bf7de7168fa260c409fbcd5c8c26ff30", - "x-ms-request-id": "d98bc0e6-f756-4115-be6e-3b92c4cdd9fe" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1986851418", - "name": "Notebook1986851418", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "f7019633-0000-0800-0000-5fd2630c0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook1143245528?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-939c47b0f5d0e14cae826cd3f5af520d-e1dc6a708721a74a-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "050bf21a50b2d3dc898bd62d16cf3299", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:05 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "050bf21a50b2d3dc898bd62d16cf3299", - "x-ms-request-id": "a32d4d63-335d-4b2a-9d91-91875c4c6c6d" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1143245528", - "name": "Notebook1143245528", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "f701674a-0000-0800-0000-5fd263ee0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook776941946?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-fc078bee41b21644a33ee4f192756a11-6ae49d717100724c-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "9e4ca827ab985cafdbebd69350399853", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:05 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "9e4ca827ab985cafdbebd69350399853", - "x-ms-request-id": "5bf86bc2-4c99-4453-90cd-8b8c294a0359" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook776941946", - "name": "Notebook776941946", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "f701ad4c-0000-0800-0000-5fd264020000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook768271578?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-3971611070b010448c7eddbcade5f626-d22f3bf7bb534045-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "c66da9bea4e5c58b0baa3517b8964a39", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:06 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "c66da9bea4e5c58b0baa3517b8964a39", - "x-ms-request-id": "ebd80fb0-95c2-4f35-a737-c390c6802163" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook768271578", - "name": "Notebook768271578", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "f701ea65-0000-0800-0000-5fd264ed0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook1861354853?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-3b428986fa95fd409bf1352929ae7dbc-efa8c411a8723045-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "e43433c860da6f9842ae29c779488350", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:06 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "e43433c860da6f9842ae29c779488350", - "x-ms-request-id": "7a10347e-4859-4648-8a58-f977c52d9723" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1861354853", - "name": "Notebook1861354853", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "f7013468-0000-0800-0000-5fd265030000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook266631340?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-221d3ca988f7f842ba68ecb91366fa7b-bc0cdaa7a36fea4c-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "6d6f83f26c6283b31d8693ee7598a345", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:06 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "6d6f83f26c6283b31d8693ee7598a345", - "x-ms-request-id": "98641612-561d-463f-ae18-43b7faeabb7c" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook266631340", - "name": "Notebook266631340", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "f7017295-0000-0800-0000-5fd266a80000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook646248896?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-48d888cb06e3ca45a12f98dcadf29b89-6df6f6b13ff15a40-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "1cca9da0b4055d7811fe83367bc34bc2", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:06 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "1cca9da0b4055d7811fe83367bc34bc2", - "x-ms-request-id": "57343b49-53aa-4bf3-bcf9-f74d3c0f3a19" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook646248896", - "name": "Notebook646248896", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "f701cf98-0000-0800-0000-5fd266c70000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook1980347592?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-6629ef50c1592743a0a782360fa08c73-96712eb188c6fb44-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "3524e526dd275cd780b1c653cca9f9a9", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:07 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "3524e526dd275cd780b1c653cca9f9a9", - "x-ms-request-id": "abf9bbea-fc1c-4ae9-b824-b9e38b1bd03d" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1980347592", - "name": "Notebook1980347592", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "190267ff-0000-0800-0000-5fd3ace00000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook1304984445?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-346081f5860ea44887301f58e5d94e15-91692adef92e6546-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "dc26e40a677e3d4a0a125b64e87c0859", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:07 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "dc26e40a677e3d4a0a125b64e87c0859", - "x-ms-request-id": "4b2bafae-12eb-4098-98c2-3a45ba66ed6e" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1304984445", - "name": "Notebook1304984445", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "1a028e01-0000-0800-0000-5fd3acf20000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/demo_notebook?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-ac353003540f524892305a789f216b66-c2c80b46d7bfe540-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "90c8d13a6e74c31dc66e9b54ed259067", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:07 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "90c8d13a6e74c31dc66e9b54ed259067", - "x-ms-request-id": "12af6c3c-04e2-40eb-b701-82d069012d1d" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/demo_notebook", - "name": "demo_notebook", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": null, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [ - { - "cell_type": "code", - "metadata": {}, - "source": [ - "from azureml.opendatasets import NycTlcYellow\n", - "\n", - "data = NycTlcYellow()\n", - "df = data.to_spark_dataframe()\n", - "# Display 10 rows\n", - "display(df.limit(10))" - ], - "attachments": null, - "outputs": [], - "execution_count": null - } - ], - "folder": null - }, - "etag": "b4007455-0000-0800-0000-5fe10bec0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook1633376452?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-731423f940213a44a181865ae087e0aa-4ce3425d18ae2a43-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "962cda046f9dbf439be62b1581727303", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:08 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "962cda046f9dbf439be62b1581727303", - "x-ms-request-id": "db64f7e6-8f77-4b20-ac60-f67e58552323" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1633376452", - "name": "Notebook1633376452", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "62022795-0000-0800-0000-5fd797690000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook655988637?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-2c8836733b48164b9206dc929f6ffd08-8365c63b84688e47-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "fb186da869e19c35c6621610cbf550e5", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:08 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "fb186da869e19c35c6621610cbf550e5", - "x-ms-request-id": "5af7114a-a5a2-4396-9a7b-dd238d785465" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook655988637", - "name": "Notebook655988637", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "62026e97-0000-0800-0000-5fd797790000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook532689105?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-9fe9b331f01fd54c953c69e6ab10b4d0-6bbc4f8cee0ead4e-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "0e5ff4817150cbbc8e08f58d42084253", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:08 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "0e5ff4817150cbbc8e08f58d42084253", - "x-ms-request-id": "bf00a607-96eb-463b-b921-707d9a7b599a" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook532689105", - "name": "Notebook532689105", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "620262c6-0000-0800-0000-5fd798eb0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook1829358631?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-7102bacbe7bd2942bcba66ba8270bbf5-966b06785c8d3c40-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "80ab98fb940c9b86a590d03a5833f4a5", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:09 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "80ab98fb940c9b86a590d03a5833f4a5", - "x-ms-request-id": "f1c66171-a97e-40a4-a43a-c171f828f258" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1829358631", - "name": "Notebook1829358631", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "6202fdc7-0000-0800-0000-5fd798f70000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook1089839457?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-e999e3f6569c6f458adad74b57d56125-a8474ab908cb4246-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "8c934696641337b3b04d6dd874a759be", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:09 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "8c934696641337b3b04d6dd874a759be", - "x-ms-request-id": "1d99e520-2b7e-4cb5-a85b-6ea40242aa41" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1089839457", - "name": "Notebook1089839457", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "6202aaea-0000-0800-0000-5fd799fd0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook1770509283?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-9614b96078dcc54cb4ae65c7f140400a-b3cf56abc2aa8648-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "3215c320cf4aecd96dc469bfa182735a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:09 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "3215c320cf4aecd96dc469bfa182735a", - "x-ms-request-id": "0d508cc8-3037-4d94-abdd-889d3d180c57" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1770509283", - "name": "Notebook1770509283", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "620269ec-0000-0800-0000-5fd79a0b0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook2091752578?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-9c92ed9558747642b2f06a699663b078-b0149d2198ec4247-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "fcf75014b5759640e574cfbe27ad27fd", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:09 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "fcf75014b5759640e574cfbe27ad27fd", - "x-ms-request-id": "aaa47c99-b3b3-4bda-a924-1ab01fb84786" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook2091752578", - "name": "Notebook2091752578", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "830222f7-0000-0800-0000-5fd8d3c00000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook55604260?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-4d36f4795762e8408d75b886e4368669-a91b0244bd96a243-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "951a1236c11dc65a6da61f4efbf3962e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:10 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "951a1236c11dc65a6da61f4efbf3962e", - "x-ms-request-id": "6513f587-0514-4725-9b69-bc7dbd87f82d" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook55604260", - "name": "Notebook55604260", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "830296f9-0000-0800-0000-5fd8d3d40000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook1878657682?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-34d0175e31814646a89b5443d9fc574e-afc9e29f129aea40-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "24c312d95daf6a48837e4dd6ff1ac5bf", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:10 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "24c312d95daf6a48837e4dd6ff1ac5bf", - "x-ms-request-id": "83380a87-b16f-4b9d-8580-80ff137246c2" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1878657682", - "name": "Notebook1878657682", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "8402a931-0000-0800-0000-5fd8d57b0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook1963301614?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-6793ac7967a344449294480e474b3270-7b235d89d0a01f4f-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "8f896b9dde67533cf5308ecf96f19bf1", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:10 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "8f896b9dde67533cf5308ecf96f19bf1", - "x-ms-request-id": "03d9ab7c-03e6-4854-b0e1-ab96d4255072" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1963301614", - "name": "Notebook1963301614", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "84025134-0000-0800-0000-5fd8d58f0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook254029507?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-78e6b23cd4597942bd5f9362fe7ab8a8-d0b984e88025bc47-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "15e5a1de03e9d94dc9b0129e7384c753", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:11 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "15e5a1de03e9d94dc9b0129e7384c753", - "x-ms-request-id": "f1039df3-52e7-4f4f-8bdf-91fb7b2e7fef" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook254029507", - "name": "Notebook254029507", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "84026757-0000-0800-0000-5fd8d69f0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook646101363?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-471236fad740ea44a0111197a2e202c8-6118e0d151bc464b-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "8fb05fe1066afbc6d5702e7fce79d391", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:11 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "8fb05fe1066afbc6d5702e7fce79d391", - "x-ms-request-id": "e2df098e-67e8-46db-b6fe-ba2822b678d8" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook646101363", - "name": "Notebook646101363", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "8402385a-0000-0800-0000-5fd8d6b60000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook1881803406?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-10c0f68a7a63d9499a6bd7ac91af08fb-5e56e497c3f5c848-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "5ef85ce3af349ad61dafc5b7cb9de070", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:11 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "5ef85ce3af349ad61dafc5b7cb9de070", - "x-ms-request-id": "7eb28316-73dc-47bf-a01b-2078ee58d12a" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1881803406", - "name": "Notebook1881803406", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "8702bdb3-0000-0800-0000-5fd8f1460000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook1158468516?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-bb88bf45e84c5446b0952b6a7c4de353-e30cecac65bb004a-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "37ed3b690b40d787dae93f79d4ce0a4f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:12 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "37ed3b690b40d787dae93f79d4ce0a4f", - "x-ms-request-id": "04a90dcc-d527-469b-bb6f-ac4507b43ca3" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1158468516", - "name": "Notebook1158468516", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "8702d8b5-0000-0800-0000-5fd8f1580000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook2118558115?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-b0860f2d367c99489029c74c2880a1ce-bbe9bab513fa494c-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "17bb80dc698c311e891672ba400e2f37", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:12 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "17bb80dc698c311e891672ba400e2f37", - "x-ms-request-id": "19bbc4f0-892c-4b0d-8525-7bfb3ab6ed2c" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook2118558115", - "name": "Notebook2118558115", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "8702abd4-0000-0800-0000-5fd8f24b0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook878364584?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-6f77cd765f1ef54e92d25e0f71edfd47-c485a9d0bf3b1a4c-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "9216be909b8bd850d420834b705cc64e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:13 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "9216be909b8bd850d420834b705cc64e", - "x-ms-request-id": "52321f73-2355-4792-9dbc-a4207e1dd333" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook878364584", - "name": "Notebook878364584", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "87023ad6-0000-0800-0000-5fd8f2570000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook691293477?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-212ff91a9fab574fade9d0a0e50946d6-52b5342cf1acc943-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "4bda76a5c8e200e41dbcae2a98cd96cb", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:13 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "4bda76a5c8e200e41dbcae2a98cd96cb", - "x-ms-request-id": "8fa17682-0d84-4102-b23f-493bd17cd49c" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook691293477", - "name": "Notebook691293477", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "8702d2f6-0000-0800-0000-5fd8f3620000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook359117693?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-e49e5577d8212041a9309b35d7f28a62-f5d52f96b1893140-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "15e808ba77b840c32fe2426be5d3c12c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:13 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "15e808ba77b840c32fe2426be5d3c12c", - "x-ms-request-id": "a7c05abc-e4b2-4f3a-b75a-900424143b29" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook359117693", - "name": "Notebook359117693", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "870217f9-0000-0800-0000-5fd8f3740000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook1137625687?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-2ee9b5016aa28347b412e01f9f4bfa91-0fc7c31902ecae40-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "ca152350e433c754da1675cfed264007", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:13 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "ca152350e433c754da1675cfed264007", - "x-ms-request-id": "044ef08d-24ea-4d72-9ef6-e5e55b96ed3d" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1137625687", - "name": "Notebook1137625687", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "8802bd64-0000-0800-0000-5fd8f6d90000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook701971566?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-d75faec964b5a14f965a900a3e3f9117-f7a53a02778d9943-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "6790b78ab0732d96b29a1b0086781a49", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:14 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "6790b78ab0732d96b29a1b0086781a49", - "x-ms-request-id": "86d5bae1-d749-4563-b06e-5e60e4dcd424" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook701971566", - "name": "Notebook701971566", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "8802b566-0000-0800-0000-5fd8f6e80000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook709354216?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-a634ffe89fd979438dd14c4b92dcde33-714e404e75448647-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "75d981fbcbb7d597b3213ba202f45309", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:14 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "75d981fbcbb7d597b3213ba202f45309", - "x-ms-request-id": "d1245fad-449a-4349-869c-d43998ef6b49" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook709354216", - "name": "Notebook709354216", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "8802ac85-0000-0800-0000-5fd8f7fc0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook2126593779?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-8efec04eb8a96349bd2466e66b757ec6-937a9599f85e7645-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "2de03aa259429fb88ce71899c9534161", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:14 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "2de03aa259429fb88ce71899c9534161", - "x-ms-request-id": "376e924e-d52c-4f8d-a4be-80df77266b8d" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook2126593779", - "name": "Notebook2126593779", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "8802f687-0000-0800-0000-5fd8f8100000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook988670801?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-a3e86a546f6e9145be89b0c365f55b6c-3f2f73f399426c40-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "6bd32bfbca4cbf4f20bbb45275f42bbd", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:15 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "6bd32bfbca4cbf4f20bbb45275f42bbd", - "x-ms-request-id": "004088c9-4583-4e4c-953f-426dbfcc783b" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook988670801", - "name": "Notebook988670801", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "8802fbaa-0000-0800-0000-5fd8f9290000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook1106903387?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-77a689006100af40a91b661875ee4c7b-2fd8d8b105dd6945-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "4b5e1246ed97a207c93ae8cfb3fd0b60", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:15 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "4b5e1246ed97a207c93ae8cfb3fd0b60", - "x-ms-request-id": "5b12d789-0393-46e0-9037-1e2d9e195fe1" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1106903387", - "name": "Notebook1106903387", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "88023fad-0000-0800-0000-5fd8f93b0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook2083235159?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-f0bb47422b595a4da97ab900b3a5659c-acf00237a9170348-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "d6a7d9dfe720d7bceb210d86a5652a98", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:15 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "d6a7d9dfe720d7bceb210d86a5652a98", - "x-ms-request-id": "2e6a6b50-f441-47fd-a535-9d4f6ade0f0a" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook2083235159", - "name": "Notebook2083235159", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "4200b366-0000-0800-0000-5fda86b80000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook844332905?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-b4699b3f27adc24ebe2f5d46558cb1b4-4337ffdea66ac441-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "b7525abcf6f50dc92431a212e27f0c22", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:16 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "b7525abcf6f50dc92431a212e27f0c22", - "x-ms-request-id": "40f2e3ab-9d42-4acc-b7f8-e01d82bedd66" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook844332905", - "name": "Notebook844332905", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "42005e6a-0000-0800-0000-5fda86c80000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook536090795?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-a173efd98ac14f4fb8491be8d45f0d64-fca2e9979fb8db43-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "9b7254af544c5f9c55876076e080fd63", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:16 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "9b7254af544c5f9c55876076e080fd63", - "x-ms-request-id": "6a4bee5f-67f9-4136-8fc6-1c94567d9e87" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook536090795", - "name": "Notebook536090795", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "42001aae-0000-0800-0000-5fda87d10000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook1387270550?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-d9cb3b8f51673848a3ded26723ccaf36-8b41ecd8325ed443-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "58134f0f54abe96a0f99b2ef44a9f46b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:16 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "58134f0f54abe96a0f99b2ef44a9f46b", - "x-ms-request-id": "9ae18a7f-12bd-48c9-a136-1a0548395275" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1387270550", - "name": "Notebook1387270550", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "420011b2-0000-0800-0000-5fda87df0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook415720389?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-571d36b7f013f948a1afeba50e0458ad-8bf126d76309e74a-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "51d7ea158ff3684bbdf3616d96532da3", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:17 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "51d7ea158ff3684bbdf3616d96532da3", - "x-ms-request-id": "b077f8b2-bcb8-4c1d-a13c-5c4d2714e568" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook415720389", - "name": "Notebook415720389", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "4200a0f2-0000-0800-0000-5fda88d60000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook830360622?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-09b55e6220d2d043b28ed77b19262e2d-fd63d4aa7f52a24a-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "92023f34b36c5a77e9898bb3a2ad1aac", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:17 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "92023f34b36c5a77e9898bb3a2ad1aac", - "x-ms-request-id": "01fe936c-6080-497f-b74d-945bc5cd6dfe" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook830360622", - "name": "Notebook830360622", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "420092f6-0000-0800-0000-5fda88e70000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook1973916934?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-a09faf45bfee9c4e87e80470dce50aba-c90bdde926fa6640-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "f561f592aba9807003ab9ab7f3fc53bc", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:17 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "f561f592aba9807003ab9ab7f3fc53bc", - "x-ms-request-id": "0f659d76-3048-41b2-b7f3-1bcb8acc4f96" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1973916934", - "name": "Notebook1973916934", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "79007ba0-0000-0800-0000-5fdbaf830000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook2004418696?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-23132ff105ca394b905a4ff14265057e-6ee94393c311d545-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "05ba0e6b62a761fe737c67690398c50f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:19 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "05ba0e6b62a761fe737c67690398c50f", - "x-ms-request-id": "f83f9d2a-2632-4633-85d2-c82ee0f10ec1" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook2004418696", - "name": "Notebook2004418696", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "790036a5-0000-0800-0000-5fdbaf910000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook1708824606?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-5bfc04aa8fed6c4f89d25f78df70b645-30b916fc4f346d42-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "a1dbb5d837f288f9ce818fc119bf67ec", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:19 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "a1dbb5d837f288f9ce818fc119bf67ec", - "x-ms-request-id": "4cdd56ea-2fdc-45fc-99a6-17e07ba3fa35" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1708824606", - "name": "Notebook1708824606", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "790039fc-0000-0800-0000-5fdbb0880000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook2125255332?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-06c18e59b11af94cb81bb6ea3c4f7ae5-0d97511309712147-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "9347cf3614f33004f600822d44067d6b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:19 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "9347cf3614f33004f600822d44067d6b", - "x-ms-request-id": "ebc8d079-642e-4c91-aa97-5272218946e4" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook2125255332", - "name": "Notebook2125255332", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "7a00ad01-0000-0800-0000-5fdbb0970000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook1794393844?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-209e93a5b842604ebe181ba471792f98-5f65140896ba1d4b-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "3edf8ae5b22134c914313625d23c47b3", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:20 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "3edf8ae5b22134c914313625d23c47b3", - "x-ms-request-id": "32c8edd9-ffb2-4bfa-a4b6-515897ef8aa7" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1794393844", - "name": "Notebook1794393844", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "7a00276a-0000-0800-0000-5fdbb1ac0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook663395038?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-0fd217a6a6531f45acac88c35b3e9e42-27e85e8da962dd4d-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "33337b143150c31cb0abaaf2b5cc44c8", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:20 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "33337b143150c31cb0abaaf2b5cc44c8", - "x-ms-request-id": "2ecd45fa-2aa3-4416-a45e-b180e31c3818" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook663395038", - "name": "Notebook663395038", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "7a001c6f-0000-0800-0000-5fdbb1b90000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook1523732538?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-445beadfb9a43f43922b926e174bee45-051c1ec1cc85ea40-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "8edc230429e084cb05137ec1dddf5db9", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:20 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "8edc230429e084cb05137ec1dddf5db9", - "x-ms-request-id": "a28c17b4-3f1b-4a63-b6ce-ea891e91a69d" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1523732538", - "name": "Notebook1523732538", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "12009e94-0000-0800-0000-5fdcc7b50000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook503290111?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-a2905b7248b8a742884d7b34bb6d32d9-c3ad9e2a5290e64b-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "c819ceb849d3b31a6d1b8e7507d77f48", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:21 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "c819ceb849d3b31a6d1b8e7507d77f48", - "x-ms-request-id": "5ccb2b38-db39-4a15-94da-9d573c251b71" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook503290111", - "name": "Notebook503290111", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "12008e98-0000-0800-0000-5fdcc7d40000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook2049484071?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-b4c39ce13f5c864894d2ca4aff1efa68-857fb0b75c53944a-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "ae206eedb960ebd3b0ae2e3db35be5d0", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:21 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "ae206eedb960ebd3b0ae2e3db35be5d0", - "x-ms-request-id": "b3101aae-334c-4369-8638-628826f210c5" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook2049484071", - "name": "Notebook2049484071", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "12003fcf-0000-0800-0000-5fdcc9a30000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook814493065?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-7c6913f15621574ba5e0149d06ea1ecf-f12e62fe0ffa6f43-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "e63af04e7bb3bbf4092820c59a557c2d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:21 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "e63af04e7bb3bbf4092820c59a557c2d", - "x-ms-request-id": "06656d5b-9b04-40c4-8f0c-52e4c46d2e94" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook814493065", - "name": "Notebook814493065", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "120071d3-0000-0800-0000-5fdcc9c40000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook303835151?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-c1093b7d3735384b9ce20488cafff493-dfc097b1bf2c234f-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "6fd43594aebefe59fb2d18241bdd0012", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:21 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "6fd43594aebefe59fb2d18241bdd0012", - "x-ms-request-id": "0d4e1d24-8efb-4b11-bbf1-8544c79843c8" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook303835151", - "name": "Notebook303835151", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "1200eaff-0000-0800-0000-5fdccb400000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook140022211?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-98e3350cfa48ab4a9fb9fe9318dc8daf-16c30872b5e43b41-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "1627bd35989d71957a65a537980e505a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:22 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "1627bd35989d71957a65a537980e505a", - "x-ms-request-id": "78ff4392-3c5b-4174-95d9-e2274421a832" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook140022211", - "name": "Notebook140022211", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "1300ee03-0000-0800-0000-5fdccb660000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook1858151255?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-7d2dcb1059c2de4fb80cb407b1767849-6756aca5178ccd45-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "7da9003276879f12973beb8563cfa02b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:22 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "7da9003276879f12973beb8563cfa02b", - "x-ms-request-id": "59c28125-efd8-4474-828b-ab1295caf348" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1858151255", - "name": "Notebook1858151255", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "140000fd-0000-0800-0000-5fdcdd270000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook1475602166?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-32c738b7fa3ce946a596f6d7b33147f7-be43d3df864ef24c-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "dd8f0d28652efb90a062f558082165ed", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:22 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "dd8f0d28652efb90a062f558082165ed", - "x-ms-request-id": "c53e34c7-aeb5-4fa3-b75f-5b7215ec1485" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1475602166", - "name": "Notebook1475602166", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "1400b1fe-0000-0800-0000-5fdcdd380000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook1648685834?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-29a49c2efec0fb48bc2b20c59b037b8a-de462ff4726d3e47-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "1af2bedd8234be8bab877f62ad100daa", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:23 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "1af2bedd8234be8bab877f62ad100daa", - "x-ms-request-id": "598bc172-6e65-4dde-ba6e-5ca12684514b" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1648685834", - "name": "Notebook1648685834", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "15005d1c-0000-0800-0000-5fdcde470000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook1465462531?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-4e40fa21b4e09b4d98a50a46cb8f532d-1da8d3a5be6ba947-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "8a0f79c5737ecc2b70addd2481b99676", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:23 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "8a0f79c5737ecc2b70addd2481b99676", - "x-ms-request-id": "ab18dc26-2fa2-4592-a7f2-5edf5f75ffb7" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1465462531", - "name": "Notebook1465462531", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "1500951d-0000-0800-0000-5fdcde520000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook1324750336?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-419cd8ee1311ba40a528f60f26ea2626-955ff3c80e8cea4e-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "a5a8fed585dda5f782d131a7e62d4e90", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:23 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "a5a8fed585dda5f782d131a7e62d4e90", - "x-ms-request-id": "70c82909-269f-4ecc-abea-bb4c8107145d" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1324750336", - "name": "Notebook1324750336", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "1500933e-0000-0800-0000-5fdcdf620000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook1321525518?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-fc5448014976424e8c266352591d1a2f-366347697d87d448-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "8f924a54da12696e9326aa87a5663df1", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:24 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "8f924a54da12696e9326aa87a5663df1", - "x-ms-request-id": "1f5706cc-97a0-4ba6-a1ce-f3309b268ef4" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1321525518", - "name": "Notebook1321525518", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "15003a40-0000-0800-0000-5fdcdf710000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook959845833?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-0e306bab59d94542a407a5992bca8ec8-b7dfbb5bea9bdd48-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "af8c09f0686740cd826908ac4183e642", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:24 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "af8c09f0686740cd826908ac4183e642", - "x-ms-request-id": "3e5737a1-f9e3-462a-b3ae-0bc6b33e564d" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook959845833", - "name": "Notebook959845833", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "1500cef0-0000-0800-0000-5fdce5a20000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook881083414?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-53624331d3e5344baaeda89e058e6f79-a94af5f718500c4a-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "36cf4d5e0726fa648f3e11b6db70001c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:24 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "36cf4d5e0726fa648f3e11b6db70001c", - "x-ms-request-id": "d9d4a597-3b52-484a-9ed1-6ca5873a0b10" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook881083414", - "name": "Notebook881083414", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "1500a3f2-0000-0800-0000-5fdce5b20000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook916866820?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-2eac862f7472d945b71b43800120afac-73873523aa5d9748-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "ddb640949fa0eb287d520da8d2c1280f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:25 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "ddb640949fa0eb287d520da8d2c1280f", - "x-ms-request-id": "9cd917ac-988e-4540-8d47-f6540dcfe6fd" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook916866820", - "name": "Notebook916866820", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "1600fd14-0000-0800-0000-5fdce6d80000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook1937416381?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-bde9ef886a2a1a43b76e293438a37a38-1fdd2cfbbad0c648-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "582867400696e9caa5921f2856166511", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:25 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "582867400696e9caa5921f2856166511", - "x-ms-request-id": "068f679b-4706-4e99-a456-79253526f9ed" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1937416381", - "name": "Notebook1937416381", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "16001d17-0000-0800-0000-5fdce6eb0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook948731996?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-6dc8841df86b944eab0be0ca5601e51f-d7c81e887471054e-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "0118eb6908cdbea124e4b9d4fabb27cd", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:25 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "0118eb6908cdbea124e4b9d4fabb27cd", - "x-ms-request-id": "791186dc-101a-4b2e-81d5-aa03e34a73b9" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook948731996", - "name": "Notebook948731996", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "1600bd3b-0000-0800-0000-5fdce8350000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook1354233639?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-bb94679fa6cc8543858624bcfefef494-4cbd44efec54b34b-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "73760216a7478e8675cd370e7fff9467", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:26 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "73760216a7478e8675cd370e7fff9467", - "x-ms-request-id": "c082a2d6-212f-4a42-862c-79d6009a3b0b" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1354233639", - "name": "Notebook1354233639", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "16007f41-0000-0800-0000-5fdce8690000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook1684312522?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-9930e77405c98d44aed7b86df3037d3e-f66ec2048440644d-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "e73ffbed27a93741c66a34b24cf6eee9", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:26 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "e73ffbed27a93741c66a34b24cf6eee9", - "x-ms-request-id": "65ea359d-cb56-4363-9207-47d6d70f5b60" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1684312522", - "name": "Notebook1684312522", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "9400b436-0000-0800-0000-5fe0ce4a0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook1951782986?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-eafc39ce5900a5439673f2f6a2166f71-5ebacddd657f0d44-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "5412526af19fc1c9658a8bffd1933e24", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:26 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "5412526af19fc1c9658a8bffd1933e24", - "x-ms-request-id": "7800a0c7-31d6-4327-a2f2-fee6b4e15e27" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1951782986", - "name": "Notebook1951782986", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "94007d4b-0000-0800-0000-5fe0ce700000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook1394878024?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-8f50840499d9c646b89fedb540ddd833-62bf4428403d9245-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "fee6524f407cee23c03facdd73d3417e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:28 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "fee6524f407cee23c03facdd73d3417e", - "x-ms-request-id": "68cc0efa-00d2-4785-a08a-1ee26c1d829b" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1394878024", - "name": "Notebook1394878024", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "9500693b-0000-0800-0000-5fe0d0310000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook2015798398?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-6543207cb1482a468f52723b792584b0-7a6c8f6192fed34f-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "2da34ede40ecfbc7317d821e9b416633", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:28 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "2da34ede40ecfbc7317d821e9b416633", - "x-ms-request-id": "416b1f0b-7249-4ab2-b137-dba3d6dc5cdd" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook2015798398", - "name": "Notebook2015798398", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "9500da4b-0000-0800-0000-5fe0d0500000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook312294723?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-e7d8e01089cd6c488809854e410a3d55-7461a3f883ad1a47-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "fa630f2bef0f2a6d2e24936045ec4e91", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:28 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "fa630f2bef0f2a6d2e24936045ec4e91", - "x-ms-request-id": "a07fc1b0-f23e-460f-ab97-9c32f132d10b" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook312294723", - "name": "Notebook312294723", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "96004015-0000-0800-0000-5fe0d1ac0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook96181799?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-88e56bbd223d9245a6ee98ecc8a0e62a-c3f74b04b8dbb24c-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "82210d4911ef0e388aebcdffbe05527e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:29 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "82210d4911ef0e388aebcdffbe05527e", - "x-ms-request-id": "1bcb8ff5-8efb-4665-96f6-daaf8038c5a8" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook96181799", - "name": "Notebook96181799", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "9600482c-0000-0800-0000-5fe0d1d40000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook1738469849?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-8452ff378c42ab439246cbbefdb6703d-2c62b6bb3cbd1e4d-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "64b279d94670ee6ee179fec8ad66b645", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:29 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "64b279d94670ee6ee179fec8ad66b645", - "x-ms-request-id": "c82847d5-7305-4af2-884b-b6f9f184b652" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1738469849", - "name": "Notebook1738469849", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "b300c31c-0000-0800-0000-5fe108de0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook721018453?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-e859560d0430f74fa0610f2b1472e5da-d2bf7ad1ad58a54c-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "8ed4f02ee3201943d6556f24226e6c29", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:29 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "8ed4f02ee3201943d6556f24226e6c29", - "x-ms-request-id": "c442403b-544f-444f-8baf-ae7dded83271" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook721018453", - "name": "Notebook721018453", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "b300b02c-0000-0800-0000-5fe109060000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook56403818?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-9a50ae6bc7923c478c73eca878369852-4f28ed8e19322b47-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "cb8714d1ea3903209e33a176136f6024", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:29 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "cb8714d1ea3903209e33a176136f6024", - "x-ms-request-id": "d681792a-1665-4dea-85c6-4d815298b2ac" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook56403818", - "name": "Notebook56403818", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "b30095e5-0000-0800-0000-5fe10adc0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook1072630194?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-d811e95b21936744bd361fd15d2f1451-2112f74f90ab8041-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "cdd08834c430f55e36988d1bd64acb73", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:30 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "cdd08834c430f55e36988d1bd64acb73", - "x-ms-request-id": "fc126c86-c45f-43ee-92cd-6c41598ab991" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1072630194", - "name": "Notebook1072630194", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "b300adf3-0000-0800-0000-5fe10b010000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook779301290?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-f533229cfa78914cbcbdf1dfeb7e0473-7f9e9287aa64cc4d-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "99f7d40cebdf440bcfd1efec42cd0667", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:30 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "99f7d40cebdf440bcfd1efec42cd0667", - "x-ms-request-id": "8fe8bb91-ae98-43f6-b5dc-c91cd84f6522" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook779301290", - "name": "Notebook779301290", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "b4002996-0000-0800-0000-5fe10c850000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook972141614?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-1679eaa40abe1e4faaf052e12b499290-f4ae6353c3847c49-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "9aef4bf49f9d0cf9b59195a15c052c54", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:30 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "9aef4bf49f9d0cf9b59195a15c052c54", - "x-ms-request-id": "13b22ba1-4ec1-437e-aa3a-09f43c473449" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook972141614", - "name": "Notebook972141614", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "b4005baf-0000-0800-0000-5fe10cbb0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook1413336542?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-934d05d4f11a2a469b69b8faf63bc53c-eacefb8e2663c245-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "3e692e67c77749457d8bfd5ed471b368", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:31 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "3e692e67c77749457d8bfd5ed471b368", - "x-ms-request-id": "9c03020a-356b-4919-af44-95dcf2d4a02a" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1413336542", - "name": "Notebook1413336542", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "b7006df1-0000-0800-0000-5fe1148e0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook1398489324?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-338d12507c0c0d49b03da7828fe64af6-88829f86aa00914d-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "8b272592315a6dd5dbebe34d5669e7ca", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:31 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "8b272592315a6dd5dbebe34d5669e7ca", - "x-ms-request-id": "86182ec4-e9f4-4bac-8789-e429cef6cac0" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1398489324", - "name": "Notebook1398489324", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "b800d700-0000-0800-0000-5fe114b50000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook389141035?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-03aa3846dd34b64482e7d3f7675b7151-a9dfbcfc323db441-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "13859ba5c7632cef06a51c12a19a3743", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:31 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "13859ba5c7632cef06a51c12a19a3743", - "x-ms-request-id": "cee1b8c2-56c2-4155-8fc5-685abfcdbd49" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook389141035", - "name": "Notebook389141035", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "b80019d1-0000-0800-0000-5fe116de0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook1650327112?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-1aed8534b0f2d04db0e0881fe44451fc-8fb95ec9e2ee4943-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "370f2cdea1de35f958fc638ce4f7f313", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:31 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "370f2cdea1de35f958fc638ce4f7f313", - "x-ms-request-id": "f69cda85-7a54-44a9-94be-cb5ead83d6b9" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1650327112", - "name": "Notebook1650327112", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "b80079df-0000-0800-0000-5fe117060000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook1212269171?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-054ce272a160544ab9404aab10b50170-1c40bf0aeab11546-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "39b833a39fecca0536fa84b415c3cb40", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:32 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "39b833a39fecca0536fa84b415c3cb40", - "x-ms-request-id": "0697fb4e-f3b3-4e96-8e26-aed5a89488e1" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1212269171", - "name": "Notebook1212269171", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "b9007f66-0000-0800-0000-5fe118800000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook1101304862?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-005b0613d8731441b3028a8568eb93f8-2511e5c1358da446-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "296e9fb3b05a04eba150ba676362480e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:32 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "296e9fb3b05a04eba150ba676362480e", - "x-ms-request-id": "a51dcf6e-017a-47e9-bd0c-de1f085ed9eb" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1101304862", - "name": "Notebook1101304862", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "b900cd73-0000-0800-0000-5fe118a50000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook201258263?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-20dd462125a39f42bc9a5eed88d75180-b1d4366f299cd741-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "6e6e09b2fde23e57274401e41c442095", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:32 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "6e6e09b2fde23e57274401e41c442095", - "x-ms-request-id": "69fb757b-c1ce-4374-a787-87caf85bdcf6" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook201258263", - "name": "Notebook201258263", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "0000abec-0000-0800-0000-5fe259810000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook766215414?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-c925ce6f0cad8b43adac94c7eac192ba-990bee1f521d9544-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "44d92230c988f3b847b4989ce49d66d3", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:33 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "44d92230c988f3b847b4989ce49d66d3", - "x-ms-request-id": "6420e7da-bca1-48c5-b123-022db2119390" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook766215414", - "name": "Notebook766215414", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "000014ed-0000-0800-0000-5fe259a60000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook1067074944?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-6a6df7b286073c4998fe760c4d4ad466-eaf84acc62177042-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "0b0275b15d55b55e48300216af07e85c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:33 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "0b0275b15d55b55e48300216af07e85c", - "x-ms-request-id": "116c6f26-0971-4e30-b65f-c327e579898b" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1067074944", - "name": "Notebook1067074944", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "0000f4f3-0000-0800-0000-5fe25bac0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook1308863453?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-64be52058e0c6d449423dd549285ef59-950107591c72fd4a-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "4037252f0489e885507a272e65bb5989", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:34 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "4037252f0489e885507a272e65bb5989", - "x-ms-request-id": "e2f91f3c-8631-43e2-a374-768fb3578073" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1308863453", - "name": "Notebook1308863453", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "0000f4f4-0000-0800-0000-5fe25bd80000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook1160758455?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-81ec8c80caeec449855debb49bb47210-1bb601fa255c2d42-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "a6322edd1441d340c423fc58c7a2433f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:34 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "a6322edd1441d340c423fc58c7a2433f", - "x-ms-request-id": "6963fb6e-92b6-4af0-a4f0-100122109e3b" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1160758455", - "name": "Notebook1160758455", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "000074f9-0000-0800-0000-5fe25d700000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook1117942749?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-f067e86d8c4c51468d1ab2ee5bf664c2-0ef7012690918d41-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "bf6c3bcb2565ad49f01abbda36304f8c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:34 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "bf6c3bcb2565ad49f01abbda36304f8c", - "x-ms-request-id": "548fd0c6-3f63-4fd2-8b2a-2e2993b8c293" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1117942749", - "name": "Notebook1117942749", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "0000d5f9-0000-0800-0000-5fe25d950000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook1218638232?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-58e59fc371c76f4cb63bc5e7a26e91e9-a02995ccdf87dd47-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "813878d642d51a1be4647c65082c21ad", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:34 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "813878d642d51a1be4647c65082c21ad", - "x-ms-request-id": "9be44aa6-a431-424e-87c4-72c7a0294ebc" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1218638232", - "name": "Notebook1218638232", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, "metadata": { "language_info": { - "name": "Python" + "name": "python" }, "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 + "sessionKeepAliveTimeout": 30 }, "cells": [], "folder": null }, - "etag": "03007877-0000-0800-0000-5fe389d40000" + "etag": "5f0029d3-0000-0100-0000-5f06bd6a0000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook1203127906?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebooks/dongwwaCreateNbwithCell?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-ae7674844c3bb342b51d8cd0c1b43742-f7087c8360acf743-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "2a62e7379a4eb723e485b62759669d94", + "traceparent": "00-43e57f644deec244abad3e6a83c72a3c-5078bdf9e769ff44-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "34b8d645c2d3349ddd62c8cec84e9531", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:35 GMT", + "Date": "Thu, 30 Sep 2021 07:32:48 GMT", "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Kestrel Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "2a62e7379a4eb723e485b62759669d94", - "x-ms-request-id": "07a87dd4-15b2-4ad0-a435-1feb04c34324" + "x-ms-client-request-id": "34b8d645c2d3349ddd62c8cec84e9531", + "x-ms-request-id": "95cc526b-e256-44fe-a97a-c108ed5191dd" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1203127906", - "name": "Notebook1203127906", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/dongwwaCreateNbwithCell", + "name": "dongwwaCreateNbwithCell", "type": "Microsoft.Synapse/workspaces/notebooks", "properties": { "nbformat": 4, "nbformat_minor": 2, "entityState": null, "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 + "bigDataPool": { + "referenceName": "testportal", + "type": "BigDataPoolReference" + }, + "sessionProperties": { + "driverMemory": "28g", + "driverCores": 4, + "executorMemory": "28g", + "executorCores": 4, + "numExecutors": 1, + "conf": { + "spark.dynamicAllocation.enabled": "false", + "spark.dynamicAllocation.minExecutors": "1", + "spark.dynamicAllocation.maxExecutors": "1" + } }, - "cells": [], - "folder": null - }, - "etag": "0300d677-0000-0800-0000-5fe389f70000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook500281749?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-01faac8eecefd8469a51a1dad1cd77c6-1a40e2071cfdac4d-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "4e826fd4c26a896a2051da01a9e3a4c3", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:35 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "4e826fd4c26a896a2051da01a9e3a4c3", - "x-ms-request-id": "e4ff78f9-9bda-49db-947b-d037970cfae0" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook500281749", - "name": "Notebook500281749", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, "metadata": { "language_info": { - "name": "Python" + "name": "python" }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 + "a365ComputeOptions": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/bigDataPools/testportal", + "name": "testportal", + "type": "Spark", + "endpoint": "https://testsynapseworkspace.dev.azuresynapse.net/livyApi/versions/2019-11-01-preview/sparkPools/testportal", + "auth": { + "type": "AAD", + "authResource": "https://dev.azuresynapse.net" + }, + "sparkVersion": "2.4", + "nodeCount": 3, + "cores": 8, + "memory": 56, + "extraHeader": null + }, + "sessionKeepAliveTimeout": 30, + "saveOutput": true, + "synapse_widget": { + "version": "0.1", + "state": {} + }, + "kernelspec": { + "name": "synapse_pyspark", + "display_name": "python" + } }, - "cells": [], + "cells": [ + { + "cell_type": "code", + "metadata": {}, + "source": [ + "print(\u0027hello world\u0027)" + ], + "attachments": null, + "outputs": [], + "execution_count": null + } + ], "folder": null }, - "etag": "03004480-0000-0800-0000-5fe38d1d0000" + "etag": "0e00d468-0000-0100-0000-611a2f1e0000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook754630834?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebooks/Notebook1980347592?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-92de62abb5e8174c862e58223f28b66e-85d55eab921a544e-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "4ea20df824cd3b3d54819c4f8bf3c17e", + "traceparent": "00-cd6da32f19ead241abc1af86750ca1f5-c185388859dd9e43-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "ebd0cd5ef5c4729ae165e349532e1166", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:35 GMT", + "Date": "Thu, 30 Sep 2021 07:32:48 GMT", "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Kestrel Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "4ea20df824cd3b3d54819c4f8bf3c17e", - "x-ms-request-id": "ee455c11-af74-4f50-bb47-5e9f5bf5d7a4" + "x-ms-client-request-id": "ebd0cd5ef5c4729ae165e349532e1166", + "x-ms-request-id": "4e9f1193-55c5-4e38-aa6b-eee2acbecb6c" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook754630834", - "name": "Notebook754630834", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/Notebook1980347592", + "name": "Notebook1980347592", "type": "Microsoft.Synapse/workspaces/notebooks", "properties": { - "nbformat": 4, + "nbformat": -1, "nbformat_minor": 2, "entityState": null, "renameOperationDetails": null, "bigDataPool": null, "sessionProperties": null, "metadata": { - "language_info": { - "name": "Python" - }, + "language_info": null, "a365ComputeOptions": null, "sessionKeepAliveTimeout": 0 }, "cells": [], "folder": null }, - "etag": "0300bb80-0000-0800-0000-5fe38d470000" + "etag": "00001701-0000-0100-0000-600164550000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook642331279?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebooks/Notebook1304984445?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-78c8f76da264f24f9fa16e7930b0bbb4-399179645e666d4b-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "9891e8c7d3a975437dd80afcbf220d00", + "traceparent": "00-c49b1733fbdd5340984d545df057dea2-1f57bbd869438747-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "222171e7d8a84a85a6cc4f9c417573c3", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:37 GMT", + "Date": "Thu, 30 Sep 2021 07:32:48 GMT", "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Kestrel Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "9891e8c7d3a975437dd80afcbf220d00", - "x-ms-request-id": "b264dc1d-81c6-49b5-839c-25e2055eb0bb" + "x-ms-client-request-id": "222171e7d8a84a85a6cc4f9c417573c3", + "x-ms-request-id": "715fa7ee-fbac-4620-8916-6edd12b6ed77" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook642331279", - "name": "Notebook642331279", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/Notebook1304984445", + "name": "Notebook1304984445", "type": "Microsoft.Synapse/workspaces/notebooks", "properties": { - "nbformat": 4, - "nbformat_minor": 2, + "nbformat": 0, + "nbformat_minor": 0, "entityState": null, "renameOperationDetails": null, "bigDataPool": null, "sessionProperties": null, "metadata": { - "language_info": { - "name": "Python" - }, + "language_info": null, "a365ComputeOptions": null, "sessionKeepAliveTimeout": 0 }, "cells": [], "folder": null }, - "etag": "03004b8b-0000-0800-0000-5fe390d00000" + "etag": "00004501-0000-0100-0000-600164960000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook1333753034?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebooks/dwnb1218?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-5757ba5f671db94590f09a09fc0b490a-ffe42306af30b242-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "4b2ef2e04ec3afc63147f9e9251afd2c", + "traceparent": "00-7c10dd22a1ce7a4cb7adcc24a8c0fef1-a0cb446041d51949-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "21430298fc0e4fe83b46526edf53e0af", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:37 GMT", + "Date": "Thu, 30 Sep 2021 07:32:48 GMT", "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Kestrel Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "4b2ef2e04ec3afc63147f9e9251afd2c", - "x-ms-request-id": "19e23603-1bbb-4dd5-a1a6-b7e8fea441da" + "x-ms-client-request-id": "21430298fc0e4fe83b46526edf53e0af", + "x-ms-request-id": "87b1140a-fad7-4ecf-aaf0-d4a440973c46" }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1333753034", - "name": "Notebook1333753034", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "0300ac8b-0000-0800-0000-5fe390f40000" - } + "ResponseBody": "{\u0022id\u0022:\u0022/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/dwnb1218\u0022,\u0022name\u0022:\u0022dwnb1218\u0022,\u0022type\u0022:\u0022Microsoft.Synapse/workspaces/notebooks\u0022,\u0022properties\u0022:{\u0022nbformat\u0022:4,\u0022nbformat_minor\u0022:2,\u0022entityState\u0022:null,\u0022renameOperationDetails\u0022:null,\u0022bigDataPool\u0022:null,\u0022sessionProperties\u0022:null,\u0022metadata\u0022:{\u0022language_info\u0022:{\u0022name\u0022:\u0022python\u0022},\u0022a365ComputeOptions\u0022:{\u0022id\u0022:\u0022/subscriptions/132ed640-b28a-4f12-b8b6-3792c4e9d55f/resourceGroups/z-ago-dhp-ana-ari-ew1-rg01/providers/Microsoft.Synapse/workspaces/synapseari002/bigDataPools/RunningPool\u0022,\u0022name\u0022:\u0022RunningPool\u0022,\u0022type\u0022:\u0022Spark\u0022,\u0022endpoint\u0022:\u0022https://synapseari002.dev.azuresynapse.net/livyApi/versions/2019-11-01-preview/sparkPools/RunningPool\u0022,\u0022auth\u0022:{\u0022type\u0022:\u0022AAD\u0022,\u0022authResource\u0022:\u0022https://dev.azuresynapse.net\u0022},\u0022sparkVersion\u0022:\u00222.4\u0022,\u0022nodeCount\u0022:3,\u0022cores\u0022:0,\u0022memory\u0022:0,\u0022extraHeader\u0022:null},\u0022sessionKeepAliveTimeout\u0022:0,\u0022sessionOptions\u0022:{\u0022driverMemory\u0022:\u002228g\u0022,\u0022driverCores\u0022:4,\u0022executorMemory\u0022:\u002228g\u0022,\u0022executorCores\u0022:4,\u0022numExecutors\u0022:2,\u0022keepAliveTimeout\u0022:30,\u0022conf\u0022:{\u0022spark.dynamicAllocation.enabled\u0022:\u0022false\u0022,\u0022spark.dynamicAllocation.minExecutors\u0022:\u00222\u0022,\u0022spark.dynamicAllocation.maxExecutors\u0022:\u00222\u0022}},\u0022saveOutput\u0022:true},\u0022cells\u0022:[{\u0022cell_type\u0022:\u0022code\u0022,\u0022metadata\u0022:{\u0022microsoft\u0022:{\u0022language\u0022:\u0022python1\u0022}},\u0022source\u0022:[\u0022%%pyspark\\r\\n\u0022,\u0022df = spark.read.load(\u0027abfss://synapse@zagodhpanaariew1sto02.dfs.core.windows.net/Data/COCKPIT_V0.csv\u0027, format=\u0027csv\u0027\\r\\n\u0022,\u0022## If\u202Fheader\u202Fexists\u202Funcomment\u202Fline\u202Fbelow\\r\\n\u0022,\u0022##, header=True\\r\\n\u0022,\u0022)\\r\\n\u0022,\u0022display(df.limit(10))\u0022],\u0022attachments\u0022:null,\u0022outputs\u0022:[],\u0022execution_count\u0022:null}],\u0022folder\u0022:null},\u0022etag\u0022:\u0022c2009a8b-0000-0100-0000-5fd32e170000\u0022}" }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook865145813?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebooks/dwnb1219?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-ef60d510a631554a8a87e891ebaebb49-aa1b563b3151f449-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "c13a5c900c522519ca2dd1f41a417b32", + "traceparent": "00-a8b3eae0eaf0b5449783e9508dc7932c-6e910ebc137fce4f-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "56e66150722d8588478544f7a5fe306b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:37 GMT", + "Date": "Thu, 30 Sep 2021 07:32:49 GMT", "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Kestrel Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "c13a5c900c522519ca2dd1f41a417b32", - "x-ms-request-id": "6ec6a2db-7089-4cbb-8500-0c795d7478b3" + "x-ms-client-request-id": "56e66150722d8588478544f7a5fe306b", + "x-ms-request-id": "1a7591a3-a701-4857-8445-24d80cdfd0aa" }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook865145813", - "name": "Notebook865145813", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "03002095-0000-0800-0000-5fe393fa0000" - } + "ResponseBody": "{\u0022id\u0022:\u0022/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/dwnb1219\u0022,\u0022name\u0022:\u0022dwnb1219\u0022,\u0022type\u0022:\u0022Microsoft.Synapse/workspaces/notebooks\u0022,\u0022properties\u0022:{\u0022nbformat\u0022:4,\u0022nbformat_minor\u0022:2,\u0022entityState\u0022:null,\u0022renameOperationDetails\u0022:null,\u0022bigDataPool\u0022:null,\u0022sessionProperties\u0022:null,\u0022metadata\u0022:{\u0022language_info\u0022:{\u0022name\u0022:\u0022python\u0022},\u0022a365ComputeOptions\u0022:{\u0022id\u0022:\u0022/subscriptions/132ed640-b28a-4f12-b8b6-3792c4e9d55f/resourceGroups/z-ago-dhp-ana-ari-ew1-rg01/providers/Microsoft.Synapse/workspaces/synapseari002/bigDataPools/RunningPool\u0022,\u0022name\u0022:\u0022RunningPool\u0022,\u0022type\u0022:\u0022Spark\u0022,\u0022endpoint\u0022:\u0022https://synapseari002.dev.azuresynapse.net/livyApi/versions/2019-11-01-preview/sparkPools/RunningPool\u0022,\u0022auth\u0022:{\u0022type\u0022:\u0022AAD\u0022,\u0022authResource\u0022:\u0022https://dev.azuresynapse.net\u0022},\u0022sparkVersion\u0022:\u00222.4\u0022,\u0022nodeCount\u0022:3,\u0022cores\u0022:0,\u0022memory\u0022:0,\u0022extraHeader\u0022:null},\u0022sessionKeepAliveTimeout\u0022:0,\u0022sessionOptions\u0022:{\u0022driverMemory\u0022:\u002228g\u0022,\u0022driverCores\u0022:4,\u0022executorMemory\u0022:\u002228g\u0022,\u0022executorCores\u0022:4,\u0022numExecutors\u0022:2,\u0022keepAliveTimeout\u0022:30,\u0022conf\u0022:{\u0022spark.dynamicAllocation.enabled\u0022:\u0022false\u0022,\u0022spark.dynamicAllocation.minExecutors\u0022:\u00222\u0022,\u0022spark.dynamicAllocation.maxExecutors\u0022:\u00222\u0022}},\u0022saveOutput\u0022:true},\u0022cells\u0022:[{\u0022cell_type\u0022:\u0022code\u0022,\u0022metadata\u0022:{\u0022microsoft\u0022:{\u0022language\u0022:\u0022python1\u0022}},\u0022source\u0022:[\u0022%%pyspark\\r\\n\u0022,\u0022df = spark.read.load(\u0027abfss://synapse@zagodhpanaariew1sto02.dfs.core.windows.net/Data/COCKPIT_V0.csv\u0027, format=\u0027csv\u0027\\r\\n\u0022,\u0022## If\u202Fheader\u202Fexists\u202Funcomment\u202Fline\u202Fbelow\\r\\n\u0022,\u0022##, header=True\\r\\n\u0022,\u0022)\\r\\n\u0022,\u0022display(df.limit(10))\u0022],\u0022attachments\u0022:null,\u0022outputs\u0022:[],\u0022execution_count\u0022:null}],\u0022folder\u0022:null},\u0022etag\u0022:\u0022c2009f8b-0000-0100-0000-5fd32e6c0000\u0022}" }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook708684366?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebooks/dwnb1232?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-13db3db9aea2904e9b71ea02d1baafc9-2011dba8389d454f-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "986f9b7375c478ba21e16662d95a4f62", + "traceparent": "00-4d1250ad1a4d234f9b4302519648a9f6-d09900fc9e649440-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "50b11ff1f0ebeb5889d1e66286166a52", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:38 GMT", + "Date": "Thu, 30 Sep 2021 07:32:49 GMT", "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Kestrel Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "986f9b7375c478ba21e16662d95a4f62", - "x-ms-request-id": "7925e683-6163-4586-a59b-f2dffe0a3708" + "x-ms-client-request-id": "50b11ff1f0ebeb5889d1e66286166a52", + "x-ms-request-id": "5a49f5e8-b6ce-4ac5-9aa5-4c3222bb7d67" }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook708684366", - "name": "Notebook708684366", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "0300a395-0000-0800-0000-5fe394280000" - } + "ResponseBody": "{\u0022id\u0022:\u0022/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/dwnb1232\u0022,\u0022name\u0022:\u0022dwnb1232\u0022,\u0022type\u0022:\u0022Microsoft.Synapse/workspaces/notebooks\u0022,\u0022properties\u0022:{\u0022nbformat\u0022:4,\u0022nbformat_minor\u0022:2,\u0022entityState\u0022:null,\u0022renameOperationDetails\u0022:null,\u0022bigDataPool\u0022:null,\u0022sessionProperties\u0022:null,\u0022metadata\u0022:{\u0022language_info\u0022:{\u0022name\u0022:\u0022python\u0022},\u0022a365ComputeOptions\u0022:{\u0022id\u0022:\u0022/subscriptions/132ed640-b28a-4f12-b8b6-3792c4e9d55f/resourceGroups/z-ago-dhp-ana-ari-ew1-rg01/providers/Microsoft.Synapse/workspaces/synapseari002/bigDataPools/RunningPool\u0022,\u0022name\u0022:\u0022RunningPool\u0022,\u0022type\u0022:\u0022Spark\u0022,\u0022endpoint\u0022:\u0022https://synapseari002.dev.azuresynapse.net/livyApi/versions/2019-11-01-preview/sparkPools/RunningPool\u0022,\u0022auth\u0022:{\u0022type\u0022:\u0022AAD\u0022,\u0022authResource\u0022:\u0022https://dev.azuresynapse.net\u0022},\u0022sparkVersion\u0022:\u00222.4\u0022,\u0022nodeCount\u0022:3,\u0022cores\u0022:0,\u0022memory\u0022:0,\u0022extraHeader\u0022:null},\u0022sessionKeepAliveTimeout\u0022:0,\u0022sessionOptions\u0022:{\u0022driverMemory\u0022:\u002228g\u0022,\u0022driverCores\u0022:4,\u0022executorMemory\u0022:\u002228g\u0022,\u0022executorCores\u0022:4,\u0022numExecutors\u0022:2,\u0022keepAliveTimeout\u0022:30,\u0022conf\u0022:{\u0022spark.dynamicAllocation.enabled\u0022:\u0022false\u0022,\u0022spark.dynamicAllocation.minExecutors\u0022:\u00222\u0022,\u0022spark.dynamicAllocation.maxExecutors\u0022:\u00222\u0022}},\u0022saveOutput\u0022:true},\u0022cells\u0022:[{\u0022cell_type\u0022:\u0022code1\u0022,\u0022metadata\u0022:{\u0022microsoft\u0022:{\u0022language\u0022:\u0022python\u0022}},\u0022source\u0022:[\u0022%%pyspark\\r\\n\u0022,\u0022df = spark.read.load(\u0027abfss://synapse@zagodhpanaariew1sto02.dfs.core.windows.net/Data/COCKPIT_V0.csv\u0027, format=\u0027csv\u0027\\r\\n\u0022,\u0022## If\u202Fheader\u202Fexists\u202Funcomment\u202Fline\u202Fbelow\\r\\n\u0022,\u0022##, header=True\\r\\n\u0022,\u0022)\\r\\n\u0022,\u0022display(df.limit(10))\u0022],\u0022attachments\u0022:null,\u0022outputs\u0022:[],\u0022execution_count\u0022:null}],\u0022folder\u0022:null},\u0022etag\u0022:\u0022c200a08b-0000-0100-0000-5fd32eb70000\u0022}" }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook679439297?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebooks/Notebook1655116845?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-f6388fda321d6940a8c6bcd0cd957368-8128e19a0d2e5b44-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "636cdddb4ce7d4aed90981967dd195f0", + "traceparent": "00-9545c412682f314cba80935400fcde33-7070a75b834e5a4a-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "df4ba0ec1d8f25957abdd988b8f0a93d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:38 GMT", + "Date": "Thu, 30 Sep 2021 07:32:49 GMT", "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Kestrel Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "636cdddb4ce7d4aed90981967dd195f0", - "x-ms-request-id": "86c06215-10b8-4dbc-a576-6588b5d9069d" + "x-ms-client-request-id": "df4ba0ec1d8f25957abdd988b8f0a93d", + "x-ms-request-id": "44272abb-1bcc-4c09-9af4-4e0539f9995c" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook679439297", - "name": "Notebook679439297", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/Notebook1655116845", + "name": "Notebook1655116845", "type": "Microsoft.Synapse/workspaces/notebooks", "properties": { "nbformat": 4, @@ -9045,50 +916,58 @@ "bigDataPool": null, "sessionProperties": null, "metadata": { - "language_info": { - "name": "Python" - }, + "language_info": null, "a365ComputeOptions": null, "sessionKeepAliveTimeout": 0 }, - "cells": [], + "cells": [ + { + "cell_type": "code", + "metadata": {}, + "source": [ + "from azureml.opendatasets import NycTlcYellow\n", + "\n", + "data = NycTlcYellow()\n", + "df = data.to_spark_dataframe()\n", + "# Display 10 rows\n", + "display(df.limit(10))" + ], + "attachments": null, + "outputs": [], + "execution_count": null + } + ], "folder": null }, - "etag": "0300119e-0000-0800-0000-5fe3971a0000" + "etag": "1a0072ca-0000-0100-0000-5fd6ffec0000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook1932813353?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebooks/Notebook598190831?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-e3bcd87958d6bc43823aab0c34cd89af-ec8608413cc28042-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "8975c6cb64ab1b68a2c1a070a5b64b70", + "traceparent": "00-d64a515d9a76644eaf0a24ea2419513b-55b79e1eeb32b34f-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "bf7de7168fa260c409fbcd5c8c26ff30", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:38 GMT", + "Date": "Thu, 30 Sep 2021 07:32:49 GMT", "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Kestrel Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "8975c6cb64ab1b68a2c1a070a5b64b70", - "x-ms-request-id": "53f9ee6b-ce8d-4670-89de-7dd95fb9572f" + "x-ms-client-request-id": "bf7de7168fa260c409fbcd5c8c26ff30", + "x-ms-request-id": "c599ba5a-0483-41d4-ba41-fcad716226eb" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1932813353", - "name": "Notebook1932813353", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/Notebook598190831", + "name": "Notebook598190831", "type": "Microsoft.Synapse/workspaces/notebooks", "properties": { "nbformat": 4, @@ -9098,50 +977,58 @@ "bigDataPool": null, "sessionProperties": null, "metadata": { - "language_info": { - "name": "Python" - }, + "language_info": null, "a365ComputeOptions": null, "sessionKeepAliveTimeout": 0 }, - "cells": [], + "cells": [ + { + "cell_type": "code", + "metadata": {}, + "source": [ + "from azureml.opendatasets import NycTlcYellow\n", + "\n", + "data = NycTlcYellow()\n", + "df = data.to_spark_dataframe()\n", + "# Display 10 rows\n", + "display(df.limit(10))" + ], + "attachments": null, + "outputs": [], + "execution_count": null + } + ], "folder": null }, - "etag": "0300679e-0000-0800-0000-5fe397430000" + "etag": "1a0074ca-0000-0100-0000-5fd6fff20000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook856832754?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebooks/Notebook1970176056?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-d445692067453b4ca73b1d631759bd21-87fc715ebfe96a43-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "3c196edd18d5274aed9bbfbbf424fb4f", + "traceparent": "00-7498a6c01b514342bc9d1700f609b943-2e5d92e7515ca54f-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "050bf21a50b2d3dc898bd62d16cf3299", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:39 GMT", + "Date": "Thu, 30 Sep 2021 07:32:50 GMT", "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Kestrel Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "3c196edd18d5274aed9bbfbbf424fb4f", - "x-ms-request-id": "1566056d-24d5-4feb-8249-1fdf8a48a205" + "x-ms-client-request-id": "050bf21a50b2d3dc898bd62d16cf3299", + "x-ms-request-id": "2e9270c3-b18b-4c6a-8185-3099c74f4e6d" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook856832754", - "name": "Notebook856832754", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/Notebook1970176056", + "name": "Notebook1970176056", "type": "Microsoft.Synapse/workspaces/notebooks", "properties": { "nbformat": 4, @@ -9151,50 +1038,58 @@ "bigDataPool": null, "sessionProperties": null, "metadata": { - "language_info": { - "name": "Python" - }, + "language_info": null, "a365ComputeOptions": null, "sessionKeepAliveTimeout": 0 }, - "cells": [], + "cells": [ + { + "cell_type": "code", + "metadata": {}, + "source": [ + "from azureml.opendatasets import NycTlcYellow\n", + "\n", + "data = NycTlcYellow()\n", + "df = data.to_spark_dataframe()\n", + "# Display 10 rows\n", + "display(df.limit(10))" + ], + "attachments": null, + "outputs": [], + "execution_count": null + } + ], "folder": null }, - "etag": "0300bea6-0000-0800-0000-5fe39a1d0000" + "etag": "1a0076ca-0000-0100-0000-5fd700340000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook1790751747?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebooks/Notebook1782019395?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-8d4b09c66721ff48a950a40123737052-25c1c1fe97562f4a-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "1397764cc6e476b77551c025ab3e2e22", + "traceparent": "00-cf8da04f14b19c4dad3f6a971c16eae9-974c5a6d3d30024b-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "9e4ca827ab985cafdbebd69350399853", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:39 GMT", + "Date": "Thu, 30 Sep 2021 07:32:50 GMT", "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Kestrel Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "1397764cc6e476b77551c025ab3e2e22", - "x-ms-request-id": "f750ae8e-78f9-42a2-8981-23833715a0bc" + "x-ms-client-request-id": "9e4ca827ab985cafdbebd69350399853", + "x-ms-request-id": "6f4f74cf-9a4f-4229-8e1b-d2496b607e65" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1790751747", - "name": "Notebook1790751747", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/Notebook1782019395", + "name": "Notebook1782019395", "type": "Microsoft.Synapse/workspaces/notebooks", "properties": { "nbformat": 4, @@ -9204,50 +1099,58 @@ "bigDataPool": null, "sessionProperties": null, "metadata": { - "language_info": { - "name": "Python" - }, + "language_info": null, "a365ComputeOptions": null, "sessionKeepAliveTimeout": 0 }, - "cells": [], + "cells": [ + { + "cell_type": "code", + "metadata": {}, + "source": [ + "from azureml.opendatasets import NycTlcYellow\n", + "\n", + "data = NycTlcYellow()\n", + "df = data.to_spark_dataframe()\n", + "# Display 10 rows\n", + "display(df.limit(10))" + ], + "attachments": null, + "outputs": [], + "execution_count": null + } + ], "folder": null }, - "etag": "030030a7-0000-0800-0000-5fe39a450000" + "etag": "1a0078ca-0000-0100-0000-5fd700380000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook1811244433?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebooks/Notebook407138930?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-21e56e69b646074f942d852630d0d81b-c6734189032dd24d-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "0eb810bd58b8b21b7b4e9b0fa5ac267d", + "traceparent": "00-b5f3c153de34174c8f965dac1a972c02-ea88c8437b088342-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "c66da9bea4e5c58b0baa3517b8964a39", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:39 GMT", + "Date": "Thu, 30 Sep 2021 07:32:50 GMT", "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Kestrel Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "0eb810bd58b8b21b7b4e9b0fa5ac267d", - "x-ms-request-id": "3eb19265-d6f8-4ce3-a944-da35ba83c929" + "x-ms-client-request-id": "c66da9bea4e5c58b0baa3517b8964a39", + "x-ms-request-id": "0dd78b61-9aff-4ad0-a445-c080832a6e36" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1811244433", - "name": "Notebook1811244433", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/Notebook407138930", + "name": "Notebook407138930", "type": "Microsoft.Synapse/workspaces/notebooks", "properties": { "nbformat": 4, @@ -9257,50 +1160,58 @@ "bigDataPool": null, "sessionProperties": null, "metadata": { - "language_info": { - "name": "Python" - }, + "language_info": null, "a365ComputeOptions": null, "sessionKeepAliveTimeout": 0 }, - "cells": [], + "cells": [ + { + "cell_type": "code", + "metadata": {}, + "source": [ + "from azureml.opendatasets import NycTlcYellow\n", + "\n", + "data = NycTlcYellow()\n", + "df = data.to_spark_dataframe()\n", + "# Display 10 rows\n", + "display(df.limit(10))" + ], + "attachments": null, + "outputs": [], + "execution_count": null + } + ], "folder": null }, - "etag": "0300b5b2-0000-0800-0000-5fe39e390000" + "etag": "1a007bca-0000-0100-0000-5fd7021d0000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook226052528?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebooks/Notebook1964062232?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-1d90725b75049f45a1718ac2b7a1f04f-676aedfbaefc6448-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "2f2350c6381f178bb7a3c68457247baf", + "traceparent": "00-b98ed2e8dcb6a94eb5f7e6abaafc6c7b-e381a0dd2913b541-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "e43433c860da6f9842ae29c779488350", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:39 GMT", + "Date": "Thu, 30 Sep 2021 07:32:50 GMT", "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Kestrel Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "2f2350c6381f178bb7a3c68457247baf", - "x-ms-request-id": "5c89f043-e3d5-4680-9329-26c37eb4bb9a" + "x-ms-client-request-id": "e43433c860da6f9842ae29c779488350", + "x-ms-request-id": "27ac9e51-8722-4a63-95de-03942fa4d4fe" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook226052528", - "name": "Notebook226052528", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/Notebook1964062232", + "name": "Notebook1964062232", "type": "Microsoft.Synapse/workspaces/notebooks", "properties": { "nbformat": 4, @@ -9310,50 +1221,58 @@ "bigDataPool": null, "sessionProperties": null, "metadata": { - "language_info": { - "name": "Python" - }, + "language_info": null, "a365ComputeOptions": null, "sessionKeepAliveTimeout": 0 }, - "cells": [], + "cells": [ + { + "cell_type": "code", + "metadata": {}, + "source": [ + "from azureml.opendatasets import NycTlcYellow\n", + "\n", + "data = NycTlcYellow()\n", + "df = data.to_spark_dataframe()\n", + "# Display 10 rows\n", + "display(df.limit(10))" + ], + "attachments": null, + "outputs": [], + "execution_count": null + } + ], "folder": null }, - "etag": "030027b3-0000-0800-0000-5fe39e690000" + "etag": "1a007dca-0000-0100-0000-5fd702220000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook1898451087?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebooks/Notebook1621408096?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-257b5c2d0e16fd4a9acf73fe5e2f349c-dc8d310d5e1d2c4c-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "e3fe9c6cec6bf3975ae597962aa7d0c9", + "traceparent": "00-f92d2aa33d9b0741b114cc2841473f05-5df64b750076cf43-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "6d6f83f26c6283b31d8693ee7598a345", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:40 GMT", + "Date": "Thu, 30 Sep 2021 07:32:51 GMT", "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Kestrel Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "e3fe9c6cec6bf3975ae597962aa7d0c9", - "x-ms-request-id": "14c7dd54-5564-454d-afef-67945b39d0ff" + "x-ms-client-request-id": "6d6f83f26c6283b31d8693ee7598a345", + "x-ms-request-id": "5074f50b-50a3-40b9-8353-ca56150324ac" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1898451087", - "name": "Notebook1898451087", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/Notebook1621408096", + "name": "Notebook1621408096", "type": "Microsoft.Synapse/workspaces/notebooks", "properties": { "nbformat": 4, @@ -9363,50 +1282,58 @@ "bigDataPool": null, "sessionProperties": null, "metadata": { - "language_info": { - "name": "Python" - }, + "language_info": null, "a365ComputeOptions": null, "sessionKeepAliveTimeout": 0 }, - "cells": [], + "cells": [ + { + "cell_type": "code", + "metadata": {}, + "source": [ + "from azureml.opendatasets import NycTlcYellow\n", + "\n", + "data = NycTlcYellow()\n", + "df = data.to_spark_dataframe()\n", + "# Display 10 rows\n", + "display(df.limit(10))" + ], + "attachments": null, + "outputs": [], + "execution_count": null + } + ], "folder": null }, - "etag": "030008c4-0000-0800-0000-5fe3a3d00000" + "etag": "1a007fca-0000-0100-0000-5fd703dc0000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook1153376657?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebooks/Notebook391889253?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-259fbb96a9f37c47ba1d93a8f09bc8c7-0597aff10b14de4d-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "5b5f432afe1a840385a1571492975a56", + "traceparent": "00-3e6bc39bdd430f46ad2cc5f3e88bf57b-19dbd98868bc9a4c-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "1cca9da0b4055d7811fe83367bc34bc2", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:40 GMT", + "Date": "Thu, 30 Sep 2021 07:32:51 GMT", "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Kestrel Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "5b5f432afe1a840385a1571492975a56", - "x-ms-request-id": "0e80157b-b943-41ab-bf71-aa5648398ef5" + "x-ms-client-request-id": "1cca9da0b4055d7811fe83367bc34bc2", + "x-ms-request-id": "0eee47d5-b2c3-435c-8c5a-df7faf513153" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1153376657", - "name": "Notebook1153376657", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/Notebook391889253", + "name": "Notebook391889253", "type": "Microsoft.Synapse/workspaces/notebooks", "properties": { "nbformat": 4, @@ -9416,421 +1343,1686 @@ "bigDataPool": null, "sessionProperties": null, "metadata": { - "language_info": { - "name": "Python" - }, + "language_info": null, "a365ComputeOptions": null, "sessionKeepAliveTimeout": 0 }, - "cells": [], + "cells": [ + { + "cell_type": "code", + "metadata": {}, + "source": [ + "from azureml.opendatasets import NycTlcYellow\n", + "\n", + "data = NycTlcYellow()\n", + "df = data.to_spark_dataframe()\n", + "# Display 10 rows\n", + "display(df.limit(10))" + ], + "attachments": null, + "outputs": [], + "execution_count": null + } + ], "folder": null }, - "etag": "0300f9c4-0000-0800-0000-5fe3a3fe0000" + "etag": "1a0081ca-0000-0100-0000-5fd703e90000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook912671182?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebooks/dongwwanb?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-65a54b1c2a6a7349aba876a193205460-6b15abf4e9cd664b-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "08a3ecd342add912b930d53aa1f5ec0f", + "traceparent": "00-2eb35d466fea4a46b6f21d1487707f7e-350773a2da94d24a-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "3524e526dd275cd780b1c653cca9f9a9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:41 GMT", + "Date": "Thu, 30 Sep 2021 07:32:51 GMT", "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Kestrel Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "08a3ecd342add912b930d53aa1f5ec0f", - "x-ms-request-id": "e3d7dd05-d059-4f1a-a0e4-39ffb0dbacf7" + "x-ms-client-request-id": "3524e526dd275cd780b1c653cca9f9a9", + "x-ms-request-id": "3d8d0d73-a1d9-419e-9109-1e2e7ddbdfe8" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook912671182", - "name": "Notebook912671182", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/dongwwanb", + "name": "dongwwanb", "type": "Microsoft.Synapse/workspaces/notebooks", "properties": { "nbformat": 4, - "nbformat_minor": 2, + "nbformat_minor": 0, "entityState": null, "renameOperationDetails": null, "bigDataPool": null, - "sessionProperties": null, + "sessionProperties": { + "driverMemory": "28g", + "driverCores": 4, + "executorMemory": "28g", + "executorCores": 4, + "numExecutors": 2, + "conf": { + "spark.dynamicAllocation.enabled": "false", + "spark.dynamicAllocation.minExecutors": "2", + "spark.dynamicAllocation.maxExecutors": "2" + } + }, "metadata": { "language_info": { - "name": "Python" + "name": "python" }, "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 + "sessionKeepAliveTimeout": 30, + "saveOutput": true, + "synapse_widget": { + "version": "0.1", + "state": {} + }, + "kernelspec": { + "name": "synapse_pyspark", + "display_name": "python" + } }, - "cells": [], + "cells": [ + { + "cell_type": "markdown", + "metadata": { + "application/vnd.databricks.v1\u002Bcell": { + "title": "", + "showTitle": false, + "inputWidgets": {}, + "nuid": "ec9689e6-a215-42cf-aa9f-85a38cca6362" + } + }, + "source": [ + "Copyright (c) Microsoft Corporation. All rights reserved." + ], + "attachments": null, + "outputs": [], + "execution_count": null + }, + { + "cell_type": "code", + "metadata": { + "application/vnd.databricks.v1\u002Bcell": { + "title": "", + "showTitle": false, + "inputWidgets": {}, + "nuid": "4eb23c41-ffd4-412f-a887-102462d4d316" + } + }, + "source": [ + "# Disable the verbose log\n", + "import logging\n", + "logging.getLogger(\u0022py4j\u0022).setLevel(logging.ERROR) " + ], + "attachments": null, + "outputs": [ + { + "output_type": "display_data", + "data": { + "text/html": "\u003Cstyle scoped\u003E\n .ansiout {\n display: block;\n unicode-bidi: embed;\n white-space: pre-wrap;\n word-wrap: break-word;\n word-break: break-all;\n font-family: \u0022Source Code Pro\u0022, \u0022Menlo\u0022, monospace;;\n font-size: 13px;\n color: #555;\n margin-left: 4px;\n line-height: 19px;\n }\n\u003C/style\u003E\n\u003Cdiv class=\u0022ansiout\u0022\u003E\u003C/div\u003E" + }, + "metadata": { + "application/vnd.databricks.v1\u002Boutput": { + "datasetInfos": [], + "data": "\u003Cdiv class=\u0022ansiout\u0022\u003E\u003C/div\u003E", + "removedWidgets": [], + "addedWidgets": {}, + "type": "html", + "arguments": {} + } + } + } + ], + "execution_count": 0 + }, + { + "cell_type": "code", + "metadata": { + "application/vnd.databricks.v1\u002Bcell": { + "title": "", + "showTitle": false, + "inputWidgets": {}, + "nuid": "b5c38c38-a7f7-43f5-a15c-e387079ac8d7" + } + }, + "source": [ + "\n", + "!pip install \u0022https://retaildatastore.blob.core.windows.net/artifacts/cdmsdk/commondatamodel-objectmodel-1.0.10-py3-none-any.whl?sp=r\u0026st=2021-02-11T11:46:58Z\u0026se=2022-02-11T19:46:58Z\u0026spr=https\u0026sv=2020-02-10\u0026sr=b\u0026sig=XXXXXXXXXXXXXXXXXXXXXXXX\u0022\n", + "" + ], + "attachments": null, + "outputs": [ + { + "output_type": "display_data", + "data": { + "text/html": "\u003Cstyle scoped\u003E\n .ansiout {\n display: block;\n unicode-bidi: embed;\n white-space: pre-wrap;\n word-wrap: break-word;\n word-break: break-all;\n font-family: \u0022Source Code Pro\u0022, \u0022Menlo\u0022, monospace;;\n font-size: 13px;\n color: #555;\n margin-left: 4px;\n line-height: 19px;\n }\n\u003C/style\u003E\n\u003Cdiv class=\u0022ansiout\u0022\u003E\u003C/div\u003E" + }, + "metadata": { + "application/vnd.databricks.v1\u002Boutput": { + "datasetInfos": [], + "data": "\u003Cdiv class=\u0022ansiout\u0022\u003E\u003C/div\u003E", + "removedWidgets": [], + "addedWidgets": {}, + "type": "html", + "arguments": {} + } + } + } + ], + "execution_count": 0 + }, + { + "cell_type": "code", + "metadata": { + "application/vnd.databricks.v1\u002Bcell": { + "title": "", + "showTitle": false, + "inputWidgets": {}, + "nuid": "b255d876-363a-446e-a0fa-e51f866efa77" + } + }, + "source": [ + "\n", + "\n", + "# Generic imports\n", + "import dotenv\n", + "import json\n", + "import numpy as np\n", + "import os\n", + "import fnmatch\n", + "import shutil\n", + "import random\n", + "import string\n", + "import pandas as pd\n", + "import requests\n", + "import asyncio\n", + "import copy\n", + "import functools\n", + "import pathlib\n", + "import string\n", + "from datetime import datetime, timezone\n", + "\n", + "# Spark imports\n", + "from pyspark.sql import SparkSession, SQLContext\n", + "from pyspark.sql.types import *\n", + "from pyspark.sql import functions as F\n", + "\n", + "# Recommenders imports\n", + "# from azureiai.reco_utils.dataset.spark_splitters import spark_random_split\n", + "# from azureiai.reco_utils.evaluation.spark_evaluation import (\n", + "# SparkRankingEvaluation,\n", + "# SparkRatingEvaluation,\n", + "# )\n", + "from pysarplus import SARPlus\n", + "from azureiai.retail.cdm2ai.reader import CONFIG\n", + "\n", + "# AzureML imports\n", + "import azureml.core\n", + "from azureml.core.runconfig import JarLibrary\n", + "from azureml.core.compute import ComputeTarget, DatabricksCompute\n", + "from azureml.pipeline.steps import DatabricksStep\n", + "from azureml.core.datastore import Datastore\n", + "from azureml.data.data_reference import DataReference\n", + "from azureml.core import Workspace\n", + "from azureml.core.run import Run\n", + "from azureml.core.experiment import Experiment\n", + "from azureml.core import Environment\n", + "from azureml.core.environment import CondaDependencies\n", + "from azureml.core.environment import SparkPackage\n", + "from azureml.core.model import Model\n", + "from azureml.core.webservice import Webservice\n", + "\n", + "# Cosmos DB imports\n", + "# Install Cosmos DB connector from: https://docs.databricks.com/data/data-sources/azure/cosmosdb-connector.html\n", + "from azure.common.client_factory import get_client_from_json_dict\n", + "\n", + "# CDM imports\n", + "from cdm.storage import ADLSAdapter\n", + "from cdm.objectmodel import CdmCorpusDefinition, CdmManifestDefinition\n", + "from cdm.persistence.cdmfolder import ManifestPersistence\n", + "from cdm.persistence.cdmfolder.types import ManifestContent\n", + "from cdm.storage import LocalAdapter, ADLSAdapter\n", + "from cdm.utilities import time_utils\n", + "\n", + "from cdm.utilities.string_utils import kvprint\n", + "\n", + "# AKS imports\n", + "from azureml.core.compute import AksCompute\n", + "from azureml.core.compute_target import ComputeTargetException\n", + "from azureml.core.webservice import AksWebservice\n", + "from azureml.exceptions import WebserviceException\n", + "from azureml.core.model import InferenceConfig\n", + "\n", + "" + ], + "attachments": null, + "outputs": [ + { + "output_type": "display_data", + "data": { + "text/html": "\u003Cstyle scoped\u003E\n .ansiout {\n display: block;\n unicode-bidi: embed;\n white-space: pre-wrap;\n word-wrap: break-word;\n word-break: break-all;\n font-family: \u0022Source Code Pro\u0022, \u0022Menlo\u0022, monospace;;\n font-size: 13px;\n color: #555;\n margin-left: 4px;\n line-height: 19px;\n }\n\u003C/style\u003E\n\u003Cdiv class=\u0022ansiout\u0022\u003E\u003C/div\u003E" + }, + "metadata": { + "application/vnd.databricks.v1\u002Boutput": { + "datasetInfos": [], + "data": "\u003Cdiv class=\u0022ansiout\u0022\u003E\u003C/div\u003E", + "removedWidgets": [], + "addedWidgets": {}, + "type": "html", + "arguments": {} + } + } + } + ], + "execution_count": 0 + }, + { + "cell_type": "code", + "metadata": { + "application/vnd.databricks.v1\u002Bcell": { + "title": "", + "showTitle": false, + "inputWidgets": {}, + "nuid": "bb6041f1-a825-41ae-ba4d-de6dff6e361a" + } + }, + "source": [ + "# Global variables\n", + "# NOTE these variables are visible in the scope of the entire pipeline\n", + "\n", + "# Load the .env file to manage persistent variables\n", + "_GLOBAL_DOTENV_PATH = pathlib.Path(dotenv.find_dotenv(\n", + " filename=\u0022/dbfs/FileStore/.env\u0022,\n", + " raise_error_if_not_found=True\n", + "))\n", + "\n", + "# -------------------------------------------------------------------------\n", + "# Azure general variables\n", + "# -------------------------------------------------------------------------\n", + "_GLOBAL_SUBSCRIPTION_ID = dotenv.get_key(_GLOBAL_DOTENV_PATH, \u0022subscription_id\u0022)\n", + "_GLOBAL_RESOURCE_GROUP = dotenv.get_key(_GLOBAL_DOTENV_PATH, \u0022resource_group\u0022)\n", + "_GLOBAL_CONFIG_DICT = {\n", + " \u0022clientIdKey\u0022: \u0022sp_client_id\u0022,\n", + " \u0022clientSecretKey\u0022: \u0022sp_password\u0022,\n", + " \u0022clientId\u0022: dbutils.secrets.get(scope=\u0022secrets\u0022, key=\u0022sp_client_id\u0022),\n", + " \u0022clientSecret\u0022: dbutils.secrets.get(scope=\u0022secrets\u0022, key=\u0022sp_password\u0022),\n", + " \u0022subscriptionId\u0022: _GLOBAL_SUBSCRIPTION_ID,\n", + " \u0022tenantId\u0022: dotenv.get_key(_GLOBAL_DOTENV_PATH, \u0022tenant_id\u0022),\n", + " \u0022activeDirectoryEndpointUrl\u0022: \u0022https://login.microsoftonline.com\u0022,\n", + " \u0022resourceManagerEndpointUrl\u0022: \u0022https://management.azure.com/\u0022,\n", + " \u0022activeDirectoryGraphResourceId\u0022: \u0022https://graph.windows.net/\u0022,\n", + " \u0022sqlManagementEndpointUrl\u0022: \u0022https://management.core.windows.net:8443/\u0022,\n", + " \u0022galleryEndpointUrl\u0022: \u0022https://gallery.azure.com/\u0022,\n", + " \u0022managementEndpointUrl\u0022: \u0022https://management.core.windows.net/\u0022\n", + "}\n", + "\n", + "# -------------------------------------------------------------------------\n", + "# ADLS variables\n", + "# -------------------------------------------------------------------------\n", + "_GLOBAL_ADLS_ACCOUNT = dotenv.get_key(_GLOBAL_DOTENV_PATH, \u0022data_account\u0022)\n", + "_GLOBAL_ADLS_CONTAINER = dotenv.get_key(_GLOBAL_DOTENV_PATH, \u0022data_container\u0022)\n", + "_GLOBAL_ADLS_APPID = _GLOBAL_CONFIG_DICT[\u0022clientId\u0022]\n", + "_GLOBAL_ADLS_DIRID = _GLOBAL_CONFIG_DICT[\u0022tenantId\u0022]\n", + "_GLOBAL_ADLS_SECRET = _GLOBAL_CONFIG_DICT[\u0022clientSecret\u0022]\n", + "_GLOBAL_ADLS_HOSTNAME = f\u0027{_GLOBAL_ADLS_ACCOUNT}.dfs.core.windows.net\u0027\n", + "_GLOBAL_ADLS_DICT = {\n", + " \u0022adls_source\u0022: \u0022abfss://{0}@{1}.dfs.core.windows.net\u0022.format(_GLOBAL_ADLS_CONTAINER, _GLOBAL_ADLS_ACCOUNT),\n", + " \u0022oauth_endpoint\u0022: \u0022https://login.microsoftonline.com/{0}/oauth2/token\u0022.format(_GLOBAL_CONFIG_DICT[\u0022tenantId\u0022]),\n", + " \u0022adls_dfs_endpoint\u0022: \u0022{0}.dfs.core.windows.net\u0022.format(_GLOBAL_ADLS_ACCOUNT),\n", + " \u0022adls_container_mount_point\u0022: \u0022/mnt/{0}\u0022.format(_GLOBAL_ADLS_CONTAINER),\n", + " \u0022adls_resource_type\u0022: \u0022https://storage.azure.com\u0022,\n", + " \u0022adls_mount_root\u0022: \u0022/mnt\u0022,\n", + " \u0022adls_model_cache\u0022: \u0022dbfs:/mnt/{0}/cache\u0022.format(_GLOBAL_ADLS_CONTAINER)\n", + "}\n", + "\n", + "# -------------------------------------------------------------------------\n", + "# COSMOS DB variables\n", + "# -------------------------------------------------------------------------\n", + "_GLOBAL_DB_SECRETS = {\n", + " \u0022Endpoint\u0022: \u0022https://{0}.documents.azure.com:443/\u0022.format(dotenv.get_key(_GLOBAL_DOTENV_PATH, \u0022azure_cosmosdb_account_name\u0022)),\n", + " \u0022Masterkey\u0022: dbutils.secrets.get(scope=\u0022secrets\u0022, key=\u0022cosmosdb_primary_master_key\u0022),\n", + " \u0022Database\u0022: dotenv.get_key(_GLOBAL_DOTENV_PATH, \u0022azure_cosmosdb_database\u0022),\n", + " \u0022Collection\u0022: dotenv.get_key(_GLOBAL_DOTENV_PATH, \u0022azure_cosmosdb_container\u0022),\n", + " \u0022Upsert\u0022: True\n", + "}\n", + "\n", + "# -------------------------------------------------------------------------\n", + "# Data variables\n", + "# -------------------------------------------------------------------------\n", + "_GLOBAL_DATA_ROOT = dotenv.get_key(_GLOBAL_DOTENV_PATH, \u0022physical_data_model_directory\u0022)\n", + "_GLOBAL_TPC_RAW_ROOT = \u0027tpcds-raw-data\u0027\n", + "_GLOBAL_IDM_SCHEMA_ROOT = dotenv.get_key(_GLOBAL_DOTENV_PATH, \u0022logical_data_model_directory\u0022)\n", + "_GLOBAL_DATA_NAME = dotenv.get_key(_GLOBAL_DOTENV_PATH, \u0022data_name\u0022)\n", + "_GLOBAL_ADAPTER_PARTIAL = functools.partial(\n", + " ADLSAdapter,\n", + " hostname=_GLOBAL_ADLS_HOSTNAME,\n", + " tenant=_GLOBAL_ADLS_DIRID,\n", + " client_id=_GLOBAL_ADLS_APPID,\n", + " secret=_GLOBAL_ADLS_SECRET\n", + ")\n", + "_GLOBAL_CONFIG_JSON = copy.deepcopy(CONFIG)\n", + "_GLOBAL_CONFIG_JSON[\u0022adls\u0022][\u0022account\u0022] = _GLOBAL_ADLS_ACCOUNT\n", + "_GLOBAL_CONFIG_JSON[\u0022adls\u0022][\u0022container\u0022] = _GLOBAL_ADLS_CONTAINER\n", + "_GLOBAL_CONFIG_JSON[\u0022adls\u0022][\u0022appid\u0022] = _GLOBAL_ADLS_APPID\n", + "_GLOBAL_CONFIG_JSON[\u0022adls\u0022][\u0022dirid\u0022] = _GLOBAL_ADLS_DIRID\n", + "_GLOBAL_CONFIG_JSON[\u0022adls\u0022][\u0022secret\u0022] = _GLOBAL_ADLS_SECRET\n", + "_GLOBAL_CONFIG_JSON[\u0022adls\u0022][\u0022hostname\u0022] = _GLOBAL_ADLS_HOSTNAME\n", + "_GLOBAL_CONFIG_JSON[\u0022cdm\u0022][\u0022data_root\u0022] = _GLOBAL_DATA_ROOT\n", + "_GLOBAL_CONFIG_JSON[\u0022cdm\u0022][\u0022manifest_name\u0022] = \u0022{0}.manifest.cdm.json\u0022.format(dotenv.get_key(_GLOBAL_DOTENV_PATH, \u0022industry_data_model_name\u0022))\n", + "_GLOBAL_INPUT_DATA_FILE = dotenv.get_key(_GLOBAL_DOTENV_PATH, \u0022processed_data_file\u0022)\n", + "_GLOBAL_CUSTOMER_DATA_FILE = dotenv.get_key(_GLOBAL_DOTENV_PATH, \u0022processed_customer_data_file\u0022)\n", + "\n", + "# -------------------------------------------------------------------------\n", + "# Model variables\n", + "# -------------------------------------------------------------------------\n", + "_GLOBAL_MODEL_LOCAL_CACHE = \u0027dbfs:/model/{0}\u0027.format(\n", + " \u0027\u0027.join(random.choice(string.ascii_lowercase) for i in range(10))\n", + ")\n", + "\n", + "# -------------------------------------------------------------------------\n", + "# Azure Machine Learning service variables\n", + "# -------------------------------------------------------------------------\n", + "_GLOBAL_AML_DICT = {\n", + " \u0022workspace_name\u0022: dotenv.get_key(_GLOBAL_DOTENV_PATH, \u0022azureml_workspace\u0022),\n", + " \u0022model_file_name\u0022: dotenv.get_key(_GLOBAL_DOTENV_PATH, \u0022azureml_model_file_name\u0022),\n", + " \u0022aml_experiment_name\u0022: dotenv.get_key(_GLOBAL_DOTENV_PATH, \u0022azureml_experiment_name\u0022)\n", + "}\n", + "\n", + "# -------------------------------------------------------------------------\n", + "# Azure Kubernetes Service variables\n", + "# -------------------------------------------------------------------------\n", + "_GLOBAL_AKS_NAME = dotenv.get_key(_GLOBAL_DOTENV_PATH, \u0022aks_cluster_name\u0022)\n", + "_GLOBAL_SERVICE_NAME = \u0022aks-service-{0}\u0022.format(dotenv.get_key(_GLOBAL_DOTENV_PATH, \u0022unique_key\u0022))\n", + "_GLOBAL_AKS_CONFIG_LEVEL = dotenv.get_key(_GLOBAL_DOTENV_PATH, \u0022aks_config_level\u0022)\n", + "_GLOBAL_AKS_COMPUTE_TARGET_NAME = \u0027aks\u0027 \u002B dotenv.get_key(_GLOBAL_DOTENV_PATH, \u0022unique_key\u0022)" + ], + "attachments": null, + "outputs": [ + { + "output_type": "display_data", + "data": { + "text/html": "\u003Cstyle scoped\u003E\n .ansiout {\n display: block;\n unicode-bidi: embed;\n white-space: pre-wrap;\n word-wrap: break-word;\n word-break: break-all;\n font-family: \u0022Source Code Pro\u0022, \u0022Menlo\u0022, monospace;;\n font-size: 13px;\n color: #555;\n margin-left: 4px;\n line-height: 19px;\n }\n\u003C/style\u003E\n\u003Cdiv class=\u0022ansiout\u0022\u003E\u003C/div\u003E" + }, + "metadata": { + "application/vnd.databricks.v1\u002Boutput": { + "datasetInfos": [], + "data": "\u003Cdiv class=\u0022ansiout\u0022\u003E\u003C/div\u003E", + "removedWidgets": [], + "addedWidgets": {}, + "type": "html", + "arguments": {} + } + } + }, + { + "output_type": "display_data", + "data": { + "text/html": "\u003Cstyle scoped\u003E\n .ansiout {\n display: block;\n unicode-bidi: embed;\n white-space: pre-wrap;\n word-wrap: break-word;\n word-break: break-all;\n font-family: \u0022Source Code Pro\u0022, \u0022Menlo\u0022, monospace;;\n font-size: 13px;\n color: #555;\n margin-left: 4px;\n line-height: 19px;\n }\n\u003C/style\u003E\n\u003Cdiv class=\u0022ansiout\u0022\u003E\u003Cspan class=\u0022ansi-red-fg\u0022\u003E---------------------------------------------------------------------------\u003C/span\u003E\n\u003Cspan class=\u0022ansi-red-fg\u0022\u003ENameError\u003C/span\u003E Traceback (most recent call last)\n\u003Cspan class=\u0022ansi-green-fg\u0022\u003E\u0026lt;command-1159393715563018\u0026gt;\u003C/span\u003E in \u003Cspan class=\u0022ansi-cyan-fg\u0022\u003E\u0026lt;module\u0026gt;\u003C/span\u003E\n\u003Cspan class=\u0022ansi-green-intense-fg ansi-bold\u0022\u003E 66\u003C/span\u003E _GLOBAL_DATA_NAME \u003Cspan class=\u0022ansi-blue-fg\u0022\u003E=\u003C/span\u003E dotenv\u003Cspan class=\u0022ansi-blue-fg\u0022\u003E.\u003C/span\u003Eget_key\u003Cspan class=\u0022ansi-blue-fg\u0022\u003E(\u003C/span\u003E_GLOBAL_DOTENV_PATH\u003Cspan class=\u0022ansi-blue-fg\u0022\u003E,\u003C/span\u003E \u003Cspan class=\u0022ansi-blue-fg\u0022\u003E\u0026#34;data_name\u0026#34;\u003C/span\u003E\u003Cspan class=\u0022ansi-blue-fg\u0022\u003E)\u003C/span\u003E\n\u003Cspan class=\u0022ansi-green-intense-fg ansi-bold\u0022\u003E 67\u003C/span\u003E _GLOBAL_ADAPTER_PARTIAL = functools.partial(\n\u003Cspan class=\u0022ansi-green-fg\u0022\u003E---\u0026gt; 68\u003C/span\u003E\u003Cspan class=\u0022ansi-red-fg\u0022\u003E \u003C/span\u003EADLSAdapter\u003Cspan class=\u0022ansi-blue-fg\u0022\u003E,\u003C/span\u003E\n\u003Cspan class=\u0022ansi-green-intense-fg ansi-bold\u0022\u003E 69\u003C/span\u003E hostname\u003Cspan class=\u0022ansi-blue-fg\u0022\u003E=\u003C/span\u003E_GLOBAL_ADLS_HOSTNAME\u003Cspan class=\u0022ansi-blue-fg\u0022\u003E,\u003C/span\u003E\n\u003Cspan class=\u0022ansi-green-intense-fg ansi-bold\u0022\u003E 70\u003C/span\u003E tenant\u003Cspan class=\u0022ansi-blue-fg\u0022\u003E=\u003C/span\u003E_GLOBAL_ADLS_DIRID\u003Cspan class=\u0022ansi-blue-fg\u0022\u003E,\u003C/span\u003E\n\n\u003Cspan class=\u0022ansi-red-fg\u0022\u003ENameError\u003C/span\u003E: name \u0026#39;ADLSAdapter\u0026#39; is not defined\u003C/div\u003E" + }, + "metadata": { + "application/vnd.databricks.v1\u002Boutput": { + "type": "ipynbError", + "data": "\u003Cdiv class=\u0022ansiout\u0022\u003E\u003Cspan class=\u0022ansi-red-fg\u0022\u003E---------------------------------------------------------------------------\u003C/span\u003E\n\u003Cspan class=\u0022ansi-red-fg\u0022\u003ENameError\u003C/span\u003E Traceback (most recent call last)\n\u003Cspan class=\u0022ansi-green-fg\u0022\u003E\u0026lt;command-1159393715563018\u0026gt;\u003C/span\u003E in \u003Cspan class=\u0022ansi-cyan-fg\u0022\u003E\u0026lt;module\u0026gt;\u003C/span\u003E\n\u003Cspan class=\u0022ansi-green-intense-fg ansi-bold\u0022\u003E 66\u003C/span\u003E _GLOBAL_DATA_NAME \u003Cspan class=\u0022ansi-blue-fg\u0022\u003E=\u003C/span\u003E dotenv\u003Cspan class=\u0022ansi-blue-fg\u0022\u003E.\u003C/span\u003Eget_key\u003Cspan class=\u0022ansi-blue-fg\u0022\u003E(\u003C/span\u003E_GLOBAL_DOTENV_PATH\u003Cspan class=\u0022ansi-blue-fg\u0022\u003E,\u003C/span\u003E \u003Cspan class=\u0022ansi-blue-fg\u0022\u003E\u0026#34;data_name\u0026#34;\u003C/span\u003E\u003Cspan class=\u0022ansi-blue-fg\u0022\u003E)\u003C/span\u003E\n\u003Cspan class=\u0022ansi-green-intense-fg ansi-bold\u0022\u003E 67\u003C/span\u003E _GLOBAL_ADAPTER_PARTIAL = functools.partial(\n\u003Cspan class=\u0022ansi-green-fg\u0022\u003E---\u0026gt; 68\u003C/span\u003E\u003Cspan class=\u0022ansi-red-fg\u0022\u003E \u003C/span\u003EADLSAdapter\u003Cspan class=\u0022ansi-blue-fg\u0022\u003E,\u003C/span\u003E\n\u003Cspan class=\u0022ansi-green-intense-fg ansi-bold\u0022\u003E 69\u003C/span\u003E hostname\u003Cspan class=\u0022ansi-blue-fg\u0022\u003E=\u003C/span\u003E_GLOBAL_ADLS_HOSTNAME\u003Cspan class=\u0022ansi-blue-fg\u0022\u003E,\u003C/span\u003E\n\u003Cspan class=\u0022ansi-green-intense-fg ansi-bold\u0022\u003E 70\u003C/span\u003E tenant\u003Cspan class=\u0022ansi-blue-fg\u0022\u003E=\u003C/span\u003E_GLOBAL_ADLS_DIRID\u003Cspan class=\u0022ansi-blue-fg\u0022\u003E,\u003C/span\u003E\n\n\u003Cspan class=\u0022ansi-red-fg\u0022\u003ENameError\u003C/span\u003E: name \u0026#39;ADLSAdapter\u0026#39; is not defined\u003C/div\u003E", + "errorSummary": "\u003Cspan class=\u0022ansi-red-fg\u0022\u003ENameError\u003C/span\u003E: name \u0026#39;ADLSAdapter\u0026#39; is not defined", + "arguments": {} + } + } + } + ], + "execution_count": 0 + }, + { + "cell_type": "code", + "metadata": { + "application/vnd.databricks.v1\u002Bcell": { + "title": "", + "showTitle": false, + "inputWidgets": {}, + "nuid": "639595d4-4083-4f33-a7d4-15af60e7b3d6" + } + }, + "source": [ + "# Spark initialization\n", + "SUBMIT_ARGS = \u0022--packages eisber:sarplus:0.2.6 pyspark-shell\u0022\n", + "os.environ[\u0022PYSPARK_SUBMIT_ARGS\u0022] = SUBMIT_ARGS\n", + "\n", + "spark = (\n", + " SparkSession.builder.appName(\u0022sample\u0022)\n", + " .master(\u0022local[*]\u0022)\n", + " .config(\u0022memory\u0022, \u00221G\u0022)\n", + " .config(\u0022spark.sql.shuffle.partitions\u0022, \u00221\u0022)\n", + " .config(\u0022spark.sql.crossJoin.enabled\u0022, True)\n", + " .config(\u0022spark.ui.enabled\u0022, False)\n", + " .getOrCreate()\n", + ")\n", + "\n", + "# SqlContext helps with doing SQL like queries on spark DFs.\n", + "sqlContext = SQLContext(spark)\n", + "\n", + "# Configure the Spark session to avoid using mount\n", + "spark.conf.set(\u0022fs.azure.account.auth.type.{0}.dfs.core.windows.net\u0022.format(_GLOBAL_ADLS_ACCOUNT), \u0022OAuth\u0022)\n", + "spark.conf.set(\n", + " \u0022fs.azure.account.oauth.provider.type.{0}.dfs.core.windows.net\u0022.format(_GLOBAL_ADLS_ACCOUNT),\n", + " \u0022org.apache.hadoop.fs.azurebfs.oauth2.ClientCredsTokenProvider\u0022,\n", + ")\n", + "spark.conf.set(\n", + " \u0022fs.azure.account.oauth2.client.id.{0}.dfs.core.windows.net\u0022.format(_GLOBAL_ADLS_ACCOUNT), _GLOBAL_ADLS_APPID\n", + ")\n", + "spark.conf.set(\n", + " \u0022fs.azure.account.oauth2.client.secret.{0}.dfs.core.windows.net\u0022.format(_GLOBAL_ADLS_ACCOUNT), _GLOBAL_ADLS_SECRET\n", + ")\n", + "spark.conf.set(\n", + " \u0022fs.azure.account.oauth2.client.endpoint.{0}.dfs.core.windows.net\u0022.format(_GLOBAL_ADLS_ACCOUNT),\n", + " \u0022https://login.microsoftonline.com/{0}/oauth2/token\u0022.format(_GLOBAL_ADLS_DIRID),\n", + ")" + ], + "attachments": null, + "outputs": [], + "execution_count": 0 + }, + { + "cell_type": "code", + "metadata": { + "application/vnd.databricks.v1\u002Bcell": { + "title": "", + "showTitle": false, + "inputWidgets": {}, + "nuid": "614662de-2288-451e-b238-b6190156aac4" + } + }, + "source": [ + "# Mount the remove ADLS container on the local databricks\n", + "\n", + "# Unmount an existing mount point\n", + "try:\n", + " dbutils.fs.unmount(_GLOBAL_ADLS_DICT[\u0022adls_container_mount_point\u0022])\n", + "except Exception as ex:\n", + " if \u0022Directory not mounted\u0022 not in str(ex):\n", + " raise Exception(\u0022Error in unmounting\u0022)\n", + "\n", + "# Mount wit the provided configuration information\n", + "configs = {\n", + " \u0022fs.azure.account.auth.type\u0022: \u0022OAuth\u0022,\n", + " \u0022fs.azure.account.oauth.provider.type\u0022: \u0022org.apache.hadoop.fs.azurebfs.oauth2.ClientCredsTokenProvider\u0022,\n", + " \u0022fs.azure.account.oauth2.client.id\u0022: _GLOBAL_CONFIG_DICT[\u0022clientId\u0022],\n", + " \u0022fs.azure.account.oauth2.client.secret\u0022: _GLOBAL_CONFIG_DICT[\u0022clientSecret\u0022],\n", + " \u0022fs.azure.account.oauth2.client.endpoint\u0022: _GLOBAL_ADLS_DICT[\u0022oauth_endpoint\u0022],\n", + "}\n", + "dbutils.fs.mount(\n", + " source=_GLOBAL_ADLS_DICT[\u0022adls_source\u0022],\n", + " mount_point=_GLOBAL_ADLS_DICT[\u0022adls_container_mount_point\u0022],\n", + " extra_configs=configs,\n", + ")\n", + "\n", + "# List the contents in the mounted directory\n", + "dbutils.fs.ls(_GLOBAL_ADLS_DICT[\u0022adls_container_mount_point\u0022])\n", + "\n", + "# Make a new directory for model cache use\n", + "dbutils.fs.mkdirs(_GLOBAL_ADLS_DICT[\u0022adls_model_cache\u0022])" + ], + "attachments": null, + "outputs": [], + "execution_count": 0 + } + ], "folder": null }, - "etag": "0300fbd1-0000-0800-0000-5fe3a8730000" + "etag": "0e003468-0000-0100-0000-611a2ee30000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook2123043987?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebooks/dongwwanb1?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-5f530d65a040bc4a926057c431e1977c-2c0808f4f3ab494a-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "1459fdd21fc56e94997a5eca958261c3", + "traceparent": "00-1ef316711567b44eb1cdd7a7287c82f1-4856993fc371744c-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "dc26e40a677e3d4a0a125b64e87c0859", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:41 GMT", + "Date": "Thu, 30 Sep 2021 07:32:51 GMT", "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Kestrel Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "1459fdd21fc56e94997a5eca958261c3", - "x-ms-request-id": "4149f7c9-9403-4a97-b3e6-c3b83e66b10d" + "x-ms-client-request-id": "dc26e40a677e3d4a0a125b64e87c0859", + "x-ms-request-id": "f3f529e7-04a8-4fcd-b9f3-54273367ab1e" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook2123043987", - "name": "Notebook2123043987", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/dongwwanb1", + "name": "dongwwanb1", "type": "Microsoft.Synapse/workspaces/notebooks", "properties": { "nbformat": 4, - "nbformat_minor": 2, + "nbformat_minor": 0, "entityState": null, "renameOperationDetails": null, "bigDataPool": null, "sessionProperties": null, "metadata": { - "language_info": { - "name": "Python" - }, + "language_info": null, "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 + "sessionKeepAliveTimeout": 0, + "application/vnd.databricks.v1\u002Bnotebook": { + "notebookName": "config", + "dashboards": [], + "language": "python", + "widgets": {}, + "notebookOrigID": 1159393715563015 + } }, - "cells": [], + "cells": [ + { + "cell_type": "markdown", + "metadata": { + "application/vnd.databricks.v1\u002Bcell": { + "title": "", + "showTitle": false, + "inputWidgets": {}, + "nuid": "ec9689e6-a215-42cf-aa9f-85a38cca6362" + } + }, + "source": [ + "Copyright (c) Microsoft Corporation. All rights reserved." + ], + "attachments": null, + "outputs": [], + "execution_count": null + }, + { + "cell_type": "code", + "metadata": { + "application/vnd.databricks.v1\u002Bcell": { + "title": "", + "showTitle": false, + "inputWidgets": {}, + "nuid": "4eb23c41-ffd4-412f-a887-102462d4d316" + } + }, + "source": [ + "# Disable the verbose log\nimport logging\nlogging.getLogger(\u0022py4j\u0022).setLevel(logging.ERROR)" + ], + "attachments": null, + "outputs": [ + { + "output_type": "display_data", + "data": { + "text/html": [ + "\u003Cstyle scoped\u003E\n .ansiout {\n display: block;\n unicode-bidi: embed;\n white-space: pre-wrap;\n word-wrap: break-word;\n word-break: break-all;\n font-family: \u0022Source Code Pro\u0022, \u0022Menlo\u0022, monospace;;\n font-size: 13px;\n color: #555;\n margin-left: 4px;\n line-height: 19px;\n }\n\u003C/style\u003E\n\u003Cdiv class=\u0022ansiout\u0022\u003E\u003C/div\u003E" + ] + }, + "metadata": { + "application/vnd.databricks.v1\u002Boutput": { + "datasetInfos": [], + "data": "\u003Cdiv class=\u0022ansiout\u0022\u003E\u003C/div\u003E", + "removedWidgets": [], + "addedWidgets": {}, + "type": "html", + "arguments": {} + } + } + } + ], + "execution_count": 0 + }, + { + "cell_type": "code", + "metadata": { + "application/vnd.databricks.v1\u002Bcell": { + "title": "", + "showTitle": false, + "inputWidgets": {}, + "nuid": "b5c38c38-a7f7-43f5-a15c-e387079ac8d7" + } + }, + "source": [ + "\n!pip install \u0022https://retaildatastore.blob.core.windows.net/artifacts/cdmsdk/commondatamodel-objectmodel-1.0.10-py3-none-any.whl?sp=r\u0026st=2021-02-11T11:46:58Z\u0026se=2022-02-11T19:46:58Z\u0026spr=https\u0026sv=2020-02-10\u0026sr=b\u0026sig=XXXXXXXXXXXXXXXXXXXXXXXX\u0022\n" + ], + "attachments": null, + "outputs": [ + { + "output_type": "display_data", + "data": { + "text/html": [ + "\u003Cstyle scoped\u003E\n .ansiout {\n display: block;\n unicode-bidi: embed;\n white-space: pre-wrap;\n word-wrap: break-word;\n word-break: break-all;\n font-family: \u0022Source Code Pro\u0022, \u0022Menlo\u0022, monospace;;\n font-size: 13px;\n color: #555;\n margin-left: 4px;\n line-height: 19px;\n }\n\u003C/style\u003E\n\u003Cdiv class=\u0022ansiout\u0022\u003E\u003C/div\u003E" + ] + }, + "metadata": { + "application/vnd.databricks.v1\u002Boutput": { + "datasetInfos": [], + "data": "\u003Cdiv class=\u0022ansiout\u0022\u003E\u003C/div\u003E", + "removedWidgets": [], + "addedWidgets": {}, + "type": "html", + "arguments": {} + } + } + } + ], + "execution_count": 0 + }, + { + "cell_type": "code", + "metadata": { + "application/vnd.databricks.v1\u002Bcell": { + "title": "", + "showTitle": false, + "inputWidgets": {}, + "nuid": "b255d876-363a-446e-a0fa-e51f866efa77" + } + }, + "source": [ + "\n\n# Generic imports\nimport dotenv\nimport json\nimport numpy as np\nimport os\nimport fnmatch\nimport shutil\nimport random\nimport string\nimport pandas as pd\nimport requests\nimport asyncio\nimport copy\nimport functools\nimport pathlib\nimport string\nfrom datetime import datetime, timezone\n\n# Spark imports\nfrom pyspark.sql import SparkSession, SQLContext\nfrom pyspark.sql.types import *\nfrom pyspark.sql import functions as F\n\n# Recommenders imports\n# from azureiai.reco_utils.dataset.spark_splitters import spark_random_split\n# from azureiai.reco_utils.evaluation.spark_evaluation import (\n# SparkRankingEvaluation,\n# SparkRatingEvaluation,\n# )\nfrom pysarplus import SARPlus\nfrom azureiai.retail.cdm2ai.reader import CONFIG\n\n# AzureML imports\nimport azureml.core\nfrom azureml.core.runconfig import JarLibrary\nfrom azureml.core.compute import ComputeTarget, DatabricksCompute\nfrom azureml.pipeline.steps import DatabricksStep\nfrom azureml.core.datastore import Datastore\nfrom azureml.data.data_reference import DataReference\nfrom azureml.core import Workspace\nfrom azureml.core.run import Run\nfrom azureml.core.experiment import Experiment\nfrom azureml.core import Environment\nfrom azureml.core.environment import CondaDependencies\nfrom azureml.core.environment import SparkPackage\nfrom azureml.core.model import Model\nfrom azureml.core.webservice import Webservice\n\n# Cosmos DB imports\n# Install Cosmos DB connector from: https://docs.databricks.com/data/data-sources/azure/cosmosdb-connector.html\nfrom azure.common.client_factory import get_client_from_json_dict\n\n# CDM imports\nfrom cdm.storage import ADLSAdapter\nfrom cdm.objectmodel import CdmCorpusDefinition, CdmManifestDefinition\nfrom cdm.persistence.cdmfolder import ManifestPersistence\nfrom cdm.persistence.cdmfolder.types import ManifestContent\nfrom cdm.storage import LocalAdapter, ADLSAdapter\nfrom cdm.utilities import time_utils\n\nfrom cdm.utilities.string_utils import kvprint\n\n# AKS imports\nfrom azureml.core.compute import AksCompute\nfrom azureml.core.compute_target import ComputeTargetException\nfrom azureml.core.webservice import AksWebservice\nfrom azureml.exceptions import WebserviceException\nfrom azureml.core.model import InferenceConfig\n\n" + ], + "attachments": null, + "outputs": [ + { + "output_type": "display_data", + "data": { + "text/html": [ + "\u003Cstyle scoped\u003E\n .ansiout {\n display: block;\n unicode-bidi: embed;\n white-space: pre-wrap;\n word-wrap: break-word;\n word-break: break-all;\n font-family: \u0022Source Code Pro\u0022, \u0022Menlo\u0022, monospace;;\n font-size: 13px;\n color: #555;\n margin-left: 4px;\n line-height: 19px;\n }\n\u003C/style\u003E\n\u003Cdiv class=\u0022ansiout\u0022\u003E\u003C/div\u003E" + ] + }, + "metadata": { + "application/vnd.databricks.v1\u002Boutput": { + "datasetInfos": [], + "data": "\u003Cdiv class=\u0022ansiout\u0022\u003E\u003C/div\u003E", + "removedWidgets": [], + "addedWidgets": {}, + "type": "html", + "arguments": {} + } + } + } + ], + "execution_count": 0 + }, + { + "cell_type": "code", + "metadata": { + "application/vnd.databricks.v1\u002Bcell": { + "title": "", + "showTitle": false, + "inputWidgets": {}, + "nuid": "bb6041f1-a825-41ae-ba4d-de6dff6e361a" + } + }, + "source": [ + "# Global variables\n# NOTE these variables are visible in the scope of the entire pipeline\n\n# Load the .env file to manage persistent variables\n_GLOBAL_DOTENV_PATH = pathlib.Path(dotenv.find_dotenv(\n filename=\u0022/dbfs/FileStore/.env\u0022,\n raise_error_if_not_found=True\n))\n\n# -------------------------------------------------------------------------\n# Azure general variables\n# -------------------------------------------------------------------------\n_GLOBAL_SUBSCRIPTION_ID = dotenv.get_key(_GLOBAL_DOTENV_PATH, \u0022subscription_id\u0022)\n_GLOBAL_RESOURCE_GROUP = dotenv.get_key(_GLOBAL_DOTENV_PATH, \u0022resource_group\u0022)\n_GLOBAL_CONFIG_DICT = {\n \u0022clientIdKey\u0022: \u0022sp_client_id\u0022,\n \u0022clientSecretKey\u0022: \u0022sp_password\u0022,\n \u0022clientId\u0022: dbutils.secrets.get(scope=\u0022secrets\u0022, key=\u0022sp_client_id\u0022),\n \u0022clientSecret\u0022: dbutils.secrets.get(scope=\u0022secrets\u0022, key=\u0022sp_password\u0022),\n \u0022subscriptionId\u0022: _GLOBAL_SUBSCRIPTION_ID,\n \u0022tenantId\u0022: dotenv.get_key(_GLOBAL_DOTENV_PATH, \u0022tenant_id\u0022),\n \u0022activeDirectoryEndpointUrl\u0022: \u0022https://login.microsoftonline.com\u0022,\n \u0022resourceManagerEndpointUrl\u0022: \u0022https://management.azure.com/\u0022,\n \u0022activeDirectoryGraphResourceId\u0022: \u0022https://graph.windows.net/\u0022,\n \u0022sqlManagementEndpointUrl\u0022: \u0022https://management.core.windows.net:8443/\u0022,\n \u0022galleryEndpointUrl\u0022: \u0022https://gallery.azure.com/\u0022,\n \u0022managementEndpointUrl\u0022: \u0022https://management.core.windows.net/\u0022\n}\n\n# -------------------------------------------------------------------------\n# ADLS variables\n# -------------------------------------------------------------------------\n_GLOBAL_ADLS_ACCOUNT = dotenv.get_key(_GLOBAL_DOTENV_PATH, \u0022data_account\u0022)\n_GLOBAL_ADLS_CONTAINER = dotenv.get_key(_GLOBAL_DOTENV_PATH, \u0022data_container\u0022)\n_GLOBAL_ADLS_APPID = _GLOBAL_CONFIG_DICT[\u0022clientId\u0022]\n_GLOBAL_ADLS_DIRID = _GLOBAL_CONFIG_DICT[\u0022tenantId\u0022]\n_GLOBAL_ADLS_SECRET = _GLOBAL_CONFIG_DICT[\u0022clientSecret\u0022]\n_GLOBAL_ADLS_HOSTNAME = f\u0027{_GLOBAL_ADLS_ACCOUNT}.dfs.core.windows.net\u0027\n_GLOBAL_ADLS_DICT = {\n \u0022adls_source\u0022: \u0022abfss://{0}@{1}.dfs.core.windows.net\u0022.format(_GLOBAL_ADLS_CONTAINER, _GLOBAL_ADLS_ACCOUNT),\n \u0022oauth_endpoint\u0022: \u0022https://login.microsoftonline.com/{0}/oauth2/token\u0022.format(_GLOBAL_CONFIG_DICT[\u0022tenantId\u0022]),\n \u0022adls_dfs_endpoint\u0022: \u0022{0}.dfs.core.windows.net\u0022.format(_GLOBAL_ADLS_ACCOUNT),\n \u0022adls_container_mount_point\u0022: \u0022/mnt/{0}\u0022.format(_GLOBAL_ADLS_CONTAINER),\n \u0022adls_resource_type\u0022: \u0022https://storage.azure.com\u0022,\n \u0022adls_mount_root\u0022: \u0022/mnt\u0022,\n \u0022adls_model_cache\u0022: \u0022dbfs:/mnt/{0}/cache\u0022.format(_GLOBAL_ADLS_CONTAINER)\n}\n\n# -------------------------------------------------------------------------\n# COSMOS DB variables\n# -------------------------------------------------------------------------\n_GLOBAL_DB_SECRETS = {\n \u0022Endpoint\u0022: \u0022https://{0}.documents.azure.com:443/\u0022.format(dotenv.get_key(_GLOBAL_DOTENV_PATH, \u0022azure_cosmosdb_account_name\u0022)),\n \u0022Masterkey\u0022: dbutils.secrets.get(scope=\u0022secrets\u0022, key=\u0022cosmosdb_primary_master_key\u0022),\n \u0022Database\u0022: dotenv.get_key(_GLOBAL_DOTENV_PATH, \u0022azure_cosmosdb_database\u0022),\n \u0022Collection\u0022: dotenv.get_key(_GLOBAL_DOTENV_PATH, \u0022azure_cosmosdb_container\u0022),\n \u0022Upsert\u0022: True\n}\n\n# -------------------------------------------------------------------------\n# Data variables\n# -------------------------------------------------------------------------\n_GLOBAL_DATA_ROOT = dotenv.get_key(_GLOBAL_DOTENV_PATH, \u0022physical_data_model_directory\u0022)\n_GLOBAL_TPC_RAW_ROOT = \u0027tpcds-raw-data\u0027\n_GLOBAL_IDM_SCHEMA_ROOT = dotenv.get_key(_GLOBAL_DOTENV_PATH, \u0022logical_data_model_directory\u0022)\n_GLOBAL_DATA_NAME = dotenv.get_key(_GLOBAL_DOTENV_PATH, \u0022data_name\u0022)\n_GLOBAL_ADAPTER_PARTIAL = functools.partial(\n ADLSAdapter,\n hostname=_GLOBAL_ADLS_HOSTNAME,\n tenant=_GLOBAL_ADLS_DIRID,\n client_id=_GLOBAL_ADLS_APPID,\n secret=_GLOBAL_ADLS_SECRET\n)\n_GLOBAL_CONFIG_JSON = copy.deepcopy(CONFIG)\n_GLOBAL_CONFIG_JSON[\u0022adls\u0022][\u0022account\u0022] = _GLOBAL_ADLS_ACCOUNT\n_GLOBAL_CONFIG_JSON[\u0022adls\u0022][\u0022container\u0022] = _GLOBAL_ADLS_CONTAINER\n_GLOBAL_CONFIG_JSON[\u0022adls\u0022][\u0022appid\u0022] = _GLOBAL_ADLS_APPID\n_GLOBAL_CONFIG_JSON[\u0022adls\u0022][\u0022dirid\u0022] = _GLOBAL_ADLS_DIRID\n_GLOBAL_CONFIG_JSON[\u0022adls\u0022][\u0022secret\u0022] = _GLOBAL_ADLS_SECRET\n_GLOBAL_CONFIG_JSON[\u0022adls\u0022][\u0022hostname\u0022] = _GLOBAL_ADLS_HOSTNAME\n_GLOBAL_CONFIG_JSON[\u0022cdm\u0022][\u0022data_root\u0022] = _GLOBAL_DATA_ROOT\n_GLOBAL_CONFIG_JSON[\u0022cdm\u0022][\u0022manifest_name\u0022] = \u0022{0}.manifest.cdm.json\u0022.format(dotenv.get_key(_GLOBAL_DOTENV_PATH, \u0022industry_data_model_name\u0022))\n_GLOBAL_INPUT_DATA_FILE = dotenv.get_key(_GLOBAL_DOTENV_PATH, \u0022processed_data_file\u0022)\n_GLOBAL_CUSTOMER_DATA_FILE = dotenv.get_key(_GLOBAL_DOTENV_PATH, \u0022processed_customer_data_file\u0022)\n\n# -------------------------------------------------------------------------\n# Model variables\n# -------------------------------------------------------------------------\n_GLOBAL_MODEL_LOCAL_CACHE = \u0027dbfs:/model/{0}\u0027.format(\n \u0027\u0027.join(random.choice(string.ascii_lowercase) for i in range(10))\n)\n\n# -------------------------------------------------------------------------\n# Azure Machine Learning service variables\n# -------------------------------------------------------------------------\n_GLOBAL_AML_DICT = {\n \u0022workspace_name\u0022: dotenv.get_key(_GLOBAL_DOTENV_PATH, \u0022azureml_workspace\u0022),\n \u0022model_file_name\u0022: dotenv.get_key(_GLOBAL_DOTENV_PATH, \u0022azureml_model_file_name\u0022),\n \u0022aml_experiment_name\u0022: dotenv.get_key(_GLOBAL_DOTENV_PATH, \u0022azureml_experiment_name\u0022)\n}\n\n# -------------------------------------------------------------------------\n# Azure Kubernetes Service variables\n# -------------------------------------------------------------------------\n_GLOBAL_AKS_NAME = dotenv.get_key(_GLOBAL_DOTENV_PATH, \u0022aks_cluster_name\u0022)\n_GLOBAL_SERVICE_NAME = \u0022aks-service-{0}\u0022.format(dotenv.get_key(_GLOBAL_DOTENV_PATH, \u0022unique_key\u0022))\n_GLOBAL_AKS_CONFIG_LEVEL = dotenv.get_key(_GLOBAL_DOTENV_PATH, \u0022aks_config_level\u0022)\n_GLOBAL_AKS_COMPUTE_TARGET_NAME = \u0027aks\u0027 \u002B dotenv.get_key(_GLOBAL_DOTENV_PATH, \u0022unique_key\u0022)" + ], + "attachments": null, + "outputs": [ + { + "output_type": "display_data", + "data": { + "text/html": [ + "\u003Cstyle scoped\u003E\n .ansiout {\n display: block;\n unicode-bidi: embed;\n white-space: pre-wrap;\n word-wrap: break-word;\n word-break: break-all;\n font-family: \u0022Source Code Pro\u0022, \u0022Menlo\u0022, monospace;;\n font-size: 13px;\n color: #555;\n margin-left: 4px;\n line-height: 19px;\n }\n\u003C/style\u003E\n\u003Cdiv class=\u0022ansiout\u0022\u003E\u003C/div\u003E" + ] + }, + "metadata": { + "application/vnd.databricks.v1\u002Boutput": { + "datasetInfos": [], + "data": "\u003Cdiv class=\u0022ansiout\u0022\u003E\u003C/div\u003E", + "removedWidgets": [], + "addedWidgets": {}, + "type": "html", + "arguments": {} + } + } + }, + { + "output_type": "display_data", + "data": { + "text/html": [ + "\u003Cstyle scoped\u003E\n .ansiout {\n display: block;\n unicode-bidi: embed;\n white-space: pre-wrap;\n word-wrap: break-word;\n word-break: break-all;\n font-family: \u0022Source Code Pro\u0022, \u0022Menlo\u0022, monospace;;\n font-size: 13px;\n color: #555;\n margin-left: 4px;\n line-height: 19px;\n }\n\u003C/style\u003E\n\u003Cdiv class=\u0022ansiout\u0022\u003E\u003Cspan class=\u0022ansi-red-fg\u0022\u003E---------------------------------------------------------------------------\u003C/span\u003E\n\u003Cspan class=\u0022ansi-red-fg\u0022\u003ENameError\u003C/span\u003E Traceback (most recent call last)\n\u003Cspan class=\u0022ansi-green-fg\u0022\u003E\u0026lt;command-1159393715563018\u0026gt;\u003C/span\u003E in \u003Cspan class=\u0022ansi-cyan-fg\u0022\u003E\u0026lt;module\u0026gt;\u003C/span\u003E\n\u003Cspan class=\u0022ansi-green-intense-fg ansi-bold\u0022\u003E 66\u003C/span\u003E _GLOBAL_DATA_NAME \u003Cspan class=\u0022ansi-blue-fg\u0022\u003E=\u003C/span\u003E dotenv\u003Cspan class=\u0022ansi-blue-fg\u0022\u003E.\u003C/span\u003Eget_key\u003Cspan class=\u0022ansi-blue-fg\u0022\u003E(\u003C/span\u003E_GLOBAL_DOTENV_PATH\u003Cspan class=\u0022ansi-blue-fg\u0022\u003E,\u003C/span\u003E \u003Cspan class=\u0022ansi-blue-fg\u0022\u003E\u0026#34;data_name\u0026#34;\u003C/span\u003E\u003Cspan class=\u0022ansi-blue-fg\u0022\u003E)\u003C/span\u003E\n\u003Cspan class=\u0022ansi-green-intense-fg ansi-bold\u0022\u003E 67\u003C/span\u003E _GLOBAL_ADAPTER_PARTIAL = functools.partial(\n\u003Cspan class=\u0022ansi-green-fg\u0022\u003E---\u0026gt; 68\u003C/span\u003E\u003Cspan class=\u0022ansi-red-fg\u0022\u003E \u003C/span\u003EADLSAdapter\u003Cspan class=\u0022ansi-blue-fg\u0022\u003E,\u003C/span\u003E\n\u003Cspan class=\u0022ansi-green-intense-fg ansi-bold\u0022\u003E 69\u003C/span\u003E hostname\u003Cspan class=\u0022ansi-blue-fg\u0022\u003E=\u003C/span\u003E_GLOBAL_ADLS_HOSTNAME\u003Cspan class=\u0022ansi-blue-fg\u0022\u003E,\u003C/span\u003E\n\u003Cspan class=\u0022ansi-green-intense-fg ansi-bold\u0022\u003E 70\u003C/span\u003E tenant\u003Cspan class=\u0022ansi-blue-fg\u0022\u003E=\u003C/span\u003E_GLOBAL_ADLS_DIRID\u003Cspan class=\u0022ansi-blue-fg\u0022\u003E,\u003C/span\u003E\n\n\u003Cspan class=\u0022ansi-red-fg\u0022\u003ENameError\u003C/span\u003E: name \u0026#39;ADLSAdapter\u0026#39; is not defined\u003C/div\u003E" + ] + }, + "metadata": { + "application/vnd.databricks.v1\u002Boutput": { + "type": "ipynbError", + "data": "\u003Cdiv class=\u0022ansiout\u0022\u003E\u003Cspan class=\u0022ansi-red-fg\u0022\u003E---------------------------------------------------------------------------\u003C/span\u003E\n\u003Cspan class=\u0022ansi-red-fg\u0022\u003ENameError\u003C/span\u003E Traceback (most recent call last)\n\u003Cspan class=\u0022ansi-green-fg\u0022\u003E\u0026lt;command-1159393715563018\u0026gt;\u003C/span\u003E in \u003Cspan class=\u0022ansi-cyan-fg\u0022\u003E\u0026lt;module\u0026gt;\u003C/span\u003E\n\u003Cspan class=\u0022ansi-green-intense-fg ansi-bold\u0022\u003E 66\u003C/span\u003E _GLOBAL_DATA_NAME \u003Cspan class=\u0022ansi-blue-fg\u0022\u003E=\u003C/span\u003E dotenv\u003Cspan class=\u0022ansi-blue-fg\u0022\u003E.\u003C/span\u003Eget_key\u003Cspan class=\u0022ansi-blue-fg\u0022\u003E(\u003C/span\u003E_GLOBAL_DOTENV_PATH\u003Cspan class=\u0022ansi-blue-fg\u0022\u003E,\u003C/span\u003E \u003Cspan class=\u0022ansi-blue-fg\u0022\u003E\u0026#34;data_name\u0026#34;\u003C/span\u003E\u003Cspan class=\u0022ansi-blue-fg\u0022\u003E)\u003C/span\u003E\n\u003Cspan class=\u0022ansi-green-intense-fg ansi-bold\u0022\u003E 67\u003C/span\u003E _GLOBAL_ADAPTER_PARTIAL = functools.partial(\n\u003Cspan class=\u0022ansi-green-fg\u0022\u003E---\u0026gt; 68\u003C/span\u003E\u003Cspan class=\u0022ansi-red-fg\u0022\u003E \u003C/span\u003EADLSAdapter\u003Cspan class=\u0022ansi-blue-fg\u0022\u003E,\u003C/span\u003E\n\u003Cspan class=\u0022ansi-green-intense-fg ansi-bold\u0022\u003E 69\u003C/span\u003E hostname\u003Cspan class=\u0022ansi-blue-fg\u0022\u003E=\u003C/span\u003E_GLOBAL_ADLS_HOSTNAME\u003Cspan class=\u0022ansi-blue-fg\u0022\u003E,\u003C/span\u003E\n\u003Cspan class=\u0022ansi-green-intense-fg ansi-bold\u0022\u003E 70\u003C/span\u003E tenant\u003Cspan class=\u0022ansi-blue-fg\u0022\u003E=\u003C/span\u003E_GLOBAL_ADLS_DIRID\u003Cspan class=\u0022ansi-blue-fg\u0022\u003E,\u003C/span\u003E\n\n\u003Cspan class=\u0022ansi-red-fg\u0022\u003ENameError\u003C/span\u003E: name \u0026#39;ADLSAdapter\u0026#39; is not defined\u003C/div\u003E", + "errorSummary": "\u003Cspan class=\u0022ansi-red-fg\u0022\u003ENameError\u003C/span\u003E: name \u0026#39;ADLSAdapter\u0026#39; is not defined", + "arguments": {} + } + } + } + ], + "execution_count": 0 + }, + { + "cell_type": "code", + "metadata": { + "application/vnd.databricks.v1\u002Bcell": { + "title": "", + "showTitle": false, + "inputWidgets": {}, + "nuid": "639595d4-4083-4f33-a7d4-15af60e7b3d6" + } + }, + "source": [ + "# Spark initialization\nSUBMIT_ARGS = \u0022--packages eisber:sarplus:0.2.6 pyspark-shell\u0022\nos.environ[\u0022PYSPARK_SUBMIT_ARGS\u0022] = SUBMIT_ARGS\n\nspark = (\n SparkSession.builder.appName(\u0022sample\u0022)\n .master(\u0022local[*]\u0022)\n .config(\u0022memory\u0022, \u00221G\u0022)\n .config(\u0022spark.sql.shuffle.partitions\u0022, \u00221\u0022)\n .config(\u0022spark.sql.crossJoin.enabled\u0022, True)\n .config(\u0022spark.ui.enabled\u0022, False)\n .getOrCreate()\n)\n\n# SqlContext helps with doing SQL like queries on spark DFs.\nsqlContext = SQLContext(spark)\n\n# Configure the Spark session to avoid using mount\nspark.conf.set(\u0022fs.azure.account.auth.type.{0}.dfs.core.windows.net\u0022.format(_GLOBAL_ADLS_ACCOUNT), \u0022OAuth\u0022)\nspark.conf.set(\n \u0022fs.azure.account.oauth.provider.type.{0}.dfs.core.windows.net\u0022.format(_GLOBAL_ADLS_ACCOUNT),\n \u0022org.apache.hadoop.fs.azurebfs.oauth2.ClientCredsTokenProvider\u0022,\n)\nspark.conf.set(\n \u0022fs.azure.account.oauth2.client.id.{0}.dfs.core.windows.net\u0022.format(_GLOBAL_ADLS_ACCOUNT), _GLOBAL_ADLS_APPID\n)\nspark.conf.set(\n \u0022fs.azure.account.oauth2.client.secret.{0}.dfs.core.windows.net\u0022.format(_GLOBAL_ADLS_ACCOUNT), _GLOBAL_ADLS_SECRET\n)\nspark.conf.set(\n \u0022fs.azure.account.oauth2.client.endpoint.{0}.dfs.core.windows.net\u0022.format(_GLOBAL_ADLS_ACCOUNT),\n \u0022https://login.microsoftonline.com/{0}/oauth2/token\u0022.format(_GLOBAL_ADLS_DIRID),\n)" + ], + "attachments": null, + "outputs": [], + "execution_count": 0 + }, + { + "cell_type": "code", + "metadata": { + "application/vnd.databricks.v1\u002Bcell": { + "title": "", + "showTitle": false, + "inputWidgets": {}, + "nuid": "614662de-2288-451e-b238-b6190156aac4" + } + }, + "source": [ + "# Mount the remove ADLS container on the local databricks\n\n# Unmount an existing mount point\ntry:\n dbutils.fs.unmount(_GLOBAL_ADLS_DICT[\u0022adls_container_mount_point\u0022])\nexcept Exception as ex:\n if \u0022Directory not mounted\u0022 not in str(ex):\n raise Exception(\u0022Error in unmounting\u0022)\n\n# Mount wit the provided configuration information\nconfigs = {\n \u0022fs.azure.account.auth.type\u0022: \u0022OAuth\u0022,\n \u0022fs.azure.account.oauth.provider.type\u0022: \u0022org.apache.hadoop.fs.azurebfs.oauth2.ClientCredsTokenProvider\u0022,\n \u0022fs.azure.account.oauth2.client.id\u0022: _GLOBAL_CONFIG_DICT[\u0022clientId\u0022],\n \u0022fs.azure.account.oauth2.client.secret\u0022: _GLOBAL_CONFIG_DICT[\u0022clientSecret\u0022],\n \u0022fs.azure.account.oauth2.client.endpoint\u0022: _GLOBAL_ADLS_DICT[\u0022oauth_endpoint\u0022],\n}\ndbutils.fs.mount(\n source=_GLOBAL_ADLS_DICT[\u0022adls_source\u0022],\n mount_point=_GLOBAL_ADLS_DICT[\u0022adls_container_mount_point\u0022],\n extra_configs=configs,\n)\n\n# List the contents in the mounted directory\ndbutils.fs.ls(_GLOBAL_ADLS_DICT[\u0022adls_container_mount_point\u0022])\n\n# Make a new directory for model cache use\ndbutils.fs.mkdirs(_GLOBAL_ADLS_DICT[\u0022adls_model_cache\u0022])" + ], + "attachments": null, + "outputs": [], + "execution_count": 0 + } + ], "folder": null }, - "etag": "030036d3-0000-0800-0000-5fe3a8a80000" + "etag": "0000f8ed-0000-0100-0000-605349810000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook531852650?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebooks/testclinb?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-4a877db2d78c744f8e62c2c979cd35c4-cc906cd7383d6746-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "3dc2408ac804e81b3086a2ea29c9e28f", + "traceparent": "00-169580d1a3a98d4b8dc8c528db892497-38ec983e93f4174a-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "90c8d13a6e74c31dc66e9b54ed259067", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:41 GMT", + "Date": "Thu, 30 Sep 2021 07:32:52 GMT", "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Kestrel Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "3dc2408ac804e81b3086a2ea29c9e28f", - "x-ms-request-id": "8ed87e0b-9517-407a-b7e1-ea6c8ea60458" + "x-ms-client-request-id": "90c8d13a6e74c31dc66e9b54ed259067", + "x-ms-request-id": "2f7bdfd6-efa0-4e33-b335-a9a24a420264" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook531852650", - "name": "Notebook531852650", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/testclinb", + "name": "testclinb", "type": "Microsoft.Synapse/workspaces/notebooks", "properties": { "nbformat": 4, - "nbformat_minor": 2, + "nbformat_minor": 0, "entityState": null, "renameOperationDetails": null, "bigDataPool": null, - "sessionProperties": null, + "sessionProperties": { + "driverMemory": "28g", + "driverCores": 4, + "executorMemory": "28g", + "executorCores": 4, + "numExecutors": 2, + "conf": { + "spark.dynamicAllocation.enabled": "false", + "spark.dynamicAllocation.minExecutors": "2", + "spark.dynamicAllocation.maxExecutors": "2" + } + }, "metadata": { "language_info": { - "name": "Python" + "name": "python" }, "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 + "sessionKeepAliveTimeout": 30, + "saveOutput": true, + "synapse_widget": { + "version": "0.1", + "state": {} + }, + "kernelspec": { + "name": "synapse_pyspark", + "display_name": "python" + } }, - "cells": [], - "folder": null + "cells": [ + { + "cell_type": "markdown", + "metadata": { + "application/vnd.databricks.v1\u002Bcell": { + "title": "", + "showTitle": false, + "inputWidgets": {}, + "nuid": "ec9689e6-a215-42cf-aa9f-85a38cca6362" + } + }, + "source": [ + "Copyright (c) Microsoft Corporation. All rights reserved." + ], + "attachments": null, + "outputs": [], + "execution_count": null + }, + { + "cell_type": "code", + "metadata": { + "application/vnd.databricks.v1\u002Bcell": { + "title": "", + "showTitle": false, + "inputWidgets": {}, + "nuid": "4eb23c41-ffd4-412f-a887-102462d4d316" + } + }, + "source": [ + "# Disable the verbose log\n", + "import logging\n", + "logging.getLogger(\u0022py4j\u0022).setLevel(logging.ERROR)" + ], + "attachments": null, + "outputs": [ + { + "output_type": "display_data", + "data": { + "text/html": "\u003Cstyle scoped\u003E\n .ansiout {\n display: block;\n unicode-bidi: embed;\n white-space: pre-wrap;\n word-wrap: break-word;\n word-break: break-all;\n font-family: \u0022Source Code Pro\u0022, \u0022Menlo\u0022, monospace;;\n font-size: 13px;\n color: #555;\n margin-left: 4px;\n line-height: 19px;\n }\n\u003C/style\u003E\n\u003Cdiv class=\u0022ansiout\u0022\u003E\u003C/div\u003E" + }, + "metadata": { + "application/vnd.databricks.v1\u002Boutput": { + "datasetInfos": [], + "data": "\u003Cdiv class=\u0022ansiout\u0022\u003E\u003C/div\u003E", + "removedWidgets": [], + "addedWidgets": {}, + "type": "html", + "arguments": {} + } + } + } + ], + "execution_count": 0 + }, + { + "cell_type": "code", + "metadata": { + "application/vnd.databricks.v1\u002Bcell": { + "title": "", + "showTitle": false, + "inputWidgets": {}, + "nuid": "b5c38c38-a7f7-43f5-a15c-e387079ac8d7" + } + }, + "source": [ + "\n", + "!pip install \u0022https://retaildatastore.blob.core.windows.net/artifacts/cdmsdk/commondatamodel-objectmodel-1.0.10-py3-none-any.whl?sp=r\u0026st=2021-02-11T11:46:58Z\u0026se=2022-02-11T19:46:58Z\u0026spr=https\u0026sv=2020-02-10\u0026sr=b\u0026sig=XXXXXXXXXXXXXXXXXXXXXXXX\u0022\n", + "" + ], + "attachments": null, + "outputs": [ + { + "output_type": "display_data", + "data": { + "text/html": "\u003Cstyle scoped\u003E\n .ansiout {\n display: block;\n unicode-bidi: embed;\n white-space: pre-wrap;\n word-wrap: break-word;\n word-break: break-all;\n font-family: \u0022Source Code Pro\u0022, \u0022Menlo\u0022, monospace;;\n font-size: 13px;\n color: #555;\n margin-left: 4px;\n line-height: 19px;\n }\n\u003C/style\u003E\n\u003Cdiv class=\u0022ansiout\u0022\u003E\u003C/div\u003E" + }, + "metadata": { + "application/vnd.databricks.v1\u002Boutput": { + "datasetInfos": [], + "data": "\u003Cdiv class=\u0022ansiout\u0022\u003E\u003C/div\u003E", + "removedWidgets": [], + "addedWidgets": {}, + "type": "html", + "arguments": {} + } + } + } + ], + "execution_count": 0 + }, + { + "cell_type": "code", + "metadata": { + "application/vnd.databricks.v1\u002Bcell": { + "title": "", + "showTitle": false, + "inputWidgets": {}, + "nuid": "b255d876-363a-446e-a0fa-e51f866efa77" + } + }, + "source": [ + "\n", + "\n", + "# Generic imports\n", + "import dotenv\n", + "import json\n", + "import numpy as np\n", + "import os\n", + "import fnmatch\n", + "import shutil\n", + "import random\n", + "import string\n", + "import pandas as pd\n", + "import requests\n", + "import asyncio\n", + "import copy\n", + "import functools\n", + "import pathlib\n", + "import string\n", + "from datetime import datetime, timezone\n", + "\n", + "# Spark imports\n", + "from pyspark.sql import SparkSession, SQLContext\n", + "from pyspark.sql.types import *\n", + "from pyspark.sql import functions as F\n", + "\n", + "# Recommenders imports\n", + "# from azureiai.reco_utils.dataset.spark_splitters import spark_random_split\n", + "# from azureiai.reco_utils.evaluation.spark_evaluation import (\n", + "# SparkRankingEvaluation,\n", + "# SparkRatingEvaluation,\n", + "# )\n", + "from pysarplus import SARPlus\n", + "from azureiai.retail.cdm2ai.reader import CONFIG\n", + "\n", + "# AzureML imports\n", + "import azureml.core\n", + "from azureml.core.runconfig import JarLibrary\n", + "from azureml.core.compute import ComputeTarget, DatabricksCompute\n", + "from azureml.pipeline.steps import DatabricksStep\n", + "from azureml.core.datastore import Datastore\n", + "from azureml.data.data_reference import DataReference\n", + "from azureml.core import Workspace\n", + "from azureml.core.run import Run\n", + "from azureml.core.experiment import Experiment\n", + "from azureml.core import Environment\n", + "from azureml.core.environment import CondaDependencies\n", + "from azureml.core.environment import SparkPackage\n", + "from azureml.core.model import Model\n", + "from azureml.core.webservice import Webservice\n", + "\n", + "# Cosmos DB imports\n", + "# Install Cosmos DB connector from: https://docs.databricks.com/data/data-sources/azure/cosmosdb-connector.html\n", + "from azure.common.client_factory import get_client_from_json_dict\n", + "\n", + "# CDM imports\n", + "from cdm.storage import ADLSAdapter\n", + "from cdm.objectmodel import CdmCorpusDefinition, CdmManifestDefinition\n", + "from cdm.persistence.cdmfolder import ManifestPersistence\n", + "from cdm.persistence.cdmfolder.types import ManifestContent\n", + "from cdm.storage import LocalAdapter, ADLSAdapter\n", + "from cdm.utilities import time_utils\n", + "\n", + "from cdm.utilities.string_utils import kvprint\n", + "\n", + "# AKS imports\n", + "from azureml.core.compute import AksCompute\n", + "from azureml.core.compute_target import ComputeTargetException\n", + "from azureml.core.webservice import AksWebservice\n", + "from azureml.exceptions import WebserviceException\n", + "from azureml.core.model import InferenceConfig\n", + "\n", + "" + ], + "attachments": null, + "outputs": [ + { + "output_type": "display_data", + "data": { + "text/html": "\u003Cstyle scoped\u003E\n .ansiout {\n display: block;\n unicode-bidi: embed;\n white-space: pre-wrap;\n word-wrap: break-word;\n word-break: break-all;\n font-family: \u0022Source Code Pro\u0022, \u0022Menlo\u0022, monospace;;\n font-size: 13px;\n color: #555;\n margin-left: 4px;\n line-height: 19px;\n }\n\u003C/style\u003E\n\u003Cdiv class=\u0022ansiout\u0022\u003E\u003C/div\u003E" + }, + "metadata": { + "application/vnd.databricks.v1\u002Boutput": { + "datasetInfos": [], + "data": "\u003Cdiv class=\u0022ansiout\u0022\u003E\u003C/div\u003E", + "removedWidgets": [], + "addedWidgets": {}, + "type": "html", + "arguments": {} + } + } + } + ], + "execution_count": 0 + }, + { + "cell_type": "code", + "metadata": { + "application/vnd.databricks.v1\u002Bcell": { + "title": "", + "showTitle": false, + "inputWidgets": {}, + "nuid": "bb6041f1-a825-41ae-ba4d-de6dff6e361a" + } + }, + "source": [ + "# Global variables\n", + "# NOTE these variables are visible in the scope of the entire pipeline\n", + "\n", + "# Load the .env file to manage persistent variables\n", + "_GLOBAL_DOTENV_PATH = pathlib.Path(dotenv.find_dotenv(\n", + " filename=\u0022/dbfs/FileStore/.env\u0022,\n", + " raise_error_if_not_found=True\n", + "))\n", + "\n", + "# -------------------------------------------------------------------------\n", + "# Azure general variables\n", + "# -------------------------------------------------------------------------\n", + "_GLOBAL_SUBSCRIPTION_ID = dotenv.get_key(_GLOBAL_DOTENV_PATH, \u0022subscription_id\u0022)\n", + "_GLOBAL_RESOURCE_GROUP = dotenv.get_key(_GLOBAL_DOTENV_PATH, \u0022resource_group\u0022)\n", + "_GLOBAL_CONFIG_DICT = {\n", + " \u0022clientIdKey\u0022: \u0022sp_client_id\u0022,\n", + " \u0022clientSecretKey\u0022: \u0022sp_password\u0022,\n", + " \u0022clientId\u0022: dbutils.secrets.get(scope=\u0022secrets\u0022, key=\u0022sp_client_id\u0022),\n", + " \u0022clientSecret\u0022: dbutils.secrets.get(scope=\u0022secrets\u0022, key=\u0022sp_password\u0022),\n", + " \u0022subscriptionId\u0022: _GLOBAL_SUBSCRIPTION_ID,\n", + " \u0022tenantId\u0022: dotenv.get_key(_GLOBAL_DOTENV_PATH, \u0022tenant_id\u0022),\n", + " \u0022activeDirectoryEndpointUrl\u0022: \u0022https://login.microsoftonline.com\u0022,\n", + " \u0022resourceManagerEndpointUrl\u0022: \u0022https://management.azure.com/\u0022,\n", + " \u0022activeDirectoryGraphResourceId\u0022: \u0022https://graph.windows.net/\u0022,\n", + " \u0022sqlManagementEndpointUrl\u0022: \u0022https://management.core.windows.net:8443/\u0022,\n", + " \u0022galleryEndpointUrl\u0022: \u0022https://gallery.azure.com/\u0022,\n", + " \u0022managementEndpointUrl\u0022: \u0022https://management.core.windows.net/\u0022\n", + "}\n", + "\n", + "# -------------------------------------------------------------------------\n", + "# ADLS variables\n", + "# -------------------------------------------------------------------------\n", + "_GLOBAL_ADLS_ACCOUNT = dotenv.get_key(_GLOBAL_DOTENV_PATH, \u0022data_account\u0022)\n", + "_GLOBAL_ADLS_CONTAINER = dotenv.get_key(_GLOBAL_DOTENV_PATH, \u0022data_container\u0022)\n", + "_GLOBAL_ADLS_APPID = _GLOBAL_CONFIG_DICT[\u0022clientId\u0022]\n", + "_GLOBAL_ADLS_DIRID = _GLOBAL_CONFIG_DICT[\u0022tenantId\u0022]\n", + "_GLOBAL_ADLS_SECRET = _GLOBAL_CONFIG_DICT[\u0022clientSecret\u0022]\n", + "_GLOBAL_ADLS_HOSTNAME = f\u0027{_GLOBAL_ADLS_ACCOUNT}.dfs.core.windows.net\u0027\n", + "_GLOBAL_ADLS_DICT = {\n", + " \u0022adls_source\u0022: \u0022abfss://{0}@{1}.dfs.core.windows.net\u0022.format(_GLOBAL_ADLS_CONTAINER, _GLOBAL_ADLS_ACCOUNT),\n", + " \u0022oauth_endpoint\u0022: \u0022https://login.microsoftonline.com/{0}/oauth2/token\u0022.format(_GLOBAL_CONFIG_DICT[\u0022tenantId\u0022]),\n", + " \u0022adls_dfs_endpoint\u0022: \u0022{0}.dfs.core.windows.net\u0022.format(_GLOBAL_ADLS_ACCOUNT),\n", + " \u0022adls_container_mount_point\u0022: \u0022/mnt/{0}\u0022.format(_GLOBAL_ADLS_CONTAINER),\n", + " \u0022adls_resource_type\u0022: \u0022https://storage.azure.com\u0022,\n", + " \u0022adls_mount_root\u0022: \u0022/mnt\u0022,\n", + " \u0022adls_model_cache\u0022: \u0022dbfs:/mnt/{0}/cache\u0022.format(_GLOBAL_ADLS_CONTAINER)\n", + "}\n", + "\n", + "# -------------------------------------------------------------------------\n", + "# COSMOS DB variables\n", + "# -------------------------------------------------------------------------\n", + "_GLOBAL_DB_SECRETS = {\n", + " \u0022Endpoint\u0022: \u0022https://{0}.documents.azure.com:443/\u0022.format(dotenv.get_key(_GLOBAL_DOTENV_PATH, \u0022azure_cosmosdb_account_name\u0022)),\n", + " \u0022Masterkey\u0022: dbutils.secrets.get(scope=\u0022secrets\u0022, key=\u0022cosmosdb_primary_master_key\u0022),\n", + " \u0022Database\u0022: dotenv.get_key(_GLOBAL_DOTENV_PATH, \u0022azure_cosmosdb_database\u0022),\n", + " \u0022Collection\u0022: dotenv.get_key(_GLOBAL_DOTENV_PATH, \u0022azure_cosmosdb_container\u0022),\n", + " \u0022Upsert\u0022: True\n", + "}\n", + "\n", + "# -------------------------------------------------------------------------\n", + "# Data variables\n", + "# -------------------------------------------------------------------------\n", + "_GLOBAL_DATA_ROOT = dotenv.get_key(_GLOBAL_DOTENV_PATH, \u0022physical_data_model_directory\u0022)\n", + "_GLOBAL_TPC_RAW_ROOT = \u0027tpcds-raw-data\u0027\n", + "_GLOBAL_IDM_SCHEMA_ROOT = dotenv.get_key(_GLOBAL_DOTENV_PATH, \u0022logical_data_model_directory\u0022)\n", + "_GLOBAL_DATA_NAME = dotenv.get_key(_GLOBAL_DOTENV_PATH, \u0022data_name\u0022)\n", + "_GLOBAL_ADAPTER_PARTIAL = functools.partial(\n", + " ADLSAdapter,\n", + " hostname=_GLOBAL_ADLS_HOSTNAME,\n", + " tenant=_GLOBAL_ADLS_DIRID,\n", + " client_id=_GLOBAL_ADLS_APPID,\n", + " secret=_GLOBAL_ADLS_SECRET\n", + ")\n", + "_GLOBAL_CONFIG_JSON = copy.deepcopy(CONFIG)\n", + "_GLOBAL_CONFIG_JSON[\u0022adls\u0022][\u0022account\u0022] = _GLOBAL_ADLS_ACCOUNT\n", + "_GLOBAL_CONFIG_JSON[\u0022adls\u0022][\u0022container\u0022] = _GLOBAL_ADLS_CONTAINER\n", + "_GLOBAL_CONFIG_JSON[\u0022adls\u0022][\u0022appid\u0022] = _GLOBAL_ADLS_APPID\n", + "_GLOBAL_CONFIG_JSON[\u0022adls\u0022][\u0022dirid\u0022] = _GLOBAL_ADLS_DIRID\n", + "_GLOBAL_CONFIG_JSON[\u0022adls\u0022][\u0022secret\u0022] = _GLOBAL_ADLS_SECRET\n", + "_GLOBAL_CONFIG_JSON[\u0022adls\u0022][\u0022hostname\u0022] = _GLOBAL_ADLS_HOSTNAME\n", + "_GLOBAL_CONFIG_JSON[\u0022cdm\u0022][\u0022data_root\u0022] = _GLOBAL_DATA_ROOT\n", + "_GLOBAL_CONFIG_JSON[\u0022cdm\u0022][\u0022manifest_name\u0022] = \u0022{0}.manifest.cdm.json\u0022.format(dotenv.get_key(_GLOBAL_DOTENV_PATH, \u0022industry_data_model_name\u0022))\n", + "_GLOBAL_INPUT_DATA_FILE = dotenv.get_key(_GLOBAL_DOTENV_PATH, \u0022processed_data_file\u0022)\n", + "_GLOBAL_CUSTOMER_DATA_FILE = dotenv.get_key(_GLOBAL_DOTENV_PATH, \u0022processed_customer_data_file\u0022)\n", + "\n", + "# -------------------------------------------------------------------------\n", + "# Model variables\n", + "# -------------------------------------------------------------------------\n", + "_GLOBAL_MODEL_LOCAL_CACHE = \u0027dbfs:/model/{0}\u0027.format(\n", + " \u0027\u0027.join(random.choice(string.ascii_lowercase) for i in range(10))\n", + ")\n", + "\n", + "# -------------------------------------------------------------------------\n", + "# Azure Machine Learning service variables\n", + "# -------------------------------------------------------------------------\n", + "_GLOBAL_AML_DICT = {\n", + " \u0022workspace_name\u0022: dotenv.get_key(_GLOBAL_DOTENV_PATH, \u0022azureml_workspace\u0022),\n", + " \u0022model_file_name\u0022: dotenv.get_key(_GLOBAL_DOTENV_PATH, \u0022azureml_model_file_name\u0022),\n", + " \u0022aml_experiment_name\u0022: dotenv.get_key(_GLOBAL_DOTENV_PATH, \u0022azureml_experiment_name\u0022)\n", + "}\n", + "\n", + "# -------------------------------------------------------------------------\n", + "# Azure Kubernetes Service variables\n", + "# -------------------------------------------------------------------------\n", + "_GLOBAL_AKS_NAME = dotenv.get_key(_GLOBAL_DOTENV_PATH, \u0022aks_cluster_name\u0022)\n", + "_GLOBAL_SERVICE_NAME = \u0022aks-service-{0}\u0022.format(dotenv.get_key(_GLOBAL_DOTENV_PATH, \u0022unique_key\u0022))\n", + "_GLOBAL_AKS_CONFIG_LEVEL = dotenv.get_key(_GLOBAL_DOTENV_PATH, \u0022aks_config_level\u0022)\n", + "_GLOBAL_AKS_COMPUTE_TARGET_NAME = \u0027aks\u0027 \u002B dotenv.get_key(_GLOBAL_DOTENV_PATH, \u0022unique_key\u0022)" + ], + "attachments": null, + "outputs": [ + { + "output_type": "display_data", + "data": { + "text/html": "\u003Cstyle scoped\u003E\n .ansiout {\n display: block;\n unicode-bidi: embed;\n white-space: pre-wrap;\n word-wrap: break-word;\n word-break: break-all;\n font-family: \u0022Source Code Pro\u0022, \u0022Menlo\u0022, monospace;;\n font-size: 13px;\n color: #555;\n margin-left: 4px;\n line-height: 19px;\n }\n\u003C/style\u003E\n\u003Cdiv class=\u0022ansiout\u0022\u003E\u003C/div\u003E" + }, + "metadata": { + "application/vnd.databricks.v1\u002Boutput": { + "datasetInfos": [], + "data": "\u003Cdiv class=\u0022ansiout\u0022\u003E\u003C/div\u003E", + "removedWidgets": [], + "addedWidgets": {}, + "type": "html", + "arguments": {} + } + } + }, + { + "output_type": "display_data", + "data": { + "text/html": "\u003Cstyle scoped\u003E\n .ansiout {\n display: block;\n unicode-bidi: embed;\n white-space: pre-wrap;\n word-wrap: break-word;\n word-break: break-all;\n font-family: \u0022Source Code Pro\u0022, \u0022Menlo\u0022, monospace;;\n font-size: 13px;\n color: #555;\n margin-left: 4px;\n line-height: 19px;\n }\n\u003C/style\u003E\n\u003Cdiv class=\u0022ansiout\u0022\u003E\u003Cspan class=\u0022ansi-red-fg\u0022\u003E---------------------------------------------------------------------------\u003C/span\u003E\n\u003Cspan class=\u0022ansi-red-fg\u0022\u003ENameError\u003C/span\u003E Traceback (most recent call last)\n\u003Cspan class=\u0022ansi-green-fg\u0022\u003E\u0026lt;command-1159393715563018\u0026gt;\u003C/span\u003E in \u003Cspan class=\u0022ansi-cyan-fg\u0022\u003E\u0026lt;module\u0026gt;\u003C/span\u003E\n\u003Cspan class=\u0022ansi-green-intense-fg ansi-bold\u0022\u003E 66\u003C/span\u003E _GLOBAL_DATA_NAME \u003Cspan class=\u0022ansi-blue-fg\u0022\u003E=\u003C/span\u003E dotenv\u003Cspan class=\u0022ansi-blue-fg\u0022\u003E.\u003C/span\u003Eget_key\u003Cspan class=\u0022ansi-blue-fg\u0022\u003E(\u003C/span\u003E_GLOBAL_DOTENV_PATH\u003Cspan class=\u0022ansi-blue-fg\u0022\u003E,\u003C/span\u003E \u003Cspan class=\u0022ansi-blue-fg\u0022\u003E\u0026#34;data_name\u0026#34;\u003C/span\u003E\u003Cspan class=\u0022ansi-blue-fg\u0022\u003E)\u003C/span\u003E\n\u003Cspan class=\u0022ansi-green-intense-fg ansi-bold\u0022\u003E 67\u003C/span\u003E _GLOBAL_ADAPTER_PARTIAL = functools.partial(\n\u003Cspan class=\u0022ansi-green-fg\u0022\u003E---\u0026gt; 68\u003C/span\u003E\u003Cspan class=\u0022ansi-red-fg\u0022\u003E \u003C/span\u003EADLSAdapter\u003Cspan class=\u0022ansi-blue-fg\u0022\u003E,\u003C/span\u003E\n\u003Cspan class=\u0022ansi-green-intense-fg ansi-bold\u0022\u003E 69\u003C/span\u003E hostname\u003Cspan class=\u0022ansi-blue-fg\u0022\u003E=\u003C/span\u003E_GLOBAL_ADLS_HOSTNAME\u003Cspan class=\u0022ansi-blue-fg\u0022\u003E,\u003C/span\u003E\n\u003Cspan class=\u0022ansi-green-intense-fg ansi-bold\u0022\u003E 70\u003C/span\u003E tenant\u003Cspan class=\u0022ansi-blue-fg\u0022\u003E=\u003C/span\u003E_GLOBAL_ADLS_DIRID\u003Cspan class=\u0022ansi-blue-fg\u0022\u003E,\u003C/span\u003E\n\n\u003Cspan class=\u0022ansi-red-fg\u0022\u003ENameError\u003C/span\u003E: name \u0026#39;ADLSAdapter\u0026#39; is not defined\u003C/div\u003E" + }, + "metadata": { + "application/vnd.databricks.v1\u002Boutput": { + "type": "ipynbError", + "data": "\u003Cdiv class=\u0022ansiout\u0022\u003E\u003Cspan class=\u0022ansi-red-fg\u0022\u003E---------------------------------------------------------------------------\u003C/span\u003E\n\u003Cspan class=\u0022ansi-red-fg\u0022\u003ENameError\u003C/span\u003E Traceback (most recent call last)\n\u003Cspan class=\u0022ansi-green-fg\u0022\u003E\u0026lt;command-1159393715563018\u0026gt;\u003C/span\u003E in \u003Cspan class=\u0022ansi-cyan-fg\u0022\u003E\u0026lt;module\u0026gt;\u003C/span\u003E\n\u003Cspan class=\u0022ansi-green-intense-fg ansi-bold\u0022\u003E 66\u003C/span\u003E _GLOBAL_DATA_NAME \u003Cspan class=\u0022ansi-blue-fg\u0022\u003E=\u003C/span\u003E dotenv\u003Cspan class=\u0022ansi-blue-fg\u0022\u003E.\u003C/span\u003Eget_key\u003Cspan class=\u0022ansi-blue-fg\u0022\u003E(\u003C/span\u003E_GLOBAL_DOTENV_PATH\u003Cspan class=\u0022ansi-blue-fg\u0022\u003E,\u003C/span\u003E \u003Cspan class=\u0022ansi-blue-fg\u0022\u003E\u0026#34;data_name\u0026#34;\u003C/span\u003E\u003Cspan class=\u0022ansi-blue-fg\u0022\u003E)\u003C/span\u003E\n\u003Cspan class=\u0022ansi-green-intense-fg ansi-bold\u0022\u003E 67\u003C/span\u003E _GLOBAL_ADAPTER_PARTIAL = functools.partial(\n\u003Cspan class=\u0022ansi-green-fg\u0022\u003E---\u0026gt; 68\u003C/span\u003E\u003Cspan class=\u0022ansi-red-fg\u0022\u003E \u003C/span\u003EADLSAdapter\u003Cspan class=\u0022ansi-blue-fg\u0022\u003E,\u003C/span\u003E\n\u003Cspan class=\u0022ansi-green-intense-fg ansi-bold\u0022\u003E 69\u003C/span\u003E hostname\u003Cspan class=\u0022ansi-blue-fg\u0022\u003E=\u003C/span\u003E_GLOBAL_ADLS_HOSTNAME\u003Cspan class=\u0022ansi-blue-fg\u0022\u003E,\u003C/span\u003E\n\u003Cspan class=\u0022ansi-green-intense-fg ansi-bold\u0022\u003E 70\u003C/span\u003E tenant\u003Cspan class=\u0022ansi-blue-fg\u0022\u003E=\u003C/span\u003E_GLOBAL_ADLS_DIRID\u003Cspan class=\u0022ansi-blue-fg\u0022\u003E,\u003C/span\u003E\n\n\u003Cspan class=\u0022ansi-red-fg\u0022\u003ENameError\u003C/span\u003E: name \u0026#39;ADLSAdapter\u0026#39; is not defined\u003C/div\u003E", + "errorSummary": "\u003Cspan class=\u0022ansi-red-fg\u0022\u003ENameError\u003C/span\u003E: name \u0026#39;ADLSAdapter\u0026#39; is not defined", + "arguments": {} + } + } + } + ], + "execution_count": 0 + }, + { + "cell_type": "code", + "metadata": { + "application/vnd.databricks.v1\u002Bcell": { + "title": "", + "showTitle": false, + "inputWidgets": {}, + "nuid": "639595d4-4083-4f33-a7d4-15af60e7b3d6" + } + }, + "source": [ + "# Spark initialization\n", + "SUBMIT_ARGS = \u0022--packages eisber:sarplus:0.2.6 pyspark-shell\u0022\n", + "os.environ[\u0022PYSPARK_SUBMIT_ARGS\u0022] = SUBMIT_ARGS\n", + "\n", + "spark = (\n", + " SparkSession.builder.appName(\u0022sample\u0022)\n", + " .master(\u0022local[*]\u0022)\n", + " .config(\u0022memory\u0022, \u00221G\u0022)\n", + " .config(\u0022spark.sql.shuffle.partitions\u0022, \u00221\u0022)\n", + " .config(\u0022spark.sql.crossJoin.enabled\u0022, True)\n", + " .config(\u0022spark.ui.enabled\u0022, False)\n", + " .getOrCreate()\n", + ")\n", + "\n", + "# SqlContext helps with doing SQL like queries on spark DFs.\n", + "sqlContext = SQLContext(spark)\n", + "\n", + "# Configure the Spark session to avoid using mount\n", + "spark.conf.set(\u0022fs.azure.account.auth.type.{0}.dfs.core.windows.net\u0022.format(_GLOBAL_ADLS_ACCOUNT), \u0022OAuth\u0022)\n", + "spark.conf.set(\n", + " \u0022fs.azure.account.oauth.provider.type.{0}.dfs.core.windows.net\u0022.format(_GLOBAL_ADLS_ACCOUNT),\n", + " \u0022org.apache.hadoop.fs.azurebfs.oauth2.ClientCredsTokenProvider\u0022,\n", + ")\n", + "spark.conf.set(\n", + " \u0022fs.azure.account.oauth2.client.id.{0}.dfs.core.windows.net\u0022.format(_GLOBAL_ADLS_ACCOUNT), _GLOBAL_ADLS_APPID\n", + ")\n", + "spark.conf.set(\n", + " \u0022fs.azure.account.oauth2.client.secret.{0}.dfs.core.windows.net\u0022.format(_GLOBAL_ADLS_ACCOUNT), _GLOBAL_ADLS_SECRET\n", + ")\n", + "spark.conf.set(\n", + " \u0022fs.azure.account.oauth2.client.endpoint.{0}.dfs.core.windows.net\u0022.format(_GLOBAL_ADLS_ACCOUNT),\n", + " \u0022https://login.microsoftonline.com/{0}/oauth2/token\u0022.format(_GLOBAL_ADLS_DIRID),\n", + ")" + ], + "attachments": null, + "outputs": [], + "execution_count": 0 + }, + { + "cell_type": "code", + "metadata": { + "application/vnd.databricks.v1\u002Bcell": { + "title": "", + "showTitle": false, + "inputWidgets": {}, + "nuid": "614662de-2288-451e-b238-b6190156aac4" + } + }, + "source": [ + "# Mount the remove ADLS container on the local databricks\n", + "\n", + "# Unmount an existing mount point\n", + "try:\n", + " dbutils.fs.unmount(_GLOBAL_ADLS_DICT[\u0022adls_container_mount_point\u0022])\n", + "except Exception as ex:\n", + " if \u0022Directory not mounted\u0022 not in str(ex):\n", + " raise Exception(\u0022Error in unmounting\u0022)\n", + "\n", + "# Mount wit the provided configuration information\n", + "configs = {\n", + " \u0022fs.azure.account.auth.type\u0022: \u0022OAuth\u0022,\n", + " \u0022fs.azure.account.oauth.provider.type\u0022: \u0022org.apache.hadoop.fs.azurebfs.oauth2.ClientCredsTokenProvider\u0022,\n", + " \u0022fs.azure.account.oauth2.client.id\u0022: _GLOBAL_CONFIG_DICT[\u0022clientId\u0022],\n", + " \u0022fs.azure.account.oauth2.client.secret\u0022: _GLOBAL_CONFIG_DICT[\u0022clientSecret\u0022],\n", + " \u0022fs.azure.account.oauth2.client.endpoint\u0022: _GLOBAL_ADLS_DICT[\u0022oauth_endpoint\u0022],\n", + "}\n", + "dbutils.fs.mount(\n", + " source=_GLOBAL_ADLS_DICT[\u0022adls_source\u0022],\n", + " mount_point=_GLOBAL_ADLS_DICT[\u0022adls_container_mount_point\u0022],\n", + " extra_configs=configs,\n", + ")\n", + "\n", + "# List the contents in the mounted directory\n", + "dbutils.fs.ls(_GLOBAL_ADLS_DICT[\u0022adls_container_mount_point\u0022])\n", + "\n", + "# Make a new directory for model cache use\n", + "dbutils.fs.mkdirs(_GLOBAL_ADLS_DICT[\u0022adls_model_cache\u0022])" + ], + "attachments": null, + "outputs": [], + "execution_count": 0 + } + ], + "folder": { + "name": "nbfolder/test1" + } }, - "etag": "0807a71b-0000-0800-0000-6000c4570000" + "etag": "0900eeb9-0000-0100-0000-61408d200000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook1417891841?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebooks/HelloWorld?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-316a9cbce97aaa46ade5118d7ed42d8d-3f5cab5af78d1443-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "944247b5453db39158346f33e3484336", + "traceparent": "00-b0fb2c11cb95294a8a798474bce6cf89-6b6db24399706a47-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "962cda046f9dbf439be62b1581727303", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:42 GMT", + "Date": "Thu, 30 Sep 2021 07:32:52 GMT", "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Kestrel Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "944247b5453db39158346f33e3484336", - "x-ms-request-id": "7520888c-ec70-4ede-83cb-497340f688a3" + "x-ms-client-request-id": "962cda046f9dbf439be62b1581727303", + "x-ms-request-id": "cd65ca18-524f-49f8-b77a-019a8a90a8bd" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1417891841", - "name": "Notebook1417891841", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/HelloWorld", + "name": "HelloWorld", "type": "Microsoft.Synapse/workspaces/notebooks", "properties": { "nbformat": 4, "nbformat_minor": 2, "entityState": null, "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, + "bigDataPool": { + "referenceName": "testsparkpool", + "type": "BigDataPoolReference" + }, + "sessionProperties": { + "driverMemory": "28g", + "driverCores": 4, + "executorMemory": "28g", + "executorCores": 4, + "numExecutors": 2, + "conf": { + "spark.dynamicAllocation.enabled": "false", + "spark.dynamicAllocation.minExecutors": "2", + "spark.dynamicAllocation.maxExecutors": "2" + } + }, "metadata": { "language_info": { - "name": "Python" + "name": "python" }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 + "a365ComputeOptions": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/bigDataPools/testsparkpool", + "name": "testsparkpool", + "type": "Spark", + "endpoint": "https://testsynapseworkspace.dev.azuresynapse.net/livyApi/versions/2019-11-01-preview/sparkPools/testsparkpool", + "auth": { + "type": "AAD", + "authResource": "https://dev.azuresynapse.net" + }, + "sparkVersion": "2.4", + "nodeCount": 3, + "cores": 8, + "memory": 56, + "extraHeader": null + }, + "sessionKeepAliveTimeout": 30, + "saveOutput": true, + "synapse_widget": { + "version": "0.1", + "state": {} + }, + "kernelspec": { + "name": "synapse_pyspark", + "display_name": "python" + } }, - "cells": [], + "cells": [ + { + "cell_type": "code", + "metadata": {}, + "source": [ + "# comment\r\n", + "print(\u0022Hello World\u0022)" + ], + "attachments": null, + "outputs": [], + "execution_count": null + } + ], "folder": null }, - "etag": "08075a49-0000-0800-0000-6000c4930000" + "etag": "0e00670b-0000-0100-0000-6142dcab0000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook493783868?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebooks/notebook-04-14-00-07?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-e45612a8a0da3941a238c6368a3a2b87-8014347b59a70c46-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "61af12ceae320a0be171e43f7daa44cf", + "traceparent": "00-dc28580f3461c9499486e65de23e2d2b-218dd4ce76eef34a-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "fb186da869e19c35c6621610cbf550e5", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:42 GMT", + "Date": "Thu, 30 Sep 2021 07:32:52 GMT", "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Kestrel Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "61af12ceae320a0be171e43f7daa44cf", - "x-ms-request-id": "5b8c0f93-914a-4823-bd1a-2e8fbc0a66be" + "x-ms-client-request-id": "fb186da869e19c35c6621610cbf550e5", + "x-ms-request-id": "133a4b0e-3e3e-455f-885b-90e13fc0153a" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook493783868", - "name": "Notebook493783868", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/notebook-04-14-00-07", + "name": "notebook-04-14-00-07", "type": "Microsoft.Synapse/workspaces/notebooks", "properties": { "nbformat": 4, "nbformat_minor": 2, "entityState": null, "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, + "bigDataPool": { + "referenceName": "testsparkpool", + "type": "BigDataPoolReference" + }, + "sessionProperties": { + "driverMemory": "28g", + "driverCores": 3, + "executorMemory": "45g", + "executorCores": 7, + "numExecutors": 2, + "conf": null + }, "metadata": { "language_info": { - "name": "Python" + "name": "python" + }, + "a365ComputeOptions": null, + "sessionKeepAliveTimeout": 0 + }, + "cells": [ + { + "cell_type": "code", + "metadata": { + "tags": [ + "parameters" + ] + }, + "source": [ + "" + ], + "attachments": null, + "outputs": [], + "execution_count": null }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], + { + "cell_type": "code", + "metadata": {}, + "source": [ + "print(param)" + ], + "attachments": null, + "outputs": [], + "execution_count": null + } + ], "folder": null }, - "etag": "c507ac00-0000-0800-0000-6001c1080000" + "etag": "6003a078-0000-0100-0000-607694d80000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook2029453227?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebooks/notebook-04-14-00-09?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-bb2a72f64d893444879f5cca8ddef8f5-3ad473ae13088846-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "4e14cf97cc404585af0fe5cf59e804e8", + "traceparent": "00-91348abf138d084ab6b9a31f7b55b759-eb93132d683ca048-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "0e5ff4817150cbbc8e08f58d42084253", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:43 GMT", + "Date": "Thu, 30 Sep 2021 07:32:52 GMT", "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Kestrel Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "4e14cf97cc404585af0fe5cf59e804e8", - "x-ms-request-id": "cc2c621a-7376-4f43-b402-15137334af1f" + "x-ms-client-request-id": "0e5ff4817150cbbc8e08f58d42084253", + "x-ms-request-id": "31be768f-0b14-47b0-b93f-d3d594828117" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook2029453227", - "name": "Notebook2029453227", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/notebook-04-14-00-09", + "name": "notebook-04-14-00-09", "type": "Microsoft.Synapse/workspaces/notebooks", "properties": { "nbformat": 4, "nbformat_minor": 2, "entityState": null, "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, + "bigDataPool": { + "referenceName": "testsparkpool", + "type": "BigDataPoolReference" + }, + "sessionProperties": { + "driverMemory": "28g", + "driverCores": 3, + "executorMemory": "45g", + "executorCores": 7, + "numExecutors": 2, + "conf": null + }, "metadata": { "language_info": { - "name": "Python" + "name": "python" }, "a365ComputeOptions": null, "sessionKeepAliveTimeout": 0 }, - "cells": [], + "cells": [ + { + "cell_type": "code", + "metadata": { + "tags": [ + "parameters" + ] + }, + "source": [ + "" + ], + "attachments": null, + "outputs": [], + "execution_count": null + }, + { + "cell_type": "code", + "metadata": {}, + "source": [ + "print(param)" + ], + "attachments": null, + "outputs": [], + "execution_count": null + } + ], "folder": null }, - "etag": "c507732b-0000-0800-0000-6001c1410000" + "etag": "6103a451-0000-0100-0000-6076953a0000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook401570095?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebooks/notebook-04-19-23-25?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-494bd1d11e85294bbbb076b410536c21-f95687891490ae42-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "171b6b428119065c3c37b3cc615235ad", + "traceparent": "00-586d911dedde6b46bc1da36cd5201465-daf987230c93314c-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "80ab98fb940c9b86a590d03a5833f4a5", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:43 GMT", + "Date": "Thu, 30 Sep 2021 07:32:53 GMT", "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Kestrel Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "171b6b428119065c3c37b3cc615235ad", - "x-ms-request-id": "447a2ba3-dd96-4d69-ae9e-40988ced4fd8" + "x-ms-client-request-id": "80ab98fb940c9b86a590d03a5833f4a5", + "x-ms-request-id": "7c44a5a5-ab15-48bc-b4d0-60823f923869" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook401570095", - "name": "Notebook401570095", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/notebook-04-19-23-25", + "name": "notebook-04-19-23-25", "type": "Microsoft.Synapse/workspaces/notebooks", "properties": { "nbformat": 4, "nbformat_minor": 2, "entityState": null, "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, + "bigDataPool": { + "referenceName": "testsparkpool", + "type": "BigDataPoolReference" + }, + "sessionProperties": { + "driverMemory": "28g", + "driverCores": 3, + "executorMemory": "45g", + "executorCores": 7, + "numExecutors": 2, + "conf": null + }, "metadata": { "language_info": { - "name": "Python" + "name": "python" }, "a365ComputeOptions": null, "sessionKeepAliveTimeout": 0 }, - "cells": [], + "cells": [ + { + "cell_type": "code", + "metadata": { + "tags": [ + "parameters" + ] + }, + "source": [ + "" + ], + "attachments": null, + "outputs": [], + "execution_count": null + }, + { + "cell_type": "code", + "metadata": {}, + "source": [ + "print(param)" + ], + "attachments": null, + "outputs": [], + "execution_count": null + } + ], "folder": null }, - "etag": "d9079a8e-0000-0800-0000-6001dc5a0000" + "etag": "060096a2-0000-0100-0000-607e73c90000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook410522585?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebooks/dwnb0723?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-47d9355dfeade647948f3151977bf715-c9e8987838f10f4a-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "149b9feff53301f58d6ab123c93bb0f8", + "traceparent": "00-eff60173c0c3794883f2e44bfd06a277-f96866a2789f9c4f-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "8c934696641337b3b04d6dd874a759be", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:43 GMT", + "Date": "Thu, 30 Sep 2021 07:32:53 GMT", "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Kestrel Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "149b9feff53301f58d6ab123c93bb0f8", - "x-ms-request-id": "c65b6f86-921c-4a69-b4b1-0d9b46c614b0" + "x-ms-client-request-id": "8c934696641337b3b04d6dd874a759be", + "x-ms-request-id": "3a593a94-bd47-4481-b745-d76b190522b3" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook410522585", - "name": "Notebook410522585", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/dwnb0723", + "name": "dwnb0723", "type": "Microsoft.Synapse/workspaces/notebooks", "properties": { "nbformat": 4, @@ -9838,105 +3030,180 @@ "entityState": null, "renameOperationDetails": null, "bigDataPool": null, - "sessionProperties": null, + "sessionProperties": { + "driverMemory": "28g", + "driverCores": 4, + "executorMemory": "28g", + "executorCores": 4, + "numExecutors": 2, + "conf": { + "spark.dynamicAllocation.enabled": "false", + "spark.dynamicAllocation.minExecutors": "2", + "spark.dynamicAllocation.maxExecutors": "2" + } + }, "metadata": { "language_info": { - "name": "Python" + "name": "python" }, "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 + "sessionKeepAliveTimeout": 30, + "saveOutput": true, + "synapse_widget": { + "version": "0.1", + "state": {} + }, + "kernelspec": { + "name": "synapse_pyspark", + "display_name": "python" + } }, - "cells": [], + "cells": [ + { + "cell_type": "code", + "metadata": {}, + "source": [ + "print(\u0027hello\u0027)" + ], + "attachments": null, + "outputs": [], + "execution_count": null + } + ], "folder": null }, - "etag": "d90764b1-0000-0800-0000-6001dc860000" + "etag": "03001052-0000-0100-0000-60e831ea0000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook20726443?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebooks/BRMSRule?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-a047d476013865428d772bbfd79bf9d4-18fa0f9c57b7fc48-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "11fdfb6d2d8e16b5720e120819b8e35d", + "traceparent": "00-d1b1cf39d11555499ff553930aa8ff00-647e0f9e2fef0f44-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "3215c320cf4aecd96dc469bfa182735a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:44 GMT", + "Date": "Thu, 30 Sep 2021 07:32:53 GMT", "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Kestrel Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "11fdfb6d2d8e16b5720e120819b8e35d", - "x-ms-request-id": "952919bc-4a19-4f00-8a3b-1474fa372c9d" + "x-ms-client-request-id": "3215c320cf4aecd96dc469bfa182735a", + "x-ms-request-id": "b4b9e03b-3868-4081-902b-e08123868859" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook20726443", - "name": "Notebook20726443", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/BRMSRule", + "name": "BRMSRule", "type": "Microsoft.Synapse/workspaces/notebooks", "properties": { "nbformat": 4, "nbformat_minor": 2, "entityState": null, "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, + "bigDataPool": { + "referenceName": "testportal", + "type": "BigDataPoolReference" + }, + "sessionProperties": { + "driverMemory": "28g", + "driverCores": 4, + "executorMemory": "28g", + "executorCores": 4, + "numExecutors": 2, + "conf": null + }, "metadata": { "language_info": { - "name": "Python" + "name": "python" }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 + "a365ComputeOptions": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/bigDataPools/testportal", + "name": "testportal", + "type": "Spark", + "endpoint": "https://testsynapseworkspace.dev.azuresynapse.net/livyApi/versions/2019-11-01-preview/sparkPools/testportal", + "auth": { + "type": "AAD", + "authResource": "https://dev.azuresynapse.net" + }, + "sparkVersion": "3.0", + "nodeCount": 10, + "cores": 4, + "memory": 28, + "extraHeader": null + }, + "sessionKeepAliveTimeout": 30, + "saveOutput": true }, - "cells": [], + "cells": [ + { + "cell_type": "code", + "metadata": { + "cellLanguage": "python", + "tags": [ + "parameters" + ] + }, + "source": [ + "param = \u0022\u0022" + ], + "attachments": null, + "outputs": [], + "execution_count": null + }, + { + "cell_type": "code", + "metadata": null, + "source": [ + "print(param)\n", + "print(\u0022updated 12:29\u0022)\n", + "a = \u0022\u0022\u0022\n", + "/*Rule:OEMDealFlagPlan_OneConsumerPlanCustomGrouping-BEGIN*/ /*Rule:OEMDealFlagPlan_OneConsumerPlanCustomGrouping-END*/\n", + "\u0022\u0022\u0022\n", + "print(a)" + ], + "attachments": null, + "outputs": [], + "execution_count": null + } + ], "folder": null }, - "etag": "3100e91d-0000-0800-0000-600873dd0000" + "etag": "0e00f869-0000-0100-0000-611a2fa50000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook13089502?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebooks/dwtestnbdescription?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-0306c50284d3194ea71aa0678251ce3a-f84390f1f9d31544-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "b9df37d9ef4d4cb5761a8aafcf393d00", + "traceparent": "00-089b7caf0b5f56439179d3c0398506c0-c2e76faf7e553944-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "fcf75014b5759640e574cfbe27ad27fd", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:44 GMT", + "Date": "Thu, 30 Sep 2021 07:32:54 GMT", "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Kestrel Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "b9df37d9ef4d4cb5761a8aafcf393d00", - "x-ms-request-id": "aa3f4329-2c39-418e-8226-9739b3493b4d" + "x-ms-client-request-id": "fcf75014b5759640e574cfbe27ad27fd", + "x-ms-request-id": "d22923ee-dd32-4022-a5ac-ba5c9d5fefeb" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook13089502", - "name": "Notebook13089502", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/dwtestnbdescription", + "name": "dwtestnbdescription", "type": "Microsoft.Synapse/workspaces/notebooks", "properties": { "nbformat": 4, @@ -9944,52 +3211,77 @@ "entityState": null, "renameOperationDetails": null, "bigDataPool": null, - "sessionProperties": null, + "sessionProperties": { + "driverMemory": "28g", + "driverCores": 4, + "executorMemory": "28g", + "executorCores": 4, + "numExecutors": 2, + "conf": { + "spark.dynamicAllocation.enabled": "false", + "spark.dynamicAllocation.minExecutors": "2", + "spark.dynamicAllocation.maxExecutors": "2" + } + }, "metadata": { "language_info": { - "name": "Python" + "name": "python" }, "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 + "sessionKeepAliveTimeout": 30, + "saveOutput": true, + "synapse_widget": { + "version": "0.1", + "state": {} + }, + "kernelspec": { + "name": "synapse_pyspark", + "display_name": "python" + } }, - "cells": [], + "cells": [ + { + "cell_type": "code", + "metadata": {}, + "source": [ + "" + ], + "attachments": null, + "outputs": [], + "execution_count": null + } + ], "folder": null }, - "etag": "31007349-0000-0800-0000-600874170000" + "etag": "0e00710b-0000-0100-0000-6142dcb10000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook99280730?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebooks/Notebook51465148?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-eac41e90dc1ff3429d923afab91df5ab-18ecf98b9475be4e-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "665fba872355c21ee984a124e3ece8d4", + "traceparent": "00-e097510aa0c7d14cac042ebb103ff0be-1151133e71c04d4b-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "951a1236c11dc65a6da61f4efbf3962e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:44 GMT", + "Date": "Thu, 30 Sep 2021 07:32:54 GMT", "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Kestrel Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "665fba872355c21ee984a124e3ece8d4", - "x-ms-request-id": "56347b01-f335-48d0-aa55-ce631313ff94" + "x-ms-client-request-id": "951a1236c11dc65a6da61f4efbf3962e", + "x-ms-request-id": "6aefe68b-fda5-4ba5-ae39-7e591cdb6133" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook99280730", - "name": "Notebook99280730", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/Notebook51465148", + "name": "Notebook51465148", "type": "Microsoft.Synapse/workspaces/notebooks", "properties": { "nbformat": 4, @@ -10008,41 +3300,35 @@ "cells": [], "folder": null }, - "etag": "330005b5-0000-0800-0000-600877720000" + "etag": "2e00eb87-0000-0100-0000-6155681c0000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook16542947?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebooks/Notebook82440489?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-75015ae0858cfd40bf1ac770d06d87ef-a0ecb5c5e5035844-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "91495487f75c7dab45b09b74a3064639", + "traceparent": "00-72ae096e58f8c44f9f50a6df0e501dff-41a60c39fb1f0543-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "24c312d95daf6a48837e4dd6ff1ac5bf", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:45 GMT", + "Date": "Thu, 30 Sep 2021 07:32:54 GMT", "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Kestrel Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "91495487f75c7dab45b09b74a3064639", - "x-ms-request-id": "27cb05e6-b603-4e6e-88c0-c3184e5aa728" + "x-ms-client-request-id": "24c312d95daf6a48837e4dd6ff1ac5bf", + "x-ms-request-id": "ef4e9f9e-2a43-4289-9d7b-88f5c0940c6a" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook16542947", - "name": "Notebook16542947", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/Notebook82440489", + "name": "Notebook82440489", "type": "Microsoft.Synapse/workspaces/notebooks", "properties": { "nbformat": 4, @@ -10061,41 +3347,35 @@ "cells": [], "folder": null }, - "etag": "3300cbd7-0000-0800-0000-600877a40000" + "etag": "2e005180-0000-0100-0000-615556dc0000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook40157009?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebooks/Notebook54387962?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-35433fcdb596d443b5562ee753272a2c-abbe2a23d13b8a46-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "5e8111d17d58b607191dcfc84d90688a", + "traceparent": "00-4e356c8fe7489042bad14d13299a97e5-923a7a32a1aedf4f-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "8f896b9dde67533cf5308ecf96f19bf1", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:45 GMT", + "Date": "Thu, 30 Sep 2021 07:32:54 GMT", "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Kestrel Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "5e8111d17d58b607191dcfc84d90688a", - "x-ms-request-id": "8b0914d9-3992-453a-9966-f89a8718beb5" + "x-ms-client-request-id": "8f896b9dde67533cf5308ecf96f19bf1", + "x-ms-request-id": "96a75d80-74a6-424d-a146-699852e03812" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook40157009", - "name": "Notebook40157009", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/Notebook54387962", + "name": "Notebook54387962", "type": "Microsoft.Synapse/workspaces/notebooks", "properties": { "nbformat": 4, @@ -10114,41 +3394,35 @@ "cells": [], "folder": null }, - "etag": "5100e89c-0000-0800-0000-6008a2af0000" + "etag": "2e005680-0000-0100-0000-615556e00000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook41052258?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebooks/Notebook82429219?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-92e8e936d3a7c149b132c9d7e6431a78-6fb34110225a294a-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "7a28b532acef8fa40fe220a488aa1fe3", + "traceparent": "00-b09484f3ee46ac41a443acf07f093c0c-8282b3ef4910a249-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "15e5a1de03e9d94dc9b0129e7384c753", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:45 GMT", + "Date": "Thu, 30 Sep 2021 07:32:54 GMT", "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Kestrel Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "7a28b532acef8fa40fe220a488aa1fe3", - "x-ms-request-id": "5a4416b6-b41d-461f-bdd9-c6fa43946cba" + "x-ms-client-request-id": "15e5a1de03e9d94dc9b0129e7384c753", + "x-ms-request-id": "8eff6806-836d-409a-b011-c04c619f7601" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook41052258", - "name": "Notebook41052258", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/Notebook82429219", + "name": "Notebook82429219", "type": "Microsoft.Synapse/workspaces/notebooks", "properties": { "nbformat": 4, @@ -10167,41 +3441,35 @@ "cells": [], "folder": null }, - "etag": "510029c4-0000-0800-0000-6008a2e60000" + "etag": "2e005880-0000-0100-0000-615556e20000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook51465148?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebooks/Notebook12432614?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-81a063a002b56747af8ac2f5fdd27d27-313647f22d45c047-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "d253683e896a097b4c93783e27e22fb5", + "traceparent": "00-d91a874b90f3ec49a9d5331d30e4ef87-a9059488d9fd7f4a-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "8fb05fe1066afbc6d5702e7fce79d391", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:46 GMT", + "Date": "Thu, 30 Sep 2021 07:32:55 GMT", "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Kestrel Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "d253683e896a097b4c93783e27e22fb5", - "x-ms-request-id": "a2fec83c-e0f0-4e4b-9092-dae705b99fbc" + "x-ms-client-request-id": "8fb05fe1066afbc6d5702e7fce79d391", + "x-ms-request-id": "fd989280-5076-4bd5-a377-db73c887eee7" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook51465148", - "name": "Notebook51465148", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/Notebook12432614", + "name": "Notebook12432614", "type": "Microsoft.Synapse/workspaces/notebooks", "properties": { "nbformat": 4, @@ -10220,21 +3488,18 @@ "cells": [], "folder": null }, - "etag": "14016666-0000-0800-0000-6009c8260000" + "etag": "2e005a80-0000-0100-0000-615556e70000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook51465148?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebooks/Notebook51465148?api-version=2020-12-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-9341b282f2df56488eae4d216d5ca127-fbeaa62a9dd73d49-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "ed411148cbdd244a6df24f765c632d6e", + "traceparent": "00-d6888827657f96458b1e5c1b62df1c61-b5a2165ac9bf9440-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "5ef85ce3af349ad61dafc5b7cb9de070", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -10242,110 +3507,33 @@ "ResponseHeaders": { "Access-Control-Allow-Headers": "Location", "Access-Control-Expose-Headers": "Location", - "Content-Length": "374", + "Content-Length": "367", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:46 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/notebookOperationResults/b0cff3e6-3c45-42a6-917a-7c37abd42a9b?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 07:32:55 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/notebookOperationResults/5a766667-bc5e-465a-ab08-02180b44cf0e?api-version=2020-12-01", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "ed411148cbdd244a6df24f765c632d6e", - "x-ms-request-id": "1e4a878e-4c61-4a00-8030-28f32a9f8c61" + "x-ms-client-request-id": "5ef85ce3af349ad61dafc5b7cb9de070", + "x-ms-request-id": "bd2c626a-42fc-46bb-8f08-fe43d5564590" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook51465148", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/Notebook51465148", "recordId": 0, "state": "Deleting", "created": "0001-01-01T00:00:00", "changed": "0001-01-01T00:00:00", "type": "Notebook", "name": "Notebook51465148", - "operationId": "b0cff3e6-3c45-42a6-917a-7c37abd42a9b" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebookOperationResults/b0cff3e6-3c45-42a6-917a-7c37abd42a9b?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "775c6bb2316872051d2e64783904ade9", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:46 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/notebookOperationResults/b0cff3e6-3c45-42a6-917a-7c37abd42a9b?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "775c6bb2316872051d2e64783904ade9", - "x-ms-request-id": "23bbc81c-6d2b-4eb4-8239-a952b275f6db" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebookOperationResults/b0cff3e6-3c45-42a6-917a-7c37abd42a9b?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "3b4109664958b177f198b3bf9deff008", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:47 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/notebookOperationResults/b0cff3e6-3c45-42a6-917a-7c37abd42a9b?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "3b4109664958b177f198b3bf9deff008", - "x-ms-request-id": "7ea954c6-e3d1-41c5-a829-3512600a0d96" - }, - "ResponseBody": { - "status": "InProgress" + "operationId": "5a766667-bc5e-465a-ab08-02180b44cf0e" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebookOperationResults/b0cff3e6-3c45-42a6-917a-7c37abd42a9b?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebookOperationResults/5a766667-bc5e-465a-ab08-02180b44cf0e?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "f1c32289b607cc05e618c80e31a76f35", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "17bb80dc698c311e891672ba400e2f37", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -10361,28 +3549,25 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:48 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/notebookOperationResults/b0cff3e6-3c45-42a6-917a-7c37abd42a9b?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 07:32:55 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/notebookOperationResults/5a766667-bc5e-465a-ab08-02180b44cf0e?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "f1c32289b607cc05e618c80e31a76f35", - "x-ms-request-id": "eb3de583-53c6-4196-8fef-19cd3eeda65f" + "x-ms-client-request-id": "17bb80dc698c311e891672ba400e2f37", + "x-ms-request-id": "2018cf96-1317-491a-be34-498cffbdb9b9" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebookOperationResults/b0cff3e6-3c45-42a6-917a-7c37abd42a9b?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebookOperationResults/5a766667-bc5e-465a-ab08-02180b44cf0e?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "2af444712d2469d4f3aa85d07d46d42e", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "9216be909b8bd850d420834b705cc64e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -10398,28 +3583,25 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:50 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/notebookOperationResults/b0cff3e6-3c45-42a6-917a-7c37abd42a9b?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 07:32:56 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/notebookOperationResults/5a766667-bc5e-465a-ab08-02180b44cf0e?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "2af444712d2469d4f3aa85d07d46d42e", - "x-ms-request-id": "d565a6c4-c126-4c77-bfe0-805fbb2b2267" + "x-ms-client-request-id": "9216be909b8bd850d420834b705cc64e", + "x-ms-request-id": "0d2c478e-6a2e-4c4f-abb3-417116463d47" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebookOperationResults/b0cff3e6-3c45-42a6-917a-7c37abd42a9b?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebookOperationResults/5a766667-bc5e-465a-ab08-02180b44cf0e?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "16ee5c3ebb40afe20474543f81698049", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "4bda76a5c8e200e41dbcae2a98cd96cb", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -10435,45 +3617,42 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:51 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/notebookOperationResults/b0cff3e6-3c45-42a6-917a-7c37abd42a9b?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 07:32:57 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/notebookOperationResults/5a766667-bc5e-465a-ab08-02180b44cf0e?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "16ee5c3ebb40afe20474543f81698049", - "x-ms-request-id": "f16b60c0-1133-45bd-99f6-0c82685a850f" + "x-ms-client-request-id": "4bda76a5c8e200e41dbcae2a98cd96cb", + "x-ms-request-id": "cc2ee9ef-16cf-4258-9521-138431ae4ef2" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebookOperationResults/b0cff3e6-3c45-42a6-917a-7c37abd42a9b?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebookOperationResults/5a766667-bc5e-465a-ab08-02180b44cf0e?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "594d7e29c6fa5ce34e5afd5c31354e9f", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "15e808ba77b840c32fe2426be5d3c12c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Content-Length": "0", - "Date": "Thu, 21 Jan 2021 18:30:52 GMT", + "Date": "Thu, 30 Sep 2021 07:32:59 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "594d7e29c6fa5ce34e5afd5c31354e9f", - "x-ms-request-id": "19388b5a-f841-4998-a676-6726486b7b0b" + "x-ms-client-request-id": "15e808ba77b840c32fe2426be5d3c12c", + "x-ms-request-id": "02623464-e1ea-4396-9b9e-efb23892324c" }, "ResponseBody": [] } ], "Variables": { - "AZURE_SYNAPSE_WORKSPACE_URL": "https://workspacechhamosynapse.dev.azuresynapse.net", + "AZURE_SYNAPSE_WORKSPACE_URL": "https://testsynapseworkspace.dev.azuresynapse.net", "RandomSeed": "963561127" } } \ No newline at end of file diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/NotebookClientLiveTests/TestGetNotebookAsync.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/NotebookClientLiveTests/TestGetNotebookAsync.json index 1c191aaeb4c8..f2b7c9b99786 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/NotebookClientLiveTests/TestGetNotebookAsync.json +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/NotebookClientLiveTests/TestGetNotebookAsync.json @@ -1,18 +1,15 @@ { "Entries": [ { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook82429219?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebooks/Notebook82429219?api-version=2020-12-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "132", "Content-Type": "application/json", - "traceparent": "00-e866adbdcbde9e4d8aa7a5f693e07718-dafa2d69aa53854c-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "traceparent": "00-11dfe7381872c640b5bbfa8531e6da65-8d33493faa0c194c-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b1e8d540cdc8696bd205b61e1ec9216d", "x-ms-return-client-request-id": "true" }, @@ -39,37 +36,34 @@ "Location", "Retry-After" ], - "Content-Length": "449", + "Content-Length": "443", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:52 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/notebookOperationResults/88398de8-9be5-4883-b500-9645c1506d56?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 07:33:52 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/notebookOperationResults/f6cd2df0-cdba-46b0-a521-f6482a640c45?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "b1e8d540cdc8696bd205b61e1ec9216d", - "x-ms-request-id": "1244cd64-7872-427f-90f8-be11a3915a35" + "x-ms-request-id": "13f27f11-cae7-4b1e-91ca-e450bbf76ec2" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook82429219", - "recordId": 990952, - "state": "Creating", - "created": "2021-01-21T18:30:52.9166667Z", - "changed": "2021-01-21T18:30:52.9166667Z", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/Notebook82429219", + "recordId": 2424373, + "state": "Updating", + "created": "2021-09-30T06:19:13.9633333Z", + "changed": "2021-09-30T06:19:15.0366667Z", "type": "Notebook", "name": "Notebook82429219", - "operationId": "88398de8-9be5-4883-b500-9645c1506d56", - "artifactId": "3ccf9ddc-7f4f-4cea-a82f-b2716bf72039" + "operationId": "f6cd2df0-cdba-46b0-a521-f6482a640c45", + "artifactId": "3549a878-3dc0-4614-bf4b-7478da575e2d" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebookOperationResults/88398de8-9be5-4883-b500-9645c1506d56?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebookOperationResults/f6cd2df0-cdba-46b0-a521-f6482a640c45?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "bd80ddad076b9f9714cc567bf24ec132", "x-ms-return-client-request-id": "true" }, @@ -86,27 +80,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:52 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/notebookOperationResults/88398de8-9be5-4883-b500-9645c1506d56?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 07:33:53 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/notebookOperationResults/f6cd2df0-cdba-46b0-a521-f6482a640c45?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "bd80ddad076b9f9714cc567bf24ec132", - "x-ms-request-id": "e7894576-628c-473d-82bf-919e93366c24" + "x-ms-request-id": "e01c0180-634a-4412-84fb-60988c36f97b" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebookOperationResults/88398de8-9be5-4883-b500-9645c1506d56?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebookOperationResults/f6cd2df0-cdba-46b0-a521-f6482a640c45?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "59d5ee160034ee9dec0f78daed2d7e37", "x-ms-return-client-request-id": "true" }, @@ -123,27 +114,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:54 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/notebookOperationResults/88398de8-9be5-4883-b500-9645c1506d56?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 07:33:54 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/notebookOperationResults/f6cd2df0-cdba-46b0-a521-f6482a640c45?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "59d5ee160034ee9dec0f78daed2d7e37", - "x-ms-request-id": "4d75e98d-d05b-410d-a59e-20b365c5c801" + "x-ms-request-id": "b0dc390c-8d67-45f8-a913-c22f25d7e1ce" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebookOperationResults/88398de8-9be5-4883-b500-9645c1506d56?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebookOperationResults/f6cd2df0-cdba-46b0-a521-f6482a640c45?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "4171482364492a015a3c9bfafb6de6ea", "x-ms-return-client-request-id": "true" }, @@ -151,19 +139,16 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:55 GMT", + "Date": "Thu, 30 Sep 2021 07:33:55 GMT", "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Kestrel Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", "x-ms-client-request-id": "4171482364492a015a3c9bfafb6de6ea", - "x-ms-request-id": "a0991457-155f-494a-9ded-de529666888f" + "x-ms-request-id": "05124093-97ed-4a10-a97b-5298bc690697" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook82429219", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/Notebook82429219", "name": "Notebook82429219", "type": "Microsoft.Synapse/workspaces/notebooks", "properties": { @@ -183,8928 +168,677 @@ "cells": [], "folder": null }, - "etag": "1401ae8d-0000-0800-0000-6009c85e0000" + "etag": "2e001e88-0000-0100-0000-615568630000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebooks?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-d5c2de2eda11e34eae7bacd9f70fb342-b0116ca6d7a3744f-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "traceparent": "00-0ce5f5362de305488c594e01532ead68-4a0be25f250e9341-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "fc26ad2c89c5ad393f91d15b8fbcb1e6", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Content-Length": "29024", + "Content-Length": "89300", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:55 GMT", + "Date": "Thu, 30 Sep 2021 07:33:55 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "fc26ad2c89c5ad393f91d15b8fbcb1e6", - "x-ms-request-id": "1ad74dd6-6c73-423d-ba7e-e1c2377a90ac" + "x-ms-request-id": "4ce2fb84-655b-466e-8c03-8d09761dcd04" + }, + "ResponseBody": "{\u0022value\u0022:[{\u0022id\u0022:\u0022/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/Notebook 1\u0022,\u0022name\u0022:\u0022Notebook 1\u0022,\u0022type\u0022:\u0022Microsoft.Synapse/workspaces/notebooks\u0022,\u0022etag\u0022:\u00221700db78-0000-0100-0000-60f7a2160000\u0022,\u0022properties\u0022:{\u0022nbformat\u0022:4,\u0022nbformat_minor\u0022:2,\u0022entityState\u0022:null,\u0022renameOperationDetails\u0022:null,\u0022bigDataPool\u0022:{\u0022referenceName\u0022:\u0022testsparkpool\u0022,\u0022type\u0022:\u0022BigDataPoolReference\u0022},\u0022sessionProperties\u0022:{\u0022driverMemory\u0022:\u002228g\u0022,\u0022driverCores\u0022:4,\u0022executorMemory\u0022:\u002228g\u0022,\u0022executorCores\u0022:4,\u0022numExecutors\u0022:1,\u0022conf\u0022:{\u0022spark.dynamicAllocation.enabled\u0022:\u0022false\u0022,\u0022spark.dynamicAllocation.minExecutors\u0022:\u00221\u0022,\u0022spark.dynamicAllocation.maxExecutors\u0022:\u00221\u0022}},\u0022metadata\u0022:{\u0022language_info\u0022:{\u0022name\u0022:\u0022python\u0022},\u0022a365ComputeOptions\u0022:{\u0022id\u0022:\u0022/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/bigDataPools/testsparkpool\u0022,\u0022name\u0022:\u0022testsparkpool\u0022,\u0022type\u0022:\u0022Spark\u0022,\u0022endpoint\u0022:\u0022https://testsynapseworkspace.dev.azuresynapse.net/livyApi/versions/2019-11-01-preview/sparkPools/testsparkpool\u0022,\u0022auth\u0022:{\u0022type\u0022:\u0022AAD\u0022,\u0022authResource\u0022:\u0022https://dev.azuresynapse.net\u0022},\u0022sparkVersion\u0022:\u00222.4\u0022,\u0022nodeCount\u0022:3,\u0022cores\u0022:8,\u0022memory\u0022:56,\u0022extraHeader\u0022:null},\u0022sessionKeepAliveTimeout\u0022:30,\u0022saveOutput\u0022:true,\u0022synapse_widget\u0022:{\u0022version\u0022:\u00220.1\u0022,\u0022state\u0022:{}},\u0022kernelspec\u0022:{\u0022name\u0022:\u0022synapse_pyspark\u0022,\u0022display_name\u0022:\u0022python\u0022}},\u0022cells\u0022:[{\u0022cell_type\u0022:\u0022code\u0022,\u0022metadata\u0022:{},\u0022source\u0022:[\u0022print(\\\u0022hello from portal\\\u0022)\u0022],\u0022attachments\u0022:{},\u0022outputs\u0022:[],\u0022execution_count\u0022:null}],\u0022folder\u0022:{\u0022name\u0022:\u0022nbfolder\u0022}}},{\u0022id\u0022:\u0022/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/dongwwaTestNotebook\u0022,\u0022name\u0022:\u0022dongwwaTestNotebook\u0022,\u0022type\u0022:\u0022Microsoft.Synapse/workspaces/notebooks\u0022,\u0022etag\u0022:\u00220100d5a0-0000-0100-0000-5ecba4720000\u0022,\u0022properties\u0022:{\u0022nbformat\u0022:4,\u0022nbformat_minor\u0022:2,\u0022entityState\u0022:null,\u0022renameOperationDetails\u0022:null,\u0022bigDataPool\u0022:null,\u0022sessionProperties\u0022:{\u0022driverMemory\u0022:\u002228g\u0022,\u0022driverCores\u0022:4,\u0022executorMemory\u0022:\u002228g\u0022,\u0022executorCores\u0022:4,\u0022numExecutors\u0022:2,\u0022conf\u0022:null},\u0022metadata\u0022:{\u0022language_info\u0022:{\u0022name\u0022:\u0022python\u0022},\u0022a365ComputeOptions\u0022:null,\u0022sessionKeepAliveTimeout\u0022:30},\u0022cells\u0022:[{\u0022cell_type\u0022:\u0022code\u0022,\u0022metadata\u0022:{},\u0022source\u0022:[\u0022print(\u0027hello\u0027)\u0022],\u0022attachments\u0022:{},\u0022outputs\u0022:[],\u0022execution_count\u0022:null}],\u0022folder\u0022:null}},{\u0022id\u0022:\u0022/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/dongwwaNb2\u0022,\u0022name\u0022:\u0022dongwwaNb2\u0022,\u0022type\u0022:\u0022Microsoft.Synapse/workspaces/notebooks\u0022,\u0022etag\u0022:\u00221100d8f9-0000-0100-0000-5f1560de0000\u0022,\u0022properties\u0022:{\u0022nbformat\u0022:4,\u0022nbformat_minor\u0022:2,\u0022entityState\u0022:null,\u0022renameOperationDetails\u0022:null,\u0022bigDataPool\u0022:{\u0022referenceName\u0022:\u0022testportal\u0022,\u0022type\u0022:\u0022BigDataPoolReference\u0022},\u0022sessionProperties\u0022:{\u0022driverMemory\u0022:\u002228g\u0022,\u0022driverCores\u0022:4,\u0022executorMemory\u0022:\u002228g\u0022,\u0022executorCores\u0022:4,\u0022numExecutors\u0022:3,\u0022conf\u0022:null},\u0022metadata\u0022:{\u0022language_info\u0022:{\u0022name\u0022:\u0022python\u0022},\u0022a365ComputeOptions\u0022:{\u0022id\u0022:\u0022/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/bigDataPools/testportal\u0022,\u0022name\u0022:\u0022testportal\u0022,\u0022type\u0022:\u0022Spark\u0022,\u0022endpoint\u0022:\u0022https://testsynapseworkspace.dev.azuresynapse.net/livyApi/versions/2019-11-01-preview/sparkPools/testportal\u0022,\u0022auth\u0022:{\u0022type\u0022:\u0022AAD\u0022,\u0022authResource\u0022:\u0022https://dev.azuresynapse.net\u0022},\u0022sparkVersion\u0022:\u00222.4\u0022,\u0022nodeCount\u0022:3,\u0022cores\u0022:8,\u0022memory\u0022:56,\u0022extraHeader\u0022:{}},\u0022sessionKeepAliveTimeout\u0022:15},\u0022cells\u0022:[],\u0022folder\u0022:null}},{\u0022id\u0022:\u0022/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/dongwwanb23\u0022,\u0022name\u0022:\u0022dongwwanb23\u0022,\u0022type\u0022:\u0022Microsoft.Synapse/workspaces/notebooks\u0022,\u0022etag\u0022:\u00225f0005d3-0000-0100-0000-5f06bc3e0000\u0022,\u0022properties\u0022:{\u0022nbformat\u0022:4,\u0022nbformat_minor\u0022:2,\u0022entityState\u0022:null,\u0022renameOperationDetails\u0022:null,\u0022bigDataPool\u0022:{\u0022referenceName\u0022:\u0022testportal\u0022,\u0022type\u0022:\u0022BigDataPoolReference\u0022},\u0022sessionProperties\u0022:{\u0022driverMemory\u0022:\u002228g\u0022,\u0022driverCores\u0022:4,\u0022executorMemory\u0022:\u002228g\u0022,\u0022executorCores\u0022:4,\u0022numExecutors\u0022:2,\u0022conf\u0022:null},\u0022metadata\u0022:{\u0022language_info\u0022:{\u0022name\u0022:\u0022python\u0022},\u0022a365ComputeOptions\u0022:{\u0022id\u0022:\u0022/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/bigDataPools/testportal\u0022,\u0022name\u0022:\u0022testportal\u0022,\u0022type\u0022:\u0022Spark\u0022,\u0022endpoint\u0022:\u0022https://testsynapseworkspace.dev.azuresynapse.net/livyApi/versions/2019-11-01-preview/sparkPools/testportal\u0022,\u0022auth\u0022:{\u0022type\u0022:\u0022AAD\u0022,\u0022authResource\u0022:\u0022https://dev.azuresynapse.net\u0022},\u0022sparkVersion\u0022:\u00222.4\u0022,\u0022nodeCount\u0022:3,\u0022cores\u0022:8,\u0022memory\u0022:56,\u0022extraHeader\u0022:{}},\u0022sessionKeepAliveTimeout\u0022:30},\u0022cells\u0022:[],\u0022folder\u0022:null}},{\u0022id\u0022:\u0022/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/dongwwatestnb1446\u0022,\u0022name\u0022:\u0022dongwwatestnb1446\u0022,\u0022type\u0022:\u0022Microsoft.Synapse/workspaces/notebooks\u0022,\u0022etag\u0022:\u00225f0029d3-0000-0100-0000-5f06bd6a0000\u0022,\u0022properties\u0022:{\u0022nbformat\u0022:4,\u0022nbformat_minor\u0022:2,\u0022entityState\u0022:null,\u0022renameOperationDetails\u0022:null,\u0022bigDataPool\u0022:null,\u0022sessionProperties\u0022:{\u0022driverMemory\u0022:\u002228g\u0022,\u0022driverCores\u0022:4,\u0022executorMemory\u0022:\u002228g\u0022,\u0022executorCores\u0022:4,\u0022numExecutors\u0022:2,\u0022conf\u0022:null},\u0022metadata\u0022:{\u0022language_info\u0022:{\u0022name\u0022:\u0022python\u0022},\u0022a365ComputeOptions\u0022:null,\u0022sessionKeepAliveTimeout\u0022:30},\u0022cells\u0022:[],\u0022folder\u0022:null}},{\u0022id\u0022:\u0022/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/dongwwaCreateNbwithCell\u0022,\u0022name\u0022:\u0022dongwwaCreateNbwithCell\u0022,\u0022type\u0022:\u0022Microsoft.Synapse/workspaces/notebooks\u0022,\u0022etag\u0022:\u00220e00d468-0000-0100-0000-611a2f1e0000\u0022,\u0022properties\u0022:{\u0022nbformat\u0022:4,\u0022nbformat_minor\u0022:2,\u0022entityState\u0022:null,\u0022renameOperationDetails\u0022:null,\u0022bigDataPool\u0022:{\u0022referenceName\u0022:\u0022testportal\u0022,\u0022type\u0022:\u0022BigDataPoolReference\u0022},\u0022sessionProperties\u0022:{\u0022driverMemory\u0022:\u002228g\u0022,\u0022driverCores\u0022:4,\u0022executorMemory\u0022:\u002228g\u0022,\u0022executorCores\u0022:4,\u0022numExecutors\u0022:1,\u0022conf\u0022:{\u0022spark.dynamicAllocation.enabled\u0022:\u0022false\u0022,\u0022spark.dynamicAllocation.minExecutors\u0022:\u00221\u0022,\u0022spark.dynamicAllocation.maxExecutors\u0022:\u00221\u0022}},\u0022metadata\u0022:{\u0022language_info\u0022:{\u0022name\u0022:\u0022python\u0022},\u0022a365ComputeOptions\u0022:{\u0022id\u0022:\u0022/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/bigDataPools/testportal\u0022,\u0022name\u0022:\u0022testportal\u0022,\u0022type\u0022:\u0022Spark\u0022,\u0022endpoint\u0022:\u0022https://testsynapseworkspace.dev.azuresynapse.net/livyApi/versions/2019-11-01-preview/sparkPools/testportal\u0022,\u0022auth\u0022:{\u0022type\u0022:\u0022AAD\u0022,\u0022authResource\u0022:\u0022https://dev.azuresynapse.net\u0022},\u0022sparkVersion\u0022:\u00222.4\u0022,\u0022nodeCount\u0022:3,\u0022cores\u0022:8,\u0022memory\u0022:56,\u0022extraHeader\u0022:null},\u0022sessionKeepAliveTimeout\u0022:30,\u0022saveOutput\u0022:true,\u0022synapse_widget\u0022:{\u0022version\u0022:\u00220.1\u0022,\u0022state\u0022:{}},\u0022kernelspec\u0022:{\u0022name\u0022:\u0022synapse_pyspark\u0022,\u0022display_name\u0022:\u0022python\u0022}},\u0022cells\u0022:[{\u0022cell_type\u0022:\u0022code\u0022,\u0022metadata\u0022:{},\u0022source\u0022:[\u0022print(\u0027hello world\u0027)\u0022],\u0022attachments\u0022:null,\u0022outputs\u0022:[],\u0022execution_count\u0022:null}],\u0022folder\u0022:null}},{\u0022id\u0022:\u0022/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/Notebook1980347592\u0022,\u0022name\u0022:\u0022Notebook1980347592\u0022,\u0022type\u0022:\u0022Microsoft.Synapse/workspaces/notebooks\u0022,\u0022etag\u0022:\u002200001701-0000-0100-0000-600164550000\u0022,\u0022properties\u0022:{\u0022nbformat\u0022:-1,\u0022nbformat_minor\u0022:2,\u0022entityState\u0022:null,\u0022renameOperationDetails\u0022:null,\u0022bigDataPool\u0022:null,\u0022sessionProperties\u0022:null,\u0022metadata\u0022:{\u0022language_info\u0022:null,\u0022a365ComputeOptions\u0022:null,\u0022sessionKeepAliveTimeout\u0022:0},\u0022cells\u0022:[],\u0022folder\u0022:null}},{\u0022id\u0022:\u0022/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/Notebook1304984445\u0022,\u0022name\u0022:\u0022Notebook1304984445\u0022,\u0022type\u0022:\u0022Microsoft.Synapse/workspaces/notebooks\u0022,\u0022etag\u0022:\u002200004501-0000-0100-0000-600164960000\u0022,\u0022properties\u0022:{\u0022nbformat\u0022:0,\u0022nbformat_minor\u0022:0,\u0022entityState\u0022:null,\u0022renameOperationDetails\u0022:null,\u0022bigDataPool\u0022:null,\u0022sessionProperties\u0022:null,\u0022metadata\u0022:{\u0022language_info\u0022:null,\u0022a365ComputeOptions\u0022:null,\u0022sessionKeepAliveTimeout\u0022:0},\u0022cells\u0022:[],\u0022folder\u0022:null}},{\u0022id\u0022:\u0022/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/dwnb1218\u0022,\u0022name\u0022:\u0022dwnb1218\u0022,\u0022type\u0022:\u0022Microsoft.Synapse/workspaces/notebooks\u0022,\u0022etag\u0022:\u0022c2009a8b-0000-0100-0000-5fd32e170000\u0022,\u0022properties\u0022:{\u0022nbformat\u0022:4,\u0022nbformat_minor\u0022:2,\u0022entityState\u0022:null,\u0022renameOperationDetails\u0022:null,\u0022bigDataPool\u0022:null,\u0022sessionProperties\u0022:null,\u0022metadata\u0022:{\u0022language_info\u0022:{\u0022name\u0022:\u0022python\u0022},\u0022a365ComputeOptions\u0022:{\u0022id\u0022:\u0022/subscriptions/132ed640-b28a-4f12-b8b6-3792c4e9d55f/resourceGroups/z-ago-dhp-ana-ari-ew1-rg01/providers/Microsoft.Synapse/workspaces/synapseari002/bigDataPools/RunningPool\u0022,\u0022name\u0022:\u0022RunningPool\u0022,\u0022type\u0022:\u0022Spark\u0022,\u0022endpoint\u0022:\u0022https://synapseari002.dev.azuresynapse.net/livyApi/versions/2019-11-01-preview/sparkPools/RunningPool\u0022,\u0022auth\u0022:{\u0022type\u0022:\u0022AAD\u0022,\u0022authResource\u0022:\u0022https://dev.azuresynapse.net\u0022},\u0022sparkVersion\u0022:\u00222.4\u0022,\u0022nodeCount\u0022:3,\u0022cores\u0022:0,\u0022memory\u0022:0,\u0022extraHeader\u0022:null},\u0022sessionKeepAliveTimeout\u0022:0,\u0022sessionOptions\u0022:{\u0022driverMemory\u0022:\u002228g\u0022,\u0022driverCores\u0022:4,\u0022executorMemory\u0022:\u002228g\u0022,\u0022executorCores\u0022:4,\u0022numExecutors\u0022:2,\u0022keepAliveTimeout\u0022:30,\u0022conf\u0022:{\u0022spark.dynamicAllocation.enabled\u0022:\u0022false\u0022,\u0022spark.dynamicAllocation.minExecutors\u0022:\u00222\u0022,\u0022spark.dynamicAllocation.maxExecutors\u0022:\u00222\u0022}},\u0022saveOutput\u0022:true},\u0022cells\u0022:[{\u0022cell_type\u0022:\u0022code\u0022,\u0022metadata\u0022:{\u0022microsoft\u0022:{\u0022language\u0022:\u0022python1\u0022}},\u0022source\u0022:[\u0022%%pyspark\\r\\n\u0022,\u0022df = spark.read.load(\u0027abfss://synapse@zagodhpanaariew1sto02.dfs.core.windows.net/Data/COCKPIT_V0.csv\u0027, format=\u0027csv\u0027\\r\\n\u0022,\u0022## If\u202Fheader\u202Fexists\u202Funcomment\u202Fline\u202Fbelow\\r\\n\u0022,\u0022##, header=True\\r\\n\u0022,\u0022)\\r\\n\u0022,\u0022display(df.limit(10))\u0022],\u0022attachments\u0022:null,\u0022outputs\u0022:[],\u0022execution_count\u0022:null}],\u0022folder\u0022:null}},{\u0022id\u0022:\u0022/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/dwnb1219\u0022,\u0022name\u0022:\u0022dwnb1219\u0022,\u0022type\u0022:\u0022Microsoft.Synapse/workspaces/notebooks\u0022,\u0022etag\u0022:\u0022c2009f8b-0000-0100-0000-5fd32e6c0000\u0022,\u0022properties\u0022:{\u0022nbformat\u0022:4,\u0022nbformat_minor\u0022:2,\u0022entityState\u0022:null,\u0022renameOperationDetails\u0022:null,\u0022bigDataPool\u0022:null,\u0022sessionProperties\u0022:null,\u0022metadata\u0022:{\u0022language_info\u0022:{\u0022name\u0022:\u0022python\u0022},\u0022a365ComputeOptions\u0022:{\u0022id\u0022:\u0022/subscriptions/132ed640-b28a-4f12-b8b6-3792c4e9d55f/resourceGroups/z-ago-dhp-ana-ari-ew1-rg01/providers/Microsoft.Synapse/workspaces/synapseari002/bigDataPools/RunningPool\u0022,\u0022name\u0022:\u0022RunningPool\u0022,\u0022type\u0022:\u0022Spark\u0022,\u0022endpoint\u0022:\u0022https://synapseari002.dev.azuresynapse.net/livyApi/versions/2019-11-01-preview/sparkPools/RunningPool\u0022,\u0022auth\u0022:{\u0022type\u0022:\u0022AAD\u0022,\u0022authResource\u0022:\u0022https://dev.azuresynapse.net\u0022},\u0022sparkVersion\u0022:\u00222.4\u0022,\u0022nodeCount\u0022:3,\u0022cores\u0022:0,\u0022memory\u0022:0,\u0022extraHeader\u0022:null},\u0022sessionKeepAliveTimeout\u0022:0,\u0022sessionOptions\u0022:{\u0022driverMemory\u0022:\u002228g\u0022,\u0022driverCores\u0022:4,\u0022executorMemory\u0022:\u002228g\u0022,\u0022executorCores\u0022:4,\u0022numExecutors\u0022:2,\u0022keepAliveTimeout\u0022:30,\u0022conf\u0022:{\u0022spark.dynamicAllocation.enabled\u0022:\u0022false\u0022,\u0022spark.dynamicAllocation.minExecutors\u0022:\u00222\u0022,\u0022spark.dynamicAllocation.maxExecutors\u0022:\u00222\u0022}},\u0022saveOutput\u0022:true},\u0022cells\u0022:[{\u0022cell_type\u0022:\u0022code\u0022,\u0022metadata\u0022:{\u0022microsoft\u0022:{\u0022language\u0022:\u0022python1\u0022}},\u0022source\u0022:[\u0022%%pyspark\\r\\n\u0022,\u0022df = spark.read.load(\u0027abfss://synapse@zagodhpanaariew1sto02.dfs.core.windows.net/Data/COCKPIT_V0.csv\u0027, format=\u0027csv\u0027\\r\\n\u0022,\u0022## If\u202Fheader\u202Fexists\u202Funcomment\u202Fline\u202Fbelow\\r\\n\u0022,\u0022##, header=True\\r\\n\u0022,\u0022)\\r\\n\u0022,\u0022display(df.limit(10))\u0022],\u0022attachments\u0022:null,\u0022outputs\u0022:[],\u0022execution_count\u0022:null}],\u0022folder\u0022:null}},{\u0022id\u0022:\u0022/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/dwnb1232\u0022,\u0022name\u0022:\u0022dwnb1232\u0022,\u0022type\u0022:\u0022Microsoft.Synapse/workspaces/notebooks\u0022,\u0022etag\u0022:\u0022c200a08b-0000-0100-0000-5fd32eb70000\u0022,\u0022properties\u0022:{\u0022nbformat\u0022:4,\u0022nbformat_minor\u0022:2,\u0022entityState\u0022:null,\u0022renameOperationDetails\u0022:null,\u0022bigDataPool\u0022:null,\u0022sessionProperties\u0022:null,\u0022metadata\u0022:{\u0022language_info\u0022:{\u0022name\u0022:\u0022python\u0022},\u0022a365ComputeOptions\u0022:{\u0022id\u0022:\u0022/subscriptions/132ed640-b28a-4f12-b8b6-3792c4e9d55f/resourceGroups/z-ago-dhp-ana-ari-ew1-rg01/providers/Microsoft.Synapse/workspaces/synapseari002/bigDataPools/RunningPool\u0022,\u0022name\u0022:\u0022RunningPool\u0022,\u0022type\u0022:\u0022Spark\u0022,\u0022endpoint\u0022:\u0022https://synapseari002.dev.azuresynapse.net/livyApi/versions/2019-11-01-preview/sparkPools/RunningPool\u0022,\u0022auth\u0022:{\u0022type\u0022:\u0022AAD\u0022,\u0022authResource\u0022:\u0022https://dev.azuresynapse.net\u0022},\u0022sparkVersion\u0022:\u00222.4\u0022,\u0022nodeCount\u0022:3,\u0022cores\u0022:0,\u0022memory\u0022:0,\u0022extraHeader\u0022:null},\u0022sessionKeepAliveTimeout\u0022:0,\u0022sessionOptions\u0022:{\u0022driverMemory\u0022:\u002228g\u0022,\u0022driverCores\u0022:4,\u0022executorMemory\u0022:\u002228g\u0022,\u0022executorCores\u0022:4,\u0022numExecutors\u0022:2,\u0022keepAliveTimeout\u0022:30,\u0022conf\u0022:{\u0022spark.dynamicAllocation.enabled\u0022:\u0022false\u0022,\u0022spark.dynamicAllocation.minExecutors\u0022:\u00222\u0022,\u0022spark.dynamicAllocation.maxExecutors\u0022:\u00222\u0022}},\u0022saveOutput\u0022:true},\u0022cells\u0022:[{\u0022cell_type\u0022:\u0022code1\u0022,\u0022metadata\u0022:{\u0022microsoft\u0022:{\u0022language\u0022:\u0022python\u0022}},\u0022source\u0022:[\u0022%%pyspark\\r\\n\u0022,\u0022df = spark.read.load(\u0027abfss://synapse@zagodhpanaariew1sto02.dfs.core.windows.net/Data/COCKPIT_V0.csv\u0027, format=\u0027csv\u0027\\r\\n\u0022,\u0022## If\u202Fheader\u202Fexists\u202Funcomment\u202Fline\u202Fbelow\\r\\n\u0022,\u0022##, header=True\\r\\n\u0022,\u0022)\\r\\n\u0022,\u0022display(df.limit(10))\u0022],\u0022attachments\u0022:null,\u0022outputs\u0022:[],\u0022execution_count\u0022:null}],\u0022folder\u0022:null}},{\u0022id\u0022:\u0022/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/Notebook1655116845\u0022,\u0022name\u0022:\u0022Notebook1655116845\u0022,\u0022type\u0022:\u0022Microsoft.Synapse/workspaces/notebooks\u0022,\u0022etag\u0022:\u00221a0072ca-0000-0100-0000-5fd6ffec0000\u0022,\u0022properties\u0022:{\u0022nbformat\u0022:4,\u0022nbformat_minor\u0022:2,\u0022entityState\u0022:null,\u0022renameOperationDetails\u0022:null,\u0022bigDataPool\u0022:null,\u0022sessionProperties\u0022:null,\u0022metadata\u0022:{\u0022language_info\u0022:null,\u0022a365ComputeOptions\u0022:null,\u0022sessionKeepAliveTimeout\u0022:0},\u0022cells\u0022:[{\u0022cell_type\u0022:\u0022code\u0022,\u0022metadata\u0022:{},\u0022source\u0022:[\u0022from azureml.opendatasets import NycTlcYellow\\n\u0022,\u0022\\n\u0022,\u0022data = NycTlcYellow()\\n\u0022,\u0022df = data.to_spark_dataframe()\\n\u0022,\u0022# Display 10 rows\\n\u0022,\u0022display(df.limit(10))\u0022],\u0022attachments\u0022:null,\u0022outputs\u0022:[],\u0022execution_count\u0022:null}],\u0022folder\u0022:null}},{\u0022id\u0022:\u0022/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/Notebook598190831\u0022,\u0022name\u0022:\u0022Notebook598190831\u0022,\u0022type\u0022:\u0022Microsoft.Synapse/workspaces/notebooks\u0022,\u0022etag\u0022:\u00221a0074ca-0000-0100-0000-5fd6fff20000\u0022,\u0022properties\u0022:{\u0022nbformat\u0022:4,\u0022nbformat_minor\u0022:2,\u0022entityState\u0022:null,\u0022renameOperationDetails\u0022:null,\u0022bigDataPool\u0022:null,\u0022sessionProperties\u0022:null,\u0022metadata\u0022:{\u0022language_info\u0022:null,\u0022a365ComputeOptions\u0022:null,\u0022sessionKeepAliveTimeout\u0022:0},\u0022cells\u0022:[{\u0022cell_type\u0022:\u0022code\u0022,\u0022metadata\u0022:{},\u0022source\u0022:[\u0022from azureml.opendatasets import NycTlcYellow\\n\u0022,\u0022\\n\u0022,\u0022data = NycTlcYellow()\\n\u0022,\u0022df = data.to_spark_dataframe()\\n\u0022,\u0022# Display 10 rows\\n\u0022,\u0022display(df.limit(10))\u0022],\u0022attachments\u0022:null,\u0022outputs\u0022:[],\u0022execution_count\u0022:null}],\u0022folder\u0022:null}},{\u0022id\u0022:\u0022/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/Notebook1970176056\u0022,\u0022name\u0022:\u0022Notebook1970176056\u0022,\u0022type\u0022:\u0022Microsoft.Synapse/workspaces/notebooks\u0022,\u0022etag\u0022:\u00221a0076ca-0000-0100-0000-5fd700340000\u0022,\u0022properties\u0022:{\u0022nbformat\u0022:4,\u0022nbformat_minor\u0022:2,\u0022entityState\u0022:null,\u0022renameOperationDetails\u0022:null,\u0022bigDataPool\u0022:null,\u0022sessionProperties\u0022:null,\u0022metadata\u0022:{\u0022language_info\u0022:null,\u0022a365ComputeOptions\u0022:null,\u0022sessionKeepAliveTimeout\u0022:0},\u0022cells\u0022:[{\u0022cell_type\u0022:\u0022code\u0022,\u0022metadata\u0022:{},\u0022source\u0022:[\u0022from azureml.opendatasets import NycTlcYellow\\n\u0022,\u0022\\n\u0022,\u0022data = NycTlcYellow()\\n\u0022,\u0022df = data.to_spark_dataframe()\\n\u0022,\u0022# Display 10 rows\\n\u0022,\u0022display(df.limit(10))\u0022],\u0022attachments\u0022:null,\u0022outputs\u0022:[],\u0022execution_count\u0022:null}],\u0022folder\u0022:null}},{\u0022id\u0022:\u0022/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/Notebook1782019395\u0022,\u0022name\u0022:\u0022Notebook1782019395\u0022,\u0022type\u0022:\u0022Microsoft.Synapse/workspaces/notebooks\u0022,\u0022etag\u0022:\u00221a0078ca-0000-0100-0000-5fd700380000\u0022,\u0022properties\u0022:{\u0022nbformat\u0022:4,\u0022nbformat_minor\u0022:2,\u0022entityState\u0022:null,\u0022renameOperationDetails\u0022:null,\u0022bigDataPool\u0022:null,\u0022sessionProperties\u0022:null,\u0022metadata\u0022:{\u0022language_info\u0022:null,\u0022a365ComputeOptions\u0022:null,\u0022sessionKeepAliveTimeout\u0022:0},\u0022cells\u0022:[{\u0022cell_type\u0022:\u0022code\u0022,\u0022metadata\u0022:{},\u0022source\u0022:[\u0022from azureml.opendatasets import NycTlcYellow\\n\u0022,\u0022\\n\u0022,\u0022data = NycTlcYellow()\\n\u0022,\u0022df = data.to_spark_dataframe()\\n\u0022,\u0022# Display 10 rows\\n\u0022,\u0022display(df.limit(10))\u0022],\u0022attachments\u0022:null,\u0022outputs\u0022:[],\u0022execution_count\u0022:null}],\u0022folder\u0022:null}},{\u0022id\u0022:\u0022/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/Notebook407138930\u0022,\u0022name\u0022:\u0022Notebook407138930\u0022,\u0022type\u0022:\u0022Microsoft.Synapse/workspaces/notebooks\u0022,\u0022etag\u0022:\u00221a007bca-0000-0100-0000-5fd7021d0000\u0022,\u0022properties\u0022:{\u0022nbformat\u0022:4,\u0022nbformat_minor\u0022:2,\u0022entityState\u0022:null,\u0022renameOperationDetails\u0022:null,\u0022bigDataPool\u0022:null,\u0022sessionProperties\u0022:null,\u0022metadata\u0022:{\u0022language_info\u0022:null,\u0022a365ComputeOptions\u0022:null,\u0022sessionKeepAliveTimeout\u0022:0},\u0022cells\u0022:[{\u0022cell_type\u0022:\u0022code\u0022,\u0022metadata\u0022:{},\u0022source\u0022:[\u0022from azureml.opendatasets import NycTlcYellow\\n\u0022,\u0022\\n\u0022,\u0022data = NycTlcYellow()\\n\u0022,\u0022df = data.to_spark_dataframe()\\n\u0022,\u0022# Display 10 rows\\n\u0022,\u0022display(df.limit(10))\u0022],\u0022attachments\u0022:null,\u0022outputs\u0022:[],\u0022execution_count\u0022:null}],\u0022folder\u0022:null}},{\u0022id\u0022:\u0022/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/Notebook1964062232\u0022,\u0022name\u0022:\u0022Notebook1964062232\u0022,\u0022type\u0022:\u0022Microsoft.Synapse/workspaces/notebooks\u0022,\u0022etag\u0022:\u00221a007dca-0000-0100-0000-5fd702220000\u0022,\u0022properties\u0022:{\u0022nbformat\u0022:4,\u0022nbformat_minor\u0022:2,\u0022entityState\u0022:null,\u0022renameOperationDetails\u0022:null,\u0022bigDataPool\u0022:null,\u0022sessionProperties\u0022:null,\u0022metadata\u0022:{\u0022language_info\u0022:null,\u0022a365ComputeOptions\u0022:null,\u0022sessionKeepAliveTimeout\u0022:0},\u0022cells\u0022:[{\u0022cell_type\u0022:\u0022code\u0022,\u0022metadata\u0022:{},\u0022source\u0022:[\u0022from azureml.opendatasets import NycTlcYellow\\n\u0022,\u0022\\n\u0022,\u0022data = NycTlcYellow()\\n\u0022,\u0022df = data.to_spark_dataframe()\\n\u0022,\u0022# Display 10 rows\\n\u0022,\u0022display(df.limit(10))\u0022],\u0022attachments\u0022:null,\u0022outputs\u0022:[],\u0022execution_count\u0022:null}],\u0022folder\u0022:null}},{\u0022id\u0022:\u0022/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/Notebook1621408096\u0022,\u0022name\u0022:\u0022Notebook1621408096\u0022,\u0022type\u0022:\u0022Microsoft.Synapse/workspaces/notebooks\u0022,\u0022etag\u0022:\u00221a007fca-0000-0100-0000-5fd703dc0000\u0022,\u0022properties\u0022:{\u0022nbformat\u0022:4,\u0022nbformat_minor\u0022:2,\u0022entityState\u0022:null,\u0022renameOperationDetails\u0022:null,\u0022bigDataPool\u0022:null,\u0022sessionProperties\u0022:null,\u0022metadata\u0022:{\u0022language_info\u0022:null,\u0022a365ComputeOptions\u0022:null,\u0022sessionKeepAliveTimeout\u0022:0},\u0022cells\u0022:[{\u0022cell_type\u0022:\u0022code\u0022,\u0022metadata\u0022:{},\u0022source\u0022:[\u0022from azureml.opendatasets import NycTlcYellow\\n\u0022,\u0022\\n\u0022,\u0022data = NycTlcYellow()\\n\u0022,\u0022df = data.to_spark_dataframe()\\n\u0022,\u0022# Display 10 rows\\n\u0022,\u0022display(df.limit(10))\u0022],\u0022attachments\u0022:null,\u0022outputs\u0022:[],\u0022execution_count\u0022:null}],\u0022folder\u0022:null}},{\u0022id\u0022:\u0022/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/Notebook391889253\u0022,\u0022name\u0022:\u0022Notebook391889253\u0022,\u0022type\u0022:\u0022Microsoft.Synapse/workspaces/notebooks\u0022,\u0022etag\u0022:\u00221a0081ca-0000-0100-0000-5fd703e90000\u0022,\u0022properties\u0022:{\u0022nbformat\u0022:4,\u0022nbformat_minor\u0022:2,\u0022entityState\u0022:null,\u0022renameOperationDetails\u0022:null,\u0022bigDataPool\u0022:null,\u0022sessionProperties\u0022:null,\u0022metadata\u0022:{\u0022language_info\u0022:null,\u0022a365ComputeOptions\u0022:null,\u0022sessionKeepAliveTimeout\u0022:0},\u0022cells\u0022:[{\u0022cell_type\u0022:\u0022code\u0022,\u0022metadata\u0022:{},\u0022source\u0022:[\u0022from azureml.opendatasets import NycTlcYellow\\n\u0022,\u0022\\n\u0022,\u0022data = NycTlcYellow()\\n\u0022,\u0022df = data.to_spark_dataframe()\\n\u0022,\u0022# Display 10 rows\\n\u0022,\u0022display(df.limit(10))\u0022],\u0022attachments\u0022:null,\u0022outputs\u0022:[],\u0022execution_count\u0022:null}],\u0022folder\u0022:null}},{\u0022id\u0022:\u0022/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/dongwwanb\u0022,\u0022name\u0022:\u0022dongwwanb\u0022,\u0022type\u0022:\u0022Microsoft.Synapse/workspaces/notebooks\u0022,\u0022etag\u0022:\u00220e003468-0000-0100-0000-611a2ee30000\u0022,\u0022properties\u0022:{\u0022nbformat\u0022:4,\u0022nbformat_minor\u0022:0,\u0022entityState\u0022:null,\u0022renameOperationDetails\u0022:null,\u0022bigDataPool\u0022:null,\u0022sessionProperties\u0022:{\u0022driverMemory\u0022:\u002228g\u0022,\u0022driverCores\u0022:4,\u0022executorMemory\u0022:\u002228g\u0022,\u0022executorCores\u0022:4,\u0022numExecutors\u0022:2,\u0022conf\u0022:{\u0022spark.dynamicAllocation.enabled\u0022:\u0022false\u0022,\u0022spark.dynamicAllocation.minExecutors\u0022:\u00222\u0022,\u0022spark.dynamicAllocation.maxExecutors\u0022:\u00222\u0022}},\u0022metadata\u0022:{\u0022language_info\u0022:{\u0022name\u0022:\u0022python\u0022},\u0022a365ComputeOptions\u0022:null,\u0022sessionKeepAliveTimeout\u0022:30,\u0022saveOutput\u0022:true,\u0022synapse_widget\u0022:{\u0022version\u0022:\u00220.1\u0022,\u0022state\u0022:{}},\u0022kernelspec\u0022:{\u0022name\u0022:\u0022synapse_pyspark\u0022,\u0022display_name\u0022:\u0022python\u0022}},\u0022cells\u0022:[{\u0022cell_type\u0022:\u0022markdown\u0022,\u0022metadata\u0022:{\u0022application/vnd.databricks.v1\u002Bcell\u0022:{\u0022title\u0022:\u0022\u0022,\u0022showTitle\u0022:false,\u0022inputWidgets\u0022:{},\u0022nuid\u0022:\u0022ec9689e6-a215-42cf-aa9f-85a38cca6362\u0022}},\u0022source\u0022:[\u0022Copyright (c) Microsoft Corporation. All rights reserved.\u0022],\u0022attachments\u0022:null,\u0022outputs\u0022:[],\u0022execution_count\u0022:null},{\u0022cell_type\u0022:\u0022code\u0022,\u0022metadata\u0022:{\u0022application/vnd.databricks.v1\u002Bcell\u0022:{\u0022title\u0022:\u0022\u0022,\u0022showTitle\u0022:false,\u0022inputWidgets\u0022:{},\u0022nuid\u0022:\u00224eb23c41-ffd4-412f-a887-102462d4d316\u0022}},\u0022source\u0022:[\u0022# Disable the verbose log\\n\u0022,\u0022import logging\\n\u0022,\u0022logging.getLogger(\\\u0022py4j\\\u0022).setLevel(logging.ERROR) \u0022],\u0022attachments\u0022:null,\u0022outputs\u0022:[{\u0022output_type\u0022:\u0022display_data\u0022,\u0022data\u0022:{\u0022text/html\u0022:\u0022\u003Cstyle scoped\u003E\\n .ansiout {\\n display: block;\\n unicode-bidi: embed;\\n white-space: pre-wrap;\\n word-wrap: break-word;\\n word-break: break-all;\\n font-family: \\\u0022Source Code Pro\\\u0022, \\\u0022Menlo\\\u0022, monospace;;\\n font-size: 13px;\\n color: #555;\\n margin-left: 4px;\\n line-height: 19px;\\n }\\n\u003C/style\u003E\\n\u003Cdiv class=\\\u0022ansiout\\\u0022\u003E\u003C/div\u003E\u0022},\u0022metadata\u0022:{\u0022application/vnd.databricks.v1\u002Boutput\u0022:{\u0022datasetInfos\u0022:[],\u0022data\u0022:\u0022\u003Cdiv class=\\\u0022ansiout\\\u0022\u003E\u003C/div\u003E\u0022,\u0022removedWidgets\u0022:[],\u0022addedWidgets\u0022:{},\u0022type\u0022:\u0022html\u0022,\u0022arguments\u0022:{}}}}],\u0022execution_count\u0022:0},{\u0022cell_type\u0022:\u0022code\u0022,\u0022metadata\u0022:{\u0022application/vnd.databricks.v1\u002Bcell\u0022:{\u0022title\u0022:\u0022\u0022,\u0022showTitle\u0022:false,\u0022inputWidgets\u0022:{},\u0022nuid\u0022:\u0022b5c38c38-a7f7-43f5-a15c-e387079ac8d7\u0022}},\u0022source\u0022:[\u0022\\n\u0022,\u0022!pip install \\\u0022https://retaildatastore.blob.core.windows.net/artifacts/cdmsdk/commondatamodel-objectmodel-1.0.10-py3-none-any.whl?sp=r\u0026st=2021-02-11T11:46:58Z\u0026se=2022-02-11T19:46:58Z\u0026spr=https\u0026sv=2020-02-10\u0026sr=b\u0026sig=XXXXXXXXXXXXXXXXXXXXXXXX\\\u0022\\n\u0022,\u0022\u0022],\u0022attachments\u0022:null,\u0022outputs\u0022:[{\u0022output_type\u0022:\u0022display_data\u0022,\u0022data\u0022:{\u0022text/html\u0022:\u0022\u003Cstyle scoped\u003E\\n .ansiout {\\n display: block;\\n unicode-bidi: embed;\\n white-space: pre-wrap;\\n word-wrap: break-word;\\n word-break: break-all;\\n font-family: \\\u0022Source Code Pro\\\u0022, \\\u0022Menlo\\\u0022, monospace;;\\n font-size: 13px;\\n color: #555;\\n margin-left: 4px;\\n line-height: 19px;\\n }\\n\u003C/style\u003E\\n\u003Cdiv class=\\\u0022ansiout\\\u0022\u003E\u003C/div\u003E\u0022},\u0022metadata\u0022:{\u0022application/vnd.databricks.v1\u002Boutput\u0022:{\u0022datasetInfos\u0022:[],\u0022data\u0022:\u0022\u003Cdiv class=\\\u0022ansiout\\\u0022\u003E\u003C/div\u003E\u0022,\u0022removedWidgets\u0022:[],\u0022addedWidgets\u0022:{},\u0022type\u0022:\u0022html\u0022,\u0022arguments\u0022:{}}}}],\u0022execution_count\u0022:0},{\u0022cell_type\u0022:\u0022code\u0022,\u0022metadata\u0022:{\u0022application/vnd.databricks.v1\u002Bcell\u0022:{\u0022title\u0022:\u0022\u0022,\u0022showTitle\u0022:false,\u0022inputWidgets\u0022:{},\u0022nuid\u0022:\u0022b255d876-363a-446e-a0fa-e51f866efa77\u0022}},\u0022source\u0022:[\u0022\\n\u0022,\u0022\\n\u0022,\u0022# Generic imports\\n\u0022,\u0022import dotenv\\n\u0022,\u0022import json\\n\u0022,\u0022import numpy as np\\n\u0022,\u0022import os\\n\u0022,\u0022import fnmatch\\n\u0022,\u0022import shutil\\n\u0022,\u0022import random\\n\u0022,\u0022import string\\n\u0022,\u0022import pandas as pd\\n\u0022,\u0022import requests\\n\u0022,\u0022import asyncio\\n\u0022,\u0022import copy\\n\u0022,\u0022import functools\\n\u0022,\u0022import pathlib\\n\u0022,\u0022import string\\n\u0022,\u0022from datetime import datetime, timezone\\n\u0022,\u0022\\n\u0022,\u0022# Spark imports\\n\u0022,\u0022from pyspark.sql import SparkSession, SQLContext\\n\u0022,\u0022from pyspark.sql.types import *\\n\u0022,\u0022from pyspark.sql import functions as F\\n\u0022,\u0022\\n\u0022,\u0022# Recommenders imports\\n\u0022,\u0022# from azureiai.reco_utils.dataset.spark_splitters import spark_random_split\\n\u0022,\u0022# from azureiai.reco_utils.evaluation.spark_evaluation import (\\n\u0022,\u0022# SparkRankingEvaluation,\\n\u0022,\u0022# SparkRatingEvaluation,\\n\u0022,\u0022# )\\n\u0022,\u0022from pysarplus import SARPlus\\n\u0022,\u0022from azureiai.retail.cdm2ai.reader import CONFIG\\n\u0022,\u0022\\n\u0022,\u0022# AzureML imports\\n\u0022,\u0022import azureml.core\\n\u0022,\u0022from azureml.core.runconfig import JarLibrary\\n\u0022,\u0022from azureml.core.compute import ComputeTarget, DatabricksCompute\\n\u0022,\u0022from azureml.pipeline.steps import DatabricksStep\\n\u0022,\u0022from azureml.core.datastore import Datastore\\n\u0022,\u0022from azureml.data.data_reference import DataReference\\n\u0022,\u0022from azureml.core import Workspace\\n\u0022,\u0022from azureml.core.run import Run\\n\u0022,\u0022from azureml.core.experiment import Experiment\\n\u0022,\u0022from azureml.core import Environment\\n\u0022,\u0022from azureml.core.environment import CondaDependencies\\n\u0022,\u0022from azureml.core.environment import SparkPackage\\n\u0022,\u0022from azureml.core.model import Model\\n\u0022,\u0022from azureml.core.webservice import Webservice\\n\u0022,\u0022\\n\u0022,\u0022# Cosmos DB imports\\n\u0022,\u0022# Install Cosmos DB connector from: https://docs.databricks.com/data/data-sources/azure/cosmosdb-connector.html\\n\u0022,\u0022from azure.common.client_factory import get_client_from_json_dict\\n\u0022,\u0022\\n\u0022,\u0022# CDM imports\\n\u0022,\u0022from cdm.storage import ADLSAdapter\\n\u0022,\u0022from cdm.objectmodel import CdmCorpusDefinition, CdmManifestDefinition\\n\u0022,\u0022from cdm.persistence.cdmfolder import ManifestPersistence\\n\u0022,\u0022from cdm.persistence.cdmfolder.types import ManifestContent\\n\u0022,\u0022from cdm.storage import LocalAdapter, ADLSAdapter\\n\u0022,\u0022from cdm.utilities import time_utils\\n\u0022,\u0022\\n\u0022,\u0022from cdm.utilities.string_utils import kvprint\\n\u0022,\u0022\\n\u0022,\u0022# AKS imports\\n\u0022,\u0022from azureml.core.compute import AksCompute\\n\u0022,\u0022from azureml.core.compute_target import ComputeTargetException\\n\u0022,\u0022from azureml.core.webservice import AksWebservice\\n\u0022,\u0022from azureml.exceptions import WebserviceException\\n\u0022,\u0022from azureml.core.model import InferenceConfig\\n\u0022,\u0022\\n\u0022,\u0022\u0022],\u0022attachments\u0022:null,\u0022outputs\u0022:[{\u0022output_type\u0022:\u0022display_data\u0022,\u0022data\u0022:{\u0022text/html\u0022:\u0022\u003Cstyle scoped\u003E\\n .ansiout {\\n display: block;\\n unicode-bidi: embed;\\n white-space: pre-wrap;\\n word-wrap: break-word;\\n word-break: break-all;\\n font-family: \\\u0022Source Code Pro\\\u0022, \\\u0022Menlo\\\u0022, monospace;;\\n font-size: 13px;\\n color: #555;\\n margin-left: 4px;\\n line-height: 19px;\\n }\\n\u003C/style\u003E\\n\u003Cdiv class=\\\u0022ansiout\\\u0022\u003E\u003C/div\u003E\u0022},\u0022metadata\u0022:{\u0022application/vnd.databricks.v1\u002Boutput\u0022:{\u0022datasetInfos\u0022:[],\u0022data\u0022:\u0022\u003Cdiv class=\\\u0022ansiout\\\u0022\u003E\u003C/div\u003E\u0022,\u0022removedWidgets\u0022:[],\u0022addedWidgets\u0022:{},\u0022type\u0022:\u0022html\u0022,\u0022arguments\u0022:{}}}}],\u0022execution_count\u0022:0},{\u0022cell_type\u0022:\u0022code\u0022,\u0022metadata\u0022:{\u0022application/vnd.databricks.v1\u002Bcell\u0022:{\u0022title\u0022:\u0022\u0022,\u0022showTitle\u0022:false,\u0022inputWidgets\u0022:{},\u0022nuid\u0022:\u0022bb6041f1-a825-41ae-ba4d-de6dff6e361a\u0022}},\u0022source\u0022:[\u0022# Global variables\\n\u0022,\u0022# NOTE these variables are visible in the scope of the entire pipeline\\n\u0022,\u0022\\n\u0022,\u0022# Load the .env file to manage persistent variables\\n\u0022,\u0022_GLOBAL_DOTENV_PATH = pathlib.Path(dotenv.find_dotenv(\\n\u0022,\u0022 filename=\\\u0022/dbfs/FileStore/.env\\\u0022,\\n\u0022,\u0022 raise_error_if_not_found=True\\n\u0022,\u0022))\\n\u0022,\u0022\\n\u0022,\u0022# -------------------------------------------------------------------------\\n\u0022,\u0022# Azure general variables\\n\u0022,\u0022# -------------------------------------------------------------------------\\n\u0022,\u0022_GLOBAL_SUBSCRIPTION_ID = dotenv.get_key(_GLOBAL_DOTENV_PATH, \\\u0022subscription_id\\\u0022)\\n\u0022,\u0022_GLOBAL_RESOURCE_GROUP = dotenv.get_key(_GLOBAL_DOTENV_PATH, \\\u0022resource_group\\\u0022)\\n\u0022,\u0022_GLOBAL_CONFIG_DICT = {\\n\u0022,\u0022 \\\u0022clientIdKey\\\u0022: \\\u0022sp_client_id\\\u0022,\\n\u0022,\u0022 \\\u0022clientSecretKey\\\u0022: \\\u0022sp_password\\\u0022,\\n\u0022,\u0022 \\\u0022clientId\\\u0022: dbutils.secrets.get(scope=\\\u0022secrets\\\u0022, key=\\\u0022sp_client_id\\\u0022),\\n\u0022,\u0022 \\\u0022clientSecret\\\u0022: dbutils.secrets.get(scope=\\\u0022secrets\\\u0022, key=\\\u0022sp_password\\\u0022),\\n\u0022,\u0022 \\\u0022subscriptionId\\\u0022: _GLOBAL_SUBSCRIPTION_ID,\\n\u0022,\u0022 \\\u0022tenantId\\\u0022: dotenv.get_key(_GLOBAL_DOTENV_PATH, \\\u0022tenant_id\\\u0022),\\n\u0022,\u0022 \\\u0022activeDirectoryEndpointUrl\\\u0022: \\\u0022https://login.microsoftonline.com\\\u0022,\\n\u0022,\u0022 \\\u0022resourceManagerEndpointUrl\\\u0022: \\\u0022https://management.azure.com/\\\u0022,\\n\u0022,\u0022 \\\u0022activeDirectoryGraphResourceId\\\u0022: \\\u0022https://graph.windows.net/\\\u0022,\\n\u0022,\u0022 \\\u0022sqlManagementEndpointUrl\\\u0022: \\\u0022https://management.core.windows.net:8443/\\\u0022,\\n\u0022,\u0022 \\\u0022galleryEndpointUrl\\\u0022: \\\u0022https://gallery.azure.com/\\\u0022,\\n\u0022,\u0022 \\\u0022managementEndpointUrl\\\u0022: \\\u0022https://management.core.windows.net/\\\u0022\\n\u0022,\u0022}\\n\u0022,\u0022\\n\u0022,\u0022# -------------------------------------------------------------------------\\n\u0022,\u0022# ADLS variables\\n\u0022,\u0022# -------------------------------------------------------------------------\\n\u0022,\u0022_GLOBAL_ADLS_ACCOUNT = dotenv.get_key(_GLOBAL_DOTENV_PATH, \\\u0022data_account\\\u0022)\\n\u0022,\u0022_GLOBAL_ADLS_CONTAINER = dotenv.get_key(_GLOBAL_DOTENV_PATH, \\\u0022data_container\\\u0022)\\n\u0022,\u0022_GLOBAL_ADLS_APPID = _GLOBAL_CONFIG_DICT[\\\u0022clientId\\\u0022]\\n\u0022,\u0022_GLOBAL_ADLS_DIRID = _GLOBAL_CONFIG_DICT[\\\u0022tenantId\\\u0022]\\n\u0022,\u0022_GLOBAL_ADLS_SECRET = _GLOBAL_CONFIG_DICT[\\\u0022clientSecret\\\u0022]\\n\u0022,\u0022_GLOBAL_ADLS_HOSTNAME = f\u0027{_GLOBAL_ADLS_ACCOUNT}.dfs.core.windows.net\u0027\\n\u0022,\u0022_GLOBAL_ADLS_DICT = {\\n\u0022,\u0022 \\\u0022adls_source\\\u0022: \\\u0022abfss://{0}@{1}.dfs.core.windows.net\\\u0022.format(_GLOBAL_ADLS_CONTAINER, _GLOBAL_ADLS_ACCOUNT),\\n\u0022,\u0022 \\\u0022oauth_endpoint\\\u0022: \\\u0022https://login.microsoftonline.com/{0}/oauth2/token\\\u0022.format(_GLOBAL_CONFIG_DICT[\\\u0022tenantId\\\u0022]),\\n\u0022,\u0022 \\\u0022adls_dfs_endpoint\\\u0022: \\\u0022{0}.dfs.core.windows.net\\\u0022.format(_GLOBAL_ADLS_ACCOUNT),\\n\u0022,\u0022 \\\u0022adls_container_mount_point\\\u0022: \\\u0022/mnt/{0}\\\u0022.format(_GLOBAL_ADLS_CONTAINER),\\n\u0022,\u0022 \\\u0022adls_resource_type\\\u0022: \\\u0022https://storage.azure.com\\\u0022,\\n\u0022,\u0022 \\\u0022adls_mount_root\\\u0022: \\\u0022/mnt\\\u0022,\\n\u0022,\u0022 \\\u0022adls_model_cache\\\u0022: \\\u0022dbfs:/mnt/{0}/cache\\\u0022.format(_GLOBAL_ADLS_CONTAINER)\\n\u0022,\u0022}\\n\u0022,\u0022\\n\u0022,\u0022# -------------------------------------------------------------------------\\n\u0022,\u0022# COSMOS DB variables\\n\u0022,\u0022# -------------------------------------------------------------------------\\n\u0022,\u0022_GLOBAL_DB_SECRETS = {\\n\u0022,\u0022 \\\u0022Endpoint\\\u0022: \\\u0022https://{0}.documents.azure.com:443/\\\u0022.format(dotenv.get_key(_GLOBAL_DOTENV_PATH, \\\u0022azure_cosmosdb_account_name\\\u0022)),\\n\u0022,\u0022 \\\u0022Masterkey\\\u0022: dbutils.secrets.get(scope=\\\u0022secrets\\\u0022, key=\\\u0022cosmosdb_primary_master_key\\\u0022),\\n\u0022,\u0022 \\\u0022Database\\\u0022: dotenv.get_key(_GLOBAL_DOTENV_PATH, \\\u0022azure_cosmosdb_database\\\u0022),\\n\u0022,\u0022 \\\u0022Collection\\\u0022: dotenv.get_key(_GLOBAL_DOTENV_PATH, \\\u0022azure_cosmosdb_container\\\u0022),\\n\u0022,\u0022 \\\u0022Upsert\\\u0022: True\\n\u0022,\u0022}\\n\u0022,\u0022\\n\u0022,\u0022# -------------------------------------------------------------------------\\n\u0022,\u0022# Data variables\\n\u0022,\u0022# -------------------------------------------------------------------------\\n\u0022,\u0022_GLOBAL_DATA_ROOT = dotenv.get_key(_GLOBAL_DOTENV_PATH, \\\u0022physical_data_model_directory\\\u0022)\\n\u0022,\u0022_GLOBAL_TPC_RAW_ROOT = \u0027tpcds-raw-data\u0027\\n\u0022,\u0022_GLOBAL_IDM_SCHEMA_ROOT = dotenv.get_key(_GLOBAL_DOTENV_PATH, \\\u0022logical_data_model_directory\\\u0022)\\n\u0022,\u0022_GLOBAL_DATA_NAME = dotenv.get_key(_GLOBAL_DOTENV_PATH, \\\u0022data_name\\\u0022)\\n\u0022,\u0022_GLOBAL_ADAPTER_PARTIAL = functools.partial(\\n\u0022,\u0022 ADLSAdapter,\\n\u0022,\u0022 hostname=_GLOBAL_ADLS_HOSTNAME,\\n\u0022,\u0022 tenant=_GLOBAL_ADLS_DIRID,\\n\u0022,\u0022 client_id=_GLOBAL_ADLS_APPID,\\n\u0022,\u0022 secret=_GLOBAL_ADLS_SECRET\\n\u0022,\u0022)\\n\u0022,\u0022_GLOBAL_CONFIG_JSON = copy.deepcopy(CONFIG)\\n\u0022,\u0022_GLOBAL_CONFIG_JSON[\\\u0022adls\\\u0022][\\\u0022account\\\u0022] = _GLOBAL_ADLS_ACCOUNT\\n\u0022,\u0022_GLOBAL_CONFIG_JSON[\\\u0022adls\\\u0022][\\\u0022container\\\u0022] = _GLOBAL_ADLS_CONTAINER\\n\u0022,\u0022_GLOBAL_CONFIG_JSON[\\\u0022adls\\\u0022][\\\u0022appid\\\u0022] = _GLOBAL_ADLS_APPID\\n\u0022,\u0022_GLOBAL_CONFIG_JSON[\\\u0022adls\\\u0022][\\\u0022dirid\\\u0022] = _GLOBAL_ADLS_DIRID\\n\u0022,\u0022_GLOBAL_CONFIG_JSON[\\\u0022adls\\\u0022][\\\u0022secret\\\u0022] = _GLOBAL_ADLS_SECRET\\n\u0022,\u0022_GLOBAL_CONFIG_JSON[\\\u0022adls\\\u0022][\\\u0022hostname\\\u0022] = _GLOBAL_ADLS_HOSTNAME\\n\u0022,\u0022_GLOBAL_CONFIG_JSON[\\\u0022cdm\\\u0022][\\\u0022data_root\\\u0022] = _GLOBAL_DATA_ROOT\\n\u0022,\u0022_GLOBAL_CONFIG_JSON[\\\u0022cdm\\\u0022][\\\u0022manifest_name\\\u0022] = \\\u0022{0}.manifest.cdm.json\\\u0022.format(dotenv.get_key(_GLOBAL_DOTENV_PATH, \\\u0022industry_data_model_name\\\u0022))\\n\u0022,\u0022_GLOBAL_INPUT_DATA_FILE = dotenv.get_key(_GLOBAL_DOTENV_PATH, \\\u0022processed_data_file\\\u0022)\\n\u0022,\u0022_GLOBAL_CUSTOMER_DATA_FILE = dotenv.get_key(_GLOBAL_DOTENV_PATH, \\\u0022processed_customer_data_file\\\u0022)\\n\u0022,\u0022\\n\u0022,\u0022# -------------------------------------------------------------------------\\n\u0022,\u0022# Model variables\\n\u0022,\u0022# -------------------------------------------------------------------------\\n\u0022,\u0022_GLOBAL_MODEL_LOCAL_CACHE = \u0027dbfs:/model/{0}\u0027.format(\\n\u0022,\u0022 \u0027\u0027.join(random.choice(string.ascii_lowercase) for i in range(10))\\n\u0022,\u0022)\\n\u0022,\u0022\\n\u0022,\u0022# -------------------------------------------------------------------------\\n\u0022,\u0022# Azure Machine Learning service variables\\n\u0022,\u0022# -------------------------------------------------------------------------\\n\u0022,\u0022_GLOBAL_AML_DICT = {\\n\u0022,\u0022 \\\u0022workspace_name\\\u0022: dotenv.get_key(_GLOBAL_DOTENV_PATH, \\\u0022azureml_workspace\\\u0022),\\n\u0022,\u0022 \\\u0022model_file_name\\\u0022: dotenv.get_key(_GLOBAL_DOTENV_PATH, \\\u0022azureml_model_file_name\\\u0022),\\n\u0022,\u0022 \\\u0022aml_experiment_name\\\u0022: dotenv.get_key(_GLOBAL_DOTENV_PATH, \\\u0022azureml_experiment_name\\\u0022)\\n\u0022,\u0022}\\n\u0022,\u0022\\n\u0022,\u0022# -------------------------------------------------------------------------\\n\u0022,\u0022# Azure Kubernetes Service variables\\n\u0022,\u0022# -------------------------------------------------------------------------\\n\u0022,\u0022_GLOBAL_AKS_NAME = dotenv.get_key(_GLOBAL_DOTENV_PATH, \\\u0022aks_cluster_name\\\u0022)\\n\u0022,\u0022_GLOBAL_SERVICE_NAME = \\\u0022aks-service-{0}\\\u0022.format(dotenv.get_key(_GLOBAL_DOTENV_PATH, \\\u0022unique_key\\\u0022))\\n\u0022,\u0022_GLOBAL_AKS_CONFIG_LEVEL = dotenv.get_key(_GLOBAL_DOTENV_PATH, \\\u0022aks_config_level\\\u0022)\\n\u0022,\u0022_GLOBAL_AKS_COMPUTE_TARGET_NAME = \u0027aks\u0027 \u002B dotenv.get_key(_GLOBAL_DOTENV_PATH, \\\u0022unique_key\\\u0022)\u0022],\u0022attachments\u0022:null,\u0022outputs\u0022:[{\u0022output_type\u0022:\u0022display_data\u0022,\u0022data\u0022:{\u0022text/html\u0022:\u0022\u003Cstyle scoped\u003E\\n .ansiout {\\n display: block;\\n unicode-bidi: embed;\\n white-space: pre-wrap;\\n word-wrap: break-word;\\n word-break: break-all;\\n font-family: \\\u0022Source Code Pro\\\u0022, \\\u0022Menlo\\\u0022, monospace;;\\n font-size: 13px;\\n color: #555;\\n margin-left: 4px;\\n line-height: 19px;\\n }\\n\u003C/style\u003E\\n\u003Cdiv class=\\\u0022ansiout\\\u0022\u003E\u003C/div\u003E\u0022},\u0022metadata\u0022:{\u0022application/vnd.databricks.v1\u002Boutput\u0022:{\u0022datasetInfos\u0022:[],\u0022data\u0022:\u0022\u003Cdiv class=\\\u0022ansiout\\\u0022\u003E\u003C/div\u003E\u0022,\u0022removedWidgets\u0022:[],\u0022addedWidgets\u0022:{},\u0022type\u0022:\u0022html\u0022,\u0022arguments\u0022:{}}}},{\u0022output_type\u0022:\u0022display_data\u0022,\u0022data\u0022:{\u0022text/html\u0022:\u0022\u003Cstyle scoped\u003E\\n .ansiout {\\n display: block;\\n unicode-bidi: embed;\\n white-space: pre-wrap;\\n word-wrap: break-word;\\n word-break: break-all;\\n font-family: \\\u0022Source Code Pro\\\u0022, \\\u0022Menlo\\\u0022, monospace;;\\n font-size: 13px;\\n color: #555;\\n margin-left: 4px;\\n line-height: 19px;\\n }\\n\u003C/style\u003E\\n\u003Cdiv class=\\\u0022ansiout\\\u0022\u003E\u003Cspan class=\\\u0022ansi-red-fg\\\u0022\u003E---------------------------------------------------------------------------\u003C/span\u003E\\n\u003Cspan class=\\\u0022ansi-red-fg\\\u0022\u003ENameError\u003C/span\u003E Traceback (most recent call last)\\n\u003Cspan class=\\\u0022ansi-green-fg\\\u0022\u003E\u0026lt;command-1159393715563018\u0026gt;\u003C/span\u003E in \u003Cspan class=\\\u0022ansi-cyan-fg\\\u0022\u003E\u0026lt;module\u0026gt;\u003C/span\u003E\\n\u003Cspan class=\\\u0022ansi-green-intense-fg ansi-bold\\\u0022\u003E 66\u003C/span\u003E _GLOBAL_DATA_NAME \u003Cspan class=\\\u0022ansi-blue-fg\\\u0022\u003E=\u003C/span\u003E dotenv\u003Cspan class=\\\u0022ansi-blue-fg\\\u0022\u003E.\u003C/span\u003Eget_key\u003Cspan class=\\\u0022ansi-blue-fg\\\u0022\u003E(\u003C/span\u003E_GLOBAL_DOTENV_PATH\u003Cspan class=\\\u0022ansi-blue-fg\\\u0022\u003E,\u003C/span\u003E \u003Cspan class=\\\u0022ansi-blue-fg\\\u0022\u003E\u0026#34;data_name\u0026#34;\u003C/span\u003E\u003Cspan class=\\\u0022ansi-blue-fg\\\u0022\u003E)\u003C/span\u003E\\n\u003Cspan class=\\\u0022ansi-green-intense-fg ansi-bold\\\u0022\u003E 67\u003C/span\u003E _GLOBAL_ADAPTER_PARTIAL = functools.partial(\\n\u003Cspan class=\\\u0022ansi-green-fg\\\u0022\u003E---\u0026gt; 68\u003C/span\u003E\u003Cspan class=\\\u0022ansi-red-fg\\\u0022\u003E \u003C/span\u003EADLSAdapter\u003Cspan class=\\\u0022ansi-blue-fg\\\u0022\u003E,\u003C/span\u003E\\n\u003Cspan class=\\\u0022ansi-green-intense-fg ansi-bold\\\u0022\u003E 69\u003C/span\u003E hostname\u003Cspan class=\\\u0022ansi-blue-fg\\\u0022\u003E=\u003C/span\u003E_GLOBAL_ADLS_HOSTNAME\u003Cspan class=\\\u0022ansi-blue-fg\\\u0022\u003E,\u003C/span\u003E\\n\u003Cspan class=\\\u0022ansi-green-intense-fg ansi-bold\\\u0022\u003E 70\u003C/span\u003E tenant\u003Cspan class=\\\u0022ansi-blue-fg\\\u0022\u003E=\u003C/span\u003E_GLOBAL_ADLS_DIRID\u003Cspan class=\\\u0022ansi-blue-fg\\\u0022\u003E,\u003C/span\u003E\\n\\n\u003Cspan class=\\\u0022ansi-red-fg\\\u0022\u003ENameError\u003C/span\u003E: name \u0026#39;ADLSAdapter\u0026#39; is not defined\u003C/div\u003E\u0022},\u0022metadata\u0022:{\u0022application/vnd.databricks.v1\u002Boutput\u0022:{\u0022type\u0022:\u0022ipynbError\u0022,\u0022data\u0022:\u0022\u003Cdiv class=\\\u0022ansiout\\\u0022\u003E\u003Cspan class=\\\u0022ansi-red-fg\\\u0022\u003E---------------------------------------------------------------------------\u003C/span\u003E\\n\u003Cspan class=\\\u0022ansi-red-fg\\\u0022\u003ENameError\u003C/span\u003E Traceback (most recent call last)\\n\u003Cspan class=\\\u0022ansi-green-fg\\\u0022\u003E\u0026lt;command-1159393715563018\u0026gt;\u003C/span\u003E in \u003Cspan class=\\\u0022ansi-cyan-fg\\\u0022\u003E\u0026lt;module\u0026gt;\u003C/span\u003E\\n\u003Cspan class=\\\u0022ansi-green-intense-fg ansi-bold\\\u0022\u003E 66\u003C/span\u003E _GLOBAL_DATA_NAME \u003Cspan class=\\\u0022ansi-blue-fg\\\u0022\u003E=\u003C/span\u003E dotenv\u003Cspan class=\\\u0022ansi-blue-fg\\\u0022\u003E.\u003C/span\u003Eget_key\u003Cspan class=\\\u0022ansi-blue-fg\\\u0022\u003E(\u003C/span\u003E_GLOBAL_DOTENV_PATH\u003Cspan class=\\\u0022ansi-blue-fg\\\u0022\u003E,\u003C/span\u003E \u003Cspan class=\\\u0022ansi-blue-fg\\\u0022\u003E\u0026#34;data_name\u0026#34;\u003C/span\u003E\u003Cspan class=\\\u0022ansi-blue-fg\\\u0022\u003E)\u003C/span\u003E\\n\u003Cspan class=\\\u0022ansi-green-intense-fg ansi-bold\\\u0022\u003E 67\u003C/span\u003E _GLOBAL_ADAPTER_PARTIAL = functools.partial(\\n\u003Cspan class=\\\u0022ansi-green-fg\\\u0022\u003E---\u0026gt; 68\u003C/span\u003E\u003Cspan class=\\\u0022ansi-red-fg\\\u0022\u003E \u003C/span\u003EADLSAdapter\u003Cspan class=\\\u0022ansi-blue-fg\\\u0022\u003E,\u003C/span\u003E\\n\u003Cspan class=\\\u0022ansi-green-intense-fg ansi-bold\\\u0022\u003E 69\u003C/span\u003E hostname\u003Cspan class=\\\u0022ansi-blue-fg\\\u0022\u003E=\u003C/span\u003E_GLOBAL_ADLS_HOSTNAME\u003Cspan class=\\\u0022ansi-blue-fg\\\u0022\u003E,\u003C/span\u003E\\n\u003Cspan class=\\\u0022ansi-green-intense-fg ansi-bold\\\u0022\u003E 70\u003C/span\u003E tenant\u003Cspan class=\\\u0022ansi-blue-fg\\\u0022\u003E=\u003C/span\u003E_GLOBAL_ADLS_DIRID\u003Cspan class=\\\u0022ansi-blue-fg\\\u0022\u003E,\u003C/span\u003E\\n\\n\u003Cspan class=\\\u0022ansi-red-fg\\\u0022\u003ENameError\u003C/span\u003E: name \u0026#39;ADLSAdapter\u0026#39; is not defined\u003C/div\u003E\u0022,\u0022errorSummary\u0022:\u0022\u003Cspan class=\\\u0022ansi-red-fg\\\u0022\u003ENameError\u003C/span\u003E: name \u0026#39;ADLSAdapter\u0026#39; is not defined\u0022,\u0022arguments\u0022:{}}}}],\u0022execution_count\u0022:0},{\u0022cell_type\u0022:\u0022code\u0022,\u0022metadata\u0022:{\u0022application/vnd.databricks.v1\u002Bcell\u0022:{\u0022title\u0022:\u0022\u0022,\u0022showTitle\u0022:false,\u0022inputWidgets\u0022:{},\u0022nuid\u0022:\u0022639595d4-4083-4f33-a7d4-15af60e7b3d6\u0022}},\u0022source\u0022:[\u0022# Spark initialization\\n\u0022,\u0022SUBMIT_ARGS = \\\u0022--packages eisber:sarplus:0.2.6 pyspark-shell\\\u0022\\n\u0022,\u0022os.environ[\\\u0022PYSPARK_SUBMIT_ARGS\\\u0022] = SUBMIT_ARGS\\n\u0022,\u0022\\n\u0022,\u0022spark = (\\n\u0022,\u0022 SparkSession.builder.appName(\\\u0022sample\\\u0022)\\n\u0022,\u0022 .master(\\\u0022local[*]\\\u0022)\\n\u0022,\u0022 .config(\\\u0022memory\\\u0022, \\\u00221G\\\u0022)\\n\u0022,\u0022 .config(\\\u0022spark.sql.shuffle.partitions\\\u0022, \\\u00221\\\u0022)\\n\u0022,\u0022 .config(\\\u0022spark.sql.crossJoin.enabled\\\u0022, True)\\n\u0022,\u0022 .config(\\\u0022spark.ui.enabled\\\u0022, False)\\n\u0022,\u0022 .getOrCreate()\\n\u0022,\u0022)\\n\u0022,\u0022\\n\u0022,\u0022# SqlContext helps with doing SQL like queries on spark DFs.\\n\u0022,\u0022sqlContext = SQLContext(spark)\\n\u0022,\u0022\\n\u0022,\u0022# Configure the Spark session to avoid using mount\\n\u0022,\u0022spark.conf.set(\\\u0022fs.azure.account.auth.type.{0}.dfs.core.windows.net\\\u0022.format(_GLOBAL_ADLS_ACCOUNT), \\\u0022OAuth\\\u0022)\\n\u0022,\u0022spark.conf.set(\\n\u0022,\u0022 \\\u0022fs.azure.account.oauth.provider.type.{0}.dfs.core.windows.net\\\u0022.format(_GLOBAL_ADLS_ACCOUNT),\\n\u0022,\u0022 \\\u0022org.apache.hadoop.fs.azurebfs.oauth2.ClientCredsTokenProvider\\\u0022,\\n\u0022,\u0022)\\n\u0022,\u0022spark.conf.set(\\n\u0022,\u0022 \\\u0022fs.azure.account.oauth2.client.id.{0}.dfs.core.windows.net\\\u0022.format(_GLOBAL_ADLS_ACCOUNT), _GLOBAL_ADLS_APPID\\n\u0022,\u0022)\\n\u0022,\u0022spark.conf.set(\\n\u0022,\u0022 \\\u0022fs.azure.account.oauth2.client.secret.{0}.dfs.core.windows.net\\\u0022.format(_GLOBAL_ADLS_ACCOUNT), _GLOBAL_ADLS_SECRET\\n\u0022,\u0022)\\n\u0022,\u0022spark.conf.set(\\n\u0022,\u0022 \\\u0022fs.azure.account.oauth2.client.endpoint.{0}.dfs.core.windows.net\\\u0022.format(_GLOBAL_ADLS_ACCOUNT),\\n\u0022,\u0022 \\\u0022https://login.microsoftonline.com/{0}/oauth2/token\\\u0022.format(_GLOBAL_ADLS_DIRID),\\n\u0022,\u0022)\u0022],\u0022attachments\u0022:null,\u0022outputs\u0022:[],\u0022execution_count\u0022:0},{\u0022cell_type\u0022:\u0022code\u0022,\u0022metadata\u0022:{\u0022application/vnd.databricks.v1\u002Bcell\u0022:{\u0022title\u0022:\u0022\u0022,\u0022showTitle\u0022:false,\u0022inputWidgets\u0022:{},\u0022nuid\u0022:\u0022614662de-2288-451e-b238-b6190156aac4\u0022}},\u0022source\u0022:[\u0022# Mount the remove ADLS container on the local databricks\\n\u0022,\u0022\\n\u0022,\u0022# Unmount an existing mount point\\n\u0022,\u0022try:\\n\u0022,\u0022 dbutils.fs.unmount(_GLOBAL_ADLS_DICT[\\\u0022adls_container_mount_point\\\u0022])\\n\u0022,\u0022except Exception as ex:\\n\u0022,\u0022 if \\\u0022Directory not mounted\\\u0022 not in str(ex):\\n\u0022,\u0022 raise Exception(\\\u0022Error in unmounting\\\u0022)\\n\u0022,\u0022\\n\u0022,\u0022# Mount wit the provided configuration information\\n\u0022,\u0022configs = {\\n\u0022,\u0022 \\\u0022fs.azure.account.auth.type\\\u0022: \\\u0022OAuth\\\u0022,\\n\u0022,\u0022 \\\u0022fs.azure.account.oauth.provider.type\\\u0022: \\\u0022org.apache.hadoop.fs.azurebfs.oauth2.ClientCredsTokenProvider\\\u0022,\\n\u0022,\u0022 \\\u0022fs.azure.account.oauth2.client.id\\\u0022: _GLOBAL_CONFIG_DICT[\\\u0022clientId\\\u0022],\\n\u0022,\u0022 \\\u0022fs.azure.account.oauth2.client.secret\\\u0022: _GLOBAL_CONFIG_DICT[\\\u0022clientSecret\\\u0022],\\n\u0022,\u0022 \\\u0022fs.azure.account.oauth2.client.endpoint\\\u0022: _GLOBAL_ADLS_DICT[\\\u0022oauth_endpoint\\\u0022],\\n\u0022,\u0022}\\n\u0022,\u0022dbutils.fs.mount(\\n\u0022,\u0022 source=_GLOBAL_ADLS_DICT[\\\u0022adls_source\\\u0022],\\n\u0022,\u0022 mount_point=_GLOBAL_ADLS_DICT[\\\u0022adls_container_mount_point\\\u0022],\\n\u0022,\u0022 extra_configs=configs,\\n\u0022,\u0022)\\n\u0022,\u0022\\n\u0022,\u0022# List the contents in the mounted directory\\n\u0022,\u0022dbutils.fs.ls(_GLOBAL_ADLS_DICT[\\\u0022adls_container_mount_point\\\u0022])\\n\u0022,\u0022\\n\u0022,\u0022# Make a new directory for model cache use\\n\u0022,\u0022dbutils.fs.mkdirs(_GLOBAL_ADLS_DICT[\\\u0022adls_model_cache\\\u0022])\u0022],\u0022attachments\u0022:null,\u0022outputs\u0022:[],\u0022execution_count\u0022:0}],\u0022folder\u0022:null}},{\u0022id\u0022:\u0022/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/dongwwanb1\u0022,\u0022name\u0022:\u0022dongwwanb1\u0022,\u0022type\u0022:\u0022Microsoft.Synapse/workspaces/notebooks\u0022,\u0022etag\u0022:\u00220000f8ed-0000-0100-0000-605349810000\u0022,\u0022properties\u0022:{\u0022nbformat\u0022:4,\u0022nbformat_minor\u0022:0,\u0022entityState\u0022:null,\u0022renameOperationDetails\u0022:null,\u0022bigDataPool\u0022:null,\u0022sessionProperties\u0022:null,\u0022metadata\u0022:{\u0022language_info\u0022:null,\u0022a365ComputeOptions\u0022:null,\u0022sessionKeepAliveTimeout\u0022:0,\u0022application/vnd.databricks.v1\u002Bnotebook\u0022:{\u0022notebookName\u0022:\u0022config\u0022,\u0022dashboards\u0022:[],\u0022language\u0022:\u0022python\u0022,\u0022widgets\u0022:{},\u0022notebookOrigID\u0022:1159393715563015}},\u0022cells\u0022:[{\u0022cell_type\u0022:\u0022markdown\u0022,\u0022metadata\u0022:{\u0022application/vnd.databricks.v1\u002Bcell\u0022:{\u0022title\u0022:\u0022\u0022,\u0022showTitle\u0022:false,\u0022inputWidgets\u0022:{},\u0022nuid\u0022:\u0022ec9689e6-a215-42cf-aa9f-85a38cca6362\u0022}},\u0022source\u0022:[\u0022Copyright (c) Microsoft Corporation. All rights reserved.\u0022],\u0022attachments\u0022:null,\u0022outputs\u0022:[],\u0022execution_count\u0022:null},{\u0022cell_type\u0022:\u0022code\u0022,\u0022metadata\u0022:{\u0022application/vnd.databricks.v1\u002Bcell\u0022:{\u0022title\u0022:\u0022\u0022,\u0022showTitle\u0022:false,\u0022inputWidgets\u0022:{},\u0022nuid\u0022:\u00224eb23c41-ffd4-412f-a887-102462d4d316\u0022}},\u0022source\u0022:[\u0022# Disable the verbose log\\nimport logging\\nlogging.getLogger(\\\u0022py4j\\\u0022).setLevel(logging.ERROR)\u0022],\u0022attachments\u0022:null,\u0022outputs\u0022:[{\u0022output_type\u0022:\u0022display_data\u0022,\u0022data\u0022:{\u0022text/html\u0022:[\u0022\u003Cstyle scoped\u003E\\n .ansiout {\\n display: block;\\n unicode-bidi: embed;\\n white-space: pre-wrap;\\n word-wrap: break-word;\\n word-break: break-all;\\n font-family: \\\u0022Source Code Pro\\\u0022, \\\u0022Menlo\\\u0022, monospace;;\\n font-size: 13px;\\n color: #555;\\n margin-left: 4px;\\n line-height: 19px;\\n }\\n\u003C/style\u003E\\n\u003Cdiv class=\\\u0022ansiout\\\u0022\u003E\u003C/div\u003E\u0022]},\u0022metadata\u0022:{\u0022application/vnd.databricks.v1\u002Boutput\u0022:{\u0022datasetInfos\u0022:[],\u0022data\u0022:\u0022\u003Cdiv class=\\\u0022ansiout\\\u0022\u003E\u003C/div\u003E\u0022,\u0022removedWidgets\u0022:[],\u0022addedWidgets\u0022:{},\u0022type\u0022:\u0022html\u0022,\u0022arguments\u0022:{}}}}],\u0022execution_count\u0022:0},{\u0022cell_type\u0022:\u0022code\u0022,\u0022metadata\u0022:{\u0022application/vnd.databricks.v1\u002Bcell\u0022:{\u0022title\u0022:\u0022\u0022,\u0022showTitle\u0022:false,\u0022inputWidgets\u0022:{},\u0022nuid\u0022:\u0022b5c38c38-a7f7-43f5-a15c-e387079ac8d7\u0022}},\u0022source\u0022:[\u0022\\n!pip install \\\u0022https://retaildatastore.blob.core.windows.net/artifacts/cdmsdk/commondatamodel-objectmodel-1.0.10-py3-none-any.whl?sp=r\u0026st=2021-02-11T11:46:58Z\u0026se=2022-02-11T19:46:58Z\u0026spr=https\u0026sv=2020-02-10\u0026sr=b\u0026sig=XXXXXXXXXXXXXXXXXXXXXXXX\\\u0022\\n\u0022],\u0022attachments\u0022:null,\u0022outputs\u0022:[{\u0022output_type\u0022:\u0022display_data\u0022,\u0022data\u0022:{\u0022text/html\u0022:[\u0022\u003Cstyle scoped\u003E\\n .ansiout {\\n display: block;\\n unicode-bidi: embed;\\n white-space: pre-wrap;\\n word-wrap: break-word;\\n word-break: break-all;\\n font-family: \\\u0022Source Code Pro\\\u0022, \\\u0022Menlo\\\u0022, monospace;;\\n font-size: 13px;\\n color: #555;\\n margin-left: 4px;\\n line-height: 19px;\\n }\\n\u003C/style\u003E\\n\u003Cdiv class=\\\u0022ansiout\\\u0022\u003E\u003C/div\u003E\u0022]},\u0022metadata\u0022:{\u0022application/vnd.databricks.v1\u002Boutput\u0022:{\u0022datasetInfos\u0022:[],\u0022data\u0022:\u0022\u003Cdiv class=\\\u0022ansiout\\\u0022\u003E\u003C/div\u003E\u0022,\u0022removedWidgets\u0022:[],\u0022addedWidgets\u0022:{},\u0022type\u0022:\u0022html\u0022,\u0022arguments\u0022:{}}}}],\u0022execution_count\u0022:0},{\u0022cell_type\u0022:\u0022code\u0022,\u0022metadata\u0022:{\u0022application/vnd.databricks.v1\u002Bcell\u0022:{\u0022title\u0022:\u0022\u0022,\u0022showTitle\u0022:false,\u0022inputWidgets\u0022:{},\u0022nuid\u0022:\u0022b255d876-363a-446e-a0fa-e51f866efa77\u0022}},\u0022source\u0022:[\u0022\\n\\n# Generic imports\\nimport dotenv\\nimport json\\nimport numpy as np\\nimport os\\nimport fnmatch\\nimport shutil\\nimport random\\nimport string\\nimport pandas as pd\\nimport requests\\nimport asyncio\\nimport copy\\nimport functools\\nimport pathlib\\nimport string\\nfrom datetime import datetime, timezone\\n\\n# Spark imports\\nfrom pyspark.sql import SparkSession, SQLContext\\nfrom pyspark.sql.types import *\\nfrom pyspark.sql import functions as F\\n\\n# Recommenders imports\\n# from azureiai.reco_utils.dataset.spark_splitters import spark_random_split\\n# from azureiai.reco_utils.evaluation.spark_evaluation import (\\n# SparkRankingEvaluation,\\n# SparkRatingEvaluation,\\n# )\\nfrom pysarplus import SARPlus\\nfrom azureiai.retail.cdm2ai.reader import CONFIG\\n\\n# AzureML imports\\nimport azureml.core\\nfrom azureml.core.runconfig import JarLibrary\\nfrom azureml.core.compute import ComputeTarget, DatabricksCompute\\nfrom azureml.pipeline.steps import DatabricksStep\\nfrom azureml.core.datastore import Datastore\\nfrom azureml.data.data_reference import DataReference\\nfrom azureml.core import Workspace\\nfrom azureml.core.run import Run\\nfrom azureml.core.experiment import Experiment\\nfrom azureml.core import Environment\\nfrom azureml.core.environment import CondaDependencies\\nfrom azureml.core.environment import SparkPackage\\nfrom azureml.core.model import Model\\nfrom azureml.core.webservice import Webservice\\n\\n# Cosmos DB imports\\n# Install Cosmos DB connector from: https://docs.databricks.com/data/data-sources/azure/cosmosdb-connector.html\\nfrom azure.common.client_factory import get_client_from_json_dict\\n\\n# CDM imports\\nfrom cdm.storage import ADLSAdapter\\nfrom cdm.objectmodel import CdmCorpusDefinition, CdmManifestDefinition\\nfrom cdm.persistence.cdmfolder import ManifestPersistence\\nfrom cdm.persistence.cdmfolder.types import ManifestContent\\nfrom cdm.storage import LocalAdapter, ADLSAdapter\\nfrom cdm.utilities import time_utils\\n\\nfrom cdm.utilities.string_utils import kvprint\\n\\n# AKS imports\\nfrom azureml.core.compute import AksCompute\\nfrom azureml.core.compute_target import ComputeTargetException\\nfrom azureml.core.webservice import AksWebservice\\nfrom azureml.exceptions import WebserviceException\\nfrom azureml.core.model import InferenceConfig\\n\\n\u0022],\u0022attachments\u0022:null,\u0022outputs\u0022:[{\u0022output_type\u0022:\u0022display_data\u0022,\u0022data\u0022:{\u0022text/html\u0022:[\u0022\u003Cstyle scoped\u003E\\n .ansiout {\\n display: block;\\n unicode-bidi: embed;\\n white-space: pre-wrap;\\n word-wrap: break-word;\\n word-break: break-all;\\n font-family: \\\u0022Source Code Pro\\\u0022, \\\u0022Menlo\\\u0022, monospace;;\\n font-size: 13px;\\n color: #555;\\n margin-left: 4px;\\n line-height: 19px;\\n }\\n\u003C/style\u003E\\n\u003Cdiv class=\\\u0022ansiout\\\u0022\u003E\u003C/div\u003E\u0022]},\u0022metadata\u0022:{\u0022application/vnd.databricks.v1\u002Boutput\u0022:{\u0022datasetInfos\u0022:[],\u0022data\u0022:\u0022\u003Cdiv class=\\\u0022ansiout\\\u0022\u003E\u003C/div\u003E\u0022,\u0022removedWidgets\u0022:[],\u0022addedWidgets\u0022:{},\u0022type\u0022:\u0022html\u0022,\u0022arguments\u0022:{}}}}],\u0022execution_count\u0022:0},{\u0022cell_type\u0022:\u0022code\u0022,\u0022metadata\u0022:{\u0022application/vnd.databricks.v1\u002Bcell\u0022:{\u0022title\u0022:\u0022\u0022,\u0022showTitle\u0022:false,\u0022inputWidgets\u0022:{},\u0022nuid\u0022:\u0022bb6041f1-a825-41ae-ba4d-de6dff6e361a\u0022}},\u0022source\u0022:[\u0022# Global variables\\n# NOTE these variables are visible in the scope of the entire pipeline\\n\\n# Load the .env file to manage persistent variables\\n_GLOBAL_DOTENV_PATH = pathlib.Path(dotenv.find_dotenv(\\n filename=\\\u0022/dbfs/FileStore/.env\\\u0022,\\n raise_error_if_not_found=True\\n))\\n\\n# -------------------------------------------------------------------------\\n# Azure general variables\\n# -------------------------------------------------------------------------\\n_GLOBAL_SUBSCRIPTION_ID = dotenv.get_key(_GLOBAL_DOTENV_PATH, \\\u0022subscription_id\\\u0022)\\n_GLOBAL_RESOURCE_GROUP = dotenv.get_key(_GLOBAL_DOTENV_PATH, \\\u0022resource_group\\\u0022)\\n_GLOBAL_CONFIG_DICT = {\\n \\\u0022clientIdKey\\\u0022: \\\u0022sp_client_id\\\u0022,\\n \\\u0022clientSecretKey\\\u0022: \\\u0022sp_password\\\u0022,\\n \\\u0022clientId\\\u0022: dbutils.secrets.get(scope=\\\u0022secrets\\\u0022, key=\\\u0022sp_client_id\\\u0022),\\n \\\u0022clientSecret\\\u0022: dbutils.secrets.get(scope=\\\u0022secrets\\\u0022, key=\\\u0022sp_password\\\u0022),\\n \\\u0022subscriptionId\\\u0022: _GLOBAL_SUBSCRIPTION_ID,\\n \\\u0022tenantId\\\u0022: dotenv.get_key(_GLOBAL_DOTENV_PATH, \\\u0022tenant_id\\\u0022),\\n \\\u0022activeDirectoryEndpointUrl\\\u0022: \\\u0022https://login.microsoftonline.com\\\u0022,\\n \\\u0022resourceManagerEndpointUrl\\\u0022: \\\u0022https://management.azure.com/\\\u0022,\\n \\\u0022activeDirectoryGraphResourceId\\\u0022: \\\u0022https://graph.windows.net/\\\u0022,\\n \\\u0022sqlManagementEndpointUrl\\\u0022: \\\u0022https://management.core.windows.net:8443/\\\u0022,\\n \\\u0022galleryEndpointUrl\\\u0022: \\\u0022https://gallery.azure.com/\\\u0022,\\n \\\u0022managementEndpointUrl\\\u0022: \\\u0022https://management.core.windows.net/\\\u0022\\n}\\n\\n# -------------------------------------------------------------------------\\n# ADLS variables\\n# -------------------------------------------------------------------------\\n_GLOBAL_ADLS_ACCOUNT = dotenv.get_key(_GLOBAL_DOTENV_PATH, \\\u0022data_account\\\u0022)\\n_GLOBAL_ADLS_CONTAINER = dotenv.get_key(_GLOBAL_DOTENV_PATH, \\\u0022data_container\\\u0022)\\n_GLOBAL_ADLS_APPID = _GLOBAL_CONFIG_DICT[\\\u0022clientId\\\u0022]\\n_GLOBAL_ADLS_DIRID = _GLOBAL_CONFIG_DICT[\\\u0022tenantId\\\u0022]\\n_GLOBAL_ADLS_SECRET = _GLOBAL_CONFIG_DICT[\\\u0022clientSecret\\\u0022]\\n_GLOBAL_ADLS_HOSTNAME = f\u0027{_GLOBAL_ADLS_ACCOUNT}.dfs.core.windows.net\u0027\\n_GLOBAL_ADLS_DICT = {\\n \\\u0022adls_source\\\u0022: \\\u0022abfss://{0}@{1}.dfs.core.windows.net\\\u0022.format(_GLOBAL_ADLS_CONTAINER, _GLOBAL_ADLS_ACCOUNT),\\n \\\u0022oauth_endpoint\\\u0022: \\\u0022https://login.microsoftonline.com/{0}/oauth2/token\\\u0022.format(_GLOBAL_CONFIG_DICT[\\\u0022tenantId\\\u0022]),\\n \\\u0022adls_dfs_endpoint\\\u0022: \\\u0022{0}.dfs.core.windows.net\\\u0022.format(_GLOBAL_ADLS_ACCOUNT),\\n \\\u0022adls_container_mount_point\\\u0022: \\\u0022/mnt/{0}\\\u0022.format(_GLOBAL_ADLS_CONTAINER),\\n \\\u0022adls_resource_type\\\u0022: \\\u0022https://storage.azure.com\\\u0022,\\n \\\u0022adls_mount_root\\\u0022: \\\u0022/mnt\\\u0022,\\n \\\u0022adls_model_cache\\\u0022: \\\u0022dbfs:/mnt/{0}/cache\\\u0022.format(_GLOBAL_ADLS_CONTAINER)\\n}\\n\\n# -------------------------------------------------------------------------\\n# COSMOS DB variables\\n# -------------------------------------------------------------------------\\n_GLOBAL_DB_SECRETS = {\\n \\\u0022Endpoint\\\u0022: \\\u0022https://{0}.documents.azure.com:443/\\\u0022.format(dotenv.get_key(_GLOBAL_DOTENV_PATH, \\\u0022azure_cosmosdb_account_name\\\u0022)),\\n \\\u0022Masterkey\\\u0022: dbutils.secrets.get(scope=\\\u0022secrets\\\u0022, key=\\\u0022cosmosdb_primary_master_key\\\u0022),\\n \\\u0022Database\\\u0022: dotenv.get_key(_GLOBAL_DOTENV_PATH, \\\u0022azure_cosmosdb_database\\\u0022),\\n \\\u0022Collection\\\u0022: dotenv.get_key(_GLOBAL_DOTENV_PATH, \\\u0022azure_cosmosdb_container\\\u0022),\\n \\\u0022Upsert\\\u0022: True\\n}\\n\\n# -------------------------------------------------------------------------\\n# Data variables\\n# -------------------------------------------------------------------------\\n_GLOBAL_DATA_ROOT = dotenv.get_key(_GLOBAL_DOTENV_PATH, \\\u0022physical_data_model_directory\\\u0022)\\n_GLOBAL_TPC_RAW_ROOT = \u0027tpcds-raw-data\u0027\\n_GLOBAL_IDM_SCHEMA_ROOT = dotenv.get_key(_GLOBAL_DOTENV_PATH, \\\u0022logical_data_model_directory\\\u0022)\\n_GLOBAL_DATA_NAME = dotenv.get_key(_GLOBAL_DOTENV_PATH, \\\u0022data_name\\\u0022)\\n_GLOBAL_ADAPTER_PARTIAL = functools.partial(\\n ADLSAdapter,\\n hostname=_GLOBAL_ADLS_HOSTNAME,\\n tenant=_GLOBAL_ADLS_DIRID,\\n client_id=_GLOBAL_ADLS_APPID,\\n secret=_GLOBAL_ADLS_SECRET\\n)\\n_GLOBAL_CONFIG_JSON = copy.deepcopy(CONFIG)\\n_GLOBAL_CONFIG_JSON[\\\u0022adls\\\u0022][\\\u0022account\\\u0022] = _GLOBAL_ADLS_ACCOUNT\\n_GLOBAL_CONFIG_JSON[\\\u0022adls\\\u0022][\\\u0022container\\\u0022] = _GLOBAL_ADLS_CONTAINER\\n_GLOBAL_CONFIG_JSON[\\\u0022adls\\\u0022][\\\u0022appid\\\u0022] = _GLOBAL_ADLS_APPID\\n_GLOBAL_CONFIG_JSON[\\\u0022adls\\\u0022][\\\u0022dirid\\\u0022] = _GLOBAL_ADLS_DIRID\\n_GLOBAL_CONFIG_JSON[\\\u0022adls\\\u0022][\\\u0022secret\\\u0022] = _GLOBAL_ADLS_SECRET\\n_GLOBAL_CONFIG_JSON[\\\u0022adls\\\u0022][\\\u0022hostname\\\u0022] = _GLOBAL_ADLS_HOSTNAME\\n_GLOBAL_CONFIG_JSON[\\\u0022cdm\\\u0022][\\\u0022data_root\\\u0022] = _GLOBAL_DATA_ROOT\\n_GLOBAL_CONFIG_JSON[\\\u0022cdm\\\u0022][\\\u0022manifest_name\\\u0022] = \\\u0022{0}.manifest.cdm.json\\\u0022.format(dotenv.get_key(_GLOBAL_DOTENV_PATH, \\\u0022industry_data_model_name\\\u0022))\\n_GLOBAL_INPUT_DATA_FILE = dotenv.get_key(_GLOBAL_DOTENV_PATH, \\\u0022processed_data_file\\\u0022)\\n_GLOBAL_CUSTOMER_DATA_FILE = dotenv.get_key(_GLOBAL_DOTENV_PATH, \\\u0022processed_customer_data_file\\\u0022)\\n\\n# -------------------------------------------------------------------------\\n# Model variables\\n# -------------------------------------------------------------------------\\n_GLOBAL_MODEL_LOCAL_CACHE = \u0027dbfs:/model/{0}\u0027.format(\\n \u0027\u0027.join(random.choice(string.ascii_lowercase) for i in range(10))\\n)\\n\\n# -------------------------------------------------------------------------\\n# Azure Machine Learning service variables\\n# -------------------------------------------------------------------------\\n_GLOBAL_AML_DICT = {\\n \\\u0022workspace_name\\\u0022: dotenv.get_key(_GLOBAL_DOTENV_PATH, \\\u0022azureml_workspace\\\u0022),\\n \\\u0022model_file_name\\\u0022: dotenv.get_key(_GLOBAL_DOTENV_PATH, \\\u0022azureml_model_file_name\\\u0022),\\n \\\u0022aml_experiment_name\\\u0022: dotenv.get_key(_GLOBAL_DOTENV_PATH, \\\u0022azureml_experiment_name\\\u0022)\\n}\\n\\n# -------------------------------------------------------------------------\\n# Azure Kubernetes Service variables\\n# -------------------------------------------------------------------------\\n_GLOBAL_AKS_NAME = dotenv.get_key(_GLOBAL_DOTENV_PATH, \\\u0022aks_cluster_name\\\u0022)\\n_GLOBAL_SERVICE_NAME = \\\u0022aks-service-{0}\\\u0022.format(dotenv.get_key(_GLOBAL_DOTENV_PATH, \\\u0022unique_key\\\u0022))\\n_GLOBAL_AKS_CONFIG_LEVEL = dotenv.get_key(_GLOBAL_DOTENV_PATH, \\\u0022aks_config_level\\\u0022)\\n_GLOBAL_AKS_COMPUTE_TARGET_NAME = \u0027aks\u0027 \u002B dotenv.get_key(_GLOBAL_DOTENV_PATH, \\\u0022unique_key\\\u0022)\u0022],\u0022attachments\u0022:null,\u0022outputs\u0022:[{\u0022output_type\u0022:\u0022display_data\u0022,\u0022data\u0022:{\u0022text/html\u0022:[\u0022\u003Cstyle scoped\u003E\\n .ansiout {\\n display: block;\\n unicode-bidi: embed;\\n white-space: pre-wrap;\\n word-wrap: break-word;\\n word-break: break-all;\\n font-family: \\\u0022Source Code Pro\\\u0022, \\\u0022Menlo\\\u0022, monospace;;\\n font-size: 13px;\\n color: #555;\\n margin-left: 4px;\\n line-height: 19px;\\n }\\n\u003C/style\u003E\\n\u003Cdiv class=\\\u0022ansiout\\\u0022\u003E\u003C/div\u003E\u0022]},\u0022metadata\u0022:{\u0022application/vnd.databricks.v1\u002Boutput\u0022:{\u0022datasetInfos\u0022:[],\u0022data\u0022:\u0022\u003Cdiv class=\\\u0022ansiout\\\u0022\u003E\u003C/div\u003E\u0022,\u0022removedWidgets\u0022:[],\u0022addedWidgets\u0022:{},\u0022type\u0022:\u0022html\u0022,\u0022arguments\u0022:{}}}},{\u0022output_type\u0022:\u0022display_data\u0022,\u0022data\u0022:{\u0022text/html\u0022:[\u0022\u003Cstyle scoped\u003E\\n .ansiout {\\n display: block;\\n unicode-bidi: embed;\\n white-space: pre-wrap;\\n word-wrap: break-word;\\n word-break: break-all;\\n font-family: \\\u0022Source Code Pro\\\u0022, \\\u0022Menlo\\\u0022, monospace;;\\n font-size: 13px;\\n color: #555;\\n margin-left: 4px;\\n line-height: 19px;\\n }\\n\u003C/style\u003E\\n\u003Cdiv class=\\\u0022ansiout\\\u0022\u003E\u003Cspan class=\\\u0022ansi-red-fg\\\u0022\u003E---------------------------------------------------------------------------\u003C/span\u003E\\n\u003Cspan class=\\\u0022ansi-red-fg\\\u0022\u003ENameError\u003C/span\u003E Traceback (most recent call last)\\n\u003Cspan class=\\\u0022ansi-green-fg\\\u0022\u003E\u0026lt;command-1159393715563018\u0026gt;\u003C/span\u003E in \u003Cspan class=\\\u0022ansi-cyan-fg\\\u0022\u003E\u0026lt;module\u0026gt;\u003C/span\u003E\\n\u003Cspan class=\\\u0022ansi-green-intense-fg ansi-bold\\\u0022\u003E 66\u003C/span\u003E _GLOBAL_DATA_NAME \u003Cspan class=\\\u0022ansi-blue-fg\\\u0022\u003E=\u003C/span\u003E dotenv\u003Cspan class=\\\u0022ansi-blue-fg\\\u0022\u003E.\u003C/span\u003Eget_key\u003Cspan class=\\\u0022ansi-blue-fg\\\u0022\u003E(\u003C/span\u003E_GLOBAL_DOTENV_PATH\u003Cspan class=\\\u0022ansi-blue-fg\\\u0022\u003E,\u003C/span\u003E \u003Cspan class=\\\u0022ansi-blue-fg\\\u0022\u003E\u0026#34;data_name\u0026#34;\u003C/span\u003E\u003Cspan class=\\\u0022ansi-blue-fg\\\u0022\u003E)\u003C/span\u003E\\n\u003Cspan class=\\\u0022ansi-green-intense-fg ansi-bold\\\u0022\u003E 67\u003C/span\u003E _GLOBAL_ADAPTER_PARTIAL = functools.partial(\\n\u003Cspan class=\\\u0022ansi-green-fg\\\u0022\u003E---\u0026gt; 68\u003C/span\u003E\u003Cspan class=\\\u0022ansi-red-fg\\\u0022\u003E \u003C/span\u003EADLSAdapter\u003Cspan class=\\\u0022ansi-blue-fg\\\u0022\u003E,\u003C/span\u003E\\n\u003Cspan class=\\\u0022ansi-green-intense-fg ansi-bold\\\u0022\u003E 69\u003C/span\u003E hostname\u003Cspan class=\\\u0022ansi-blue-fg\\\u0022\u003E=\u003C/span\u003E_GLOBAL_ADLS_HOSTNAME\u003Cspan class=\\\u0022ansi-blue-fg\\\u0022\u003E,\u003C/span\u003E\\n\u003Cspan class=\\\u0022ansi-green-intense-fg ansi-bold\\\u0022\u003E 70\u003C/span\u003E tenant\u003Cspan class=\\\u0022ansi-blue-fg\\\u0022\u003E=\u003C/span\u003E_GLOBAL_ADLS_DIRID\u003Cspan class=\\\u0022ansi-blue-fg\\\u0022\u003E,\u003C/span\u003E\\n\\n\u003Cspan class=\\\u0022ansi-red-fg\\\u0022\u003ENameError\u003C/span\u003E: name \u0026#39;ADLSAdapter\u0026#39; is not defined\u003C/div\u003E\u0022]},\u0022metadata\u0022:{\u0022application/vnd.databricks.v1\u002Boutput\u0022:{\u0022type\u0022:\u0022ipynbError\u0022,\u0022data\u0022:\u0022\u003Cdiv class=\\\u0022ansiout\\\u0022\u003E\u003Cspan class=\\\u0022ansi-red-fg\\\u0022\u003E---------------------------------------------------------------------------\u003C/span\u003E\\n\u003Cspan class=\\\u0022ansi-red-fg\\\u0022\u003ENameError\u003C/span\u003E Traceback (most recent call last)\\n\u003Cspan class=\\\u0022ansi-green-fg\\\u0022\u003E\u0026lt;command-1159393715563018\u0026gt;\u003C/span\u003E in \u003Cspan class=\\\u0022ansi-cyan-fg\\\u0022\u003E\u0026lt;module\u0026gt;\u003C/span\u003E\\n\u003Cspan class=\\\u0022ansi-green-intense-fg ansi-bold\\\u0022\u003E 66\u003C/span\u003E _GLOBAL_DATA_NAME \u003Cspan class=\\\u0022ansi-blue-fg\\\u0022\u003E=\u003C/span\u003E dotenv\u003Cspan class=\\\u0022ansi-blue-fg\\\u0022\u003E.\u003C/span\u003Eget_key\u003Cspan class=\\\u0022ansi-blue-fg\\\u0022\u003E(\u003C/span\u003E_GLOBAL_DOTENV_PATH\u003Cspan class=\\\u0022ansi-blue-fg\\\u0022\u003E,\u003C/span\u003E \u003Cspan class=\\\u0022ansi-blue-fg\\\u0022\u003E\u0026#34;data_name\u0026#34;\u003C/span\u003E\u003Cspan class=\\\u0022ansi-blue-fg\\\u0022\u003E)\u003C/span\u003E\\n\u003Cspan class=\\\u0022ansi-green-intense-fg ansi-bold\\\u0022\u003E 67\u003C/span\u003E _GLOBAL_ADAPTER_PARTIAL = functools.partial(\\n\u003Cspan class=\\\u0022ansi-green-fg\\\u0022\u003E---\u0026gt; 68\u003C/span\u003E\u003Cspan class=\\\u0022ansi-red-fg\\\u0022\u003E \u003C/span\u003EADLSAdapter\u003Cspan class=\\\u0022ansi-blue-fg\\\u0022\u003E,\u003C/span\u003E\\n\u003Cspan class=\\\u0022ansi-green-intense-fg ansi-bold\\\u0022\u003E 69\u003C/span\u003E hostname\u003Cspan class=\\\u0022ansi-blue-fg\\\u0022\u003E=\u003C/span\u003E_GLOBAL_ADLS_HOSTNAME\u003Cspan class=\\\u0022ansi-blue-fg\\\u0022\u003E,\u003C/span\u003E\\n\u003Cspan class=\\\u0022ansi-green-intense-fg ansi-bold\\\u0022\u003E 70\u003C/span\u003E tenant\u003Cspan class=\\\u0022ansi-blue-fg\\\u0022\u003E=\u003C/span\u003E_GLOBAL_ADLS_DIRID\u003Cspan class=\\\u0022ansi-blue-fg\\\u0022\u003E,\u003C/span\u003E\\n\\n\u003Cspan class=\\\u0022ansi-red-fg\\\u0022\u003ENameError\u003C/span\u003E: name \u0026#39;ADLSAdapter\u0026#39; is not defined\u003C/div\u003E\u0022,\u0022errorSummary\u0022:\u0022\u003Cspan class=\\\u0022ansi-red-fg\\\u0022\u003ENameError\u003C/span\u003E: name \u0026#39;ADLSAdapter\u0026#39; is not defined\u0022,\u0022arguments\u0022:{}}}}],\u0022execution_count\u0022:0},{\u0022cell_type\u0022:\u0022code\u0022,\u0022metadata\u0022:{\u0022application/vnd.databricks.v1\u002Bcell\u0022:{\u0022title\u0022:\u0022\u0022,\u0022showTitle\u0022:false,\u0022inputWidgets\u0022:{},\u0022nuid\u0022:\u0022639595d4-4083-4f33-a7d4-15af60e7b3d6\u0022}},\u0022source\u0022:[\u0022# Spark initialization\\nSUBMIT_ARGS = \\\u0022--packages eisber:sarplus:0.2.6 pyspark-shell\\\u0022\\nos.environ[\\\u0022PYSPARK_SUBMIT_ARGS\\\u0022] = SUBMIT_ARGS\\n\\nspark = (\\n SparkSession.builder.appName(\\\u0022sample\\\u0022)\\n .master(\\\u0022local[*]\\\u0022)\\n .config(\\\u0022memory\\\u0022, \\\u00221G\\\u0022)\\n .config(\\\u0022spark.sql.shuffle.partitions\\\u0022, \\\u00221\\\u0022)\\n .config(\\\u0022spark.sql.crossJoin.enabled\\\u0022, True)\\n .config(\\\u0022spark.ui.enabled\\\u0022, False)\\n .getOrCreate()\\n)\\n\\n# SqlContext helps with doing SQL like queries on spark DFs.\\nsqlContext = SQLContext(spark)\\n\\n# Configure the Spark session to avoid using mount\\nspark.conf.set(\\\u0022fs.azure.account.auth.type.{0}.dfs.core.windows.net\\\u0022.format(_GLOBAL_ADLS_ACCOUNT), \\\u0022OAuth\\\u0022)\\nspark.conf.set(\\n \\\u0022fs.azure.account.oauth.provider.type.{0}.dfs.core.windows.net\\\u0022.format(_GLOBAL_ADLS_ACCOUNT),\\n \\\u0022org.apache.hadoop.fs.azurebfs.oauth2.ClientCredsTokenProvider\\\u0022,\\n)\\nspark.conf.set(\\n \\\u0022fs.azure.account.oauth2.client.id.{0}.dfs.core.windows.net\\\u0022.format(_GLOBAL_ADLS_ACCOUNT), _GLOBAL_ADLS_APPID\\n)\\nspark.conf.set(\\n \\\u0022fs.azure.account.oauth2.client.secret.{0}.dfs.core.windows.net\\\u0022.format(_GLOBAL_ADLS_ACCOUNT), _GLOBAL_ADLS_SECRET\\n)\\nspark.conf.set(\\n \\\u0022fs.azure.account.oauth2.client.endpoint.{0}.dfs.core.windows.net\\\u0022.format(_GLOBAL_ADLS_ACCOUNT),\\n \\\u0022https://login.microsoftonline.com/{0}/oauth2/token\\\u0022.format(_GLOBAL_ADLS_DIRID),\\n)\u0022],\u0022attachments\u0022:null,\u0022outputs\u0022:[],\u0022execution_count\u0022:0},{\u0022cell_type\u0022:\u0022code\u0022,\u0022metadata\u0022:{\u0022application/vnd.databricks.v1\u002Bcell\u0022:{\u0022title\u0022:\u0022\u0022,\u0022showTitle\u0022:false,\u0022inputWidgets\u0022:{},\u0022nuid\u0022:\u0022614662de-2288-451e-b238-b6190156aac4\u0022}},\u0022source\u0022:[\u0022# Mount the remove ADLS container on the local databricks\\n\\n# Unmount an existing mount point\\ntry:\\n dbutils.fs.unmount(_GLOBAL_ADLS_DICT[\\\u0022adls_container_mount_point\\\u0022])\\nexcept Exception as ex:\\n if \\\u0022Directory not mounted\\\u0022 not in str(ex):\\n raise Exception(\\\u0022Error in unmounting\\\u0022)\\n\\n# Mount wit the provided configuration information\\nconfigs = {\\n \\\u0022fs.azure.account.auth.type\\\u0022: \\\u0022OAuth\\\u0022,\\n \\\u0022fs.azure.account.oauth.provider.type\\\u0022: \\\u0022org.apache.hadoop.fs.azurebfs.oauth2.ClientCredsTokenProvider\\\u0022,\\n \\\u0022fs.azure.account.oauth2.client.id\\\u0022: _GLOBAL_CONFIG_DICT[\\\u0022clientId\\\u0022],\\n \\\u0022fs.azure.account.oauth2.client.secret\\\u0022: _GLOBAL_CONFIG_DICT[\\\u0022clientSecret\\\u0022],\\n \\\u0022fs.azure.account.oauth2.client.endpoint\\\u0022: _GLOBAL_ADLS_DICT[\\\u0022oauth_endpoint\\\u0022],\\n}\\ndbutils.fs.mount(\\n source=_GLOBAL_ADLS_DICT[\\\u0022adls_source\\\u0022],\\n mount_point=_GLOBAL_ADLS_DICT[\\\u0022adls_container_mount_point\\\u0022],\\n extra_configs=configs,\\n)\\n\\n# List the contents in the mounted directory\\ndbutils.fs.ls(_GLOBAL_ADLS_DICT[\\\u0022adls_container_mount_point\\\u0022])\\n\\n# Make a new directory for model cache use\\ndbutils.fs.mkdirs(_GLOBAL_ADLS_DICT[\\\u0022adls_model_cache\\\u0022])\u0022],\u0022attachments\u0022:null,\u0022outputs\u0022:[],\u0022execution_count\u0022:0}],\u0022folder\u0022:null}},{\u0022id\u0022:\u0022/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/testclinb\u0022,\u0022name\u0022:\u0022testclinb\u0022,\u0022type\u0022:\u0022Microsoft.Synapse/workspaces/notebooks\u0022,\u0022etag\u0022:\u00220900eeb9-0000-0100-0000-61408d200000\u0022,\u0022properties\u0022:{\u0022nbformat\u0022:4,\u0022nbformat_minor\u0022:0,\u0022entityState\u0022:null,\u0022renameOperationDetails\u0022:null,\u0022bigDataPool\u0022:null,\u0022sessionProperties\u0022:{\u0022driverMemory\u0022:\u002228g\u0022,\u0022driverCores\u0022:4,\u0022executorMemory\u0022:\u002228g\u0022,\u0022executorCores\u0022:4,\u0022numExecutors\u0022:2,\u0022conf\u0022:{\u0022spark.dynamicAllocation.enabled\u0022:\u0022false\u0022,\u0022spark.dynamicAllocation.minExecutors\u0022:\u00222\u0022,\u0022spark.dynamicAllocation.maxExecutors\u0022:\u00222\u0022}},\u0022metadata\u0022:{\u0022language_info\u0022:{\u0022name\u0022:\u0022python\u0022},\u0022a365ComputeOptions\u0022:null,\u0022sessionKeepAliveTimeout\u0022:30,\u0022saveOutput\u0022:true,\u0022synapse_widget\u0022:{\u0022version\u0022:\u00220.1\u0022,\u0022state\u0022:{}},\u0022kernelspec\u0022:{\u0022name\u0022:\u0022synapse_pyspark\u0022,\u0022display_name\u0022:\u0022python\u0022}},\u0022cells\u0022:[{\u0022cell_type\u0022:\u0022markdown\u0022,\u0022metadata\u0022:{\u0022application/vnd.databricks.v1\u002Bcell\u0022:{\u0022title\u0022:\u0022\u0022,\u0022showTitle\u0022:false,\u0022inputWidgets\u0022:{},\u0022nuid\u0022:\u0022ec9689e6-a215-42cf-aa9f-85a38cca6362\u0022}},\u0022source\u0022:[\u0022Copyright (c) Microsoft Corporation. All rights reserved.\u0022],\u0022attachments\u0022:null,\u0022outputs\u0022:[],\u0022execution_count\u0022:null},{\u0022cell_type\u0022:\u0022code\u0022,\u0022metadata\u0022:{\u0022application/vnd.databricks.v1\u002Bcell\u0022:{\u0022title\u0022:\u0022\u0022,\u0022showTitle\u0022:false,\u0022inputWidgets\u0022:{},\u0022nuid\u0022:\u00224eb23c41-ffd4-412f-a887-102462d4d316\u0022}},\u0022source\u0022:[\u0022# Disable the verbose log\\n\u0022,\u0022import logging\\n\u0022,\u0022logging.getLogger(\\\u0022py4j\\\u0022).setLevel(logging.ERROR)\u0022],\u0022attachments\u0022:null,\u0022outputs\u0022:[{\u0022output_type\u0022:\u0022display_data\u0022,\u0022data\u0022:{\u0022text/html\u0022:\u0022\u003Cstyle scoped\u003E\\n .ansiout {\\n display: block;\\n unicode-bidi: embed;\\n white-space: pre-wrap;\\n word-wrap: break-word;\\n word-break: break-all;\\n font-family: \\\u0022Source Code Pro\\\u0022, \\\u0022Menlo\\\u0022, monospace;;\\n font-size: 13px;\\n color: #555;\\n margin-left: 4px;\\n line-height: 19px;\\n }\\n\u003C/style\u003E\\n\u003Cdiv class=\\\u0022ansiout\\\u0022\u003E\u003C/div\u003E\u0022},\u0022metadata\u0022:{\u0022application/vnd.databricks.v1\u002Boutput\u0022:{\u0022datasetInfos\u0022:[],\u0022data\u0022:\u0022\u003Cdiv class=\\\u0022ansiout\\\u0022\u003E\u003C/div\u003E\u0022,\u0022removedWidgets\u0022:[],\u0022addedWidgets\u0022:{},\u0022type\u0022:\u0022html\u0022,\u0022arguments\u0022:{}}}}],\u0022execution_count\u0022:0},{\u0022cell_type\u0022:\u0022code\u0022,\u0022metadata\u0022:{\u0022application/vnd.databricks.v1\u002Bcell\u0022:{\u0022title\u0022:\u0022\u0022,\u0022showTitle\u0022:false,\u0022inputWidgets\u0022:{},\u0022nuid\u0022:\u0022b5c38c38-a7f7-43f5-a15c-e387079ac8d7\u0022}},\u0022source\u0022:[\u0022\\n\u0022,\u0022!pip install \\\u0022https://retaildatastore.blob.core.windows.net/artifacts/cdmsdk/commondatamodel-objectmodel-1.0.10-py3-none-any.whl?sp=r\u0026st=2021-02-11T11:46:58Z\u0026se=2022-02-11T19:46:58Z\u0026spr=https\u0026sv=2020-02-10\u0026sr=b\u0026sig=XXXXXXXXXXXXXXXXXXXXXXXX\\\u0022\\n\u0022,\u0022\u0022],\u0022attachments\u0022:null,\u0022outputs\u0022:[{\u0022output_type\u0022:\u0022display_data\u0022,\u0022data\u0022:{\u0022text/html\u0022:\u0022\u003Cstyle scoped\u003E\\n .ansiout {\\n display: block;\\n unicode-bidi: embed;\\n white-space: pre-wrap;\\n word-wrap: break-word;\\n word-break: break-all;\\n font-family: \\\u0022Source Code Pro\\\u0022, \\\u0022Menlo\\\u0022, monospace;;\\n font-size: 13px;\\n color: #555;\\n margin-left: 4px;\\n line-height: 19px;\\n }\\n\u003C/style\u003E\\n\u003Cdiv class=\\\u0022ansiout\\\u0022\u003E\u003C/div\u003E\u0022},\u0022metadata\u0022:{\u0022application/vnd.databricks.v1\u002Boutput\u0022:{\u0022datasetInfos\u0022:[],\u0022data\u0022:\u0022\u003Cdiv class=\\\u0022ansiout\\\u0022\u003E\u003C/div\u003E\u0022,\u0022removedWidgets\u0022:[],\u0022addedWidgets\u0022:{},\u0022type\u0022:\u0022html\u0022,\u0022arguments\u0022:{}}}}],\u0022execution_count\u0022:0},{\u0022cell_type\u0022:\u0022code\u0022,\u0022metadata\u0022:{\u0022application/vnd.databricks.v1\u002Bcell\u0022:{\u0022title\u0022:\u0022\u0022,\u0022showTitle\u0022:false,\u0022inputWidgets\u0022:{},\u0022nuid\u0022:\u0022b255d876-363a-446e-a0fa-e51f866efa77\u0022}},\u0022source\u0022:[\u0022\\n\u0022,\u0022\\n\u0022,\u0022# Generic imports\\n\u0022,\u0022import dotenv\\n\u0022,\u0022import json\\n\u0022,\u0022import numpy as np\\n\u0022,\u0022import os\\n\u0022,\u0022import fnmatch\\n\u0022,\u0022import shutil\\n\u0022,\u0022import random\\n\u0022,\u0022import string\\n\u0022,\u0022import pandas as pd\\n\u0022,\u0022import requests\\n\u0022,\u0022import asyncio\\n\u0022,\u0022import copy\\n\u0022,\u0022import functools\\n\u0022,\u0022import pathlib\\n\u0022,\u0022import string\\n\u0022,\u0022from datetime import datetime, timezone\\n\u0022,\u0022\\n\u0022,\u0022# Spark imports\\n\u0022,\u0022from pyspark.sql import SparkSession, SQLContext\\n\u0022,\u0022from pyspark.sql.types import *\\n\u0022,\u0022from pyspark.sql import functions as F\\n\u0022,\u0022\\n\u0022,\u0022# Recommenders imports\\n\u0022,\u0022# from azureiai.reco_utils.dataset.spark_splitters import spark_random_split\\n\u0022,\u0022# from azureiai.reco_utils.evaluation.spark_evaluation import (\\n\u0022,\u0022# SparkRankingEvaluation,\\n\u0022,\u0022# SparkRatingEvaluation,\\n\u0022,\u0022# )\\n\u0022,\u0022from pysarplus import SARPlus\\n\u0022,\u0022from azureiai.retail.cdm2ai.reader import CONFIG\\n\u0022,\u0022\\n\u0022,\u0022# AzureML imports\\n\u0022,\u0022import azureml.core\\n\u0022,\u0022from azureml.core.runconfig import JarLibrary\\n\u0022,\u0022from azureml.core.compute import ComputeTarget, DatabricksCompute\\n\u0022,\u0022from azureml.pipeline.steps import DatabricksStep\\n\u0022,\u0022from azureml.core.datastore import Datastore\\n\u0022,\u0022from azureml.data.data_reference import DataReference\\n\u0022,\u0022from azureml.core import Workspace\\n\u0022,\u0022from azureml.core.run import Run\\n\u0022,\u0022from azureml.core.experiment import Experiment\\n\u0022,\u0022from azureml.core import Environment\\n\u0022,\u0022from azureml.core.environment import CondaDependencies\\n\u0022,\u0022from azureml.core.environment import SparkPackage\\n\u0022,\u0022from azureml.core.model import Model\\n\u0022,\u0022from azureml.core.webservice import Webservice\\n\u0022,\u0022\\n\u0022,\u0022# Cosmos DB imports\\n\u0022,\u0022# Install Cosmos DB connector from: https://docs.databricks.com/data/data-sources/azure/cosmosdb-connector.html\\n\u0022,\u0022from azure.common.client_factory import get_client_from_json_dict\\n\u0022,\u0022\\n\u0022,\u0022# CDM imports\\n\u0022,\u0022from cdm.storage import ADLSAdapter\\n\u0022,\u0022from cdm.objectmodel import CdmCorpusDefinition, CdmManifestDefinition\\n\u0022,\u0022from cdm.persistence.cdmfolder import ManifestPersistence\\n\u0022,\u0022from cdm.persistence.cdmfolder.types import ManifestContent\\n\u0022,\u0022from cdm.storage import LocalAdapter, ADLSAdapter\\n\u0022,\u0022from cdm.utilities import time_utils\\n\u0022,\u0022\\n\u0022,\u0022from cdm.utilities.string_utils import kvprint\\n\u0022,\u0022\\n\u0022,\u0022# AKS imports\\n\u0022,\u0022from azureml.core.compute import AksCompute\\n\u0022,\u0022from azureml.core.compute_target import ComputeTargetException\\n\u0022,\u0022from azureml.core.webservice import AksWebservice\\n\u0022,\u0022from azureml.exceptions import WebserviceException\\n\u0022,\u0022from azureml.core.model import InferenceConfig\\n\u0022,\u0022\\n\u0022,\u0022\u0022],\u0022attachments\u0022:null,\u0022outputs\u0022:[{\u0022output_type\u0022:\u0022display_data\u0022,\u0022data\u0022:{\u0022text/html\u0022:\u0022\u003Cstyle scoped\u003E\\n .ansiout {\\n display: block;\\n unicode-bidi: embed;\\n white-space: pre-wrap;\\n word-wrap: break-word;\\n word-break: break-all;\\n font-family: \\\u0022Source Code Pro\\\u0022, \\\u0022Menlo\\\u0022, monospace;;\\n font-size: 13px;\\n color: #555;\\n margin-left: 4px;\\n line-height: 19px;\\n }\\n\u003C/style\u003E\\n\u003Cdiv class=\\\u0022ansiout\\\u0022\u003E\u003C/div\u003E\u0022},\u0022metadata\u0022:{\u0022application/vnd.databricks.v1\u002Boutput\u0022:{\u0022datasetInfos\u0022:[],\u0022data\u0022:\u0022\u003Cdiv class=\\\u0022ansiout\\\u0022\u003E\u003C/div\u003E\u0022,\u0022removedWidgets\u0022:[],\u0022addedWidgets\u0022:{},\u0022type\u0022:\u0022html\u0022,\u0022arguments\u0022:{}}}}],\u0022execution_count\u0022:0},{\u0022cell_type\u0022:\u0022code\u0022,\u0022metadata\u0022:{\u0022application/vnd.databricks.v1\u002Bcell\u0022:{\u0022title\u0022:\u0022\u0022,\u0022showTitle\u0022:false,\u0022inputWidgets\u0022:{},\u0022nuid\u0022:\u0022bb6041f1-a825-41ae-ba4d-de6dff6e361a\u0022}},\u0022source\u0022:[\u0022# Global variables\\n\u0022,\u0022# NOTE these variables are visible in the scope of the entire pipeline\\n\u0022,\u0022\\n\u0022,\u0022# Load the .env file to manage persistent variables\\n\u0022,\u0022_GLOBAL_DOTENV_PATH = pathlib.Path(dotenv.find_dotenv(\\n\u0022,\u0022 filename=\\\u0022/dbfs/FileStore/.env\\\u0022,\\n\u0022,\u0022 raise_error_if_not_found=True\\n\u0022,\u0022))\\n\u0022,\u0022\\n\u0022,\u0022# -------------------------------------------------------------------------\\n\u0022,\u0022# Azure general variables\\n\u0022,\u0022# -------------------------------------------------------------------------\\n\u0022,\u0022_GLOBAL_SUBSCRIPTION_ID = dotenv.get_key(_GLOBAL_DOTENV_PATH, \\\u0022subscription_id\\\u0022)\\n\u0022,\u0022_GLOBAL_RESOURCE_GROUP = dotenv.get_key(_GLOBAL_DOTENV_PATH, \\\u0022resource_group\\\u0022)\\n\u0022,\u0022_GLOBAL_CONFIG_DICT = {\\n\u0022,\u0022 \\\u0022clientIdKey\\\u0022: \\\u0022sp_client_id\\\u0022,\\n\u0022,\u0022 \\\u0022clientSecretKey\\\u0022: \\\u0022sp_password\\\u0022,\\n\u0022,\u0022 \\\u0022clientId\\\u0022: dbutils.secrets.get(scope=\\\u0022secrets\\\u0022, key=\\\u0022sp_client_id\\\u0022),\\n\u0022,\u0022 \\\u0022clientSecret\\\u0022: dbutils.secrets.get(scope=\\\u0022secrets\\\u0022, key=\\\u0022sp_password\\\u0022),\\n\u0022,\u0022 \\\u0022subscriptionId\\\u0022: _GLOBAL_SUBSCRIPTION_ID,\\n\u0022,\u0022 \\\u0022tenantId\\\u0022: dotenv.get_key(_GLOBAL_DOTENV_PATH, \\\u0022tenant_id\\\u0022),\\n\u0022,\u0022 \\\u0022activeDirectoryEndpointUrl\\\u0022: \\\u0022https://login.microsoftonline.com\\\u0022,\\n\u0022,\u0022 \\\u0022resourceManagerEndpointUrl\\\u0022: \\\u0022https://management.azure.com/\\\u0022,\\n\u0022,\u0022 \\\u0022activeDirectoryGraphResourceId\\\u0022: \\\u0022https://graph.windows.net/\\\u0022,\\n\u0022,\u0022 \\\u0022sqlManagementEndpointUrl\\\u0022: \\\u0022https://management.core.windows.net:8443/\\\u0022,\\n\u0022,\u0022 \\\u0022galleryEndpointUrl\\\u0022: \\\u0022https://gallery.azure.com/\\\u0022,\\n\u0022,\u0022 \\\u0022managementEndpointUrl\\\u0022: \\\u0022https://management.core.windows.net/\\\u0022\\n\u0022,\u0022}\\n\u0022,\u0022\\n\u0022,\u0022# -------------------------------------------------------------------------\\n\u0022,\u0022# ADLS variables\\n\u0022,\u0022# -------------------------------------------------------------------------\\n\u0022,\u0022_GLOBAL_ADLS_ACCOUNT = dotenv.get_key(_GLOBAL_DOTENV_PATH, \\\u0022data_account\\\u0022)\\n\u0022,\u0022_GLOBAL_ADLS_CONTAINER = dotenv.get_key(_GLOBAL_DOTENV_PATH, \\\u0022data_container\\\u0022)\\n\u0022,\u0022_GLOBAL_ADLS_APPID = _GLOBAL_CONFIG_DICT[\\\u0022clientId\\\u0022]\\n\u0022,\u0022_GLOBAL_ADLS_DIRID = _GLOBAL_CONFIG_DICT[\\\u0022tenantId\\\u0022]\\n\u0022,\u0022_GLOBAL_ADLS_SECRET = _GLOBAL_CONFIG_DICT[\\\u0022clientSecret\\\u0022]\\n\u0022,\u0022_GLOBAL_ADLS_HOSTNAME = f\u0027{_GLOBAL_ADLS_ACCOUNT}.dfs.core.windows.net\u0027\\n\u0022,\u0022_GLOBAL_ADLS_DICT = {\\n\u0022,\u0022 \\\u0022adls_source\\\u0022: \\\u0022abfss://{0}@{1}.dfs.core.windows.net\\\u0022.format(_GLOBAL_ADLS_CONTAINER, _GLOBAL_ADLS_ACCOUNT),\\n\u0022,\u0022 \\\u0022oauth_endpoint\\\u0022: \\\u0022https://login.microsoftonline.com/{0}/oauth2/token\\\u0022.format(_GLOBAL_CONFIG_DICT[\\\u0022tenantId\\\u0022]),\\n\u0022,\u0022 \\\u0022adls_dfs_endpoint\\\u0022: \\\u0022{0}.dfs.core.windows.net\\\u0022.format(_GLOBAL_ADLS_ACCOUNT),\\n\u0022,\u0022 \\\u0022adls_container_mount_point\\\u0022: \\\u0022/mnt/{0}\\\u0022.format(_GLOBAL_ADLS_CONTAINER),\\n\u0022,\u0022 \\\u0022adls_resource_type\\\u0022: \\\u0022https://storage.azure.com\\\u0022,\\n\u0022,\u0022 \\\u0022adls_mount_root\\\u0022: \\\u0022/mnt\\\u0022,\\n\u0022,\u0022 \\\u0022adls_model_cache\\\u0022: \\\u0022dbfs:/mnt/{0}/cache\\\u0022.format(_GLOBAL_ADLS_CONTAINER)\\n\u0022,\u0022}\\n\u0022,\u0022\\n\u0022,\u0022# -------------------------------------------------------------------------\\n\u0022,\u0022# COSMOS DB variables\\n\u0022,\u0022# -------------------------------------------------------------------------\\n\u0022,\u0022_GLOBAL_DB_SECRETS = {\\n\u0022,\u0022 \\\u0022Endpoint\\\u0022: \\\u0022https://{0}.documents.azure.com:443/\\\u0022.format(dotenv.get_key(_GLOBAL_DOTENV_PATH, \\\u0022azure_cosmosdb_account_name\\\u0022)),\\n\u0022,\u0022 \\\u0022Masterkey\\\u0022: dbutils.secrets.get(scope=\\\u0022secrets\\\u0022, key=\\\u0022cosmosdb_primary_master_key\\\u0022),\\n\u0022,\u0022 \\\u0022Database\\\u0022: dotenv.get_key(_GLOBAL_DOTENV_PATH, \\\u0022azure_cosmosdb_database\\\u0022),\\n\u0022,\u0022 \\\u0022Collection\\\u0022: dotenv.get_key(_GLOBAL_DOTENV_PATH, \\\u0022azure_cosmosdb_container\\\u0022),\\n\u0022,\u0022 \\\u0022Upsert\\\u0022: True\\n\u0022,\u0022}\\n\u0022,\u0022\\n\u0022,\u0022# -------------------------------------------------------------------------\\n\u0022,\u0022# Data variables\\n\u0022,\u0022# -------------------------------------------------------------------------\\n\u0022,\u0022_GLOBAL_DATA_ROOT = dotenv.get_key(_GLOBAL_DOTENV_PATH, \\\u0022physical_data_model_directory\\\u0022)\\n\u0022,\u0022_GLOBAL_TPC_RAW_ROOT = \u0027tpcds-raw-data\u0027\\n\u0022,\u0022_GLOBAL_IDM_SCHEMA_ROOT = dotenv.get_key(_GLOBAL_DOTENV_PATH, \\\u0022logical_data_model_directory\\\u0022)\\n\u0022,\u0022_GLOBAL_DATA_NAME = dotenv.get_key(_GLOBAL_DOTENV_PATH, \\\u0022data_name\\\u0022)\\n\u0022,\u0022_GLOBAL_ADAPTER_PARTIAL = functools.partial(\\n\u0022,\u0022 ADLSAdapter,\\n\u0022,\u0022 hostname=_GLOBAL_ADLS_HOSTNAME,\\n\u0022,\u0022 tenant=_GLOBAL_ADLS_DIRID,\\n\u0022,\u0022 client_id=_GLOBAL_ADLS_APPID,\\n\u0022,\u0022 secret=_GLOBAL_ADLS_SECRET\\n\u0022,\u0022)\\n\u0022,\u0022_GLOBAL_CONFIG_JSON = copy.deepcopy(CONFIG)\\n\u0022,\u0022_GLOBAL_CONFIG_JSON[\\\u0022adls\\\u0022][\\\u0022account\\\u0022] = _GLOBAL_ADLS_ACCOUNT\\n\u0022,\u0022_GLOBAL_CONFIG_JSON[\\\u0022adls\\\u0022][\\\u0022container\\\u0022] = _GLOBAL_ADLS_CONTAINER\\n\u0022,\u0022_GLOBAL_CONFIG_JSON[\\\u0022adls\\\u0022][\\\u0022appid\\\u0022] = _GLOBAL_ADLS_APPID\\n\u0022,\u0022_GLOBAL_CONFIG_JSON[\\\u0022adls\\\u0022][\\\u0022dirid\\\u0022] = _GLOBAL_ADLS_DIRID\\n\u0022,\u0022_GLOBAL_CONFIG_JSON[\\\u0022adls\\\u0022][\\\u0022secret\\\u0022] = _GLOBAL_ADLS_SECRET\\n\u0022,\u0022_GLOBAL_CONFIG_JSON[\\\u0022adls\\\u0022][\\\u0022hostname\\\u0022] = _GLOBAL_ADLS_HOSTNAME\\n\u0022,\u0022_GLOBAL_CONFIG_JSON[\\\u0022cdm\\\u0022][\\\u0022data_root\\\u0022] = _GLOBAL_DATA_ROOT\\n\u0022,\u0022_GLOBAL_CONFIG_JSON[\\\u0022cdm\\\u0022][\\\u0022manifest_name\\\u0022] = \\\u0022{0}.manifest.cdm.json\\\u0022.format(dotenv.get_key(_GLOBAL_DOTENV_PATH, \\\u0022industry_data_model_name\\\u0022))\\n\u0022,\u0022_GLOBAL_INPUT_DATA_FILE = dotenv.get_key(_GLOBAL_DOTENV_PATH, \\\u0022processed_data_file\\\u0022)\\n\u0022,\u0022_GLOBAL_CUSTOMER_DATA_FILE = dotenv.get_key(_GLOBAL_DOTENV_PATH, \\\u0022processed_customer_data_file\\\u0022)\\n\u0022,\u0022\\n\u0022,\u0022# -------------------------------------------------------------------------\\n\u0022,\u0022# Model variables\\n\u0022,\u0022# -------------------------------------------------------------------------\\n\u0022,\u0022_GLOBAL_MODEL_LOCAL_CACHE = \u0027dbfs:/model/{0}\u0027.format(\\n\u0022,\u0022 \u0027\u0027.join(random.choice(string.ascii_lowercase) for i in range(10))\\n\u0022,\u0022)\\n\u0022,\u0022\\n\u0022,\u0022# -------------------------------------------------------------------------\\n\u0022,\u0022# Azure Machine Learning service variables\\n\u0022,\u0022# -------------------------------------------------------------------------\\n\u0022,\u0022_GLOBAL_AML_DICT = {\\n\u0022,\u0022 \\\u0022workspace_name\\\u0022: dotenv.get_key(_GLOBAL_DOTENV_PATH, \\\u0022azureml_workspace\\\u0022),\\n\u0022,\u0022 \\\u0022model_file_name\\\u0022: dotenv.get_key(_GLOBAL_DOTENV_PATH, \\\u0022azureml_model_file_name\\\u0022),\\n\u0022,\u0022 \\\u0022aml_experiment_name\\\u0022: dotenv.get_key(_GLOBAL_DOTENV_PATH, \\\u0022azureml_experiment_name\\\u0022)\\n\u0022,\u0022}\\n\u0022,\u0022\\n\u0022,\u0022# -------------------------------------------------------------------------\\n\u0022,\u0022# Azure Kubernetes Service variables\\n\u0022,\u0022# -------------------------------------------------------------------------\\n\u0022,\u0022_GLOBAL_AKS_NAME = dotenv.get_key(_GLOBAL_DOTENV_PATH, \\\u0022aks_cluster_name\\\u0022)\\n\u0022,\u0022_GLOBAL_SERVICE_NAME = \\\u0022aks-service-{0}\\\u0022.format(dotenv.get_key(_GLOBAL_DOTENV_PATH, \\\u0022unique_key\\\u0022))\\n\u0022,\u0022_GLOBAL_AKS_CONFIG_LEVEL = dotenv.get_key(_GLOBAL_DOTENV_PATH, \\\u0022aks_config_level\\\u0022)\\n\u0022,\u0022_GLOBAL_AKS_COMPUTE_TARGET_NAME = \u0027aks\u0027 \u002B dotenv.get_key(_GLOBAL_DOTENV_PATH, \\\u0022unique_key\\\u0022)\u0022],\u0022attachments\u0022:null,\u0022outputs\u0022:[{\u0022output_type\u0022:\u0022display_data\u0022,\u0022data\u0022:{\u0022text/html\u0022:\u0022\u003Cstyle scoped\u003E\\n .ansiout {\\n display: block;\\n unicode-bidi: embed;\\n white-space: pre-wrap;\\n word-wrap: break-word;\\n word-break: break-all;\\n font-family: \\\u0022Source Code Pro\\\u0022, \\\u0022Menlo\\\u0022, monospace;;\\n font-size: 13px;\\n color: #555;\\n margin-left: 4px;\\n line-height: 19px;\\n }\\n\u003C/style\u003E\\n\u003Cdiv class=\\\u0022ansiout\\\u0022\u003E\u003C/div\u003E\u0022},\u0022metadata\u0022:{\u0022application/vnd.databricks.v1\u002Boutput\u0022:{\u0022datasetInfos\u0022:[],\u0022data\u0022:\u0022\u003Cdiv class=\\\u0022ansiout\\\u0022\u003E\u003C/div\u003E\u0022,\u0022removedWidgets\u0022:[],\u0022addedWidgets\u0022:{},\u0022type\u0022:\u0022html\u0022,\u0022arguments\u0022:{}}}},{\u0022output_type\u0022:\u0022display_data\u0022,\u0022data\u0022:{\u0022text/html\u0022:\u0022\u003Cstyle scoped\u003E\\n .ansiout {\\n display: block;\\n unicode-bidi: embed;\\n white-space: pre-wrap;\\n word-wrap: break-word;\\n word-break: break-all;\\n font-family: \\\u0022Source Code Pro\\\u0022, \\\u0022Menlo\\\u0022, monospace;;\\n font-size: 13px;\\n color: #555;\\n margin-left: 4px;\\n line-height: 19px;\\n }\\n\u003C/style\u003E\\n\u003Cdiv class=\\\u0022ansiout\\\u0022\u003E\u003Cspan class=\\\u0022ansi-red-fg\\\u0022\u003E---------------------------------------------------------------------------\u003C/span\u003E\\n\u003Cspan class=\\\u0022ansi-red-fg\\\u0022\u003ENameError\u003C/span\u003E Traceback (most recent call last)\\n\u003Cspan class=\\\u0022ansi-green-fg\\\u0022\u003E\u0026lt;command-1159393715563018\u0026gt;\u003C/span\u003E in \u003Cspan class=\\\u0022ansi-cyan-fg\\\u0022\u003E\u0026lt;module\u0026gt;\u003C/span\u003E\\n\u003Cspan class=\\\u0022ansi-green-intense-fg ansi-bold\\\u0022\u003E 66\u003C/span\u003E _GLOBAL_DATA_NAME \u003Cspan class=\\\u0022ansi-blue-fg\\\u0022\u003E=\u003C/span\u003E dotenv\u003Cspan class=\\\u0022ansi-blue-fg\\\u0022\u003E.\u003C/span\u003Eget_key\u003Cspan class=\\\u0022ansi-blue-fg\\\u0022\u003E(\u003C/span\u003E_GLOBAL_DOTENV_PATH\u003Cspan class=\\\u0022ansi-blue-fg\\\u0022\u003E,\u003C/span\u003E \u003Cspan class=\\\u0022ansi-blue-fg\\\u0022\u003E\u0026#34;data_name\u0026#34;\u003C/span\u003E\u003Cspan class=\\\u0022ansi-blue-fg\\\u0022\u003E)\u003C/span\u003E\\n\u003Cspan class=\\\u0022ansi-green-intense-fg ansi-bold\\\u0022\u003E 67\u003C/span\u003E _GLOBAL_ADAPTER_PARTIAL = functools.partial(\\n\u003Cspan class=\\\u0022ansi-green-fg\\\u0022\u003E---\u0026gt; 68\u003C/span\u003E\u003Cspan class=\\\u0022ansi-red-fg\\\u0022\u003E \u003C/span\u003EADLSAdapter\u003Cspan class=\\\u0022ansi-blue-fg\\\u0022\u003E,\u003C/span\u003E\\n\u003Cspan class=\\\u0022ansi-green-intense-fg ansi-bold\\\u0022\u003E 69\u003C/span\u003E hostname\u003Cspan class=\\\u0022ansi-blue-fg\\\u0022\u003E=\u003C/span\u003E_GLOBAL_ADLS_HOSTNAME\u003Cspan class=\\\u0022ansi-blue-fg\\\u0022\u003E,\u003C/span\u003E\\n\u003Cspan class=\\\u0022ansi-green-intense-fg ansi-bold\\\u0022\u003E 70\u003C/span\u003E tenant\u003Cspan class=\\\u0022ansi-blue-fg\\\u0022\u003E=\u003C/span\u003E_GLOBAL_ADLS_DIRID\u003Cspan class=\\\u0022ansi-blue-fg\\\u0022\u003E,\u003C/span\u003E\\n\\n\u003Cspan class=\\\u0022ansi-red-fg\\\u0022\u003ENameError\u003C/span\u003E: name \u0026#39;ADLSAdapter\u0026#39; is not defined\u003C/div\u003E\u0022},\u0022metadata\u0022:{\u0022application/vnd.databricks.v1\u002Boutput\u0022:{\u0022type\u0022:\u0022ipynbError\u0022,\u0022data\u0022:\u0022\u003Cdiv class=\\\u0022ansiout\\\u0022\u003E\u003Cspan class=\\\u0022ansi-red-fg\\\u0022\u003E---------------------------------------------------------------------------\u003C/span\u003E\\n\u003Cspan class=\\\u0022ansi-red-fg\\\u0022\u003ENameError\u003C/span\u003E Traceback (most recent call last)\\n\u003Cspan class=\\\u0022ansi-green-fg\\\u0022\u003E\u0026lt;command-1159393715563018\u0026gt;\u003C/span\u003E in \u003Cspan class=\\\u0022ansi-cyan-fg\\\u0022\u003E\u0026lt;module\u0026gt;\u003C/span\u003E\\n\u003Cspan class=\\\u0022ansi-green-intense-fg ansi-bold\\\u0022\u003E 66\u003C/span\u003E _GLOBAL_DATA_NAME \u003Cspan class=\\\u0022ansi-blue-fg\\\u0022\u003E=\u003C/span\u003E dotenv\u003Cspan class=\\\u0022ansi-blue-fg\\\u0022\u003E.\u003C/span\u003Eget_key\u003Cspan class=\\\u0022ansi-blue-fg\\\u0022\u003E(\u003C/span\u003E_GLOBAL_DOTENV_PATH\u003Cspan class=\\\u0022ansi-blue-fg\\\u0022\u003E,\u003C/span\u003E \u003Cspan class=\\\u0022ansi-blue-fg\\\u0022\u003E\u0026#34;data_name\u0026#34;\u003C/span\u003E\u003Cspan class=\\\u0022ansi-blue-fg\\\u0022\u003E)\u003C/span\u003E\\n\u003Cspan class=\\\u0022ansi-green-intense-fg ansi-bold\\\u0022\u003E 67\u003C/span\u003E _GLOBAL_ADAPTER_PARTIAL = functools.partial(\\n\u003Cspan class=\\\u0022ansi-green-fg\\\u0022\u003E---\u0026gt; 68\u003C/span\u003E\u003Cspan class=\\\u0022ansi-red-fg\\\u0022\u003E \u003C/span\u003EADLSAdapter\u003Cspan class=\\\u0022ansi-blue-fg\\\u0022\u003E,\u003C/span\u003E\\n\u003Cspan class=\\\u0022ansi-green-intense-fg ansi-bold\\\u0022\u003E 69\u003C/span\u003E hostname\u003Cspan class=\\\u0022ansi-blue-fg\\\u0022\u003E=\u003C/span\u003E_GLOBAL_ADLS_HOSTNAME\u003Cspan class=\\\u0022ansi-blue-fg\\\u0022\u003E,\u003C/span\u003E\\n\u003Cspan class=\\\u0022ansi-green-intense-fg ansi-bold\\\u0022\u003E 70\u003C/span\u003E tenant\u003Cspan class=\\\u0022ansi-blue-fg\\\u0022\u003E=\u003C/span\u003E_GLOBAL_ADLS_DIRID\u003Cspan class=\\\u0022ansi-blue-fg\\\u0022\u003E,\u003C/span\u003E\\n\\n\u003Cspan class=\\\u0022ansi-red-fg\\\u0022\u003ENameError\u003C/span\u003E: name \u0026#39;ADLSAdapter\u0026#39; is not defined\u003C/div\u003E\u0022,\u0022errorSummary\u0022:\u0022\u003Cspan class=\\\u0022ansi-red-fg\\\u0022\u003ENameError\u003C/span\u003E: name \u0026#39;ADLSAdapter\u0026#39; is not defined\u0022,\u0022arguments\u0022:{}}}}],\u0022execution_count\u0022:0},{\u0022cell_type\u0022:\u0022code\u0022,\u0022metadata\u0022:{\u0022application/vnd.databricks.v1\u002Bcell\u0022:{\u0022title\u0022:\u0022\u0022,\u0022showTitle\u0022:false,\u0022inputWidgets\u0022:{},\u0022nuid\u0022:\u0022639595d4-4083-4f33-a7d4-15af60e7b3d6\u0022}},\u0022source\u0022:[\u0022# Spark initialization\\n\u0022,\u0022SUBMIT_ARGS = \\\u0022--packages eisber:sarplus:0.2.6 pyspark-shell\\\u0022\\n\u0022,\u0022os.environ[\\\u0022PYSPARK_SUBMIT_ARGS\\\u0022] = SUBMIT_ARGS\\n\u0022,\u0022\\n\u0022,\u0022spark = (\\n\u0022,\u0022 SparkSession.builder.appName(\\\u0022sample\\\u0022)\\n\u0022,\u0022 .master(\\\u0022local[*]\\\u0022)\\n\u0022,\u0022 .config(\\\u0022memory\\\u0022, \\\u00221G\\\u0022)\\n\u0022,\u0022 .config(\\\u0022spark.sql.shuffle.partitions\\\u0022, \\\u00221\\\u0022)\\n\u0022,\u0022 .config(\\\u0022spark.sql.crossJoin.enabled\\\u0022, True)\\n\u0022,\u0022 .config(\\\u0022spark.ui.enabled\\\u0022, False)\\n\u0022,\u0022 .getOrCreate()\\n\u0022,\u0022)\\n\u0022,\u0022\\n\u0022,\u0022# SqlContext helps with doing SQL like queries on spark DFs.\\n\u0022,\u0022sqlContext = SQLContext(spark)\\n\u0022,\u0022\\n\u0022,\u0022# Configure the Spark session to avoid using mount\\n\u0022,\u0022spark.conf.set(\\\u0022fs.azure.account.auth.type.{0}.dfs.core.windows.net\\\u0022.format(_GLOBAL_ADLS_ACCOUNT), \\\u0022OAuth\\\u0022)\\n\u0022,\u0022spark.conf.set(\\n\u0022,\u0022 \\\u0022fs.azure.account.oauth.provider.type.{0}.dfs.core.windows.net\\\u0022.format(_GLOBAL_ADLS_ACCOUNT),\\n\u0022,\u0022 \\\u0022org.apache.hadoop.fs.azurebfs.oauth2.ClientCredsTokenProvider\\\u0022,\\n\u0022,\u0022)\\n\u0022,\u0022spark.conf.set(\\n\u0022,\u0022 \\\u0022fs.azure.account.oauth2.client.id.{0}.dfs.core.windows.net\\\u0022.format(_GLOBAL_ADLS_ACCOUNT), _GLOBAL_ADLS_APPID\\n\u0022,\u0022)\\n\u0022,\u0022spark.conf.set(\\n\u0022,\u0022 \\\u0022fs.azure.account.oauth2.client.secret.{0}.dfs.core.windows.net\\\u0022.format(_GLOBAL_ADLS_ACCOUNT), _GLOBAL_ADLS_SECRET\\n\u0022,\u0022)\\n\u0022,\u0022spark.conf.set(\\n\u0022,\u0022 \\\u0022fs.azure.account.oauth2.client.endpoint.{0}.dfs.core.windows.net\\\u0022.format(_GLOBAL_ADLS_ACCOUNT),\\n\u0022,\u0022 \\\u0022https://login.microsoftonline.com/{0}/oauth2/token\\\u0022.format(_GLOBAL_ADLS_DIRID),\\n\u0022,\u0022)\u0022],\u0022attachments\u0022:null,\u0022outputs\u0022:[],\u0022execution_count\u0022:0},{\u0022cell_type\u0022:\u0022code\u0022,\u0022metadata\u0022:{\u0022application/vnd.databricks.v1\u002Bcell\u0022:{\u0022title\u0022:\u0022\u0022,\u0022showTitle\u0022:false,\u0022inputWidgets\u0022:{},\u0022nuid\u0022:\u0022614662de-2288-451e-b238-b6190156aac4\u0022}},\u0022source\u0022:[\u0022# Mount the remove ADLS container on the local databricks\\n\u0022,\u0022\\n\u0022,\u0022# Unmount an existing mount point\\n\u0022,\u0022try:\\n\u0022,\u0022 dbutils.fs.unmount(_GLOBAL_ADLS_DICT[\\\u0022adls_container_mount_point\\\u0022])\\n\u0022,\u0022except Exception as ex:\\n\u0022,\u0022 if \\\u0022Directory not mounted\\\u0022 not in str(ex):\\n\u0022,\u0022 raise Exception(\\\u0022Error in unmounting\\\u0022)\\n\u0022,\u0022\\n\u0022,\u0022# Mount wit the provided configuration information\\n\u0022,\u0022configs = {\\n\u0022,\u0022 \\\u0022fs.azure.account.auth.type\\\u0022: \\\u0022OAuth\\\u0022,\\n\u0022,\u0022 \\\u0022fs.azure.account.oauth.provider.type\\\u0022: \\\u0022org.apache.hadoop.fs.azurebfs.oauth2.ClientCredsTokenProvider\\\u0022,\\n\u0022,\u0022 \\\u0022fs.azure.account.oauth2.client.id\\\u0022: _GLOBAL_CONFIG_DICT[\\\u0022clientId\\\u0022],\\n\u0022,\u0022 \\\u0022fs.azure.account.oauth2.client.secret\\\u0022: _GLOBAL_CONFIG_DICT[\\\u0022clientSecret\\\u0022],\\n\u0022,\u0022 \\\u0022fs.azure.account.oauth2.client.endpoint\\\u0022: _GLOBAL_ADLS_DICT[\\\u0022oauth_endpoint\\\u0022],\\n\u0022,\u0022}\\n\u0022,\u0022dbutils.fs.mount(\\n\u0022,\u0022 source=_GLOBAL_ADLS_DICT[\\\u0022adls_source\\\u0022],\\n\u0022,\u0022 mount_point=_GLOBAL_ADLS_DICT[\\\u0022adls_container_mount_point\\\u0022],\\n\u0022,\u0022 extra_configs=configs,\\n\u0022,\u0022)\\n\u0022,\u0022\\n\u0022,\u0022# List the contents in the mounted directory\\n\u0022,\u0022dbutils.fs.ls(_GLOBAL_ADLS_DICT[\\\u0022adls_container_mount_point\\\u0022])\\n\u0022,\u0022\\n\u0022,\u0022# Make a new directory for model cache use\\n\u0022,\u0022dbutils.fs.mkdirs(_GLOBAL_ADLS_DICT[\\\u0022adls_model_cache\\\u0022])\u0022],\u0022attachments\u0022:null,\u0022outputs\u0022:[],\u0022execution_count\u0022:0}],\u0022folder\u0022:{\u0022name\u0022:\u0022nbfolder/test1\u0022}}},{\u0022id\u0022:\u0022/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/HelloWorld\u0022,\u0022name\u0022:\u0022HelloWorld\u0022,\u0022type\u0022:\u0022Microsoft.Synapse/workspaces/notebooks\u0022,\u0022etag\u0022:\u00220e00670b-0000-0100-0000-6142dcab0000\u0022,\u0022properties\u0022:{\u0022nbformat\u0022:4,\u0022nbformat_minor\u0022:2,\u0022entityState\u0022:null,\u0022renameOperationDetails\u0022:null,\u0022bigDataPool\u0022:{\u0022referenceName\u0022:\u0022testsparkpool\u0022,\u0022type\u0022:\u0022BigDataPoolReference\u0022},\u0022sessionProperties\u0022:{\u0022driverMemory\u0022:\u002228g\u0022,\u0022driverCores\u0022:4,\u0022executorMemory\u0022:\u002228g\u0022,\u0022executorCores\u0022:4,\u0022numExecutors\u0022:2,\u0022conf\u0022:{\u0022spark.dynamicAllocation.enabled\u0022:\u0022false\u0022,\u0022spark.dynamicAllocation.minExecutors\u0022:\u00222\u0022,\u0022spark.dynamicAllocation.maxExecutors\u0022:\u00222\u0022}},\u0022metadata\u0022:{\u0022language_info\u0022:{\u0022name\u0022:\u0022python\u0022},\u0022a365ComputeOptions\u0022:{\u0022id\u0022:\u0022/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/bigDataPools/testsparkpool\u0022,\u0022name\u0022:\u0022testsparkpool\u0022,\u0022type\u0022:\u0022Spark\u0022,\u0022endpoint\u0022:\u0022https://testsynapseworkspace.dev.azuresynapse.net/livyApi/versions/2019-11-01-preview/sparkPools/testsparkpool\u0022,\u0022auth\u0022:{\u0022type\u0022:\u0022AAD\u0022,\u0022authResource\u0022:\u0022https://dev.azuresynapse.net\u0022},\u0022sparkVersion\u0022:\u00222.4\u0022,\u0022nodeCount\u0022:3,\u0022cores\u0022:8,\u0022memory\u0022:56,\u0022extraHeader\u0022:null},\u0022sessionKeepAliveTimeout\u0022:30,\u0022saveOutput\u0022:true,\u0022synapse_widget\u0022:{\u0022version\u0022:\u00220.1\u0022,\u0022state\u0022:{}},\u0022kernelspec\u0022:{\u0022name\u0022:\u0022synapse_pyspark\u0022,\u0022display_name\u0022:\u0022python\u0022}},\u0022cells\u0022:[{\u0022cell_type\u0022:\u0022code\u0022,\u0022metadata\u0022:{},\u0022source\u0022:[\u0022# comment\\r\\n\u0022,\u0022print(\\\u0022Hello World\\\u0022)\u0022],\u0022attachments\u0022:null,\u0022outputs\u0022:[],\u0022execution_count\u0022:null}],\u0022folder\u0022:null}},{\u0022id\u0022:\u0022/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/notebook-04-14-00-07\u0022,\u0022name\u0022:\u0022notebook-04-14-00-07\u0022,\u0022type\u0022:\u0022Microsoft.Synapse/workspaces/notebooks\u0022,\u0022etag\u0022:\u00226003a078-0000-0100-0000-607694d80000\u0022,\u0022properties\u0022:{\u0022nbformat\u0022:4,\u0022nbformat_minor\u0022:2,\u0022entityState\u0022:null,\u0022renameOperationDetails\u0022:null,\u0022bigDataPool\u0022:{\u0022referenceName\u0022:\u0022testsparkpool\u0022,\u0022type\u0022:\u0022BigDataPoolReference\u0022},\u0022sessionProperties\u0022:{\u0022driverMemory\u0022:\u002228g\u0022,\u0022driverCores\u0022:3,\u0022executorMemory\u0022:\u002245g\u0022,\u0022executorCores\u0022:7,\u0022numExecutors\u0022:2,\u0022conf\u0022:null},\u0022metadata\u0022:{\u0022language_info\u0022:{\u0022name\u0022:\u0022python\u0022},\u0022a365ComputeOptions\u0022:null,\u0022sessionKeepAliveTimeout\u0022:0},\u0022cells\u0022:[{\u0022cell_type\u0022:\u0022code\u0022,\u0022metadata\u0022:{\u0022tags\u0022:[\u0022parameters\u0022]},\u0022source\u0022:[\u0022\u0022],\u0022attachments\u0022:null,\u0022outputs\u0022:[],\u0022execution_count\u0022:null},{\u0022cell_type\u0022:\u0022code\u0022,\u0022metadata\u0022:{},\u0022source\u0022:[\u0022print(param)\u0022],\u0022attachments\u0022:null,\u0022outputs\u0022:[],\u0022execution_count\u0022:null}],\u0022folder\u0022:null}},{\u0022id\u0022:\u0022/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/notebook-04-14-00-09\u0022,\u0022name\u0022:\u0022notebook-04-14-00-09\u0022,\u0022type\u0022:\u0022Microsoft.Synapse/workspaces/notebooks\u0022,\u0022etag\u0022:\u00226103a451-0000-0100-0000-6076953a0000\u0022,\u0022properties\u0022:{\u0022nbformat\u0022:4,\u0022nbformat_minor\u0022:2,\u0022entityState\u0022:null,\u0022renameOperationDetails\u0022:null,\u0022bigDataPool\u0022:{\u0022referenceName\u0022:\u0022testsparkpool\u0022,\u0022type\u0022:\u0022BigDataPoolReference\u0022},\u0022sessionProperties\u0022:{\u0022driverMemory\u0022:\u002228g\u0022,\u0022driverCores\u0022:3,\u0022executorMemory\u0022:\u002245g\u0022,\u0022executorCores\u0022:7,\u0022numExecutors\u0022:2,\u0022conf\u0022:null},\u0022metadata\u0022:{\u0022language_info\u0022:{\u0022name\u0022:\u0022python\u0022},\u0022a365ComputeOptions\u0022:null,\u0022sessionKeepAliveTimeout\u0022:0},\u0022cells\u0022:[{\u0022cell_type\u0022:\u0022code\u0022,\u0022metadata\u0022:{\u0022tags\u0022:[\u0022parameters\u0022]},\u0022source\u0022:[\u0022\u0022],\u0022attachments\u0022:null,\u0022outputs\u0022:[],\u0022execution_count\u0022:null},{\u0022cell_type\u0022:\u0022code\u0022,\u0022metadata\u0022:{},\u0022source\u0022:[\u0022print(param)\u0022],\u0022attachments\u0022:null,\u0022outputs\u0022:[],\u0022execution_count\u0022:null}],\u0022folder\u0022:null}},{\u0022id\u0022:\u0022/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/notebook-04-19-23-25\u0022,\u0022name\u0022:\u0022notebook-04-19-23-25\u0022,\u0022type\u0022:\u0022Microsoft.Synapse/workspaces/notebooks\u0022,\u0022etag\u0022:\u0022060096a2-0000-0100-0000-607e73c90000\u0022,\u0022properties\u0022:{\u0022nbformat\u0022:4,\u0022nbformat_minor\u0022:2,\u0022entityState\u0022:null,\u0022renameOperationDetails\u0022:null,\u0022bigDataPool\u0022:{\u0022referenceName\u0022:\u0022testsparkpool\u0022,\u0022type\u0022:\u0022BigDataPoolReference\u0022},\u0022sessionProperties\u0022:{\u0022driverMemory\u0022:\u002228g\u0022,\u0022driverCores\u0022:3,\u0022executorMemory\u0022:\u002245g\u0022,\u0022executorCores\u0022:7,\u0022numExecutors\u0022:2,\u0022conf\u0022:null},\u0022metadata\u0022:{\u0022language_info\u0022:{\u0022name\u0022:\u0022python\u0022},\u0022a365ComputeOptions\u0022:null,\u0022sessionKeepAliveTimeout\u0022:0},\u0022cells\u0022:[{\u0022cell_type\u0022:\u0022code\u0022,\u0022metadata\u0022:{\u0022tags\u0022:[\u0022parameters\u0022]},\u0022source\u0022:[\u0022\u0022],\u0022attachments\u0022:null,\u0022outputs\u0022:[],\u0022execution_count\u0022:null},{\u0022cell_type\u0022:\u0022code\u0022,\u0022metadata\u0022:{},\u0022source\u0022:[\u0022print(param)\u0022],\u0022attachments\u0022:null,\u0022outputs\u0022:[],\u0022execution_count\u0022:null}],\u0022folder\u0022:null}},{\u0022id\u0022:\u0022/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/dwnb0723\u0022,\u0022name\u0022:\u0022dwnb0723\u0022,\u0022type\u0022:\u0022Microsoft.Synapse/workspaces/notebooks\u0022,\u0022etag\u0022:\u002203001052-0000-0100-0000-60e831ea0000\u0022,\u0022properties\u0022:{\u0022nbformat\u0022:4,\u0022nbformat_minor\u0022:2,\u0022entityState\u0022:null,\u0022renameOperationDetails\u0022:null,\u0022bigDataPool\u0022:null,\u0022sessionProperties\u0022:{\u0022driverMemory\u0022:\u002228g\u0022,\u0022driverCores\u0022:4,\u0022executorMemory\u0022:\u002228g\u0022,\u0022executorCores\u0022:4,\u0022numExecutors\u0022:2,\u0022conf\u0022:{\u0022spark.dynamicAllocation.enabled\u0022:\u0022false\u0022,\u0022spark.dynamicAllocation.minExecutors\u0022:\u00222\u0022,\u0022spark.dynamicAllocation.maxExecutors\u0022:\u00222\u0022}},\u0022metadata\u0022:{\u0022language_info\u0022:{\u0022name\u0022:\u0022python\u0022},\u0022a365ComputeOptions\u0022:null,\u0022sessionKeepAliveTimeout\u0022:30,\u0022saveOutput\u0022:true,\u0022synapse_widget\u0022:{\u0022version\u0022:\u00220.1\u0022,\u0022state\u0022:{}},\u0022kernelspec\u0022:{\u0022name\u0022:\u0022synapse_pyspark\u0022,\u0022display_name\u0022:\u0022python\u0022}},\u0022cells\u0022:[{\u0022cell_type\u0022:\u0022code\u0022,\u0022metadata\u0022:{},\u0022source\u0022:[\u0022print(\u0027hello\u0027)\u0022],\u0022attachments\u0022:null,\u0022outputs\u0022:[],\u0022execution_count\u0022:null}],\u0022folder\u0022:null}},{\u0022id\u0022:\u0022/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/BRMSRule\u0022,\u0022name\u0022:\u0022BRMSRule\u0022,\u0022type\u0022:\u0022Microsoft.Synapse/workspaces/notebooks\u0022,\u0022etag\u0022:\u00220e00f869-0000-0100-0000-611a2fa50000\u0022,\u0022properties\u0022:{\u0022nbformat\u0022:4,\u0022nbformat_minor\u0022:2,\u0022entityState\u0022:null,\u0022renameOperationDetails\u0022:null,\u0022bigDataPool\u0022:{\u0022referenceName\u0022:\u0022testportal\u0022,\u0022type\u0022:\u0022BigDataPoolReference\u0022},\u0022sessionProperties\u0022:{\u0022driverMemory\u0022:\u002228g\u0022,\u0022driverCores\u0022:4,\u0022executorMemory\u0022:\u002228g\u0022,\u0022executorCores\u0022:4,\u0022numExecutors\u0022:2,\u0022conf\u0022:null},\u0022metadata\u0022:{\u0022language_info\u0022:{\u0022name\u0022:\u0022python\u0022},\u0022a365ComputeOptions\u0022:{\u0022id\u0022:\u0022/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/bigDataPools/testportal\u0022,\u0022name\u0022:\u0022testportal\u0022,\u0022type\u0022:\u0022Spark\u0022,\u0022endpoint\u0022:\u0022https://testsynapseworkspace.dev.azuresynapse.net/livyApi/versions/2019-11-01-preview/sparkPools/testportal\u0022,\u0022auth\u0022:{\u0022type\u0022:\u0022AAD\u0022,\u0022authResource\u0022:\u0022https://dev.azuresynapse.net\u0022},\u0022sparkVersion\u0022:\u00223.0\u0022,\u0022nodeCount\u0022:10,\u0022cores\u0022:4,\u0022memory\u0022:28,\u0022extraHeader\u0022:null},\u0022sessionKeepAliveTimeout\u0022:30,\u0022saveOutput\u0022:true},\u0022cells\u0022:[{\u0022cell_type\u0022:\u0022code\u0022,\u0022metadata\u0022:{\u0022cellLanguage\u0022:\u0022python\u0022,\u0022tags\u0022:[\u0022parameters\u0022]},\u0022source\u0022:[\u0022param = \\\u0022\\\u0022\u0022],\u0022attachments\u0022:null,\u0022outputs\u0022:[],\u0022execution_count\u0022:null},{\u0022cell_type\u0022:\u0022code\u0022,\u0022metadata\u0022:null,\u0022source\u0022:[\u0022print(param)\\n\u0022,\u0022print(\\\u0022updated 12:29\\\u0022)\\n\u0022,\u0022a = \\\u0022\\\u0022\\\u0022\\n\u0022,\u0022/*Rule:OEMDealFlagPlan_OneConsumerPlanCustomGrouping-BEGIN*/ /*Rule:OEMDealFlagPlan_OneConsumerPlanCustomGrouping-END*/\\n\u0022,\u0022\\\u0022\\\u0022\\\u0022\\n\u0022,\u0022print(a)\u0022],\u0022attachments\u0022:null,\u0022outputs\u0022:[],\u0022execution_count\u0022:null}],\u0022folder\u0022:null}},{\u0022id\u0022:\u0022/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/dwtestnbdescription\u0022,\u0022name\u0022:\u0022dwtestnbdescription\u0022,\u0022type\u0022:\u0022Microsoft.Synapse/workspaces/notebooks\u0022,\u0022etag\u0022:\u00220e00710b-0000-0100-0000-6142dcb10000\u0022,\u0022properties\u0022:{\u0022nbformat\u0022:4,\u0022nbformat_minor\u0022:2,\u0022entityState\u0022:null,\u0022renameOperationDetails\u0022:null,\u0022bigDataPool\u0022:null,\u0022sessionProperties\u0022:{\u0022driverMemory\u0022:\u002228g\u0022,\u0022driverCores\u0022:4,\u0022executorMemory\u0022:\u002228g\u0022,\u0022executorCores\u0022:4,\u0022numExecutors\u0022:2,\u0022conf\u0022:{\u0022spark.dynamicAllocation.enabled\u0022:\u0022false\u0022,\u0022spark.dynamicAllocation.minExecutors\u0022:\u00222\u0022,\u0022spark.dynamicAllocation.maxExecutors\u0022:\u00222\u0022}},\u0022metadata\u0022:{\u0022language_info\u0022:{\u0022name\u0022:\u0022python\u0022},\u0022a365ComputeOptions\u0022:null,\u0022sessionKeepAliveTimeout\u0022:30,\u0022saveOutput\u0022:true,\u0022synapse_widget\u0022:{\u0022version\u0022:\u00220.1\u0022,\u0022state\u0022:{}},\u0022kernelspec\u0022:{\u0022name\u0022:\u0022synapse_pyspark\u0022,\u0022display_name\u0022:\u0022python\u0022}},\u0022cells\u0022:[{\u0022cell_type\u0022:\u0022code\u0022,\u0022metadata\u0022:{},\u0022source\u0022:[\u0022\u0022],\u0022attachments\u0022:null,\u0022outputs\u0022:[],\u0022execution_count\u0022:null}],\u0022folder\u0022:null}},{\u0022id\u0022:\u0022/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/Notebook82429219\u0022,\u0022name\u0022:\u0022Notebook82429219\u0022,\u0022type\u0022:\u0022Microsoft.Synapse/workspaces/notebooks\u0022,\u0022etag\u0022:\u00222e001e88-0000-0100-0000-615568630000\u0022,\u0022properties\u0022:{\u0022nbformat\u0022:4,\u0022nbformat_minor\u0022:2,\u0022entityState\u0022:null,\u0022renameOperationDetails\u0022:null,\u0022bigDataPool\u0022:null,\u0022sessionProperties\u0022:null,\u0022metadata\u0022:{\u0022language_info\u0022:{\u0022name\u0022:\u0022Python\u0022},\u0022a365ComputeOptions\u0022:null,\u0022sessionKeepAliveTimeout\u0022:0},\u0022cells\u0022:[],\u0022folder\u0022:null}},{\u0022id\u0022:\u0022/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/Notebook12432614\u0022,\u0022name\u0022:\u0022Notebook12432614\u0022,\u0022type\u0022:\u0022Microsoft.Synapse/workspaces/notebooks\u0022,\u0022etag\u0022:\u00222e005a80-0000-0100-0000-615556e70000\u0022,\u0022properties\u0022:{\u0022nbformat\u0022:4,\u0022nbformat_minor\u0022:2,\u0022entityState\u0022:null,\u0022renameOperationDetails\u0022:null,\u0022bigDataPool\u0022:null,\u0022sessionProperties\u0022:null,\u0022metadata\u0022:{\u0022language_info\u0022:{\u0022name\u0022:\u0022Python\u0022},\u0022a365ComputeOptions\u0022:null,\u0022sessionKeepAliveTimeout\u0022:0},\u0022cells\u0022:[],\u0022folder\u0022:null}}]}" + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebooks/Notebook%201?api-version=2020-12-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-e3d01f2451003240a1c989e3144db03c-fd265c0cbb82d349-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "aa581e4d7fddb2e9ecaafef864a3f37e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 30 Sep 2021 07:33:56 GMT", + "Request-Context": "appId=", + "Server": "Kestrel Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=2592000", + "Transfer-Encoding": "chunked", + "x-ms-client-request-id": "aa581e4d7fddb2e9ecaafef864a3f37e", + "x-ms-request-id": "0d029a08-a3c2-49f3-a1bf-994a662f9ff3" }, "ResponseBody": { - "value": [ - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1684117927", - "name": "Notebook1684117927", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "f6012603-0000-0800-0000-5fd2580b0000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1804657934", - "name": "Notebook1804657934", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "f601cc04-0000-0800-0000-5fd258190000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1646004302", - "name": "Notebook1646004302", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "f6016c1d-0000-0800-0000-5fd258f80000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1859490190", - "name": "Notebook1859490190", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "f6017c1f-0000-0800-0000-5fd2590b0000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook654468314", - "name": "Notebook654468314", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "f601a43c-0000-0800-0000-5fd259f00000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook549168620", - "name": "Notebook549168620", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "f6011246-0000-0800-0000-5fd25a380000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/Notebook 1", + "name": "Notebook 1", + "type": "Microsoft.Synapse/workspaces/notebooks", + "properties": { + "nbformat": 4, + "nbformat_minor": 2, + "entityState": null, + "renameOperationDetails": null, + "bigDataPool": { + "referenceName": "testsparkpool", + "type": "BigDataPoolReference" }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1579958647", - "name": "Notebook1579958647", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "f601f6ab-0000-0800-0000-5fd25e090000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null + "sessionProperties": { + "driverMemory": "28g", + "driverCores": 4, + "executorMemory": "28g", + "executorCores": 4, + "numExecutors": 1, + "conf": { + "spark.dynamicAllocation.enabled": "false", + "spark.dynamicAllocation.minExecutors": "1", + "spark.dynamicAllocation.maxExecutors": "1" } }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook2051316949", - "name": "Notebook2051316949", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "f601d5ad-0000-0800-0000-5fd25e1a0000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 + "metadata": { + "language_info": { + "name": "python" + }, + "a365ComputeOptions": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/bigDataPools/testsparkpool", + "name": "testsparkpool", + "type": "Spark", + "endpoint": "https://testsynapseworkspace.dev.azuresynapse.net/livyApi/versions/2019-11-01-preview/sparkPools/testsparkpool", + "auth": { + "type": "AAD", + "authResource": "https://dev.azuresynapse.net" }, - "cells": [], - "folder": null + "sparkVersion": "2.4", + "nodeCount": 3, + "cores": 8, + "memory": 56, + "extraHeader": null + }, + "sessionKeepAliveTimeout": 30, + "saveOutput": true, + "synapse_widget": { + "version": "0.1", + "state": {} + }, + "kernelspec": { + "name": "synapse_pyspark", + "display_name": "python" } }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1928140462", - "name": "Notebook1928140462", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "f601d3c2-0000-0800-0000-5fd25ed90000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null + "cells": [ + { + "cell_type": "code", + "metadata": {}, + "source": [ + "print(\u0022hello from portal\u0022)" + ], + "attachments": {}, + "outputs": [], + "execution_count": null } + ], + "folder": { + "name": "nbfolder" + } + }, + "etag": "1700db78-0000-0100-0000-60f7a2160000" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebooks/dongwwaTestNotebook?api-version=2020-12-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-ff7ffbadc1266d4d89696fe41dfc3b08-656b1226b7c78f4c-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "3fae8d2981069a720ec402b792a59b9e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 30 Sep 2021 07:33:56 GMT", + "Request-Context": "appId=", + "Server": "Kestrel Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=2592000", + "Transfer-Encoding": "chunked", + "x-ms-client-request-id": "3fae8d2981069a720ec402b792a59b9e", + "x-ms-request-id": "158a37a5-5a4b-4b51-ad02-7d560d850116" + }, + "ResponseBody": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/dongwwaTestNotebook", + "name": "dongwwaTestNotebook", + "type": "Microsoft.Synapse/workspaces/notebooks", + "properties": { + "nbformat": 4, + "nbformat_minor": 2, + "entityState": null, + "renameOperationDetails": null, + "bigDataPool": null, + "sessionProperties": { + "driverMemory": "28g", + "driverCores": 4, + "executorMemory": "28g", + "executorCores": 4, + "numExecutors": 2, + "conf": null }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1404386034", - "name": "Notebook1404386034", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "f601cfc4-0000-0800-0000-5fd25eeb0000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } + "metadata": { + "language_info": { + "name": "python" + }, + "a365ComputeOptions": null, + "sessionKeepAliveTimeout": 30 }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook303724026", - "name": "Notebook303724026", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "f601d5dc-0000-0800-0000-5fd25fca0000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null + "cells": [ + { + "cell_type": "code", + "metadata": {}, + "source": [ + "print(\u0027hello\u0027)" + ], + "attachments": {}, + "outputs": [], + "execution_count": null } + ], + "folder": null + }, + "etag": "0100d5a0-0000-0100-0000-5ecba4720000" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebooks/dongwwaNb2?api-version=2020-12-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-ba00b779e5a73a4083a71a8534478bb1-3187f330eeaa9d49-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "dcacb48a3b15ac0dc474101a8b41489b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 30 Sep 2021 07:33:56 GMT", + "Request-Context": "appId=", + "Server": "Kestrel Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=2592000", + "Transfer-Encoding": "chunked", + "x-ms-client-request-id": "dcacb48a3b15ac0dc474101a8b41489b", + "x-ms-request-id": "1f0b0760-4b33-4c03-8a2b-555aafe876a4" + }, + "ResponseBody": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/dongwwaNb2", + "name": "dongwwaNb2", + "type": "Microsoft.Synapse/workspaces/notebooks", + "properties": { + "nbformat": 4, + "nbformat_minor": 2, + "entityState": null, + "renameOperationDetails": null, + "bigDataPool": { + "referenceName": "testportal", + "type": "BigDataPoolReference" }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1986851418", - "name": "Notebook1986851418", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "f7019633-0000-0800-0000-5fd2630c0000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } + "sessionProperties": { + "driverMemory": "28g", + "driverCores": 4, + "executorMemory": "28g", + "executorCores": 4, + "numExecutors": 3, + "conf": null }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1143245528", - "name": "Notebook1143245528", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "f701674a-0000-0800-0000-5fd263ee0000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 + "metadata": { + "language_info": { + "name": "python" + }, + "a365ComputeOptions": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/bigDataPools/testportal", + "name": "testportal", + "type": "Spark", + "endpoint": "https://testsynapseworkspace.dev.azuresynapse.net/livyApi/versions/2019-11-01-preview/sparkPools/testportal", + "auth": { + "type": "AAD", + "authResource": "https://dev.azuresynapse.net" }, - "cells": [], - "folder": null - } + "sparkVersion": "2.4", + "nodeCount": 3, + "cores": 8, + "memory": 56, + "extraHeader": {} + }, + "sessionKeepAliveTimeout": 15 }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook776941946", - "name": "Notebook776941946", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "f701ad4c-0000-0800-0000-5fd264020000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } + "cells": [], + "folder": null + }, + "etag": "1100d8f9-0000-0100-0000-5f1560de0000" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebooks/dongwwanb23?api-version=2020-12-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-b6f553cb7189ce42bb892ebcf57baae3-ffb4ad4e5b763040-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "0132529e720dccdfacbd9b197d311f46", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 30 Sep 2021 07:33:56 GMT", + "Request-Context": "appId=", + "Server": "Kestrel Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=2592000", + "Transfer-Encoding": "chunked", + "x-ms-client-request-id": "0132529e720dccdfacbd9b197d311f46", + "x-ms-request-id": "075f36e5-271d-477e-8bd7-ffb9731978af" + }, + "ResponseBody": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/dongwwanb23", + "name": "dongwwanb23", + "type": "Microsoft.Synapse/workspaces/notebooks", + "properties": { + "nbformat": 4, + "nbformat_minor": 2, + "entityState": null, + "renameOperationDetails": null, + "bigDataPool": { + "referenceName": "testportal", + "type": "BigDataPoolReference" }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook768271578", - "name": "Notebook768271578", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "f701ea65-0000-0800-0000-5fd264ed0000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } + "sessionProperties": { + "driverMemory": "28g", + "driverCores": 4, + "executorMemory": "28g", + "executorCores": 4, + "numExecutors": 2, + "conf": null }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1861354853", - "name": "Notebook1861354853", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "f7013468-0000-0800-0000-5fd265030000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 + "metadata": { + "language_info": { + "name": "python" + }, + "a365ComputeOptions": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/bigDataPools/testportal", + "name": "testportal", + "type": "Spark", + "endpoint": "https://testsynapseworkspace.dev.azuresynapse.net/livyApi/versions/2019-11-01-preview/sparkPools/testportal", + "auth": { + "type": "AAD", + "authResource": "https://dev.azuresynapse.net" }, - "cells": [], - "folder": null - } + "sparkVersion": "2.4", + "nodeCount": 3, + "cores": 8, + "memory": 56, + "extraHeader": {} + }, + "sessionKeepAliveTimeout": 30 }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook266631340", - "name": "Notebook266631340", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "f7017295-0000-0800-0000-5fd266a80000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } + "cells": [], + "folder": null + }, + "etag": "5f0005d3-0000-0100-0000-5f06bc3e0000" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebooks/dongwwatestnb1446?api-version=2020-12-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-4d51b1e59427b5469db74fa19d42f9c0-a007bf58bbbaa74d-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "af6d5f0e16f6ed697f027a9271570fcd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 30 Sep 2021 07:33:58 GMT", + "Request-Context": "appId=", + "Server": "Kestrel Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=2592000", + "Transfer-Encoding": "chunked", + "x-ms-client-request-id": "af6d5f0e16f6ed697f027a9271570fcd", + "x-ms-request-id": "db36c0a3-dc15-4881-b5da-b2f5e2fff99d" + }, + "ResponseBody": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/dongwwatestnb1446", + "name": "dongwwatestnb1446", + "type": "Microsoft.Synapse/workspaces/notebooks", + "properties": { + "nbformat": 4, + "nbformat_minor": 2, + "entityState": null, + "renameOperationDetails": null, + "bigDataPool": null, + "sessionProperties": { + "driverMemory": "28g", + "driverCores": 4, + "executorMemory": "28g", + "executorCores": 4, + "numExecutors": 2, + "conf": null }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook646248896", - "name": "Notebook646248896", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "f701cf98-0000-0800-0000-5fd266c70000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1980347592", - "name": "Notebook1980347592", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "190267ff-0000-0800-0000-5fd3ace00000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1304984445", - "name": "Notebook1304984445", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "1a028e01-0000-0800-0000-5fd3acf20000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/demo_notebook", - "name": "demo_notebook", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "b4007455-0000-0800-0000-5fe10bec0000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": null, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [ - { - "cell_type": "code", - "metadata": {}, - "source": [ - "from azureml.opendatasets import NycTlcYellow\n", - "\n", - "data = NycTlcYellow()\n", - "df = data.to_spark_dataframe()\n", - "# Display 10 rows\n", - "display(df.limit(10))" - ], - "attachments": null, - "outputs": [], - "execution_count": null - } - ], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1633376452", - "name": "Notebook1633376452", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "62022795-0000-0800-0000-5fd797690000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook655988637", - "name": "Notebook655988637", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "62026e97-0000-0800-0000-5fd797790000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook532689105", - "name": "Notebook532689105", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "620262c6-0000-0800-0000-5fd798eb0000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1829358631", - "name": "Notebook1829358631", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "6202fdc7-0000-0800-0000-5fd798f70000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1089839457", - "name": "Notebook1089839457", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "6202aaea-0000-0800-0000-5fd799fd0000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1770509283", - "name": "Notebook1770509283", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "620269ec-0000-0800-0000-5fd79a0b0000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook2091752578", - "name": "Notebook2091752578", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "830222f7-0000-0800-0000-5fd8d3c00000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook55604260", - "name": "Notebook55604260", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "830296f9-0000-0800-0000-5fd8d3d40000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1878657682", - "name": "Notebook1878657682", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "8402a931-0000-0800-0000-5fd8d57b0000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1963301614", - "name": "Notebook1963301614", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "84025134-0000-0800-0000-5fd8d58f0000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook254029507", - "name": "Notebook254029507", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "84026757-0000-0800-0000-5fd8d69f0000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook646101363", - "name": "Notebook646101363", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "8402385a-0000-0800-0000-5fd8d6b60000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1881803406", - "name": "Notebook1881803406", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "8702bdb3-0000-0800-0000-5fd8f1460000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1158468516", - "name": "Notebook1158468516", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "8702d8b5-0000-0800-0000-5fd8f1580000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook2118558115", - "name": "Notebook2118558115", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "8702abd4-0000-0800-0000-5fd8f24b0000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook878364584", - "name": "Notebook878364584", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "87023ad6-0000-0800-0000-5fd8f2570000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook691293477", - "name": "Notebook691293477", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "8702d2f6-0000-0800-0000-5fd8f3620000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook359117693", - "name": "Notebook359117693", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "870217f9-0000-0800-0000-5fd8f3740000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1137625687", - "name": "Notebook1137625687", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "8802bd64-0000-0800-0000-5fd8f6d90000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook701971566", - "name": "Notebook701971566", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "8802b566-0000-0800-0000-5fd8f6e80000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook709354216", - "name": "Notebook709354216", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "8802ac85-0000-0800-0000-5fd8f7fc0000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook2126593779", - "name": "Notebook2126593779", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "8802f687-0000-0800-0000-5fd8f8100000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook988670801", - "name": "Notebook988670801", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "8802fbaa-0000-0800-0000-5fd8f9290000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1106903387", - "name": "Notebook1106903387", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "88023fad-0000-0800-0000-5fd8f93b0000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook2083235159", - "name": "Notebook2083235159", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "4200b366-0000-0800-0000-5fda86b80000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook844332905", - "name": "Notebook844332905", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "42005e6a-0000-0800-0000-5fda86c80000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook536090795", - "name": "Notebook536090795", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "42001aae-0000-0800-0000-5fda87d10000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1387270550", - "name": "Notebook1387270550", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "420011b2-0000-0800-0000-5fda87df0000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook415720389", - "name": "Notebook415720389", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "4200a0f2-0000-0800-0000-5fda88d60000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - } - ], - "nextLink": "https://workspacechhamosynapse.dev.azuresynapse.net:443/notebooks?api-version=2019-06-01-preview\u0026%24skipToken=%2BRID%3A%7ESl8ZAKxwhACOUgAAAAD8BA%3D%3D%23RT%3A1%23TRC%3A50%23ISV%3A2%23IEO%3A65551%23QCF%3A1" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks?api-version=2019-06-01-preview\u0026%24skipToken=%2BRID%3A~Sl8ZAKxwhACOUgAAAAD8BA%3D%3D%23RT%3A1%23TRC%3A50%23ISV%3A2%23IEO%3A65551%23QCF%3A1", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-692b0271eb4b6e4589ef2e1146378781-a3f573b503a91e4e-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "aa581e4d7fddb2e9ecaafef864a3f37e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Length": "28788", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:56 GMT", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "aa581e4d7fddb2e9ecaafef864a3f37e", - "x-ms-request-id": "d77b9736-cd98-40ef-800e-057ff7547165" - }, - "ResponseBody": { - "value": [ - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook830360622", - "name": "Notebook830360622", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "420092f6-0000-0800-0000-5fda88e70000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1973916934", - "name": "Notebook1973916934", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "79007ba0-0000-0800-0000-5fdbaf830000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook2004418696", - "name": "Notebook2004418696", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "790036a5-0000-0800-0000-5fdbaf910000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1708824606", - "name": "Notebook1708824606", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "790039fc-0000-0800-0000-5fdbb0880000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook2125255332", - "name": "Notebook2125255332", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "7a00ad01-0000-0800-0000-5fdbb0970000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1794393844", - "name": "Notebook1794393844", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "7a00276a-0000-0800-0000-5fdbb1ac0000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook663395038", - "name": "Notebook663395038", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "7a001c6f-0000-0800-0000-5fdbb1b90000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1523732538", - "name": "Notebook1523732538", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "12009e94-0000-0800-0000-5fdcc7b50000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook503290111", - "name": "Notebook503290111", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "12008e98-0000-0800-0000-5fdcc7d40000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook2049484071", - "name": "Notebook2049484071", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "12003fcf-0000-0800-0000-5fdcc9a30000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook814493065", - "name": "Notebook814493065", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "120071d3-0000-0800-0000-5fdcc9c40000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook303835151", - "name": "Notebook303835151", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "1200eaff-0000-0800-0000-5fdccb400000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook140022211", - "name": "Notebook140022211", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "1300ee03-0000-0800-0000-5fdccb660000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1858151255", - "name": "Notebook1858151255", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "140000fd-0000-0800-0000-5fdcdd270000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1475602166", - "name": "Notebook1475602166", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "1400b1fe-0000-0800-0000-5fdcdd380000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1648685834", - "name": "Notebook1648685834", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "15005d1c-0000-0800-0000-5fdcde470000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1465462531", - "name": "Notebook1465462531", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "1500951d-0000-0800-0000-5fdcde520000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1324750336", - "name": "Notebook1324750336", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "1500933e-0000-0800-0000-5fdcdf620000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1321525518", - "name": "Notebook1321525518", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "15003a40-0000-0800-0000-5fdcdf710000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook959845833", - "name": "Notebook959845833", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "1500cef0-0000-0800-0000-5fdce5a20000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook881083414", - "name": "Notebook881083414", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "1500a3f2-0000-0800-0000-5fdce5b20000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook916866820", - "name": "Notebook916866820", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "1600fd14-0000-0800-0000-5fdce6d80000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1937416381", - "name": "Notebook1937416381", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "16001d17-0000-0800-0000-5fdce6eb0000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook948731996", - "name": "Notebook948731996", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "1600bd3b-0000-0800-0000-5fdce8350000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1354233639", - "name": "Notebook1354233639", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "16007f41-0000-0800-0000-5fdce8690000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1684312522", - "name": "Notebook1684312522", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "9400b436-0000-0800-0000-5fe0ce4a0000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1951782986", - "name": "Notebook1951782986", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "94007d4b-0000-0800-0000-5fe0ce700000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1394878024", - "name": "Notebook1394878024", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "9500693b-0000-0800-0000-5fe0d0310000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook2015798398", - "name": "Notebook2015798398", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "9500da4b-0000-0800-0000-5fe0d0500000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook312294723", - "name": "Notebook312294723", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "96004015-0000-0800-0000-5fe0d1ac0000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook96181799", - "name": "Notebook96181799", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "9600482c-0000-0800-0000-5fe0d1d40000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1738469849", - "name": "Notebook1738469849", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "b300c31c-0000-0800-0000-5fe108de0000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook721018453", - "name": "Notebook721018453", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "b300b02c-0000-0800-0000-5fe109060000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook56403818", - "name": "Notebook56403818", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "b30095e5-0000-0800-0000-5fe10adc0000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1072630194", - "name": "Notebook1072630194", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "b300adf3-0000-0800-0000-5fe10b010000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook779301290", - "name": "Notebook779301290", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "b4002996-0000-0800-0000-5fe10c850000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook972141614", - "name": "Notebook972141614", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "b4005baf-0000-0800-0000-5fe10cbb0000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1413336542", - "name": "Notebook1413336542", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "b7006df1-0000-0800-0000-5fe1148e0000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1398489324", - "name": "Notebook1398489324", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "b800d700-0000-0800-0000-5fe114b50000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook389141035", - "name": "Notebook389141035", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "b80019d1-0000-0800-0000-5fe116de0000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1650327112", - "name": "Notebook1650327112", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "b80079df-0000-0800-0000-5fe117060000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1212269171", - "name": "Notebook1212269171", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "b9007f66-0000-0800-0000-5fe118800000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1101304862", - "name": "Notebook1101304862", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "b900cd73-0000-0800-0000-5fe118a50000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook201258263", - "name": "Notebook201258263", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "0000abec-0000-0800-0000-5fe259810000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook766215414", - "name": "Notebook766215414", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "000014ed-0000-0800-0000-5fe259a60000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1067074944", - "name": "Notebook1067074944", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "0000f4f3-0000-0800-0000-5fe25bac0000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1308863453", - "name": "Notebook1308863453", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "0000f4f4-0000-0800-0000-5fe25bd80000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1160758455", - "name": "Notebook1160758455", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "000074f9-0000-0800-0000-5fe25d700000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1117942749", - "name": "Notebook1117942749", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "0000d5f9-0000-0800-0000-5fe25d950000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1218638232", - "name": "Notebook1218638232", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "03007877-0000-0800-0000-5fe389d40000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - } - ], - "nextLink": "https://workspacechhamosynapse.dev.azuresynapse.net:443/notebooks?api-version=2019-06-01-preview\u0026%24skipToken=%2BRID%3A%7ESl8ZAKxwhAANXAAAAAD8BA%3D%3D%23RT%3A2%23TRC%3A100%23ISV%3A2%23IEO%3A65551%23QCF%3A1" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks?api-version=2019-06-01-preview\u0026%24skipToken=%2BRID%3A~Sl8ZAKxwhAANXAAAAAD8BA%3D%3D%23RT%3A2%23TRC%3A100%23ISV%3A2%23IEO%3A65551%23QCF%3A1", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-920eb6ebf7925642b66cca2e1915df75-8fecbf560d40b141-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "3fae8d2981069a720ec402b792a59b9e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Length": "17117", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:56 GMT", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "3fae8d2981069a720ec402b792a59b9e", - "x-ms-request-id": "470c98b2-97b2-400f-a4fb-36a4257df17e" - }, - "ResponseBody": { - "value": [ - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1203127906", - "name": "Notebook1203127906", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "0300d677-0000-0800-0000-5fe389f70000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook500281749", - "name": "Notebook500281749", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "03004480-0000-0800-0000-5fe38d1d0000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook754630834", - "name": "Notebook754630834", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "0300bb80-0000-0800-0000-5fe38d470000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook642331279", - "name": "Notebook642331279", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "03004b8b-0000-0800-0000-5fe390d00000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1333753034", - "name": "Notebook1333753034", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "0300ac8b-0000-0800-0000-5fe390f40000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook865145813", - "name": "Notebook865145813", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "03002095-0000-0800-0000-5fe393fa0000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook708684366", - "name": "Notebook708684366", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "0300a395-0000-0800-0000-5fe394280000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook679439297", - "name": "Notebook679439297", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "0300119e-0000-0800-0000-5fe3971a0000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1932813353", - "name": "Notebook1932813353", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "0300679e-0000-0800-0000-5fe397430000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook856832754", - "name": "Notebook856832754", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "0300bea6-0000-0800-0000-5fe39a1d0000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1790751747", - "name": "Notebook1790751747", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "030030a7-0000-0800-0000-5fe39a450000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1811244433", - "name": "Notebook1811244433", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "0300b5b2-0000-0800-0000-5fe39e390000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook226052528", - "name": "Notebook226052528", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "030027b3-0000-0800-0000-5fe39e690000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1898451087", - "name": "Notebook1898451087", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "030008c4-0000-0800-0000-5fe3a3d00000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1153376657", - "name": "Notebook1153376657", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "0300f9c4-0000-0800-0000-5fe3a3fe0000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook912671182", - "name": "Notebook912671182", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "0300fbd1-0000-0800-0000-5fe3a8730000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook2123043987", - "name": "Notebook2123043987", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "030036d3-0000-0800-0000-5fe3a8a80000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook531852650", - "name": "Notebook531852650", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "0807a71b-0000-0800-0000-6000c4570000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1417891841", - "name": "Notebook1417891841", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "08075a49-0000-0800-0000-6000c4930000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook493783868", - "name": "Notebook493783868", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "c507ac00-0000-0800-0000-6001c1080000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook2029453227", - "name": "Notebook2029453227", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "c507732b-0000-0800-0000-6001c1410000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook401570095", - "name": "Notebook401570095", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "d9079a8e-0000-0800-0000-6001dc5a0000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook410522585", - "name": "Notebook410522585", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "d90764b1-0000-0800-0000-6001dc860000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook20726443", - "name": "Notebook20726443", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "3100e91d-0000-0800-0000-600873dd0000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook13089502", - "name": "Notebook13089502", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "31007349-0000-0800-0000-600874170000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook99280730", - "name": "Notebook99280730", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "330005b5-0000-0800-0000-600877720000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook16542947", - "name": "Notebook16542947", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "3300cbd7-0000-0800-0000-600877a40000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook40157009", - "name": "Notebook40157009", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "5100e89c-0000-0800-0000-6008a2af0000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook41052258", - "name": "Notebook41052258", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "510029c4-0000-0800-0000-6008a2e60000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook82429219", - "name": "Notebook82429219", - "type": "Microsoft.Synapse/workspaces/notebooks", - "etag": "1401ae8d-0000-0800-0000-6009c85e0000", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - } - } - ] - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook1684117927?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-e21b71ddcc75984694c084a33e7160fd-837c68e2a79fd741-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "dcacb48a3b15ac0dc474101a8b41489b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:57 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "dcacb48a3b15ac0dc474101a8b41489b", - "x-ms-request-id": "03f02c8d-5e54-455b-909e-e2402e154585" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1684117927", - "name": "Notebook1684117927", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "f6012603-0000-0800-0000-5fd2580b0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook1804657934?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-28aff3b4f8a15248b1f535c4b93b8f55-582ecdb076ce9446-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "0132529e720dccdfacbd9b197d311f46", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:57 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "0132529e720dccdfacbd9b197d311f46", - "x-ms-request-id": "76175e2c-b1d6-4bda-a82f-d872f7395959" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1804657934", - "name": "Notebook1804657934", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "f601cc04-0000-0800-0000-5fd258190000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook1646004302?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-96dc6e1a2c52644ca82c093633b372d4-0e83c2d14f994a46-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "af6d5f0e16f6ed697f027a9271570fcd", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:57 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "af6d5f0e16f6ed697f027a9271570fcd", - "x-ms-request-id": "98d98de6-1639-414e-b883-79e017bf7641" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1646004302", - "name": "Notebook1646004302", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "f6016c1d-0000-0800-0000-5fd258f80000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook1859490190?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-7d7a22f8a016954cadf34cb4025912b8-298d357a6c57f64a-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "4019667b9a731890d5e02f57a0f42e92", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:57 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "4019667b9a731890d5e02f57a0f42e92", - "x-ms-request-id": "72873489-e8f7-4fff-bffb-2947ae07d332" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1859490190", - "name": "Notebook1859490190", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "f6017c1f-0000-0800-0000-5fd2590b0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook654468314?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-58bcfff16e3edc4095d02ff656dbee4d-146f82ab82b9d14b-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "2b0cc95499d387a4e944820bf74d5a55", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:58 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "2b0cc95499d387a4e944820bf74d5a55", - "x-ms-request-id": "d9d48ac7-852c-4f9c-8841-e61e11e7ea85" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook654468314", - "name": "Notebook654468314", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "f601a43c-0000-0800-0000-5fd259f00000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook549168620?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-0fdee97aab0de8419b9beecf32a565e7-92b38ed71a243642-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "169dceaedf1874d3ce55da16e6114d8a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:58 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "169dceaedf1874d3ce55da16e6114d8a", - "x-ms-request-id": "3a44296f-7ada-4549-adff-b03894c296cd" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook549168620", - "name": "Notebook549168620", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "f6011246-0000-0800-0000-5fd25a380000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook1579958647?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-38a8020f0f6e06408f11e6c824360fc6-e2204edd1a650040-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "a83ee8d3e44be2f9c191562f17852087", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:58 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "a83ee8d3e44be2f9c191562f17852087", - "x-ms-request-id": "ac1040ec-8c42-487c-bce9-e52973d39891" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1579958647", - "name": "Notebook1579958647", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "f601f6ab-0000-0800-0000-5fd25e090000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook2051316949?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-046f677fa1043c49acf371c2df0900dd-fdb171e999e20743-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "d2a9da861757747af6975c7ebe8ea0d7", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:59 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "d2a9da861757747af6975c7ebe8ea0d7", - "x-ms-request-id": "716e5ad8-4b94-42dd-a21e-39136df11429" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook2051316949", - "name": "Notebook2051316949", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "f601d5ad-0000-0800-0000-5fd25e1a0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook1928140462?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-68913e85f96e4d43ba26caf44b5fda6f-5d29f80c80671b44-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "0e37f7f6b20eca09d4bb558689a45c49", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:59 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "0e37f7f6b20eca09d4bb558689a45c49", - "x-ms-request-id": "eefa5020-256b-4261-8239-9b165ea9bbd7" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1928140462", - "name": "Notebook1928140462", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "f601d3c2-0000-0800-0000-5fd25ed90000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook1404386034?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-0bfbdfad9853ca43bb2eeb2939c764c9-3c8e87d95be55042-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "0c9052347b68bc336ec9b1b3877b2333", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:30:59 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "0c9052347b68bc336ec9b1b3877b2333", - "x-ms-request-id": "ea1b2a25-70ae-442e-a4a6-824f72229c9c" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1404386034", - "name": "Notebook1404386034", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "f601cfc4-0000-0800-0000-5fd25eeb0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook303724026?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-5f718342e5c81245a5ae83f606240815-ed2b91e2aaf6654d-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "20387ef1114dd378d0defd9bc2f3ea52", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:31:00 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "20387ef1114dd378d0defd9bc2f3ea52", - "x-ms-request-id": "bc2be65e-7e9b-4544-9466-7c033a573823" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook303724026", - "name": "Notebook303724026", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "f601d5dc-0000-0800-0000-5fd25fca0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook1986851418?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-a4a6aae51fa4c44899c99273d3d24cf4-ec595b9322c17d42-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "6c49123a94fe7b6fc47ba04400564258", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:31:00 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "6c49123a94fe7b6fc47ba04400564258", - "x-ms-request-id": "8ba564be-d390-416e-bcbb-1779e75bc6ed" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1986851418", - "name": "Notebook1986851418", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "f7019633-0000-0800-0000-5fd2630c0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook1143245528?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-a8ede88c26fcb94789e10273e71f5604-9b9f359fe32bca4c-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "0a9421973c6b22fbd9bc3b897d97f97a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:31:00 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "0a9421973c6b22fbd9bc3b897d97f97a", - "x-ms-request-id": "1566113a-5042-4ad6-9730-f3d1e757f50f" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1143245528", - "name": "Notebook1143245528", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "f701674a-0000-0800-0000-5fd263ee0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook776941946?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-dba219b41b079945a3f9523bdc57ae9f-61f82f735a3fca4e-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "74795fdfb7325d350fbc5cd27033d37a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:31:02 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "74795fdfb7325d350fbc5cd27033d37a", - "x-ms-request-id": "0479a1c4-830e-4c5e-8987-ba0a253dffc2" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook776941946", - "name": "Notebook776941946", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "f701ad4c-0000-0800-0000-5fd264020000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook768271578?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-11982d9a46b10249b786573a89999d8c-4d1870e05d0f8848-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "a104a59ce05ffee61726924158e5fe2c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:31:02 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "a104a59ce05ffee61726924158e5fe2c", - "x-ms-request-id": "b03a1652-4648-4935-ba11-db5672508082" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook768271578", - "name": "Notebook768271578", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "f701ea65-0000-0800-0000-5fd264ed0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook1861354853?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-8c2801ada10d88489e9f8ea36fcf3321-d2be6290b6a47f41-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "a1652682cddde026ec37fbafe029b2a5", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:31:02 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "a1652682cddde026ec37fbafe029b2a5", - "x-ms-request-id": "0883659b-4dce-47cc-a731-88bab4f9a0fa" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1861354853", - "name": "Notebook1861354853", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "f7013468-0000-0800-0000-5fd265030000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook266631340?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-9c97eb7683220042a41e1752fb42575e-bc2f237b644c0b4b-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "d8edc1e95793fe1a787a5d0b24f30429", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:31:03 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "d8edc1e95793fe1a787a5d0b24f30429", - "x-ms-request-id": "0953f57e-5f7e-4c24-8c13-bd03acd92338" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook266631340", - "name": "Notebook266631340", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "f7017295-0000-0800-0000-5fd266a80000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook646248896?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-5e9966e19600074a9eaf269255b48d72-1937a873c415eb41-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "49502fbe32cece9d7e23b427e4361dee", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:31:03 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "49502fbe32cece9d7e23b427e4361dee", - "x-ms-request-id": "073f4d3e-8e08-4a7d-8247-292d88bb6e98" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook646248896", - "name": "Notebook646248896", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "f701cf98-0000-0800-0000-5fd266c70000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook1980347592?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-9583af668859fb4a859f6e6de6dc06e8-c2ced92f2e91b941-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "9758ec7426f82a980b672862701bbbf8", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:31:03 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "9758ec7426f82a980b672862701bbbf8", - "x-ms-request-id": "00ff01c6-cccd-4c63-9c2d-fc2b9fe1de32" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1980347592", - "name": "Notebook1980347592", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "190267ff-0000-0800-0000-5fd3ace00000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook1304984445?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-30f8a4c1a5bfe04ab19971155f62c181-c29c09a4bba8b44f-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "b1f1d13368d8b6d7231f596fa3f31941", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:31:04 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "b1f1d13368d8b6d7231f596fa3f31941", - "x-ms-request-id": "749d0919-5da7-4d08-9493-634a56b5764b" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1304984445", - "name": "Notebook1304984445", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "1a028e01-0000-0800-0000-5fd3acf20000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/demo_notebook?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-8a300f7dcdb7804c9f8781dac3157c6f-7cb83dc959d13546-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "37976f5d6d9b973196253e66093b5e63", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:31:04 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "37976f5d6d9b973196253e66093b5e63", - "x-ms-request-id": "372564e9-4612-4271-92ec-1898053d1e3f" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/demo_notebook", - "name": "demo_notebook", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": null, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [ - { - "cell_type": "code", - "metadata": {}, - "source": [ - "from azureml.opendatasets import NycTlcYellow\n", - "\n", - "data = NycTlcYellow()\n", - "df = data.to_spark_dataframe()\n", - "# Display 10 rows\n", - "display(df.limit(10))" - ], - "attachments": null, - "outputs": [], - "execution_count": null - } - ], - "folder": null - }, - "etag": "b4007455-0000-0800-0000-5fe10bec0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook1633376452?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-971fc59f21ec7f4791aeac91abfeb1c6-bb5d680473f53b48-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "12f4bc686c450c1515a173d9cc298718", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:31:04 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "12f4bc686c450c1515a173d9cc298718", - "x-ms-request-id": "a29cc172-5ff4-439c-8c39-2f929aca2b93" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1633376452", - "name": "Notebook1633376452", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "62022795-0000-0800-0000-5fd797690000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook655988637?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-0ea5ccb34306d149a235b63a14b120b5-6f3051b9f6249944-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "0004e64d8384c55da0591ab32a70ace8", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:31:04 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "0004e64d8384c55da0591ab32a70ace8", - "x-ms-request-id": "db015418-fefc-4e3a-851e-ab26f2650ed1" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook655988637", - "name": "Notebook655988637", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "62026e97-0000-0800-0000-5fd797790000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook532689105?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-9709bde2a9664344a033353592bbeb3e-89c4556db55c974f-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "e607f6c106fff0fc5a8a22f9f957cb6d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:31:05 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "e607f6c106fff0fc5a8a22f9f957cb6d", - "x-ms-request-id": "ee61e305-4bad-4155-a4d3-feba4fdb81eb" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook532689105", - "name": "Notebook532689105", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "620262c6-0000-0800-0000-5fd798eb0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook1829358631?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-a4edb7d442ccc547822354d1171d976b-687f20b0c88d0a42-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "2319259e5d36e4df5e2e72eb5162e2a4", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:31:05 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "2319259e5d36e4df5e2e72eb5162e2a4", - "x-ms-request-id": "ca5b4a5a-7d95-4ddd-8ae3-4413b8efc19b" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1829358631", - "name": "Notebook1829358631", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "6202fdc7-0000-0800-0000-5fd798f70000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook1089839457?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-0866e5958c461a468bc1efa40bea23a5-d34011d6fd5e7046-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "d6188bf4a0214618e913a6f96164cb49", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:31:05 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "d6188bf4a0214618e913a6f96164cb49", - "x-ms-request-id": "fd8e3ba3-5868-4ec6-ab4c-2687a81af79c" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1089839457", - "name": "Notebook1089839457", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "6202aaea-0000-0800-0000-5fd799fd0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook1770509283?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-7c64971909c3014894eb6aef51e537e2-fb9a1ed5519a8d47-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "0414ad8e895763b1162387d094119ef8", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:31:05 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "0414ad8e895763b1162387d094119ef8", - "x-ms-request-id": "ca6751a6-4ef1-46e4-88cc-e55bf39c3680" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1770509283", - "name": "Notebook1770509283", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "620269ec-0000-0800-0000-5fd79a0b0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook2091752578?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-ac7c6192ef2f2647a9d27c6a14499bdc-95569dcb86d4ce4b-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "6e047da8f43ffe4b0cd33922b7e683fa", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:31:06 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "6e047da8f43ffe4b0cd33922b7e683fa", - "x-ms-request-id": "25608bb5-1e8f-40f7-9c36-af2435f89d67" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook2091752578", - "name": "Notebook2091752578", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "830222f7-0000-0800-0000-5fd8d3c00000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook55604260?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-59dc42cfb62ae44394bffbcd7ccbb9e7-8c1515c7b54f1d44-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "a45d2862de4d6b4dd9b4bffe1848b1d8", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:31:06 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "a45d2862de4d6b4dd9b4bffe1848b1d8", - "x-ms-request-id": "87ea29ea-8dd2-4cec-a7a0-16a5f2513a8e" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook55604260", - "name": "Notebook55604260", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "830296f9-0000-0800-0000-5fd8d3d40000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook1878657682?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-a07752aebb27f64faff5da9236188a05-95383f5e893aed44-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "e351ad745d5f99096115f7834f8fac30", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:31:06 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "e351ad745d5f99096115f7834f8fac30", - "x-ms-request-id": "22077e02-1232-4f8f-9b7b-0301a0a34abd" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1878657682", - "name": "Notebook1878657682", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "8402a931-0000-0800-0000-5fd8d57b0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook1963301614?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-67c3d61d5e5bd142b43ac0faf8722947-74a1c8ab8d65a446-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "6b6e8da0fab3caaa3098948b354de6c4", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:31:07 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "6b6e8da0fab3caaa3098948b354de6c4", - "x-ms-request-id": "864bb119-ee7f-4cb6-8622-874682965e79" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1963301614", - "name": "Notebook1963301614", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "84025134-0000-0800-0000-5fd8d58f0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook254029507?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-e7b4ff4db542bd479dde72f22cb2fa02-b472218736e77b4d-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "09ad61219f94059b1fc44337e7c91c4a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:31:07 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "09ad61219f94059b1fc44337e7c91c4a", - "x-ms-request-id": "2aca72d3-4c26-42fd-9e5c-2b26df0387b0" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook254029507", - "name": "Notebook254029507", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "84026757-0000-0800-0000-5fd8d69f0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook646101363?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-1fdd306c044b184fb63377c2f16b252a-467330f74d381146-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "8b5d8e0745d97a250386b3c6c87e6413", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:31:07 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "8b5d8e0745d97a250386b3c6c87e6413", - "x-ms-request-id": "11d54835-8773-4241-88fc-c52accff76a6" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook646101363", - "name": "Notebook646101363", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "8402385a-0000-0800-0000-5fd8d6b60000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook1881803406?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-0cb805c736f84946ba7bf1d2f6c45231-6f43c55b006c3a49-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "ed62322fa3e1009bf2694cefb672e366", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:31:09 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "ed62322fa3e1009bf2694cefb672e366", - "x-ms-request-id": "4f8f5f70-3883-4e3c-b030-6b5d280085e9" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1881803406", - "name": "Notebook1881803406", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "8702bdb3-0000-0800-0000-5fd8f1460000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook1158468516?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-a5d35bcc9e96044a8bc499775a3142aa-9ce52c2e67427c44-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "a6834a7c5aefdbea3c33060decd43ca0", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:31:09 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "a6834a7c5aefdbea3c33060decd43ca0", - "x-ms-request-id": "6536c9bf-2db2-41d8-bca9-80be235ff2ea" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1158468516", - "name": "Notebook1158468516", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "8702d8b5-0000-0800-0000-5fd8f1580000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook2118558115?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-29ec6fd60b4bcb469742a50be1fb3c7f-450b1e0b449aaf4e-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "b408305f2e676369f35d9970f835c490", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:31:09 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "b408305f2e676369f35d9970f835c490", - "x-ms-request-id": "ebb3394c-b345-4573-8769-443c43e8fe28" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook2118558115", - "name": "Notebook2118558115", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "8702abd4-0000-0800-0000-5fd8f24b0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook878364584?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-8c9563719c9c274a85be9fa92759be18-8a99a5c6eca99f40-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "7e4a4ca3bdfad4234786b1ae9d8d141d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:31:10 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "7e4a4ca3bdfad4234786b1ae9d8d141d", - "x-ms-request-id": "141a48e3-2f11-41f2-8161-b3e99e35b9b8" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook878364584", - "name": "Notebook878364584", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "87023ad6-0000-0800-0000-5fd8f2570000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook691293477?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-7b9c41648442f14aa6000846a59216e1-881a3675fdcdd14f-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "858fab2c2e6a4dffe11fb392c17ae206", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:31:10 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "858fab2c2e6a4dffe11fb392c17ae206", - "x-ms-request-id": "1faf7f08-b2e6-4d06-8744-ffbd5fb4925f" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook691293477", - "name": "Notebook691293477", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "8702d2f6-0000-0800-0000-5fd8f3620000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook359117693?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-b48dfccb16563b429f1eb6f8d83cee1d-08e21815cb7e3d4c-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "9f6a766ebd89a1a50d336de07dbac665", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:31:10 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "9f6a766ebd89a1a50d336de07dbac665", - "x-ms-request-id": "3e95f21c-a4e7-4099-a9bf-8bc5a6dd7cea" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook359117693", - "name": "Notebook359117693", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "870217f9-0000-0800-0000-5fd8f3740000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook1137625687?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-ce543811cdb4eb41a55eb84ecef76670-c762424386ba7a43-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "4d447b483ea575254dfc9ddb0a9012cd", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:31:10 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "4d447b483ea575254dfc9ddb0a9012cd", - "x-ms-request-id": "bf9272d4-fe01-4516-b818-bcd5a22fbda6" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1137625687", - "name": "Notebook1137625687", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "8802bd64-0000-0800-0000-5fd8f6d90000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook701971566?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-33e4f53275a29347867e22e2da6e94ac-b40e1f466b688e46-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "273faaa375236e9406ed7837c01ed026", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:31:11 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "273faaa375236e9406ed7837c01ed026", - "x-ms-request-id": "2a24ddd2-cf85-4dc9-a51e-e32635892656" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook701971566", - "name": "Notebook701971566", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "8802b566-0000-0800-0000-5fd8f6e80000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook709354216?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-89ed9406f8b9924eac319512a9283ac6-231d12e60def9b45-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "46494d589536306150f4518c20ca977c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:31:11 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "46494d589536306150f4518c20ca977c", - "x-ms-request-id": "5b9b2bb3-07c8-4a0e-b908-44e3fbd7bee3" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook709354216", - "name": "Notebook709354216", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "8802ac85-0000-0800-0000-5fd8f7fc0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook2126593779?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-4b321d6e9d461f478d69440b5107e952-a1d0504a0fb7a74e-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "d23ca0209f7bd341e7d546b8c5edb42e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:31:11 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "d23ca0209f7bd341e7d546b8c5edb42e", - "x-ms-request-id": "8fd8b933-541e-4ef6-9012-347ed6f19691" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook2126593779", - "name": "Notebook2126593779", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "8802f687-0000-0800-0000-5fd8f8100000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook988670801?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-2ed3d66efcf4cd4ea6bc4b006750be15-c70f75b8d07b6d4f-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "bd82762ccc470d97490fd62f23074e3b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:31:12 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "bd82762ccc470d97490fd62f23074e3b", - "x-ms-request-id": "ef899d1a-dd7b-4e41-97ab-258922f39419" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook988670801", - "name": "Notebook988670801", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "8802fbaa-0000-0800-0000-5fd8f9290000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook1106903387?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-d98bcda2cb62974fa9a406ef7a88c75f-919596379d77264f-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "2017fc56fde1b9ab0c765f604ea96a62", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:31:12 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "2017fc56fde1b9ab0c765f604ea96a62", - "x-ms-request-id": "802d86da-b5cc-43e7-b07b-6db1f9ef0c4c" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1106903387", - "name": "Notebook1106903387", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "88023fad-0000-0800-0000-5fd8f93b0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook2083235159?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-d2e4c3a8afabad4b91449a57be22ea90-94ee1b8ca19e424c-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "aa60223fda485435092f896bc812afdf", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:31:12 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "aa60223fda485435092f896bc812afdf", - "x-ms-request-id": "947d735f-edda-43e1-a71c-286a8e142e0d" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook2083235159", - "name": "Notebook2083235159", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "4200b366-0000-0800-0000-5fda86b80000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook844332905?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-3bf3d4a10be10e4cb5b12c65f08ca26c-3cef12e3b366c740-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "c8610b8694d62e4dcbc8b1d06c36bfa0", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:31:13 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "c8610b8694d62e4dcbc8b1d06c36bfa0", - "x-ms-request-id": "082f368b-7216-4c74-8924-7d11763112e6" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook844332905", - "name": "Notebook844332905", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "42005e6a-0000-0800-0000-5fda86c80000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook536090795?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-ba43d4d09860c84c82149705eb9c2471-07e083bd99437e4b-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "00ef74a4a4a67cf3c7c317b2743ff1f9", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:31:13 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "00ef74a4a4a67cf3c7c317b2743ff1f9", - "x-ms-request-id": "6ece0531-e40b-4791-b93c-6fe481c965ee" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook536090795", - "name": "Notebook536090795", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "42001aae-0000-0800-0000-5fda87d10000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook1387270550?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-3e0a6c52a84cdb4a9ce1b1c203b86951-cd54529f95fda64d-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "43d97fc6a247ab8bd532df7f2864e7d2", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:31:13 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "43d97fc6a247ab8bd532df7f2864e7d2", - "x-ms-request-id": "d19da71e-da22-4d8a-ac5e-d0b9a48e9503" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1387270550", - "name": "Notebook1387270550", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "420011b2-0000-0800-0000-5fda87df0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook415720389?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-7ee0413f02761747aaa9128568fecd90-153955a8d922794d-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "54c6e86fae22e23917e400137c9ab98b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:31:14 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "54c6e86fae22e23917e400137c9ab98b", - "x-ms-request-id": "9b31eb06-a448-42fa-adb4-00f697aa55c5" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook415720389", - "name": "Notebook415720389", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "4200a0f2-0000-0800-0000-5fda88d60000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook830360622?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-273a869750329c49a6c6664552b83c9e-1a919d41ebcc2544-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "ed0ab7d77b5c0258e8442b74c5745363", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:31:14 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "ed0ab7d77b5c0258e8442b74c5745363", - "x-ms-request-id": "76a52ecc-0fb1-4328-b79b-4c0ef74d5ee5" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook830360622", - "name": "Notebook830360622", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "420092f6-0000-0800-0000-5fda88e70000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook1973916934?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-5c1461914fc1c843bac48af5882e97ba-ef0c40323577584c-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "8c4244db9c7917d746f72b62a1782e3b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:31:14 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "8c4244db9c7917d746f72b62a1782e3b", - "x-ms-request-id": "d3133434-750e-4eaf-a84d-12ea09febd3b" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1973916934", - "name": "Notebook1973916934", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "79007ba0-0000-0800-0000-5fdbaf830000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook2004418696?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-dee6c5aeb8a3fc40834764b5add8ec26-fabf842da4676b4a-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "71a75378fa59f47690c46bde83c41da3", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:31:14 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "71a75378fa59f47690c46bde83c41da3", - "x-ms-request-id": "be9efaaa-c648-4d50-88db-215bbff0c200" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook2004418696", - "name": "Notebook2004418696", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "790036a5-0000-0800-0000-5fdbaf910000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook1708824606?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-843ee8615fc68f4ab361fd6916f24841-6407ed8570ec6e49-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "37379d912d573a12e0f3a66550f56170", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:31:15 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "37379d912d573a12e0f3a66550f56170", - "x-ms-request-id": "28aafb49-533d-450a-a38f-505cc16ee68e" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1708824606", - "name": "Notebook1708824606", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "790039fc-0000-0800-0000-5fdbb0880000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook2125255332?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-92fd4baecbd3ff4e8abf1f7aacad5562-0a3b5ef76261d240-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "71fcf015e1cce109ce4efcb431f89482", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:31:15 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "71fcf015e1cce109ce4efcb431f89482", - "x-ms-request-id": "96d9292b-532d-4c4b-8153-bdc09c2331b2" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook2125255332", - "name": "Notebook2125255332", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "7a00ad01-0000-0800-0000-5fdbb0970000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook1794393844?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-bc24c1ba17efae45a8d1f08660f4d29a-c9fc1e4a9ec92d4c-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "03d187d9f7404be3416d91665310a49a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:31:15 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "03d187d9f7404be3416d91665310a49a", - "x-ms-request-id": "ab060d4c-98b6-46bb-92fb-049bf3ced1a1" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1794393844", - "name": "Notebook1794393844", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "7a00276a-0000-0800-0000-5fdbb1ac0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook663395038?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-f6ed94665b79f94daab587220c905e2a-ca2f1912c5935a46-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "92c8fb62acc8afd793566809315d09e7", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:31:16 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "92c8fb62acc8afd793566809315d09e7", - "x-ms-request-id": "7035bcc9-4c29-4090-b228-c9261524f724" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook663395038", - "name": "Notebook663395038", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "7a001c6f-0000-0800-0000-5fdbb1b90000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook1523732538?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-41409066f2564a4e9ef6ada9001f41b2-52d1854523437647-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "c88c245f5d241e2f0db02f5e50a38dbd", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:31:16 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "c88c245f5d241e2f0db02f5e50a38dbd", - "x-ms-request-id": "5c6a94b0-f8ef-46a6-9564-232bacc43be8" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1523732538", - "name": "Notebook1523732538", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "12009e94-0000-0800-0000-5fdcc7b50000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook503290111?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-71b3a7655dfaf64d9bc76c25027989c9-8a9391ee7d738940-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "355261aa01302cb9b02270ea8eda1ae4", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:31:16 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "355261aa01302cb9b02270ea8eda1ae4", - "x-ms-request-id": "80ef4ebc-885e-4a0c-8b62-283e31e5eecb" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook503290111", - "name": "Notebook503290111", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "12008e98-0000-0800-0000-5fdcc7d40000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook2049484071?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-b37aab3462983c40b785be61e544f185-c36e1b2cc184384f-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "2f07aa64db840476cbaa85177d795ff0", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:31:16 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "2f07aa64db840476cbaa85177d795ff0", - "x-ms-request-id": "ebb80b80-71c6-4298-880b-217aa1836596" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook2049484071", - "name": "Notebook2049484071", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "12003fcf-0000-0800-0000-5fdcc9a30000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook814493065?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-eb998482aa9fb94f9bc37ffaedfa8aa2-c7e20f9414844a45-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "cf5eabc8d30a5db66a5f1801ed458f33", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:31:17 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "cf5eabc8d30a5db66a5f1801ed458f33", - "x-ms-request-id": "de893178-d4ad-46eb-83a4-2aec26ed2ea0" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook814493065", - "name": "Notebook814493065", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "120071d3-0000-0800-0000-5fdcc9c40000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook303835151?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-1a0366c7f94f1b419c5a1d95e9f46315-73407739b58f144c-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "a5fa4b965e9bce38eb4d6a857ba2af36", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:31:17 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "a5fa4b965e9bce38eb4d6a857ba2af36", - "x-ms-request-id": "5df4ade7-1415-4168-bb99-3507a25166db" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook303835151", - "name": "Notebook303835151", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "1200eaff-0000-0800-0000-5fdccb400000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook140022211?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-3b64d89216c856488bc5c4ab8d4b9aad-87563a5130dc9c43-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "e32180c24a7b90d9f3a9c425c3741785", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:31:17 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "e32180c24a7b90d9f3a9c425c3741785", - "x-ms-request-id": "158ac160-a451-4ec3-aa37-9f2f15184d3e" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook140022211", - "name": "Notebook140022211", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "1300ee03-0000-0800-0000-5fdccb660000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook1858151255?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-fbebf3da09b5e649a9e58a99a540ced3-6149734496902a45-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "3280521ab97e69547290e3bd6931e2c8", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:31:19 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "3280521ab97e69547290e3bd6931e2c8", - "x-ms-request-id": "62c3f07a-9362-4c17-b65c-f10c9d07f3fb" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1858151255", - "name": "Notebook1858151255", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "140000fd-0000-0800-0000-5fdcdd270000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook1475602166?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-a11dab8bfc23e8448257749108570bc9-0569cdadf867fe44-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "6d3ee1afac234bb8716ab1f299130b76", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:31:19 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "6d3ee1afac234bb8716ab1f299130b76", - "x-ms-request-id": "f770a83a-76fc-4bf4-bc5b-1bddb5335913" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1475602166", - "name": "Notebook1475602166", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "1400b1fe-0000-0800-0000-5fdcdd380000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook1648685834?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-dd28703e1379a14fb9808b4532a97cb7-d3e940d071a2424f-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "286ae4367d2208b82bb870ea671c26c2", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:31:19 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "286ae4367d2208b82bb870ea671c26c2", - "x-ms-request-id": "d565803b-c192-4cf1-996f-b267b8bc3aaf" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1648685834", - "name": "Notebook1648685834", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "15005d1c-0000-0800-0000-5fdcde470000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook1465462531?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-d1cdc9ac41935d43a346f9b26f1d1255-4a793f5bff809541-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "e275fcc6a9356d619a34c0140862cf5e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:31:19 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "e275fcc6a9356d619a34c0140862cf5e", - "x-ms-request-id": "efb68d95-c9c5-47ff-9d5d-5bbd49717203" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1465462531", - "name": "Notebook1465462531", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "1500951d-0000-0800-0000-5fdcde520000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook1324750336?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-19c6862848034c47b171d0ca66cc4376-e600378f7584aa4e-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "85876c85bac632a62835416b3ccde455", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:31:20 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "85876c85bac632a62835416b3ccde455", - "x-ms-request-id": "bf1e285a-fdc7-438f-952e-9f53f672a991" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1324750336", - "name": "Notebook1324750336", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "1500933e-0000-0800-0000-5fdcdf620000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook1321525518?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-b4ca6049025fe04ebbc50780d9a21b93-5196bdc1e16ca743-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "9d2bee44299d8c4182fd8dedbda400c9", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:31:20 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "9d2bee44299d8c4182fd8dedbda400c9", - "x-ms-request-id": "0f54901e-47c2-405f-8371-7abc58733bcb" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1321525518", - "name": "Notebook1321525518", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "15003a40-0000-0800-0000-5fdcdf710000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook959845833?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-f779be2da9c9fa4798b0c13126d01323-e6d6e572426bfc41-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "fa6511e8a0950cfc5643b9ff67f631cd", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:31:20 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "fa6511e8a0950cfc5643b9ff67f631cd", - "x-ms-request-id": "e6c3c167-8486-4453-9079-81d97aaae516" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook959845833", - "name": "Notebook959845833", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "1500cef0-0000-0800-0000-5fdce5a20000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook881083414?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-095cd13f1af712408d2abb4ca96d0479-61c0cb637b33fb41-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "19d06a4f32365cc12bfa03c92cb87584", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:31:21 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "19d06a4f32365cc12bfa03c92cb87584", - "x-ms-request-id": "86b85b03-ac91-47cd-b600-72c388721bdb" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook881083414", - "name": "Notebook881083414", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "1500a3f2-0000-0800-0000-5fdce5b20000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook916866820?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-cf04604d99e78141960eb94946afc6c8-506188fed1e6674f-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "2a837735ea67a3c0f21e465a7041248c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:31:21 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "2a837735ea67a3c0f21e465a7041248c", - "x-ms-request-id": "a6cffb3b-8606-4470-8aee-2976dfb8c621" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook916866820", - "name": "Notebook916866820", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "1600fd14-0000-0800-0000-5fdce6d80000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook1937416381?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-0afcf903d53d67439a9f6f672b02e248-35b7424bcf9e4446-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "529dc0cbe6d4b5925009ce9a9d33e09d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:31:21 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "529dc0cbe6d4b5925009ce9a9d33e09d", - "x-ms-request-id": "8f6b8588-cb9e-46f7-8908-1d332cabe24c" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1937416381", - "name": "Notebook1937416381", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "16001d17-0000-0800-0000-5fdce6eb0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook948731996?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-4614975cda59f04191401176467288bb-407a6e1145d88f4a-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "f0ca34ce06726565aa2c2618eb67ebea", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:31:22 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "f0ca34ce06726565aa2c2618eb67ebea", - "x-ms-request-id": "fefe1de1-2798-4253-a260-f2cf99ddd9da" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook948731996", - "name": "Notebook948731996", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "1600bd3b-0000-0800-0000-5fdce8350000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook1354233639?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-31011ebe91b7da44bfdf11e13a392e90-64bc10fb68959445-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "6bfd77d5221b4eb0e5cdda5d1c2505bf", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:31:22 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "6bfd77d5221b4eb0e5cdda5d1c2505bf", - "x-ms-request-id": "3e2abf60-8c2c-4768-a2a7-f3bcf144a6bd" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1354233639", - "name": "Notebook1354233639", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "16007f41-0000-0800-0000-5fdce8690000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook1684312522?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-1c2fa0a52916c64ca8a0976d671ab7ce-d24f08a80bd96743-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "3b8ba93d3476c4195a38a7a7bf7acae9", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:31:22 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "3b8ba93d3476c4195a38a7a7bf7acae9", - "x-ms-request-id": "7c8d7f71-c8aa-45de-94f6-db8f83853547" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1684312522", - "name": "Notebook1684312522", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "9400b436-0000-0800-0000-5fe0ce4a0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook1951782986?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-bf3852275e818044bd00af699a6ffd65-70ba1d16fa30e746-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "26c5e31d7535ab82847b0aa42c084984", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:31:22 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "26c5e31d7535ab82847b0aa42c084984", - "x-ms-request-id": "692c9f4c-2b10-43b3-81cf-4a54435236e9" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1951782986", - "name": "Notebook1951782986", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "94007d4b-0000-0800-0000-5fe0ce700000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook1394878024?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-7151fe11e6a83d429239eaa7350b4a63-702c8bedd3b28544-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "42db6727b0dba0735d3810e37b098e6b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:31:23 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "42db6727b0dba0735d3810e37b098e6b", - "x-ms-request-id": "9cca0961-145e-4f4a-8fef-821d9736a9e7" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1394878024", - "name": "Notebook1394878024", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "9500693b-0000-0800-0000-5fe0d0310000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook2015798398?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-2c336d68855b5a45a9c400dbfd7521aa-f012d8d5ece51b4d-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "3840f003df60c78926dfb7fb2a749852", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:31:23 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "3840f003df60c78926dfb7fb2a749852", - "x-ms-request-id": "eea31dae-8199-48b5-8d71-c01ef3e228bc" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook2015798398", - "name": "Notebook2015798398", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "9500da4b-0000-0800-0000-5fe0d0500000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook312294723?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-d7f00ce0ed368441bf360c78eb6929ae-e8dab46e12f2aa4f-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "588022ee879e6d0d7025c8fd649f307b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:31:23 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "588022ee879e6d0d7025c8fd649f307b", - "x-ms-request-id": "d7142d62-b392-41fc-b625-8a827bd07eb5" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook312294723", - "name": "Notebook312294723", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "96004015-0000-0800-0000-5fe0d1ac0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook96181799?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-d16c5e07142358479441339bc397ab36-bbc6b6e5c3416441-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "3ca19fed10c74724dd131cfbf87876e9", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:31:23 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "3ca19fed10c74724dd131cfbf87876e9", - "x-ms-request-id": "2444bc0c-7570-49bc-baae-777f5461a194" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook96181799", - "name": "Notebook96181799", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "9600482c-0000-0800-0000-5fe0d1d40000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook1738469849?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-5ee3eb5c6c33014f9d7ffa5f9b8326a2-8b0b065444513d49-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "58f4bea036887bcce3d2c73a168b6386", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:31:24 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "58f4bea036887bcce3d2c73a168b6386", - "x-ms-request-id": "2a45388c-a017-4149-8cb5-026af63d7271" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1738469849", - "name": "Notebook1738469849", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "b300c31c-0000-0800-0000-5fe108de0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook721018453?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-2af67402abc2254dbe061fab8dc3fcd4-4248f4a98c80cf4c-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "8a0e3caf5cd2dd8afe387a8b6b1174f7", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:31:24 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "8a0e3caf5cd2dd8afe387a8b6b1174f7", - "x-ms-request-id": "0d9bf16b-611c-4056-9a09-3a7d37f0026c" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook721018453", - "name": "Notebook721018453", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "b300b02c-0000-0800-0000-5fe109060000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook56403818?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-db1e0b9180afb747b09d15215317836b-0253818ee98eee48-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "a65ddfafd7abb6f2d32658f449ea3051", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:31:24 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "a65ddfafd7abb6f2d32658f449ea3051", - "x-ms-request-id": "c448bb7d-cd44-4f48-9a52-d36aeb178d76" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook56403818", - "name": "Notebook56403818", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "b30095e5-0000-0800-0000-5fe10adc0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook1072630194?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-8a129d5c56104a45b7e4e0f57bb5b0e1-214dbb533a9cb74c-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "bc4c95b0ec6a441633165a4fbb410fd1", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:31:24 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "bc4c95b0ec6a441633165a4fbb410fd1", - "x-ms-request-id": "b21320fc-65ae-4731-9547-008143a0e2c1" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1072630194", - "name": "Notebook1072630194", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "b300adf3-0000-0800-0000-5fe10b010000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook779301290?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-cd3b6dd8c4fa3d4692088842c0d9f4c7-273c76eccc8db84a-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "378bcf5ebd2ed7db4a57b6ac03959413", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:31:25 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "378bcf5ebd2ed7db4a57b6ac03959413", - "x-ms-request-id": "680e1c7a-e311-407e-97d4-60aee5b3b804" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook779301290", - "name": "Notebook779301290", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "b4002996-0000-0800-0000-5fe10c850000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook972141614?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-b97c957a120bf549b24fa9fa7f64e0aa-ad3b0a67495c654c-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "d6db2808b8c5c38dc91972957da2fb92", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:31:25 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "d6db2808b8c5c38dc91972957da2fb92", - "x-ms-request-id": "0f554bab-d80d-43e3-8bd8-23f517223f31" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook972141614", - "name": "Notebook972141614", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "b4005baf-0000-0800-0000-5fe10cbb0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook1413336542?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-80be6879ae079c43a1ef0c55aad40f98-ce5781cdba65674d-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "79968716f95ef223b9747113356a409d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:31:25 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "79968716f95ef223b9747113356a409d", - "x-ms-request-id": "f0cb6601-e13a-4088-8fee-3a5ed7d8628d" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1413336542", - "name": "Notebook1413336542", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "b7006df1-0000-0800-0000-5fe1148e0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook1398489324?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-b3abea210b133147aeefdabd88a30a52-7fdb7abb3b450441-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "934746813966a50c42c86e154a465aa7", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:31:25 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "934746813966a50c42c86e154a465aa7", - "x-ms-request-id": "4494a927-50b4-4529-b72a-06c580feb8bc" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1398489324", - "name": "Notebook1398489324", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "b800d700-0000-0800-0000-5fe114b50000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook389141035?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-2e8455ca96b65947a89f85be2b7b48b8-3e902232fb5e5743-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "7c95245c1bff0fb505e81c50467a8d5f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:31:26 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "7c95245c1bff0fb505e81c50467a8d5f", - "x-ms-request-id": "2fc54876-30dd-48ff-9e14-d8dcc965d2cf" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook389141035", - "name": "Notebook389141035", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "b80019d1-0000-0800-0000-5fe116de0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook1650327112?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-bd43002a91a35940af027db90b198ad8-36d4ede46226fe4a-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "3613d4d8685add2c7af037968a0ea873", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:31:26 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "3613d4d8685add2c7af037968a0ea873", - "x-ms-request-id": "59bad0f7-e06f-4717-aebf-1e34c9d277c0" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1650327112", - "name": "Notebook1650327112", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "b80079df-0000-0800-0000-5fe117060000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook1212269171?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-4f4a6be00eada24588c2437746f9a6f8-ebc0008d6d89344a-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "11b7c91ac4d4669e91388d7d1cbb5fc7", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:31:28 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "11b7c91ac4d4669e91388d7d1cbb5fc7", - "x-ms-request-id": "957d5372-2a94-4280-9b98-4eea205b3082" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1212269171", - "name": "Notebook1212269171", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "b9007f66-0000-0800-0000-5fe118800000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook1101304862?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-29b3a6cdafaba3448d2c35f9df2f2511-6e816d281441534f-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "763c0e3a2332f34df7b7010ee31f84f6", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:31:32 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "763c0e3a2332f34df7b7010ee31f84f6", - "x-ms-request-id": "0f87201e-89d3-487c-ba76-c24904878a5d" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1101304862", - "name": "Notebook1101304862", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "b900cd73-0000-0800-0000-5fe118a50000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook201258263?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-7f7b62f45e3ce443a584b8e4a8f217a8-dff8ff1e08b90449-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "7c36a9407cc3138a35ada522daaec1bf", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:31:32 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "7c36a9407cc3138a35ada522daaec1bf", - "x-ms-request-id": "554f909c-d874-4077-b2e7-6b042ec845f9" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook201258263", - "name": "Notebook201258263", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "0000abec-0000-0800-0000-5fe259810000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook766215414?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-b546c680b68774468ec6b02c89c397b1-2fe29b3ef4241a4a-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "7c5b6f9131d1f6417cc3191dc3908271", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:31:32 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "7c5b6f9131d1f6417cc3191dc3908271", - "x-ms-request-id": "b66c0cfb-30ff-409c-89e3-3216f76546ac" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook766215414", - "name": "Notebook766215414", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "000014ed-0000-0800-0000-5fe259a60000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook1067074944?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-65c696297b37544bbee16117b74ba798-a2356380b6cf9c43-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "733d97b4e284be04842940847d2b1949", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:31:33 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "733d97b4e284be04842940847d2b1949", - "x-ms-request-id": "968d57f1-390f-4851-9e1e-e20f9fe1bf7e" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1067074944", - "name": "Notebook1067074944", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "0000f4f3-0000-0800-0000-5fe25bac0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook1308863453?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-d4e8903e1ad20f468d826c915ee239b9-b2a383807870194d-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "747c41f508c40e2567400000626d4fa4", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:31:33 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "747c41f508c40e2567400000626d4fa4", - "x-ms-request-id": "58ed2e97-df6f-43d0-8487-40414306ce0f" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1308863453", - "name": "Notebook1308863453", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "0000f4f4-0000-0800-0000-5fe25bd80000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook1160758455?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-280c960b3014bf4f87871ae6527e2de2-0fb1f510fc4a1c45-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "436d332b4e70af3b6b9cf7a7f1bc7851", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:31:33 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "436d332b4e70af3b6b9cf7a7f1bc7851", - "x-ms-request-id": "74655f96-f846-4e92-bdf0-c37afe1f68f3" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1160758455", - "name": "Notebook1160758455", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "000074f9-0000-0800-0000-5fe25d700000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook1117942749?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-8e0e894265b995428848f197fe14257b-67b1cc6b00a22e46-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "8227d0a90e14acad712f0b44e2045b17", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:31:34 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "8227d0a90e14acad712f0b44e2045b17", - "x-ms-request-id": "d5d8bc26-f989-4e3b-9c65-80bcbf7ef201" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1117942749", - "name": "Notebook1117942749", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "0000d5f9-0000-0800-0000-5fe25d950000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook1218638232?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-d13bf8882e346f438b8bff452a774992-21ebe295dd449042-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "4a599bd9d6bda7d806cd0927107d1cab", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:31:34 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "4a599bd9d6bda7d806cd0927107d1cab", - "x-ms-request-id": "6a8ca789-4c8f-451d-a5cd-d0c97b91f101" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1218638232", - "name": "Notebook1218638232", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "03007877-0000-0800-0000-5fe389d40000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook1203127906?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-18144d11fbd77b46bf984a70de344659-4f907c9e13f1ce4c-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "9256aec7cd461d9086c1d14042f7cc66", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:31:35 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "9256aec7cd461d9086c1d14042f7cc66", - "x-ms-request-id": "cd9fd867-2e5d-43f7-9033-f3b8edd3e224" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1203127906", - "name": "Notebook1203127906", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "0300d677-0000-0800-0000-5fe389f70000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook500281749?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-c7573351012efc4482c5d02bba91d8cc-eb858ab66d53ad4f-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "55cee0412e62d294f77f7b4604859bf4", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:31:35 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "55cee0412e62d294f77f7b4604859bf4", - "x-ms-request-id": "6e6e18ad-631b-4757-b18c-f3c78e89b4fa" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook500281749", - "name": "Notebook500281749", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "03004480-0000-0800-0000-5fe38d1d0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook754630834?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-a97d21da4fbe404e85dc4ca553fea921-de40e65c263bc145-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "337c5f12c8ad0bd00a3cc3fb0497640e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:31:35 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "337c5f12c8ad0bd00a3cc3fb0497640e", - "x-ms-request-id": "269da466-312c-41b0-8dd8-05c3d5377fdd" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook754630834", - "name": "Notebook754630834", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 + "metadata": { + "language_info": { + "name": "python" + }, + "a365ComputeOptions": null, + "sessionKeepAliveTimeout": 30 }, "cells": [], "folder": null }, - "etag": "0300bb80-0000-0800-0000-5fe38d470000" + "etag": "5f0029d3-0000-0100-0000-5f06bd6a0000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook642331279?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebooks/dongwwaCreateNbwithCell?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-43fac543b504c74eae0a62833e0a5a77-6a8782f1fefa9649-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "2fe6a200c7af99491a839bc651491800", + "traceparent": "00-03e421b02bf5074180843503e1f717f9-1e6ad38fe52adf47-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "4019667b9a731890d5e02f57a0f42e92", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:31:36 GMT", + "Date": "Thu, 30 Sep 2021 07:33:58 GMT", "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Kestrel Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "2fe6a200c7af99491a839bc651491800", - "x-ms-request-id": "6dfbc938-47b6-4722-a878-5208f3e981e6" + "x-ms-client-request-id": "4019667b9a731890d5e02f57a0f42e92", + "x-ms-request-id": "d48b31c4-947d-4b82-99ed-73d2fc8116fd" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook642331279", - "name": "Notebook642331279", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/dongwwaCreateNbwithCell", + "name": "dongwwaCreateNbwithCell", "type": "Microsoft.Synapse/workspaces/notebooks", "properties": { "nbformat": 4, "nbformat_minor": 2, "entityState": null, "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, + "bigDataPool": { + "referenceName": "testportal", + "type": "BigDataPoolReference" + }, + "sessionProperties": { + "driverMemory": "28g", + "driverCores": 4, + "executorMemory": "28g", + "executorCores": 4, + "numExecutors": 1, + "conf": { + "spark.dynamicAllocation.enabled": "false", + "spark.dynamicAllocation.minExecutors": "1", + "spark.dynamicAllocation.maxExecutors": "1" + } + }, "metadata": { "language_info": { - "name": "Python" + "name": "python" }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 + "a365ComputeOptions": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/bigDataPools/testportal", + "name": "testportal", + "type": "Spark", + "endpoint": "https://testsynapseworkspace.dev.azuresynapse.net/livyApi/versions/2019-11-01-preview/sparkPools/testportal", + "auth": { + "type": "AAD", + "authResource": "https://dev.azuresynapse.net" + }, + "sparkVersion": "2.4", + "nodeCount": 3, + "cores": 8, + "memory": 56, + "extraHeader": null + }, + "sessionKeepAliveTimeout": 30, + "saveOutput": true, + "synapse_widget": { + "version": "0.1", + "state": {} + }, + "kernelspec": { + "name": "synapse_pyspark", + "display_name": "python" + } }, - "cells": [], + "cells": [ + { + "cell_type": "code", + "metadata": {}, + "source": [ + "print(\u0027hello world\u0027)" + ], + "attachments": null, + "outputs": [], + "execution_count": null + } + ], "folder": null }, - "etag": "03004b8b-0000-0800-0000-5fe390d00000" + "etag": "0e00d468-0000-0100-0000-611a2f1e0000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook1333753034?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebooks/Notebook1980347592?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-7c70322092fbcf4186d77fd8a5e1e83b-2a5eebc84bd63541-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "e32edd26987a78b90fc24a256a98ce5f", + "traceparent": "00-2ec684eb305e2544b29863ddd0a249c7-1889a5dad893ed44-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "2b0cc95499d387a4e944820bf74d5a55", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:31:36 GMT", + "Date": "Thu, 30 Sep 2021 07:33:58 GMT", "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Kestrel Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "e32edd26987a78b90fc24a256a98ce5f", - "x-ms-request-id": "ea18b922-1142-49fe-aa42-c6f98b93d365" + "x-ms-client-request-id": "2b0cc95499d387a4e944820bf74d5a55", + "x-ms-request-id": "747ed83e-8bf1-40ae-9301-5f2287612c61" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1333753034", - "name": "Notebook1333753034", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/Notebook1980347592", + "name": "Notebook1980347592", "type": "Microsoft.Synapse/workspaces/notebooks", "properties": { - "nbformat": 4, + "nbformat": -1, "nbformat_minor": 2, "entityState": null, "renameOperationDetails": null, "bigDataPool": null, "sessionProperties": null, "metadata": { - "language_info": { - "name": "Python" - }, + "language_info": null, "a365ComputeOptions": null, "sessionKeepAliveTimeout": 0 }, "cells": [], "folder": null }, - "etag": "0300ac8b-0000-0800-0000-5fe390f40000" + "etag": "00001701-0000-0100-0000-600164550000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook865145813?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebooks/Notebook1304984445?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-2fab8ca9c1957d4ab7c982d58e168391-38f30aa5fe1c1745-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "62466d1a6b9f4b4516e319292d0abac1", + "traceparent": "00-563340ea9270574eb14dd4a4e9d48607-6710378a413cf447-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "169dceaedf1874d3ce55da16e6114d8a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:31:36 GMT", + "Date": "Thu, 30 Sep 2021 07:33:58 GMT", "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Kestrel Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "62466d1a6b9f4b4516e319292d0abac1", - "x-ms-request-id": "e19cbce2-c8ac-40ba-a84c-d9af8ad518cf" + "x-ms-client-request-id": "169dceaedf1874d3ce55da16e6114d8a", + "x-ms-request-id": "159a7cd3-e067-4a6f-aa6c-732120d3f968" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook865145813", - "name": "Notebook865145813", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/Notebook1304984445", + "name": "Notebook1304984445", "type": "Microsoft.Synapse/workspaces/notebooks", "properties": { - "nbformat": 4, - "nbformat_minor": 2, + "nbformat": 0, + "nbformat_minor": 0, "entityState": null, "renameOperationDetails": null, "bigDataPool": null, "sessionProperties": null, "metadata": { - "language_info": { - "name": "Python" - }, + "language_info": null, "a365ComputeOptions": null, "sessionKeepAliveTimeout": 0 }, "cells": [], "folder": null }, - "etag": "03002095-0000-0800-0000-5fe393fa0000" + "etag": "00004501-0000-0100-0000-600164960000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook708684366?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebooks/dwnb1218?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-899020a6317ea6489db6ca82e454d4ca-17474dea9b2d394b-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "27d5c32481696793e86e20ec7c232e81", + "traceparent": "00-56fddac90862ad4591fef10b236a780c-b835499003b65545-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "a83ee8d3e44be2f9c191562f17852087", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:31:36 GMT", + "Date": "Thu, 30 Sep 2021 07:33:58 GMT", "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Kestrel Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "27d5c32481696793e86e20ec7c232e81", - "x-ms-request-id": "3aba503d-69c6-4167-aeda-57f33270d66d" + "x-ms-client-request-id": "a83ee8d3e44be2f9c191562f17852087", + "x-ms-request-id": "011bdba0-c621-46ad-b9fe-60905a3b6682" }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook708684366", - "name": "Notebook708684366", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "0300a395-0000-0800-0000-5fe394280000" - } + "ResponseBody": "{\u0022id\u0022:\u0022/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/dwnb1218\u0022,\u0022name\u0022:\u0022dwnb1218\u0022,\u0022type\u0022:\u0022Microsoft.Synapse/workspaces/notebooks\u0022,\u0022properties\u0022:{\u0022nbformat\u0022:4,\u0022nbformat_minor\u0022:2,\u0022entityState\u0022:null,\u0022renameOperationDetails\u0022:null,\u0022bigDataPool\u0022:null,\u0022sessionProperties\u0022:null,\u0022metadata\u0022:{\u0022language_info\u0022:{\u0022name\u0022:\u0022python\u0022},\u0022a365ComputeOptions\u0022:{\u0022id\u0022:\u0022/subscriptions/132ed640-b28a-4f12-b8b6-3792c4e9d55f/resourceGroups/z-ago-dhp-ana-ari-ew1-rg01/providers/Microsoft.Synapse/workspaces/synapseari002/bigDataPools/RunningPool\u0022,\u0022name\u0022:\u0022RunningPool\u0022,\u0022type\u0022:\u0022Spark\u0022,\u0022endpoint\u0022:\u0022https://synapseari002.dev.azuresynapse.net/livyApi/versions/2019-11-01-preview/sparkPools/RunningPool\u0022,\u0022auth\u0022:{\u0022type\u0022:\u0022AAD\u0022,\u0022authResource\u0022:\u0022https://dev.azuresynapse.net\u0022},\u0022sparkVersion\u0022:\u00222.4\u0022,\u0022nodeCount\u0022:3,\u0022cores\u0022:0,\u0022memory\u0022:0,\u0022extraHeader\u0022:null},\u0022sessionKeepAliveTimeout\u0022:0,\u0022sessionOptions\u0022:{\u0022driverMemory\u0022:\u002228g\u0022,\u0022driverCores\u0022:4,\u0022executorMemory\u0022:\u002228g\u0022,\u0022executorCores\u0022:4,\u0022numExecutors\u0022:2,\u0022keepAliveTimeout\u0022:30,\u0022conf\u0022:{\u0022spark.dynamicAllocation.enabled\u0022:\u0022false\u0022,\u0022spark.dynamicAllocation.minExecutors\u0022:\u00222\u0022,\u0022spark.dynamicAllocation.maxExecutors\u0022:\u00222\u0022}},\u0022saveOutput\u0022:true},\u0022cells\u0022:[{\u0022cell_type\u0022:\u0022code\u0022,\u0022metadata\u0022:{\u0022microsoft\u0022:{\u0022language\u0022:\u0022python1\u0022}},\u0022source\u0022:[\u0022%%pyspark\\r\\n\u0022,\u0022df = spark.read.load(\u0027abfss://synapse@zagodhpanaariew1sto02.dfs.core.windows.net/Data/COCKPIT_V0.csv\u0027, format=\u0027csv\u0027\\r\\n\u0022,\u0022## If\u202Fheader\u202Fexists\u202Funcomment\u202Fline\u202Fbelow\\r\\n\u0022,\u0022##, header=True\\r\\n\u0022,\u0022)\\r\\n\u0022,\u0022display(df.limit(10))\u0022],\u0022attachments\u0022:null,\u0022outputs\u0022:[],\u0022execution_count\u0022:null}],\u0022folder\u0022:null},\u0022etag\u0022:\u0022c2009a8b-0000-0100-0000-5fd32e170000\u0022}" }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook679439297?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebooks/dwnb1219?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-06ea4d85cf207d4b960e470bebd78c75-17f8ce85d50c0d46-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "e4ab3bb5b503ba6198e2cd977f8f4b04", + "traceparent": "00-c21031fae73854499d36e3afbc8d557e-1c933ff1d824ef49-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "d2a9da861757747af6975c7ebe8ea0d7", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:31:37 GMT", + "Date": "Thu, 30 Sep 2021 07:33:59 GMT", "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Kestrel Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "e4ab3bb5b503ba6198e2cd977f8f4b04", - "x-ms-request-id": "65a4f2e8-15e8-4bdf-ac60-6542b79e7a91" + "x-ms-client-request-id": "d2a9da861757747af6975c7ebe8ea0d7", + "x-ms-request-id": "7530d646-5994-4a1e-80ea-2af361fcc2bf" }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook679439297", - "name": "Notebook679439297", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "0300119e-0000-0800-0000-5fe3971a0000" - } + "ResponseBody": "{\u0022id\u0022:\u0022/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/dwnb1219\u0022,\u0022name\u0022:\u0022dwnb1219\u0022,\u0022type\u0022:\u0022Microsoft.Synapse/workspaces/notebooks\u0022,\u0022properties\u0022:{\u0022nbformat\u0022:4,\u0022nbformat_minor\u0022:2,\u0022entityState\u0022:null,\u0022renameOperationDetails\u0022:null,\u0022bigDataPool\u0022:null,\u0022sessionProperties\u0022:null,\u0022metadata\u0022:{\u0022language_info\u0022:{\u0022name\u0022:\u0022python\u0022},\u0022a365ComputeOptions\u0022:{\u0022id\u0022:\u0022/subscriptions/132ed640-b28a-4f12-b8b6-3792c4e9d55f/resourceGroups/z-ago-dhp-ana-ari-ew1-rg01/providers/Microsoft.Synapse/workspaces/synapseari002/bigDataPools/RunningPool\u0022,\u0022name\u0022:\u0022RunningPool\u0022,\u0022type\u0022:\u0022Spark\u0022,\u0022endpoint\u0022:\u0022https://synapseari002.dev.azuresynapse.net/livyApi/versions/2019-11-01-preview/sparkPools/RunningPool\u0022,\u0022auth\u0022:{\u0022type\u0022:\u0022AAD\u0022,\u0022authResource\u0022:\u0022https://dev.azuresynapse.net\u0022},\u0022sparkVersion\u0022:\u00222.4\u0022,\u0022nodeCount\u0022:3,\u0022cores\u0022:0,\u0022memory\u0022:0,\u0022extraHeader\u0022:null},\u0022sessionKeepAliveTimeout\u0022:0,\u0022sessionOptions\u0022:{\u0022driverMemory\u0022:\u002228g\u0022,\u0022driverCores\u0022:4,\u0022executorMemory\u0022:\u002228g\u0022,\u0022executorCores\u0022:4,\u0022numExecutors\u0022:2,\u0022keepAliveTimeout\u0022:30,\u0022conf\u0022:{\u0022spark.dynamicAllocation.enabled\u0022:\u0022false\u0022,\u0022spark.dynamicAllocation.minExecutors\u0022:\u00222\u0022,\u0022spark.dynamicAllocation.maxExecutors\u0022:\u00222\u0022}},\u0022saveOutput\u0022:true},\u0022cells\u0022:[{\u0022cell_type\u0022:\u0022code\u0022,\u0022metadata\u0022:{\u0022microsoft\u0022:{\u0022language\u0022:\u0022python1\u0022}},\u0022source\u0022:[\u0022%%pyspark\\r\\n\u0022,\u0022df = spark.read.load(\u0027abfss://synapse@zagodhpanaariew1sto02.dfs.core.windows.net/Data/COCKPIT_V0.csv\u0027, format=\u0027csv\u0027\\r\\n\u0022,\u0022## If\u202Fheader\u202Fexists\u202Funcomment\u202Fline\u202Fbelow\\r\\n\u0022,\u0022##, header=True\\r\\n\u0022,\u0022)\\r\\n\u0022,\u0022display(df.limit(10))\u0022],\u0022attachments\u0022:null,\u0022outputs\u0022:[],\u0022execution_count\u0022:null}],\u0022folder\u0022:null},\u0022etag\u0022:\u0022c2009f8b-0000-0100-0000-5fd32e6c0000\u0022}" }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook1932813353?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebooks/dwnb1232?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-6d858519198db44d973deba753d5d1e4-67b044ba8353d442-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "a7018908a7c399f5d9de79304b58cef2", + "traceparent": "00-526eee3eb3f3014c82f17b94157ceb12-5a9952fb2a329840-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "0e37f7f6b20eca09d4bb558689a45c49", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:31:37 GMT", + "Date": "Thu, 30 Sep 2021 07:33:59 GMT", "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Kestrel Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "a7018908a7c399f5d9de79304b58cef2", - "x-ms-request-id": "6526983e-e1cf-415c-8409-c56574622d9f" + "x-ms-client-request-id": "0e37f7f6b20eca09d4bb558689a45c49", + "x-ms-request-id": "48da1e95-61c7-483c-afb0-fe6f4ed66485" }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1932813353", - "name": "Notebook1932813353", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "0300679e-0000-0800-0000-5fe397430000" - } + "ResponseBody": "{\u0022id\u0022:\u0022/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/dwnb1232\u0022,\u0022name\u0022:\u0022dwnb1232\u0022,\u0022type\u0022:\u0022Microsoft.Synapse/workspaces/notebooks\u0022,\u0022properties\u0022:{\u0022nbformat\u0022:4,\u0022nbformat_minor\u0022:2,\u0022entityState\u0022:null,\u0022renameOperationDetails\u0022:null,\u0022bigDataPool\u0022:null,\u0022sessionProperties\u0022:null,\u0022metadata\u0022:{\u0022language_info\u0022:{\u0022name\u0022:\u0022python\u0022},\u0022a365ComputeOptions\u0022:{\u0022id\u0022:\u0022/subscriptions/132ed640-b28a-4f12-b8b6-3792c4e9d55f/resourceGroups/z-ago-dhp-ana-ari-ew1-rg01/providers/Microsoft.Synapse/workspaces/synapseari002/bigDataPools/RunningPool\u0022,\u0022name\u0022:\u0022RunningPool\u0022,\u0022type\u0022:\u0022Spark\u0022,\u0022endpoint\u0022:\u0022https://synapseari002.dev.azuresynapse.net/livyApi/versions/2019-11-01-preview/sparkPools/RunningPool\u0022,\u0022auth\u0022:{\u0022type\u0022:\u0022AAD\u0022,\u0022authResource\u0022:\u0022https://dev.azuresynapse.net\u0022},\u0022sparkVersion\u0022:\u00222.4\u0022,\u0022nodeCount\u0022:3,\u0022cores\u0022:0,\u0022memory\u0022:0,\u0022extraHeader\u0022:null},\u0022sessionKeepAliveTimeout\u0022:0,\u0022sessionOptions\u0022:{\u0022driverMemory\u0022:\u002228g\u0022,\u0022driverCores\u0022:4,\u0022executorMemory\u0022:\u002228g\u0022,\u0022executorCores\u0022:4,\u0022numExecutors\u0022:2,\u0022keepAliveTimeout\u0022:30,\u0022conf\u0022:{\u0022spark.dynamicAllocation.enabled\u0022:\u0022false\u0022,\u0022spark.dynamicAllocation.minExecutors\u0022:\u00222\u0022,\u0022spark.dynamicAllocation.maxExecutors\u0022:\u00222\u0022}},\u0022saveOutput\u0022:true},\u0022cells\u0022:[{\u0022cell_type\u0022:\u0022code1\u0022,\u0022metadata\u0022:{\u0022microsoft\u0022:{\u0022language\u0022:\u0022python\u0022}},\u0022source\u0022:[\u0022%%pyspark\\r\\n\u0022,\u0022df = spark.read.load(\u0027abfss://synapse@zagodhpanaariew1sto02.dfs.core.windows.net/Data/COCKPIT_V0.csv\u0027, format=\u0027csv\u0027\\r\\n\u0022,\u0022## If\u202Fheader\u202Fexists\u202Funcomment\u202Fline\u202Fbelow\\r\\n\u0022,\u0022##, header=True\\r\\n\u0022,\u0022)\\r\\n\u0022,\u0022display(df.limit(10))\u0022],\u0022attachments\u0022:null,\u0022outputs\u0022:[],\u0022execution_count\u0022:null}],\u0022folder\u0022:null},\u0022etag\u0022:\u0022c200a08b-0000-0100-0000-5fd32eb70000\u0022}" }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook856832754?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebooks/Notebook1655116845?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-3014f510e220984c83f82f57904b3f1d-8d351da762a30f48-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "f17498b5d55f6ebe621b8e87b4fce858", + "traceparent": "00-71830bcf4cff3941bb7ac7c8ab7a2cab-d20777cec582064f-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "0c9052347b68bc336ec9b1b3877b2333", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:31:37 GMT", + "Date": "Thu, 30 Sep 2021 07:33:59 GMT", "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Kestrel Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "f17498b5d55f6ebe621b8e87b4fce858", - "x-ms-request-id": "c69f993f-9393-44b8-a043-3054fbc148a2" + "x-ms-client-request-id": "0c9052347b68bc336ec9b1b3877b2333", + "x-ms-request-id": "886950aa-f36d-4df0-9a08-fe16145bf4af" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook856832754", - "name": "Notebook856832754", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/Notebook1655116845", + "name": "Notebook1655116845", "type": "Microsoft.Synapse/workspaces/notebooks", "properties": { "nbformat": 4, @@ -9114,50 +848,58 @@ "bigDataPool": null, "sessionProperties": null, "metadata": { - "language_info": { - "name": "Python" - }, + "language_info": null, "a365ComputeOptions": null, "sessionKeepAliveTimeout": 0 }, - "cells": [], + "cells": [ + { + "cell_type": "code", + "metadata": {}, + "source": [ + "from azureml.opendatasets import NycTlcYellow\n", + "\n", + "data = NycTlcYellow()\n", + "df = data.to_spark_dataframe()\n", + "# Display 10 rows\n", + "display(df.limit(10))" + ], + "attachments": null, + "outputs": [], + "execution_count": null + } + ], "folder": null }, - "etag": "0300bea6-0000-0800-0000-5fe39a1d0000" + "etag": "1a0072ca-0000-0100-0000-5fd6ffec0000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook1790751747?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebooks/Notebook598190831?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-68f8e6d619cef245a6d1f570cb098784-28bee9f57e2ab542-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "f3e31b2386220ebd46110b243c306e3f", + "traceparent": "00-5e2a5e2ae94a1e419a6e217c73f6bc17-c15f52bca875594a-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "20387ef1114dd378d0defd9bc2f3ea52", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:31:38 GMT", + "Date": "Thu, 30 Sep 2021 07:33:59 GMT", "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Kestrel Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "f3e31b2386220ebd46110b243c306e3f", - "x-ms-request-id": "b3e463f0-4bbb-4aaa-89de-d77a1630be80" + "x-ms-client-request-id": "20387ef1114dd378d0defd9bc2f3ea52", + "x-ms-request-id": "33b2ea88-f795-4255-b6d5-1095ea564e84" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1790751747", - "name": "Notebook1790751747", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/Notebook598190831", + "name": "Notebook598190831", "type": "Microsoft.Synapse/workspaces/notebooks", "properties": { "nbformat": 4, @@ -9167,50 +909,58 @@ "bigDataPool": null, "sessionProperties": null, "metadata": { - "language_info": { - "name": "Python" - }, + "language_info": null, "a365ComputeOptions": null, "sessionKeepAliveTimeout": 0 }, - "cells": [], + "cells": [ + { + "cell_type": "code", + "metadata": {}, + "source": [ + "from azureml.opendatasets import NycTlcYellow\n", + "\n", + "data = NycTlcYellow()\n", + "df = data.to_spark_dataframe()\n", + "# Display 10 rows\n", + "display(df.limit(10))" + ], + "attachments": null, + "outputs": [], + "execution_count": null + } + ], "folder": null }, - "etag": "030030a7-0000-0800-0000-5fe39a450000" + "etag": "1a0074ca-0000-0100-0000-5fd6fff20000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook1811244433?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebooks/Notebook1970176056?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-03b21ab4cf39f949b2f8c669ec141b10-838cd9f9c3349d4e-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "e6e2db13591b33a5cb9245a8186ee5dc", + "traceparent": "00-7bc0fbc878dada40b3ce65fd49ce770a-08edb01899db4d46-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "6c49123a94fe7b6fc47ba04400564258", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:31:38 GMT", + "Date": "Thu, 30 Sep 2021 07:34:00 GMT", "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Kestrel Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "e6e2db13591b33a5cb9245a8186ee5dc", - "x-ms-request-id": "f16bcfd3-424c-4b44-b298-9b5ecd0a65b6" + "x-ms-client-request-id": "6c49123a94fe7b6fc47ba04400564258", + "x-ms-request-id": "b72a9876-940a-4e13-9a8e-ee735893547a" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1811244433", - "name": "Notebook1811244433", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/Notebook1970176056", + "name": "Notebook1970176056", "type": "Microsoft.Synapse/workspaces/notebooks", "properties": { "nbformat": 4, @@ -9220,50 +970,58 @@ "bigDataPool": null, "sessionProperties": null, "metadata": { - "language_info": { - "name": "Python" - }, + "language_info": null, "a365ComputeOptions": null, "sessionKeepAliveTimeout": 0 }, - "cells": [], + "cells": [ + { + "cell_type": "code", + "metadata": {}, + "source": [ + "from azureml.opendatasets import NycTlcYellow\n", + "\n", + "data = NycTlcYellow()\n", + "df = data.to_spark_dataframe()\n", + "# Display 10 rows\n", + "display(df.limit(10))" + ], + "attachments": null, + "outputs": [], + "execution_count": null + } + ], "folder": null }, - "etag": "0300b5b2-0000-0800-0000-5fe39e390000" + "etag": "1a0076ca-0000-0100-0000-5fd700340000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook226052528?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebooks/Notebook1782019395?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-dee2e8c0f3d9e14f9eaf89f9497c45ec-87ca84bc4bac6b49-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "300d20f5db742ecfda65ab4dca993232", + "traceparent": "00-e5a8f65f32d0a94080f959fe5d49619e-d221a31e81e8f641-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "0a9421973c6b22fbd9bc3b897d97f97a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:31:38 GMT", + "Date": "Thu, 30 Sep 2021 07:34:00 GMT", "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Kestrel Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "300d20f5db742ecfda65ab4dca993232", - "x-ms-request-id": "6f910726-dcc2-4ff3-a6bd-e94592a701a9" + "x-ms-client-request-id": "0a9421973c6b22fbd9bc3b897d97f97a", + "x-ms-request-id": "53e76d16-5e39-4799-a8c4-40be8164043c" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook226052528", - "name": "Notebook226052528", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/Notebook1782019395", + "name": "Notebook1782019395", "type": "Microsoft.Synapse/workspaces/notebooks", "properties": { "nbformat": 4, @@ -9273,50 +1031,58 @@ "bigDataPool": null, "sessionProperties": null, "metadata": { - "language_info": { - "name": "Python" - }, + "language_info": null, "a365ComputeOptions": null, "sessionKeepAliveTimeout": 0 }, - "cells": [], + "cells": [ + { + "cell_type": "code", + "metadata": {}, + "source": [ + "from azureml.opendatasets import NycTlcYellow\n", + "\n", + "data = NycTlcYellow()\n", + "df = data.to_spark_dataframe()\n", + "# Display 10 rows\n", + "display(df.limit(10))" + ], + "attachments": null, + "outputs": [], + "execution_count": null + } + ], "folder": null }, - "etag": "030027b3-0000-0800-0000-5fe39e690000" + "etag": "1a0078ca-0000-0100-0000-5fd700380000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook1898451087?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebooks/Notebook407138930?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-47a0cabba3473046b94b72690c107738-d6a959ed236c4347-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "d8734eac0119c93d75b027904115f5d7", + "traceparent": "00-3d2b255b4f0876418e2c7a0c8e032f3a-511f949537edf347-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "74795fdfb7325d350fbc5cd27033d37a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:31:38 GMT", + "Date": "Thu, 30 Sep 2021 07:34:00 GMT", "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Kestrel Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "d8734eac0119c93d75b027904115f5d7", - "x-ms-request-id": "0b0f6e68-9bef-4935-88d5-5b0b1d1a4c9d" + "x-ms-client-request-id": "74795fdfb7325d350fbc5cd27033d37a", + "x-ms-request-id": "295d1850-b88f-4637-ad5b-30907a1067cd" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1898451087", - "name": "Notebook1898451087", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/Notebook407138930", + "name": "Notebook407138930", "type": "Microsoft.Synapse/workspaces/notebooks", "properties": { "nbformat": 4, @@ -9326,50 +1092,58 @@ "bigDataPool": null, "sessionProperties": null, "metadata": { - "language_info": { - "name": "Python" - }, + "language_info": null, "a365ComputeOptions": null, "sessionKeepAliveTimeout": 0 }, - "cells": [], + "cells": [ + { + "cell_type": "code", + "metadata": {}, + "source": [ + "from azureml.opendatasets import NycTlcYellow\n", + "\n", + "data = NycTlcYellow()\n", + "df = data.to_spark_dataframe()\n", + "# Display 10 rows\n", + "display(df.limit(10))" + ], + "attachments": null, + "outputs": [], + "execution_count": null + } + ], "folder": null }, - "etag": "030008c4-0000-0800-0000-5fe3a3d00000" + "etag": "1a007bca-0000-0100-0000-5fd7021d0000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook1153376657?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebooks/Notebook1964062232?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-34ab7505943f644ba5f28a77a6f4bf2c-558219bd488fa949-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "1b2e2e2c3e2237cb0cb40cb6ae586831", + "traceparent": "00-675c02c1e70d454fa0fe54c1568132cf-5ed75ee3ad286c4a-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "a104a59ce05ffee61726924158e5fe2c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:31:39 GMT", + "Date": "Thu, 30 Sep 2021 07:34:01 GMT", "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Kestrel Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "1b2e2e2c3e2237cb0cb40cb6ae586831", - "x-ms-request-id": "148fbc89-ba88-4766-849d-06350e3e2141" + "x-ms-client-request-id": "a104a59ce05ffee61726924158e5fe2c", + "x-ms-request-id": "2a4dcd1a-0336-4989-83a2-24d47bbe7815" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1153376657", - "name": "Notebook1153376657", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/Notebook1964062232", + "name": "Notebook1964062232", "type": "Microsoft.Synapse/workspaces/notebooks", "properties": { "nbformat": 4, @@ -9379,50 +1153,58 @@ "bigDataPool": null, "sessionProperties": null, "metadata": { - "language_info": { - "name": "Python" - }, + "language_info": null, "a365ComputeOptions": null, "sessionKeepAliveTimeout": 0 }, - "cells": [], + "cells": [ + { + "cell_type": "code", + "metadata": {}, + "source": [ + "from azureml.opendatasets import NycTlcYellow\n", + "\n", + "data = NycTlcYellow()\n", + "df = data.to_spark_dataframe()\n", + "# Display 10 rows\n", + "display(df.limit(10))" + ], + "attachments": null, + "outputs": [], + "execution_count": null + } + ], "folder": null }, - "etag": "0300f9c4-0000-0800-0000-5fe3a3fe0000" + "etag": "1a007dca-0000-0100-0000-5fd702220000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook912671182?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebooks/Notebook1621408096?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-a9f8b005dc3c7a49ae46186e1671907e-fa9ba925d92af945-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "cafb125f0cfaf3c3e344bac4b33eecc4", + "traceparent": "00-73f1ef8dc1d5f04d94b46eb533ae93d1-e98509da6fbe484d-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "a1652682cddde026ec37fbafe029b2a5", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:31:39 GMT", + "Date": "Thu, 30 Sep 2021 07:34:01 GMT", "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Kestrel Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "cafb125f0cfaf3c3e344bac4b33eecc4", - "x-ms-request-id": "cb2909d2-df37-4992-9c92-8d2f31c3ae2b" + "x-ms-client-request-id": "a1652682cddde026ec37fbafe029b2a5", + "x-ms-request-id": "c6263f23-a220-44a8-822b-ebd011a63427" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook912671182", - "name": "Notebook912671182", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/Notebook1621408096", + "name": "Notebook1621408096", "type": "Microsoft.Synapse/workspaces/notebooks", "properties": { "nbformat": 4, @@ -9432,50 +1214,58 @@ "bigDataPool": null, "sessionProperties": null, "metadata": { - "language_info": { - "name": "Python" - }, + "language_info": null, "a365ComputeOptions": null, "sessionKeepAliveTimeout": 0 }, - "cells": [], + "cells": [ + { + "cell_type": "code", + "metadata": {}, + "source": [ + "from azureml.opendatasets import NycTlcYellow\n", + "\n", + "data = NycTlcYellow()\n", + "df = data.to_spark_dataframe()\n", + "# Display 10 rows\n", + "display(df.limit(10))" + ], + "attachments": null, + "outputs": [], + "execution_count": null + } + ], "folder": null }, - "etag": "0300fbd1-0000-0800-0000-5fe3a8730000" + "etag": "1a007fca-0000-0100-0000-5fd703dc0000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook2123043987?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebooks/Notebook391889253?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-db409d87259d0b44b78eb1d70d7985bd-c8452108c926d54b-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "9b21d370176a6d0f833bcc65f5871a1d", + "traceparent": "00-9709312455048f429649644a6894cd2c-cbca58b740b48f41-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "d8edc1e95793fe1a787a5d0b24f30429", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:31:40 GMT", + "Date": "Thu, 30 Sep 2021 07:34:01 GMT", "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Kestrel Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "9b21d370176a6d0f833bcc65f5871a1d", - "x-ms-request-id": "e93c7d1b-8610-4f60-b39e-0a3b6827c258" + "x-ms-client-request-id": "d8edc1e95793fe1a787a5d0b24f30429", + "x-ms-request-id": "6f901ab9-8882-449d-8c68-f8b111ca320e" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook2123043987", - "name": "Notebook2123043987", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/Notebook391889253", + "name": "Notebook391889253", "type": "Microsoft.Synapse/workspaces/notebooks", "properties": { "nbformat": 4, @@ -9485,474 +1275,1686 @@ "bigDataPool": null, "sessionProperties": null, "metadata": { - "language_info": { - "name": "Python" - }, + "language_info": null, "a365ComputeOptions": null, "sessionKeepAliveTimeout": 0 }, - "cells": [], + "cells": [ + { + "cell_type": "code", + "metadata": {}, + "source": [ + "from azureml.opendatasets import NycTlcYellow\n", + "\n", + "data = NycTlcYellow()\n", + "df = data.to_spark_dataframe()\n", + "# Display 10 rows\n", + "display(df.limit(10))" + ], + "attachments": null, + "outputs": [], + "execution_count": null + } + ], "folder": null }, - "etag": "030036d3-0000-0800-0000-5fe3a8a80000" + "etag": "1a0081ca-0000-0100-0000-5fd703e90000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook531852650?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebooks/dongwwanb?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-f29cda36a0b3c64a903529658873c8d9-e71ecf0b0dfbd64e-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "2f30f5472b1a1fdc6b3a37dd840684cd", + "traceparent": "00-41d67bbf3b8d504f8f1dd7fee49da07f-2f1bd20b74993d47-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "49502fbe32cece9d7e23b427e4361dee", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:31:40 GMT", + "Date": "Thu, 30 Sep 2021 07:34:02 GMT", "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Kestrel Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "2f30f5472b1a1fdc6b3a37dd840684cd", - "x-ms-request-id": "66cb0fc9-43b0-45ca-a16e-8acaf2a8c980" + "x-ms-client-request-id": "49502fbe32cece9d7e23b427e4361dee", + "x-ms-request-id": "3c513fc7-0f94-45ca-b724-aceb1522fb5d" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook531852650", - "name": "Notebook531852650", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/dongwwanb", + "name": "dongwwanb", "type": "Microsoft.Synapse/workspaces/notebooks", "properties": { "nbformat": 4, - "nbformat_minor": 2, + "nbformat_minor": 0, "entityState": null, "renameOperationDetails": null, "bigDataPool": null, - "sessionProperties": null, + "sessionProperties": { + "driverMemory": "28g", + "driverCores": 4, + "executorMemory": "28g", + "executorCores": 4, + "numExecutors": 2, + "conf": { + "spark.dynamicAllocation.enabled": "false", + "spark.dynamicAllocation.minExecutors": "2", + "spark.dynamicAllocation.maxExecutors": "2" + } + }, "metadata": { "language_info": { - "name": "Python" + "name": "python" }, "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 + "sessionKeepAliveTimeout": 30, + "saveOutput": true, + "synapse_widget": { + "version": "0.1", + "state": {} + }, + "kernelspec": { + "name": "synapse_pyspark", + "display_name": "python" + } }, - "cells": [], + "cells": [ + { + "cell_type": "markdown", + "metadata": { + "application/vnd.databricks.v1\u002Bcell": { + "title": "", + "showTitle": false, + "inputWidgets": {}, + "nuid": "ec9689e6-a215-42cf-aa9f-85a38cca6362" + } + }, + "source": [ + "Copyright (c) Microsoft Corporation. All rights reserved." + ], + "attachments": null, + "outputs": [], + "execution_count": null + }, + { + "cell_type": "code", + "metadata": { + "application/vnd.databricks.v1\u002Bcell": { + "title": "", + "showTitle": false, + "inputWidgets": {}, + "nuid": "4eb23c41-ffd4-412f-a887-102462d4d316" + } + }, + "source": [ + "# Disable the verbose log\n", + "import logging\n", + "logging.getLogger(\u0022py4j\u0022).setLevel(logging.ERROR) " + ], + "attachments": null, + "outputs": [ + { + "output_type": "display_data", + "data": { + "text/html": "\u003Cstyle scoped\u003E\n .ansiout {\n display: block;\n unicode-bidi: embed;\n white-space: pre-wrap;\n word-wrap: break-word;\n word-break: break-all;\n font-family: \u0022Source Code Pro\u0022, \u0022Menlo\u0022, monospace;;\n font-size: 13px;\n color: #555;\n margin-left: 4px;\n line-height: 19px;\n }\n\u003C/style\u003E\n\u003Cdiv class=\u0022ansiout\u0022\u003E\u003C/div\u003E" + }, + "metadata": { + "application/vnd.databricks.v1\u002Boutput": { + "datasetInfos": [], + "data": "\u003Cdiv class=\u0022ansiout\u0022\u003E\u003C/div\u003E", + "removedWidgets": [], + "addedWidgets": {}, + "type": "html", + "arguments": {} + } + } + } + ], + "execution_count": 0 + }, + { + "cell_type": "code", + "metadata": { + "application/vnd.databricks.v1\u002Bcell": { + "title": "", + "showTitle": false, + "inputWidgets": {}, + "nuid": "b5c38c38-a7f7-43f5-a15c-e387079ac8d7" + } + }, + "source": [ + "\n", + "!pip install \u0022https://retaildatastore.blob.core.windows.net/artifacts/cdmsdk/commondatamodel-objectmodel-1.0.10-py3-none-any.whl?sp=r\u0026st=2021-02-11T11:46:58Z\u0026se=2022-02-11T19:46:58Z\u0026spr=https\u0026sv=2020-02-10\u0026sr=b\u0026sig=XXXXXXXXXXXXXXXXXXXXXXXX\u0022\n", + "" + ], + "attachments": null, + "outputs": [ + { + "output_type": "display_data", + "data": { + "text/html": "\u003Cstyle scoped\u003E\n .ansiout {\n display: block;\n unicode-bidi: embed;\n white-space: pre-wrap;\n word-wrap: break-word;\n word-break: break-all;\n font-family: \u0022Source Code Pro\u0022, \u0022Menlo\u0022, monospace;;\n font-size: 13px;\n color: #555;\n margin-left: 4px;\n line-height: 19px;\n }\n\u003C/style\u003E\n\u003Cdiv class=\u0022ansiout\u0022\u003E\u003C/div\u003E" + }, + "metadata": { + "application/vnd.databricks.v1\u002Boutput": { + "datasetInfos": [], + "data": "\u003Cdiv class=\u0022ansiout\u0022\u003E\u003C/div\u003E", + "removedWidgets": [], + "addedWidgets": {}, + "type": "html", + "arguments": {} + } + } + } + ], + "execution_count": 0 + }, + { + "cell_type": "code", + "metadata": { + "application/vnd.databricks.v1\u002Bcell": { + "title": "", + "showTitle": false, + "inputWidgets": {}, + "nuid": "b255d876-363a-446e-a0fa-e51f866efa77" + } + }, + "source": [ + "\n", + "\n", + "# Generic imports\n", + "import dotenv\n", + "import json\n", + "import numpy as np\n", + "import os\n", + "import fnmatch\n", + "import shutil\n", + "import random\n", + "import string\n", + "import pandas as pd\n", + "import requests\n", + "import asyncio\n", + "import copy\n", + "import functools\n", + "import pathlib\n", + "import string\n", + "from datetime import datetime, timezone\n", + "\n", + "# Spark imports\n", + "from pyspark.sql import SparkSession, SQLContext\n", + "from pyspark.sql.types import *\n", + "from pyspark.sql import functions as F\n", + "\n", + "# Recommenders imports\n", + "# from azureiai.reco_utils.dataset.spark_splitters import spark_random_split\n", + "# from azureiai.reco_utils.evaluation.spark_evaluation import (\n", + "# SparkRankingEvaluation,\n", + "# SparkRatingEvaluation,\n", + "# )\n", + "from pysarplus import SARPlus\n", + "from azureiai.retail.cdm2ai.reader import CONFIG\n", + "\n", + "# AzureML imports\n", + "import azureml.core\n", + "from azureml.core.runconfig import JarLibrary\n", + "from azureml.core.compute import ComputeTarget, DatabricksCompute\n", + "from azureml.pipeline.steps import DatabricksStep\n", + "from azureml.core.datastore import Datastore\n", + "from azureml.data.data_reference import DataReference\n", + "from azureml.core import Workspace\n", + "from azureml.core.run import Run\n", + "from azureml.core.experiment import Experiment\n", + "from azureml.core import Environment\n", + "from azureml.core.environment import CondaDependencies\n", + "from azureml.core.environment import SparkPackage\n", + "from azureml.core.model import Model\n", + "from azureml.core.webservice import Webservice\n", + "\n", + "# Cosmos DB imports\n", + "# Install Cosmos DB connector from: https://docs.databricks.com/data/data-sources/azure/cosmosdb-connector.html\n", + "from azure.common.client_factory import get_client_from_json_dict\n", + "\n", + "# CDM imports\n", + "from cdm.storage import ADLSAdapter\n", + "from cdm.objectmodel import CdmCorpusDefinition, CdmManifestDefinition\n", + "from cdm.persistence.cdmfolder import ManifestPersistence\n", + "from cdm.persistence.cdmfolder.types import ManifestContent\n", + "from cdm.storage import LocalAdapter, ADLSAdapter\n", + "from cdm.utilities import time_utils\n", + "\n", + "from cdm.utilities.string_utils import kvprint\n", + "\n", + "# AKS imports\n", + "from azureml.core.compute import AksCompute\n", + "from azureml.core.compute_target import ComputeTargetException\n", + "from azureml.core.webservice import AksWebservice\n", + "from azureml.exceptions import WebserviceException\n", + "from azureml.core.model import InferenceConfig\n", + "\n", + "" + ], + "attachments": null, + "outputs": [ + { + "output_type": "display_data", + "data": { + "text/html": "\u003Cstyle scoped\u003E\n .ansiout {\n display: block;\n unicode-bidi: embed;\n white-space: pre-wrap;\n word-wrap: break-word;\n word-break: break-all;\n font-family: \u0022Source Code Pro\u0022, \u0022Menlo\u0022, monospace;;\n font-size: 13px;\n color: #555;\n margin-left: 4px;\n line-height: 19px;\n }\n\u003C/style\u003E\n\u003Cdiv class=\u0022ansiout\u0022\u003E\u003C/div\u003E" + }, + "metadata": { + "application/vnd.databricks.v1\u002Boutput": { + "datasetInfos": [], + "data": "\u003Cdiv class=\u0022ansiout\u0022\u003E\u003C/div\u003E", + "removedWidgets": [], + "addedWidgets": {}, + "type": "html", + "arguments": {} + } + } + } + ], + "execution_count": 0 + }, + { + "cell_type": "code", + "metadata": { + "application/vnd.databricks.v1\u002Bcell": { + "title": "", + "showTitle": false, + "inputWidgets": {}, + "nuid": "bb6041f1-a825-41ae-ba4d-de6dff6e361a" + } + }, + "source": [ + "# Global variables\n", + "# NOTE these variables are visible in the scope of the entire pipeline\n", + "\n", + "# Load the .env file to manage persistent variables\n", + "_GLOBAL_DOTENV_PATH = pathlib.Path(dotenv.find_dotenv(\n", + " filename=\u0022/dbfs/FileStore/.env\u0022,\n", + " raise_error_if_not_found=True\n", + "))\n", + "\n", + "# -------------------------------------------------------------------------\n", + "# Azure general variables\n", + "# -------------------------------------------------------------------------\n", + "_GLOBAL_SUBSCRIPTION_ID = dotenv.get_key(_GLOBAL_DOTENV_PATH, \u0022subscription_id\u0022)\n", + "_GLOBAL_RESOURCE_GROUP = dotenv.get_key(_GLOBAL_DOTENV_PATH, \u0022resource_group\u0022)\n", + "_GLOBAL_CONFIG_DICT = {\n", + " \u0022clientIdKey\u0022: \u0022sp_client_id\u0022,\n", + " \u0022clientSecretKey\u0022: \u0022sp_password\u0022,\n", + " \u0022clientId\u0022: dbutils.secrets.get(scope=\u0022secrets\u0022, key=\u0022sp_client_id\u0022),\n", + " \u0022clientSecret\u0022: dbutils.secrets.get(scope=\u0022secrets\u0022, key=\u0022sp_password\u0022),\n", + " \u0022subscriptionId\u0022: _GLOBAL_SUBSCRIPTION_ID,\n", + " \u0022tenantId\u0022: dotenv.get_key(_GLOBAL_DOTENV_PATH, \u0022tenant_id\u0022),\n", + " \u0022activeDirectoryEndpointUrl\u0022: \u0022https://login.microsoftonline.com\u0022,\n", + " \u0022resourceManagerEndpointUrl\u0022: \u0022https://management.azure.com/\u0022,\n", + " \u0022activeDirectoryGraphResourceId\u0022: \u0022https://graph.windows.net/\u0022,\n", + " \u0022sqlManagementEndpointUrl\u0022: \u0022https://management.core.windows.net:8443/\u0022,\n", + " \u0022galleryEndpointUrl\u0022: \u0022https://gallery.azure.com/\u0022,\n", + " \u0022managementEndpointUrl\u0022: \u0022https://management.core.windows.net/\u0022\n", + "}\n", + "\n", + "# -------------------------------------------------------------------------\n", + "# ADLS variables\n", + "# -------------------------------------------------------------------------\n", + "_GLOBAL_ADLS_ACCOUNT = dotenv.get_key(_GLOBAL_DOTENV_PATH, \u0022data_account\u0022)\n", + "_GLOBAL_ADLS_CONTAINER = dotenv.get_key(_GLOBAL_DOTENV_PATH, \u0022data_container\u0022)\n", + "_GLOBAL_ADLS_APPID = _GLOBAL_CONFIG_DICT[\u0022clientId\u0022]\n", + "_GLOBAL_ADLS_DIRID = _GLOBAL_CONFIG_DICT[\u0022tenantId\u0022]\n", + "_GLOBAL_ADLS_SECRET = _GLOBAL_CONFIG_DICT[\u0022clientSecret\u0022]\n", + "_GLOBAL_ADLS_HOSTNAME = f\u0027{_GLOBAL_ADLS_ACCOUNT}.dfs.core.windows.net\u0027\n", + "_GLOBAL_ADLS_DICT = {\n", + " \u0022adls_source\u0022: \u0022abfss://{0}@{1}.dfs.core.windows.net\u0022.format(_GLOBAL_ADLS_CONTAINER, _GLOBAL_ADLS_ACCOUNT),\n", + " \u0022oauth_endpoint\u0022: \u0022https://login.microsoftonline.com/{0}/oauth2/token\u0022.format(_GLOBAL_CONFIG_DICT[\u0022tenantId\u0022]),\n", + " \u0022adls_dfs_endpoint\u0022: \u0022{0}.dfs.core.windows.net\u0022.format(_GLOBAL_ADLS_ACCOUNT),\n", + " \u0022adls_container_mount_point\u0022: \u0022/mnt/{0}\u0022.format(_GLOBAL_ADLS_CONTAINER),\n", + " \u0022adls_resource_type\u0022: \u0022https://storage.azure.com\u0022,\n", + " \u0022adls_mount_root\u0022: \u0022/mnt\u0022,\n", + " \u0022adls_model_cache\u0022: \u0022dbfs:/mnt/{0}/cache\u0022.format(_GLOBAL_ADLS_CONTAINER)\n", + "}\n", + "\n", + "# -------------------------------------------------------------------------\n", + "# COSMOS DB variables\n", + "# -------------------------------------------------------------------------\n", + "_GLOBAL_DB_SECRETS = {\n", + " \u0022Endpoint\u0022: \u0022https://{0}.documents.azure.com:443/\u0022.format(dotenv.get_key(_GLOBAL_DOTENV_PATH, \u0022azure_cosmosdb_account_name\u0022)),\n", + " \u0022Masterkey\u0022: dbutils.secrets.get(scope=\u0022secrets\u0022, key=\u0022cosmosdb_primary_master_key\u0022),\n", + " \u0022Database\u0022: dotenv.get_key(_GLOBAL_DOTENV_PATH, \u0022azure_cosmosdb_database\u0022),\n", + " \u0022Collection\u0022: dotenv.get_key(_GLOBAL_DOTENV_PATH, \u0022azure_cosmosdb_container\u0022),\n", + " \u0022Upsert\u0022: True\n", + "}\n", + "\n", + "# -------------------------------------------------------------------------\n", + "# Data variables\n", + "# -------------------------------------------------------------------------\n", + "_GLOBAL_DATA_ROOT = dotenv.get_key(_GLOBAL_DOTENV_PATH, \u0022physical_data_model_directory\u0022)\n", + "_GLOBAL_TPC_RAW_ROOT = \u0027tpcds-raw-data\u0027\n", + "_GLOBAL_IDM_SCHEMA_ROOT = dotenv.get_key(_GLOBAL_DOTENV_PATH, \u0022logical_data_model_directory\u0022)\n", + "_GLOBAL_DATA_NAME = dotenv.get_key(_GLOBAL_DOTENV_PATH, \u0022data_name\u0022)\n", + "_GLOBAL_ADAPTER_PARTIAL = functools.partial(\n", + " ADLSAdapter,\n", + " hostname=_GLOBAL_ADLS_HOSTNAME,\n", + " tenant=_GLOBAL_ADLS_DIRID,\n", + " client_id=_GLOBAL_ADLS_APPID,\n", + " secret=_GLOBAL_ADLS_SECRET\n", + ")\n", + "_GLOBAL_CONFIG_JSON = copy.deepcopy(CONFIG)\n", + "_GLOBAL_CONFIG_JSON[\u0022adls\u0022][\u0022account\u0022] = _GLOBAL_ADLS_ACCOUNT\n", + "_GLOBAL_CONFIG_JSON[\u0022adls\u0022][\u0022container\u0022] = _GLOBAL_ADLS_CONTAINER\n", + "_GLOBAL_CONFIG_JSON[\u0022adls\u0022][\u0022appid\u0022] = _GLOBAL_ADLS_APPID\n", + "_GLOBAL_CONFIG_JSON[\u0022adls\u0022][\u0022dirid\u0022] = _GLOBAL_ADLS_DIRID\n", + "_GLOBAL_CONFIG_JSON[\u0022adls\u0022][\u0022secret\u0022] = _GLOBAL_ADLS_SECRET\n", + "_GLOBAL_CONFIG_JSON[\u0022adls\u0022][\u0022hostname\u0022] = _GLOBAL_ADLS_HOSTNAME\n", + "_GLOBAL_CONFIG_JSON[\u0022cdm\u0022][\u0022data_root\u0022] = _GLOBAL_DATA_ROOT\n", + "_GLOBAL_CONFIG_JSON[\u0022cdm\u0022][\u0022manifest_name\u0022] = \u0022{0}.manifest.cdm.json\u0022.format(dotenv.get_key(_GLOBAL_DOTENV_PATH, \u0022industry_data_model_name\u0022))\n", + "_GLOBAL_INPUT_DATA_FILE = dotenv.get_key(_GLOBAL_DOTENV_PATH, \u0022processed_data_file\u0022)\n", + "_GLOBAL_CUSTOMER_DATA_FILE = dotenv.get_key(_GLOBAL_DOTENV_PATH, \u0022processed_customer_data_file\u0022)\n", + "\n", + "# -------------------------------------------------------------------------\n", + "# Model variables\n", + "# -------------------------------------------------------------------------\n", + "_GLOBAL_MODEL_LOCAL_CACHE = \u0027dbfs:/model/{0}\u0027.format(\n", + " \u0027\u0027.join(random.choice(string.ascii_lowercase) for i in range(10))\n", + ")\n", + "\n", + "# -------------------------------------------------------------------------\n", + "# Azure Machine Learning service variables\n", + "# -------------------------------------------------------------------------\n", + "_GLOBAL_AML_DICT = {\n", + " \u0022workspace_name\u0022: dotenv.get_key(_GLOBAL_DOTENV_PATH, \u0022azureml_workspace\u0022),\n", + " \u0022model_file_name\u0022: dotenv.get_key(_GLOBAL_DOTENV_PATH, \u0022azureml_model_file_name\u0022),\n", + " \u0022aml_experiment_name\u0022: dotenv.get_key(_GLOBAL_DOTENV_PATH, \u0022azureml_experiment_name\u0022)\n", + "}\n", + "\n", + "# -------------------------------------------------------------------------\n", + "# Azure Kubernetes Service variables\n", + "# -------------------------------------------------------------------------\n", + "_GLOBAL_AKS_NAME = dotenv.get_key(_GLOBAL_DOTENV_PATH, \u0022aks_cluster_name\u0022)\n", + "_GLOBAL_SERVICE_NAME = \u0022aks-service-{0}\u0022.format(dotenv.get_key(_GLOBAL_DOTENV_PATH, \u0022unique_key\u0022))\n", + "_GLOBAL_AKS_CONFIG_LEVEL = dotenv.get_key(_GLOBAL_DOTENV_PATH, \u0022aks_config_level\u0022)\n", + "_GLOBAL_AKS_COMPUTE_TARGET_NAME = \u0027aks\u0027 \u002B dotenv.get_key(_GLOBAL_DOTENV_PATH, \u0022unique_key\u0022)" + ], + "attachments": null, + "outputs": [ + { + "output_type": "display_data", + "data": { + "text/html": "\u003Cstyle scoped\u003E\n .ansiout {\n display: block;\n unicode-bidi: embed;\n white-space: pre-wrap;\n word-wrap: break-word;\n word-break: break-all;\n font-family: \u0022Source Code Pro\u0022, \u0022Menlo\u0022, monospace;;\n font-size: 13px;\n color: #555;\n margin-left: 4px;\n line-height: 19px;\n }\n\u003C/style\u003E\n\u003Cdiv class=\u0022ansiout\u0022\u003E\u003C/div\u003E" + }, + "metadata": { + "application/vnd.databricks.v1\u002Boutput": { + "datasetInfos": [], + "data": "\u003Cdiv class=\u0022ansiout\u0022\u003E\u003C/div\u003E", + "removedWidgets": [], + "addedWidgets": {}, + "type": "html", + "arguments": {} + } + } + }, + { + "output_type": "display_data", + "data": { + "text/html": "\u003Cstyle scoped\u003E\n .ansiout {\n display: block;\n unicode-bidi: embed;\n white-space: pre-wrap;\n word-wrap: break-word;\n word-break: break-all;\n font-family: \u0022Source Code Pro\u0022, \u0022Menlo\u0022, monospace;;\n font-size: 13px;\n color: #555;\n margin-left: 4px;\n line-height: 19px;\n }\n\u003C/style\u003E\n\u003Cdiv class=\u0022ansiout\u0022\u003E\u003Cspan class=\u0022ansi-red-fg\u0022\u003E---------------------------------------------------------------------------\u003C/span\u003E\n\u003Cspan class=\u0022ansi-red-fg\u0022\u003ENameError\u003C/span\u003E Traceback (most recent call last)\n\u003Cspan class=\u0022ansi-green-fg\u0022\u003E\u0026lt;command-1159393715563018\u0026gt;\u003C/span\u003E in \u003Cspan class=\u0022ansi-cyan-fg\u0022\u003E\u0026lt;module\u0026gt;\u003C/span\u003E\n\u003Cspan class=\u0022ansi-green-intense-fg ansi-bold\u0022\u003E 66\u003C/span\u003E _GLOBAL_DATA_NAME \u003Cspan class=\u0022ansi-blue-fg\u0022\u003E=\u003C/span\u003E dotenv\u003Cspan class=\u0022ansi-blue-fg\u0022\u003E.\u003C/span\u003Eget_key\u003Cspan class=\u0022ansi-blue-fg\u0022\u003E(\u003C/span\u003E_GLOBAL_DOTENV_PATH\u003Cspan class=\u0022ansi-blue-fg\u0022\u003E,\u003C/span\u003E \u003Cspan class=\u0022ansi-blue-fg\u0022\u003E\u0026#34;data_name\u0026#34;\u003C/span\u003E\u003Cspan class=\u0022ansi-blue-fg\u0022\u003E)\u003C/span\u003E\n\u003Cspan class=\u0022ansi-green-intense-fg ansi-bold\u0022\u003E 67\u003C/span\u003E _GLOBAL_ADAPTER_PARTIAL = functools.partial(\n\u003Cspan class=\u0022ansi-green-fg\u0022\u003E---\u0026gt; 68\u003C/span\u003E\u003Cspan class=\u0022ansi-red-fg\u0022\u003E \u003C/span\u003EADLSAdapter\u003Cspan class=\u0022ansi-blue-fg\u0022\u003E,\u003C/span\u003E\n\u003Cspan class=\u0022ansi-green-intense-fg ansi-bold\u0022\u003E 69\u003C/span\u003E hostname\u003Cspan class=\u0022ansi-blue-fg\u0022\u003E=\u003C/span\u003E_GLOBAL_ADLS_HOSTNAME\u003Cspan class=\u0022ansi-blue-fg\u0022\u003E,\u003C/span\u003E\n\u003Cspan class=\u0022ansi-green-intense-fg ansi-bold\u0022\u003E 70\u003C/span\u003E tenant\u003Cspan class=\u0022ansi-blue-fg\u0022\u003E=\u003C/span\u003E_GLOBAL_ADLS_DIRID\u003Cspan class=\u0022ansi-blue-fg\u0022\u003E,\u003C/span\u003E\n\n\u003Cspan class=\u0022ansi-red-fg\u0022\u003ENameError\u003C/span\u003E: name \u0026#39;ADLSAdapter\u0026#39; is not defined\u003C/div\u003E" + }, + "metadata": { + "application/vnd.databricks.v1\u002Boutput": { + "type": "ipynbError", + "data": "\u003Cdiv class=\u0022ansiout\u0022\u003E\u003Cspan class=\u0022ansi-red-fg\u0022\u003E---------------------------------------------------------------------------\u003C/span\u003E\n\u003Cspan class=\u0022ansi-red-fg\u0022\u003ENameError\u003C/span\u003E Traceback (most recent call last)\n\u003Cspan class=\u0022ansi-green-fg\u0022\u003E\u0026lt;command-1159393715563018\u0026gt;\u003C/span\u003E in \u003Cspan class=\u0022ansi-cyan-fg\u0022\u003E\u0026lt;module\u0026gt;\u003C/span\u003E\n\u003Cspan class=\u0022ansi-green-intense-fg ansi-bold\u0022\u003E 66\u003C/span\u003E _GLOBAL_DATA_NAME \u003Cspan class=\u0022ansi-blue-fg\u0022\u003E=\u003C/span\u003E dotenv\u003Cspan class=\u0022ansi-blue-fg\u0022\u003E.\u003C/span\u003Eget_key\u003Cspan class=\u0022ansi-blue-fg\u0022\u003E(\u003C/span\u003E_GLOBAL_DOTENV_PATH\u003Cspan class=\u0022ansi-blue-fg\u0022\u003E,\u003C/span\u003E \u003Cspan class=\u0022ansi-blue-fg\u0022\u003E\u0026#34;data_name\u0026#34;\u003C/span\u003E\u003Cspan class=\u0022ansi-blue-fg\u0022\u003E)\u003C/span\u003E\n\u003Cspan class=\u0022ansi-green-intense-fg ansi-bold\u0022\u003E 67\u003C/span\u003E _GLOBAL_ADAPTER_PARTIAL = functools.partial(\n\u003Cspan class=\u0022ansi-green-fg\u0022\u003E---\u0026gt; 68\u003C/span\u003E\u003Cspan class=\u0022ansi-red-fg\u0022\u003E \u003C/span\u003EADLSAdapter\u003Cspan class=\u0022ansi-blue-fg\u0022\u003E,\u003C/span\u003E\n\u003Cspan class=\u0022ansi-green-intense-fg ansi-bold\u0022\u003E 69\u003C/span\u003E hostname\u003Cspan class=\u0022ansi-blue-fg\u0022\u003E=\u003C/span\u003E_GLOBAL_ADLS_HOSTNAME\u003Cspan class=\u0022ansi-blue-fg\u0022\u003E,\u003C/span\u003E\n\u003Cspan class=\u0022ansi-green-intense-fg ansi-bold\u0022\u003E 70\u003C/span\u003E tenant\u003Cspan class=\u0022ansi-blue-fg\u0022\u003E=\u003C/span\u003E_GLOBAL_ADLS_DIRID\u003Cspan class=\u0022ansi-blue-fg\u0022\u003E,\u003C/span\u003E\n\n\u003Cspan class=\u0022ansi-red-fg\u0022\u003ENameError\u003C/span\u003E: name \u0026#39;ADLSAdapter\u0026#39; is not defined\u003C/div\u003E", + "errorSummary": "\u003Cspan class=\u0022ansi-red-fg\u0022\u003ENameError\u003C/span\u003E: name \u0026#39;ADLSAdapter\u0026#39; is not defined", + "arguments": {} + } + } + } + ], + "execution_count": 0 + }, + { + "cell_type": "code", + "metadata": { + "application/vnd.databricks.v1\u002Bcell": { + "title": "", + "showTitle": false, + "inputWidgets": {}, + "nuid": "639595d4-4083-4f33-a7d4-15af60e7b3d6" + } + }, + "source": [ + "# Spark initialization\n", + "SUBMIT_ARGS = \u0022--packages eisber:sarplus:0.2.6 pyspark-shell\u0022\n", + "os.environ[\u0022PYSPARK_SUBMIT_ARGS\u0022] = SUBMIT_ARGS\n", + "\n", + "spark = (\n", + " SparkSession.builder.appName(\u0022sample\u0022)\n", + " .master(\u0022local[*]\u0022)\n", + " .config(\u0022memory\u0022, \u00221G\u0022)\n", + " .config(\u0022spark.sql.shuffle.partitions\u0022, \u00221\u0022)\n", + " .config(\u0022spark.sql.crossJoin.enabled\u0022, True)\n", + " .config(\u0022spark.ui.enabled\u0022, False)\n", + " .getOrCreate()\n", + ")\n", + "\n", + "# SqlContext helps with doing SQL like queries on spark DFs.\n", + "sqlContext = SQLContext(spark)\n", + "\n", + "# Configure the Spark session to avoid using mount\n", + "spark.conf.set(\u0022fs.azure.account.auth.type.{0}.dfs.core.windows.net\u0022.format(_GLOBAL_ADLS_ACCOUNT), \u0022OAuth\u0022)\n", + "spark.conf.set(\n", + " \u0022fs.azure.account.oauth.provider.type.{0}.dfs.core.windows.net\u0022.format(_GLOBAL_ADLS_ACCOUNT),\n", + " \u0022org.apache.hadoop.fs.azurebfs.oauth2.ClientCredsTokenProvider\u0022,\n", + ")\n", + "spark.conf.set(\n", + " \u0022fs.azure.account.oauth2.client.id.{0}.dfs.core.windows.net\u0022.format(_GLOBAL_ADLS_ACCOUNT), _GLOBAL_ADLS_APPID\n", + ")\n", + "spark.conf.set(\n", + " \u0022fs.azure.account.oauth2.client.secret.{0}.dfs.core.windows.net\u0022.format(_GLOBAL_ADLS_ACCOUNT), _GLOBAL_ADLS_SECRET\n", + ")\n", + "spark.conf.set(\n", + " \u0022fs.azure.account.oauth2.client.endpoint.{0}.dfs.core.windows.net\u0022.format(_GLOBAL_ADLS_ACCOUNT),\n", + " \u0022https://login.microsoftonline.com/{0}/oauth2/token\u0022.format(_GLOBAL_ADLS_DIRID),\n", + ")" + ], + "attachments": null, + "outputs": [], + "execution_count": 0 + }, + { + "cell_type": "code", + "metadata": { + "application/vnd.databricks.v1\u002Bcell": { + "title": "", + "showTitle": false, + "inputWidgets": {}, + "nuid": "614662de-2288-451e-b238-b6190156aac4" + } + }, + "source": [ + "# Mount the remove ADLS container on the local databricks\n", + "\n", + "# Unmount an existing mount point\n", + "try:\n", + " dbutils.fs.unmount(_GLOBAL_ADLS_DICT[\u0022adls_container_mount_point\u0022])\n", + "except Exception as ex:\n", + " if \u0022Directory not mounted\u0022 not in str(ex):\n", + " raise Exception(\u0022Error in unmounting\u0022)\n", + "\n", + "# Mount wit the provided configuration information\n", + "configs = {\n", + " \u0022fs.azure.account.auth.type\u0022: \u0022OAuth\u0022,\n", + " \u0022fs.azure.account.oauth.provider.type\u0022: \u0022org.apache.hadoop.fs.azurebfs.oauth2.ClientCredsTokenProvider\u0022,\n", + " \u0022fs.azure.account.oauth2.client.id\u0022: _GLOBAL_CONFIG_DICT[\u0022clientId\u0022],\n", + " \u0022fs.azure.account.oauth2.client.secret\u0022: _GLOBAL_CONFIG_DICT[\u0022clientSecret\u0022],\n", + " \u0022fs.azure.account.oauth2.client.endpoint\u0022: _GLOBAL_ADLS_DICT[\u0022oauth_endpoint\u0022],\n", + "}\n", + "dbutils.fs.mount(\n", + " source=_GLOBAL_ADLS_DICT[\u0022adls_source\u0022],\n", + " mount_point=_GLOBAL_ADLS_DICT[\u0022adls_container_mount_point\u0022],\n", + " extra_configs=configs,\n", + ")\n", + "\n", + "# List the contents in the mounted directory\n", + "dbutils.fs.ls(_GLOBAL_ADLS_DICT[\u0022adls_container_mount_point\u0022])\n", + "\n", + "# Make a new directory for model cache use\n", + "dbutils.fs.mkdirs(_GLOBAL_ADLS_DICT[\u0022adls_model_cache\u0022])" + ], + "attachments": null, + "outputs": [], + "execution_count": 0 + } + ], "folder": null }, - "etag": "0807a71b-0000-0800-0000-6000c4570000" + "etag": "0e003468-0000-0100-0000-611a2ee30000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook1417891841?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebooks/dongwwanb1?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-3fab6cb2d1ce9f4cb9334d6d025a30d4-fcd40f10abc22e4e-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "da4547c8cd3648c7028e47bf405efe5c", + "traceparent": "00-916051979907b14cae4a70a407f76382-28053f87ee58fb41-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "9758ec7426f82a980b672862701bbbf8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:31:40 GMT", + "Date": "Thu, 30 Sep 2021 07:34:02 GMT", "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Kestrel Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "da4547c8cd3648c7028e47bf405efe5c", - "x-ms-request-id": "fa5ac6a7-26c7-4711-a774-46b5fc8f6d80" + "x-ms-client-request-id": "9758ec7426f82a980b672862701bbbf8", + "x-ms-request-id": "631f8518-a35d-4553-bde0-329904f96a3d" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook1417891841", - "name": "Notebook1417891841", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/dongwwanb1", + "name": "dongwwanb1", "type": "Microsoft.Synapse/workspaces/notebooks", "properties": { "nbformat": 4, - "nbformat_minor": 2, + "nbformat_minor": 0, "entityState": null, "renameOperationDetails": null, "bigDataPool": null, "sessionProperties": null, "metadata": { - "language_info": { - "name": "Python" + "language_info": null, + "a365ComputeOptions": null, + "sessionKeepAliveTimeout": 0, + "application/vnd.databricks.v1\u002Bnotebook": { + "notebookName": "config", + "dashboards": [], + "language": "python", + "widgets": {}, + "notebookOrigID": 1159393715563015 + } + }, + "cells": [ + { + "cell_type": "markdown", + "metadata": { + "application/vnd.databricks.v1\u002Bcell": { + "title": "", + "showTitle": false, + "inputWidgets": {}, + "nuid": "ec9689e6-a215-42cf-aa9f-85a38cca6362" + } + }, + "source": [ + "Copyright (c) Microsoft Corporation. All rights reserved." + ], + "attachments": null, + "outputs": [], + "execution_count": null + }, + { + "cell_type": "code", + "metadata": { + "application/vnd.databricks.v1\u002Bcell": { + "title": "", + "showTitle": false, + "inputWidgets": {}, + "nuid": "4eb23c41-ffd4-412f-a887-102462d4d316" + } + }, + "source": [ + "# Disable the verbose log\nimport logging\nlogging.getLogger(\u0022py4j\u0022).setLevel(logging.ERROR)" + ], + "attachments": null, + "outputs": [ + { + "output_type": "display_data", + "data": { + "text/html": [ + "\u003Cstyle scoped\u003E\n .ansiout {\n display: block;\n unicode-bidi: embed;\n white-space: pre-wrap;\n word-wrap: break-word;\n word-break: break-all;\n font-family: \u0022Source Code Pro\u0022, \u0022Menlo\u0022, monospace;;\n font-size: 13px;\n color: #555;\n margin-left: 4px;\n line-height: 19px;\n }\n\u003C/style\u003E\n\u003Cdiv class=\u0022ansiout\u0022\u003E\u003C/div\u003E" + ] + }, + "metadata": { + "application/vnd.databricks.v1\u002Boutput": { + "datasetInfos": [], + "data": "\u003Cdiv class=\u0022ansiout\u0022\u003E\u003C/div\u003E", + "removedWidgets": [], + "addedWidgets": {}, + "type": "html", + "arguments": {} + } + } + } + ], + "execution_count": 0 + }, + { + "cell_type": "code", + "metadata": { + "application/vnd.databricks.v1\u002Bcell": { + "title": "", + "showTitle": false, + "inputWidgets": {}, + "nuid": "b5c38c38-a7f7-43f5-a15c-e387079ac8d7" + } + }, + "source": [ + "\n!pip install \u0022https://retaildatastore.blob.core.windows.net/artifacts/cdmsdk/commondatamodel-objectmodel-1.0.10-py3-none-any.whl?sp=r\u0026st=2021-02-11T11:46:58Z\u0026se=2022-02-11T19:46:58Z\u0026spr=https\u0026sv=2020-02-10\u0026sr=b\u0026sig=XXXXXXXXXXXXXXXXXXXXXXXX\u0022\n" + ], + "attachments": null, + "outputs": [ + { + "output_type": "display_data", + "data": { + "text/html": [ + "\u003Cstyle scoped\u003E\n .ansiout {\n display: block;\n unicode-bidi: embed;\n white-space: pre-wrap;\n word-wrap: break-word;\n word-break: break-all;\n font-family: \u0022Source Code Pro\u0022, \u0022Menlo\u0022, monospace;;\n font-size: 13px;\n color: #555;\n margin-left: 4px;\n line-height: 19px;\n }\n\u003C/style\u003E\n\u003Cdiv class=\u0022ansiout\u0022\u003E\u003C/div\u003E" + ] + }, + "metadata": { + "application/vnd.databricks.v1\u002Boutput": { + "datasetInfos": [], + "data": "\u003Cdiv class=\u0022ansiout\u0022\u003E\u003C/div\u003E", + "removedWidgets": [], + "addedWidgets": {}, + "type": "html", + "arguments": {} + } + } + } + ], + "execution_count": 0 + }, + { + "cell_type": "code", + "metadata": { + "application/vnd.databricks.v1\u002Bcell": { + "title": "", + "showTitle": false, + "inputWidgets": {}, + "nuid": "b255d876-363a-446e-a0fa-e51f866efa77" + } + }, + "source": [ + "\n\n# Generic imports\nimport dotenv\nimport json\nimport numpy as np\nimport os\nimport fnmatch\nimport shutil\nimport random\nimport string\nimport pandas as pd\nimport requests\nimport asyncio\nimport copy\nimport functools\nimport pathlib\nimport string\nfrom datetime import datetime, timezone\n\n# Spark imports\nfrom pyspark.sql import SparkSession, SQLContext\nfrom pyspark.sql.types import *\nfrom pyspark.sql import functions as F\n\n# Recommenders imports\n# from azureiai.reco_utils.dataset.spark_splitters import spark_random_split\n# from azureiai.reco_utils.evaluation.spark_evaluation import (\n# SparkRankingEvaluation,\n# SparkRatingEvaluation,\n# )\nfrom pysarplus import SARPlus\nfrom azureiai.retail.cdm2ai.reader import CONFIG\n\n# AzureML imports\nimport azureml.core\nfrom azureml.core.runconfig import JarLibrary\nfrom azureml.core.compute import ComputeTarget, DatabricksCompute\nfrom azureml.pipeline.steps import DatabricksStep\nfrom azureml.core.datastore import Datastore\nfrom azureml.data.data_reference import DataReference\nfrom azureml.core import Workspace\nfrom azureml.core.run import Run\nfrom azureml.core.experiment import Experiment\nfrom azureml.core import Environment\nfrom azureml.core.environment import CondaDependencies\nfrom azureml.core.environment import SparkPackage\nfrom azureml.core.model import Model\nfrom azureml.core.webservice import Webservice\n\n# Cosmos DB imports\n# Install Cosmos DB connector from: https://docs.databricks.com/data/data-sources/azure/cosmosdb-connector.html\nfrom azure.common.client_factory import get_client_from_json_dict\n\n# CDM imports\nfrom cdm.storage import ADLSAdapter\nfrom cdm.objectmodel import CdmCorpusDefinition, CdmManifestDefinition\nfrom cdm.persistence.cdmfolder import ManifestPersistence\nfrom cdm.persistence.cdmfolder.types import ManifestContent\nfrom cdm.storage import LocalAdapter, ADLSAdapter\nfrom cdm.utilities import time_utils\n\nfrom cdm.utilities.string_utils import kvprint\n\n# AKS imports\nfrom azureml.core.compute import AksCompute\nfrom azureml.core.compute_target import ComputeTargetException\nfrom azureml.core.webservice import AksWebservice\nfrom azureml.exceptions import WebserviceException\nfrom azureml.core.model import InferenceConfig\n\n" + ], + "attachments": null, + "outputs": [ + { + "output_type": "display_data", + "data": { + "text/html": [ + "\u003Cstyle scoped\u003E\n .ansiout {\n display: block;\n unicode-bidi: embed;\n white-space: pre-wrap;\n word-wrap: break-word;\n word-break: break-all;\n font-family: \u0022Source Code Pro\u0022, \u0022Menlo\u0022, monospace;;\n font-size: 13px;\n color: #555;\n margin-left: 4px;\n line-height: 19px;\n }\n\u003C/style\u003E\n\u003Cdiv class=\u0022ansiout\u0022\u003E\u003C/div\u003E" + ] + }, + "metadata": { + "application/vnd.databricks.v1\u002Boutput": { + "datasetInfos": [], + "data": "\u003Cdiv class=\u0022ansiout\u0022\u003E\u003C/div\u003E", + "removedWidgets": [], + "addedWidgets": {}, + "type": "html", + "arguments": {} + } + } + } + ], + "execution_count": 0 }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "08075a49-0000-0800-0000-6000c4930000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook493783868?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-188730bdae9a1a4b8b23015d712784d9-1f8392080350f342-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "bd7c9c29bd0e45aaf701302fe032e97c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:31:40 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "bd7c9c29bd0e45aaf701302fe032e97c", - "x-ms-request-id": "015241c7-5559-422a-bb79-c0e4bac72d64" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook493783868", - "name": "Notebook493783868", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" + { + "cell_type": "code", + "metadata": { + "application/vnd.databricks.v1\u002Bcell": { + "title": "", + "showTitle": false, + "inputWidgets": {}, + "nuid": "bb6041f1-a825-41ae-ba4d-de6dff6e361a" + } + }, + "source": [ + "# Global variables\n# NOTE these variables are visible in the scope of the entire pipeline\n\n# Load the .env file to manage persistent variables\n_GLOBAL_DOTENV_PATH = pathlib.Path(dotenv.find_dotenv(\n filename=\u0022/dbfs/FileStore/.env\u0022,\n raise_error_if_not_found=True\n))\n\n# -------------------------------------------------------------------------\n# Azure general variables\n# -------------------------------------------------------------------------\n_GLOBAL_SUBSCRIPTION_ID = dotenv.get_key(_GLOBAL_DOTENV_PATH, \u0022subscription_id\u0022)\n_GLOBAL_RESOURCE_GROUP = dotenv.get_key(_GLOBAL_DOTENV_PATH, \u0022resource_group\u0022)\n_GLOBAL_CONFIG_DICT = {\n \u0022clientIdKey\u0022: \u0022sp_client_id\u0022,\n \u0022clientSecretKey\u0022: \u0022sp_password\u0022,\n \u0022clientId\u0022: dbutils.secrets.get(scope=\u0022secrets\u0022, key=\u0022sp_client_id\u0022),\n \u0022clientSecret\u0022: dbutils.secrets.get(scope=\u0022secrets\u0022, key=\u0022sp_password\u0022),\n \u0022subscriptionId\u0022: _GLOBAL_SUBSCRIPTION_ID,\n \u0022tenantId\u0022: dotenv.get_key(_GLOBAL_DOTENV_PATH, \u0022tenant_id\u0022),\n \u0022activeDirectoryEndpointUrl\u0022: \u0022https://login.microsoftonline.com\u0022,\n \u0022resourceManagerEndpointUrl\u0022: \u0022https://management.azure.com/\u0022,\n \u0022activeDirectoryGraphResourceId\u0022: \u0022https://graph.windows.net/\u0022,\n \u0022sqlManagementEndpointUrl\u0022: \u0022https://management.core.windows.net:8443/\u0022,\n \u0022galleryEndpointUrl\u0022: \u0022https://gallery.azure.com/\u0022,\n \u0022managementEndpointUrl\u0022: \u0022https://management.core.windows.net/\u0022\n}\n\n# -------------------------------------------------------------------------\n# ADLS variables\n# -------------------------------------------------------------------------\n_GLOBAL_ADLS_ACCOUNT = dotenv.get_key(_GLOBAL_DOTENV_PATH, \u0022data_account\u0022)\n_GLOBAL_ADLS_CONTAINER = dotenv.get_key(_GLOBAL_DOTENV_PATH, \u0022data_container\u0022)\n_GLOBAL_ADLS_APPID = _GLOBAL_CONFIG_DICT[\u0022clientId\u0022]\n_GLOBAL_ADLS_DIRID = _GLOBAL_CONFIG_DICT[\u0022tenantId\u0022]\n_GLOBAL_ADLS_SECRET = _GLOBAL_CONFIG_DICT[\u0022clientSecret\u0022]\n_GLOBAL_ADLS_HOSTNAME = f\u0027{_GLOBAL_ADLS_ACCOUNT}.dfs.core.windows.net\u0027\n_GLOBAL_ADLS_DICT = {\n \u0022adls_source\u0022: \u0022abfss://{0}@{1}.dfs.core.windows.net\u0022.format(_GLOBAL_ADLS_CONTAINER, _GLOBAL_ADLS_ACCOUNT),\n \u0022oauth_endpoint\u0022: \u0022https://login.microsoftonline.com/{0}/oauth2/token\u0022.format(_GLOBAL_CONFIG_DICT[\u0022tenantId\u0022]),\n \u0022adls_dfs_endpoint\u0022: \u0022{0}.dfs.core.windows.net\u0022.format(_GLOBAL_ADLS_ACCOUNT),\n \u0022adls_container_mount_point\u0022: \u0022/mnt/{0}\u0022.format(_GLOBAL_ADLS_CONTAINER),\n \u0022adls_resource_type\u0022: \u0022https://storage.azure.com\u0022,\n \u0022adls_mount_root\u0022: \u0022/mnt\u0022,\n \u0022adls_model_cache\u0022: \u0022dbfs:/mnt/{0}/cache\u0022.format(_GLOBAL_ADLS_CONTAINER)\n}\n\n# -------------------------------------------------------------------------\n# COSMOS DB variables\n# -------------------------------------------------------------------------\n_GLOBAL_DB_SECRETS = {\n \u0022Endpoint\u0022: \u0022https://{0}.documents.azure.com:443/\u0022.format(dotenv.get_key(_GLOBAL_DOTENV_PATH, \u0022azure_cosmosdb_account_name\u0022)),\n \u0022Masterkey\u0022: dbutils.secrets.get(scope=\u0022secrets\u0022, key=\u0022cosmosdb_primary_master_key\u0022),\n \u0022Database\u0022: dotenv.get_key(_GLOBAL_DOTENV_PATH, \u0022azure_cosmosdb_database\u0022),\n \u0022Collection\u0022: dotenv.get_key(_GLOBAL_DOTENV_PATH, \u0022azure_cosmosdb_container\u0022),\n \u0022Upsert\u0022: True\n}\n\n# -------------------------------------------------------------------------\n# Data variables\n# -------------------------------------------------------------------------\n_GLOBAL_DATA_ROOT = dotenv.get_key(_GLOBAL_DOTENV_PATH, \u0022physical_data_model_directory\u0022)\n_GLOBAL_TPC_RAW_ROOT = \u0027tpcds-raw-data\u0027\n_GLOBAL_IDM_SCHEMA_ROOT = dotenv.get_key(_GLOBAL_DOTENV_PATH, \u0022logical_data_model_directory\u0022)\n_GLOBAL_DATA_NAME = dotenv.get_key(_GLOBAL_DOTENV_PATH, \u0022data_name\u0022)\n_GLOBAL_ADAPTER_PARTIAL = functools.partial(\n ADLSAdapter,\n hostname=_GLOBAL_ADLS_HOSTNAME,\n tenant=_GLOBAL_ADLS_DIRID,\n client_id=_GLOBAL_ADLS_APPID,\n secret=_GLOBAL_ADLS_SECRET\n)\n_GLOBAL_CONFIG_JSON = copy.deepcopy(CONFIG)\n_GLOBAL_CONFIG_JSON[\u0022adls\u0022][\u0022account\u0022] = _GLOBAL_ADLS_ACCOUNT\n_GLOBAL_CONFIG_JSON[\u0022adls\u0022][\u0022container\u0022] = _GLOBAL_ADLS_CONTAINER\n_GLOBAL_CONFIG_JSON[\u0022adls\u0022][\u0022appid\u0022] = _GLOBAL_ADLS_APPID\n_GLOBAL_CONFIG_JSON[\u0022adls\u0022][\u0022dirid\u0022] = _GLOBAL_ADLS_DIRID\n_GLOBAL_CONFIG_JSON[\u0022adls\u0022][\u0022secret\u0022] = _GLOBAL_ADLS_SECRET\n_GLOBAL_CONFIG_JSON[\u0022adls\u0022][\u0022hostname\u0022] = _GLOBAL_ADLS_HOSTNAME\n_GLOBAL_CONFIG_JSON[\u0022cdm\u0022][\u0022data_root\u0022] = _GLOBAL_DATA_ROOT\n_GLOBAL_CONFIG_JSON[\u0022cdm\u0022][\u0022manifest_name\u0022] = \u0022{0}.manifest.cdm.json\u0022.format(dotenv.get_key(_GLOBAL_DOTENV_PATH, \u0022industry_data_model_name\u0022))\n_GLOBAL_INPUT_DATA_FILE = dotenv.get_key(_GLOBAL_DOTENV_PATH, \u0022processed_data_file\u0022)\n_GLOBAL_CUSTOMER_DATA_FILE = dotenv.get_key(_GLOBAL_DOTENV_PATH, \u0022processed_customer_data_file\u0022)\n\n# -------------------------------------------------------------------------\n# Model variables\n# -------------------------------------------------------------------------\n_GLOBAL_MODEL_LOCAL_CACHE = \u0027dbfs:/model/{0}\u0027.format(\n \u0027\u0027.join(random.choice(string.ascii_lowercase) for i in range(10))\n)\n\n# -------------------------------------------------------------------------\n# Azure Machine Learning service variables\n# -------------------------------------------------------------------------\n_GLOBAL_AML_DICT = {\n \u0022workspace_name\u0022: dotenv.get_key(_GLOBAL_DOTENV_PATH, \u0022azureml_workspace\u0022),\n \u0022model_file_name\u0022: dotenv.get_key(_GLOBAL_DOTENV_PATH, \u0022azureml_model_file_name\u0022),\n \u0022aml_experiment_name\u0022: dotenv.get_key(_GLOBAL_DOTENV_PATH, \u0022azureml_experiment_name\u0022)\n}\n\n# -------------------------------------------------------------------------\n# Azure Kubernetes Service variables\n# -------------------------------------------------------------------------\n_GLOBAL_AKS_NAME = dotenv.get_key(_GLOBAL_DOTENV_PATH, \u0022aks_cluster_name\u0022)\n_GLOBAL_SERVICE_NAME = \u0022aks-service-{0}\u0022.format(dotenv.get_key(_GLOBAL_DOTENV_PATH, \u0022unique_key\u0022))\n_GLOBAL_AKS_CONFIG_LEVEL = dotenv.get_key(_GLOBAL_DOTENV_PATH, \u0022aks_config_level\u0022)\n_GLOBAL_AKS_COMPUTE_TARGET_NAME = \u0027aks\u0027 \u002B dotenv.get_key(_GLOBAL_DOTENV_PATH, \u0022unique_key\u0022)" + ], + "attachments": null, + "outputs": [ + { + "output_type": "display_data", + "data": { + "text/html": [ + "\u003Cstyle scoped\u003E\n .ansiout {\n display: block;\n unicode-bidi: embed;\n white-space: pre-wrap;\n word-wrap: break-word;\n word-break: break-all;\n font-family: \u0022Source Code Pro\u0022, \u0022Menlo\u0022, monospace;;\n font-size: 13px;\n color: #555;\n margin-left: 4px;\n line-height: 19px;\n }\n\u003C/style\u003E\n\u003Cdiv class=\u0022ansiout\u0022\u003E\u003C/div\u003E" + ] + }, + "metadata": { + "application/vnd.databricks.v1\u002Boutput": { + "datasetInfos": [], + "data": "\u003Cdiv class=\u0022ansiout\u0022\u003E\u003C/div\u003E", + "removedWidgets": [], + "addedWidgets": {}, + "type": "html", + "arguments": {} + } + } + }, + { + "output_type": "display_data", + "data": { + "text/html": [ + "\u003Cstyle scoped\u003E\n .ansiout {\n display: block;\n unicode-bidi: embed;\n white-space: pre-wrap;\n word-wrap: break-word;\n word-break: break-all;\n font-family: \u0022Source Code Pro\u0022, \u0022Menlo\u0022, monospace;;\n font-size: 13px;\n color: #555;\n margin-left: 4px;\n line-height: 19px;\n }\n\u003C/style\u003E\n\u003Cdiv class=\u0022ansiout\u0022\u003E\u003Cspan class=\u0022ansi-red-fg\u0022\u003E---------------------------------------------------------------------------\u003C/span\u003E\n\u003Cspan class=\u0022ansi-red-fg\u0022\u003ENameError\u003C/span\u003E Traceback (most recent call last)\n\u003Cspan class=\u0022ansi-green-fg\u0022\u003E\u0026lt;command-1159393715563018\u0026gt;\u003C/span\u003E in \u003Cspan class=\u0022ansi-cyan-fg\u0022\u003E\u0026lt;module\u0026gt;\u003C/span\u003E\n\u003Cspan class=\u0022ansi-green-intense-fg ansi-bold\u0022\u003E 66\u003C/span\u003E _GLOBAL_DATA_NAME \u003Cspan class=\u0022ansi-blue-fg\u0022\u003E=\u003C/span\u003E dotenv\u003Cspan class=\u0022ansi-blue-fg\u0022\u003E.\u003C/span\u003Eget_key\u003Cspan class=\u0022ansi-blue-fg\u0022\u003E(\u003C/span\u003E_GLOBAL_DOTENV_PATH\u003Cspan class=\u0022ansi-blue-fg\u0022\u003E,\u003C/span\u003E \u003Cspan class=\u0022ansi-blue-fg\u0022\u003E\u0026#34;data_name\u0026#34;\u003C/span\u003E\u003Cspan class=\u0022ansi-blue-fg\u0022\u003E)\u003C/span\u003E\n\u003Cspan class=\u0022ansi-green-intense-fg ansi-bold\u0022\u003E 67\u003C/span\u003E _GLOBAL_ADAPTER_PARTIAL = functools.partial(\n\u003Cspan class=\u0022ansi-green-fg\u0022\u003E---\u0026gt; 68\u003C/span\u003E\u003Cspan class=\u0022ansi-red-fg\u0022\u003E \u003C/span\u003EADLSAdapter\u003Cspan class=\u0022ansi-blue-fg\u0022\u003E,\u003C/span\u003E\n\u003Cspan class=\u0022ansi-green-intense-fg ansi-bold\u0022\u003E 69\u003C/span\u003E hostname\u003Cspan class=\u0022ansi-blue-fg\u0022\u003E=\u003C/span\u003E_GLOBAL_ADLS_HOSTNAME\u003Cspan class=\u0022ansi-blue-fg\u0022\u003E,\u003C/span\u003E\n\u003Cspan class=\u0022ansi-green-intense-fg ansi-bold\u0022\u003E 70\u003C/span\u003E tenant\u003Cspan class=\u0022ansi-blue-fg\u0022\u003E=\u003C/span\u003E_GLOBAL_ADLS_DIRID\u003Cspan class=\u0022ansi-blue-fg\u0022\u003E,\u003C/span\u003E\n\n\u003Cspan class=\u0022ansi-red-fg\u0022\u003ENameError\u003C/span\u003E: name \u0026#39;ADLSAdapter\u0026#39; is not defined\u003C/div\u003E" + ] + }, + "metadata": { + "application/vnd.databricks.v1\u002Boutput": { + "type": "ipynbError", + "data": "\u003Cdiv class=\u0022ansiout\u0022\u003E\u003Cspan class=\u0022ansi-red-fg\u0022\u003E---------------------------------------------------------------------------\u003C/span\u003E\n\u003Cspan class=\u0022ansi-red-fg\u0022\u003ENameError\u003C/span\u003E Traceback (most recent call last)\n\u003Cspan class=\u0022ansi-green-fg\u0022\u003E\u0026lt;command-1159393715563018\u0026gt;\u003C/span\u003E in \u003Cspan class=\u0022ansi-cyan-fg\u0022\u003E\u0026lt;module\u0026gt;\u003C/span\u003E\n\u003Cspan class=\u0022ansi-green-intense-fg ansi-bold\u0022\u003E 66\u003C/span\u003E _GLOBAL_DATA_NAME \u003Cspan class=\u0022ansi-blue-fg\u0022\u003E=\u003C/span\u003E dotenv\u003Cspan class=\u0022ansi-blue-fg\u0022\u003E.\u003C/span\u003Eget_key\u003Cspan class=\u0022ansi-blue-fg\u0022\u003E(\u003C/span\u003E_GLOBAL_DOTENV_PATH\u003Cspan class=\u0022ansi-blue-fg\u0022\u003E,\u003C/span\u003E \u003Cspan class=\u0022ansi-blue-fg\u0022\u003E\u0026#34;data_name\u0026#34;\u003C/span\u003E\u003Cspan class=\u0022ansi-blue-fg\u0022\u003E)\u003C/span\u003E\n\u003Cspan class=\u0022ansi-green-intense-fg ansi-bold\u0022\u003E 67\u003C/span\u003E _GLOBAL_ADAPTER_PARTIAL = functools.partial(\n\u003Cspan class=\u0022ansi-green-fg\u0022\u003E---\u0026gt; 68\u003C/span\u003E\u003Cspan class=\u0022ansi-red-fg\u0022\u003E \u003C/span\u003EADLSAdapter\u003Cspan class=\u0022ansi-blue-fg\u0022\u003E,\u003C/span\u003E\n\u003Cspan class=\u0022ansi-green-intense-fg ansi-bold\u0022\u003E 69\u003C/span\u003E hostname\u003Cspan class=\u0022ansi-blue-fg\u0022\u003E=\u003C/span\u003E_GLOBAL_ADLS_HOSTNAME\u003Cspan class=\u0022ansi-blue-fg\u0022\u003E,\u003C/span\u003E\n\u003Cspan class=\u0022ansi-green-intense-fg ansi-bold\u0022\u003E 70\u003C/span\u003E tenant\u003Cspan class=\u0022ansi-blue-fg\u0022\u003E=\u003C/span\u003E_GLOBAL_ADLS_DIRID\u003Cspan class=\u0022ansi-blue-fg\u0022\u003E,\u003C/span\u003E\n\n\u003Cspan class=\u0022ansi-red-fg\u0022\u003ENameError\u003C/span\u003E: name \u0026#39;ADLSAdapter\u0026#39; is not defined\u003C/div\u003E", + "errorSummary": "\u003Cspan class=\u0022ansi-red-fg\u0022\u003ENameError\u003C/span\u003E: name \u0026#39;ADLSAdapter\u0026#39; is not defined", + "arguments": {} + } + } + } + ], + "execution_count": 0 }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], + { + "cell_type": "code", + "metadata": { + "application/vnd.databricks.v1\u002Bcell": { + "title": "", + "showTitle": false, + "inputWidgets": {}, + "nuid": "639595d4-4083-4f33-a7d4-15af60e7b3d6" + } + }, + "source": [ + "# Spark initialization\nSUBMIT_ARGS = \u0022--packages eisber:sarplus:0.2.6 pyspark-shell\u0022\nos.environ[\u0022PYSPARK_SUBMIT_ARGS\u0022] = SUBMIT_ARGS\n\nspark = (\n SparkSession.builder.appName(\u0022sample\u0022)\n .master(\u0022local[*]\u0022)\n .config(\u0022memory\u0022, \u00221G\u0022)\n .config(\u0022spark.sql.shuffle.partitions\u0022, \u00221\u0022)\n .config(\u0022spark.sql.crossJoin.enabled\u0022, True)\n .config(\u0022spark.ui.enabled\u0022, False)\n .getOrCreate()\n)\n\n# SqlContext helps with doing SQL like queries on spark DFs.\nsqlContext = SQLContext(spark)\n\n# Configure the Spark session to avoid using mount\nspark.conf.set(\u0022fs.azure.account.auth.type.{0}.dfs.core.windows.net\u0022.format(_GLOBAL_ADLS_ACCOUNT), \u0022OAuth\u0022)\nspark.conf.set(\n \u0022fs.azure.account.oauth.provider.type.{0}.dfs.core.windows.net\u0022.format(_GLOBAL_ADLS_ACCOUNT),\n \u0022org.apache.hadoop.fs.azurebfs.oauth2.ClientCredsTokenProvider\u0022,\n)\nspark.conf.set(\n \u0022fs.azure.account.oauth2.client.id.{0}.dfs.core.windows.net\u0022.format(_GLOBAL_ADLS_ACCOUNT), _GLOBAL_ADLS_APPID\n)\nspark.conf.set(\n \u0022fs.azure.account.oauth2.client.secret.{0}.dfs.core.windows.net\u0022.format(_GLOBAL_ADLS_ACCOUNT), _GLOBAL_ADLS_SECRET\n)\nspark.conf.set(\n \u0022fs.azure.account.oauth2.client.endpoint.{0}.dfs.core.windows.net\u0022.format(_GLOBAL_ADLS_ACCOUNT),\n \u0022https://login.microsoftonline.com/{0}/oauth2/token\u0022.format(_GLOBAL_ADLS_DIRID),\n)" + ], + "attachments": null, + "outputs": [], + "execution_count": 0 + }, + { + "cell_type": "code", + "metadata": { + "application/vnd.databricks.v1\u002Bcell": { + "title": "", + "showTitle": false, + "inputWidgets": {}, + "nuid": "614662de-2288-451e-b238-b6190156aac4" + } + }, + "source": [ + "# Mount the remove ADLS container on the local databricks\n\n# Unmount an existing mount point\ntry:\n dbutils.fs.unmount(_GLOBAL_ADLS_DICT[\u0022adls_container_mount_point\u0022])\nexcept Exception as ex:\n if \u0022Directory not mounted\u0022 not in str(ex):\n raise Exception(\u0022Error in unmounting\u0022)\n\n# Mount wit the provided configuration information\nconfigs = {\n \u0022fs.azure.account.auth.type\u0022: \u0022OAuth\u0022,\n \u0022fs.azure.account.oauth.provider.type\u0022: \u0022org.apache.hadoop.fs.azurebfs.oauth2.ClientCredsTokenProvider\u0022,\n \u0022fs.azure.account.oauth2.client.id\u0022: _GLOBAL_CONFIG_DICT[\u0022clientId\u0022],\n \u0022fs.azure.account.oauth2.client.secret\u0022: _GLOBAL_CONFIG_DICT[\u0022clientSecret\u0022],\n \u0022fs.azure.account.oauth2.client.endpoint\u0022: _GLOBAL_ADLS_DICT[\u0022oauth_endpoint\u0022],\n}\ndbutils.fs.mount(\n source=_GLOBAL_ADLS_DICT[\u0022adls_source\u0022],\n mount_point=_GLOBAL_ADLS_DICT[\u0022adls_container_mount_point\u0022],\n extra_configs=configs,\n)\n\n# List the contents in the mounted directory\ndbutils.fs.ls(_GLOBAL_ADLS_DICT[\u0022adls_container_mount_point\u0022])\n\n# Make a new directory for model cache use\ndbutils.fs.mkdirs(_GLOBAL_ADLS_DICT[\u0022adls_model_cache\u0022])" + ], + "attachments": null, + "outputs": [], + "execution_count": 0 + } + ], "folder": null }, - "etag": "c507ac00-0000-0800-0000-6001c1080000" + "etag": "0000f8ed-0000-0100-0000-605349810000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook2029453227?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebooks/testclinb?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-1e6b4a9d756067498ab4384083b5ca7d-a83775a95e338845-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "ad9cffb740417ae72ee82c8be31ddf0c", + "traceparent": "00-1834382b29fa2748911f3b1f9d4c6d15-af4ccf0b01eb1c4d-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "b1f1d13368d8b6d7231f596fa3f31941", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:31:41 GMT", + "Date": "Thu, 30 Sep 2021 07:34:03 GMT", "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Kestrel Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "ad9cffb740417ae72ee82c8be31ddf0c", - "x-ms-request-id": "bd69e850-f195-4f78-9230-7106534e2106" + "x-ms-client-request-id": "b1f1d13368d8b6d7231f596fa3f31941", + "x-ms-request-id": "4b97846f-7ef7-4f68-9026-525a9b18bc74" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook2029453227", - "name": "Notebook2029453227", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/testclinb", + "name": "testclinb", "type": "Microsoft.Synapse/workspaces/notebooks", "properties": { "nbformat": 4, - "nbformat_minor": 2, + "nbformat_minor": 0, "entityState": null, "renameOperationDetails": null, "bigDataPool": null, - "sessionProperties": null, + "sessionProperties": { + "driverMemory": "28g", + "driverCores": 4, + "executorMemory": "28g", + "executorCores": 4, + "numExecutors": 2, + "conf": { + "spark.dynamicAllocation.enabled": "false", + "spark.dynamicAllocation.minExecutors": "2", + "spark.dynamicAllocation.maxExecutors": "2" + } + }, "metadata": { "language_info": { - "name": "Python" + "name": "python" }, "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 + "sessionKeepAliveTimeout": 30, + "saveOutput": true, + "synapse_widget": { + "version": "0.1", + "state": {} + }, + "kernelspec": { + "name": "synapse_pyspark", + "display_name": "python" + } }, - "cells": [], - "folder": null + "cells": [ + { + "cell_type": "markdown", + "metadata": { + "application/vnd.databricks.v1\u002Bcell": { + "title": "", + "showTitle": false, + "inputWidgets": {}, + "nuid": "ec9689e6-a215-42cf-aa9f-85a38cca6362" + } + }, + "source": [ + "Copyright (c) Microsoft Corporation. All rights reserved." + ], + "attachments": null, + "outputs": [], + "execution_count": null + }, + { + "cell_type": "code", + "metadata": { + "application/vnd.databricks.v1\u002Bcell": { + "title": "", + "showTitle": false, + "inputWidgets": {}, + "nuid": "4eb23c41-ffd4-412f-a887-102462d4d316" + } + }, + "source": [ + "# Disable the verbose log\n", + "import logging\n", + "logging.getLogger(\u0022py4j\u0022).setLevel(logging.ERROR)" + ], + "attachments": null, + "outputs": [ + { + "output_type": "display_data", + "data": { + "text/html": "\u003Cstyle scoped\u003E\n .ansiout {\n display: block;\n unicode-bidi: embed;\n white-space: pre-wrap;\n word-wrap: break-word;\n word-break: break-all;\n font-family: \u0022Source Code Pro\u0022, \u0022Menlo\u0022, monospace;;\n font-size: 13px;\n color: #555;\n margin-left: 4px;\n line-height: 19px;\n }\n\u003C/style\u003E\n\u003Cdiv class=\u0022ansiout\u0022\u003E\u003C/div\u003E" + }, + "metadata": { + "application/vnd.databricks.v1\u002Boutput": { + "datasetInfos": [], + "data": "\u003Cdiv class=\u0022ansiout\u0022\u003E\u003C/div\u003E", + "removedWidgets": [], + "addedWidgets": {}, + "type": "html", + "arguments": {} + } + } + } + ], + "execution_count": 0 + }, + { + "cell_type": "code", + "metadata": { + "application/vnd.databricks.v1\u002Bcell": { + "title": "", + "showTitle": false, + "inputWidgets": {}, + "nuid": "b5c38c38-a7f7-43f5-a15c-e387079ac8d7" + } + }, + "source": [ + "\n", + "!pip install \u0022https://retaildatastore.blob.core.windows.net/artifacts/cdmsdk/commondatamodel-objectmodel-1.0.10-py3-none-any.whl?sp=r\u0026st=2021-02-11T11:46:58Z\u0026se=2022-02-11T19:46:58Z\u0026spr=https\u0026sv=2020-02-10\u0026sr=b\u0026sig=XXXXXXXXXXXXXXXXXXXXXXXX\u0022\n", + "" + ], + "attachments": null, + "outputs": [ + { + "output_type": "display_data", + "data": { + "text/html": "\u003Cstyle scoped\u003E\n .ansiout {\n display: block;\n unicode-bidi: embed;\n white-space: pre-wrap;\n word-wrap: break-word;\n word-break: break-all;\n font-family: \u0022Source Code Pro\u0022, \u0022Menlo\u0022, monospace;;\n font-size: 13px;\n color: #555;\n margin-left: 4px;\n line-height: 19px;\n }\n\u003C/style\u003E\n\u003Cdiv class=\u0022ansiout\u0022\u003E\u003C/div\u003E" + }, + "metadata": { + "application/vnd.databricks.v1\u002Boutput": { + "datasetInfos": [], + "data": "\u003Cdiv class=\u0022ansiout\u0022\u003E\u003C/div\u003E", + "removedWidgets": [], + "addedWidgets": {}, + "type": "html", + "arguments": {} + } + } + } + ], + "execution_count": 0 + }, + { + "cell_type": "code", + "metadata": { + "application/vnd.databricks.v1\u002Bcell": { + "title": "", + "showTitle": false, + "inputWidgets": {}, + "nuid": "b255d876-363a-446e-a0fa-e51f866efa77" + } + }, + "source": [ + "\n", + "\n", + "# Generic imports\n", + "import dotenv\n", + "import json\n", + "import numpy as np\n", + "import os\n", + "import fnmatch\n", + "import shutil\n", + "import random\n", + "import string\n", + "import pandas as pd\n", + "import requests\n", + "import asyncio\n", + "import copy\n", + "import functools\n", + "import pathlib\n", + "import string\n", + "from datetime import datetime, timezone\n", + "\n", + "# Spark imports\n", + "from pyspark.sql import SparkSession, SQLContext\n", + "from pyspark.sql.types import *\n", + "from pyspark.sql import functions as F\n", + "\n", + "# Recommenders imports\n", + "# from azureiai.reco_utils.dataset.spark_splitters import spark_random_split\n", + "# from azureiai.reco_utils.evaluation.spark_evaluation import (\n", + "# SparkRankingEvaluation,\n", + "# SparkRatingEvaluation,\n", + "# )\n", + "from pysarplus import SARPlus\n", + "from azureiai.retail.cdm2ai.reader import CONFIG\n", + "\n", + "# AzureML imports\n", + "import azureml.core\n", + "from azureml.core.runconfig import JarLibrary\n", + "from azureml.core.compute import ComputeTarget, DatabricksCompute\n", + "from azureml.pipeline.steps import DatabricksStep\n", + "from azureml.core.datastore import Datastore\n", + "from azureml.data.data_reference import DataReference\n", + "from azureml.core import Workspace\n", + "from azureml.core.run import Run\n", + "from azureml.core.experiment import Experiment\n", + "from azureml.core import Environment\n", + "from azureml.core.environment import CondaDependencies\n", + "from azureml.core.environment import SparkPackage\n", + "from azureml.core.model import Model\n", + "from azureml.core.webservice import Webservice\n", + "\n", + "# Cosmos DB imports\n", + "# Install Cosmos DB connector from: https://docs.databricks.com/data/data-sources/azure/cosmosdb-connector.html\n", + "from azure.common.client_factory import get_client_from_json_dict\n", + "\n", + "# CDM imports\n", + "from cdm.storage import ADLSAdapter\n", + "from cdm.objectmodel import CdmCorpusDefinition, CdmManifestDefinition\n", + "from cdm.persistence.cdmfolder import ManifestPersistence\n", + "from cdm.persistence.cdmfolder.types import ManifestContent\n", + "from cdm.storage import LocalAdapter, ADLSAdapter\n", + "from cdm.utilities import time_utils\n", + "\n", + "from cdm.utilities.string_utils import kvprint\n", + "\n", + "# AKS imports\n", + "from azureml.core.compute import AksCompute\n", + "from azureml.core.compute_target import ComputeTargetException\n", + "from azureml.core.webservice import AksWebservice\n", + "from azureml.exceptions import WebserviceException\n", + "from azureml.core.model import InferenceConfig\n", + "\n", + "" + ], + "attachments": null, + "outputs": [ + { + "output_type": "display_data", + "data": { + "text/html": "\u003Cstyle scoped\u003E\n .ansiout {\n display: block;\n unicode-bidi: embed;\n white-space: pre-wrap;\n word-wrap: break-word;\n word-break: break-all;\n font-family: \u0022Source Code Pro\u0022, \u0022Menlo\u0022, monospace;;\n font-size: 13px;\n color: #555;\n margin-left: 4px;\n line-height: 19px;\n }\n\u003C/style\u003E\n\u003Cdiv class=\u0022ansiout\u0022\u003E\u003C/div\u003E" + }, + "metadata": { + "application/vnd.databricks.v1\u002Boutput": { + "datasetInfos": [], + "data": "\u003Cdiv class=\u0022ansiout\u0022\u003E\u003C/div\u003E", + "removedWidgets": [], + "addedWidgets": {}, + "type": "html", + "arguments": {} + } + } + } + ], + "execution_count": 0 + }, + { + "cell_type": "code", + "metadata": { + "application/vnd.databricks.v1\u002Bcell": { + "title": "", + "showTitle": false, + "inputWidgets": {}, + "nuid": "bb6041f1-a825-41ae-ba4d-de6dff6e361a" + } + }, + "source": [ + "# Global variables\n", + "# NOTE these variables are visible in the scope of the entire pipeline\n", + "\n", + "# Load the .env file to manage persistent variables\n", + "_GLOBAL_DOTENV_PATH = pathlib.Path(dotenv.find_dotenv(\n", + " filename=\u0022/dbfs/FileStore/.env\u0022,\n", + " raise_error_if_not_found=True\n", + "))\n", + "\n", + "# -------------------------------------------------------------------------\n", + "# Azure general variables\n", + "# -------------------------------------------------------------------------\n", + "_GLOBAL_SUBSCRIPTION_ID = dotenv.get_key(_GLOBAL_DOTENV_PATH, \u0022subscription_id\u0022)\n", + "_GLOBAL_RESOURCE_GROUP = dotenv.get_key(_GLOBAL_DOTENV_PATH, \u0022resource_group\u0022)\n", + "_GLOBAL_CONFIG_DICT = {\n", + " \u0022clientIdKey\u0022: \u0022sp_client_id\u0022,\n", + " \u0022clientSecretKey\u0022: \u0022sp_password\u0022,\n", + " \u0022clientId\u0022: dbutils.secrets.get(scope=\u0022secrets\u0022, key=\u0022sp_client_id\u0022),\n", + " \u0022clientSecret\u0022: dbutils.secrets.get(scope=\u0022secrets\u0022, key=\u0022sp_password\u0022),\n", + " \u0022subscriptionId\u0022: _GLOBAL_SUBSCRIPTION_ID,\n", + " \u0022tenantId\u0022: dotenv.get_key(_GLOBAL_DOTENV_PATH, \u0022tenant_id\u0022),\n", + " \u0022activeDirectoryEndpointUrl\u0022: \u0022https://login.microsoftonline.com\u0022,\n", + " \u0022resourceManagerEndpointUrl\u0022: \u0022https://management.azure.com/\u0022,\n", + " \u0022activeDirectoryGraphResourceId\u0022: \u0022https://graph.windows.net/\u0022,\n", + " \u0022sqlManagementEndpointUrl\u0022: \u0022https://management.core.windows.net:8443/\u0022,\n", + " \u0022galleryEndpointUrl\u0022: \u0022https://gallery.azure.com/\u0022,\n", + " \u0022managementEndpointUrl\u0022: \u0022https://management.core.windows.net/\u0022\n", + "}\n", + "\n", + "# -------------------------------------------------------------------------\n", + "# ADLS variables\n", + "# -------------------------------------------------------------------------\n", + "_GLOBAL_ADLS_ACCOUNT = dotenv.get_key(_GLOBAL_DOTENV_PATH, \u0022data_account\u0022)\n", + "_GLOBAL_ADLS_CONTAINER = dotenv.get_key(_GLOBAL_DOTENV_PATH, \u0022data_container\u0022)\n", + "_GLOBAL_ADLS_APPID = _GLOBAL_CONFIG_DICT[\u0022clientId\u0022]\n", + "_GLOBAL_ADLS_DIRID = _GLOBAL_CONFIG_DICT[\u0022tenantId\u0022]\n", + "_GLOBAL_ADLS_SECRET = _GLOBAL_CONFIG_DICT[\u0022clientSecret\u0022]\n", + "_GLOBAL_ADLS_HOSTNAME = f\u0027{_GLOBAL_ADLS_ACCOUNT}.dfs.core.windows.net\u0027\n", + "_GLOBAL_ADLS_DICT = {\n", + " \u0022adls_source\u0022: \u0022abfss://{0}@{1}.dfs.core.windows.net\u0022.format(_GLOBAL_ADLS_CONTAINER, _GLOBAL_ADLS_ACCOUNT),\n", + " \u0022oauth_endpoint\u0022: \u0022https://login.microsoftonline.com/{0}/oauth2/token\u0022.format(_GLOBAL_CONFIG_DICT[\u0022tenantId\u0022]),\n", + " \u0022adls_dfs_endpoint\u0022: \u0022{0}.dfs.core.windows.net\u0022.format(_GLOBAL_ADLS_ACCOUNT),\n", + " \u0022adls_container_mount_point\u0022: \u0022/mnt/{0}\u0022.format(_GLOBAL_ADLS_CONTAINER),\n", + " \u0022adls_resource_type\u0022: \u0022https://storage.azure.com\u0022,\n", + " \u0022adls_mount_root\u0022: \u0022/mnt\u0022,\n", + " \u0022adls_model_cache\u0022: \u0022dbfs:/mnt/{0}/cache\u0022.format(_GLOBAL_ADLS_CONTAINER)\n", + "}\n", + "\n", + "# -------------------------------------------------------------------------\n", + "# COSMOS DB variables\n", + "# -------------------------------------------------------------------------\n", + "_GLOBAL_DB_SECRETS = {\n", + " \u0022Endpoint\u0022: \u0022https://{0}.documents.azure.com:443/\u0022.format(dotenv.get_key(_GLOBAL_DOTENV_PATH, \u0022azure_cosmosdb_account_name\u0022)),\n", + " \u0022Masterkey\u0022: dbutils.secrets.get(scope=\u0022secrets\u0022, key=\u0022cosmosdb_primary_master_key\u0022),\n", + " \u0022Database\u0022: dotenv.get_key(_GLOBAL_DOTENV_PATH, \u0022azure_cosmosdb_database\u0022),\n", + " \u0022Collection\u0022: dotenv.get_key(_GLOBAL_DOTENV_PATH, \u0022azure_cosmosdb_container\u0022),\n", + " \u0022Upsert\u0022: True\n", + "}\n", + "\n", + "# -------------------------------------------------------------------------\n", + "# Data variables\n", + "# -------------------------------------------------------------------------\n", + "_GLOBAL_DATA_ROOT = dotenv.get_key(_GLOBAL_DOTENV_PATH, \u0022physical_data_model_directory\u0022)\n", + "_GLOBAL_TPC_RAW_ROOT = \u0027tpcds-raw-data\u0027\n", + "_GLOBAL_IDM_SCHEMA_ROOT = dotenv.get_key(_GLOBAL_DOTENV_PATH, \u0022logical_data_model_directory\u0022)\n", + "_GLOBAL_DATA_NAME = dotenv.get_key(_GLOBAL_DOTENV_PATH, \u0022data_name\u0022)\n", + "_GLOBAL_ADAPTER_PARTIAL = functools.partial(\n", + " ADLSAdapter,\n", + " hostname=_GLOBAL_ADLS_HOSTNAME,\n", + " tenant=_GLOBAL_ADLS_DIRID,\n", + " client_id=_GLOBAL_ADLS_APPID,\n", + " secret=_GLOBAL_ADLS_SECRET\n", + ")\n", + "_GLOBAL_CONFIG_JSON = copy.deepcopy(CONFIG)\n", + "_GLOBAL_CONFIG_JSON[\u0022adls\u0022][\u0022account\u0022] = _GLOBAL_ADLS_ACCOUNT\n", + "_GLOBAL_CONFIG_JSON[\u0022adls\u0022][\u0022container\u0022] = _GLOBAL_ADLS_CONTAINER\n", + "_GLOBAL_CONFIG_JSON[\u0022adls\u0022][\u0022appid\u0022] = _GLOBAL_ADLS_APPID\n", + "_GLOBAL_CONFIG_JSON[\u0022adls\u0022][\u0022dirid\u0022] = _GLOBAL_ADLS_DIRID\n", + "_GLOBAL_CONFIG_JSON[\u0022adls\u0022][\u0022secret\u0022] = _GLOBAL_ADLS_SECRET\n", + "_GLOBAL_CONFIG_JSON[\u0022adls\u0022][\u0022hostname\u0022] = _GLOBAL_ADLS_HOSTNAME\n", + "_GLOBAL_CONFIG_JSON[\u0022cdm\u0022][\u0022data_root\u0022] = _GLOBAL_DATA_ROOT\n", + "_GLOBAL_CONFIG_JSON[\u0022cdm\u0022][\u0022manifest_name\u0022] = \u0022{0}.manifest.cdm.json\u0022.format(dotenv.get_key(_GLOBAL_DOTENV_PATH, \u0022industry_data_model_name\u0022))\n", + "_GLOBAL_INPUT_DATA_FILE = dotenv.get_key(_GLOBAL_DOTENV_PATH, \u0022processed_data_file\u0022)\n", + "_GLOBAL_CUSTOMER_DATA_FILE = dotenv.get_key(_GLOBAL_DOTENV_PATH, \u0022processed_customer_data_file\u0022)\n", + "\n", + "# -------------------------------------------------------------------------\n", + "# Model variables\n", + "# -------------------------------------------------------------------------\n", + "_GLOBAL_MODEL_LOCAL_CACHE = \u0027dbfs:/model/{0}\u0027.format(\n", + " \u0027\u0027.join(random.choice(string.ascii_lowercase) for i in range(10))\n", + ")\n", + "\n", + "# -------------------------------------------------------------------------\n", + "# Azure Machine Learning service variables\n", + "# -------------------------------------------------------------------------\n", + "_GLOBAL_AML_DICT = {\n", + " \u0022workspace_name\u0022: dotenv.get_key(_GLOBAL_DOTENV_PATH, \u0022azureml_workspace\u0022),\n", + " \u0022model_file_name\u0022: dotenv.get_key(_GLOBAL_DOTENV_PATH, \u0022azureml_model_file_name\u0022),\n", + " \u0022aml_experiment_name\u0022: dotenv.get_key(_GLOBAL_DOTENV_PATH, \u0022azureml_experiment_name\u0022)\n", + "}\n", + "\n", + "# -------------------------------------------------------------------------\n", + "# Azure Kubernetes Service variables\n", + "# -------------------------------------------------------------------------\n", + "_GLOBAL_AKS_NAME = dotenv.get_key(_GLOBAL_DOTENV_PATH, \u0022aks_cluster_name\u0022)\n", + "_GLOBAL_SERVICE_NAME = \u0022aks-service-{0}\u0022.format(dotenv.get_key(_GLOBAL_DOTENV_PATH, \u0022unique_key\u0022))\n", + "_GLOBAL_AKS_CONFIG_LEVEL = dotenv.get_key(_GLOBAL_DOTENV_PATH, \u0022aks_config_level\u0022)\n", + "_GLOBAL_AKS_COMPUTE_TARGET_NAME = \u0027aks\u0027 \u002B dotenv.get_key(_GLOBAL_DOTENV_PATH, \u0022unique_key\u0022)" + ], + "attachments": null, + "outputs": [ + { + "output_type": "display_data", + "data": { + "text/html": "\u003Cstyle scoped\u003E\n .ansiout {\n display: block;\n unicode-bidi: embed;\n white-space: pre-wrap;\n word-wrap: break-word;\n word-break: break-all;\n font-family: \u0022Source Code Pro\u0022, \u0022Menlo\u0022, monospace;;\n font-size: 13px;\n color: #555;\n margin-left: 4px;\n line-height: 19px;\n }\n\u003C/style\u003E\n\u003Cdiv class=\u0022ansiout\u0022\u003E\u003C/div\u003E" + }, + "metadata": { + "application/vnd.databricks.v1\u002Boutput": { + "datasetInfos": [], + "data": "\u003Cdiv class=\u0022ansiout\u0022\u003E\u003C/div\u003E", + "removedWidgets": [], + "addedWidgets": {}, + "type": "html", + "arguments": {} + } + } + }, + { + "output_type": "display_data", + "data": { + "text/html": "\u003Cstyle scoped\u003E\n .ansiout {\n display: block;\n unicode-bidi: embed;\n white-space: pre-wrap;\n word-wrap: break-word;\n word-break: break-all;\n font-family: \u0022Source Code Pro\u0022, \u0022Menlo\u0022, monospace;;\n font-size: 13px;\n color: #555;\n margin-left: 4px;\n line-height: 19px;\n }\n\u003C/style\u003E\n\u003Cdiv class=\u0022ansiout\u0022\u003E\u003Cspan class=\u0022ansi-red-fg\u0022\u003E---------------------------------------------------------------------------\u003C/span\u003E\n\u003Cspan class=\u0022ansi-red-fg\u0022\u003ENameError\u003C/span\u003E Traceback (most recent call last)\n\u003Cspan class=\u0022ansi-green-fg\u0022\u003E\u0026lt;command-1159393715563018\u0026gt;\u003C/span\u003E in \u003Cspan class=\u0022ansi-cyan-fg\u0022\u003E\u0026lt;module\u0026gt;\u003C/span\u003E\n\u003Cspan class=\u0022ansi-green-intense-fg ansi-bold\u0022\u003E 66\u003C/span\u003E _GLOBAL_DATA_NAME \u003Cspan class=\u0022ansi-blue-fg\u0022\u003E=\u003C/span\u003E dotenv\u003Cspan class=\u0022ansi-blue-fg\u0022\u003E.\u003C/span\u003Eget_key\u003Cspan class=\u0022ansi-blue-fg\u0022\u003E(\u003C/span\u003E_GLOBAL_DOTENV_PATH\u003Cspan class=\u0022ansi-blue-fg\u0022\u003E,\u003C/span\u003E \u003Cspan class=\u0022ansi-blue-fg\u0022\u003E\u0026#34;data_name\u0026#34;\u003C/span\u003E\u003Cspan class=\u0022ansi-blue-fg\u0022\u003E)\u003C/span\u003E\n\u003Cspan class=\u0022ansi-green-intense-fg ansi-bold\u0022\u003E 67\u003C/span\u003E _GLOBAL_ADAPTER_PARTIAL = functools.partial(\n\u003Cspan class=\u0022ansi-green-fg\u0022\u003E---\u0026gt; 68\u003C/span\u003E\u003Cspan class=\u0022ansi-red-fg\u0022\u003E \u003C/span\u003EADLSAdapter\u003Cspan class=\u0022ansi-blue-fg\u0022\u003E,\u003C/span\u003E\n\u003Cspan class=\u0022ansi-green-intense-fg ansi-bold\u0022\u003E 69\u003C/span\u003E hostname\u003Cspan class=\u0022ansi-blue-fg\u0022\u003E=\u003C/span\u003E_GLOBAL_ADLS_HOSTNAME\u003Cspan class=\u0022ansi-blue-fg\u0022\u003E,\u003C/span\u003E\n\u003Cspan class=\u0022ansi-green-intense-fg ansi-bold\u0022\u003E 70\u003C/span\u003E tenant\u003Cspan class=\u0022ansi-blue-fg\u0022\u003E=\u003C/span\u003E_GLOBAL_ADLS_DIRID\u003Cspan class=\u0022ansi-blue-fg\u0022\u003E,\u003C/span\u003E\n\n\u003Cspan class=\u0022ansi-red-fg\u0022\u003ENameError\u003C/span\u003E: name \u0026#39;ADLSAdapter\u0026#39; is not defined\u003C/div\u003E" + }, + "metadata": { + "application/vnd.databricks.v1\u002Boutput": { + "type": "ipynbError", + "data": "\u003Cdiv class=\u0022ansiout\u0022\u003E\u003Cspan class=\u0022ansi-red-fg\u0022\u003E---------------------------------------------------------------------------\u003C/span\u003E\n\u003Cspan class=\u0022ansi-red-fg\u0022\u003ENameError\u003C/span\u003E Traceback (most recent call last)\n\u003Cspan class=\u0022ansi-green-fg\u0022\u003E\u0026lt;command-1159393715563018\u0026gt;\u003C/span\u003E in \u003Cspan class=\u0022ansi-cyan-fg\u0022\u003E\u0026lt;module\u0026gt;\u003C/span\u003E\n\u003Cspan class=\u0022ansi-green-intense-fg ansi-bold\u0022\u003E 66\u003C/span\u003E _GLOBAL_DATA_NAME \u003Cspan class=\u0022ansi-blue-fg\u0022\u003E=\u003C/span\u003E dotenv\u003Cspan class=\u0022ansi-blue-fg\u0022\u003E.\u003C/span\u003Eget_key\u003Cspan class=\u0022ansi-blue-fg\u0022\u003E(\u003C/span\u003E_GLOBAL_DOTENV_PATH\u003Cspan class=\u0022ansi-blue-fg\u0022\u003E,\u003C/span\u003E \u003Cspan class=\u0022ansi-blue-fg\u0022\u003E\u0026#34;data_name\u0026#34;\u003C/span\u003E\u003Cspan class=\u0022ansi-blue-fg\u0022\u003E)\u003C/span\u003E\n\u003Cspan class=\u0022ansi-green-intense-fg ansi-bold\u0022\u003E 67\u003C/span\u003E _GLOBAL_ADAPTER_PARTIAL = functools.partial(\n\u003Cspan class=\u0022ansi-green-fg\u0022\u003E---\u0026gt; 68\u003C/span\u003E\u003Cspan class=\u0022ansi-red-fg\u0022\u003E \u003C/span\u003EADLSAdapter\u003Cspan class=\u0022ansi-blue-fg\u0022\u003E,\u003C/span\u003E\n\u003Cspan class=\u0022ansi-green-intense-fg ansi-bold\u0022\u003E 69\u003C/span\u003E hostname\u003Cspan class=\u0022ansi-blue-fg\u0022\u003E=\u003C/span\u003E_GLOBAL_ADLS_HOSTNAME\u003Cspan class=\u0022ansi-blue-fg\u0022\u003E,\u003C/span\u003E\n\u003Cspan class=\u0022ansi-green-intense-fg ansi-bold\u0022\u003E 70\u003C/span\u003E tenant\u003Cspan class=\u0022ansi-blue-fg\u0022\u003E=\u003C/span\u003E_GLOBAL_ADLS_DIRID\u003Cspan class=\u0022ansi-blue-fg\u0022\u003E,\u003C/span\u003E\n\n\u003Cspan class=\u0022ansi-red-fg\u0022\u003ENameError\u003C/span\u003E: name \u0026#39;ADLSAdapter\u0026#39; is not defined\u003C/div\u003E", + "errorSummary": "\u003Cspan class=\u0022ansi-red-fg\u0022\u003ENameError\u003C/span\u003E: name \u0026#39;ADLSAdapter\u0026#39; is not defined", + "arguments": {} + } + } + } + ], + "execution_count": 0 + }, + { + "cell_type": "code", + "metadata": { + "application/vnd.databricks.v1\u002Bcell": { + "title": "", + "showTitle": false, + "inputWidgets": {}, + "nuid": "639595d4-4083-4f33-a7d4-15af60e7b3d6" + } + }, + "source": [ + "# Spark initialization\n", + "SUBMIT_ARGS = \u0022--packages eisber:sarplus:0.2.6 pyspark-shell\u0022\n", + "os.environ[\u0022PYSPARK_SUBMIT_ARGS\u0022] = SUBMIT_ARGS\n", + "\n", + "spark = (\n", + " SparkSession.builder.appName(\u0022sample\u0022)\n", + " .master(\u0022local[*]\u0022)\n", + " .config(\u0022memory\u0022, \u00221G\u0022)\n", + " .config(\u0022spark.sql.shuffle.partitions\u0022, \u00221\u0022)\n", + " .config(\u0022spark.sql.crossJoin.enabled\u0022, True)\n", + " .config(\u0022spark.ui.enabled\u0022, False)\n", + " .getOrCreate()\n", + ")\n", + "\n", + "# SqlContext helps with doing SQL like queries on spark DFs.\n", + "sqlContext = SQLContext(spark)\n", + "\n", + "# Configure the Spark session to avoid using mount\n", + "spark.conf.set(\u0022fs.azure.account.auth.type.{0}.dfs.core.windows.net\u0022.format(_GLOBAL_ADLS_ACCOUNT), \u0022OAuth\u0022)\n", + "spark.conf.set(\n", + " \u0022fs.azure.account.oauth.provider.type.{0}.dfs.core.windows.net\u0022.format(_GLOBAL_ADLS_ACCOUNT),\n", + " \u0022org.apache.hadoop.fs.azurebfs.oauth2.ClientCredsTokenProvider\u0022,\n", + ")\n", + "spark.conf.set(\n", + " \u0022fs.azure.account.oauth2.client.id.{0}.dfs.core.windows.net\u0022.format(_GLOBAL_ADLS_ACCOUNT), _GLOBAL_ADLS_APPID\n", + ")\n", + "spark.conf.set(\n", + " \u0022fs.azure.account.oauth2.client.secret.{0}.dfs.core.windows.net\u0022.format(_GLOBAL_ADLS_ACCOUNT), _GLOBAL_ADLS_SECRET\n", + ")\n", + "spark.conf.set(\n", + " \u0022fs.azure.account.oauth2.client.endpoint.{0}.dfs.core.windows.net\u0022.format(_GLOBAL_ADLS_ACCOUNT),\n", + " \u0022https://login.microsoftonline.com/{0}/oauth2/token\u0022.format(_GLOBAL_ADLS_DIRID),\n", + ")" + ], + "attachments": null, + "outputs": [], + "execution_count": 0 + }, + { + "cell_type": "code", + "metadata": { + "application/vnd.databricks.v1\u002Bcell": { + "title": "", + "showTitle": false, + "inputWidgets": {}, + "nuid": "614662de-2288-451e-b238-b6190156aac4" + } + }, + "source": [ + "# Mount the remove ADLS container on the local databricks\n", + "\n", + "# Unmount an existing mount point\n", + "try:\n", + " dbutils.fs.unmount(_GLOBAL_ADLS_DICT[\u0022adls_container_mount_point\u0022])\n", + "except Exception as ex:\n", + " if \u0022Directory not mounted\u0022 not in str(ex):\n", + " raise Exception(\u0022Error in unmounting\u0022)\n", + "\n", + "# Mount wit the provided configuration information\n", + "configs = {\n", + " \u0022fs.azure.account.auth.type\u0022: \u0022OAuth\u0022,\n", + " \u0022fs.azure.account.oauth.provider.type\u0022: \u0022org.apache.hadoop.fs.azurebfs.oauth2.ClientCredsTokenProvider\u0022,\n", + " \u0022fs.azure.account.oauth2.client.id\u0022: _GLOBAL_CONFIG_DICT[\u0022clientId\u0022],\n", + " \u0022fs.azure.account.oauth2.client.secret\u0022: _GLOBAL_CONFIG_DICT[\u0022clientSecret\u0022],\n", + " \u0022fs.azure.account.oauth2.client.endpoint\u0022: _GLOBAL_ADLS_DICT[\u0022oauth_endpoint\u0022],\n", + "}\n", + "dbutils.fs.mount(\n", + " source=_GLOBAL_ADLS_DICT[\u0022adls_source\u0022],\n", + " mount_point=_GLOBAL_ADLS_DICT[\u0022adls_container_mount_point\u0022],\n", + " extra_configs=configs,\n", + ")\n", + "\n", + "# List the contents in the mounted directory\n", + "dbutils.fs.ls(_GLOBAL_ADLS_DICT[\u0022adls_container_mount_point\u0022])\n", + "\n", + "# Make a new directory for model cache use\n", + "dbutils.fs.mkdirs(_GLOBAL_ADLS_DICT[\u0022adls_model_cache\u0022])" + ], + "attachments": null, + "outputs": [], + "execution_count": 0 + } + ], + "folder": { + "name": "nbfolder/test1" + } }, - "etag": "c507732b-0000-0800-0000-6001c1410000" + "etag": "0900eeb9-0000-0100-0000-61408d200000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook401570095?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebooks/HelloWorld?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-e05e2ba42283484d880c7e63bd1b31a2-036fec9a08e62c44-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "e7b4da3cc68a0bbf9d00e3349c9768d0", + "traceparent": "00-4962e2fa9522f542b05adea16bf66ccd-1fa65ee7bf679541-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "37976f5d6d9b973196253e66093b5e63", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:31:41 GMT", + "Date": "Thu, 30 Sep 2021 07:34:03 GMT", "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Kestrel Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "e7b4da3cc68a0bbf9d00e3349c9768d0", - "x-ms-request-id": "a52a021a-8855-4bad-8d7e-15463eac7fda" + "x-ms-client-request-id": "37976f5d6d9b973196253e66093b5e63", + "x-ms-request-id": "b4e30600-c26a-46d5-9b5f-7f56c0a50bf2" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook401570095", - "name": "Notebook401570095", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/HelloWorld", + "name": "HelloWorld", "type": "Microsoft.Synapse/workspaces/notebooks", "properties": { "nbformat": 4, "nbformat_minor": 2, "entityState": null, "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, + "bigDataPool": { + "referenceName": "testsparkpool", + "type": "BigDataPoolReference" + }, + "sessionProperties": { + "driverMemory": "28g", + "driverCores": 4, + "executorMemory": "28g", + "executorCores": 4, + "numExecutors": 2, + "conf": { + "spark.dynamicAllocation.enabled": "false", + "spark.dynamicAllocation.minExecutors": "2", + "spark.dynamicAllocation.maxExecutors": "2" + } + }, "metadata": { "language_info": { - "name": "Python" + "name": "python" }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 + "a365ComputeOptions": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/bigDataPools/testsparkpool", + "name": "testsparkpool", + "type": "Spark", + "endpoint": "https://testsynapseworkspace.dev.azuresynapse.net/livyApi/versions/2019-11-01-preview/sparkPools/testsparkpool", + "auth": { + "type": "AAD", + "authResource": "https://dev.azuresynapse.net" + }, + "sparkVersion": "2.4", + "nodeCount": 3, + "cores": 8, + "memory": 56, + "extraHeader": null + }, + "sessionKeepAliveTimeout": 30, + "saveOutput": true, + "synapse_widget": { + "version": "0.1", + "state": {} + }, + "kernelspec": { + "name": "synapse_pyspark", + "display_name": "python" + } }, - "cells": [], + "cells": [ + { + "cell_type": "code", + "metadata": {}, + "source": [ + "# comment\r\n", + "print(\u0022Hello World\u0022)" + ], + "attachments": null, + "outputs": [], + "execution_count": null + } + ], "folder": null }, - "etag": "d9079a8e-0000-0800-0000-6001dc5a0000" + "etag": "0e00670b-0000-0100-0000-6142dcab0000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook410522585?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebooks/notebook-04-14-00-07?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-f69702225de55d4fbae12900b323a1eb-f2c834ffdee1734a-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "4107caa450c1e91bb5018f26901e61da", + "traceparent": "00-63c70a8ec870ed46bc2d522674bc2aea-40001b6312472e4a-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "12f4bc686c450c1515a173d9cc298718", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:31:41 GMT", + "Date": "Thu, 30 Sep 2021 07:34:03 GMT", "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Kestrel Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "4107caa450c1e91bb5018f26901e61da", - "x-ms-request-id": "9323ce61-4e8d-4951-88cf-2b7a667b1359" + "x-ms-client-request-id": "12f4bc686c450c1515a173d9cc298718", + "x-ms-request-id": "841329c8-80b0-4bd6-b322-c15f8f6aedb9" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook410522585", - "name": "Notebook410522585", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/notebook-04-14-00-07", + "name": "notebook-04-14-00-07", "type": "Microsoft.Synapse/workspaces/notebooks", "properties": { "nbformat": 4, "nbformat_minor": 2, "entityState": null, "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, + "bigDataPool": { + "referenceName": "testsparkpool", + "type": "BigDataPoolReference" + }, + "sessionProperties": { + "driverMemory": "28g", + "driverCores": 3, + "executorMemory": "45g", + "executorCores": 7, + "numExecutors": 2, + "conf": null + }, "metadata": { "language_info": { - "name": "Python" + "name": "python" }, "a365ComputeOptions": null, "sessionKeepAliveTimeout": 0 }, - "cells": [], + "cells": [ + { + "cell_type": "code", + "metadata": { + "tags": [ + "parameters" + ] + }, + "source": [ + "" + ], + "attachments": null, + "outputs": [], + "execution_count": null + }, + { + "cell_type": "code", + "metadata": {}, + "source": [ + "print(param)" + ], + "attachments": null, + "outputs": [], + "execution_count": null + } + ], "folder": null }, - "etag": "d90764b1-0000-0800-0000-6001dc860000" + "etag": "6003a078-0000-0100-0000-607694d80000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook20726443?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebooks/notebook-04-14-00-09?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-f464e79da5ddd14dbe193b328233db80-e70393fac530174b-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "05f32322017df0f1409110405db2de96", + "traceparent": "00-e0a846df72487d4ba7830bbb23c82170-e5de39b8a95afd45-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "0004e64d8384c55da0591ab32a70ace8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:31:43 GMT", + "Date": "Thu, 30 Sep 2021 07:34:04 GMT", "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Kestrel Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "05f32322017df0f1409110405db2de96", - "x-ms-request-id": "90b67414-7124-4929-9ae0-0e9d943de662" + "x-ms-client-request-id": "0004e64d8384c55da0591ab32a70ace8", + "x-ms-request-id": "ba338d0d-b98e-4a8e-8866-5fbb664a05db" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook20726443", - "name": "Notebook20726443", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/notebook-04-14-00-09", + "name": "notebook-04-14-00-09", "type": "Microsoft.Synapse/workspaces/notebooks", "properties": { "nbformat": 4, "nbformat_minor": 2, "entityState": null, "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, + "bigDataPool": { + "referenceName": "testsparkpool", + "type": "BigDataPoolReference" + }, + "sessionProperties": { + "driverMemory": "28g", + "driverCores": 3, + "executorMemory": "45g", + "executorCores": 7, + "numExecutors": 2, + "conf": null + }, "metadata": { "language_info": { - "name": "Python" + "name": "python" }, "a365ComputeOptions": null, "sessionKeepAliveTimeout": 0 }, - "cells": [], + "cells": [ + { + "cell_type": "code", + "metadata": { + "tags": [ + "parameters" + ] + }, + "source": [ + "" + ], + "attachments": null, + "outputs": [], + "execution_count": null + }, + { + "cell_type": "code", + "metadata": {}, + "source": [ + "print(param)" + ], + "attachments": null, + "outputs": [], + "execution_count": null + } + ], "folder": null }, - "etag": "3100e91d-0000-0800-0000-600873dd0000" + "etag": "6103a451-0000-0100-0000-6076953a0000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook13089502?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebooks/notebook-04-19-23-25?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-955567f8b6eb9f4c88df01f75053c80a-ad2543a07619ae48-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "18e75b7f9e15ec4bbfcb328837987a7e", + "traceparent": "00-1ef1cd29a663ad4b90ba9b418a8ae910-6da67293e9b6564a-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "e607f6c106fff0fc5a8a22f9f957cb6d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:31:43 GMT", + "Date": "Thu, 30 Sep 2021 07:34:04 GMT", "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Kestrel Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "18e75b7f9e15ec4bbfcb328837987a7e", - "x-ms-request-id": "fb682c0c-2d6b-464d-89b6-40342775f93b" + "x-ms-client-request-id": "e607f6c106fff0fc5a8a22f9f957cb6d", + "x-ms-request-id": "fd01507b-b5cc-460e-b530-77b014cb4f69" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook13089502", - "name": "Notebook13089502", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/notebook-04-19-23-25", + "name": "notebook-04-19-23-25", "type": "Microsoft.Synapse/workspaces/notebooks", "properties": { "nbformat": 4, "nbformat_minor": 2, "entityState": null, "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, + "bigDataPool": { + "referenceName": "testsparkpool", + "type": "BigDataPoolReference" + }, + "sessionProperties": { + "driverMemory": "28g", + "driverCores": 3, + "executorMemory": "45g", + "executorCores": 7, + "numExecutors": 2, + "conf": null + }, "metadata": { "language_info": { - "name": "Python" + "name": "python" }, "a365ComputeOptions": null, "sessionKeepAliveTimeout": 0 }, - "cells": [], + "cells": [ + { + "cell_type": "code", + "metadata": { + "tags": [ + "parameters" + ] + }, + "source": [ + "" + ], + "attachments": null, + "outputs": [], + "execution_count": null + }, + { + "cell_type": "code", + "metadata": {}, + "source": [ + "print(param)" + ], + "attachments": null, + "outputs": [], + "execution_count": null + } + ], "folder": null }, - "etag": "31007349-0000-0800-0000-600874170000" + "etag": "060096a2-0000-0100-0000-607e73c90000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook99280730?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebooks/dwnb0723?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-e58d4716a53c144aa09b6a6356f1affb-521252f2fae1dc4f-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "7812099e63a4a352d91600303fda8b03", + "traceparent": "00-ca6ee97ce88d0044bf14ca1edb340b36-efd200a0c844134b-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "2319259e5d36e4df5e2e72eb5162e2a4", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:31:43 GMT", + "Date": "Thu, 30 Sep 2021 07:34:04 GMT", "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Kestrel Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "7812099e63a4a352d91600303fda8b03", - "x-ms-request-id": "aa555172-99f0-4831-b048-be3db834355e" + "x-ms-client-request-id": "2319259e5d36e4df5e2e72eb5162e2a4", + "x-ms-request-id": "d4fa93e8-9775-4a1b-8794-a9a2cdeeae9b" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook99280730", - "name": "Notebook99280730", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/dwnb0723", + "name": "dwnb0723", "type": "Microsoft.Synapse/workspaces/notebooks", "properties": { "nbformat": 4, @@ -9960,105 +2962,180 @@ "entityState": null, "renameOperationDetails": null, "bigDataPool": null, - "sessionProperties": null, + "sessionProperties": { + "driverMemory": "28g", + "driverCores": 4, + "executorMemory": "28g", + "executorCores": 4, + "numExecutors": 2, + "conf": { + "spark.dynamicAllocation.enabled": "false", + "spark.dynamicAllocation.minExecutors": "2", + "spark.dynamicAllocation.maxExecutors": "2" + } + }, "metadata": { "language_info": { - "name": "Python" + "name": "python" }, "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 + "sessionKeepAliveTimeout": 30, + "saveOutput": true, + "synapse_widget": { + "version": "0.1", + "state": {} + }, + "kernelspec": { + "name": "synapse_pyspark", + "display_name": "python" + } }, - "cells": [], + "cells": [ + { + "cell_type": "code", + "metadata": {}, + "source": [ + "print(\u0027hello\u0027)" + ], + "attachments": null, + "outputs": [], + "execution_count": null + } + ], "folder": null }, - "etag": "330005b5-0000-0800-0000-600877720000" + "etag": "03001052-0000-0100-0000-60e831ea0000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook16542947?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebooks/BRMSRule?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-4a1ee6af6bf0ee489e61fde8504cb93b-dcc7782aaff4e54f-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "35a6f823483784c4d80745b2cf69b9a7", + "traceparent": "00-d87ab93350b42b47a8a8d882d2fc31ad-22ccb9c8a5fd3d44-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "d6188bf4a0214618e913a6f96164cb49", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:31:44 GMT", + "Date": "Thu, 30 Sep 2021 07:34:05 GMT", "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Kestrel Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "35a6f823483784c4d80745b2cf69b9a7", - "x-ms-request-id": "364e09f7-f9f4-4729-bdae-40551e5f3e63" + "x-ms-client-request-id": "d6188bf4a0214618e913a6f96164cb49", + "x-ms-request-id": "af6bab5d-1e3e-451b-a01e-64fe166839db" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook16542947", - "name": "Notebook16542947", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/BRMSRule", + "name": "BRMSRule", "type": "Microsoft.Synapse/workspaces/notebooks", "properties": { "nbformat": 4, "nbformat_minor": 2, "entityState": null, "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, + "bigDataPool": { + "referenceName": "testportal", + "type": "BigDataPoolReference" + }, + "sessionProperties": { + "driverMemory": "28g", + "driverCores": 4, + "executorMemory": "28g", + "executorCores": 4, + "numExecutors": 2, + "conf": null + }, "metadata": { "language_info": { - "name": "Python" + "name": "python" }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 + "a365ComputeOptions": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/bigDataPools/testportal", + "name": "testportal", + "type": "Spark", + "endpoint": "https://testsynapseworkspace.dev.azuresynapse.net/livyApi/versions/2019-11-01-preview/sparkPools/testportal", + "auth": { + "type": "AAD", + "authResource": "https://dev.azuresynapse.net" + }, + "sparkVersion": "3.0", + "nodeCount": 10, + "cores": 4, + "memory": 28, + "extraHeader": null + }, + "sessionKeepAliveTimeout": 30, + "saveOutput": true }, - "cells": [], + "cells": [ + { + "cell_type": "code", + "metadata": { + "cellLanguage": "python", + "tags": [ + "parameters" + ] + }, + "source": [ + "param = \u0022\u0022" + ], + "attachments": null, + "outputs": [], + "execution_count": null + }, + { + "cell_type": "code", + "metadata": null, + "source": [ + "print(param)\n", + "print(\u0022updated 12:29\u0022)\n", + "a = \u0022\u0022\u0022\n", + "/*Rule:OEMDealFlagPlan_OneConsumerPlanCustomGrouping-BEGIN*/ /*Rule:OEMDealFlagPlan_OneConsumerPlanCustomGrouping-END*/\n", + "\u0022\u0022\u0022\n", + "print(a)" + ], + "attachments": null, + "outputs": [], + "execution_count": null + } + ], "folder": null }, - "etag": "3300cbd7-0000-0800-0000-600877a40000" + "etag": "0e00f869-0000-0100-0000-611a2fa50000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook40157009?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebooks/dwtestnbdescription?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-1a120b298b39a044b76f5cc8ebaf182b-8e186ff03c54fe45-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "54a1921665a01cf208433ffe9d1bace5", + "traceparent": "00-a7f09e94a6b84443b9c603700dfaf19c-4b98bad558cbd24a-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "0414ad8e895763b1162387d094119ef8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:31:44 GMT", + "Date": "Thu, 30 Sep 2021 07:34:05 GMT", "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Kestrel Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "54a1921665a01cf208433ffe9d1bace5", - "x-ms-request-id": "08c4142e-a5c8-4b89-8255-89dae3bd9b74" + "x-ms-client-request-id": "0414ad8e895763b1162387d094119ef8", + "x-ms-request-id": "ab439c64-7a35-47df-8ed2-8af138fdb91f" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook40157009", - "name": "Notebook40157009", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/dwtestnbdescription", + "name": "dwtestnbdescription", "type": "Microsoft.Synapse/workspaces/notebooks", "properties": { "nbformat": 4, @@ -10066,52 +3143,77 @@ "entityState": null, "renameOperationDetails": null, "bigDataPool": null, - "sessionProperties": null, + "sessionProperties": { + "driverMemory": "28g", + "driverCores": 4, + "executorMemory": "28g", + "executorCores": 4, + "numExecutors": 2, + "conf": { + "spark.dynamicAllocation.enabled": "false", + "spark.dynamicAllocation.minExecutors": "2", + "spark.dynamicAllocation.maxExecutors": "2" + } + }, "metadata": { "language_info": { - "name": "Python" + "name": "python" }, "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 + "sessionKeepAliveTimeout": 30, + "saveOutput": true, + "synapse_widget": { + "version": "0.1", + "state": {} + }, + "kernelspec": { + "name": "synapse_pyspark", + "display_name": "python" + } }, - "cells": [], + "cells": [ + { + "cell_type": "code", + "metadata": {}, + "source": [ + "" + ], + "attachments": null, + "outputs": [], + "execution_count": null + } + ], "folder": null }, - "etag": "5100e89c-0000-0800-0000-6008a2af0000" + "etag": "0e00710b-0000-0100-0000-6142dcb10000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook41052258?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebooks/Notebook82429219?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-69b4c4aa42cddf429d204bd500bdfeb8-01a067e0a923ad46-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "3f652e3f44f25647448da09d1da0d370", + "traceparent": "00-728d48bda38f2045b40a2fbd8e7265ca-5536dca0ee38a042-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "6e047da8f43ffe4b0cd33922b7e683fa", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:31:44 GMT", + "Date": "Thu, 30 Sep 2021 07:34:05 GMT", "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Kestrel Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "3f652e3f44f25647448da09d1da0d370", - "x-ms-request-id": "c24b722d-f233-4764-b826-a8b268c2be4e" + "x-ms-client-request-id": "6e047da8f43ffe4b0cd33922b7e683fa", + "x-ms-request-id": "d0096d7d-dafc-494a-bb74-65bc8f93bf74" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook41052258", - "name": "Notebook41052258", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/Notebook82429219", + "name": "Notebook82429219", "type": "Microsoft.Synapse/workspaces/notebooks", "properties": { "nbformat": 4, @@ -10130,41 +3232,35 @@ "cells": [], "folder": null }, - "etag": "510029c4-0000-0800-0000-6008a2e60000" + "etag": "2e001e88-0000-0100-0000-615568630000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook82429219?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebooks/Notebook12432614?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-89af4c4aba00b84e98a563f8427d9dd7-b65c0181612c1944-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "ad19595d3738be6305892df308c5e7bc", + "traceparent": "00-6b8924d4a3353742ab01d3e31a83da62-7977d07f2f02454e-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "a45d2862de4d6b4dd9b4bffe1848b1d8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:31:45 GMT", + "Date": "Thu, 30 Sep 2021 07:34:06 GMT", "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Kestrel Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "ad19595d3738be6305892df308c5e7bc", - "x-ms-request-id": "3a7f1f29-33a6-4d11-ae52-66c9975f6a33" + "x-ms-client-request-id": "a45d2862de4d6b4dd9b4bffe1848b1d8", + "x-ms-request-id": "40306101-f267-4e59-af77-225737a7a734" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook82429219", - "name": "Notebook82429219", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/Notebook12432614", + "name": "Notebook12432614", "type": "Microsoft.Synapse/workspaces/notebooks", "properties": { "nbformat": 4, @@ -10183,21 +3279,18 @@ "cells": [], "folder": null }, - "etag": "1401ae8d-0000-0800-0000-6009c85e0000" + "etag": "2e005a80-0000-0100-0000-615556e70000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook82429219?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebooks/Notebook82429219?api-version=2020-12-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-d3a8e60fed58f4468cc11df4678bb79f-57c3a5ac03db9f4a-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "a073605a7904d2b54a4b0f12c455ff68", + "traceparent": "00-2ebc438811931542aa47c635fc2fa505-4a0ccd75aa33b54b-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "e351ad745d5f99096115f7834f8fac30", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -10205,147 +3298,33 @@ "ResponseHeaders": { "Access-Control-Allow-Headers": "Location", "Access-Control-Expose-Headers": "Location", - "Content-Length": "374", + "Content-Length": "367", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:31:45 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/notebookOperationResults/aa816673-80f3-4734-b661-73ceed1cbad9?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 07:34:06 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/notebookOperationResults/75094c64-e964-4cca-96aa-9b799797f02f?api-version=2020-12-01", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "a073605a7904d2b54a4b0f12c455ff68", - "x-ms-request-id": "c0dc4ccd-fb3e-47ca-b382-c38f387d2166" + "x-ms-client-request-id": "e351ad745d5f99096115f7834f8fac30", + "x-ms-request-id": "eacca12c-1550-48d7-9657-8155d14c7486" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook82429219", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/Notebook82429219", "recordId": 0, "state": "Deleting", "created": "0001-01-01T00:00:00", "changed": "0001-01-01T00:00:00", "type": "Notebook", "name": "Notebook82429219", - "operationId": "aa816673-80f3-4734-b661-73ceed1cbad9" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebookOperationResults/aa816673-80f3-4734-b661-73ceed1cbad9?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "bc42e3a6332de36ca44662ec2750f9af", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:31:45 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/notebookOperationResults/aa816673-80f3-4734-b661-73ceed1cbad9?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "bc42e3a6332de36ca44662ec2750f9af", - "x-ms-request-id": "1a8218f2-b218-4a04-a43b-f9b13d9b7092" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebookOperationResults/aa816673-80f3-4734-b661-73ceed1cbad9?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "3883c58aa3235bbab36ad45d3f4cbbf7", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:31:46 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/notebookOperationResults/aa816673-80f3-4734-b661-73ceed1cbad9?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "3883c58aa3235bbab36ad45d3f4cbbf7", - "x-ms-request-id": "fc838101-3edf-4d8d-9a3f-52041bd888e7" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebookOperationResults/aa816673-80f3-4734-b661-73ceed1cbad9?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "e16c90fd42123c3b63be9fbb9cbfe07b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:31:47 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/notebookOperationResults/aa816673-80f3-4734-b661-73ceed1cbad9?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "e16c90fd42123c3b63be9fbb9cbfe07b", - "x-ms-request-id": "d44fc455-4cf9-41db-880d-3be4fc36defa" - }, - "ResponseBody": { - "status": "InProgress" + "operationId": "75094c64-e964-4cca-96aa-9b799797f02f" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebookOperationResults/aa816673-80f3-4734-b661-73ceed1cbad9?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebookOperationResults/75094c64-e964-4cca-96aa-9b799797f02f?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "51de8aad15cf025b29e708c25e0ea358", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "09ad61219f94059b1fc44337e7c91c4a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -10361,28 +3340,25 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:31:48 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/notebookOperationResults/aa816673-80f3-4734-b661-73ceed1cbad9?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 07:34:06 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/notebookOperationResults/75094c64-e964-4cca-96aa-9b799797f02f?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "51de8aad15cf025b29e708c25e0ea358", - "x-ms-request-id": "46beeae5-b326-4f9d-8a8f-ccb4f8bc4b7a" + "x-ms-client-request-id": "09ad61219f94059b1fc44337e7c91c4a", + "x-ms-request-id": "97b16907-1da0-4605-89ec-d2050f53a0ef" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebookOperationResults/aa816673-80f3-4734-b661-73ceed1cbad9?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebookOperationResults/75094c64-e964-4cca-96aa-9b799797f02f?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "97ef6b8b18e3479d8a47d56504febef3", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "8b5d8e0745d97a250386b3c6c87e6413", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -10398,28 +3374,25 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:31:50 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/notebookOperationResults/aa816673-80f3-4734-b661-73ceed1cbad9?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 07:34:07 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/notebookOperationResults/75094c64-e964-4cca-96aa-9b799797f02f?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "97ef6b8b18e3479d8a47d56504febef3", - "x-ms-request-id": "4dfb1cc9-0eb3-49be-b620-5bca832def68" + "x-ms-client-request-id": "8b5d8e0745d97a250386b3c6c87e6413", + "x-ms-request-id": "e1e26bd9-ca13-4e9e-8b80-3234276e9d1f" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebookOperationResults/aa816673-80f3-4734-b661-73ceed1cbad9?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebookOperationResults/75094c64-e964-4cca-96aa-9b799797f02f?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "b5af5989696de827346ab72a3a78de54", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "ed62322fa3e1009bf2694cefb672e366", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -10435,45 +3408,42 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:31:51 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/notebookOperationResults/aa816673-80f3-4734-b661-73ceed1cbad9?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 07:34:08 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/notebookOperationResults/75094c64-e964-4cca-96aa-9b799797f02f?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "b5af5989696de827346ab72a3a78de54", - "x-ms-request-id": "0c400d38-cc90-4f3a-ba32-3ae2ff7d7a82" + "x-ms-client-request-id": "ed62322fa3e1009bf2694cefb672e366", + "x-ms-request-id": "a6570fba-55bc-4e98-bc76-c00061946a10" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebookOperationResults/aa816673-80f3-4734-b661-73ceed1cbad9?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebookOperationResults/75094c64-e964-4cca-96aa-9b799797f02f?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "312f471a49d09598ec97c7883ff5fe2a", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "a6834a7c5aefdbea3c33060decd43ca0", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Content-Length": "0", - "Date": "Thu, 21 Jan 2021 18:31:52 GMT", + "Date": "Thu, 30 Sep 2021 07:34:09 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "312f471a49d09598ec97c7883ff5fe2a", - "x-ms-request-id": "e94a7526-c317-45b1-b781-a3eb76cb4c48" + "x-ms-client-request-id": "a6834a7c5aefdbea3c33060decd43ca0", + "x-ms-request-id": "0ab43bb1-cb65-402d-8b52-35da7f18b9ae" }, "ResponseBody": [] } ], "Variables": { - "AZURE_SYNAPSE_WORKSPACE_URL": "https://workspacechhamosynapse.dev.azuresynapse.net", + "AZURE_SYNAPSE_WORKSPACE_URL": "https://testsynapseworkspace.dev.azuresynapse.net", "RandomSeed": "767908713" } } \ No newline at end of file diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/NotebookClientLiveTests/TestRenameLinkedService.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/NotebookClientLiveTests/TestRenameLinkedService.json index e079c11d85cf..bc0cc8ff3653 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/NotebookClientLiveTests/TestRenameLinkedService.json +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/NotebookClientLiveTests/TestRenameLinkedService.json @@ -1,18 +1,15 @@ { "Entries": [ { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook82440489?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebooks/Notebook82440489?api-version=2020-12-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "132", "Content-Type": "application/json", - "traceparent": "00-1fe0b78cd8df1a4a8afb662d8dd03ed9-46d55cf9f7bc8443-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "traceparent": "00-00334fd9dc0c2f43b3132cf92d67817e-7209528d619e9243-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "78df8a44f5dc79011fcfd7a4506210d8", "x-ms-return-client-request-id": "true" }, @@ -39,37 +36,34 @@ "Location", "Retry-After" ], - "Content-Length": "437", + "Content-Length": "443", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:48:22 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/notebookOperationResults/fe8ebc86-2c0d-40e4-b474-db1245f70142?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 07:32:59 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/notebookOperationResults/a94e8885-560e-4f1f-b356-126b78b752fd?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "78df8a44f5dc79011fcfd7a4506210d8", - "x-ms-request-id": "2eda67b3-7aff-4419-80a6-424263bd0ff2" + "x-ms-request-id": "128b89ba-b586-4ee6-a6c6-5d4901872663" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook82440489", - "recordId": 990812, - "state": "Creating", - "created": "2021-01-21T17:48:22.6Z", - "changed": "2021-01-21T17:48:22.6Z", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/Notebook82440489", + "recordId": 2424364, + "state": "Updating", + "created": "2021-09-30T06:19:04.0766667Z", + "changed": "2021-09-30T06:19:08.1433333Z", "type": "Notebook", "name": "Notebook82440489", - "operationId": "fe8ebc86-2c0d-40e4-b474-db1245f70142", - "artifactId": "d521d7df-f1fe-4cac-8265-80bf09e21557" + "operationId": "a94e8885-560e-4f1f-b356-126b78b752fd", + "artifactId": "d272394f-859d-469a-92f3-2b8e5b43275c" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebookOperationResults/fe8ebc86-2c0d-40e4-b474-db1245f70142?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebookOperationResults/a94e8885-560e-4f1f-b356-126b78b752fd?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "20863c34662434baaeb89a017c75d330", "x-ms-return-client-request-id": "true" }, @@ -86,27 +80,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:48:22 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/notebookOperationResults/fe8ebc86-2c0d-40e4-b474-db1245f70142?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 07:32:59 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/notebookOperationResults/a94e8885-560e-4f1f-b356-126b78b752fd?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "20863c34662434baaeb89a017c75d330", - "x-ms-request-id": "718a3c4f-9981-4214-bc14-62e6ab6ca5be" + "x-ms-request-id": "aab5b781-c6cc-42b5-85c1-6c198e7d4e26" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebookOperationResults/fe8ebc86-2c0d-40e4-b474-db1245f70142?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebookOperationResults/a94e8885-560e-4f1f-b356-126b78b752fd?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "12d92056d9f3e9de1c75ff12b3b4a5d1", "x-ms-return-client-request-id": "true" }, @@ -123,27 +114,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:48:23 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/notebookOperationResults/fe8ebc86-2c0d-40e4-b474-db1245f70142?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 07:33:00 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/notebookOperationResults/a94e8885-560e-4f1f-b356-126b78b752fd?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "12d92056d9f3e9de1c75ff12b3b4a5d1", - "x-ms-request-id": "18d6f0a0-51e3-48c1-9267-6683e815e51e" + "x-ms-request-id": "61c78519-9383-4d94-95d6-9d58c607b2d0" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebookOperationResults/fe8ebc86-2c0d-40e4-b474-db1245f70142?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebookOperationResults/a94e8885-560e-4f1f-b356-126b78b752fd?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "146fd4daf0db94b4bf9c170ac06ced04", "x-ms-return-client-request-id": "true" }, @@ -160,31 +148,79 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:48:24 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/notebookOperationResults/fe8ebc86-2c0d-40e4-b474-db1245f70142?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 07:33:01 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/notebookOperationResults/a94e8885-560e-4f1f-b356-126b78b752fd?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "146fd4daf0db94b4bf9c170ac06ced04", - "x-ms-request-id": "f71e0f94-9201-42b4-9fa9-c4b1e238f8e4" + "x-ms-request-id": "c60b000c-a071-4200-a953-088ab65a49e7" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebookOperationResults/fe8ebc86-2c0d-40e4-b474-db1245f70142?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebookOperationResults/a94e8885-560e-4f1f-b356-126b78b752fd?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b3f710f6e2755b0f5d9d03ae66a880f9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 30 Sep 2021 07:33:03 GMT", + "Request-Context": "appId=", + "Server": "Kestrel Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=2592000", + "Transfer-Encoding": "chunked", + "x-ms-client-request-id": "b3f710f6e2755b0f5d9d03ae66a880f9", + "x-ms-request-id": "1531c33c-b1ac-4eab-8edd-0b3442120afc" + }, + "ResponseBody": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/Notebook82440489", + "name": "Notebook82440489", + "type": "Microsoft.Synapse/workspaces/notebooks", + "properties": { + "nbformat": 4, + "nbformat_minor": 2, + "entityState": null, + "renameOperationDetails": null, + "bigDataPool": null, + "sessionProperties": null, + "metadata": { + "language_info": { + "name": "Python" + }, + "a365ComputeOptions": null, + "sessionKeepAliveTimeout": 0 + }, + "cells": [], + "folder": null + }, + "etag": "2e00f987-0000-0100-0000-6155682e0000" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebooks/Notebook82440489/rename?api-version=2020-12-01", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "30", + "Content-Type": "application/json", + "traceparent": "00-4d61bc83a528c749a3453c47a72016d1-87e6873d52876d4a-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "05a727c954be6c65455256c1d428af88", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "newName": "Notebook27422794" + }, "StatusCode": 202, "ResponseHeaders": { "Access-Control-Allow-Headers": [ @@ -195,30 +231,35 @@ "Location", "Retry-After" ], - "Content-Length": "23", + "Content-Length": "443", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:48:26 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/notebookOperationResults/fe8ebc86-2c0d-40e4-b474-db1245f70142?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 07:33:03 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ed7c1323-38b9-47fb-9e63-41559af3742b?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "b3f710f6e2755b0f5d9d03ae66a880f9", - "x-ms-request-id": "f9796661-f33d-40cc-b54f-5c6faf94b7c6" + "x-ms-client-request-id": "05a727c954be6c65455256c1d428af88", + "x-ms-request-id": "6da995bf-93d7-4566-922a-89115e5ab67a" }, "ResponseBody": { - "status": "InProgress" + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/Notebook82440489", + "recordId": 2424364, + "state": "Renaming", + "created": "2021-09-30T06:19:04.0766667Z", + "changed": "2021-09-30T07:33:02.4766667Z", + "type": "Notebook", + "name": "Notebook82440489", + "operationId": "ed7c1323-38b9-47fb-9e63-41559af3742b", + "artifactId": "d272394f-859d-469a-92f3-2b8e5b43275c" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebookOperationResults/fe8ebc86-2c0d-40e4-b474-db1245f70142?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ed7c1323-38b9-47fb-9e63-41559af3742b?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "a727c913be0565546c455256c1d428af", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "45f7f61efe45bb379146308fb8998874", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -234,88 +275,28 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:48:27 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/notebookOperationResults/fe8ebc86-2c0d-40e4-b474-db1245f70142?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 07:33:03 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ed7c1323-38b9-47fb-9e63-41559af3742b?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "a727c913be0565546c455256c1d428af", - "x-ms-request-id": "393f12c2-7bab-43ee-9b30-2e0b48b6a7a5" + "x-ms-client-request-id": "45f7f61efe45bb379146308fb8998874", + "x-ms-request-id": "34577df2-0d69-4c24-8fe2-91dacd250632" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebookOperationResults/fe8ebc86-2c0d-40e4-b474-db1245f70142?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ed7c1323-38b9-47fb-9e63-41559af3742b?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "a31bfb88f1bdf85bc514b73eec052d17", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "8c6a26543cdd6d212ee2f00716796617", "x-ms-return-client-request-id": "true" }, "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:48:28 GMT", - "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=2592000", - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "a31bfb88f1bdf85bc514b73eec052d17", - "x-ms-request-id": "8a583ef1-a7e8-4214-bd08-5fc4032cc3c9" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook82440489", - "name": "Notebook82440489", - "type": "Microsoft.Synapse/workspaces/notebooks", - "properties": { - "nbformat": 4, - "nbformat_minor": 2, - "entityState": null, - "renameOperationDetails": null, - "bigDataPool": null, - "sessionProperties": null, - "metadata": { - "language_info": { - "name": "Python" - }, - "a365ComputeOptions": null, - "sessionKeepAliveTimeout": 0 - }, - "cells": [], - "folder": null - }, - "etag": "0d016db1-0000-0800-0000-6009be6b0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook82440489/rename?api-version=2019-06-01-preview", - "RequestMethod": "POST", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Length": "30", - "Content-Type": "application/json", - "traceparent": "00-c723598939c8444881689be63cde11c7-cc72d6e573097a45-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "45f7f61efe45bb379146308fb8998874", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "newName": "Notebook23857078" - }, "StatusCode": 202, "ResponseHeaders": { "Access-Control-Allow-Headers": [ @@ -326,37 +307,26 @@ "Location", "Retry-After" ], - "Content-Length": "443", + "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:48:28 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/2c3212ef-df64-4860-b0de-87ad00ef9733?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 07:33:04 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ed7c1323-38b9-47fb-9e63-41559af3742b?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "45f7f61efe45bb379146308fb8998874", - "x-ms-request-id": "ba556549-fa47-4962-971d-cd32341ddecd" + "x-ms-client-request-id": "8c6a26543cdd6d212ee2f00716796617", + "x-ms-request-id": "2f23f84d-80f4-4641-81c0-4dd819aed911" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook82440489", - "recordId": 990812, - "state": "Renaming", - "created": "2021-01-21T17:48:22.6Z", - "changed": "2021-01-21T17:48:27.9066667Z", - "type": "Notebook", - "name": "Notebook82440489", - "operationId": "2c3212ef-df64-4860-b0de-87ad00ef9733", - "artifactId": "d521d7df-f1fe-4cac-8265-80bf09e21557" + "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/2c3212ef-df64-4860-b0de-87ad00ef9733?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ed7c1323-38b9-47fb-9e63-41559af3742b?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "dea33a3b6931fc42e3e72bab2b680c7a", "x-ms-return-client-request-id": "true" }, @@ -373,27 +343,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:48:28 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/2c3212ef-df64-4860-b0de-87ad00ef9733?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 07:33:05 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ed7c1323-38b9-47fb-9e63-41559af3742b?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "dea33a3b6931fc42e3e72bab2b680c7a", - "x-ms-request-id": "ace3056a-cc7c-4691-a02d-a7107e941b1a" + "x-ms-request-id": "9c417781-6042-458c-82b5-02159ad26877" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/2c3212ef-df64-4860-b0de-87ad00ef9733?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ed7c1323-38b9-47fb-9e63-41559af3742b?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "df98c92e8ac3e13ed58a16630e30a518", "x-ms-return-client-request-id": "true" }, @@ -410,27 +377,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:48:29 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/2c3212ef-df64-4860-b0de-87ad00ef9733?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 07:33:06 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ed7c1323-38b9-47fb-9e63-41559af3742b?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "df98c92e8ac3e13ed58a16630e30a518", - "x-ms-request-id": "fcfd2155-00f2-4096-9b95-130baf198885" + "x-ms-request-id": "2a58b6ff-82ad-4022-a7da-6e5b94f9870b" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/2c3212ef-df64-4860-b0de-87ad00ef9733?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ed7c1323-38b9-47fb-9e63-41559af3742b?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7e5318dfaaf6ea43e46da9f6117641c6", "x-ms-return-client-request-id": "true" }, @@ -447,27 +411,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:48:30 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/2c3212ef-df64-4860-b0de-87ad00ef9733?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 07:33:07 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ed7c1323-38b9-47fb-9e63-41559af3742b?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "7e5318dfaaf6ea43e46da9f6117641c6", - "x-ms-request-id": "68049a7c-10fe-4f5e-9c15-f2ca5f6aa5ca" + "x-ms-request-id": "26a33c1b-3229-4ff8-a946-ee3639ba98c2" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/2c3212ef-df64-4860-b0de-87ad00ef9733?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ed7c1323-38b9-47fb-9e63-41559af3742b?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "4dd975d587e1b154fbc208a652dfeeb3", "x-ms-return-client-request-id": "true" }, @@ -484,27 +445,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:48:32 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/2c3212ef-df64-4860-b0de-87ad00ef9733?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 07:33:09 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ed7c1323-38b9-47fb-9e63-41559af3742b?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "4dd975d587e1b154fbc208a652dfeeb3", - "x-ms-request-id": "05cf7f21-da7a-4871-9d6f-55d885bc51e6" + "x-ms-request-id": "4e09d52c-9fb0-433d-be22-d128cd807e51" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/2c3212ef-df64-4860-b0de-87ad00ef9733?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ed7c1323-38b9-47fb-9e63-41559af3742b?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "13cb12418e14838485adfa55e148cf5e", "x-ms-return-client-request-id": "true" }, @@ -521,27 +479,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:48:33 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/2c3212ef-df64-4860-b0de-87ad00ef9733?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 07:33:10 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ed7c1323-38b9-47fb-9e63-41559af3742b?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "13cb12418e14838485adfa55e148cf5e", - "x-ms-request-id": "bb37aa6c-c7be-4650-9208-f2c545ab432b" + "x-ms-request-id": "c6c7281b-74f5-496d-bfbb-dd7b4e6c2862" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/2c3212ef-df64-4860-b0de-87ad00ef9733?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ed7c1323-38b9-47fb-9e63-41559af3742b?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "988d504958575837c4a28233a19c9705", "x-ms-return-client-request-id": "true" }, @@ -558,27 +513,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:48:34 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/2c3212ef-df64-4860-b0de-87ad00ef9733?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 07:33:11 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ed7c1323-38b9-47fb-9e63-41559af3742b?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "988d504958575837c4a28233a19c9705", - "x-ms-request-id": "05362541-126a-4dde-95fc-a49b39c747c5" + "x-ms-request-id": "cd3afdb2-0a8d-40bb-82c2-597ec54407cc" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/2c3212ef-df64-4860-b0de-87ad00ef9733?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ed7c1323-38b9-47fb-9e63-41559af3742b?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "feb4f67f2eab47b1f155c7338dfed0b3", "x-ms-return-client-request-id": "true" }, @@ -595,27 +547,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:48:35 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/2c3212ef-df64-4860-b0de-87ad00ef9733?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 07:33:12 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ed7c1323-38b9-47fb-9e63-41559af3742b?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "feb4f67f2eab47b1f155c7338dfed0b3", - "x-ms-request-id": "1c53684f-3ec0-439d-bcb5-3bcf5d402e56" + "x-ms-request-id": "38e5e8f0-01ba-42ea-b1fe-7f0f44c91192" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/2c3212ef-df64-4860-b0de-87ad00ef9733?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ed7c1323-38b9-47fb-9e63-41559af3742b?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "025daaf25651e95bdb734e720c50e1e8", "x-ms-return-client-request-id": "true" }, @@ -632,27 +581,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:48:36 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/2c3212ef-df64-4860-b0de-87ad00ef9733?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 07:33:13 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ed7c1323-38b9-47fb-9e63-41559af3742b?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "025daaf25651e95bdb734e720c50e1e8", - "x-ms-request-id": "9d6a3b4f-084f-4153-ab89-72654a50ba07" + "x-ms-request-id": "872e86e6-bfcc-4cea-84f2-fd1799d36f5d" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/2c3212ef-df64-4860-b0de-87ad00ef9733?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ed7c1323-38b9-47fb-9e63-41559af3742b?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ead6f515d1941bb39f46a6029003cac5", "x-ms-return-client-request-id": "true" }, @@ -669,27 +615,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:48:37 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/2c3212ef-df64-4860-b0de-87ad00ef9733?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 07:33:14 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ed7c1323-38b9-47fb-9e63-41559af3742b?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "ead6f515d1941bb39f46a6029003cac5", - "x-ms-request-id": "01b9b879-4eba-45fd-8c88-f6d589d9d479" + "x-ms-request-id": "d5e70bf8-91a8-44f0-bfb1-eaa145bdccf9" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/2c3212ef-df64-4860-b0de-87ad00ef9733?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ed7c1323-38b9-47fb-9e63-41559af3742b?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f741ced2953f28b39aca2238df3e3aa0", "x-ms-return-client-request-id": "true" }, @@ -706,27 +649,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:48:38 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/2c3212ef-df64-4860-b0de-87ad00ef9733?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 07:33:15 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ed7c1323-38b9-47fb-9e63-41559af3742b?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "f741ced2953f28b39aca2238df3e3aa0", - "x-ms-request-id": "3fa15915-2023-4c3b-99b0-769f352abbee" + "x-ms-request-id": "0f4bfcc5-e05a-4e18-b61c-e7c141abd1bd" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/2c3212ef-df64-4860-b0de-87ad00ef9733?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ed7c1323-38b9-47fb-9e63-41559af3742b?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "971ede73e528211ff642620baf5959d8", "x-ms-return-client-request-id": "true" }, @@ -743,74 +683,235 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:48:39 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/2c3212ef-df64-4860-b0de-87ad00ef9733?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 07:33:16 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ed7c1323-38b9-47fb-9e63-41559af3742b?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "971ede73e528211ff642620baf5959d8", - "x-ms-request-id": "1f6f8106-fe97-4f25-b2cb-27fc588bf303" + "x-ms-request-id": "ee6b3c88-700a-4445-9114-b71d77e0aeaa" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/2c3212ef-df64-4860-b0de-87ad00ef9733?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ed7c1323-38b9-47fb-9e63-41559af3742b?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "3d9f88a8ea0f7fa941ad50c9ae7b3b60", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 30 Sep 2021 07:33:17 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ed7c1323-38b9-47fb-9e63-41559af3742b?api-version=2020-12-01", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "3d9f88a8ea0f7fa941ad50c9ae7b3b60", + "x-ms-request-id": "2f0a439d-ed5b-4867-a0ae-b07897361c3a" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ed7c1323-38b9-47fb-9e63-41559af3742b?api-version=2020-12-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "b18e060b33e4ed9daf1f01fc32a87840", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 30 Sep 2021 07:33:18 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ed7c1323-38b9-47fb-9e63-41559af3742b?api-version=2020-12-01", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "b18e060b33e4ed9daf1f01fc32a87840", + "x-ms-request-id": "e0cd49e7-e5ac-472f-9dab-60ee432823bc" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ed7c1323-38b9-47fb-9e63-41559af3742b?api-version=2020-12-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "578f4a71fc9e8990359e557a9455737a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 30 Sep 2021 07:33:20 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ed7c1323-38b9-47fb-9e63-41559af3742b?api-version=2020-12-01", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "578f4a71fc9e8990359e557a9455737a", + "x-ms-request-id": "e185f10f-116c-4e95-9f88-9cdd3917edcd" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ed7c1323-38b9-47fb-9e63-41559af3742b?api-version=2020-12-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "a9ff0207a7ca74f3eab28ef0e8ac4d99", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 30 Sep 2021 07:33:21 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ed7c1323-38b9-47fb-9e63-41559af3742b?api-version=2020-12-01", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "a9ff0207a7ca74f3eab28ef0e8ac4d99", + "x-ms-request-id": "e5154277-2b90-48ea-aee7-76f8b64b17a9" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ed7c1323-38b9-47fb-9e63-41559af3742b?api-version=2020-12-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "63580f35e3eb0fc175057c46dd235859", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 30 Sep 2021 07:33:22 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ed7c1323-38b9-47fb-9e63-41559af3742b?api-version=2020-12-01", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "63580f35e3eb0fc175057c46dd235859", + "x-ms-request-id": "ff6464d9-c67d-4367-bed2-1aa9b1adf2c2" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/ed7c1323-38b9-47fb-9e63-41559af3742b?api-version=2020-12-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "30f586abcfa9c975571a6cec6da0a088", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Content-Length": "0", - "Date": "Thu, 21 Jan 2021 17:48:40 GMT", + "Date": "Thu, 30 Sep 2021 07:33:23 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "3d9f88a8ea0f7fa941ad50c9ae7b3b60", - "x-ms-request-id": "7c22c4db-c6f4-4f5a-9240-5712381ec25f" + "x-ms-client-request-id": "30f586abcfa9c975571a6cec6da0a088", + "x-ms-request-id": "6877667d-5bb5-4f6f-96bd-a7db0c1ef304" }, "ResponseBody": [] }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook23857078?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebooks/Notebook27422794?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-0bff08bffe1b674a9781561167e26e37-f6744f28235dc74b-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "b18e060b33e4ed9daf1f01fc32a87840", + "traceparent": "00-697dcdb202b10b4c9bcd077375302c8b-55b4f28998edd54e-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "8545bc510ffd238f40f034c52aac97c7", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:48:40 GMT", + "Date": "Thu, 30 Sep 2021 07:33:23 GMT", "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Kestrel Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "b18e060b33e4ed9daf1f01fc32a87840", - "x-ms-request-id": "1a0bb0dd-94ce-429f-b76c-4f640acb43ae" + "x-ms-client-request-id": "8545bc510ffd238f40f034c52aac97c7", + "x-ms-request-id": "1319be9b-3c2b-4b8a-9095-87f710abf8b7" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook23857078", - "name": "Notebook23857078", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/Notebook27422794", + "name": "Notebook27422794", "type": "Microsoft.Synapse/workspaces/notebooks", "properties": { "nbformat": 4, @@ -829,21 +930,18 @@ "cells": [], "folder": null }, - "etag": "0d0179b9-0000-0800-0000-6009be770000" + "etag": "2e000488-0000-0100-0000-6155683c0000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook23857078?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebooks/Notebook27422794?api-version=2020-12-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-96dbcd564b834d448296deade86c75aa-6214af66f5806d4d-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "578f4a71fc9e8990359e557a9455737a", + "traceparent": "00-8d345775d532b34f990ffcc63cca2c11-3d8d11ba21268e44-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "6244355a1cb665ef998f0cd077d5a1d4", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -851,36 +949,33 @@ "ResponseHeaders": { "Access-Control-Allow-Headers": "Location", "Access-Control-Expose-Headers": "Location", - "Content-Length": "374", + "Content-Length": "367", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:48:40 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/notebookOperationResults/d5133868-3390-44d5-908c-1fbc250c06f6?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 07:33:23 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/notebookOperationResults/b9a544a2-c8fc-4afd-a352-3d3e8b322030?api-version=2020-12-01", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "578f4a71fc9e8990359e557a9455737a", - "x-ms-request-id": "eefd7046-933f-4fc2-87d1-dd7acf745c21" + "x-ms-client-request-id": "6244355a1cb665ef998f0cd077d5a1d4", + "x-ms-request-id": "5f9b058e-5e21-4703-9e97-7d38fb24d122" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook23857078", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/Notebook27422794", "recordId": 0, "state": "Deleting", "created": "0001-01-01T00:00:00", "changed": "0001-01-01T00:00:00", "type": "Notebook", - "name": "Notebook23857078", - "operationId": "d5133868-3390-44d5-908c-1fbc250c06f6" + "name": "Notebook27422794", + "operationId": "b9a544a2-c8fc-4afd-a352-3d3e8b322030" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebookOperationResults/d5133868-3390-44d5-908c-1fbc250c06f6?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebookOperationResults/b9a544a2-c8fc-4afd-a352-3d3e8b322030?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "63580f35e3eb0fc175057c46dd235859", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "3891a5833e5b35d1ccdfeb6d03beac6a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -896,28 +991,59 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:48:40 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/notebookOperationResults/d5133868-3390-44d5-908c-1fbc250c06f6?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 07:33:23 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/notebookOperationResults/b9a544a2-c8fc-4afd-a352-3d3e8b322030?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "63580f35e3eb0fc175057c46dd235859", - "x-ms-request-id": "403be35c-6533-46e4-a3a9-3188e78ba834" + "x-ms-client-request-id": "3891a5833e5b35d1ccdfeb6d03beac6a", + "x-ms-request-id": "7c680939-bdbf-4da8-aee8-92778329f843" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebookOperationResults/d5133868-3390-44d5-908c-1fbc250c06f6?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebookOperationResults/b9a544a2-c8fc-4afd-a352-3d3e8b322030?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "365f5f4f77b887e9d9a86ae42c37cbe9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" ], - "x-ms-client-request-id": "30f586abcfa9c975571a6cec6da0a088", + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 30 Sep 2021 07:33:25 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/notebookOperationResults/b9a544a2-c8fc-4afd-a352-3d3e8b322030?api-version=2020-12-01", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "365f5f4f77b887e9d9a86ae42c37cbe9", + "x-ms-request-id": "4b47ef0f-a792-4a27-84f1-078ee9e75f02" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebookOperationResults/b9a544a2-c8fc-4afd-a352-3d3e8b322030?api-version=2020-12-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "d14d61f06844267823bf53fee7ee9838", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -933,45 +1059,76 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:48:42 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/notebookOperationResults/d5133868-3390-44d5-908c-1fbc250c06f6?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 07:33:26 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/notebookOperationResults/b9a544a2-c8fc-4afd-a352-3d3e8b322030?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "30f586abcfa9c975571a6cec6da0a088", - "x-ms-request-id": "b88a1797-e5e1-43bb-a0ac-e2f1ee777fc1" + "x-ms-client-request-id": "d14d61f06844267823bf53fee7ee9838", + "x-ms-request-id": "c42756ff-07a5-421b-a1a1-e1e1fe72c31c" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebookOperationResults/d5133868-3390-44d5-908c-1fbc250c06f6?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebookOperationResults/b9a544a2-c8fc-4afd-a352-3d3e8b322030?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "3b69852667500cf1bb0a5fb3d3ec0895", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" ], - "x-ms-client-request-id": "8545bc510ffd238f40f034c52aac97c7", + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 30 Sep 2021 07:33:27 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/notebookOperationResults/b9a544a2-c8fc-4afd-a352-3d3e8b322030?api-version=2020-12-01", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "3b69852667500cf1bb0a5fb3d3ec0895", + "x-ms-request-id": "1623383c-df90-495e-9070-ba26de6f5470" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebookOperationResults/b9a544a2-c8fc-4afd-a352-3d3e8b322030?api-version=2020-12-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "a27d0214da70e626e63813f923eb9fea", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Content-Length": "0", - "Date": "Thu, 21 Jan 2021 17:48:43 GMT", + "Date": "Thu, 30 Sep 2021 07:33:28 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "8545bc510ffd238f40f034c52aac97c7", - "x-ms-request-id": "89867167-abfb-46a6-a5c6-cec972c1e6c4" + "x-ms-client-request-id": "a27d0214da70e626e63813f923eb9fea", + "x-ms-request-id": "e7ae338c-c963-4856-b9a4-fa6dc1cc70a9" }, "ResponseBody": [] } ], "Variables": { - "AZURE_SYNAPSE_WORKSPACE_URL": "https://workspacechhamosynapse.dev.azuresynapse.net", + "AZURE_SYNAPSE_WORKSPACE_URL": "https://testsynapseworkspace.dev.azuresynapse.net", "RandomSeed": "1766444132" } } \ No newline at end of file diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/NotebookClientLiveTests/TestRenameLinkedServiceAsync.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/NotebookClientLiveTests/TestRenameLinkedServiceAsync.json index cd1d405af171..a55e7b2d910b 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/NotebookClientLiveTests/TestRenameLinkedServiceAsync.json +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/NotebookClientLiveTests/TestRenameLinkedServiceAsync.json @@ -1,18 +1,15 @@ { "Entries": [ { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook12432614?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebooks/Notebook12432614?api-version=2020-12-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "132", "Content-Type": "application/json", - "traceparent": "00-eb23e8bca1deea499628e169122dd43b-adf9b60fffd07d4d-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "traceparent": "00-f9f1a08ffbd31340912181659af66aaf-cdd65d66cfbb9442-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "15d079b9a3424af134b977df38d3fa5a", "x-ms-return-client-request-id": "true" }, @@ -39,37 +36,34 @@ "Location", "Retry-After" ], - "Content-Length": "439", + "Content-Length": "432", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:50:28 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/notebookOperationResults/6819fe54-16ec-44e1-844f-a76290257201?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 07:34:10 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/notebookOperationResults/745d6a78-acfd-4678-8f4d-35427f6dcee4?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "15d079b9a3424af134b977df38d3fa5a", - "x-ms-request-id": "faa4acf8-e4c9-4ca5-b0a5-6d7a987f8902" + "x-ms-request-id": "12807162-96ce-4a89-96e3-40f8a1705cc3" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook12432614", - "recordId": 990821, - "state": "Creating", - "created": "2021-01-21T17:50:29.38Z", - "changed": "2021-01-21T17:50:29.38Z", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/Notebook12432614", + "recordId": 2424374, + "state": "Updating", + "created": "2021-09-30T06:19:16.1Z", + "changed": "2021-09-30T06:19:19.64Z", "type": "Notebook", "name": "Notebook12432614", - "operationId": "6819fe54-16ec-44e1-844f-a76290257201", - "artifactId": "546ab2bf-3a6d-4e29-bd48-f72786999ccc" + "operationId": "745d6a78-acfd-4678-8f4d-35427f6dcee4", + "artifactId": "52d5832e-0476-4128-8dc4-4df5ee3ab834" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebookOperationResults/6819fe54-16ec-44e1-844f-a76290257201?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebookOperationResults/745d6a78-acfd-4678-8f4d-35427f6dcee4?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ecc4824bc634e7346c06f6aa3f57a714", "x-ms-return-client-request-id": "true" }, @@ -86,27 +80,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:50:28 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/notebookOperationResults/6819fe54-16ec-44e1-844f-a76290257201?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 07:34:10 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/notebookOperationResults/745d6a78-acfd-4678-8f4d-35427f6dcee4?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "ecc4824bc634e7346c06f6aa3f57a714", - "x-ms-request-id": "978ed9cb-59d5-4f2e-b68a-a3f1545a1566" + "x-ms-request-id": "d997d886-3b21-4bcf-8196-0d8186661092" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebookOperationResults/6819fe54-16ec-44e1-844f-a76290257201?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebookOperationResults/745d6a78-acfd-4678-8f4d-35427f6dcee4?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "37fe0f776af87cafd1857a10b263ae46", "x-ms-return-client-request-id": "true" }, @@ -123,27 +114,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:50:29 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/notebookOperationResults/6819fe54-16ec-44e1-844f-a76290257201?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 07:34:12 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/notebookOperationResults/745d6a78-acfd-4678-8f4d-35427f6dcee4?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "37fe0f776af87cafd1857a10b263ae46", - "x-ms-request-id": "bd00f1ed-9760-44c3-b6c5-130729f68d3d" + "x-ms-request-id": "342bd8a3-9788-40cf-8bd6-43b18914dceb" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebookOperationResults/6819fe54-16ec-44e1-844f-a76290257201?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebookOperationResults/745d6a78-acfd-4678-8f4d-35427f6dcee4?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b6945f1a0d0e282642e81a4446fd0b43", "x-ms-return-client-request-id": "true" }, @@ -160,27 +148,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:50:31 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/notebookOperationResults/6819fe54-16ec-44e1-844f-a76290257201?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 07:34:13 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/notebookOperationResults/745d6a78-acfd-4678-8f4d-35427f6dcee4?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "b6945f1a0d0e282642e81a4446fd0b43", - "x-ms-request-id": "739cdadd-93f9-4d9e-9cf8-4cfb1b4b366a" + "x-ms-request-id": "a628be67-5b26-4ae6-bb65-960b1689eaa5" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebookOperationResults/6819fe54-16ec-44e1-844f-a76290257201?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebookOperationResults/745d6a78-acfd-4678-8f4d-35427f6dcee4?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "8c16dc8b67f0e01fd3481bae4c233509", "x-ms-return-client-request-id": "true" }, @@ -197,27 +182,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:50:32 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/notebookOperationResults/6819fe54-16ec-44e1-844f-a76290257201?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 07:34:14 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/notebookOperationResults/745d6a78-acfd-4678-8f4d-35427f6dcee4?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "8c16dc8b67f0e01fd3481bae4c233509", - "x-ms-request-id": "4dc0ac89-393c-46ed-939d-23813f11981d" + "x-ms-request-id": "6f9c7a3b-e461-45c7-a08c-4a108e78fad2" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebookOperationResults/6819fe54-16ec-44e1-844f-a76290257201?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebookOperationResults/745d6a78-acfd-4678-8f4d-35427f6dcee4?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "df8fb057f0c26905e8d5f510506a36d4", "x-ms-return-client-request-id": "true" }, @@ -234,27 +216,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:50:33 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/notebookOperationResults/6819fe54-16ec-44e1-844f-a76290257201?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 07:34:15 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/notebookOperationResults/745d6a78-acfd-4678-8f4d-35427f6dcee4?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "df8fb057f0c26905e8d5f510506a36d4", - "x-ms-request-id": "ea65795f-1f98-416b-a38a-94910b684b3b" + "x-ms-request-id": "5ff7766c-48eb-4a30-99a4-e02063966076" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebookOperationResults/6819fe54-16ec-44e1-844f-a76290257201?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebookOperationResults/745d6a78-acfd-4678-8f4d-35427f6dcee4?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d584367a224db3553fb4e3c6f278dc1e", "x-ms-return-client-request-id": "true" }, @@ -262,19 +241,16 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:50:50 GMT", + "Date": "Thu, 30 Sep 2021 07:34:16 GMT", "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Kestrel Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", "x-ms-client-request-id": "d584367a224db3553fb4e3c6f278dc1e", - "x-ms-request-id": "0ef22d0e-2f28-4166-9365-4fea170e9367" + "x-ms-request-id": "fe516fbb-92e8-4e32-a621-e3f40e3dc7de" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook12432614", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/Notebook12432614", "name": "Notebook12432614", "type": "Microsoft.Synapse/workspaces/notebooks", "properties": { @@ -294,22 +270,19 @@ "cells": [], "folder": null }, - "etag": "0e01190a-0000-0800-0000-6009beea0000" + "etag": "2e002888-0000-0100-0000-615568780000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook12432614/rename?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebooks/Notebook12432614/rename?api-version=2020-12-01", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "30", "Content-Type": "application/json", - "traceparent": "00-54f11b4d56199448a1cc447dce7505a0-8095c7861ec5b846-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "traceparent": "00-fa85fc5df196b6469dbf39616104aca8-73e29a5bf7e84449-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6d95ec11802bd79aaca41b710e8f6811", "x-ms-return-client-request-id": "true" }, @@ -326,37 +299,34 @@ "Location", "Retry-After" ], - "Content-Length": "439", + "Content-Length": "432", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:50:50 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/4cfd1304-184f-4638-8300-a2870b275b6a?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 07:34:16 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c9e21678-522e-4ff5-ab6d-c2daecf1548a?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "6d95ec11802bd79aaca41b710e8f6811", - "x-ms-request-id": "2b90e56a-47bc-4860-b9f2-19dee4325a27" + "x-ms-request-id": "1c180db3-6334-4acd-9a90-8f71bf3547ef" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook12432614", - "recordId": 990821, + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/Notebook12432614", + "recordId": 2424374, "state": "Renaming", - "created": "2021-01-21T17:50:29.38Z", - "changed": "2021-01-21T17:50:34.87Z", + "created": "2021-09-30T06:19:16.1Z", + "changed": "2021-09-30T07:34:16.14Z", "type": "Notebook", "name": "Notebook12432614", - "operationId": "4cfd1304-184f-4638-8300-a2870b275b6a", - "artifactId": "546ab2bf-3a6d-4e29-bd48-f72786999ccc" + "operationId": "c9e21678-522e-4ff5-ab6d-c2daecf1548a", + "artifactId": "52d5832e-0476-4128-8dc4-4df5ee3ab834" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/4cfd1304-184f-4638-8300-a2870b275b6a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c9e21678-522e-4ff5-ab6d-c2daecf1548a?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7d3f5dd767a1b64ee9fea07e3a413024", "x-ms-return-client-request-id": "true" }, @@ -373,27 +343,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:50:50 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/4cfd1304-184f-4638-8300-a2870b275b6a?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 07:34:16 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c9e21678-522e-4ff5-ab6d-c2daecf1548a?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "7d3f5dd767a1b64ee9fea07e3a413024", - "x-ms-request-id": "d8de2b1d-1d7a-434f-8372-c0556cd37d2c" + "x-ms-request-id": "9520ff06-dd94-49a2-a50a-c8ad90b5f2d3" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/4cfd1304-184f-4638-8300-a2870b275b6a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c9e21678-522e-4ff5-ab6d-c2daecf1548a?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "44abb57a7ec75553b73a908c728d9835", "x-ms-return-client-request-id": "true" }, @@ -410,27 +377,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:50:51 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/4cfd1304-184f-4638-8300-a2870b275b6a?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 07:34:17 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c9e21678-522e-4ff5-ab6d-c2daecf1548a?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "44abb57a7ec75553b73a908c728d9835", - "x-ms-request-id": "41e97541-4f62-4697-89ed-7651b30f04a1" + "x-ms-request-id": "a58fe2be-9f4d-4056-92ed-fa802808a48a" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/4cfd1304-184f-4638-8300-a2870b275b6a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c9e21678-522e-4ff5-ab6d-c2daecf1548a?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b19a2134eb50df70e55fb5611bb7209a", "x-ms-return-client-request-id": "true" }, @@ -447,27 +411,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:50:53 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/4cfd1304-184f-4638-8300-a2870b275b6a?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 07:34:19 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c9e21678-522e-4ff5-ab6d-c2daecf1548a?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "b19a2134eb50df70e55fb5611bb7209a", - "x-ms-request-id": "a446a4cf-5828-4866-90b9-5764f0efc15d" + "x-ms-request-id": "6a2e9ac5-dd2d-498f-931e-37015c778a05" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/4cfd1304-184f-4638-8300-a2870b275b6a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c9e21678-522e-4ff5-ab6d-c2daecf1548a?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "8993ea6e2bcc58310aeac666d6c2435c", "x-ms-return-client-request-id": "true" }, @@ -484,27 +445,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:50:54 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/4cfd1304-184f-4638-8300-a2870b275b6a?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 07:34:20 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c9e21678-522e-4ff5-ab6d-c2daecf1548a?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "8993ea6e2bcc58310aeac666d6c2435c", - "x-ms-request-id": "3fcd0372-13e0-4d3c-9d63-a431643b1723" + "x-ms-request-id": "90d15e96-7acf-4ed0-a25b-74ea2f006c61" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/4cfd1304-184f-4638-8300-a2870b275b6a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c9e21678-522e-4ff5-ab6d-c2daecf1548a?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "18496a657fa78fd444cb5f68c9f139ff", "x-ms-return-client-request-id": "true" }, @@ -521,27 +479,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:50:55 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/4cfd1304-184f-4638-8300-a2870b275b6a?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 07:34:21 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c9e21678-522e-4ff5-ab6d-c2daecf1548a?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "18496a657fa78fd444cb5f68c9f139ff", - "x-ms-request-id": "6baf430d-8001-4673-9993-a25022f24353" + "x-ms-request-id": "26e1bf47-03ad-4c64-a491-e2ff1a068890" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/4cfd1304-184f-4638-8300-a2870b275b6a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c9e21678-522e-4ff5-ab6d-c2daecf1548a?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "871df61a0efa0969f041a66524090922", "x-ms-return-client-request-id": "true" }, @@ -558,27 +513,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:50:56 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/4cfd1304-184f-4638-8300-a2870b275b6a?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 07:34:22 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c9e21678-522e-4ff5-ab6d-c2daecf1548a?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "871df61a0efa0969f041a66524090922", - "x-ms-request-id": "e18c08b2-8ae6-4c4e-bd40-d48aa46ba638" + "x-ms-request-id": "3d53ed3e-6271-466c-8a4e-3ae7daa64767" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/4cfd1304-184f-4638-8300-a2870b275b6a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c9e21678-522e-4ff5-ab6d-c2daecf1548a?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b0fb591b076deef215034500cbc98f19", "x-ms-return-client-request-id": "true" }, @@ -595,147 +547,64 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:50:57 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/4cfd1304-184f-4638-8300-a2870b275b6a?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 07:34:23 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c9e21678-522e-4ff5-ab6d-c2daecf1548a?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "b0fb591b076deef215034500cbc98f19", - "x-ms-request-id": "9646aad1-4e76-4fb1-8069-1e67f68db98e" + "x-ms-request-id": "7ff59553-1edb-47f6-a621-abe21998a9bf" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/4cfd1304-184f-4638-8300-a2870b275b6a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c9e21678-522e-4ff5-ab6d-c2daecf1548a?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "df4cc6b0bca5576201402866d96e6a3a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:50:58 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/4cfd1304-184f-4638-8300-a2870b275b6a?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "df4cc6b0bca5576201402866d96e6a3a", - "x-ms-request-id": "aa866cf8-efa6-4605-bc91-ea74edcbc640" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/4cfd1304-184f-4638-8300-a2870b275b6a?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "704c3cc189f51292042e72f6c8683d26", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:50:59 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/4cfd1304-184f-4638-8300-a2870b275b6a?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "704c3cc189f51292042e72f6c8683d26", - "x-ms-request-id": "09bfb769-1245-47e2-ad8a-09bb28d6e044" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/4cfd1304-184f-4638-8300-a2870b275b6a?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "5eb58db229bd5f7df6a4af2cdf8c15a7", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Content-Length": "0", - "Date": "Thu, 21 Jan 2021 17:51:01 GMT", + "Date": "Thu, 30 Sep 2021 07:34:24 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "5eb58db229bd5f7df6a4af2cdf8c15a7", - "x-ms-request-id": "759167d3-92d4-4787-adab-4c50cadde2e0" + "x-ms-client-request-id": "df4cc6b0bca5576201402866d96e6a3a", + "x-ms-request-id": "85b96bee-7ea6-4ad0-9d0d-ec9c7e960cb7" }, "ResponseBody": [] }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook21720213?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebooks/Notebook21720213?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-543a607e4b548e48957148365377e65b-664c18fa6a574748-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "8f3e0a991e7c2723343adb76496b8e99", + "traceparent": "00-ed2aa6fdbb0c3340ae11bba531f509b7-4b8c5e004038634e-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "704c3cc189f51292042e72f6c8683d26", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:51:01 GMT", + "Date": "Thu, 30 Sep 2021 07:34:24 GMT", "Request-Context": "appId=", - "Server": [ - "Kestrel", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Kestrel Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "8f3e0a991e7c2723343adb76496b8e99", - "x-ms-request-id": "f90b31f7-852e-452c-ab0a-f91aad3a8bf7" + "x-ms-client-request-id": "704c3cc189f51292042e72f6c8683d26", + "x-ms-request-id": "0e842785-f2ae-4a3c-85a9-4ac0a5c9cd25" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook21720213", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/Notebook21720213", "name": "Notebook21720213", "type": "Microsoft.Synapse/workspaces/notebooks", "properties": { @@ -755,21 +624,18 @@ "cells": [], "folder": null }, - "etag": "0e01941a-0000-0800-0000-6009bf030000" + "etag": "2e002c88-0000-0100-0000-6155687f0000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebooks/Notebook21720213?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebooks/Notebook21720213?api-version=2020-12-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-97b1a765d16f744fa66604e66e7f4984-6c7a9102b43e5242-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "4cb302030cb9977dbeed7951d9653277", + "traceparent": "00-57e2c3a3e66e4f4d87506b06282cfd16-450317ffa6b6d148-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "5eb58db229bd5f7df6a4af2cdf8c15a7", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -777,110 +643,33 @@ "ResponseHeaders": { "Access-Control-Allow-Headers": "Location", "Access-Control-Expose-Headers": "Location", - "Content-Length": "374", + "Content-Length": "367", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:51:01 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/notebookOperationResults/bd4c8ac2-5290-4955-bede-307138e2afea?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 07:34:24 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/notebookOperationResults/3271d276-2a03-4190-b9d0-1945ca4a7ea6?api-version=2020-12-01", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "4cb302030cb9977dbeed7951d9653277", - "x-ms-request-id": "de6fef88-2c1f-4f6c-b162-13583b405a8a" + "x-ms-client-request-id": "5eb58db229bd5f7df6a4af2cdf8c15a7", + "x-ms-request-id": "c8179daf-bc77-4398-ad1d-ce695f72d5fc" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/notebooks/Notebook21720213", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/notebooks/Notebook21720213", "recordId": 0, "state": "Deleting", "created": "0001-01-01T00:00:00", "changed": "0001-01-01T00:00:00", "type": "Notebook", "name": "Notebook21720213", - "operationId": "bd4c8ac2-5290-4955-bede-307138e2afea" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebookOperationResults/bd4c8ac2-5290-4955-bede-307138e2afea?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "dd281615c9d98dee8da6d08fa5d24dce", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:51:01 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/notebookOperationResults/bd4c8ac2-5290-4955-bede-307138e2afea?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "dd281615c9d98dee8da6d08fa5d24dce", - "x-ms-request-id": "158aff9a-ee5c-4931-9151-118e915656e1" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebookOperationResults/bd4c8ac2-5290-4955-bede-307138e2afea?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "7e5d6407d00e566f581fe22ae1fa49b7", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:51:02 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/notebookOperationResults/bd4c8ac2-5290-4955-bede-307138e2afea?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "7e5d6407d00e566f581fe22ae1fa49b7", - "x-ms-request-id": "9e105063-7925-4706-9a41-199dd4631b0d" - }, - "ResponseBody": { - "status": "InProgress" + "operationId": "3271d276-2a03-4190-b9d0-1945ca4a7ea6" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebookOperationResults/bd4c8ac2-5290-4955-bede-307138e2afea?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebookOperationResults/3271d276-2a03-4190-b9d0-1945ca4a7ea6?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "c33beed8553c4f9eddcf3082dc1aee97", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "4cb302030cb9977dbeed7951d9653277", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -896,28 +685,25 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:51:03 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/notebookOperationResults/bd4c8ac2-5290-4955-bede-307138e2afea?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 07:34:24 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/notebookOperationResults/3271d276-2a03-4190-b9d0-1945ca4a7ea6?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "c33beed8553c4f9eddcf3082dc1aee97", - "x-ms-request-id": "006b1b26-e1d1-44e9-861d-edbd600114b4" + "x-ms-client-request-id": "4cb302030cb9977dbeed7951d9653277", + "x-ms-request-id": "6ed3602d-0594-4486-9146-0b234193d579" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebookOperationResults/bd4c8ac2-5290-4955-bede-307138e2afea?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebookOperationResults/3271d276-2a03-4190-b9d0-1945ca4a7ea6?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "ea7b5b4097a8457ca6d284b9e6c3ab93", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "be5ccb18ad2993a9698e2a834e06158b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -933,45 +719,42 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:51:05 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/notebookOperationResults/bd4c8ac2-5290-4955-bede-307138e2afea?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 07:34:25 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/notebookOperationResults/3271d276-2a03-4190-b9d0-1945ca4a7ea6?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "ea7b5b4097a8457ca6d284b9e6c3ab93", - "x-ms-request-id": "4df86443-00a4-4f84-8f6c-dabca40a1bd1" + "x-ms-client-request-id": "be5ccb18ad2993a9698e2a834e06158b", + "x-ms-request-id": "17b02f29-071f-42a8-ba5e-cfeeb8e0907b" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/notebookOperationResults/bd4c8ac2-5290-4955-bede-307138e2afea?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/notebookOperationResults/3271d276-2a03-4190-b9d0-1945ca4a7ea6?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "b7b6185d8996b192c50ea13f9fec793e", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210930.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "dd281615c9d98dee8da6d08fa5d24dce", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Content-Length": "0", - "Date": "Thu, 21 Jan 2021 17:51:06 GMT", + "Date": "Thu, 30 Sep 2021 07:34:26 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "b7b6185d8996b192c50ea13f9fec793e", - "x-ms-request-id": "df48629e-8dd1-4396-9ea8-081cb0535d2d" + "x-ms-client-request-id": "dd281615c9d98dee8da6d08fa5d24dce", + "x-ms-request-id": "14155284-5726-4f12-a02e-a1e6f11da6e3" }, "ResponseBody": [] } ], "Variables": { - "AZURE_SYNAPSE_WORKSPACE_URL": "https://workspacechhamosynapse.dev.azuresynapse.net", + "AZURE_SYNAPSE_WORKSPACE_URL": "https://testsynapseworkspace.dev.azuresynapse.net", "RandomSeed": "1475206482" } } \ No newline at end of file diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/PipelineClientLiveTests/TestDeleteNotebook.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/PipelineClientLiveTests/TestDeleteNotebook.json index 19bf054c1e0d..c9e1577ce18d 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/PipelineClientLiveTests/TestDeleteNotebook.json +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/PipelineClientLiveTests/TestDeleteNotebook.json @@ -1,3362 +1,21 @@ { "Entries": [ { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline79816519?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/pipelines/Pipeline79816519?api-version=2020-12-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "17", "Content-Type": "application/json", - "traceparent": "00-a4c3a88aa7daab49bd24bcedb0fd3599-6db15ed1f0dc9d4b-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "f10c08217804b00ca45dbcae40b34cd2", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "properties": {} - }, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "439", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:51:06 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "f10c08217804b00ca45dbcae40b34cd2", - "x-ms-request-id": "dc5abdd6-8fd3-4772-9371-ca4942af404b" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline79816519", - "recordId": 990824, - "state": "Creating", - "created": "2021-01-21T17:51:06.56Z", - "changed": "2021-01-21T17:51:06.56Z", - "type": "Pipeline", - "name": "Pipeline79816519", - "operationId": "9c41f59d-c0da-4aa5-8878-cad707fc8405", - "artifactId": "641EBA81-2936-483F-A2B1-98A12662A974" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "95bd7c97a877aa1221e8b2ca255bb8ce", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:51:06 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "95bd7c97a877aa1221e8b2ca255bb8ce", - "x-ms-request-id": "e251c09b-155f-4dcf-bfe6-93de1bba30b1" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "2ca0bc2cba666fffef460b786497ee4a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:51:07 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "2ca0bc2cba666fffef460b786497ee4a", - "x-ms-request-id": "7cb3e38b-f7d0-46f5-92ce-0a06ae7c7f77" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "c317d043b7f5f75ad6f48ce7ff4da08a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:51:08 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "c317d043b7f5f75ad6f48ce7ff4da08a", - "x-ms-request-id": "979013ab-0c27-41e0-bf91-0bc39e8cab75" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "064845d4ecb8dc857c4ea5309d9a458a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:51:09 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "064845d4ecb8dc857c4ea5309d9a458a", - "x-ms-request-id": "e80fec59-db41-47a9-8a77-12b20e97e660" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "558668faf44475d861a856722e1870a2", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:51:11 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "558668faf44475d861a856722e1870a2", - "x-ms-request-id": "738fb555-dded-4b5c-8eba-beecd9be5373" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "1fa480a6e74e56924b3a46a7122a5a3b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:51:12 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "1fa480a6e74e56924b3a46a7122a5a3b", - "x-ms-request-id": "eee2f45e-d907-4e89-8fa0-47ee554d7291" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "97ed02ae4bc6df466cd3a4109613ae64", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:51:13 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "97ed02ae4bc6df466cd3a4109613ae64", - "x-ms-request-id": "1fe692e8-2e76-4542-b99a-b7169b59f2cf" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "1d8903dd26f5123bd6300a09ad316237", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:51:14 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "1d8903dd26f5123bd6300a09ad316237", - "x-ms-request-id": "74f4f2d7-6f3a-4f7d-bded-f894cf1df304" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "2cc31a4ed92b5bdb3ac4b27b4381c037", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:51:15 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "2cc31a4ed92b5bdb3ac4b27b4381c037", - "x-ms-request-id": "71aa7edd-719f-413d-8a5d-d7fa84aa33ed" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "0fcae28c3da08745c7dbc196413c313b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:51:16 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "0fcae28c3da08745c7dbc196413c313b", - "x-ms-request-id": "b5977620-dfc7-40ef-9e8a-1356ee176d28" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "7cc26d70824f0339272ee23173bfce54", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:51:17 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "7cc26d70824f0339272ee23173bfce54", - "x-ms-request-id": "67035a86-eed9-48c8-9a55-114999a58d1f" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "cb7dd27053671196d43b644f18441afd", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:51:18 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "cb7dd27053671196d43b644f18441afd", - "x-ms-request-id": "6cf41b46-8b5f-4d0d-95cb-64e1251a9119" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "d50a779243bf09e8a9c6e7715a141307", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:51:19 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "d50a779243bf09e8a9c6e7715a141307", - "x-ms-request-id": "43008a41-a862-4254-8718-e95c26399559" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "6e266c0c66bf1dd3d6b1a7131de9ebe3", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:51:21 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "6e266c0c66bf1dd3d6b1a7131de9ebe3", - "x-ms-request-id": "635227d4-4eb7-44ca-928e-a38d31bedf56" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "fc9ee514f9b42c94e97321a06b24b6bf", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:51:22 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "fc9ee514f9b42c94e97321a06b24b6bf", - "x-ms-request-id": "ca233c17-45b1-49af-a172-54a534857a1a" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "ab435d28ab1e2b3ea3ecff0e9cd5ecc0", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:51:23 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "ab435d28ab1e2b3ea3ecff0e9cd5ecc0", - "x-ms-request-id": "74ad9b98-bacd-4d49-9f8a-2902a0aeb973" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "755d04db17761352d8f9854b4533b2b1", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:51:24 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "755d04db17761352d8f9854b4533b2b1", - "x-ms-request-id": "7afc3fa7-0a13-4149-902c-e231380c2a34" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "c0ebe7fa3fa568c4a67258c8fa858f13", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:51:25 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "c0ebe7fa3fa568c4a67258c8fa858f13", - "x-ms-request-id": "cdd79f96-1605-47fd-aed3-71560324402f" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "67c5608741c710490a30d32425f3e670", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:51:26 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "67c5608741c710490a30d32425f3e670", - "x-ms-request-id": "7d7beb4a-3a74-4a21-9d25-75d16157bcc8" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "b4144d3a2cea9c1b3ff5ce03be8a1952", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:51:27 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "b4144d3a2cea9c1b3ff5ce03be8a1952", - "x-ms-request-id": "58e1ff0d-3263-4e8c-8cd8-aee09b56d48b" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "e4c371694b6db9ea9edab5756ba042b3", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:51:28 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "e4c371694b6db9ea9edab5756ba042b3", - "x-ms-request-id": "edb2e320-bd82-40b1-b4b6-af4ff9ede251" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "ac8ee88bdb715b29452927d172455280", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:51:29 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "ac8ee88bdb715b29452927d172455280", - "x-ms-request-id": "558d6cf8-452c-468d-8fe8-701465219d2a" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "b3bb8117012fee02625b161077a5309f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:51:31 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "b3bb8117012fee02625b161077a5309f", - "x-ms-request-id": "1a0b565f-2405-4092-ac44-84c679ca7e05" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "d5781bb26cfc8ee048689e4423184658", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:51:32 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "d5781bb26cfc8ee048689e4423184658", - "x-ms-request-id": "f83c0048-dfed-4429-98d8-38d6960153d9" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "ea5d34878ee48983e59f4a16c418e4a0", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:51:33 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "ea5d34878ee48983e59f4a16c418e4a0", - "x-ms-request-id": "37895c67-62d6-43c9-b7e0-311beb21003c" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "561f88f87ccdaa84a02c6bc763becb49", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:51:34 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "561f88f87ccdaa84a02c6bc763becb49", - "x-ms-request-id": "0081bc02-61c4-4353-a490-b5d9743829f6" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "4288bd14464723ba98eeef5d22cac930", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:51:35 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "4288bd14464723ba98eeef5d22cac930", - "x-ms-request-id": "9e249f16-4653-4464-8945-9522c2a2d566" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "9a4bfe83eff90b8bafb24ab823bb2627", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:51:36 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "9a4bfe83eff90b8bafb24ab823bb2627", - "x-ms-request-id": "89a2d68a-aefd-4e53-a0ca-2cad01da19f4" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "070200d3a190b258cefbbedf8c2788d5", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:51:37 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "070200d3a190b258cefbbedf8c2788d5", - "x-ms-request-id": "510b1383-be85-480f-b1b5-91aaf9fe8cf8" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "64443b6330722450317d9294fb0200dc", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:51:38 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "64443b6330722450317d9294fb0200dc", - "x-ms-request-id": "de9c6a7c-ae4b-4b4d-a94d-285a13fd507e" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "2189c8c7c1c8e19fa699ccfe31ac7e88", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:51:39 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "2189c8c7c1c8e19fa699ccfe31ac7e88", - "x-ms-request-id": "b40d3d2e-9bd6-43ac-8fb3-bf663dc98e9d" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "e854742ac277a3b5b0ddd5130ec3b6cb", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:51:41 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "e854742ac277a3b5b0ddd5130ec3b6cb", - "x-ms-request-id": "afcac084-ea9a-4d52-bdb8-f2ce7c853a2f" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "c417e1fb679da10d9b62bdd86351f385", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:51:42 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "c417e1fb679da10d9b62bdd86351f385", - "x-ms-request-id": "6d93d828-985e-4f26-ae52-2b50a1c9eff2" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "876a0afe17ad056512e671ebec8cd3e3", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:51:43 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "876a0afe17ad056512e671ebec8cd3e3", - "x-ms-request-id": "68c5db64-abfb-4a93-8121-6c424ab00699" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "4f0300e3ba94c2ea67b34d1504dc3f5e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:51:44 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "4f0300e3ba94c2ea67b34d1504dc3f5e", - "x-ms-request-id": "57eb3045-f705-4776-8703-442166dd8fb8" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "041450e92e58e31e7c12b1b7f522b50e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:51:45 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "041450e92e58e31e7c12b1b7f522b50e", - "x-ms-request-id": "1684e8c9-15ce-4ed3-b3d1-360f1eb74dbf" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "62f5da8fa44e44f11fa720f9ca500035", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:51:46 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "62f5da8fa44e44f11fa720f9ca500035", - "x-ms-request-id": "fdee5289-0f58-4111-ad13-4c6affbcd2cd" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "9c0112a6ce77b48be21fd3810832cd44", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:51:47 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "9c0112a6ce77b48be21fd3810832cd44", - "x-ms-request-id": "a24e0a49-a59a-4008-bfcb-b240c0735e76" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "2a863efedce745105ed0e4b00e24192b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:51:48 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "2a863efedce745105ed0e4b00e24192b", - "x-ms-request-id": "8c935261-a997-46b6-8bd6-de80ea2a72cd" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "e3107b121821c0974e40802ed06f3cec", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:51:49 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "e3107b121821c0974e40802ed06f3cec", - "x-ms-request-id": "60e6dbde-39d1-41fc-86d1-c1e70ed44b6a" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "8bfbdbdad6caca4e02bb3da7eadba5bd", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:51:51 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "8bfbdbdad6caca4e02bb3da7eadba5bd", - "x-ms-request-id": "6971d80b-d626-4f29-8747-7821c15eb824" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "8c6fa706ea22e523a7c5dba65be174ef", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:51:52 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "8c6fa706ea22e523a7c5dba65be174ef", - "x-ms-request-id": "571b4d50-a792-451a-bb78-644e62f1aeeb" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "33d5f7948d293c612d46e065dbefd673", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:51:53 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "33d5f7948d293c612d46e065dbefd673", - "x-ms-request-id": "3a2a1408-d638-4e49-be68-9bd55c0c7431" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "2928c39baf00f0cab715e404faa76e21", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:51:54 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "2928c39baf00f0cab715e404faa76e21", - "x-ms-request-id": "1e142dc1-ea37-4d9b-abb7-f230c2606700" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "f2134d467205799345335fdb09be09b7", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:51:55 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "f2134d467205799345335fdb09be09b7", - "x-ms-request-id": "03e461e5-b61b-44ae-93e7-f56cead7d33b" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "980b67ef4ab9e4ef2de57b13a85d4185", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:51:56 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "980b67ef4ab9e4ef2de57b13a85d4185", - "x-ms-request-id": "01f557a9-f278-4fa4-beb4-fe4832e925fa" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "8e1ebfd8e3dc286e2fafe4cd50eee6f9", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:51:57 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "8e1ebfd8e3dc286e2fafe4cd50eee6f9", - "x-ms-request-id": "612aa469-2dec-4da9-a3f1-ca42492f9552" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "93142d0cd69bfb675e2ec420f680d0e7", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:51:58 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "93142d0cd69bfb675e2ec420f680d0e7", - "x-ms-request-id": "d923c7f0-69d8-4745-a754-6d0a4beb367f" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "4a03d9f17b9f0bdaf9e2680a6622943e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:51:59 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "4a03d9f17b9f0bdaf9e2680a6622943e", - "x-ms-request-id": "9d17ef20-1c40-4967-8d88-ccd07671a04c" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "7b0782feae4802e957222fae1f4e32af", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:52:01 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "7b0782feae4802e957222fae1f4e32af", - "x-ms-request-id": "bfd02bd5-d1d4-409f-89f0-eb23a1796a66" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "77dbfcde9ceb905952089ab96d5d953b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:52:02 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "77dbfcde9ceb905952089ab96d5d953b", - "x-ms-request-id": "71956518-5ef0-4177-91fb-04e49875e08c" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "732186995478439eef01f27c4c2cecaa", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:52:03 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "732186995478439eef01f27c4c2cecaa", - "x-ms-request-id": "7a04e706-e83b-4719-a675-c79079e14119" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "692bb8b01d4762522977293f143094f9", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:52:04 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "692bb8b01d4762522977293f143094f9", - "x-ms-request-id": "ab306ba6-9dbf-4511-b111-4d3f9cdbc62a" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "9814f38dbe2d89375d9788eaa9dc4425", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:52:05 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "9814f38dbe2d89375d9788eaa9dc4425", - "x-ms-request-id": "6d040c0d-8a6a-43c0-80ee-6279b822c217" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "b508ef1c2b317cf433be49012b5e2fbe", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:52:06 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "b508ef1c2b317cf433be49012b5e2fbe", - "x-ms-request-id": "a2084f12-4aea-4db8-a66d-4850d9025c22" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "58eff86d5417f17d81a20caf9568b84d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:52:07 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "58eff86d5417f17d81a20caf9568b84d", - "x-ms-request-id": "53b3fe53-328c-48a8-b228-74f33354c4fa" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "24230333df2862c8fe98656e74365efe", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:52:08 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "24230333df2862c8fe98656e74365efe", - "x-ms-request-id": "f8421a40-85d8-4d13-a844-67a6c918870e" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "b07cc968ebecc80e7116348f1f45e7ca", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:52:09 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "b07cc968ebecc80e7116348f1f45e7ca", - "x-ms-request-id": "fad3cd45-b7a6-4d2a-8d10-27b719c109c6" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "27cefc050a3b8d95308d597eef0e7d4b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:52:11 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "27cefc050a3b8d95308d597eef0e7d4b", - "x-ms-request-id": "3bde77c0-6cf6-44f0-ad2d-af066dffa64e" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "cb470d4407eb4760f55bb312aa3843b9", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:52:12 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "cb470d4407eb4760f55bb312aa3843b9", - "x-ms-request-id": "1c3e74f7-af0d-4bf6-9c3e-390eaebb1761" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "78689ab136675dc334ef805f928fd962", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:52:13 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "78689ab136675dc334ef805f928fd962", - "x-ms-request-id": "acd988a6-0849-4f11-93d7-74271bd02a23" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "114be9991cfdfdde9c8732df5783e2f8", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:52:14 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "114be9991cfdfdde9c8732df5783e2f8", - "x-ms-request-id": "be055517-8c4a-4c01-9e38-7ca95907b964" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "54cd9f4a04a60de34ae996fc8700b465", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:52:15 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "54cd9f4a04a60de34ae996fc8700b465", - "x-ms-request-id": "a0310528-bc8c-4da7-922f-a7a93100362f" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "c178508231ec95bcbb6adce003e306b1", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:52:16 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "c178508231ec95bcbb6adce003e306b1", - "x-ms-request-id": "e0ef4fc3-154d-412c-adeb-3923325d9245" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "f215880c84c294bc053dc71385e1769b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:52:17 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "f215880c84c294bc053dc71385e1769b", - "x-ms-request-id": "1fd29205-4279-463e-bc84-ba4994bb8e4d" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "075dcdd2210a180be338983b28020a66", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:52:18 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "075dcdd2210a180be338983b28020a66", - "x-ms-request-id": "a0e8b079-6d75-43f1-8e2f-131642e3f705" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "fff0e5e3c2eafea293e4bcaf6aa80fda", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:52:20 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "fff0e5e3c2eafea293e4bcaf6aa80fda", - "x-ms-request-id": "19cb7445-0064-467c-a1b5-a5a9a64a9b26" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "360e41f4fe86eba67cfd0e8aeb816c03", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:52:21 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "360e41f4fe86eba67cfd0e8aeb816c03", - "x-ms-request-id": "9e2638fb-5e41-46a2-9783-9ffdca362380" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "9f2f603376f00fb02a5e7326645cad3b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:52:22 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "9f2f603376f00fb02a5e7326645cad3b", - "x-ms-request-id": "5bcabcac-1b84-46d1-961e-cb0afa3f21cd" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "e746be28d3f3e4df3e0582edb3181212", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:52:23 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "e746be28d3f3e4df3e0582edb3181212", - "x-ms-request-id": "df53e536-e8b1-43ea-89d4-adea1ba229ef" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "097bb87770787de990fe0c288b808620", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:52:24 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "097bb87770787de990fe0c288b808620", - "x-ms-request-id": "60422874-ce23-456a-8c44-c9c40eb13030" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "2c62d34f853a600f814b61ebf4c25c12", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:52:25 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "2c62d34f853a600f814b61ebf4c25c12", - "x-ms-request-id": "71d50f78-4a00-41f6-bd0d-2a9ce85f61da" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "abae614ba4e0b8c3d5c956f4c7b759be", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:52:26 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "abae614ba4e0b8c3d5c956f4c7b759be", - "x-ms-request-id": "3070fd4d-7412-4b61-8090-851212424afa" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "df9d627fe6b5f2d8a91b872d0ffe89cd", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:52:27 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "df9d627fe6b5f2d8a91b872d0ffe89cd", - "x-ms-request-id": "2bf5f888-e84c-42e9-87b5-0121673d454d" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "2adcf9a2dad2ab3f10aa57702e1a98c9", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:52:29 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "2adcf9a2dad2ab3f10aa57702e1a98c9", - "x-ms-request-id": "10184558-6ebb-4356-878c-00ee09acc9b4" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "916ba2f17c25655c88bc02c51c95a9d7", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:52:30 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "916ba2f17c25655c88bc02c51c95a9d7", - "x-ms-request-id": "9c7e9f10-bd54-4828-a0a4-c0e005dd588c" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "cd5288402edba5ec22f2cf0b8e67c38e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:52:31 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "cd5288402edba5ec22f2cf0b8e67c38e", - "x-ms-request-id": "9f5d90eb-0d53-43e0-8445-4416f1cdec84" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "6c3bbe82f79226a89d76a116d77a8e7a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:52:32 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "6c3bbe82f79226a89d76a116d77a8e7a", - "x-ms-request-id": "2ee82855-bd2a-423f-896e-c3b97e1b3dbe" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "a5307f01cac8c2eeb6c66f32ad51d621", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:52:33 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "a5307f01cac8c2eeb6c66f32ad51d621", - "x-ms-request-id": "7c6ceea7-aef0-434a-8b41-986c53a28f08" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "5e4273f83c594844e02c30658dd6cda7", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:52:34 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "5e4273f83c594844e02c30658dd6cda7", - "x-ms-request-id": "80359666-62c3-4402-86ea-7e2a8ddb0712" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "0f0a54641e36b7c6cf79b5cc8776794c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:52:35 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "0f0a54641e36b7c6cf79b5cc8776794c", - "x-ms-request-id": "a4ca1372-657a-4684-8d22-728ee9564d66" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "631d809f3038c4213ae8c59c9a8935e0", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:52:36 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "631d809f3038c4213ae8c59c9a8935e0", - "x-ms-request-id": "81b31c41-190e-496e-8c6a-0c52e97abfab" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "58cec8f8c747daebad8a8fe08778c16a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:52:37 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "58cec8f8c747daebad8a8fe08778c16a", - "x-ms-request-id": "710f378b-394b-46ec-8a1f-88e45475fe7c" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "0dc6e4b369b8346e3345d44e58291d46", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:52:39 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "0dc6e4b369b8346e3345d44e58291d46", - "x-ms-request-id": "d5cd95e2-0767-4483-83d4-0a6c16504777" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "bfd3d54320a8d7059443b6aea1403dc2", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:52:40 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "bfd3d54320a8d7059443b6aea1403dc2", - "x-ms-request-id": "6f73c416-5d4f-4a62-9638-719d6933788d" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "b6e95b2628c38f275a9a2501f39c8184", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:52:41 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "b6e95b2628c38f275a9a2501f39c8184", - "x-ms-request-id": "bf832dcc-0307-4e96-9b6a-c7f1eb2010de" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "b19d486c01a592c1deee7874b3bf92f3", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:52:42 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "b19d486c01a592c1deee7874b3bf92f3", - "x-ms-request-id": "dec3cc9f-6c19-4525-a042-65b42884c024" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "fd27120766401b83ad44650efb03e4f8", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:52:43 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "fd27120766401b83ad44650efb03e4f8", - "x-ms-request-id": "fd5fa488-f500-4b80-90ee-630ba0c50326" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "584231c28ca3241d9956d7d4afb3db9a", + "traceparent": "00-b9f05f60e5f0ea4191537c91bf4b6b8c-fee199dd9be54c48-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "f10c08217804b00ca45dbcae40b34cd2", "x-ms-return-client-request-id": "true" }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:52:44 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "584231c28ca3241d9956d7d4afb3db9a", - "x-ms-request-id": "50cdec8a-a686-46ec-a789-b7fd992784a3" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "e0f9320783750643c58104609cb397db", - "x-ms-return-client-request-id": "true" + "RequestBody": { + "properties": {} }, - "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { "Access-Control-Allow-Headers": [ @@ -3367,30 +26,35 @@ "Location", "Retry-After" ], - "Content-Length": "23", + "Content-Length": "431", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:52:45 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:19:20 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e6264ac0-ebf9-4c30-ab22-7e76c8ca460c?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "e0f9320783750643c58104609cb397db", - "x-ms-request-id": "bbab1104-56b6-4a52-9152-dcd6c722671e" + "x-ms-client-request-id": "f10c08217804b00ca45dbcae40b34cd2", + "x-ms-request-id": "7d77f75f-a381-4851-ae88-3e31a3b760ff" }, "ResponseBody": { - "status": "InProgress" + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/Pipeline79816519", + "recordId": 2424390, + "state": "Creating", + "created": "2021-09-30T06:19:21.4Z", + "changed": "2021-09-30T06:19:21.4Z", + "type": "Pipeline", + "name": "Pipeline79816519", + "operationId": "e6264ac0-ebf9-4c30-ab22-7e76c8ca460c", + "artifactId": "95EABB8F-DE86-42E3-B761-767FD440A76D" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e6264ac0-ebf9-4c30-ab22-7e76c8ca460c?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "81b1800a3a7d7b50f50264e98eae6bfa", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "95bd7c97a877aa1221e8b2ca255bb8ce", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -3406,28 +70,25 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:52:46 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:19:21 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e6264ac0-ebf9-4c30-ab22-7e76c8ca460c?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "81b1800a3a7d7b50f50264e98eae6bfa", - "x-ms-request-id": "18c2588c-0413-438c-9872-90c0d7ae2614" + "x-ms-client-request-id": "95bd7c97a877aa1221e8b2ca255bb8ce", + "x-ms-request-id": "95488377-2a4b-424c-bf6b-7e150ee346c2" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e6264ac0-ebf9-4c30-ab22-7e76c8ca460c?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "c907ca6803093f83ee3c922187bc88e5", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "2ca0bc2cba666fffef460b786497ee4a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -3443,72 +104,63 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:52:47 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:19:22 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e6264ac0-ebf9-4c30-ab22-7e76c8ca460c?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "c907ca6803093f83ee3c922187bc88e5", - "x-ms-request-id": "9a74c2c8-ca70-4f94-9e80-16fa4bf5212c" + "x-ms-client-request-id": "2ca0bc2cba666fffef460b786497ee4a", + "x-ms-request-id": "bdf8c47b-7898-405c-90c7-8876ba1aeae0" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/9c41f59d-c0da-4aa5-8878-cad707fc8405?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e6264ac0-ebf9-4c30-ab22-7e76c8ca460c?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "2fcafcbf5901cc1ce17eeb721e5a7717", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "c317d043b7f5f75ad6f48ce7ff4da08a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "357", + "Content-Length": "350", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:52:49 GMT", + "Date": "Thu, 30 Sep 2021 06:19:23 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "2fcafcbf5901cc1ce17eeb721e5a7717", - "x-ms-correlation-request-id": "bd3bf76a-5240-45e0-a537-fe5ac5af8ecf", - "x-ms-request-id": "6416e204-9d68-4f9a-b659-dea86a818ab8", + "x-ms-client-request-id": "c317d043b7f5f75ad6f48ce7ff4da08a", + "x-ms-correlation-request-id": "8b169964-9bc4-40b7-9d44-63d5ec0ab56c", + "x-ms-request-id": "184880ff-a9ae-4672-a63f-3df63e1282a7", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline79816519", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/Pipeline79816519", "name": "Pipeline79816519", "type": "Microsoft.Synapse/workspaces/pipelines", "properties": { - "lastPublishTime": "2021-01-21T17:52:48Z" + "lastPublishTime": "2021-09-30T06:19:22Z" }, - "etag": "0e014565-0000-0800-0000-6009bf700000" + "etag": "2e005d80-0000-0100-0000-615556ea0000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline79816519?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/pipelines/Pipeline79816519?api-version=2020-12-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-eb4047662f4bc7409f788d18130869a5-84d89f67fe6d3642-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "d1f70a15ceac06d1fd729341a72ef338", + "traceparent": "00-9207a8cee07c8741b1be305cd62cde19-82c34e65fc080047-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "064845d4ecb8dc857c4ea5309d9a458a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -3516,147 +168,33 @@ "ResponseHeaders": { "Access-Control-Allow-Headers": "Location", "Access-Control-Expose-Headers": "Location", - "Content-Length": "374", + "Content-Length": "367", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:52:49 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/305c533a-4b78-4a93-972d-03f280d3c42d?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:19:23 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e4bd1f61-fc3f-4045-9660-636a63f60fe8?api-version=2020-12-01", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "d1f70a15ceac06d1fd729341a72ef338", - "x-ms-request-id": "5cfc0f2f-2e88-4c51-a940-952220accb2c" + "x-ms-client-request-id": "064845d4ecb8dc857c4ea5309d9a458a", + "x-ms-request-id": "9e12f28e-0388-4b93-bbfd-5ca6b89c5688" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline79816519", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/Pipeline79816519", "recordId": 0, "state": "Deleting", "created": "0001-01-01T00:00:00", "changed": "0001-01-01T00:00:00", "type": "Pipeline", "name": "Pipeline79816519", - "operationId": "305c533a-4b78-4a93-972d-03f280d3c42d" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/305c533a-4b78-4a93-972d-03f280d3c42d?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "7d0b7bc4b6c4f0382bc3328ec6db24b3", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:52:49 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/305c533a-4b78-4a93-972d-03f280d3c42d?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "7d0b7bc4b6c4f0382bc3328ec6db24b3", - "x-ms-request-id": "f3b0f81f-09d4-49b8-8f1a-215113f5af54" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/305c533a-4b78-4a93-972d-03f280d3c42d?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "9ff7b28ae530d93311e82472e745eeec", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:52:50 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/305c533a-4b78-4a93-972d-03f280d3c42d?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "9ff7b28ae530d93311e82472e745eeec", - "x-ms-request-id": "62b6cc08-c916-46a9-acb3-22c5da3e4737" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/305c533a-4b78-4a93-972d-03f280d3c42d?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "2c7c00527522c474463966200a6949d2", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:52:51 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/305c533a-4b78-4a93-972d-03f280d3c42d?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "2c7c00527522c474463966200a6949d2", - "x-ms-request-id": "1a3985e5-ac68-4697-b43a-7b713ed6b03c" - }, - "ResponseBody": { - "status": "InProgress" + "operationId": "e4bd1f61-fc3f-4045-9660-636a63f60fe8" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/305c533a-4b78-4a93-972d-03f280d3c42d?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e4bd1f61-fc3f-4045-9660-636a63f60fe8?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "650133158018df6348326cdc92c609e5", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "1fa480a6e74e56924b3a46a7122a5a3b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -3672,28 +210,25 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:52:52 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/305c533a-4b78-4a93-972d-03f280d3c42d?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:19:23 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e4bd1f61-fc3f-4045-9660-636a63f60fe8?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "650133158018df6348326cdc92c609e5", - "x-ms-request-id": "1216ee3a-e692-4699-86ec-26f0f14f51a8" + "x-ms-client-request-id": "1fa480a6e74e56924b3a46a7122a5a3b", + "x-ms-request-id": "da93b41c-c4fc-4ad9-a794-67e8e1479b93" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/305c533a-4b78-4a93-972d-03f280d3c42d?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e4bd1f61-fc3f-4045-9660-636a63f60fe8?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "c63c46d5f85e14903e3359f67e12cfa7", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "97ed02ae4bc6df466cd3a4109613ae64", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -3709,28 +244,25 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:52:53 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/305c533a-4b78-4a93-972d-03f280d3c42d?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:19:24 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e4bd1f61-fc3f-4045-9660-636a63f60fe8?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "c63c46d5f85e14903e3359f67e12cfa7", - "x-ms-request-id": "de9b7beb-ff6e-4f2e-90cc-b0ed016e1951" + "x-ms-client-request-id": "97ed02ae4bc6df466cd3a4109613ae64", + "x-ms-request-id": "132b54a2-52b5-4999-9d37-c58966660fb1" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/305c533a-4b78-4a93-972d-03f280d3c42d?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e4bd1f61-fc3f-4045-9660-636a63f60fe8?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "b35c519f8844d2d39c9de3f009973280", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "1d8903dd26f5123bd6300a09ad316237", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -3746,45 +278,42 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:52:54 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/305c533a-4b78-4a93-972d-03f280d3c42d?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:19:25 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e4bd1f61-fc3f-4045-9660-636a63f60fe8?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "b35c519f8844d2d39c9de3f009973280", - "x-ms-request-id": "65f38e09-b421-44ef-afab-e6d5f765c841" + "x-ms-client-request-id": "1d8903dd26f5123bd6300a09ad316237", + "x-ms-request-id": "dc685816-d311-4e93-b7cd-4cc0862103e6" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/305c533a-4b78-4a93-972d-03f280d3c42d?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e4bd1f61-fc3f-4045-9660-636a63f60fe8?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "c34a802f832d1d73a3ec27e5276c6035", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "2cc31a4ed92b5bdb3ac4b27b4381c037", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Content-Length": "0", - "Date": "Thu, 21 Jan 2021 17:52:56 GMT", + "Date": "Thu, 30 Sep 2021 06:19:27 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "c34a802f832d1d73a3ec27e5276c6035", - "x-ms-request-id": "e4a27fac-005c-44c8-9d79-22519bf1f532" + "x-ms-client-request-id": "2cc31a4ed92b5bdb3ac4b27b4381c037", + "x-ms-request-id": "ec0caace-40d6-40e2-b87d-0614cc2da1bb" }, "ResponseBody": [] } ], "Variables": { - "AZURE_SYNAPSE_WORKSPACE_URL": "https://workspacechhamosynapse.dev.azuresynapse.net", + "AZURE_SYNAPSE_WORKSPACE_URL": "https://testsynapseworkspace.dev.azuresynapse.net", "RandomSeed": "290636425" } } \ No newline at end of file diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/PipelineClientLiveTests/TestDeleteNotebookAsync.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/PipelineClientLiveTests/TestDeleteNotebookAsync.json index 83f729d2dbe1..48eace309c8d 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/PipelineClientLiveTests/TestDeleteNotebookAsync.json +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/PipelineClientLiveTests/TestDeleteNotebookAsync.json @@ -1,18 +1,15 @@ { "Entries": [ { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline11384091?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/pipelines/Pipeline11384091?api-version=2020-12-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "17", "Content-Type": "application/json", - "traceparent": "00-6c0d4784b1abf848a2f81660433871bd-8afefa5feb76ac42-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "traceparent": "00-963cb79cb72a7d49be43d22e7c76ba50-3254f9e1601fbc45-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f70312e3f8caa7c386fb622f074178da", "x-ms-return-client-request-id": "true" }, @@ -29,37 +26,34 @@ "Location", "Retry-After" ], - "Content-Length": "449", + "Content-Length": "433", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:56:10 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/b3db8c97-6476-4905-9ffd-59eefff8bb4c?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:20:13 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/95f99f07-990d-4245-b5a2-a6a16da34bb4?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "f70312e3f8caa7c386fb622f074178da", - "x-ms-request-id": "f8ad99cf-a834-428f-9e73-2dbd5ae9331b" + "x-ms-request-id": "8548c9a0-c85b-4198-9cc1-8f48ad9810f3" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline11384091", - "recordId": 990834, + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/Pipeline11384091", + "recordId": 2424415, "state": "Creating", - "created": "2021-01-21T17:56:10.5266667Z", - "changed": "2021-01-21T17:56:10.5266667Z", + "created": "2021-09-30T06:20:14.19Z", + "changed": "2021-09-30T06:20:14.19Z", "type": "Pipeline", "name": "Pipeline11384091", - "operationId": "b3db8c97-6476-4905-9ffd-59eefff8bb4c", - "artifactId": "678B7942-4BEC-4EEC-8DD3-D64C787857E3" + "operationId": "95f99f07-990d-4245-b5a2-a6a16da34bb4", + "artifactId": "390F4BCC-B57C-443A-A4D1-865AD5C86791" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/b3db8c97-6476-4905-9ffd-59eefff8bb4c?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/95f99f07-990d-4245-b5a2-a6a16da34bb4?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "959831b306dde46fabd94bc073413d81", "x-ms-return-client-request-id": "true" }, @@ -76,27 +70,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:56:10 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/b3db8c97-6476-4905-9ffd-59eefff8bb4c?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:20:13 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/95f99f07-990d-4245-b5a2-a6a16da34bb4?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "959831b306dde46fabd94bc073413d81", - "x-ms-request-id": "3baa78fd-8e3e-4c7d-9fff-2c6b30932627" + "x-ms-request-id": "6a9044c8-7605-4937-967e-aad8297aeba3" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/b3db8c97-6476-4905-9ffd-59eefff8bb4c?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/95f99f07-990d-4245-b5a2-a6a16da34bb4?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "20994a9384acff770e9dc3c2d3378dec", "x-ms-return-client-request-id": "true" }, @@ -113,27 +104,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:56:11 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/b3db8c97-6476-4905-9ffd-59eefff8bb4c?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:20:15 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/95f99f07-990d-4245-b5a2-a6a16da34bb4?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "20994a9384acff770e9dc3c2d3378dec", - "x-ms-request-id": "0da0178d-4e8e-41f0-bbcf-a18ac393e44e" + "x-ms-request-id": "d974ddf8-a30f-4100-ad00-c7f391daac36" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/b3db8c97-6476-4905-9ffd-59eefff8bb4c?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/95f99f07-990d-4245-b5a2-a6a16da34bb4?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d57c78e4e2a8b1fde5e6ce439843f2f2", "x-ms-return-client-request-id": "true" }, @@ -141,43 +129,37 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "357", + "Content-Length": "350", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:56:12 GMT", + "Date": "Thu, 30 Sep 2021 06:20:16 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "d57c78e4e2a8b1fde5e6ce439843f2f2", - "x-ms-correlation-request-id": "324c7f51-ba06-45ef-a068-2ff721334475", - "x-ms-request-id": "c67099d1-8371-46b0-bf83-fd5ccdc5502d", + "x-ms-correlation-request-id": "82cf8725-afc7-4382-9001-192e41ea5369", + "x-ms-request-id": "08e17aa9-abb2-4e8d-9c21-b7caad125ad0", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline11384091", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/Pipeline11384091", "name": "Pipeline11384091", "type": "Microsoft.Synapse/workspaces/pipelines", "properties": { - "lastPublishTime": "2021-01-21T17:56:11Z" + "lastPublishTime": "2021-09-30T06:20:15Z" }, - "etag": "0e01c0ef-0000-0800-0000-6009c03b0000" + "etag": "2e009380-0000-0100-0000-6155571f0000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline11384091?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/pipelines/Pipeline11384091?api-version=2020-12-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-4325f8f9cf9f2444aa9e23d5bb9e6e56-9e0bc320fe90db43-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "traceparent": "00-04fd9bb92192cb4b8568d11d080ddfcd-0082730793ec9745-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "cff8a3cbf7002e3db998874043ad1174", "x-ms-return-client-request-id": "true" }, @@ -186,35 +168,32 @@ "ResponseHeaders": { "Access-Control-Allow-Headers": "Location", "Access-Control-Expose-Headers": "Location", - "Content-Length": "374", + "Content-Length": "367", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:56:12 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/88ffea41-db8a-4296-b9e0-5a14e9dcf879?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:20:16 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/b4de68ba-68ee-4f4c-ae57-d5c6c120698b?api-version=2020-12-01", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "cff8a3cbf7002e3db998874043ad1174", - "x-ms-request-id": "691f8a78-84ae-4823-8657-8665ed62fd22" + "x-ms-request-id": "2f5d927b-ce87-433e-a3bc-05e8f1570d66" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline11384091", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/Pipeline11384091", "recordId": 0, "state": "Deleting", "created": "0001-01-01T00:00:00", "changed": "0001-01-01T00:00:00", "type": "Pipeline", "name": "Pipeline11384091", - "operationId": "88ffea41-db8a-4296-b9e0-5a14e9dcf879" + "operationId": "b4de68ba-68ee-4f4c-ae57-d5c6c120698b" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/88ffea41-db8a-4296-b9e0-5a14e9dcf879?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/b4de68ba-68ee-4f4c-ae57-d5c6c120698b?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2ff7d0aabd3eecec3a4d1c0f5abc6d37", "x-ms-return-client-request-id": "true" }, @@ -231,45 +210,76 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:56:12 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/88ffea41-db8a-4296-b9e0-5a14e9dcf879?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:20:16 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/b4de68ba-68ee-4f4c-ae57-d5c6c120698b?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "2ff7d0aabd3eecec3a4d1c0f5abc6d37", - "x-ms-request-id": "3a8bede7-3bd2-45a1-b4f6-2f2988d3fa9b" + "x-ms-request-id": "38f927be-5316-4375-a76c-2f3df8153290" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/88ffea41-db8a-4296-b9e0-5a14e9dcf879?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/b4de68ba-68ee-4f4c-ae57-d5c6c120698b?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "39f75ad5f767632dca468118bd777885", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 30 Sep 2021 06:20:17 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/b4de68ba-68ee-4f4c-ae57-d5c6c120698b?api-version=2020-12-01", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "39f75ad5f767632dca468118bd777885", + "x-ms-request-id": "4c80bee9-cfba-445d-8502-a634c9463c18" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/b4de68ba-68ee-4f4c-ae57-d5c6c120698b?api-version=2020-12-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "7396bc30e1b68e3572f0c0774bc95691", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Content-Length": "0", - "Date": "Thu, 21 Jan 2021 17:56:14 GMT", + "Date": "Thu, 30 Sep 2021 06:20:18 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "39f75ad5f767632dca468118bd777885", - "x-ms-request-id": "4f0842ca-4ca9-4666-9f22-7e6520dc7052" + "x-ms-client-request-id": "7396bc30e1b68e3572f0c0774bc95691", + "x-ms-request-id": "4540ed41-2887-418c-b6a8-d64af0ecf13d" }, "ResponseBody": [] } ], "Variables": { - "AZURE_SYNAPSE_WORKSPACE_URL": "https://workspacechhamosynapse.dev.azuresynapse.net", + "AZURE_SYNAPSE_WORKSPACE_URL": "https://testsynapseworkspace.dev.azuresynapse.net", "RandomSeed": "1891247206" } } \ No newline at end of file diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/PipelineClientLiveTests/TestGetPipeline.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/PipelineClientLiveTests/TestGetPipeline.json index d3ece39d0a2a..5f1550a7c3ff 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/PipelineClientLiveTests/TestGetPipeline.json +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/PipelineClientLiveTests/TestGetPipeline.json @@ -1,18 +1,15 @@ { "Entries": [ { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline17076005?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/pipelines/Pipeline17076005?api-version=2020-12-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "17", "Content-Type": "application/json", - "traceparent": "00-629e3c22f26da445812b54f9f0315447-c110612790b79543-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "traceparent": "00-108bcfe792b68c4caecfbc382b10b3ca-122e84e45f0e0c46-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "beec20ab6ba9287d3b090d1f41947256", "x-ms-return-client-request-id": "true" }, @@ -29,37 +26,34 @@ "Location", "Retry-After" ], - "Content-Length": "439", + "Content-Length": "443", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:11 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/5bd99b6f-61b9-47d3-8500-d83157e4f8c9?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:19:27 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/0cabb946-3ce9-478f-b806-84152d1dccdc?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "beec20ab6ba9287d3b090d1f41947256", - "x-ms-request-id": "b404c349-af2b-41c6-9f45-49026ff66d3a" + "x-ms-request-id": "bfbe2a31-245c-4aed-9cad-f2dfffd41541" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline17076005", - "recordId": 990957, + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/Pipeline17076005", + "recordId": 2424391, "state": "Creating", - "created": "2021-01-21T18:32:11.63Z", - "changed": "2021-01-21T18:32:11.63Z", + "created": "2021-09-30T06:19:27.5433333Z", + "changed": "2021-09-30T06:19:27.5433333Z", "type": "Pipeline", "name": "Pipeline17076005", - "operationId": "5bd99b6f-61b9-47d3-8500-d83157e4f8c9", - "artifactId": "F0654DD8-47F7-4215-AB99-C9115F0C684A" + "operationId": "0cabb946-3ce9-478f-b806-84152d1dccdc", + "artifactId": "DBA5070C-82C3-41F8-9A0D-7F21FA69D8C9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/5bd99b6f-61b9-47d3-8500-d83157e4f8c9?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/0cabb946-3ce9-478f-b806-84152d1dccdc?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5454ea7e20c533b3b232cda90e5b46d5", "x-ms-return-client-request-id": "true" }, @@ -76,27 +70,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:11 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/5bd99b6f-61b9-47d3-8500-d83157e4f8c9?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:19:27 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/0cabb946-3ce9-478f-b806-84152d1dccdc?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "5454ea7e20c533b3b232cda90e5b46d5", - "x-ms-request-id": "cda6913e-b1a5-452b-91b4-161c635251e4" + "x-ms-request-id": "66331c13-1d6d-40e9-98f8-f6b78446f4eb" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/5bd99b6f-61b9-47d3-8500-d83157e4f8c9?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/0cabb946-3ce9-478f-b806-84152d1dccdc?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "834c50a0354d0eb9e65f22542591bebb", "x-ms-return-client-request-id": "true" }, @@ -111,6144 +102,1899 @@ "Location", "Retry-After" ], + "Connection": "close", "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:12 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/5bd99b6f-61b9-47d3-8500-d83157e4f8c9?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:19:28 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/0cabb946-3ce9-478f-b806-84152d1dccdc?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "834c50a0354d0eb9e65f22542591bebb", - "x-ms-request-id": "1e0dc1b1-d7b4-427a-bc83-65a5cec601cf" + "x-ms-request-id": "78f71be6-b213-4a7e-bdd5-fa49a51863a8" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/5bd99b6f-61b9-47d3-8500-d83157e4f8c9?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/0cabb946-3ce9-478f-b806-84152d1dccdc?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "56a1ac631e403d90b924fcabcf907e40", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:13 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/5bd99b6f-61b9-47d3-8500-d83157e4f8c9?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "56a1ac631e403d90b924fcabcf907e40", - "x-ms-request-id": "11a756a5-8791-4bfd-91c3-c6c721ea3fd1" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/5bd99b6f-61b9-47d3-8500-d83157e4f8c9?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "194a700e2333481330456d66fd5e0e20", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:15 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/5bd99b6f-61b9-47d3-8500-d83157e4f8c9?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "194a700e2333481330456d66fd5e0e20", - "x-ms-request-id": "0fd83a66-2432-4faa-b2e1-1538eb4c4714" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/5bd99b6f-61b9-47d3-8500-d83157e4f8c9?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "62461274efba8294bf0ec928390e3e56", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:16 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/5bd99b6f-61b9-47d3-8500-d83157e4f8c9?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "62461274efba8294bf0ec928390e3e56", - "x-ms-request-id": "c4ae7be3-d621-4fff-b738-341dec158e29" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/5bd99b6f-61b9-47d3-8500-d83157e4f8c9?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "b445e2e1a4473f87985825fab02a3f5a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:17 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/5bd99b6f-61b9-47d3-8500-d83157e4f8c9?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "b445e2e1a4473f87985825fab02a3f5a", - "x-ms-request-id": "e9af5f65-11b8-40de-a2f1-ddb17ea24bb2" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/5bd99b6f-61b9-47d3-8500-d83157e4f8c9?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "bd37dc161b4a1f85dbc85a255aeb0f21", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "357", + "Content-Length": "350", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:18 GMT", + "Date": "Thu, 30 Sep 2021 06:19:30 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "bd37dc161b4a1f85dbc85a255aeb0f21", - "x-ms-correlation-request-id": "f348d880-3787-4ed1-b50c-c481e095b903", - "x-ms-request-id": "f9d97dad-0393-4aba-8c28-880fcbc795d9", + "x-ms-client-request-id": "56a1ac631e403d90b924fcabcf907e40", + "x-ms-correlation-request-id": "6ea0fbca-c15f-48f4-89ba-d4e7b1666afa", + "x-ms-request-id": "4a3e712a-6dbe-4788-ab6f-4d6d0c567474", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline17076005", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/Pipeline17076005", "name": "Pipeline17076005", "type": "Microsoft.Synapse/workspaces/pipelines", "properties": { - "lastPublishTime": "2021-01-21T18:32:17Z" + "lastPublishTime": "2021-09-30T06:19:29Z" }, - "etag": "140194c6-0000-0800-0000-6009c8b10000" + "etag": "2e006380-0000-0100-0000-615556f10000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/pipelines?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-50045ef7ce7e654d83773eabfabbba5a-45e55d2bfaa0094a-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "1a8517075a19cfd98a06ca61c99ad195", + "traceparent": "00-f41b4e1c50f5ac4b8d81e57c312ec1eb-1311c2526e9a2a45-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "194a700e2333481330456d66fd5e0e20", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Content-Length": "18287", + "Content-Length": "13193", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:18 GMT", + "Date": "Thu, 30 Sep 2021 06:19:30 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "1a8517075a19cfd98a06ca61c99ad195", - "x-ms-request-id": "e9b3d9bb-4cb9-4348-a104-20e1e36d28b3" + "x-ms-client-request-id": "194a700e2333481330456d66fd5e0e20", + "x-ms-request-id": "1ef8ecee-a62b-446a-9c40-08c45615f0fa" }, "ResponseBody": { "value": [ { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1764361910", - "name": "Pipeline1764361910", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "f6018f22-0000-0800-0000-5fd259270000", - "properties": { - "lastPublishTime": "2020-12-10T17:21:43Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline2107615627", - "name": "Pipeline2107615627", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "f6013eaf-0000-0800-0000-5fd25e260000", - "properties": { - "lastPublishTime": "2020-12-10T17:43:02Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1857260053", - "name": "Pipeline1857260053", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "f7011c35-0000-0800-0000-5fd263320000", - "properties": { - "lastPublishTime": "2020-12-10T18:04:34Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1876419613", - "name": "Pipeline1876419613", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "f7012e9b-0000-0800-0000-5fd266de0000", - "properties": { - "lastPublishTime": "2020-12-10T18:20:14Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1740477251", - "name": "Pipeline1740477251", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "62028798-0000-0800-0000-5fd797820000", - "properties": { - "lastPublishTime": "2020-12-14T16:49:06Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1905362346", - "name": "Pipeline1905362346", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "830225fc-0000-0800-0000-5fd8d3e90000", - "properties": { - "lastPublishTime": "2020-12-15T15:19:05Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1609882431", - "name": "Pipeline1609882431", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "83028ffe-0000-0800-0000-5fd8d3fb0000", - "properties": { - "lastPublishTime": "2020-12-15T15:19:23Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1961982223", - "name": "Pipeline1961982223", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "8402a536-0000-0800-0000-5fd8d5a20000", - "properties": { - "lastPublishTime": "2020-12-15T15:26:26Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1387939708", - "name": "Pipeline1387939708", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "84025338-0000-0800-0000-5fd8d5ae0000", - "properties": { - "lastPublishTime": "2020-12-15T15:26:38Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline83733385", - "name": "Pipeline83733385", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "8402ff5c-0000-0800-0000-5fd8d6cb0000", - "properties": { - "lastPublishTime": "2020-12-15T15:31:23Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline946829669", - "name": "Pipeline946829669", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "8402bb5e-0000-0800-0000-5fd8d6d80000", - "properties": { - "lastPublishTime": "2020-12-15T15:31:36Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1325869023", - "name": "Pipeline1325869023", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "87021bb7-0000-0800-0000-5fd8f1620000", - "properties": { - "lastPublishTime": "2020-12-15T17:24:50Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline2043656390", - "name": "Pipeline2043656390", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "870225b9-0000-0800-0000-5fd8f1730000", - "properties": { - "lastPublishTime": "2020-12-15T17:25:07Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline169494837", - "name": "Pipeline169494837", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "8702afd7-0000-0800-0000-5fd8f2630000", - "properties": { - "lastPublishTime": "2020-12-15T17:29:07Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline435107315", - "name": "Pipeline435107315", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "87024eda-0000-0800-0000-5fd8f2780000", - "properties": { - "lastPublishTime": "2020-12-15T17:29:28Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline481261475", - "name": "Pipeline481261475", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "8702ccfa-0000-0800-0000-5fd8f3820000", - "properties": { - "lastPublishTime": "2020-12-15T17:33:54Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline533552945", - "name": "Pipeline533552945", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "87023efd-0000-0800-0000-5fd8f3930000", - "properties": { - "lastPublishTime": "2020-12-15T17:34:11Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline204413031", - "name": "Pipeline204413031", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "88026568-0000-0800-0000-5fd8f6f70000", - "properties": { - "lastPublishTime": "2020-12-15T17:48:39Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1515724574", - "name": "Pipeline1515724574", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "8802b56a-0000-0800-0000-5fd8f70a0000", - "properties": { - "lastPublishTime": "2020-12-15T17:48:58Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline2050037960", - "name": "Pipeline2050037960", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "88026589-0000-0800-0000-5fd8f81b0000", - "properties": { - "lastPublishTime": "2020-12-15T17:53:31Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1519978047", - "name": "Pipeline1519978047", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "8802c98b-0000-0800-0000-5fd8f82f0000", - "properties": { - "lastPublishTime": "2020-12-15T17:53:51Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1262198528", - "name": "Pipeline1262198528", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "8802c8ae-0000-0800-0000-5fd8f9480000", - "properties": { - "lastPublishTime": "2020-12-15T17:58:32Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1607934098", - "name": "Pipeline1607934098", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "8802d1af-0000-0800-0000-5fd8f9520000", - "properties": { - "lastPublishTime": "2020-12-15T17:58:42Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline676567357", - "name": "Pipeline676567357", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "42007e6d-0000-0800-0000-5fda86d30000", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/Pipeline 1", + "name": "Pipeline 1", + "type": "Microsoft.Synapse/workspaces/pipelines", + "etag": "c200c28a-0000-0100-0000-5fd320470000", + "properties": { + "activities": [ + { + "name": "Notebook1", + "type": "SynapseNotebook", + "dependsOn": [], + "policy": { + "timeout": "7.00:00:00", + "retry": 0, + "retryIntervalInSeconds": 30, + "secureOutput": false, + "secureInput": false + }, + "userProperties": [], + "typeProperties": { + "notebook": { + "referenceName": "Notebook 1", + "type": "NotebookReference" + } + } + }, + { + "name": "Dataflow1", + "type": "ExecuteDataFlow", + "dependsOn": [], + "policy": { + "timeout": "7.00:00:00", + "retry": 0, + "retryIntervalInSeconds": 30, + "secureOutput": false, + "secureInput": false + }, + "userProperties": [], + "typeProperties": { + "dataflow": { + "referenceName": "Dataflow1", + "type": "DataFlowReference", + "parameters": {}, + "datasetParameters": { + "source1": {}, + "sink1": {} + } + }, + "staging": {}, + "compute": { + "coreCount": 8, + "computeType": "General" + }, + "traceLevel": "Fine" + } + } + ], + "annotations": [], + "lastPublishTime": "2020-12-11T07:31:19Z" + } + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/dongwwa_pipeline_8572", + "name": "dongwwa_pipeline_8572", + "type": "Microsoft.Synapse/workspaces/pipelines", + "etag": "300020f3-0000-0100-0000-5efb3f8b0000", + "properties": { + "description": "testDescription", + "activities": [], + "parameters": { + "dongwwatest": { + "type": "Array" + } + }, + "lastPublishTime": "2020-06-30T13:35:07Z" + } + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/dongwwa_pipeline_6637", + "name": "dongwwa_pipeline_6637", + "type": "Microsoft.Synapse/workspaces/pipelines", + "etag": "30003ef4-0000-0100-0000-5efb3fa20000", "properties": { - "lastPublishTime": "2020-12-16T22:14:43Z" + "description": "testDescription", + "activities": [], + "parameters": { + "dongwwatest": { + "type": "Array" + } + }, + "lastPublishTime": "2020-06-30T13:35:30Z" } }, { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline2031314261", - "name": "Pipeline2031314261", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/dongwwa_pipeline_5633", + "name": "dongwwa_pipeline_5633", "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "42003d72-0000-0800-0000-5fda86e70000", + "etag": "300009ff-0000-0100-0000-5efb407e0000", "properties": { - "lastPublishTime": "2020-12-16T22:15:03Z" + "description": "testDescription", + "activities": [], + "parameters": { + "dongwwatest": { + "type": "Array" + } + }, + "lastPublishTime": "2020-06-30T13:39:10Z" } }, { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1714988960", - "name": "Pipeline1714988960", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/dongwwa_pipeline_6157", + "name": "dongwwa_pipeline_6157", "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "42009cb7-0000-0800-0000-5fda87f10000", + "etag": "3100578a-0000-0100-0000-5efb507b0000", "properties": { - "lastPublishTime": "2020-12-16T22:19:29Z" + "description": "testDescription", + "activities": [], + "parameters": { + "dongwwatest": { + "type": "Array" + } + }, + "lastPublishTime": "2020-06-30T14:47:23Z" } }, { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1259315615", - "name": "Pipeline1259315615", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/dongwwa_pipeline_8864", + "name": "dongwwa_pipeline_8864", "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "42001bbc-0000-0800-0000-5fda88020000", + "etag": "3100068c-0000-0100-0000-5efb50af0000", "properties": { - "lastPublishTime": "2020-12-16T22:19:46Z" + "description": "testDescription", + "activities": [], + "parameters": { + "dongwwatest": { + "type": "Array" + } + }, + "lastPublishTime": "2020-06-30T14:48:15Z" } }, { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1236576079", - "name": "Pipeline1236576079", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/MyPipeline", + "name": "MyPipeline", "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "420081f9-0000-0800-0000-5fda88f50000", + "etag": "0000752a-0000-0100-0000-5f8042520000", "properties": { - "lastPublishTime": "2020-12-16T22:23:49Z" + "lastPublishTime": "2020-10-09T10:58:26Z" } }, { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline485344534", - "name": "Pipeline485344534", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/dongwwa_pipeline_0651", + "name": "dongwwa_pipeline_0651", "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "4200c2fe-0000-0800-0000-5fda890b0000", - "properties": { - "lastPublishTime": "2020-12-16T22:24:11Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline426580370", - "name": "Pipeline426580370", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "790023aa-0000-0800-0000-5fdbaf9f0000", - "properties": { - "lastPublishTime": "2020-12-17T19:21:03Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline846919427", - "name": "Pipeline846919427", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "79009cb0-0000-0800-0000-5fdbafb20000", - "properties": { - "lastPublishTime": "2020-12-17T19:21:22Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline403400646", - "name": "Pipeline403400646", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "7a005c06-0000-0800-0000-5fdbb0a60000", - "properties": { - "lastPublishTime": "2020-12-17T19:25:26Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline731098520", - "name": "Pipeline731098520", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "7a00cd0e-0000-0800-0000-5fdbb0bd0000", - "properties": { - "lastPublishTime": "2020-12-17T19:25:49Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline361470053", - "name": "Pipeline361470053", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "7a003373-0000-0800-0000-5fdbb1c40000", - "properties": { - "lastPublishTime": "2020-12-17T19:30:12Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1885848639", - "name": "Pipeline1885848639", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "7a00747a-0000-0800-0000-5fdbb1d50000", - "properties": { - "lastPublishTime": "2020-12-17T19:30:29Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline2015250014", - "name": "Pipeline2015250014", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "12006f9b-0000-0800-0000-5fdcc7ef0000", - "properties": { - "lastPublishTime": "2020-12-18T15:17:03Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1958105182", - "name": "Pipeline1958105182", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "1200859d-0000-0800-0000-5fdcc8010000", - "properties": { - "lastPublishTime": "2020-12-18T15:17:21Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline709448218", - "name": "Pipeline709448218", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "12005fd8-0000-0800-0000-5fdcc9e60000", - "properties": { - "lastPublishTime": "2020-12-18T15:25:26Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1370318582", - "name": "Pipeline1370318582", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "12003ddb-0000-0800-0000-5fdcc9f70000", - "properties": { - "lastPublishTime": "2020-12-18T15:25:43Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline285873936", - "name": "Pipeline285873936", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "13001007-0000-0800-0000-5fdccb840000", - "properties": { - "lastPublishTime": "2020-12-18T15:32:20Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1524730390", - "name": "Pipeline1524730390", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "13009409-0000-0800-0000-5fdccb9c0000", - "properties": { - "lastPublishTime": "2020-12-18T15:32:44Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1151422564", - "name": "Pipeline1151422564", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "1400b9ff-0000-0800-0000-5fdcdd420000", - "properties": { - "lastPublishTime": "2020-12-18T16:48:02Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1911534615", - "name": "Pipeline1911534615", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "15005501-0000-0800-0000-5fdcdd520000", - "properties": { - "lastPublishTime": "2020-12-18T16:48:18Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1175029344", - "name": "Pipeline1175029344", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "1500e81e-0000-0800-0000-5fdcde5d0000", - "properties": { - "lastPublishTime": "2020-12-18T16:52:45Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline836738180", - "name": "Pipeline836738180", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "1500c020-0000-0800-0000-5fdcde6d0000", - "properties": { - "lastPublishTime": "2020-12-18T16:53:01Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1365315171", - "name": "Pipeline1365315171", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "1500a941-0000-0800-0000-5fdcdf7e0000", - "properties": { - "lastPublishTime": "2020-12-18T16:57:34Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline941345213", - "name": "Pipeline941345213", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "1500c543-0000-0800-0000-5fdcdf8e0000", - "properties": { - "lastPublishTime": "2020-12-18T16:57:50Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline546860755", - "name": "Pipeline546860755", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "1500d1f4-0000-0800-0000-5fdce5c20000", - "properties": { - "lastPublishTime": "2020-12-18T17:24:18Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline575832323", - "name": "Pipeline575832323", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "15000bf7-0000-0800-0000-5fdce5d60000", - "properties": { - "lastPublishTime": "2020-12-18T17:24:38Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1629474829", - "name": "Pipeline1629474829", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "16002a18-0000-0800-0000-5fdce6f50000", - "properties": { - "lastPublishTime": "2020-12-18T17:29:25Z" - } - } - ], - "nextLink": "https://workspacechhamosynapse.dev.azuresynapse.net:443/pipelines?api-version=2019-06-01-preview\u0026%24skipToken=%2BRID%3A%7ESl8ZAKxwhACBVgAAAAD8BA%3D%3D%23RT%3A1%23TRC%3A50%23ISV%3A2%23IEO%3A65551%23QCF%3A1" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines?api-version=2019-06-01-preview\u0026%24skipToken=%2BRID%3A~Sl8ZAKxwhACBVgAAAAD8BA%3D%3D%23RT%3A1%23TRC%3A50%23ISV%3A2%23IEO%3A65551%23QCF%3A1", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-b8df6b5386663f4c971e6208592eb611-5bf3940c05ef2846-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "5c116ece81d7c50b5d26d87e4a62e4ad", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Length": "18284", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:18 GMT", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "5c116ece81d7c50b5d26d87e4a62e4ad", - "x-ms-request-id": "7262a94d-fee9-4f28-b6ca-188c8c70bdd6" - }, - "ResponseBody": { - "value": [ - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline689712987", - "name": "Pipeline689712987", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "1600c11f-0000-0800-0000-5fdce7360000", - "properties": { - "lastPublishTime": "2020-12-18T17:30:30Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline585240566", - "name": "Pipeline585240566", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "16001843-0000-0800-0000-5fdce8770000", - "properties": { - "lastPublishTime": "2020-12-18T17:35:51Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1463431359", - "name": "Pipeline1463431359", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "16005145-0000-0800-0000-5fdce88a0000", - "properties": { - "lastPublishTime": "2020-12-18T17:36:10Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline142427005", - "name": "Pipeline142427005", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "9400db5d-0000-0800-0000-5fe0ce910000", - "properties": { - "lastPublishTime": "2020-12-21T16:34:25Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline2113438296", - "name": "Pipeline2113438296", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "94002669-0000-0800-0000-5fe0cea30000", - "properties": { - "lastPublishTime": "2020-12-21T16:34:43Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1863241518", - "name": "Pipeline1863241518", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "95000d5d-0000-0800-0000-5fe0d06e0000", - "properties": { - "lastPublishTime": "2020-12-21T16:42:22Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline887403503", - "name": "Pipeline887403503", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "95007d6b-0000-0800-0000-5fe0d0880000", - "properties": { - "lastPublishTime": "2020-12-21T16:42:48Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline310693596", - "name": "Pipeline310693596", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "96000442-0000-0800-0000-5fe0d1fb0000", - "properties": { - "lastPublishTime": "2020-12-21T16:48:59Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1741897570", - "name": "Pipeline1741897570", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "96000a4e-0000-0800-0000-5fe0d2130000", - "properties": { - "lastPublishTime": "2020-12-21T16:49:23Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline957622854", - "name": "Pipeline957622854", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "b300e937-0000-0800-0000-5fe109240000", - "properties": { - "lastPublishTime": "2020-12-21T20:44:20Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline2077048772", - "name": "Pipeline2077048772", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "b300903d-0000-0800-0000-5fe109320000", - "properties": { - "lastPublishTime": "2020-12-21T20:44:34Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline851082303", - "name": "Pipeline851082303", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "b400e001-0000-0800-0000-5fe10b250000", - "properties": { - "lastPublishTime": "2020-12-21T20:52:53Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1750442906", - "name": "Pipeline1750442906", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "b400760a-0000-0800-0000-5fe10b390000", - "properties": { - "lastPublishTime": "2020-12-21T20:53:13Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline173146615", - "name": "Pipeline173146615", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "b400adc2-0000-0800-0000-5fe10ce50000", - "properties": { - "lastPublishTime": "2020-12-21T21:00:21Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1984196211", - "name": "Pipeline1984196211", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "b40020cb-0000-0800-0000-5fe10cf50000", - "properties": { - "lastPublishTime": "2020-12-21T21:00:37Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline537708951", - "name": "Pipeline537708951", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "b800c116-0000-0800-0000-5fe114ef0000", - "properties": { - "lastPublishTime": "2020-12-21T21:34:39Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1479158253", - "name": "Pipeline1479158253", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "b8004720-0000-0800-0000-5fe115080000", - "properties": { - "lastPublishTime": "2020-12-21T21:35:04Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1715617179", - "name": "Pipeline1715617179", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "b80091ee-0000-0800-0000-5fe117310000", - "properties": { - "lastPublishTime": "2020-12-21T21:44:17Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline828820192", - "name": "Pipeline828820192", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "b800eff5-0000-0800-0000-5fe117450000", - "properties": { - "lastPublishTime": "2020-12-21T21:44:37Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline548580191", - "name": "Pipeline548580191", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "b9006f83-0000-0800-0000-5fe118ce0000", - "properties": { - "lastPublishTime": "2020-12-21T21:51:10Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1130547557", - "name": "Pipeline1130547557", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "b9006b8b-0000-0800-0000-5fe118e40000", - "properties": { - "lastPublishTime": "2020-12-21T21:51:32Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1108413193", - "name": "Pipeline1108413193", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "000088ed-0000-0800-0000-5fe259cb0000", - "properties": { - "lastPublishTime": "2020-12-22T20:40:43Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1470104174", - "name": "Pipeline1470104174", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "0000b7ed-0000-0800-0000-5fe259de0000", - "properties": { - "lastPublishTime": "2020-12-22T20:41:02Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1719665946", - "name": "Pipeline1719665946", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "000065f5-0000-0800-0000-5fe25bfd0000", - "properties": { - "lastPublishTime": "2020-12-22T20:50:05Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline760779103", - "name": "Pipeline760779103", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "0000c3f5-0000-0800-0000-5fe25c120000", - "properties": { - "lastPublishTime": "2020-12-22T20:50:26Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline263155253", - "name": "Pipeline263155253", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "000046fa-0000-0800-0000-5fe25db90000", - "properties": { - "lastPublishTime": "2020-12-22T20:57:29Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1186264083", - "name": "Pipeline1186264083", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "00007dfa-0000-0800-0000-5fe25dcf0000", - "properties": { - "lastPublishTime": "2020-12-22T20:57:51Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline947795739", - "name": "Pipeline947795739", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "03005478-0000-0800-0000-5fe38a1b0000", - "properties": { - "lastPublishTime": "2020-12-23T18:19:07Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline947006839", - "name": "Pipeline947006839", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "03008678-0000-0800-0000-5fe38a2d0000", - "properties": { - "lastPublishTime": "2020-12-23T18:19:25Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1075747870", - "name": "Pipeline1075747870", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "03002f81-0000-0800-0000-5fe38d6d0000", - "properties": { - "lastPublishTime": "2020-12-23T18:33:17Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline611082881", - "name": "Pipeline611082881", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "03006c81-0000-0800-0000-5fe38d810000", - "properties": { - "lastPublishTime": "2020-12-23T18:33:37Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1157686718", - "name": "Pipeline1157686718", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "0300178c-0000-0800-0000-5fe391200000", - "properties": { - "lastPublishTime": "2020-12-23T18:49:04Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline651612725", - "name": "Pipeline651612725", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "0300428c-0000-0800-0000-5fe391360000", - "properties": { - "lastPublishTime": "2020-12-23T18:49:26Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1261734494", - "name": "Pipeline1261734494", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "03001996-0000-0800-0000-5fe394560000", - "properties": { - "lastPublishTime": "2020-12-23T19:02:46Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1955846061", - "name": "Pipeline1955846061", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "03006c96-0000-0800-0000-5fe394720000", - "properties": { - "lastPublishTime": "2020-12-23T19:03:14Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1743905488", - "name": "Pipeline1743905488", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "0300db9e-0000-0800-0000-5fe3976d0000", - "properties": { - "lastPublishTime": "2020-12-23T19:15:57Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline269842666", - "name": "Pipeline269842666", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "0300159f-0000-0800-0000-5fe397830000", - "properties": { - "lastPublishTime": "2020-12-23T19:16:19Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1836727375", - "name": "Pipeline1836727375", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "030081a7-0000-0800-0000-5fe39a690000", - "properties": { - "lastPublishTime": "2020-12-23T19:28:41Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline2025138465", - "name": "Pipeline2025138465", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "0300d1a7-0000-0800-0000-5fe39a830000", - "properties": { - "lastPublishTime": "2020-12-23T19:29:07Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline495811967", - "name": "Pipeline495811967", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "03008ab3-0000-0800-0000-5fe39e940000", - "properties": { - "lastPublishTime": "2020-12-23T19:46:28Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1133402875", - "name": "Pipeline1133402875", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "030043b4-0000-0800-0000-5fe39ea80000", - "properties": { - "lastPublishTime": "2020-12-23T19:46:48Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline602155748", - "name": "Pipeline602155748", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "030088c5-0000-0800-0000-5fe3a4340000", - "properties": { - "lastPublishTime": "2020-12-23T20:10:28Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline947148473", - "name": "Pipeline947148473", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "0300d8c5-0000-0800-0000-5fe3a4520000", - "properties": { - "lastPublishTime": "2020-12-23T20:10:58Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1567819041", - "name": "Pipeline1567819041", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "03002ed4-0000-0800-0000-5fe3a8dd0000", - "properties": { - "lastPublishTime": "2020-12-23T20:30:21Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline2065174593", - "name": "Pipeline2065174593", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "03006ed4-0000-0800-0000-5fe3a8f40000", - "properties": { - "lastPublishTime": "2020-12-23T20:30:44Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1380849574", - "name": "Pipeline1380849574", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "0807506f-0000-0800-0000-6000c4c60000", - "properties": { - "lastPublishTime": "2021-01-14T22:25:10Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1007302775", - "name": "Pipeline1007302775", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "08074880-0000-0800-0000-6000c4dc0000", - "properties": { - "lastPublishTime": "2021-01-14T22:25:32Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline280500725", - "name": "Pipeline280500725", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "c5074d53-0000-0800-0000-6001c1770000", - "properties": { - "lastPublishTime": "2021-01-15T16:23:19Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1956491908", - "name": "Pipeline1956491908", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "c5077964-0000-0800-0000-6001c18e0000", - "properties": { - "lastPublishTime": "2021-01-15T16:23:42Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline209330562", - "name": "Pipeline209330562", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "d90701d0-0000-0800-0000-6001dcad0000", - "properties": { - "lastPublishTime": "2021-01-15T18:19:25Z" - } - } - ], - "nextLink": "https://workspacechhamosynapse.dev.azuresynapse.net:443/pipelines?api-version=2019-06-01-preview\u0026%24skipToken=%2BRID%3A%7ESl8ZAKxwhACXZQAAAAD8BA%3D%3D%23RT%3A2%23TRC%3A100%23ISV%3A2%23IEO%3A65551%23QCF%3A1" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines?api-version=2019-06-01-preview\u0026%24skipToken=%2BRID%3A~Sl8ZAKxwhACXZQAAAAD8BA%3D%3D%23RT%3A2%23TRC%3A100%23ISV%3A2%23IEO%3A65551%23QCF%3A1", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-1539bf935b235b4087dc8e8f024158f8-3d9fd8b89855284a-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "99f3034925a5bb410367324351245541", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Length": "3603", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:18 GMT", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "99f3034925a5bb410367324351245541", - "x-ms-request-id": "348427ac-291b-4a18-b068-b3c96009586b" - }, - "ResponseBody": { - "value": [ - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1157145368", - "name": "Pipeline1157145368", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "d907d1e4-0000-0800-0000-6001dcc80000", - "properties": { - "lastPublishTime": "2021-01-15T18:19:52Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1721294700", - "name": "Pipeline1721294700", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "07001982-0000-0800-0000-60073d160000", - "properties": { - "lastPublishTime": "2021-01-19T20:12:06Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1221073405", - "name": "Pipeline1221073405", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "07002789-0000-0800-0000-6007415a0000", - "properties": { - "lastPublishTime": "2021-01-19T20:30:18Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline56022682", - "name": "Pipeline56022682", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "31003770-0000-0800-0000-6008744c0000", - "properties": { - "lastPublishTime": "2021-01-20T18:19:56Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline64227599", - "name": "Pipeline64227599", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "31001e82-0000-0800-0000-600874660000", - "properties": { - "lastPublishTime": "2021-01-20T18:20:22Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline17897275", - "name": "Pipeline17897275", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "330079f7-0000-0800-0000-600877d20000", - "properties": { - "lastPublishTime": "2021-01-20T18:34:58Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline15426769", - "name": "Pipeline15426769", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "3400f90a-0000-0800-0000-600877ef0000", - "properties": { - "lastPublishTime": "2021-01-20T18:35:27Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline20933056", - "name": "Pipeline20933056", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "5100e5e9-0000-0800-0000-6008a31d0000", - "properties": { - "lastPublishTime": "2021-01-20T21:39:41Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline11571453", - "name": "Pipeline11571453", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "510085f8-0000-0800-0000-6008a3330000", - "properties": { - "lastPublishTime": "2021-01-20T21:40:03Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline17076005", - "name": "Pipeline17076005", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "140194c6-0000-0800-0000-6009c8b10000", - "properties": { - "lastPublishTime": "2021-01-21T18:32:17Z" - } - } - ] - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline1764361910?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-6e6f69461a992f48934f51a46bd86909-68307f06e9cfff4b-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "ec56c4f6b2d9854a0bbfbdf3815a8428", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "361", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:19 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-ms-client-request-id": "ec56c4f6b2d9854a0bbfbdf3815a8428", - "x-ms-correlation-request-id": "c7aaae2a-404d-45df-be92-5e3e7cd3ae86", - "x-ms-request-id": "a26e2048-ccfe-45f9-8e02-721a0ba594dc", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1764361910", - "name": "Pipeline1764361910", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-10T17:21:43Z" - }, - "etag": "f6018f22-0000-0800-0000-5fd259270000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline2107615627?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-5bb81e39ebc7a44795bedb27074aa779-45af1efa32d59c45-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "c5181d2237a6a9ef2d5559704fc77339", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "361", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:19 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-ms-client-request-id": "c5181d2237a6a9ef2d5559704fc77339", - "x-ms-correlation-request-id": "aad89c3e-887e-4a86-af2e-62e31c749c36", - "x-ms-request-id": "20284809-96b1-4117-8ea0-ed00b0293681", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline2107615627", - "name": "Pipeline2107615627", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-10T17:43:02Z" - }, - "etag": "f6013eaf-0000-0800-0000-5fd25e260000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline1857260053?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-0b53b52edef7c14c9a16d966dd983730-7b7eb47f7dcbeb43-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "868796d0f80b96d3b96e8ee5684d3aa8", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "361", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:19 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-ms-client-request-id": "868796d0f80b96d3b96e8ee5684d3aa8", - "x-ms-correlation-request-id": "8ef7b998-5531-4861-9c6d-bb626d9863fd", - "x-ms-request-id": "45e56b17-40bb-4f10-bd1b-f6586e6796d0", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1857260053", - "name": "Pipeline1857260053", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-10T18:04:34Z" - }, - "etag": "f7011c35-0000-0800-0000-5fd263320000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline1876419613?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-34084942cc402b4d90e617dfdef4fbdd-2a627f4915636b40-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "342109e38f0bbf9bd4acbf8358da3643", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "361", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:19 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-ms-client-request-id": "342109e38f0bbf9bd4acbf8358da3643", - "x-ms-correlation-request-id": "6af966fd-6bb8-495b-bc11-8a8ec3c3d911", - "x-ms-request-id": "c8fea279-654e-4ee6-8f0c-b15343b026cb", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1876419613", - "name": "Pipeline1876419613", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-10T18:20:14Z" - }, - "etag": "f7012e9b-0000-0800-0000-5fd266de0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline1740477251?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-a53467fb501e6d4088d2b454945a2e44-3c9e4dd5f8fb3747-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "eb22844bfed2291c49810c38a90a41df", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "361", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:19 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-ms-client-request-id": "eb22844bfed2291c49810c38a90a41df", - "x-ms-correlation-request-id": "3526d562-08d8-4c46-b9ce-ce3dfee226d3", - "x-ms-request-id": "8d5371ae-1d74-4197-9289-53a384cb8fec", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1740477251", - "name": "Pipeline1740477251", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-14T16:49:06Z" - }, - "etag": "62028798-0000-0800-0000-5fd797820000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline1905362346?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-c783dfdb34928f41bda518436017d125-4246655b0eb3ed4f-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "458db01b3fa6412dfbc8b15e394f3ddf", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "361", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:19 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-ms-client-request-id": "458db01b3fa6412dfbc8b15e394f3ddf", - "x-ms-correlation-request-id": "35544e42-d445-42e4-b79d-ea21f69f3494", - "x-ms-request-id": "8c96ee2b-610e-4816-86c6-24ee32d12b8d", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1905362346", - "name": "Pipeline1905362346", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-15T15:19:05Z" - }, - "etag": "830225fc-0000-0800-0000-5fd8d3e90000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline1609882431?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-15cc18de94e7e34791955e319b8184b6-37faed935ea6cf40-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "e49a4a374e2ae4d6edf7eb8a836316ca", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "361", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:19 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-ms-client-request-id": "e49a4a374e2ae4d6edf7eb8a836316ca", - "x-ms-correlation-request-id": "b2a021d8-3ebd-43ff-b438-7be5b0ba198f", - "x-ms-request-id": "9bf9cba2-a884-4735-b33a-7663824ab3a4", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1609882431", - "name": "Pipeline1609882431", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-15T15:19:23Z" - }, - "etag": "83028ffe-0000-0800-0000-5fd8d3fb0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline1961982223?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-6c8ec66784de2941bd0a461b1d22565f-2409e2c9a93a6f46-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "a867df6bf14d0c9d56e1f00a4dbdf0f9", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "361", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:20 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-ms-client-request-id": "a867df6bf14d0c9d56e1f00a4dbdf0f9", - "x-ms-correlation-request-id": "d0c8aa3a-8f11-4959-9e07-03491ceb9286", - "x-ms-request-id": "1b9313d4-2726-43fd-ad48-a22905b5d329", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1961982223", - "name": "Pipeline1961982223", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-15T15:26:26Z" - }, - "etag": "8402a536-0000-0800-0000-5fd8d5a20000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline1387939708?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-a7c9313ddc29224e8aac8409c1c84665-02f960d745fe654b-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "5e002c435d6fccb4daa858ae54a2bd97", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "361", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:20 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-ms-client-request-id": "5e002c435d6fccb4daa858ae54a2bd97", - "x-ms-correlation-request-id": "8323b0a5-fd3b-45eb-8375-928e505b39a3", - "x-ms-request-id": "9f5fc69e-94e0-493e-8234-bad6723ecfaa", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1387939708", - "name": "Pipeline1387939708", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-15T15:26:38Z" - }, - "etag": "84025338-0000-0800-0000-5fd8d5ae0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline83733385?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-22f6f0182021b549bb3e020aacfbb19a-d9f7515b46331e49-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "59f3e6b295e84692ac8d8d495ecc972f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "357", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:20 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-ms-client-request-id": "59f3e6b295e84692ac8d8d495ecc972f", - "x-ms-correlation-request-id": "ed434f23-a3e1-40d0-8264-10dd146aa8a3", - "x-ms-request-id": "cf6fceb5-e619-46f9-9389-2adba91891de", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline83733385", - "name": "Pipeline83733385", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-15T15:31:23Z" - }, - "etag": "8402ff5c-0000-0800-0000-5fd8d6cb0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline946829669?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-d697264e042dfe42990ad4f3c630d97a-a41da45c6a258a4d-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "5646f107b7620e5a2b9acda499efb8b3", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "359", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:20 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-ms-client-request-id": "5646f107b7620e5a2b9acda499efb8b3", - "x-ms-correlation-request-id": "41123447-fcec-4e3d-9cef-215cf6747c41", - "x-ms-request-id": "106b331d-d8a1-491b-8051-87af43676524", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline946829669", - "name": "Pipeline946829669", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-15T15:31:36Z" - }, - "etag": "8402bb5e-0000-0800-0000-5fd8d6d80000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline1325869023?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-f1f8d508623bde4c997b123bcd37c987-36db04e2902c8d41-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "6658582497caad119abab1e2d06b6e0e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "361", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:20 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-ms-client-request-id": "6658582497caad119abab1e2d06b6e0e", - "x-ms-correlation-request-id": "82e043da-93c5-4b12-81d9-6cbc840b53a4", - "x-ms-request-id": "9892b8fd-44a6-49ba-9e9f-ccb1f38ce92d", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1325869023", - "name": "Pipeline1325869023", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-15T17:24:50Z" - }, - "etag": "87021bb7-0000-0800-0000-5fd8f1620000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline2043656390?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-71cb753550f5974a925d620fcd0e64e1-8b66a37d25217a47-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "62a62811675bfa348be52d4dc8edadbd", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "361", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:20 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-ms-client-request-id": "62a62811675bfa348be52d4dc8edadbd", - "x-ms-correlation-request-id": "10954b50-9149-4fad-841f-8546e70f9c6b", - "x-ms-request-id": "3bad4073-7ee9-4f45-99b1-9a73c17cb60f", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline2043656390", - "name": "Pipeline2043656390", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-15T17:25:07Z" - }, - "etag": "870225b9-0000-0800-0000-5fd8f1730000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline169494837?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-c3412406ec5b044dacc099b62bc51cf4-5af7fd168937994a-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "0625d9d530747065df99bba806783ec0", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "359", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:20 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-ms-client-request-id": "0625d9d530747065df99bba806783ec0", - "x-ms-correlation-request-id": "cf1a2e2e-49df-4415-bc6a-9c43d6e887f4", - "x-ms-request-id": "0cf8e981-19f0-4a48-948e-e907ddd76064", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline169494837", - "name": "Pipeline169494837", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-15T17:29:07Z" - }, - "etag": "8702afd7-0000-0800-0000-5fd8f2630000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline435107315?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-f2a071d2dbb8364780dcbdd904d2333b-4494b65d29970847-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "7092bf2c5548bc58235ddbe469c4e5ac", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "359", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:20 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-ms-client-request-id": "7092bf2c5548bc58235ddbe469c4e5ac", - "x-ms-correlation-request-id": "cf120312-cac3-47bf-b3e3-a7d710e84b95", - "x-ms-request-id": "90b2a577-0a4e-4d99-9298-e2576f7179fe", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline435107315", - "name": "Pipeline435107315", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-15T17:29:28Z" - }, - "etag": "87024eda-0000-0800-0000-5fd8f2780000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline481261475?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-69984ea32efd1e4c9683b6eac493d75e-c3d989953bb5e54e-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "f60df40c6845e19ac33683c2ab8bf413", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "359", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:21 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-ms-client-request-id": "f60df40c6845e19ac33683c2ab8bf413", - "x-ms-correlation-request-id": "18347972-5ebd-4e48-a033-2db832b140d4", - "x-ms-request-id": "a625e22d-b939-4128-bf57-878e3a7ca41c", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline481261475", - "name": "Pipeline481261475", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-15T17:33:54Z" - }, - "etag": "8702ccfa-0000-0800-0000-5fd8f3820000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline533552945?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-789cbcd06f1f95489c9427263f84cee6-fbb22c686c21014d-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "08216da73c5a7f748168e2165480071b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "359", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:21 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-ms-client-request-id": "08216da73c5a7f748168e2165480071b", - "x-ms-correlation-request-id": "64db3561-5fc3-4c12-99bb-daf939eb7420", - "x-ms-request-id": "68ba3b2e-136a-48e5-aad2-4dc9683a7dbc", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline533552945", - "name": "Pipeline533552945", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-15T17:34:11Z" - }, - "etag": "87023efd-0000-0800-0000-5fd8f3930000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline204413031?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-1c2fa95d40b4d24a99852660a8d1817e-6fd48c13a5c1eb4e-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "119c0eb3476ac37a25b1ac12d2951197", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "359", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:21 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-ms-client-request-id": "119c0eb3476ac37a25b1ac12d2951197", - "x-ms-correlation-request-id": "1b5a95bd-fb54-43f3-b226-f23dab5bdf27", - "x-ms-request-id": "c33f6bbd-50de-423e-a6c1-05e6fa037903", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline204413031", - "name": "Pipeline204413031", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-15T17:48:39Z" - }, - "etag": "88026568-0000-0800-0000-5fd8f6f70000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline1515724574?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-91a89b2a1e36e04abcc75f6bdfa9d5f8-784afdf3964e124d-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "fc3dc869dca3cf527f8d75dd86838c43", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "361", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:21 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-ms-client-request-id": "fc3dc869dca3cf527f8d75dd86838c43", - "x-ms-correlation-request-id": "1338d27d-d39d-4c6a-914e-a21382d76535", - "x-ms-request-id": "68c29b58-5301-4dc2-b0f2-15bd7afc0b9a", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1515724574", - "name": "Pipeline1515724574", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-15T17:48:58Z" - }, - "etag": "8802b56a-0000-0800-0000-5fd8f70a0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline2050037960?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-13dbdec1eef4224daa1a220081046c01-27dd43bcbd693141-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "9c0f672ee2ef5fa8f25de3a99061aceb", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "361", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:21 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-ms-client-request-id": "9c0f672ee2ef5fa8f25de3a99061aceb", - "x-ms-correlation-request-id": "dd4bc8a8-23c7-41df-a868-a178970e6874", - "x-ms-request-id": "e457dda6-991b-4dfa-aa0e-20bf591c4ea6", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline2050037960", - "name": "Pipeline2050037960", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-15T17:53:31Z" - }, - "etag": "88026589-0000-0800-0000-5fd8f81b0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline1519978047?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-fefae73f8b502e44a55cb77cb901a6f9-eb06dd27c9b43248-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "8cad4a570a42d678bccc91ddd19d3da1", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "361", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:21 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-ms-client-request-id": "8cad4a570a42d678bccc91ddd19d3da1", - "x-ms-correlation-request-id": "72534f3f-524b-4390-8a04-9d0c890c87b6", - "x-ms-request-id": "29c41b05-bd9f-4af5-a2d1-20a50068800d", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1519978047", - "name": "Pipeline1519978047", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-15T17:53:51Z" - }, - "etag": "8802c98b-0000-0800-0000-5fd8f82f0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline1262198528?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-6ba26d707c678844857f3eb86b88bc58-99e516895e109b4e-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "6be46924748686a71fdd0a46f9a83f1e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "361", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:21 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-ms-client-request-id": "6be46924748686a71fdd0a46f9a83f1e", - "x-ms-correlation-request-id": "d9e6e640-906a-41ad-9ace-76bd5c311416", - "x-ms-request-id": "66846e73-c5ba-453d-acc4-45bc2ce5c090", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1262198528", - "name": "Pipeline1262198528", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-15T17:58:32Z" - }, - "etag": "8802c8ae-0000-0800-0000-5fd8f9480000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline1607934098?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-047042cbdb8a854ba265af5b53a935dc-8aee08acc16fa649-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "3b8589e100d62301ef38df2350cb8e54", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "361", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:21 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-ms-client-request-id": "3b8589e100d62301ef38df2350cb8e54", - "x-ms-correlation-request-id": "a9eeb9a5-f1d1-47a5-b745-6625966a1248", - "x-ms-request-id": "348a1ad2-4ac1-4fea-82ec-f99b2b370c41", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1607934098", - "name": "Pipeline1607934098", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-15T17:58:42Z" - }, - "etag": "8802d1af-0000-0800-0000-5fd8f9520000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline676567357?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-ac0e62c3e0fe474384a739830fff3fb4-16f1d449ce89a947-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "2784411f417de365a2266c640032dd14", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "359", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:21 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-ms-client-request-id": "2784411f417de365a2266c640032dd14", - "x-ms-correlation-request-id": "92e64949-1b13-4780-b861-909b26ad9c3e", - "x-ms-request-id": "8dedf88d-d5db-45cd-8282-6ed312dabdd9", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline676567357", - "name": "Pipeline676567357", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-16T22:14:43Z" - }, - "etag": "42007e6d-0000-0800-0000-5fda86d30000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline2031314261?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-68d73da5a48fef428b0e8fc24ca4f6a1-05ef05e1f1a0c246-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "48fb738c021724cb67c07b4d94843654", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "361", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:22 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-ms-client-request-id": "48fb738c021724cb67c07b4d94843654", - "x-ms-correlation-request-id": "092358fb-29a8-4b5b-a5f1-cbdc821fb466", - "x-ms-request-id": "74cc4b9a-1f34-470f-8b90-e202d6f84f50", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline2031314261", - "name": "Pipeline2031314261", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-16T22:15:03Z" - }, - "etag": "42003d72-0000-0800-0000-5fda86e70000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline1714988960?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-885d30d5dd975346a76be113e35e837c-cd6c4772a58d9643-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "b826b54f18239fa023a299b0939c23bc", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "361", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:22 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-ms-client-request-id": "b826b54f18239fa023a299b0939c23bc", - "x-ms-correlation-request-id": "2e03e118-edd1-4c44-9fdd-8f34341b551d", - "x-ms-request-id": "44e7ff76-f384-4d95-b332-cfdb8994b32c", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1714988960", - "name": "Pipeline1714988960", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-16T22:19:29Z" - }, - "etag": "42009cb7-0000-0800-0000-5fda87f10000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline1259315615?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-7472c8ecdcd025479a29c37543fbb275-c17ee4222aca8147-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "dc97cb5b46cf1d3d7660bfbdc5184e1e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "361", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:22 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-ms-client-request-id": "dc97cb5b46cf1d3d7660bfbdc5184e1e", - "x-ms-correlation-request-id": "d744eccd-5347-47f6-ab44-d2cb9210e500", - "x-ms-request-id": "f8e3541f-5d2e-49fc-87f6-a21bc8e92c83", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1259315615", - "name": "Pipeline1259315615", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-16T22:19:46Z" - }, - "etag": "42001bbc-0000-0800-0000-5fda88020000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline1236576079?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-090df18440bf5c4d917c9e5d492ca4c4-c6825440058c9d4d-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "4b1417ef240b73f0d35c2474681a91ca", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "361", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:22 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-ms-client-request-id": "4b1417ef240b73f0d35c2474681a91ca", - "x-ms-correlation-request-id": "e764af2a-2b73-4d62-ad6c-80da9e5f39a9", - "x-ms-request-id": "30fcc9c3-4b1d-43f0-8af6-2719bed0d4f1", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1236576079", - "name": "Pipeline1236576079", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-16T22:23:49Z" - }, - "etag": "420081f9-0000-0800-0000-5fda88f50000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline485344534?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-9cad6d9ce71b2348b16744f80cd94892-b22d7e9821630747-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "c8f1bf9d59ec0985770942c359e3d90b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "359", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:22 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-ms-client-request-id": "c8f1bf9d59ec0985770942c359e3d90b", - "x-ms-correlation-request-id": "e729c13b-155c-4076-87ce-8f89249b8dac", - "x-ms-request-id": "a78b0dac-4ee3-4091-984f-e0e75fa163cd", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline485344534", - "name": "Pipeline485344534", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-16T22:24:11Z" - }, - "etag": "4200c2fe-0000-0800-0000-5fda890b0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline426580370?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-83199177e577f346b58dbe9bbb74ea59-0d47c51dbfa75d44-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "7bc07b54d78736b1db23097321c9b45b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "359", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:22 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-ms-client-request-id": "7bc07b54d78736b1db23097321c9b45b", - "x-ms-correlation-request-id": "26911176-b7b9-45fe-a545-34ff94b7f0ea", - "x-ms-request-id": "5e605780-78a7-4039-94f1-00d58c7c852d", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline426580370", - "name": "Pipeline426580370", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-17T19:21:03Z" - }, - "etag": "790023aa-0000-0800-0000-5fdbaf9f0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline846919427?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-d97ed2e8ba77e7419a7a09749a85ab3c-44542c059f9e0b4d-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "0620f4cf85269631920bd401e22c1af0", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "359", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:22 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-ms-client-request-id": "0620f4cf85269631920bd401e22c1af0", - "x-ms-correlation-request-id": "6a1b87ce-9e57-46f0-8787-f03d54d86e19", - "x-ms-request-id": "62199358-9da1-41a9-8e47-51a5a0f7b26f", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline846919427", - "name": "Pipeline846919427", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-17T19:21:22Z" - }, - "etag": "79009cb0-0000-0800-0000-5fdbafb20000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline403400646?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-e92b360501e9d84288ae651cab34cdb3-abe4549889627c41-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "ed201882155ac5420dbbedc84f12e7ae", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "359", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:22 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-ms-client-request-id": "ed201882155ac5420dbbedc84f12e7ae", - "x-ms-correlation-request-id": "e0536522-70b6-4b36-9bac-c360e926eebd", - "x-ms-request-id": "47092959-8388-411e-87cd-323772a809c9", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline403400646", - "name": "Pipeline403400646", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-17T19:25:26Z" - }, - "etag": "7a005c06-0000-0800-0000-5fdbb0a60000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline731098520?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-5d46565841758e45b89afaacbbfe21be-1fc5f3c7f6d6454d-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "65f4e655d2c2cee5492ae87c02b053ae", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "359", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:23 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-ms-client-request-id": "65f4e655d2c2cee5492ae87c02b053ae", - "x-ms-correlation-request-id": "c7542528-3ca8-48bd-bb60-9ae78143d06a", - "x-ms-request-id": "1db66666-0e38-4b38-8bdb-9f2b4982f260", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline731098520", - "name": "Pipeline731098520", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-17T19:25:49Z" - }, - "etag": "7a00cd0e-0000-0800-0000-5fdbb0bd0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline361470053?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-f071fe70f4f88546bb714f939271f2f6-bfb0722b03f56242-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "08f01909c7a8b900b15af96b98684680", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "359", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:23 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-ms-client-request-id": "08f01909c7a8b900b15af96b98684680", - "x-ms-correlation-request-id": "8c4358e2-8fbd-4810-b441-51eb50b96cd4", - "x-ms-request-id": "04b6117f-b90e-4432-a06b-f4ac646b5f84", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline361470053", - "name": "Pipeline361470053", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-17T19:30:12Z" - }, - "etag": "7a003373-0000-0800-0000-5fdbb1c40000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline1885848639?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-a5346ee3f75d944892053d6f9bbd7b12-82315cee4bfd2242-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "fcac2623b538af2d3351a3302cc6c35d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "361", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:23 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-ms-client-request-id": "fcac2623b538af2d3351a3302cc6c35d", - "x-ms-correlation-request-id": "bbb48882-1225-4d2a-befb-bee4f1076f83", - "x-ms-request-id": "57f6c3ad-2738-4419-9564-0080a53d9ffb", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1885848639", - "name": "Pipeline1885848639", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-17T19:30:29Z" - }, - "etag": "7a00747a-0000-0800-0000-5fdbb1d50000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline2015250014?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-cf9b3cfb474fcb4b88cf8f17887510e8-aa5e0cf723fffc4e-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "36bf3f67de228e05e53ab367d97936e1", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "361", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:23 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-ms-client-request-id": "36bf3f67de228e05e53ab367d97936e1", - "x-ms-correlation-request-id": "5b207c11-fe4e-4979-b46e-6692a3579611", - "x-ms-request-id": "9d3981dd-bbd0-47b6-92b9-d353a74e4bbd", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline2015250014", - "name": "Pipeline2015250014", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-18T15:17:03Z" - }, - "etag": "12006f9b-0000-0800-0000-5fdcc7ef0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline1958105182?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-9bd7d7e1c76c2340965d5e6438ad51b4-21a4447edd0d3e42-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "dc5968e357035476eb40d55723d08ceb", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "361", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:23 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-ms-client-request-id": "dc5968e357035476eb40d55723d08ceb", - "x-ms-correlation-request-id": "69e7a6fe-85e9-48d1-9f0c-9e0282d7e6e8", - "x-ms-request-id": "b1db2daf-7654-4d88-8daf-78527688f8ca", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1958105182", - "name": "Pipeline1958105182", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-18T15:17:21Z" - }, - "etag": "1200859d-0000-0800-0000-5fdcc8010000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline709448218?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-e35ebadaa5a45f4ea265ef36165c31ce-1b4aea54e93b9a44-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "58039b970fa9445e201e16fd01c5d6b9", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "359", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:23 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-ms-client-request-id": "58039b970fa9445e201e16fd01c5d6b9", - "x-ms-correlation-request-id": "44f2c675-a4da-4188-93d8-58e9f6211e9e", - "x-ms-request-id": "33343daf-270e-48a8-9940-afa82ab0e582", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline709448218", - "name": "Pipeline709448218", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-18T15:25:26Z" - }, - "etag": "12005fd8-0000-0800-0000-5fdcc9e60000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline1370318582?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-62276d41b4f56d42aaf019c534cf6de7-f66e3166faf09e41-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "c44cc11be66c1059c96a4be109ae6a15", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "361", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:23 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-ms-client-request-id": "c44cc11be66c1059c96a4be109ae6a15", - "x-ms-correlation-request-id": "d05a8039-34b6-4938-a5a1-adf39c7c802c", - "x-ms-request-id": "2ff1207a-2f6d-4ff5-a000-b6c5aafff1ec", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1370318582", - "name": "Pipeline1370318582", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-18T15:25:43Z" - }, - "etag": "12003ddb-0000-0800-0000-5fdcc9f70000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline285873936?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-b5bbe937c0518f4baab92a5586c44afd-2ccac43fff539d42-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "3dd0c8aedd76d4380a15bce541785325", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "359", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:23 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-ms-client-request-id": "3dd0c8aedd76d4380a15bce541785325", - "x-ms-correlation-request-id": "089cee5a-013f-4357-837b-0a62ca28361b", - "x-ms-request-id": "159d3391-ca7e-4d14-8b00-d79b6235922c", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline285873936", - "name": "Pipeline285873936", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-18T15:32:20Z" - }, - "etag": "13001007-0000-0800-0000-5fdccb840000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline1524730390?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-af1093eb178eae41bf2445d33edb1132-b710c74fe355c04b-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "613c1b6ac884b17e42f38f3ec47c3a72", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "361", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:24 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-ms-client-request-id": "613c1b6ac884b17e42f38f3ec47c3a72", - "x-ms-correlation-request-id": "3db7a14b-1f39-430b-8184-9dde24237dc8", - "x-ms-request-id": "d5e6436f-d7de-4383-9442-bfecc5430b06", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1524730390", - "name": "Pipeline1524730390", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-18T15:32:44Z" - }, - "etag": "13009409-0000-0800-0000-5fdccb9c0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline1151422564?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-fc9eaed850cb01438c2a18511c894d5b-7b461b72ac5bb947-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "384f01b398f53d438978ba572a73ce50", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "361", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:24 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-ms-client-request-id": "384f01b398f53d438978ba572a73ce50", - "x-ms-correlation-request-id": "90dfc8db-b07b-4963-adc2-359bac2811ff", - "x-ms-request-id": "0c487085-fea1-4397-87ae-78b32a6692b6", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1151422564", - "name": "Pipeline1151422564", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-18T16:48:02Z" - }, - "etag": "1400b9ff-0000-0800-0000-5fdcdd420000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline1911534615?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-ca89511af8310d48a4586a90a3ecea20-ab3043438f758946-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "ee7625170872e5904a1efb834efa0f8d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "361", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:24 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-ms-client-request-id": "ee7625170872e5904a1efb834efa0f8d", - "x-ms-correlation-request-id": "a881225d-3d8a-4820-9e49-5172f5a45e00", - "x-ms-request-id": "a01d88ba-22dc-4076-9f5c-a75a197ac95f", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1911534615", - "name": "Pipeline1911534615", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-18T16:48:18Z" - }, - "etag": "15005501-0000-0800-0000-5fdcdd520000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline1175029344?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-8308c4e92ffb0d4faf0ac052c3da6772-0a3cf535e9469a44-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "40324ada1a29d230d7fed80c0e2687ce", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "361", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:24 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-ms-client-request-id": "40324ada1a29d230d7fed80c0e2687ce", - "x-ms-correlation-request-id": "dd21680e-7983-4131-b810-81021f501e2f", - "x-ms-request-id": "ff4554ae-699e-45a9-9853-ece98bbdd2e2", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1175029344", - "name": "Pipeline1175029344", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-18T16:52:45Z" - }, - "etag": "1500e81e-0000-0800-0000-5fdcde5d0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline836738180?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-9ad5bfcfaf5047428f945da41ceb85e2-a956ab34bc13b04c-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "9f273f244b06aaff7069eed69cc0ef8f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "359", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:24 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-ms-client-request-id": "9f273f244b06aaff7069eed69cc0ef8f", - "x-ms-correlation-request-id": "0116a092-3c1f-4056-8a39-043bc1e787ef", - "x-ms-request-id": "654a3b9a-ad70-47e3-b9a1-9550d1128009", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline836738180", - "name": "Pipeline836738180", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-18T16:53:01Z" - }, - "etag": "1500c020-0000-0800-0000-5fdcde6d0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline1365315171?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-f95fc9faa21b1b46b42d4fc62a94d742-03b2d8336563f04e-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "df7d2c688e41fc26f5a417733084d723", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "361", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:24 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-ms-client-request-id": "df7d2c688e41fc26f5a417733084d723", - "x-ms-correlation-request-id": "13fd62d0-7136-4e97-9ffd-fc7b73a75525", - "x-ms-request-id": "e5ced4b5-876b-4491-9d41-1ab60b24df3d", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1365315171", - "name": "Pipeline1365315171", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-18T16:57:34Z" - }, - "etag": "1500a941-0000-0800-0000-5fdcdf7e0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline941345213?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-3023a55c65cbe742ae3b3a89a23b5600-1b7df8c952b8174f-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "0e5e2d976fd28e874a88cfc02b593517", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "359", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:24 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-ms-client-request-id": "0e5e2d976fd28e874a88cfc02b593517", - "x-ms-correlation-request-id": "92a5719e-68df-449a-98b6-41aafa006b1e", - "x-ms-request-id": "ca35c4b4-2b9d-4347-bf0f-ced22165fbb7", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline941345213", - "name": "Pipeline941345213", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-18T16:57:50Z" - }, - "etag": "1500c543-0000-0800-0000-5fdcdf8e0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline546860755?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-53770993c3dcac418d58ab2e20912bbe-b88f272afcb88241-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "e1a3490fa7a9958d182aaa61348c79ec", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "359", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:24 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-ms-client-request-id": "e1a3490fa7a9958d182aaa61348c79ec", - "x-ms-correlation-request-id": "e486b553-95a1-401d-b501-4db71b3607f3", - "x-ms-request-id": "97ec9191-da26-4415-91e7-1c776e764460", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline546860755", - "name": "Pipeline546860755", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-18T17:24:18Z" - }, - "etag": "1500d1f4-0000-0800-0000-5fdce5c20000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline575832323?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-af8b606fce43134fb873a22e83b87bc8-2200e70a7208d54a-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "6f3fcb91e061f8bca5ee95b9bf66d19b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "359", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:25 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-ms-client-request-id": "6f3fcb91e061f8bca5ee95b9bf66d19b", - "x-ms-correlation-request-id": "91ff89de-1dc9-439c-9641-b195fb69c269", - "x-ms-request-id": "e5272893-1781-4d2c-a9ec-92a65700e2dc", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline575832323", - "name": "Pipeline575832323", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-18T17:24:38Z" - }, - "etag": "15000bf7-0000-0800-0000-5fdce5d60000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline1629474829?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-02bc86e154629a4584279add160b5b8e-34cedc8701b92846-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "e763ff6ef5e0f079a0c8f6a8c5255abd", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "361", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:25 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-ms-client-request-id": "e763ff6ef5e0f079a0c8f6a8c5255abd", - "x-ms-correlation-request-id": "219da0ad-9476-4c81-9f30-0cf41375597d", - "x-ms-request-id": "07e56fdc-ec61-43ec-b2af-97d8446fe7ec", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1629474829", - "name": "Pipeline1629474829", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-18T17:29:25Z" - }, - "etag": "16002a18-0000-0800-0000-5fdce6f50000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline689712987?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-5fbfece889a9cf498d704cf00b27e156-c27216932c5eb340-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "602ee20ec51a2fb58caa3cbb11d3d6b1", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "359", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:25 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-ms-client-request-id": "602ee20ec51a2fb58caa3cbb11d3d6b1", - "x-ms-correlation-request-id": "f9ee13a0-9efc-4dd0-937b-22b7ea51e2f5", - "x-ms-request-id": "b4657e0d-ec0d-40b8-b70e-50cdbde5cb65", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline689712987", - "name": "Pipeline689712987", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-18T17:30:30Z" - }, - "etag": "1600c11f-0000-0800-0000-5fdce7360000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline585240566?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-d88ccb1a89c1d343a444f9979073cd7e-900ad7e627acb04f-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "34f20e5892289b0c514fcf98e913337f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "359", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:25 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-ms-client-request-id": "34f20e5892289b0c514fcf98e913337f", - "x-ms-correlation-request-id": "ba52eb8b-c8a2-44ca-bb4d-7b751f183b2a", - "x-ms-request-id": "3317523a-5437-4ac9-984f-ed75c887eddc", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline585240566", - "name": "Pipeline585240566", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-18T17:35:51Z" - }, - "etag": "16001843-0000-0800-0000-5fdce8770000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline1463431359?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-13bff12d95cdd44ca786f5dfda02762d-6a33bf17d97b9148-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "dcaad7937138a8814a345a35b9bedecc", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "361", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:25 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-ms-client-request-id": "dcaad7937138a8814a345a35b9bedecc", - "x-ms-correlation-request-id": "3a8194a8-6e1f-416f-a924-14fd0b87242b", - "x-ms-request-id": "b8c37e1f-a19f-4e06-83ef-b78feba93d69", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1463431359", - "name": "Pipeline1463431359", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-18T17:36:10Z" - }, - "etag": "16005145-0000-0800-0000-5fdce88a0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline142427005?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-4c9817f263c1ba479c651d342c53b6b9-fcfaf0de99e12546-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "b74f45f225327b94d6920ecbf61d4579", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "359", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:25 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-ms-client-request-id": "b74f45f225327b94d6920ecbf61d4579", - "x-ms-correlation-request-id": "145d2c39-5c36-4c6a-84f0-2620f48444c0", - "x-ms-request-id": "a92caddf-e262-4d86-b9c7-9c079b254d24", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline142427005", - "name": "Pipeline142427005", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-21T16:34:25Z" - }, - "etag": "9400db5d-0000-0800-0000-5fe0ce910000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline2113438296?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-3d8652bab915ab40a296c06d7be408b7-38cb4d85e2aa2147-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "3927bc77f928e7788c49eaf438d6e292", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "361", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:25 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-ms-client-request-id": "3927bc77f928e7788c49eaf438d6e292", - "x-ms-correlation-request-id": "3dd0041e-31c5-4ce3-8c79-47033c951d57", - "x-ms-request-id": "547dc184-16e6-47df-8399-df87ed10677a", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline2113438296", - "name": "Pipeline2113438296", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-21T16:34:43Z" - }, - "etag": "94002669-0000-0800-0000-5fe0cea30000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline1863241518?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-3f689e7cf9bf38448665131f2583fbc5-e780282b0771bc44-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "a4a503707bc46e4d432f06a663b6b22c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "361", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:25 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-ms-client-request-id": "a4a503707bc46e4d432f06a663b6b22c", - "x-ms-correlation-request-id": "93c74651-ef50-4f7a-a80f-f3cc0594bfa4", - "x-ms-request-id": "cd93d979-01b3-4ab1-9318-a73b9a4c645b", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1863241518", - "name": "Pipeline1863241518", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-21T16:42:22Z" - }, - "etag": "95000d5d-0000-0800-0000-5fe0d06e0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline887403503?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-e5377ca6f80cd24683796f132b9dfac5-5a4697084f9fa246-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "fdbde1eea497f9a3cc682ae83b9f43ff", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "359", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:26 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-ms-client-request-id": "fdbde1eea497f9a3cc682ae83b9f43ff", - "x-ms-correlation-request-id": "37584fe2-b638-477c-a181-f21fc0806728", - "x-ms-request-id": "775e654e-bab9-406d-b28c-732c1d11ec5e", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline887403503", - "name": "Pipeline887403503", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-21T16:42:48Z" - }, - "etag": "95007d6b-0000-0800-0000-5fe0d0880000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline310693596?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-ed6000aa935e974da5e4a6fa044c1b88-94ca847f67d6ce4c-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "f25a7bb0a177fcb56fb9f6f9f2d284d5", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "359", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:26 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-ms-client-request-id": "f25a7bb0a177fcb56fb9f6f9f2d284d5", - "x-ms-correlation-request-id": "a9f92d97-5458-4c88-9e46-b64846d07707", - "x-ms-request-id": "6604409c-d9bf-42a3-852a-e2a5517c53a1", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline310693596", - "name": "Pipeline310693596", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-21T16:48:59Z" - }, - "etag": "96000442-0000-0800-0000-5fe0d1fb0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline1741897570?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-87d9b1bdc0e9db49bd9b9a8ba71926e4-870822db67e1614f-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "5706bd97e418ccfb5facd85c506432a3", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "361", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:26 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-ms-client-request-id": "5706bd97e418ccfb5facd85c506432a3", - "x-ms-correlation-request-id": "51a7398b-cce4-458e-8065-814b083a7242", - "x-ms-request-id": "d837433d-0031-4fe5-89d2-9ab9f100453d", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1741897570", - "name": "Pipeline1741897570", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-21T16:49:23Z" - }, - "etag": "96000a4e-0000-0800-0000-5fe0d2130000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline957622854?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-f249247bfd5574448564f13517ca5e16-54720cd73032774e-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "e7f506ebbf5c4cb52bc18edeada906f9", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "359", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:26 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-ms-client-request-id": "e7f506ebbf5c4cb52bc18edeada906f9", - "x-ms-correlation-request-id": "17ca3047-0d2e-464e-ab90-6b78a01912a0", - "x-ms-request-id": "6af03c2e-ced6-47dd-9630-5e9858682959", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline957622854", - "name": "Pipeline957622854", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-21T20:44:20Z" - }, - "etag": "b300e937-0000-0800-0000-5fe109240000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline2077048772?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-496b6cb1cf060e44a9c1ae77732b99ea-02eb657c2a5e9b45-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "7d5155e3ec98cce77f8e93cac958ab0b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "361", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:26 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-ms-client-request-id": "7d5155e3ec98cce77f8e93cac958ab0b", - "x-ms-correlation-request-id": "82e202f3-2832-4bd9-8462-a621f6091324", - "x-ms-request-id": "b21894c2-c73e-40f5-9c9b-116401e26bb1", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline2077048772", - "name": "Pipeline2077048772", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-21T20:44:34Z" - }, - "etag": "b300903d-0000-0800-0000-5fe109320000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline851082303?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-f0d500abdf9b1747a9a44495e7c4bccb-f32536a26e6b4e40-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "ec0e53869dddd77907ba2b56561d1eb5", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "359", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:26 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-ms-client-request-id": "ec0e53869dddd77907ba2b56561d1eb5", - "x-ms-correlation-request-id": "24ffd508-00f7-410d-bda9-a59de10defad", - "x-ms-request-id": "e8c89138-e1e4-4dec-968c-d3af3bcad2e0", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline851082303", - "name": "Pipeline851082303", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-21T20:52:53Z" - }, - "etag": "b400e001-0000-0800-0000-5fe10b250000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline1750442906?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-2dc18c00bc28584d97400c7f1a22ea4b-5971d2433905ae4c-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "fb78dfa6b512ff0a1f2967ce2ceb83d3", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "361", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:26 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-ms-client-request-id": "fb78dfa6b512ff0a1f2967ce2ceb83d3", - "x-ms-correlation-request-id": "adc9edd9-b86f-4e16-b99f-08b2a3425f84", - "x-ms-request-id": "c5c4f294-f159-443b-845c-920954347c92", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1750442906", - "name": "Pipeline1750442906", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-21T20:53:13Z" - }, - "etag": "b400760a-0000-0800-0000-5fe10b390000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline173146615?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-938a68b09c58bc4f9fee6cabeea561f0-6b6dc40fd45be44b-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "5a578316199b461bdb7a75dec1907562", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "359", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:26 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-ms-client-request-id": "5a578316199b461bdb7a75dec1907562", - "x-ms-correlation-request-id": "46906e57-a953-4d47-a338-52dae1734048", - "x-ms-request-id": "639a8fb0-5cc6-4392-868e-e6bd7f215a21", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline173146615", - "name": "Pipeline173146615", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-21T21:00:21Z" - }, - "etag": "b400adc2-0000-0800-0000-5fe10ce50000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline1984196211?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-6927e2332730bf47b0feae39aa53f572-5d53096d91cbda44-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "e924dd6fafe0d1f8480ecdb335aaaa1c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "361", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:27 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-ms-client-request-id": "e924dd6fafe0d1f8480ecdb335aaaa1c", - "x-ms-correlation-request-id": "f8af290c-ab54-4e7c-8a66-ee6273e8171f", - "x-ms-request-id": "2c92b2b3-d916-47f2-b568-d3fbd48485ea", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1984196211", - "name": "Pipeline1984196211", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-21T21:00:37Z" - }, - "etag": "b40020cb-0000-0800-0000-5fe10cf50000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline537708951?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-6aafc6bdac07b947a1f75639252dd2c9-af8dd4482ea2ee4d-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "d2405836c3c58c1ac3321f983f2c3e8e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "359", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:27 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-ms-client-request-id": "d2405836c3c58c1ac3321f983f2c3e8e", - "x-ms-correlation-request-id": "1a64235c-72de-4594-9705-4453c8ac6f9a", - "x-ms-request-id": "62c18ab1-f2f0-45c2-897e-4843eb8f5751", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline537708951", - "name": "Pipeline537708951", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-21T21:34:39Z" - }, - "etag": "b800c116-0000-0800-0000-5fe114ef0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline1479158253?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-babb2a2bee2d1d4ca813bf1b7cdd8df4-5262663d3413994d-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "4f5e05b399c766f28a86128c4c671131", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "361", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:27 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-ms-client-request-id": "4f5e05b399c766f28a86128c4c671131", - "x-ms-correlation-request-id": "b417ad48-b779-441d-a9f3-08d7051e5307", - "x-ms-request-id": "58f130ec-3118-4af9-94ee-8ffadc4ea230", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1479158253", - "name": "Pipeline1479158253", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-21T21:35:04Z" - }, - "etag": "b8004720-0000-0800-0000-5fe115080000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline1715617179?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-243cbcc2071f0d4b9f014ca450aaa1d9-37197b748fe9c245-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "69a759cfa350ac9cc29726ae9060911c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "361", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:27 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-ms-client-request-id": "69a759cfa350ac9cc29726ae9060911c", - "x-ms-correlation-request-id": "2288fef1-9677-4d31-9474-cc3338a19719", - "x-ms-request-id": "b90f0953-a803-44d9-8f31-fd49943b6af0", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1715617179", - "name": "Pipeline1715617179", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-21T21:44:17Z" - }, - "etag": "b80091ee-0000-0800-0000-5fe117310000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline828820192?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-eb328e7429ecbd438a9ab89097eb5e04-70ef806acb1c0a48-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "30003ed05b4c9d5565d9483fb08d405b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "359", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:27 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-ms-client-request-id": "30003ed05b4c9d5565d9483fb08d405b", - "x-ms-correlation-request-id": "5da4bf15-6ef1-4777-9c45-dc6ff35fc08b", - "x-ms-request-id": "fe87bf99-7ec6-433c-b4f7-9a21a9b33694", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline828820192", - "name": "Pipeline828820192", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-21T21:44:37Z" - }, - "etag": "b800eff5-0000-0800-0000-5fe117450000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline548580191?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-23156852500bc548964ec0a66f5ab487-0700c5fef96d0f42-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "e6c8ee21d584103e68b28c2f7244d629", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "359", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:27 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-ms-client-request-id": "e6c8ee21d584103e68b28c2f7244d629", - "x-ms-correlation-request-id": "f198d47e-8516-4b3c-949d-fbbd8cfc6de3", - "x-ms-request-id": "06fa090b-4f4c-47bd-9ed0-ffa108189c4e", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline548580191", - "name": "Pipeline548580191", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-21T21:51:10Z" - }, - "etag": "b9006f83-0000-0800-0000-5fe118ce0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline1130547557?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-249c4b1b01c53d42808106c6d58d2e1b-f98b5e3e7f6baa44-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "0dbcf6f4e06774e4040a03765a5cfb35", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "361", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:27 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-ms-client-request-id": "0dbcf6f4e06774e4040a03765a5cfb35", - "x-ms-correlation-request-id": "78dd1b7a-d8ea-4eb2-a284-c0a81b7a1ac5", - "x-ms-request-id": "a1a89a47-9a53-466c-8fc7-05c616c893c8", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1130547557", - "name": "Pipeline1130547557", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-21T21:51:32Z" - }, - "etag": "b9006b8b-0000-0800-0000-5fe118e40000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline1108413193?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-8d01f9a1f9bed843bc964d063643338e-1bad87d7bd699f43-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "a18dcb57ab98fb9700efc79ace252a20", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "361", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:27 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-ms-client-request-id": "a18dcb57ab98fb9700efc79ace252a20", - "x-ms-correlation-request-id": "753e014e-4682-4df1-8ebd-c561e70a1563", - "x-ms-request-id": "b80b7e43-280f-4807-98c5-0c3615edcb08", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1108413193", - "name": "Pipeline1108413193", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-22T20:40:43Z" - }, - "etag": "000088ed-0000-0800-0000-5fe259cb0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline1470104174?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-4861ae97c08bcc4b95530ab494e2ed59-d67a6afcac480444-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "ba4a1e0332d040f30954e27ad1c7b50b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "361", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:28 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-ms-client-request-id": "ba4a1e0332d040f30954e27ad1c7b50b", - "x-ms-correlation-request-id": "3b85be99-5d94-4126-aed8-d5294b58519e", - "x-ms-request-id": "4f3532d9-b021-482d-b3fe-46b7133751f7", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1470104174", - "name": "Pipeline1470104174", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-22T20:41:02Z" - }, - "etag": "0000b7ed-0000-0800-0000-5fe259de0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline1719665946?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-a7237cbae611cf4d85ac244322ed91a3-5c4b8187b221894f-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "a7d857b634b749915ec00c77194aa5de", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "361", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:28 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-ms-client-request-id": "a7d857b634b749915ec00c77194aa5de", - "x-ms-correlation-request-id": "154a8e09-b399-46f6-bacd-3540864b0ade", - "x-ms-request-id": "9cf167c9-8b05-4343-b7b7-e5446934eef2", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1719665946", - "name": "Pipeline1719665946", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-22T20:50:05Z" - }, - "etag": "000065f5-0000-0800-0000-5fe25bfd0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline760779103?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-bbff0087a99249438970731471a86000-1de6cb488a3aa549-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "3b72e2df40122464d74c9743c81d2a38", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "359", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:28 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-ms-client-request-id": "3b72e2df40122464d74c9743c81d2a38", - "x-ms-correlation-request-id": "2599a107-8ebf-44ca-8465-eecdcac50ff0", - "x-ms-request-id": "120b6c2f-ae98-426b-b443-f07e893d7c10", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline760779103", - "name": "Pipeline760779103", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-22T20:50:26Z" - }, - "etag": "0000c3f5-0000-0800-0000-5fe25c120000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline263155253?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-3fb5cf17bab98340844646b26839ad3a-ac497766d2a75148-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "77e3bb3a824cce698d015c10267b27bf", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "359", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:28 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-ms-client-request-id": "77e3bb3a824cce698d015c10267b27bf", - "x-ms-correlation-request-id": "545c25fa-6760-4e1c-9019-130dc47f1096", - "x-ms-request-id": "a65a0998-c242-42bd-b612-3bd2e50d0115", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline263155253", - "name": "Pipeline263155253", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-22T20:57:29Z" - }, - "etag": "000046fa-0000-0800-0000-5fe25db90000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline1186264083?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-ab964999f2bae642b0fac8ae7620c0fe-f3d0771a09d96f41-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "ee9a03af795475f9f2b4d06a9d4e8041", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "361", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:28 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-ms-client-request-id": "ee9a03af795475f9f2b4d06a9d4e8041", - "x-ms-correlation-request-id": "221a4851-9349-4255-9a44-7a09dd80c615", - "x-ms-request-id": "98b140ca-9c18-4c1b-83a9-47ca83592dcb", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1186264083", - "name": "Pipeline1186264083", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-22T20:57:51Z" - }, - "etag": "00007dfa-0000-0800-0000-5fe25dcf0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline947795739?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-bcc11b00115fb6419e750bc22bf96b26-78d1f61396ebc847-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "5d3dd3962d665d9279a3ae11e454fe5b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "359", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:28 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-ms-client-request-id": "5d3dd3962d665d9279a3ae11e454fe5b", - "x-ms-correlation-request-id": "d5fb4a99-054d-4f19-936f-999ee1200825", - "x-ms-request-id": "745a97cc-3bc1-45b4-bee6-391c9a806c9c", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline947795739", - "name": "Pipeline947795739", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-23T18:19:07Z" - }, - "etag": "03005478-0000-0800-0000-5fe38a1b0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline947006839?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-84a11d9ce6d5234a9ea8b161c1b632f8-9189aa57fa818243-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "c594d8253b82c0e4c26d8598b1ff313f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "359", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:28 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-ms-client-request-id": "c594d8253b82c0e4c26d8598b1ff313f", - "x-ms-correlation-request-id": "15fc7e3a-0b94-4ab8-8521-e7d439b0e3e1", - "x-ms-request-id": "a1f15b26-7771-43e5-a1a2-06dd320f2a03", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline947006839", - "name": "Pipeline947006839", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-23T18:19:25Z" - }, - "etag": "03008678-0000-0800-0000-5fe38a2d0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline1075747870?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-3254a431c435c345997000c269ac7d70-43953708397d8746-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "527a1b80c93e8159703d75b0cbe8919d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "361", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:28 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-ms-client-request-id": "527a1b80c93e8159703d75b0cbe8919d", - "x-ms-correlation-request-id": "7b570dd5-b4d9-4427-b9ab-e49f58264e71", - "x-ms-request-id": "fcfb30ee-4150-4d73-9c43-95984b836ab0", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1075747870", - "name": "Pipeline1075747870", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-23T18:33:17Z" - }, - "etag": "03002f81-0000-0800-0000-5fe38d6d0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline611082881?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-b098118b1eed7648879352ec68ee94be-3edafcd4ba614c42-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "c54475b5bbba5abeef7d9af8a8f9ab79", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "359", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:29 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-ms-client-request-id": "c54475b5bbba5abeef7d9af8a8f9ab79", - "x-ms-correlation-request-id": "6176355b-8d00-477c-8712-6093a1db9075", - "x-ms-request-id": "f362d1d3-cc20-4fbd-ac7e-c09723096dcc", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline611082881", - "name": "Pipeline611082881", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-23T18:33:37Z" - }, - "etag": "03006c81-0000-0800-0000-5fe38d810000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline1157686718?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-c65be99816cbb0459cc550726218e2e0-aa086afb390f1841-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "c8906e72abda5c1d7e125445c533f4da", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "361", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:29 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-ms-client-request-id": "c8906e72abda5c1d7e125445c533f4da", - "x-ms-correlation-request-id": "01bc6dd3-b3a8-4496-920b-3ba00150ead4", - "x-ms-request-id": "ad376ff9-efe7-4c25-b79a-35a323bb708e", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1157686718", - "name": "Pipeline1157686718", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-23T18:49:04Z" - }, - "etag": "0300178c-0000-0800-0000-5fe391200000" + "etag": "2f00de6b-0000-0100-0000-60fff5d20000", + "properties": { + "activities": [ + { + "name": "Wait for 60 to 90 seconds", + "type": "Wait", + "dependsOn": [], + "userProperties": [], + "typeProperties": { + "waitTimeInSeconds": { + "value": "@rand(60,90)", + "type": "Expression" + } + } + } + ], + "annotations": [], + "lastPublishTime": "2021-07-27T12:02:26Z" + } + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/MyPipeline1200", + "name": "MyPipeline1200", + "type": "Microsoft.Synapse/workspaces/pipelines", + "etag": "0000802a-0000-0100-0000-5f8042720000", + "properties": { + "lastPublishTime": "2020-10-09T10:58:58Z" + } + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/MyPipeline1374", + "name": "MyPipeline1374", + "type": "Microsoft.Synapse/workspaces/pipelines", + "etag": "0000832a-0000-0100-0000-5f8042740000", + "properties": { + "lastPublishTime": "2020-10-09T10:59:00Z" + } + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/MyPipeline7274", + "name": "MyPipeline7274", + "type": "Microsoft.Synapse/workspaces/pipelines", + "etag": "00008c2a-0000-0100-0000-5f8042c40000", + "properties": { + "lastPublishTime": "2020-10-09T11:00:20Z" + } + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/MyPipeline6076", + "name": "MyPipeline6076", + "type": "Microsoft.Synapse/workspaces/pipelines", + "etag": "0000902a-0000-0100-0000-5f8042c90000", + "properties": { + "lastPublishTime": "2020-10-09T11:00:25Z" + } + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/MyPipeline6340", + "name": "MyPipeline6340", + "type": "Microsoft.Synapse/workspaces/pipelines", + "etag": "0000932a-0000-0100-0000-5f8042e00000", + "properties": { + "lastPublishTime": "2020-10-09T11:00:48Z" + } + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/MyPipeline8937", + "name": "MyPipeline8937", + "type": "Microsoft.Synapse/workspaces/pipelines", + "etag": "0000962a-0000-0100-0000-5f8042e60000", + "properties": { + "lastPublishTime": "2020-10-09T11:00:54Z" + } + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/MyPipeline532", + "name": "MyPipeline532", + "type": "Microsoft.Synapse/workspaces/pipelines", + "etag": "0000ab2a-0000-0100-0000-5f8043aa0000", + "properties": { + "activities": [], + "lastPublishTime": "2020-10-09T11:04:10Z" + } + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/MyPipeline387", + "name": "MyPipeline387", + "type": "Microsoft.Synapse/workspaces/pipelines", + "etag": "1c00887e-0000-0100-0000-61131fa30000", + "properties": { + "activities": [ + { + "name": "Spark job definition1", + "type": "SparkJob", + "dependsOn": [], + "policy": { + "timeout": "7.00:00:00", + "retry": 0, + "retryIntervalInSeconds": 30, + "secureOutput": false, + "secureInput": false + }, + "userProperties": [], + "typeProperties": { + "sparkJob": { + "referenceName": "Spark job definition yifso", + "type": "SparkJobDefinitionReference" + }, + "args": [ + "abc" + ] + } + } + ], + "annotations": [], + "lastPublishTime": "2021-08-11T00:53:55Z" + } + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/MyPipeline849", + "name": "MyPipeline849", + "type": "Microsoft.Synapse/workspaces/pipelines", + "etag": "0000022b-0000-0100-0000-5f8046870000", + "properties": { + "activities": [], + "lastPublishTime": "2020-10-09T11:16:23Z" + } + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/dongwwa_pipeline_1202", + "name": "dongwwa_pipeline_1202", + "type": "Microsoft.Synapse/workspaces/pipelines", + "etag": "fb01956a-0000-0100-0000-60753e610000", + "properties": { + "description": "testDescription", + "activities": [ + { + "name": "Notebook1", + "type": "SynapseNotebook", + "dependsOn": [], + "policy": { + "timeout": "7.00:00:00", + "retry": 0, + "retryIntervalInSeconds": 30, + "secureOutput": false, + "secureInput": false + }, + "userProperties": [], + "typeProperties": { + "notebook": { + "referenceName": "Notebook 1", + "type": "NotebookReference" + }, + "parameters": { + "dongwwavar": { + "value": "dongwwatest", + "type": "string" + } + } + } + } + ], + "parameters": { + "dongwwatest": { + "type": "Array" + } + }, + "annotations": [], + "lastPublishTime": "2021-04-13T06:46:57Z" + } + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/dwpipeline0342", + "name": "dwpipeline0342", + "type": "Microsoft.Synapse/workspaces/pipelines", + "etag": "c2005778-0000-0100-0000-5fd20c300000", + "properties": { + "activities": [ + { + "name": "Notebook1", + "type": "SynapseNotebook", + "dependsOn": [], + "userProperties": [], + "typeProperties": { + "notebook": { + "type": "NotebookReference", + "referenceName": "Notebook 1" + } + }, + "policy": { + "timeout": "7.00:00:00", + "retry": 0, + "retryIntervalInSeconds": 30, + "secureOutput": false, + "secureInput": false + } + } + ], + "annotations": [], + "lastPublishTime": "2020-12-10T11:53:20Z" + } + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/Pipeline36729663", + "name": "Pipeline36729663", + "type": "Microsoft.Synapse/workspaces/pipelines", + "etag": "9500cccb-0000-0100-0000-60657ee40000", + "properties": { + "lastPublishTime": "2021-04-01T08:05:56Z" + } + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/Pipeline57685944", + "name": "Pipeline57685944", + "type": "Microsoft.Synapse/workspaces/pipelines", + "etag": "95007ccc-0000-0100-0000-606583eb0000", + "properties": { + "lastPublishTime": "2021-04-01T08:27:23Z" + } + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/Pipeline19258722", + "name": "Pipeline19258722", + "type": "Microsoft.Synapse/workspaces/pipelines", + "etag": "fa01a87b-0000-0100-0000-60751d4b0000", + "properties": { + "lastPublishTime": "2021-04-13T04:25:47Z" + } + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/Pipeline15194766", + "name": "Pipeline15194766", + "type": "Microsoft.Synapse/workspaces/pipelines", + "etag": "fa015e9b-0000-0100-0000-607521f90000", + "properties": { + "lastPublishTime": "2021-04-13T04:45:45Z" + } + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/Pipeline83704521", + "name": "Pipeline83704521", + "type": "Microsoft.Synapse/workspaces/pipelines", + "etag": "fa01049d-0000-0100-0000-607522340000", + "properties": { + "lastPublishTime": "2021-04-13T04:46:44Z" + } + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/Pipeline13334290", + "name": "Pipeline13334290", + "type": "Microsoft.Synapse/workspaces/pipelines", + "etag": "fb019e25-0000-0100-0000-6075356f0000", + "properties": { + "lastPublishTime": "2021-04-13T06:08:47Z" + } + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/notebook-04-14-00-07", + "name": "notebook-04-14-00-07", + "type": "Microsoft.Synapse/workspaces/pipelines", + "etag": "6003aed9-0000-0100-0000-607695040000", + "properties": { + "activities": [ + { + "policy": { + "timeout": "0.00:00:30", + "retry": 0, + "retryIntervalInSeconds": 30, + "secureInput": false, + "secureOutput": false + }, + "name": "Notebook", + "type": "SynapseNotebook", + "typeProperties": { + "notebook": { + "type": "NotebookReference", + "referenceName": "notebook-04-14-00-07" + }, + "parameters": { + "param": { + "type": "Float", + "defaultValue": 1.2345 + } + } + } + } + ], + "parameters": { + "callBackUri": { + "type": "String" + } + }, + "lastPublishTime": "2021-04-14T07:08:52Z" + } + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/notebook-04-14-00-09", + "name": "notebook-04-14-00-09", + "type": "Microsoft.Synapse/workspaces/pipelines", + "etag": "6103746a-0000-0100-0000-6076954d0000", + "properties": { + "activities": [ + { + "policy": { + "timeout": "0.00:00:30", + "retry": 0, + "retryIntervalInSeconds": 30, + "secureInput": false, + "secureOutput": false + }, + "name": "Notebook", + "type": "SynapseNotebook", + "typeProperties": { + "notebook": { + "type": "NotebookReference", + "referenceName": "notebook-04-14-00-09" + }, + "parameters": { + "param": { + "type": "Float", + "defaultValue": 1.2345 + } + } + } + } + ], + "parameters": { + "callBackUri": { + "type": "String" + } + }, + "lastPublishTime": "2021-04-14T07:10:05Z" + } + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/Pipeline17076005", + "name": "Pipeline17076005", + "type": "Microsoft.Synapse/workspaces/pipelines", + "etag": "2e006380-0000-0100-0000-615556f10000", + "properties": { + "lastPublishTime": "2021-09-30T06:19:29Z" + } + } + ] } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline651612725?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/pipelines/Pipeline%201?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-8385db1505332e4d9bcfe1d6437e7765-c6b03a6204408445-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "3ce2e7dc6cbac5855d1f62c02f60d977", + "traceparent": "00-54a1cba68ad8fb46a69a9880dcde4639-48b661651879b24a-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "62461274efba8294bf0ec928390e3e56", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "359", + "Content-Length": "1078", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:29 GMT", + "Date": "Thu, 30 Sep 2021 06:19:30 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "3ce2e7dc6cbac5855d1f62c02f60d977", - "x-ms-correlation-request-id": "be94cb40-6309-4578-9601-be880c05dd74", - "x-ms-request-id": "a45a957f-b2a0-4d73-97cd-59b8a9c54e91", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline651612725", - "name": "Pipeline651612725", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-23T18:49:26Z" - }, - "etag": "0300428c-0000-0800-0000-5fe391360000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline1261734494?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-3d259c91eafb1443a188ed20a58c3c36-146ad6365cfe4840-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "5c3efc91c95709c358e846a7667995bc", + "x-ms-client-request-id": "62461274efba8294bf0ec928390e3e56", + "x-ms-correlation-request-id": "68dea7fc-5d7e-46b9-b523-3563e0ffc3e5", + "x-ms-request-id": "6433e0c4-1f9f-48da-9068-a7aaf5c59368", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/Pipeline 1", + "name": "Pipeline 1", + "type": "Microsoft.Synapse/workspaces/pipelines", + "properties": { + "activities": [ + { + "name": "Notebook1", + "type": "SynapseNotebook", + "dependsOn": [], + "policy": { + "timeout": "7.00:00:00", + "retry": 0, + "retryIntervalInSeconds": 30, + "secureOutput": false, + "secureInput": false + }, + "userProperties": [], + "typeProperties": { + "notebook": { + "referenceName": "Notebook 1", + "type": "NotebookReference" + } + } + }, + { + "name": "Dataflow1", + "type": "ExecuteDataFlow", + "dependsOn": [], + "policy": { + "timeout": "7.00:00:00", + "retry": 0, + "retryIntervalInSeconds": 30, + "secureOutput": false, + "secureInput": false + }, + "userProperties": [], + "typeProperties": { + "dataflow": { + "referenceName": "Dataflow1", + "type": "DataFlowReference", + "parameters": {}, + "datasetParameters": { + "source1": {}, + "sink1": {} + } + }, + "staging": {}, + "compute": { + "coreCount": 8, + "computeType": "General" + }, + "traceLevel": "Fine" + } + } + ], + "annotations": [], + "lastPublishTime": "2020-12-11T07:31:19Z" + }, + "etag": "c200c28a-0000-0100-0000-5fd320470000" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/pipelines/dongwwa_pipeline_8572?api-version=2020-12-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-4b02ceb2b7bd6f45b2e62286e57c55ca-c40f08db50a47140-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "b445e2e1a4473f87985825fab02a3f5a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "361", + "Content-Length": "454", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:29 GMT", + "Date": "Thu, 30 Sep 2021 06:19:30 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "5c3efc91c95709c358e846a7667995bc", - "x-ms-correlation-request-id": "2d9b7e7e-eb69-4cb4-998d-94f0396c3a0c", - "x-ms-request-id": "1e7a5cb7-d81c-4895-8257-5b118eb25376", + "x-ms-client-request-id": "b445e2e1a4473f87985825fab02a3f5a", + "x-ms-correlation-request-id": "3d4ff0ea-fcd9-4275-bb08-c1e3c99c8eb1", + "x-ms-request-id": "1cba4f97-9c6b-4184-b4ee-f775bb193fe3", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1261734494", - "name": "Pipeline1261734494", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/dongwwa_pipeline_8572", + "name": "dongwwa_pipeline_8572", "type": "Microsoft.Synapse/workspaces/pipelines", "properties": { - "lastPublishTime": "2020-12-23T19:02:46Z" + "description": "testDescription", + "activities": [], + "parameters": { + "dongwwatest": { + "type": "Array" + } + }, + "lastPublishTime": "2020-06-30T13:35:07Z" }, - "etag": "03001996-0000-0800-0000-5fe394560000" + "etag": "300020f3-0000-0100-0000-5efb3f8b0000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline1955846061?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/pipelines/dongwwa_pipeline_6637?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-893ae89b4b4f6e41afe1605502cb9ed2-4b3101073e45354d-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "c01cc0886f1705bee9cb6bbb485c2c1e", + "traceparent": "00-ccb48c82515c93438f2efa60ea3bfea6-b74c882eb9b59f4d-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "bd37dc161b4a1f85dbc85a255aeb0f21", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "361", + "Content-Length": "454", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:29 GMT", + "Date": "Thu, 30 Sep 2021 06:19:30 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "c01cc0886f1705bee9cb6bbb485c2c1e", - "x-ms-correlation-request-id": "c3849e21-e4c6-4cff-9226-bb9a76c4da15", - "x-ms-request-id": "349b163d-ea7f-4879-a1ed-64143e9e5640", + "x-ms-client-request-id": "bd37dc161b4a1f85dbc85a255aeb0f21", + "x-ms-correlation-request-id": "5bece427-717e-47c3-8566-fd7f9d3ee6a1", + "x-ms-request-id": "27cab0c6-12cc-4343-b1cf-255e4251a9b0", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1955846061", - "name": "Pipeline1955846061", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/dongwwa_pipeline_6637", + "name": "dongwwa_pipeline_6637", "type": "Microsoft.Synapse/workspaces/pipelines", "properties": { - "lastPublishTime": "2020-12-23T19:03:14Z" + "description": "testDescription", + "activities": [], + "parameters": { + "dongwwatest": { + "type": "Array" + } + }, + "lastPublishTime": "2020-06-30T13:35:30Z" }, - "etag": "03006c96-0000-0800-0000-5fe394720000" + "etag": "30003ef4-0000-0100-0000-5efb3fa20000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline1743905488?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/pipelines/dongwwa_pipeline_5633?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-6940b24e345a2748818e97018267ead7-7184f52d41833b44-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "c9b3dd3998f4138223d8e4d226dd5ee3", + "traceparent": "00-0ffeee1a21658846854b75d472de3a87-885d816b2c069548-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "1a8517075a19cfd98a06ca61c99ad195", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "361", + "Content-Length": "454", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:29 GMT", + "Date": "Thu, 30 Sep 2021 06:19:31 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "c9b3dd3998f4138223d8e4d226dd5ee3", - "x-ms-correlation-request-id": "05b8ecc8-798f-4579-a6ec-1e6d7c094e75", - "x-ms-request-id": "7d9455ac-e0d1-481a-9d2a-ef5c3336c600", + "x-ms-client-request-id": "1a8517075a19cfd98a06ca61c99ad195", + "x-ms-correlation-request-id": "5519233a-50e9-468f-a1d2-0b4dab036f2c", + "x-ms-request-id": "5a367dea-0647-4b59-8cf5-00e50907df57", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1743905488", - "name": "Pipeline1743905488", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/dongwwa_pipeline_5633", + "name": "dongwwa_pipeline_5633", "type": "Microsoft.Synapse/workspaces/pipelines", "properties": { - "lastPublishTime": "2020-12-23T19:15:57Z" + "description": "testDescription", + "activities": [], + "parameters": { + "dongwwatest": { + "type": "Array" + } + }, + "lastPublishTime": "2020-06-30T13:39:10Z" }, - "etag": "0300db9e-0000-0800-0000-5fe3976d0000" + "etag": "300009ff-0000-0100-0000-5efb407e0000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline269842666?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/pipelines/dongwwa_pipeline_6157?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-16e4bda197aed24b98577269716901cf-9a707dc1ac850648-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "6e38a689184422603d39738b5d08c0fb", + "traceparent": "00-71bf8e84d5006944a9912b8c5d09cdc2-9bb3dcbcf09c4544-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "5c116ece81d7c50b5d26d87e4a62e4ad", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "359", + "Content-Length": "454", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:29 GMT", + "Date": "Thu, 30 Sep 2021 06:19:31 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "6e38a689184422603d39738b5d08c0fb", - "x-ms-correlation-request-id": "1e8f76e6-8530-49b2-80f2-1edbf2284688", - "x-ms-request-id": "7cf2e12b-e25e-4e3b-88ee-374b153c80c2", + "x-ms-client-request-id": "5c116ece81d7c50b5d26d87e4a62e4ad", + "x-ms-correlation-request-id": "ce73c7e8-304d-40d0-8c39-33d33bbae61c", + "x-ms-request-id": "086139d1-c490-439b-a76b-7de4168c3b2e", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline269842666", - "name": "Pipeline269842666", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/dongwwa_pipeline_6157", + "name": "dongwwa_pipeline_6157", "type": "Microsoft.Synapse/workspaces/pipelines", "properties": { - "lastPublishTime": "2020-12-23T19:16:19Z" + "description": "testDescription", + "activities": [], + "parameters": { + "dongwwatest": { + "type": "Array" + } + }, + "lastPublishTime": "2020-06-30T14:47:23Z" }, - "etag": "0300159f-0000-0800-0000-5fe397830000" + "etag": "3100578a-0000-0100-0000-5efb507b0000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline1836727375?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/pipelines/dongwwa_pipeline_8864?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-8a57d6775c83a2469a541d6f27b1f6c5-1811ea284ee5524e-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "896e27bbcbc5f0c83e099d3e8aebde0b", + "traceparent": "00-ac57fc91f7c0ab40a720fd568e5817ee-a31581aaa7783846-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "99f3034925a5bb410367324351245541", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "361", + "Content-Length": "454", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:30 GMT", + "Date": "Thu, 30 Sep 2021 06:19:31 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "896e27bbcbc5f0c83e099d3e8aebde0b", - "x-ms-correlation-request-id": "c6a93364-85b8-48e9-9a1e-b0e817bf76d3", - "x-ms-request-id": "fc374bd6-308c-4377-8c6a-5f64d635c5c3", + "x-ms-client-request-id": "99f3034925a5bb410367324351245541", + "x-ms-correlation-request-id": "be1eea71-b988-4442-b572-2919792c9029", + "x-ms-request-id": "a847fd34-5d1a-425c-a087-fbf6d6110d4b", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1836727375", - "name": "Pipeline1836727375", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/dongwwa_pipeline_8864", + "name": "dongwwa_pipeline_8864", "type": "Microsoft.Synapse/workspaces/pipelines", "properties": { - "lastPublishTime": "2020-12-23T19:28:41Z" + "description": "testDescription", + "activities": [], + "parameters": { + "dongwwatest": { + "type": "Array" + } + }, + "lastPublishTime": "2020-06-30T14:48:15Z" }, - "etag": "030081a7-0000-0800-0000-5fe39a690000" + "etag": "3100068c-0000-0100-0000-5efb50af0000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline2025138465?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/pipelines/MyPipeline?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-56f3bcdf0ab917408552c2be5608586c-0f4eeab1ea826243-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "a231876dbe2420da7d908bbb24f6b51b", + "traceparent": "00-c5786b2a35319642b0f5d3811efdc6f8-8fec4ae3bb224149-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "ec56c4f6b2d9854a0bbfbdf3815a8428", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "361", + "Content-Length": "338", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:30 GMT", + "Date": "Thu, 30 Sep 2021 06:19:31 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "a231876dbe2420da7d908bbb24f6b51b", - "x-ms-correlation-request-id": "a8c2ec42-b88e-4cf1-884a-d3ecbbbc2d40", - "x-ms-request-id": "0b6927ae-1f3d-409d-aaab-bd0ecc7737ba", + "x-ms-client-request-id": "ec56c4f6b2d9854a0bbfbdf3815a8428", + "x-ms-correlation-request-id": "16d25285-0fee-4d89-8215-dd141b75e010", + "x-ms-request-id": "e4267db4-76f6-49a3-80cd-bd8ff33f46ee", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline2025138465", - "name": "Pipeline2025138465", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/MyPipeline", + "name": "MyPipeline", "type": "Microsoft.Synapse/workspaces/pipelines", "properties": { - "lastPublishTime": "2020-12-23T19:29:07Z" + "lastPublishTime": "2020-10-09T10:58:26Z" }, - "etag": "0300d1a7-0000-0800-0000-5fe39a830000" + "etag": "0000752a-0000-0100-0000-5f8042520000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline495811967?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/pipelines/dongwwa_pipeline_0651?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-cdad3219814edb45b0b99457a32218f0-bd8b5d29f09b0244-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "ff17e917d56fbd1dde47303b7b219851", + "traceparent": "00-0bcadc9e892e6445a0ae4b92645637b8-e6a2fcd353250940-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "c5181d2237a6a9ef2d5559704fc77339", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "359", + "Content-Length": "562", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:30 GMT", + "Date": "Thu, 30 Sep 2021 06:19:31 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "ff17e917d56fbd1dde47303b7b219851", - "x-ms-correlation-request-id": "939032ff-3c68-4141-8f00-c32e976e5e22", - "x-ms-request-id": "c879acd5-c2e1-437c-a541-9a662c4d6ab1", + "x-ms-client-request-id": "c5181d2237a6a9ef2d5559704fc77339", + "x-ms-correlation-request-id": "1a2f5549-04f6-48f0-9be5-5eb0d342b7c8", + "x-ms-request-id": "ee47362d-dc20-4767-b858-0f3dee888e64", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline495811967", - "name": "Pipeline495811967", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/dongwwa_pipeline_0651", + "name": "dongwwa_pipeline_0651", "type": "Microsoft.Synapse/workspaces/pipelines", "properties": { - "lastPublishTime": "2020-12-23T19:46:28Z" + "activities": [ + { + "name": "Wait for 60 to 90 seconds", + "type": "Wait", + "dependsOn": [], + "userProperties": [], + "typeProperties": { + "waitTimeInSeconds": { + "value": "@rand(60,90)", + "type": "Expression" + } + } + } + ], + "annotations": [], + "lastPublishTime": "2021-07-27T12:02:26Z" }, - "etag": "03008ab3-0000-0800-0000-5fe39e940000" + "etag": "2f00de6b-0000-0100-0000-60fff5d20000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline1133402875?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/pipelines/MyPipeline1200?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-55f81abcf3193e489d8db83bd2f672b6-eccfa4ea42d74a4b-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "d51e675a1ed6fcd74d4d0b353f0ccb47", + "traceparent": "00-34107a7c4f854a43b23d676c26546dde-894c0458e6774645-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "868796d0f80b96d3b96e8ee5684d3aa8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "361", + "Content-Length": "346", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:30 GMT", + "Date": "Thu, 30 Sep 2021 06:19:31 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "d51e675a1ed6fcd74d4d0b353f0ccb47", - "x-ms-correlation-request-id": "5ac87b17-bb01-4e51-b70a-9d3862ef4e59", - "x-ms-request-id": "21774ee8-70a2-4f6d-9763-78d5a6968e14", + "x-ms-client-request-id": "868796d0f80b96d3b96e8ee5684d3aa8", + "x-ms-correlation-request-id": "63291e59-67b2-432d-bee3-6a5af188f3e9", + "x-ms-request-id": "cd783f6a-f21f-4ef4-a539-6e17c5cea198", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1133402875", - "name": "Pipeline1133402875", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/MyPipeline1200", + "name": "MyPipeline1200", "type": "Microsoft.Synapse/workspaces/pipelines", "properties": { - "lastPublishTime": "2020-12-23T19:46:48Z" + "lastPublishTime": "2020-10-09T10:58:58Z" }, - "etag": "030043b4-0000-0800-0000-5fe39ea80000" + "etag": "0000802a-0000-0100-0000-5f8042720000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline602155748?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/pipelines/MyPipeline1374?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-99ae9ef00cca6f4398e44af0a28af34b-d9cc37719eb50244-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "a1268153dfd4989c6973c3dc8e9fa55b", + "traceparent": "00-c346193c2b51314ead3c8a1747951ed2-0aef213e57ec7840-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "342109e38f0bbf9bd4acbf8358da3643", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "359", + "Content-Length": "346", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:30 GMT", + "Date": "Thu, 30 Sep 2021 06:19:31 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "a1268153dfd4989c6973c3dc8e9fa55b", - "x-ms-correlation-request-id": "cf9f2313-dd95-47bd-8a75-2bcbff28d50d", - "x-ms-request-id": "5cc5cfc5-328c-45db-a3d4-912db24e1598", + "x-ms-client-request-id": "342109e38f0bbf9bd4acbf8358da3643", + "x-ms-correlation-request-id": "3cd4101d-5943-45ea-8224-09b49fb9c1b7", + "x-ms-request-id": "555505ec-b16b-4e7a-b666-c851041a9a9b", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline602155748", - "name": "Pipeline602155748", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/MyPipeline1374", + "name": "MyPipeline1374", "type": "Microsoft.Synapse/workspaces/pipelines", "properties": { - "lastPublishTime": "2020-12-23T20:10:28Z" + "lastPublishTime": "2020-10-09T10:59:00Z" }, - "etag": "030088c5-0000-0800-0000-5fe3a4340000" + "etag": "0000832a-0000-0100-0000-5f8042740000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline947148473?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/pipelines/MyPipeline7274?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-575ab743b1223748b7561d8cf75ad53d-946b5b54c8461641-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "bd603af8dfd7f944111ab121c9e87dd1", + "traceparent": "00-426652df54d2e24099a4abddad49f65f-834b6b673a9e8d49-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "eb22844bfed2291c49810c38a90a41df", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "359", + "Content-Length": "346", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:30 GMT", + "Date": "Thu, 30 Sep 2021 06:19:32 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "bd603af8dfd7f944111ab121c9e87dd1", - "x-ms-correlation-request-id": "f344881d-5626-4e37-83a3-8f6323127f80", - "x-ms-request-id": "ff6bd129-c373-49b8-8792-34b1f1d7af26", + "x-ms-client-request-id": "eb22844bfed2291c49810c38a90a41df", + "x-ms-correlation-request-id": "7f37dde6-c545-48f0-b025-118f0b574807", + "x-ms-request-id": "f79ce27f-2f8b-4adc-aa62-585ae3ce50cd", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline947148473", - "name": "Pipeline947148473", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/MyPipeline7274", + "name": "MyPipeline7274", "type": "Microsoft.Synapse/workspaces/pipelines", "properties": { - "lastPublishTime": "2020-12-23T20:10:58Z" + "lastPublishTime": "2020-10-09T11:00:20Z" }, - "etag": "0300d8c5-0000-0800-0000-5fe3a4520000" + "etag": "00008c2a-0000-0100-0000-5f8042c40000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline1567819041?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/pipelines/MyPipeline6076?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-72d46b88b07bbd4990d2d1480fa293d0-7d38cb8e0272ad48-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "f9e7e87cf6fb7a7ccb866c625afa6eae", + "traceparent": "00-92c8bb6f4546c7448f7e96b85c74a1f9-3c9ad6fd776fd54f-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "458db01b3fa6412dfbc8b15e394f3ddf", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "361", + "Content-Length": "346", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:30 GMT", + "Date": "Thu, 30 Sep 2021 06:19:32 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "f9e7e87cf6fb7a7ccb866c625afa6eae", - "x-ms-correlation-request-id": "14281d95-0f11-46b4-9fb8-8d7b0e9a494c", - "x-ms-request-id": "36e225e5-38a2-4c9d-b7ef-bbb511dd3a4b", + "x-ms-client-request-id": "458db01b3fa6412dfbc8b15e394f3ddf", + "x-ms-correlation-request-id": "63caef75-e028-4a0f-b4e0-a7171f3832c3", + "x-ms-request-id": "f3586ede-ce9a-4823-8a85-8a973e632e8b", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1567819041", - "name": "Pipeline1567819041", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/MyPipeline6076", + "name": "MyPipeline6076", "type": "Microsoft.Synapse/workspaces/pipelines", "properties": { - "lastPublishTime": "2020-12-23T20:30:21Z" + "lastPublishTime": "2020-10-09T11:00:25Z" }, - "etag": "03002ed4-0000-0800-0000-5fe3a8dd0000" + "etag": "0000902a-0000-0100-0000-5f8042c90000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline2065174593?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/pipelines/MyPipeline6340?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-12891dc131fc4346af96c6473851d25d-ff7abef0adc90245-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "053db0a70eac73703c2c8fba2d7ace81", + "traceparent": "00-71a87c24f730a6438843047f95750f73-c04d4f1fb1741b40-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "e49a4a374e2ae4d6edf7eb8a836316ca", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "361", + "Content-Length": "346", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:30 GMT", + "Date": "Thu, 30 Sep 2021 06:19:32 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "053db0a70eac73703c2c8fba2d7ace81", - "x-ms-correlation-request-id": "0ab8080e-dfb1-40c4-8bd6-68a47c685f62", - "x-ms-request-id": "dcdd2bc1-3398-4073-9570-0b21d15657bf", + "x-ms-client-request-id": "e49a4a374e2ae4d6edf7eb8a836316ca", + "x-ms-correlation-request-id": "42e60b4f-380c-4c1f-9a8d-ab7fdf999d8b", + "x-ms-request-id": "e56f6f09-0c93-4960-b7e4-f2e94f7bb7b0", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline2065174593", - "name": "Pipeline2065174593", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/MyPipeline6340", + "name": "MyPipeline6340", "type": "Microsoft.Synapse/workspaces/pipelines", "properties": { - "lastPublishTime": "2020-12-23T20:30:44Z" + "lastPublishTime": "2020-10-09T11:00:48Z" }, - "etag": "03006ed4-0000-0800-0000-5fe3a8f40000" + "etag": "0000932a-0000-0100-0000-5f8042e00000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline1380849574?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/pipelines/MyPipeline8937?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-d89f14fcbe61c14fbbf415535eba04e1-2bc873b88bc83246-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "a660f2f6acb7015fbde6f15173e29e17", + "traceparent": "00-1aee30940e74f14a9b51a286890fb1a7-8366d4df894d4446-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "a867df6bf14d0c9d56e1f00a4dbdf0f9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "361", + "Content-Length": "346", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:31 GMT", + "Date": "Thu, 30 Sep 2021 06:19:32 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "a660f2f6acb7015fbde6f15173e29e17", - "x-ms-correlation-request-id": "9561bb26-21f1-4642-8286-3410892380c8", - "x-ms-request-id": "98d1ac2c-0aff-4820-95b3-0e25520b491b", + "x-ms-client-request-id": "a867df6bf14d0c9d56e1f00a4dbdf0f9", + "x-ms-correlation-request-id": "e16e8aff-20dc-4b02-8bb7-b3ed913938b0", + "x-ms-request-id": "81ee8391-e397-440b-9804-dd67fcc585c6", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1380849574", - "name": "Pipeline1380849574", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/MyPipeline8937", + "name": "MyPipeline8937", "type": "Microsoft.Synapse/workspaces/pipelines", "properties": { - "lastPublishTime": "2021-01-14T22:25:10Z" + "lastPublishTime": "2020-10-09T11:00:54Z" }, - "etag": "0807506f-0000-0800-0000-6000c4c60000" + "etag": "0000962a-0000-0100-0000-5f8042e60000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline1007302775?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/pipelines/MyPipeline532?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-7600b07c747e2f46ba8461a104a69522-1225d1ad8118da4c-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "197903ab78ab6d257774bcce66c24c51", + "traceparent": "00-19e430fea4ccee48934a3bb4c9abe5d5-fc8fd002d778504e-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "5e002c435d6fccb4daa858ae54a2bd97", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "361", + "Content-Length": "360", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:31 GMT", + "Date": "Thu, 30 Sep 2021 06:19:32 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "197903ab78ab6d257774bcce66c24c51", - "x-ms-correlation-request-id": "d10fb07d-27ee-495b-ab9c-beb10fa883f1", - "x-ms-request-id": "d3169013-7115-44bb-8041-fa01f2310ff9", + "x-ms-client-request-id": "5e002c435d6fccb4daa858ae54a2bd97", + "x-ms-correlation-request-id": "36243abf-8443-461d-940e-bcd83cf4db2f", + "x-ms-request-id": "fb4727bf-8f4b-4746-8472-3106be899b04", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1007302775", - "name": "Pipeline1007302775", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/MyPipeline532", + "name": "MyPipeline532", "type": "Microsoft.Synapse/workspaces/pipelines", "properties": { - "lastPublishTime": "2021-01-14T22:25:32Z" + "activities": [], + "lastPublishTime": "2020-10-09T11:04:10Z" }, - "etag": "08074880-0000-0800-0000-6000c4dc0000" + "etag": "0000ab2a-0000-0100-0000-5f8043aa0000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline280500725?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/pipelines/MyPipeline387?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-43926f5ece985d4fb5236c3d969e9dce-40ebbb5ff2cae340-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "686cebb7c899fbf6503b47c51c1eff5a", + "traceparent": "00-2dad0239da7fb94f809c101fa7dac9d5-737f814eb6be574a-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "59f3e6b295e84692ac8d8d495ecc972f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "359", + "Content-Length": "704", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:31 GMT", + "Date": "Thu, 30 Sep 2021 06:19:33 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "686cebb7c899fbf6503b47c51c1eff5a", - "x-ms-correlation-request-id": "1a94a4c4-da3a-43b8-8890-2892319ed932", - "x-ms-request-id": "12d06a06-c44e-4b17-8537-fd2c0a095a07", + "x-ms-client-request-id": "59f3e6b295e84692ac8d8d495ecc972f", + "x-ms-correlation-request-id": "39d1c62e-6858-45a7-a603-0b4ad0278c15", + "x-ms-request-id": "77f73e3a-a8de-4c75-b681-332495bcab28", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline280500725", - "name": "Pipeline280500725", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/MyPipeline387", + "name": "MyPipeline387", "type": "Microsoft.Synapse/workspaces/pipelines", "properties": { - "lastPublishTime": "2021-01-15T16:23:19Z" + "activities": [ + { + "name": "Spark job definition1", + "type": "SparkJob", + "dependsOn": [], + "policy": { + "timeout": "7.00:00:00", + "retry": 0, + "retryIntervalInSeconds": 30, + "secureOutput": false, + "secureInput": false + }, + "userProperties": [], + "typeProperties": { + "sparkJob": { + "referenceName": "Spark job definition yifso", + "type": "SparkJobDefinitionReference" + }, + "args": [ + "abc" + ] + } + } + ], + "annotations": [], + "lastPublishTime": "2021-08-11T00:53:55Z" }, - "etag": "c5074d53-0000-0800-0000-6001c1770000" + "etag": "1c00887e-0000-0100-0000-61131fa30000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline1956491908?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/pipelines/MyPipeline849?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-81e36e5e4155b545a775e938c9ee6a68-db7350256e80e140-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "2a0e788eb5007ed5ccf32e43ef909afb", + "traceparent": "00-0aae1f49551c4f4eabec8f207da61f2c-2575c5f40958d440-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "5646f107b7620e5a2b9acda499efb8b3", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "361", + "Content-Length": "360", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:31 GMT", + "Date": "Thu, 30 Sep 2021 06:19:33 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "2a0e788eb5007ed5ccf32e43ef909afb", - "x-ms-correlation-request-id": "7c88d7b3-872d-491e-a21e-843df466790d", - "x-ms-request-id": "43f4eb19-b5fb-49c9-ae50-b087bba1ca87", + "x-ms-client-request-id": "5646f107b7620e5a2b9acda499efb8b3", + "x-ms-correlation-request-id": "a1177f3c-b02d-4eb7-9dd1-b67b7843a7a8", + "x-ms-request-id": "43fec149-50af-4e09-812d-b2bbc5693d3a", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1956491908", - "name": "Pipeline1956491908", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/MyPipeline849", + "name": "MyPipeline849", "type": "Microsoft.Synapse/workspaces/pipelines", "properties": { - "lastPublishTime": "2021-01-15T16:23:42Z" + "activities": [], + "lastPublishTime": "2020-10-09T11:16:23Z" }, - "etag": "c5077964-0000-0800-0000-6001c18e0000" + "etag": "0000022b-0000-0100-0000-5f8046870000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline209330562?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/pipelines/dongwwa_pipeline_1202?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-1143a6764f285546ac9ebdedd03e7122-347e2d3de120d947-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "8899a0993675e37d0d7ec870305f5059", + "traceparent": "00-56559fa510ca444d847fe3b2e578b152-a20587d958271544-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "6658582497caad119abab1e2d06b6e0e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "359", + "Content-Length": "820", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:31 GMT", + "Date": "Thu, 30 Sep 2021 06:19:33 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "8899a0993675e37d0d7ec870305f5059", - "x-ms-correlation-request-id": "7eb95d27-8e60-4825-b2a2-95fbd0416de8", - "x-ms-request-id": "78b9611e-23f8-4954-acfc-0b6abaac719b", + "x-ms-client-request-id": "6658582497caad119abab1e2d06b6e0e", + "x-ms-correlation-request-id": "07a4163a-cf23-40a2-b1a4-e8328126d7a2", + "x-ms-request-id": "c48a3aa7-a361-4802-ba94-c8f804a49239", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline209330562", - "name": "Pipeline209330562", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/dongwwa_pipeline_1202", + "name": "dongwwa_pipeline_1202", "type": "Microsoft.Synapse/workspaces/pipelines", "properties": { - "lastPublishTime": "2021-01-15T18:19:25Z" + "description": "testDescription", + "activities": [ + { + "name": "Notebook1", + "type": "SynapseNotebook", + "dependsOn": [], + "policy": { + "timeout": "7.00:00:00", + "retry": 0, + "retryIntervalInSeconds": 30, + "secureOutput": false, + "secureInput": false + }, + "userProperties": [], + "typeProperties": { + "notebook": { + "referenceName": "Notebook 1", + "type": "NotebookReference" + }, + "parameters": { + "dongwwavar": { + "value": "dongwwatest", + "type": "string" + } + } + } + } + ], + "parameters": { + "dongwwatest": { + "type": "Array" + } + }, + "annotations": [], + "lastPublishTime": "2021-04-13T06:46:57Z" }, - "etag": "d90701d0-0000-0800-0000-6001dcad0000" + "etag": "fb01956a-0000-0100-0000-60753e610000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline1157145368?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/pipelines/dwpipeline0342?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-b46c3669059e984ab9b6456f0b8a0be7-03c2911eed80f247-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "ee40627422b3025015ee9ba69ab30cbf", + "traceparent": "00-ad5ce619bce98b4b80ade27261d4390f-368b5837b346be47-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "62a62811675bfa348be52d4dc8edadbd", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "361", + "Content-Length": "660", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:31 GMT", + "Date": "Thu, 30 Sep 2021 06:19:33 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "ee40627422b3025015ee9ba69ab30cbf", - "x-ms-correlation-request-id": "d3a2cf70-1ca2-409c-b923-84c28f2dc746", - "x-ms-request-id": "edc05d6a-4f6b-43e0-85ab-d99748f0ce56", + "x-ms-client-request-id": "62a62811675bfa348be52d4dc8edadbd", + "x-ms-correlation-request-id": "e2794fb9-0445-48a6-a175-24cd422330ef", + "x-ms-request-id": "587944ea-630c-466c-9965-65acd01202cc", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1157145368", - "name": "Pipeline1157145368", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/dwpipeline0342", + "name": "dwpipeline0342", "type": "Microsoft.Synapse/workspaces/pipelines", "properties": { - "lastPublishTime": "2021-01-15T18:19:52Z" + "activities": [ + { + "name": "Notebook1", + "type": "SynapseNotebook", + "dependsOn": [], + "userProperties": [], + "typeProperties": { + "notebook": { + "type": "NotebookReference", + "referenceName": "Notebook 1" + } + }, + "policy": { + "timeout": "7.00:00:00", + "retry": 0, + "retryIntervalInSeconds": 30, + "secureOutput": false, + "secureInput": false + } + } + ], + "annotations": [], + "lastPublishTime": "2020-12-10T11:53:20Z" }, - "etag": "d907d1e4-0000-0800-0000-6001dcc80000" + "etag": "c2005778-0000-0100-0000-5fd20c300000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline1721294700?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/pipelines/Pipeline36729663?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-1ac46ca7c8177e4d9a5a3a16cb6367a8-9ef3fc163db0df4f-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "7c2c4ca0778557e4fa2b1d82ec654d6d", + "traceparent": "00-1976ae32da97d84fb542bcc585af7c29-96461309157eb04e-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "0625d9d530747065df99bba806783ec0", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "361", + "Content-Length": "350", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:31 GMT", + "Date": "Thu, 30 Sep 2021 06:19:33 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "7c2c4ca0778557e4fa2b1d82ec654d6d", - "x-ms-correlation-request-id": "c6879979-3ffb-4ed5-a7e9-83a80ef8ae59", - "x-ms-request-id": "471d480f-87f6-4d0d-b139-d50b7b355c57", + "x-ms-client-request-id": "0625d9d530747065df99bba806783ec0", + "x-ms-correlation-request-id": "51b4c9f6-cfe5-4127-8137-c80022451073", + "x-ms-request-id": "cd19a1c7-c14c-443f-b00a-6b55bc9f1f1b", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1721294700", - "name": "Pipeline1721294700", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/Pipeline36729663", + "name": "Pipeline36729663", "type": "Microsoft.Synapse/workspaces/pipelines", "properties": { - "lastPublishTime": "2021-01-19T20:12:06Z" + "lastPublishTime": "2021-04-01T08:05:56Z" }, - "etag": "07001982-0000-0800-0000-60073d160000" + "etag": "9500cccb-0000-0100-0000-60657ee40000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline1221073405?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/pipelines/Pipeline57685944?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-84ff3e58328f28458aa594be8004cbfc-26754372cf1be643-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "8dced5a2ab4f7747509773879bd74959", + "traceparent": "00-b1646c387ce05f4d8797aa293cf06021-d132f7b398bc4740-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "7092bf2c5548bc58235ddbe469c4e5ac", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "361", + "Content-Length": "350", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:32 GMT", + "Date": "Thu, 30 Sep 2021 06:19:33 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "8dced5a2ab4f7747509773879bd74959", - "x-ms-correlation-request-id": "b248f418-ddab-4f52-88e4-63a6b9567827", - "x-ms-request-id": "039184d0-d9b5-4c3d-a191-adb3a55842e3", + "x-ms-client-request-id": "7092bf2c5548bc58235ddbe469c4e5ac", + "x-ms-correlation-request-id": "69db7d1c-1e26-41e3-9cfd-96c2b7742d75", + "x-ms-request-id": "57e75388-8602-4f2c-a4b9-c70e7e189858", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1221073405", - "name": "Pipeline1221073405", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/Pipeline57685944", + "name": "Pipeline57685944", "type": "Microsoft.Synapse/workspaces/pipelines", "properties": { - "lastPublishTime": "2021-01-19T20:30:18Z" + "lastPublishTime": "2021-04-01T08:27:23Z" }, - "etag": "07002789-0000-0800-0000-6007415a0000" + "etag": "95007ccc-0000-0100-0000-606583eb0000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline56022682?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/pipelines/Pipeline19258722?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-b3cb3266b53b5542a9c648927da5c753-5edf1c286e8c5d42-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "e4cf0972d432fdd47de9f48805ce15af", + "traceparent": "00-a6daf206cd88d344bcd3429622ec9876-3e90572c6726d140-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "f60df40c6845e19ac33683c2ab8bf413", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "357", + "Content-Length": "350", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:32 GMT", + "Date": "Thu, 30 Sep 2021 06:19:33 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "e4cf0972d432fdd47de9f48805ce15af", - "x-ms-correlation-request-id": "4731bf2f-334f-4779-baf8-6bffc0f3c266", - "x-ms-request-id": "c87b3a0b-00cd-4656-9cf8-e01ac4d01f13", + "x-ms-client-request-id": "f60df40c6845e19ac33683c2ab8bf413", + "x-ms-correlation-request-id": "ba70bc2b-2050-44d1-8b5d-7529f82b04bd", + "x-ms-request-id": "3578f3d6-6156-45bc-95dd-11c3c3294cb8", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline56022682", - "name": "Pipeline56022682", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/Pipeline19258722", + "name": "Pipeline19258722", "type": "Microsoft.Synapse/workspaces/pipelines", "properties": { - "lastPublishTime": "2021-01-20T18:19:56Z" + "lastPublishTime": "2021-04-13T04:25:47Z" }, - "etag": "31003770-0000-0800-0000-6008744c0000" + "etag": "fa01a87b-0000-0100-0000-60751d4b0000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline64227599?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/pipelines/Pipeline15194766?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-75b84c64bf57db4a827622b5e236166e-0c5aa4ec485aeb4a-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "c5032da07ee4f46f04b52cee035dbc22", + "traceparent": "00-5c34c0d5146f8441a677d34ecb63b322-4f87ba1b97c6d44c-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "08216da73c5a7f748168e2165480071b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "357", + "Content-Length": "350", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:32 GMT", + "Date": "Thu, 30 Sep 2021 06:19:33 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "c5032da07ee4f46f04b52cee035dbc22", - "x-ms-correlation-request-id": "c0a6cbf3-d26b-4ec8-bce2-e3030315805d", - "x-ms-request-id": "bc9d8900-2cb7-423f-b4e0-aeef97b4cb9a", + "x-ms-client-request-id": "08216da73c5a7f748168e2165480071b", + "x-ms-correlation-request-id": "c1c132ec-f784-4f17-a23c-904648b10a50", + "x-ms-request-id": "1c7ec669-5154-4582-a00b-15bda27c0a88", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline64227599", - "name": "Pipeline64227599", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/Pipeline15194766", + "name": "Pipeline15194766", "type": "Microsoft.Synapse/workspaces/pipelines", "properties": { - "lastPublishTime": "2021-01-20T18:20:22Z" + "lastPublishTime": "2021-04-13T04:45:45Z" }, - "etag": "31001e82-0000-0800-0000-600874660000" + "etag": "fa015e9b-0000-0100-0000-607521f90000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline17897275?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/pipelines/Pipeline83704521?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-c4d098aacb428347afdc77abd1379879-5fbba71665ed934b-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "e310c3e26996ce3a00d11066b7be7182", + "traceparent": "00-e1b7b5cafca5f14aa14e2591aa8cd448-49e76bce27b08940-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "119c0eb3476ac37a25b1ac12d2951197", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "357", + "Content-Length": "350", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:32 GMT", + "Date": "Thu, 30 Sep 2021 06:19:34 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "e310c3e26996ce3a00d11066b7be7182", - "x-ms-correlation-request-id": "651b428f-a6b4-40e3-ba4d-1f7c837ea9dd", - "x-ms-request-id": "f5426907-3fde-4184-902c-34b6d7d9cf82", + "x-ms-client-request-id": "119c0eb3476ac37a25b1ac12d2951197", + "x-ms-correlation-request-id": "13d9ea6a-53fa-4867-a70e-d4b8b08796d9", + "x-ms-request-id": "6613bb84-031f-478e-9be1-b8e8455f8b1d", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline17897275", - "name": "Pipeline17897275", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/Pipeline83704521", + "name": "Pipeline83704521", "type": "Microsoft.Synapse/workspaces/pipelines", "properties": { - "lastPublishTime": "2021-01-20T18:34:58Z" + "lastPublishTime": "2021-04-13T04:46:44Z" }, - "etag": "330079f7-0000-0800-0000-600877d20000" + "etag": "fa01049d-0000-0100-0000-607522340000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline15426769?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/pipelines/Pipeline13334290?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-7b58b9838946f44fb2e89fff6df79ee2-f054c5db155ffd4d-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "6de7c38183d3f37599dadf7da7e6f920", + "traceparent": "00-fe4117283a0b344db7d7c8ca823fdd96-72c5d1dbf8105940-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "fc3dc869dca3cf527f8d75dd86838c43", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "357", + "Content-Length": "350", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:32 GMT", + "Date": "Thu, 30 Sep 2021 06:19:34 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "6de7c38183d3f37599dadf7da7e6f920", - "x-ms-correlation-request-id": "a62d185f-ccc4-40e6-a64b-ec1b84c2681e", - "x-ms-request-id": "0d7fe5b3-4e2e-45c2-91f9-bf8858d0befd", + "x-ms-client-request-id": "fc3dc869dca3cf527f8d75dd86838c43", + "x-ms-correlation-request-id": "cb3bbfc4-afb5-4de8-ba2e-d6430a17aa2b", + "x-ms-request-id": "097cfc05-9db5-4447-b4f3-eaf91ae5bc9b", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline15426769", - "name": "Pipeline15426769", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/Pipeline13334290", + "name": "Pipeline13334290", "type": "Microsoft.Synapse/workspaces/pipelines", "properties": { - "lastPublishTime": "2021-01-20T18:35:27Z" + "lastPublishTime": "2021-04-13T06:08:47Z" }, - "etag": "3400f90a-0000-0800-0000-600877ef0000" + "etag": "fb019e25-0000-0100-0000-6075356f0000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline20933056?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/pipelines/notebook-04-14-00-07?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-57f13161dedcc44f86787a22175507b1-95b6b954a740c84a-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "41a6d12d32be3619f335c4126e093d46", + "traceparent": "00-aa12d75b8fe1344db1c9472b6ff53e2e-d2a46774d15c994e-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "9c0f672ee2ef5fa8f25de3a99061aceb", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "357", + "Content-Length": "738", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:32 GMT", + "Date": "Thu, 30 Sep 2021 06:19:34 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "41a6d12d32be3619f335c4126e093d46", - "x-ms-correlation-request-id": "461cea23-657a-4671-9d6b-0275e2a8058b", - "x-ms-request-id": "503d2ae4-2d5d-4c36-8d37-1693a527879a", + "x-ms-client-request-id": "9c0f672ee2ef5fa8f25de3a99061aceb", + "x-ms-correlation-request-id": "542b7846-d5a7-47cb-80d5-577133f53423", + "x-ms-request-id": "9210fde7-1612-492e-9f3d-e4727abb6dd4", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline20933056", - "name": "Pipeline20933056", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/notebook-04-14-00-07", + "name": "notebook-04-14-00-07", "type": "Microsoft.Synapse/workspaces/pipelines", "properties": { - "lastPublishTime": "2021-01-20T21:39:41Z" + "activities": [ + { + "policy": { + "timeout": "0.00:00:30", + "retry": 0, + "retryIntervalInSeconds": 30, + "secureInput": false, + "secureOutput": false + }, + "name": "Notebook", + "type": "SynapseNotebook", + "typeProperties": { + "notebook": { + "type": "NotebookReference", + "referenceName": "notebook-04-14-00-07" + }, + "parameters": { + "param": { + "type": "Float", + "defaultValue": 1.2345 + } + } + } + } + ], + "parameters": { + "callBackUri": { + "type": "String" + } + }, + "lastPublishTime": "2021-04-14T07:08:52Z" }, - "etag": "5100e5e9-0000-0800-0000-6008a31d0000" + "etag": "6003aed9-0000-0100-0000-607695040000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline11571453?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/pipelines/notebook-04-14-00-09?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-7169b1a4083bbe49a8e45aab962e5ae7-9170f91f88cf7741-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "406caa434e765e4f4d1c49bb8abc261a", + "traceparent": "00-4089ff283155cf4ba3d4770de3707bc3-95a85bb1d9ca9743-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "8cad4a570a42d678bccc91ddd19d3da1", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "357", + "Content-Length": "738", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:32 GMT", + "Date": "Thu, 30 Sep 2021 06:19:34 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "406caa434e765e4f4d1c49bb8abc261a", - "x-ms-correlation-request-id": "32c50479-88ac-4136-a32b-f9dab993e7de", - "x-ms-request-id": "bfbd7460-2f72-452b-b094-7f71c18493bc", + "x-ms-client-request-id": "8cad4a570a42d678bccc91ddd19d3da1", + "x-ms-correlation-request-id": "1aa1fcb0-c10c-41a0-a5ab-61642880c8bc", + "x-ms-request-id": "54f196fb-2370-4a50-87b7-534c693c8c2e", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline11571453", - "name": "Pipeline11571453", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/notebook-04-14-00-09", + "name": "notebook-04-14-00-09", "type": "Microsoft.Synapse/workspaces/pipelines", "properties": { - "lastPublishTime": "2021-01-20T21:40:03Z" + "activities": [ + { + "policy": { + "timeout": "0.00:00:30", + "retry": 0, + "retryIntervalInSeconds": 30, + "secureInput": false, + "secureOutput": false + }, + "name": "Notebook", + "type": "SynapseNotebook", + "typeProperties": { + "notebook": { + "type": "NotebookReference", + "referenceName": "notebook-04-14-00-09" + }, + "parameters": { + "param": { + "type": "Float", + "defaultValue": 1.2345 + } + } + } + } + ], + "parameters": { + "callBackUri": { + "type": "String" + } + }, + "lastPublishTime": "2021-04-14T07:10:05Z" }, - "etag": "510085f8-0000-0800-0000-6008a3330000" + "etag": "6103746a-0000-0100-0000-6076954d0000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline17076005?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/pipelines/Pipeline17076005?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-a04b73926e5c2f4bb0442a61e02c4865-4f6bf55b71a89041-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "e539efd830184ec3a9b07a9dbf628590", + "traceparent": "00-782f88f5ffd0cd4783ec03bdd5273d22-c5573224baebe54f-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "6be46924748686a71fdd0a46f9a83f1e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "357", + "Content-Length": "350", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:32 GMT", + "Date": "Thu, 30 Sep 2021 06:19:34 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "e539efd830184ec3a9b07a9dbf628590", - "x-ms-correlation-request-id": "32941f2f-fe1f-44d1-afa5-7ecdec3a8127", - "x-ms-request-id": "038c70f3-b6f5-4855-be7b-7299425c9399", + "x-ms-client-request-id": "6be46924748686a71fdd0a46f9a83f1e", + "x-ms-correlation-request-id": "a206ac71-3157-42e8-945b-f99f9161e36f", + "x-ms-request-id": "fb3e52a8-7a78-486d-8af6-a209217b6e93", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline17076005", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/Pipeline17076005", "name": "Pipeline17076005", "type": "Microsoft.Synapse/workspaces/pipelines", "properties": { - "lastPublishTime": "2021-01-21T18:32:17Z" + "lastPublishTime": "2021-09-30T06:19:29Z" }, - "etag": "140194c6-0000-0800-0000-6009c8b10000" + "etag": "2e006380-0000-0100-0000-615556f10000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline17076005?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/pipelines/Pipeline17076005?api-version=2020-12-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-e91c7ee7c1ac134698e4d4ca83be1d97-d18450ca566db147-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "fd3a999cb879deaa8248f3a1e95dac36", + "traceparent": "00-7ca44cb82d0abe48bf02e3c2298fae64-097335ca5849864e-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "3b8589e100d62301ef38df2350cb8e54", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -6256,36 +2002,33 @@ "ResponseHeaders": { "Access-Control-Allow-Headers": "Location", "Access-Control-Expose-Headers": "Location", - "Content-Length": "374", + "Content-Length": "367", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:33 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/72b7808f-9379-47c1-9f04-3ed02cf35853?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:19:34 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/31417a01-ca97-420d-a486-020be8212312?api-version=2020-12-01", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "fd3a999cb879deaa8248f3a1e95dac36", - "x-ms-request-id": "18d12db3-2b8b-452c-aa72-5d7acc218d3e" + "x-ms-client-request-id": "3b8589e100d62301ef38df2350cb8e54", + "x-ms-request-id": "d7faab75-d3f8-417b-98cd-41edd25527fd" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline17076005", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/Pipeline17076005", "recordId": 0, "state": "Deleting", "created": "0001-01-01T00:00:00", "changed": "0001-01-01T00:00:00", "type": "Pipeline", "name": "Pipeline17076005", - "operationId": "72b7808f-9379-47c1-9f04-3ed02cf35853" + "operationId": "31417a01-ca97-420d-a486-020be8212312" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/72b7808f-9379-47c1-9f04-3ed02cf35853?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/31417a01-ca97-420d-a486-020be8212312?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "f11fb997298220a1455b63cf3c22654b", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "48fb738c021724cb67c07b4d94843654", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -6301,28 +2044,25 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:33 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/72b7808f-9379-47c1-9f04-3ed02cf35853?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:19:34 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/31417a01-ca97-420d-a486-020be8212312?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "f11fb997298220a1455b63cf3c22654b", - "x-ms-request-id": "24b4da55-1306-4be8-b9af-3d2f197b1769" + "x-ms-client-request-id": "48fb738c021724cb67c07b4d94843654", + "x-ms-request-id": "a8e8c8f0-e4bf-44c7-8bb0-239abce73c84" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/72b7808f-9379-47c1-9f04-3ed02cf35853?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/31417a01-ca97-420d-a486-020be8212312?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "168f4303062844c06b26175a21e309d0", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "b826b54f18239fa023a299b0939c23bc", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -6338,28 +2078,25 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:35 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/72b7808f-9379-47c1-9f04-3ed02cf35853?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:19:35 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/31417a01-ca97-420d-a486-020be8212312?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "168f4303062844c06b26175a21e309d0", - "x-ms-request-id": "7666d9ec-1b81-4e15-8430-eec875e9caee" + "x-ms-client-request-id": "b826b54f18239fa023a299b0939c23bc", + "x-ms-request-id": "b7fac412-ae5b-4fa3-a8ed-efb5b7ac8935" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/72b7808f-9379-47c1-9f04-3ed02cf35853?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/31417a01-ca97-420d-a486-020be8212312?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "300908aabb3ee5b307193874f55dd6c3", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "dc97cb5b46cf1d3d7660bfbdc5184e1e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -6375,45 +2112,42 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:36 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/72b7808f-9379-47c1-9f04-3ed02cf35853?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:19:37 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/31417a01-ca97-420d-a486-020be8212312?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "300908aabb3ee5b307193874f55dd6c3", - "x-ms-request-id": "4b55a960-587c-4f40-8a19-028d4c6dd472" + "x-ms-client-request-id": "dc97cb5b46cf1d3d7660bfbdc5184e1e", + "x-ms-request-id": "cae70f0e-2fc8-4f25-87b1-a3702e8c5e67" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/72b7808f-9379-47c1-9f04-3ed02cf35853?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/31417a01-ca97-420d-a486-020be8212312?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "91c24bb9872291c2f8da865b1147fe62", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "4b1417ef240b73f0d35c2474681a91ca", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Content-Length": "0", - "Date": "Thu, 21 Jan 2021 18:32:37 GMT", + "Date": "Thu, 30 Sep 2021 06:19:38 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "91c24bb9872291c2f8da865b1147fe62", - "x-ms-request-id": "1bb29bf5-c79d-41a7-a0b5-a73c441465e5" + "x-ms-client-request-id": "4b1417ef240b73f0d35c2474681a91ca", + "x-ms-request-id": "92b0e912-f940-4592-87f3-e1eb37764e86" }, "ResponseBody": [] } ], "Variables": { - "AZURE_SYNAPSE_WORKSPACE_URL": "https://workspacechhamosynapse.dev.azuresynapse.net", + "AZURE_SYNAPSE_WORKSPACE_URL": "https://testsynapseworkspace.dev.azuresynapse.net", "RandomSeed": "1443441697" } } \ No newline at end of file diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/PipelineClientLiveTests/TestGetPipelineAsync.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/PipelineClientLiveTests/TestGetPipelineAsync.json index c89dcc4cc17b..045247f75d96 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/PipelineClientLiveTests/TestGetPipelineAsync.json +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/PipelineClientLiveTests/TestGetPipelineAsync.json @@ -1,18 +1,15 @@ { "Entries": [ { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline19023801?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/pipelines/Pipeline19023801?api-version=2020-12-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "17", "Content-Type": "application/json", - "traceparent": "00-2a615b14eaaa83469fcb4ffb5a54ee18-d2811ac6720ad045-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "traceparent": "00-0d97ff1d1005634dbee46fe6768ef4cb-7b5537240b803c4e-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2f62f31c7497e8ea7129e631a57f36e0", "x-ms-return-client-request-id": "true" }, @@ -29,37 +26,34 @@ "Location", "Retry-After" ], - "Content-Length": "449", + "Content-Length": "433", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:37 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/904d0c04-6e1e-4daa-a6ef-c45e5a8d7391?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:20:18 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/cbae7392-5ed3-4d1a-830c-a047f417444a?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "2f62f31c7497e8ea7129e631a57f36e0", - "x-ms-request-id": "25af022d-0588-4123-94c0-bb7daa28f50e" + "x-ms-request-id": "307ca86b-b93c-4820-8d57-551972873197" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline19023801", - "recordId": 990959, + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/Pipeline19023801", + "recordId": 2424426, "state": "Creating", - "created": "2021-01-21T18:32:37.6533333Z", - "changed": "2021-01-21T18:32:37.6533333Z", + "created": "2021-09-30T06:20:19.38Z", + "changed": "2021-09-30T06:20:19.38Z", "type": "Pipeline", "name": "Pipeline19023801", - "operationId": "904d0c04-6e1e-4daa-a6ef-c45e5a8d7391", - "artifactId": "77077088-81DB-40D5-88E0-AD34FD6A3263" + "operationId": "cbae7392-5ed3-4d1a-830c-a047f417444a", + "artifactId": "51917C13-EDD6-485F-92BE-0D88678F69A9" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/904d0c04-6e1e-4daa-a6ef-c45e5a8d7391?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/cbae7392-5ed3-4d1a-830c-a047f417444a?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "45bf5f005a43ee28be52a039ac620a52", "x-ms-return-client-request-id": "true" }, @@ -76,27 +70,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:37 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/904d0c04-6e1e-4daa-a6ef-c45e5a8d7391?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:20:18 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/cbae7392-5ed3-4d1a-830c-a047f417444a?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "45bf5f005a43ee28be52a039ac620a52", - "x-ms-request-id": "1e85ffbb-170b-4a1c-a626-8ff38d138a31" + "x-ms-request-id": "9ec9c541-1860-4d19-b231-ff7a5db0ddd6" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/904d0c04-6e1e-4daa-a6ef-c45e5a8d7391?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/cbae7392-5ed3-4d1a-830c-a047f417444a?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "0fbddb0bb8b706a5cd4fb776c919672b", "x-ms-return-client-request-id": "true" }, @@ -113,6068 +104,1964 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:38 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/904d0c04-6e1e-4daa-a6ef-c45e5a8d7391?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:20:19 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/cbae7392-5ed3-4d1a-830c-a047f417444a?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "0fbddb0bb8b706a5cd4fb776c919672b", - "x-ms-request-id": "dc0fca46-42bd-4fb8-bd1e-84cab63fc52f" + "x-ms-request-id": "b163a16a-0104-4e5e-9077-3282f4abdd0c" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/904d0c04-6e1e-4daa-a6ef-c45e5a8d7391?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/cbae7392-5ed3-4d1a-830c-a047f417444a?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "46316045f1c0749c30a5c76275ed6615", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:39 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/904d0c04-6e1e-4daa-a6ef-c45e5a8d7391?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "46316045f1c0749c30a5c76275ed6615", - "x-ms-request-id": "50210fe5-90bc-43cf-8624-1e05a04d1012" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/904d0c04-6e1e-4daa-a6ef-c45e5a8d7391?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "a5c55817d58847cdb9b977f4a3b125a5", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "357", + "Content-Length": "350", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:41 GMT", + "Date": "Thu, 30 Sep 2021 06:20:21 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "a5c55817d58847cdb9b977f4a3b125a5", - "x-ms-correlation-request-id": "9326402d-8b7d-4b96-a47f-e7c412a33188", - "x-ms-request-id": "177c4e9c-2549-47f7-b577-623731f947d5", + "x-ms-client-request-id": "46316045f1c0749c30a5c76275ed6615", + "x-ms-correlation-request-id": "a8a33249-4184-4e47-996a-b5fdb5851d33", + "x-ms-request-id": "83d4ab2e-595e-4166-8291-fe3f73901e78", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline19023801", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/Pipeline19023801", "name": "Pipeline19023801", "type": "Microsoft.Synapse/workspaces/pipelines", "properties": { - "lastPublishTime": "2021-01-21T18:32:39Z" + "lastPublishTime": "2021-09-30T06:20:20Z" }, - "etag": "1401ced5-0000-0800-0000-6009c8c70000" + "etag": "2e009b80-0000-0100-0000-615557240000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/pipelines?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-9cbf03f22f667b42889b35fd5fb7eb2e-449c6cc0f6eabf48-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "4bf475ebc4311a913e48de12f04290df", + "traceparent": "00-d1b97a9ccc5cca4ba140f674d147e393-84ff78bc5def4d4c-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "a5c55817d58847cdb9b977f4a3b125a5", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Content-Length": "18287", + "Content-Length": "13193", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:41 GMT", + "Date": "Thu, 30 Sep 2021 06:20:21 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "4bf475ebc4311a913e48de12f04290df", - "x-ms-request-id": "116ad863-27a0-4e93-a2b0-e7507eeb428c" + "x-ms-client-request-id": "a5c55817d58847cdb9b977f4a3b125a5", + "x-ms-request-id": "16ebcf27-2ceb-4625-8127-1c04a57789d1" }, "ResponseBody": { "value": [ { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1764361910", - "name": "Pipeline1764361910", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "f6018f22-0000-0800-0000-5fd259270000", - "properties": { - "lastPublishTime": "2020-12-10T17:21:43Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline2107615627", - "name": "Pipeline2107615627", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "f6013eaf-0000-0800-0000-5fd25e260000", - "properties": { - "lastPublishTime": "2020-12-10T17:43:02Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1857260053", - "name": "Pipeline1857260053", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "f7011c35-0000-0800-0000-5fd263320000", - "properties": { - "lastPublishTime": "2020-12-10T18:04:34Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1876419613", - "name": "Pipeline1876419613", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "f7012e9b-0000-0800-0000-5fd266de0000", - "properties": { - "lastPublishTime": "2020-12-10T18:20:14Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1740477251", - "name": "Pipeline1740477251", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "62028798-0000-0800-0000-5fd797820000", - "properties": { - "lastPublishTime": "2020-12-14T16:49:06Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1905362346", - "name": "Pipeline1905362346", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "830225fc-0000-0800-0000-5fd8d3e90000", - "properties": { - "lastPublishTime": "2020-12-15T15:19:05Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1609882431", - "name": "Pipeline1609882431", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "83028ffe-0000-0800-0000-5fd8d3fb0000", - "properties": { - "lastPublishTime": "2020-12-15T15:19:23Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1961982223", - "name": "Pipeline1961982223", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "8402a536-0000-0800-0000-5fd8d5a20000", - "properties": { - "lastPublishTime": "2020-12-15T15:26:26Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1387939708", - "name": "Pipeline1387939708", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "84025338-0000-0800-0000-5fd8d5ae0000", - "properties": { - "lastPublishTime": "2020-12-15T15:26:38Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline83733385", - "name": "Pipeline83733385", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "8402ff5c-0000-0800-0000-5fd8d6cb0000", - "properties": { - "lastPublishTime": "2020-12-15T15:31:23Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline946829669", - "name": "Pipeline946829669", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "8402bb5e-0000-0800-0000-5fd8d6d80000", - "properties": { - "lastPublishTime": "2020-12-15T15:31:36Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1325869023", - "name": "Pipeline1325869023", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "87021bb7-0000-0800-0000-5fd8f1620000", - "properties": { - "lastPublishTime": "2020-12-15T17:24:50Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline2043656390", - "name": "Pipeline2043656390", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "870225b9-0000-0800-0000-5fd8f1730000", - "properties": { - "lastPublishTime": "2020-12-15T17:25:07Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline169494837", - "name": "Pipeline169494837", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "8702afd7-0000-0800-0000-5fd8f2630000", - "properties": { - "lastPublishTime": "2020-12-15T17:29:07Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline435107315", - "name": "Pipeline435107315", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "87024eda-0000-0800-0000-5fd8f2780000", - "properties": { - "lastPublishTime": "2020-12-15T17:29:28Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline481261475", - "name": "Pipeline481261475", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "8702ccfa-0000-0800-0000-5fd8f3820000", - "properties": { - "lastPublishTime": "2020-12-15T17:33:54Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline533552945", - "name": "Pipeline533552945", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "87023efd-0000-0800-0000-5fd8f3930000", - "properties": { - "lastPublishTime": "2020-12-15T17:34:11Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline204413031", - "name": "Pipeline204413031", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "88026568-0000-0800-0000-5fd8f6f70000", - "properties": { - "lastPublishTime": "2020-12-15T17:48:39Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1515724574", - "name": "Pipeline1515724574", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "8802b56a-0000-0800-0000-5fd8f70a0000", - "properties": { - "lastPublishTime": "2020-12-15T17:48:58Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline2050037960", - "name": "Pipeline2050037960", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "88026589-0000-0800-0000-5fd8f81b0000", - "properties": { - "lastPublishTime": "2020-12-15T17:53:31Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1519978047", - "name": "Pipeline1519978047", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "8802c98b-0000-0800-0000-5fd8f82f0000", - "properties": { - "lastPublishTime": "2020-12-15T17:53:51Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1262198528", - "name": "Pipeline1262198528", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "8802c8ae-0000-0800-0000-5fd8f9480000", - "properties": { - "lastPublishTime": "2020-12-15T17:58:32Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1607934098", - "name": "Pipeline1607934098", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "8802d1af-0000-0800-0000-5fd8f9520000", - "properties": { - "lastPublishTime": "2020-12-15T17:58:42Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline676567357", - "name": "Pipeline676567357", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "42007e6d-0000-0800-0000-5fda86d30000", - "properties": { - "lastPublishTime": "2020-12-16T22:14:43Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline2031314261", - "name": "Pipeline2031314261", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "42003d72-0000-0800-0000-5fda86e70000", - "properties": { - "lastPublishTime": "2020-12-16T22:15:03Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1714988960", - "name": "Pipeline1714988960", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "42009cb7-0000-0800-0000-5fda87f10000", - "properties": { - "lastPublishTime": "2020-12-16T22:19:29Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1259315615", - "name": "Pipeline1259315615", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "42001bbc-0000-0800-0000-5fda88020000", - "properties": { - "lastPublishTime": "2020-12-16T22:19:46Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1236576079", - "name": "Pipeline1236576079", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "420081f9-0000-0800-0000-5fda88f50000", - "properties": { - "lastPublishTime": "2020-12-16T22:23:49Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline485344534", - "name": "Pipeline485344534", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "4200c2fe-0000-0800-0000-5fda890b0000", - "properties": { - "lastPublishTime": "2020-12-16T22:24:11Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline426580370", - "name": "Pipeline426580370", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "790023aa-0000-0800-0000-5fdbaf9f0000", - "properties": { - "lastPublishTime": "2020-12-17T19:21:03Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline846919427", - "name": "Pipeline846919427", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "79009cb0-0000-0800-0000-5fdbafb20000", - "properties": { - "lastPublishTime": "2020-12-17T19:21:22Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline403400646", - "name": "Pipeline403400646", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "7a005c06-0000-0800-0000-5fdbb0a60000", - "properties": { - "lastPublishTime": "2020-12-17T19:25:26Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline731098520", - "name": "Pipeline731098520", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "7a00cd0e-0000-0800-0000-5fdbb0bd0000", - "properties": { - "lastPublishTime": "2020-12-17T19:25:49Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline361470053", - "name": "Pipeline361470053", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "7a003373-0000-0800-0000-5fdbb1c40000", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/Pipeline 1", + "name": "Pipeline 1", + "type": "Microsoft.Synapse/workspaces/pipelines", + "etag": "c200c28a-0000-0100-0000-5fd320470000", + "properties": { + "activities": [ + { + "name": "Notebook1", + "type": "SynapseNotebook", + "dependsOn": [], + "policy": { + "timeout": "7.00:00:00", + "retry": 0, + "retryIntervalInSeconds": 30, + "secureOutput": false, + "secureInput": false + }, + "userProperties": [], + "typeProperties": { + "notebook": { + "referenceName": "Notebook 1", + "type": "NotebookReference" + } + } + }, + { + "name": "Dataflow1", + "type": "ExecuteDataFlow", + "dependsOn": [], + "policy": { + "timeout": "7.00:00:00", + "retry": 0, + "retryIntervalInSeconds": 30, + "secureOutput": false, + "secureInput": false + }, + "userProperties": [], + "typeProperties": { + "dataflow": { + "referenceName": "Dataflow1", + "type": "DataFlowReference", + "parameters": {}, + "datasetParameters": { + "source1": {}, + "sink1": {} + } + }, + "staging": {}, + "compute": { + "coreCount": 8, + "computeType": "General" + }, + "traceLevel": "Fine" + } + } + ], + "annotations": [], + "lastPublishTime": "2020-12-11T07:31:19Z" + } + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/dongwwa_pipeline_8572", + "name": "dongwwa_pipeline_8572", + "type": "Microsoft.Synapse/workspaces/pipelines", + "etag": "300020f3-0000-0100-0000-5efb3f8b0000", + "properties": { + "description": "testDescription", + "activities": [], + "parameters": { + "dongwwatest": { + "type": "Array" + } + }, + "lastPublishTime": "2020-06-30T13:35:07Z" + } + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/dongwwa_pipeline_6637", + "name": "dongwwa_pipeline_6637", + "type": "Microsoft.Synapse/workspaces/pipelines", + "etag": "30003ef4-0000-0100-0000-5efb3fa20000", "properties": { - "lastPublishTime": "2020-12-17T19:30:12Z" + "description": "testDescription", + "activities": [], + "parameters": { + "dongwwatest": { + "type": "Array" + } + }, + "lastPublishTime": "2020-06-30T13:35:30Z" } }, { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1885848639", - "name": "Pipeline1885848639", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/dongwwa_pipeline_5633", + "name": "dongwwa_pipeline_5633", "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "7a00747a-0000-0800-0000-5fdbb1d50000", + "etag": "300009ff-0000-0100-0000-5efb407e0000", "properties": { - "lastPublishTime": "2020-12-17T19:30:29Z" + "description": "testDescription", + "activities": [], + "parameters": { + "dongwwatest": { + "type": "Array" + } + }, + "lastPublishTime": "2020-06-30T13:39:10Z" } }, { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline2015250014", - "name": "Pipeline2015250014", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/dongwwa_pipeline_6157", + "name": "dongwwa_pipeline_6157", "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "12006f9b-0000-0800-0000-5fdcc7ef0000", + "etag": "3100578a-0000-0100-0000-5efb507b0000", "properties": { - "lastPublishTime": "2020-12-18T15:17:03Z" + "description": "testDescription", + "activities": [], + "parameters": { + "dongwwatest": { + "type": "Array" + } + }, + "lastPublishTime": "2020-06-30T14:47:23Z" } }, { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1958105182", - "name": "Pipeline1958105182", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/dongwwa_pipeline_8864", + "name": "dongwwa_pipeline_8864", "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "1200859d-0000-0800-0000-5fdcc8010000", + "etag": "3100068c-0000-0100-0000-5efb50af0000", "properties": { - "lastPublishTime": "2020-12-18T15:17:21Z" + "description": "testDescription", + "activities": [], + "parameters": { + "dongwwatest": { + "type": "Array" + } + }, + "lastPublishTime": "2020-06-30T14:48:15Z" } }, { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline709448218", - "name": "Pipeline709448218", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/MyPipeline", + "name": "MyPipeline", "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "12005fd8-0000-0800-0000-5fdcc9e60000", + "etag": "0000752a-0000-0100-0000-5f8042520000", "properties": { - "lastPublishTime": "2020-12-18T15:25:26Z" + "lastPublishTime": "2020-10-09T10:58:26Z" } }, { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1370318582", - "name": "Pipeline1370318582", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/dongwwa_pipeline_0651", + "name": "dongwwa_pipeline_0651", "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "12003ddb-0000-0800-0000-5fdcc9f70000", + "etag": "2f00de6b-0000-0100-0000-60fff5d20000", "properties": { - "lastPublishTime": "2020-12-18T15:25:43Z" + "activities": [ + { + "name": "Wait for 60 to 90 seconds", + "type": "Wait", + "dependsOn": [], + "userProperties": [], + "typeProperties": { + "waitTimeInSeconds": { + "value": "@rand(60,90)", + "type": "Expression" + } + } + } + ], + "annotations": [], + "lastPublishTime": "2021-07-27T12:02:26Z" } }, { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline285873936", - "name": "Pipeline285873936", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/MyPipeline1200", + "name": "MyPipeline1200", "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "13001007-0000-0800-0000-5fdccb840000", + "etag": "0000802a-0000-0100-0000-5f8042720000", "properties": { - "lastPublishTime": "2020-12-18T15:32:20Z" + "lastPublishTime": "2020-10-09T10:58:58Z" } }, { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1524730390", - "name": "Pipeline1524730390", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/MyPipeline1374", + "name": "MyPipeline1374", "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "13009409-0000-0800-0000-5fdccb9c0000", + "etag": "0000832a-0000-0100-0000-5f8042740000", "properties": { - "lastPublishTime": "2020-12-18T15:32:44Z" + "lastPublishTime": "2020-10-09T10:59:00Z" } }, { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1151422564", - "name": "Pipeline1151422564", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/MyPipeline7274", + "name": "MyPipeline7274", "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "1400b9ff-0000-0800-0000-5fdcdd420000", + "etag": "00008c2a-0000-0100-0000-5f8042c40000", "properties": { - "lastPublishTime": "2020-12-18T16:48:02Z" + "lastPublishTime": "2020-10-09T11:00:20Z" } }, { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1911534615", - "name": "Pipeline1911534615", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/MyPipeline6076", + "name": "MyPipeline6076", "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "15005501-0000-0800-0000-5fdcdd520000", + "etag": "0000902a-0000-0100-0000-5f8042c90000", "properties": { - "lastPublishTime": "2020-12-18T16:48:18Z" + "lastPublishTime": "2020-10-09T11:00:25Z" } }, { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1175029344", - "name": "Pipeline1175029344", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/MyPipeline6340", + "name": "MyPipeline6340", "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "1500e81e-0000-0800-0000-5fdcde5d0000", + "etag": "0000932a-0000-0100-0000-5f8042e00000", "properties": { - "lastPublishTime": "2020-12-18T16:52:45Z" + "lastPublishTime": "2020-10-09T11:00:48Z" } }, { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline836738180", - "name": "Pipeline836738180", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/MyPipeline8937", + "name": "MyPipeline8937", "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "1500c020-0000-0800-0000-5fdcde6d0000", + "etag": "0000962a-0000-0100-0000-5f8042e60000", "properties": { - "lastPublishTime": "2020-12-18T16:53:01Z" + "lastPublishTime": "2020-10-09T11:00:54Z" } }, { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1365315171", - "name": "Pipeline1365315171", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/MyPipeline532", + "name": "MyPipeline532", "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "1500a941-0000-0800-0000-5fdcdf7e0000", + "etag": "0000ab2a-0000-0100-0000-5f8043aa0000", "properties": { - "lastPublishTime": "2020-12-18T16:57:34Z" + "activities": [], + "lastPublishTime": "2020-10-09T11:04:10Z" } }, { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline941345213", - "name": "Pipeline941345213", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "1500c543-0000-0800-0000-5fdcdf8e0000", - "properties": { - "lastPublishTime": "2020-12-18T16:57:50Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline546860755", - "name": "Pipeline546860755", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "1500d1f4-0000-0800-0000-5fdce5c20000", - "properties": { - "lastPublishTime": "2020-12-18T17:24:18Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline575832323", - "name": "Pipeline575832323", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "15000bf7-0000-0800-0000-5fdce5d60000", - "properties": { - "lastPublishTime": "2020-12-18T17:24:38Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1629474829", - "name": "Pipeline1629474829", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "16002a18-0000-0800-0000-5fdce6f50000", - "properties": { - "lastPublishTime": "2020-12-18T17:29:25Z" - } - } - ], - "nextLink": "https://workspacechhamosynapse.dev.azuresynapse.net:443/pipelines?api-version=2019-06-01-preview\u0026%24skipToken=%2BRID%3A%7ESl8ZAKxwhACBVgAAAAD8BA%3D%3D%23RT%3A1%23TRC%3A50%23ISV%3A2%23IEO%3A65551%23QCF%3A1" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines?api-version=2019-06-01-preview\u0026%24skipToken=%2BRID%3A~Sl8ZAKxwhACBVgAAAAD8BA%3D%3D%23RT%3A1%23TRC%3A50%23ISV%3A2%23IEO%3A65551%23QCF%3A1", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-872b53ad9b4a6448a55bbf8a51f87f6b-d48cf14643dbea4e-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "705ea1e9c1546fa293e98c0679a8d17e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Length": "18284", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:41 GMT", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "705ea1e9c1546fa293e98c0679a8d17e", - "x-ms-request-id": "170a8963-f13e-4531-94d2-4c61657f96d0" - }, - "ResponseBody": { - "value": [ - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline689712987", - "name": "Pipeline689712987", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/MyPipeline387", + "name": "MyPipeline387", "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "1600c11f-0000-0800-0000-5fdce7360000", + "etag": "1c00887e-0000-0100-0000-61131fa30000", "properties": { - "lastPublishTime": "2020-12-18T17:30:30Z" + "activities": [ + { + "name": "Spark job definition1", + "type": "SparkJob", + "dependsOn": [], + "policy": { + "timeout": "7.00:00:00", + "retry": 0, + "retryIntervalInSeconds": 30, + "secureOutput": false, + "secureInput": false + }, + "userProperties": [], + "typeProperties": { + "sparkJob": { + "referenceName": "Spark job definition yifso", + "type": "SparkJobDefinitionReference" + }, + "args": [ + "abc" + ] + } + } + ], + "annotations": [], + "lastPublishTime": "2021-08-11T00:53:55Z" } }, { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline585240566", - "name": "Pipeline585240566", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/MyPipeline849", + "name": "MyPipeline849", "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "16001843-0000-0800-0000-5fdce8770000", + "etag": "0000022b-0000-0100-0000-5f8046870000", "properties": { - "lastPublishTime": "2020-12-18T17:35:51Z" + "activities": [], + "lastPublishTime": "2020-10-09T11:16:23Z" } }, { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1463431359", - "name": "Pipeline1463431359", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/dongwwa_pipeline_1202", + "name": "dongwwa_pipeline_1202", "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "16005145-0000-0800-0000-5fdce88a0000", + "etag": "fb01956a-0000-0100-0000-60753e610000", "properties": { - "lastPublishTime": "2020-12-18T17:36:10Z" + "description": "testDescription", + "activities": [ + { + "name": "Notebook1", + "type": "SynapseNotebook", + "dependsOn": [], + "policy": { + "timeout": "7.00:00:00", + "retry": 0, + "retryIntervalInSeconds": 30, + "secureOutput": false, + "secureInput": false + }, + "userProperties": [], + "typeProperties": { + "notebook": { + "referenceName": "Notebook 1", + "type": "NotebookReference" + }, + "parameters": { + "dongwwavar": { + "value": "dongwwatest", + "type": "string" + } + } + } + } + ], + "parameters": { + "dongwwatest": { + "type": "Array" + } + }, + "annotations": [], + "lastPublishTime": "2021-04-13T06:46:57Z" } }, { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline142427005", - "name": "Pipeline142427005", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/dwpipeline0342", + "name": "dwpipeline0342", "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "9400db5d-0000-0800-0000-5fe0ce910000", + "etag": "c2005778-0000-0100-0000-5fd20c300000", "properties": { - "lastPublishTime": "2020-12-21T16:34:25Z" + "activities": [ + { + "name": "Notebook1", + "type": "SynapseNotebook", + "dependsOn": [], + "userProperties": [], + "typeProperties": { + "notebook": { + "type": "NotebookReference", + "referenceName": "Notebook 1" + } + }, + "policy": { + "timeout": "7.00:00:00", + "retry": 0, + "retryIntervalInSeconds": 30, + "secureOutput": false, + "secureInput": false + } + } + ], + "annotations": [], + "lastPublishTime": "2020-12-10T11:53:20Z" } }, { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline2113438296", - "name": "Pipeline2113438296", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/Pipeline36729663", + "name": "Pipeline36729663", "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "94002669-0000-0800-0000-5fe0cea30000", + "etag": "9500cccb-0000-0100-0000-60657ee40000", "properties": { - "lastPublishTime": "2020-12-21T16:34:43Z" + "lastPublishTime": "2021-04-01T08:05:56Z" } }, { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1863241518", - "name": "Pipeline1863241518", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/Pipeline57685944", + "name": "Pipeline57685944", "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "95000d5d-0000-0800-0000-5fe0d06e0000", + "etag": "95007ccc-0000-0100-0000-606583eb0000", "properties": { - "lastPublishTime": "2020-12-21T16:42:22Z" + "lastPublishTime": "2021-04-01T08:27:23Z" } }, { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline887403503", - "name": "Pipeline887403503", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/Pipeline19258722", + "name": "Pipeline19258722", "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "95007d6b-0000-0800-0000-5fe0d0880000", + "etag": "fa01a87b-0000-0100-0000-60751d4b0000", "properties": { - "lastPublishTime": "2020-12-21T16:42:48Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline310693596", - "name": "Pipeline310693596", + "lastPublishTime": "2021-04-13T04:25:47Z" + } + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/Pipeline15194766", + "name": "Pipeline15194766", + "type": "Microsoft.Synapse/workspaces/pipelines", + "etag": "fa015e9b-0000-0100-0000-607521f90000", + "properties": { + "lastPublishTime": "2021-04-13T04:45:45Z" + } + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/Pipeline83704521", + "name": "Pipeline83704521", "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "96000442-0000-0800-0000-5fe0d1fb0000", + "etag": "fa01049d-0000-0100-0000-607522340000", "properties": { - "lastPublishTime": "2020-12-21T16:48:59Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1741897570", - "name": "Pipeline1741897570", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "96000a4e-0000-0800-0000-5fe0d2130000", - "properties": { - "lastPublishTime": "2020-12-21T16:49:23Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline957622854", - "name": "Pipeline957622854", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "b300e937-0000-0800-0000-5fe109240000", - "properties": { - "lastPublishTime": "2020-12-21T20:44:20Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline2077048772", - "name": "Pipeline2077048772", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "b300903d-0000-0800-0000-5fe109320000", - "properties": { - "lastPublishTime": "2020-12-21T20:44:34Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline851082303", - "name": "Pipeline851082303", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "b400e001-0000-0800-0000-5fe10b250000", - "properties": { - "lastPublishTime": "2020-12-21T20:52:53Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1750442906", - "name": "Pipeline1750442906", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "b400760a-0000-0800-0000-5fe10b390000", - "properties": { - "lastPublishTime": "2020-12-21T20:53:13Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline173146615", - "name": "Pipeline173146615", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "b400adc2-0000-0800-0000-5fe10ce50000", - "properties": { - "lastPublishTime": "2020-12-21T21:00:21Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1984196211", - "name": "Pipeline1984196211", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "b40020cb-0000-0800-0000-5fe10cf50000", - "properties": { - "lastPublishTime": "2020-12-21T21:00:37Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline537708951", - "name": "Pipeline537708951", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "b800c116-0000-0800-0000-5fe114ef0000", - "properties": { - "lastPublishTime": "2020-12-21T21:34:39Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1479158253", - "name": "Pipeline1479158253", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "b8004720-0000-0800-0000-5fe115080000", - "properties": { - "lastPublishTime": "2020-12-21T21:35:04Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1715617179", - "name": "Pipeline1715617179", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "b80091ee-0000-0800-0000-5fe117310000", - "properties": { - "lastPublishTime": "2020-12-21T21:44:17Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline828820192", - "name": "Pipeline828820192", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "b800eff5-0000-0800-0000-5fe117450000", - "properties": { - "lastPublishTime": "2020-12-21T21:44:37Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline548580191", - "name": "Pipeline548580191", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "b9006f83-0000-0800-0000-5fe118ce0000", - "properties": { - "lastPublishTime": "2020-12-21T21:51:10Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1130547557", - "name": "Pipeline1130547557", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "b9006b8b-0000-0800-0000-5fe118e40000", - "properties": { - "lastPublishTime": "2020-12-21T21:51:32Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1108413193", - "name": "Pipeline1108413193", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "000088ed-0000-0800-0000-5fe259cb0000", - "properties": { - "lastPublishTime": "2020-12-22T20:40:43Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1470104174", - "name": "Pipeline1470104174", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "0000b7ed-0000-0800-0000-5fe259de0000", - "properties": { - "lastPublishTime": "2020-12-22T20:41:02Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1719665946", - "name": "Pipeline1719665946", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "000065f5-0000-0800-0000-5fe25bfd0000", - "properties": { - "lastPublishTime": "2020-12-22T20:50:05Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline760779103", - "name": "Pipeline760779103", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "0000c3f5-0000-0800-0000-5fe25c120000", - "properties": { - "lastPublishTime": "2020-12-22T20:50:26Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline263155253", - "name": "Pipeline263155253", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "000046fa-0000-0800-0000-5fe25db90000", - "properties": { - "lastPublishTime": "2020-12-22T20:57:29Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1186264083", - "name": "Pipeline1186264083", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "00007dfa-0000-0800-0000-5fe25dcf0000", - "properties": { - "lastPublishTime": "2020-12-22T20:57:51Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline947795739", - "name": "Pipeline947795739", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "03005478-0000-0800-0000-5fe38a1b0000", - "properties": { - "lastPublishTime": "2020-12-23T18:19:07Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline947006839", - "name": "Pipeline947006839", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "03008678-0000-0800-0000-5fe38a2d0000", - "properties": { - "lastPublishTime": "2020-12-23T18:19:25Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1075747870", - "name": "Pipeline1075747870", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "03002f81-0000-0800-0000-5fe38d6d0000", - "properties": { - "lastPublishTime": "2020-12-23T18:33:17Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline611082881", - "name": "Pipeline611082881", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "03006c81-0000-0800-0000-5fe38d810000", - "properties": { - "lastPublishTime": "2020-12-23T18:33:37Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1157686718", - "name": "Pipeline1157686718", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "0300178c-0000-0800-0000-5fe391200000", - "properties": { - "lastPublishTime": "2020-12-23T18:49:04Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline651612725", - "name": "Pipeline651612725", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "0300428c-0000-0800-0000-5fe391360000", - "properties": { - "lastPublishTime": "2020-12-23T18:49:26Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1261734494", - "name": "Pipeline1261734494", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "03001996-0000-0800-0000-5fe394560000", - "properties": { - "lastPublishTime": "2020-12-23T19:02:46Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1955846061", - "name": "Pipeline1955846061", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "03006c96-0000-0800-0000-5fe394720000", - "properties": { - "lastPublishTime": "2020-12-23T19:03:14Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1743905488", - "name": "Pipeline1743905488", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "0300db9e-0000-0800-0000-5fe3976d0000", - "properties": { - "lastPublishTime": "2020-12-23T19:15:57Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline269842666", - "name": "Pipeline269842666", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "0300159f-0000-0800-0000-5fe397830000", - "properties": { - "lastPublishTime": "2020-12-23T19:16:19Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1836727375", - "name": "Pipeline1836727375", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "030081a7-0000-0800-0000-5fe39a690000", - "properties": { - "lastPublishTime": "2020-12-23T19:28:41Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline2025138465", - "name": "Pipeline2025138465", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "0300d1a7-0000-0800-0000-5fe39a830000", - "properties": { - "lastPublishTime": "2020-12-23T19:29:07Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline495811967", - "name": "Pipeline495811967", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "03008ab3-0000-0800-0000-5fe39e940000", - "properties": { - "lastPublishTime": "2020-12-23T19:46:28Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1133402875", - "name": "Pipeline1133402875", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "030043b4-0000-0800-0000-5fe39ea80000", - "properties": { - "lastPublishTime": "2020-12-23T19:46:48Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline602155748", - "name": "Pipeline602155748", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "030088c5-0000-0800-0000-5fe3a4340000", - "properties": { - "lastPublishTime": "2020-12-23T20:10:28Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline947148473", - "name": "Pipeline947148473", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "0300d8c5-0000-0800-0000-5fe3a4520000", - "properties": { - "lastPublishTime": "2020-12-23T20:10:58Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1567819041", - "name": "Pipeline1567819041", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "03002ed4-0000-0800-0000-5fe3a8dd0000", - "properties": { - "lastPublishTime": "2020-12-23T20:30:21Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline2065174593", - "name": "Pipeline2065174593", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "03006ed4-0000-0800-0000-5fe3a8f40000", - "properties": { - "lastPublishTime": "2020-12-23T20:30:44Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1380849574", - "name": "Pipeline1380849574", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "0807506f-0000-0800-0000-6000c4c60000", - "properties": { - "lastPublishTime": "2021-01-14T22:25:10Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1007302775", - "name": "Pipeline1007302775", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "08074880-0000-0800-0000-6000c4dc0000", - "properties": { - "lastPublishTime": "2021-01-14T22:25:32Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline280500725", - "name": "Pipeline280500725", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "c5074d53-0000-0800-0000-6001c1770000", - "properties": { - "lastPublishTime": "2021-01-15T16:23:19Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1956491908", - "name": "Pipeline1956491908", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "c5077964-0000-0800-0000-6001c18e0000", - "properties": { - "lastPublishTime": "2021-01-15T16:23:42Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline209330562", - "name": "Pipeline209330562", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "d90701d0-0000-0800-0000-6001dcad0000", - "properties": { - "lastPublishTime": "2021-01-15T18:19:25Z" - } - } - ], - "nextLink": "https://workspacechhamosynapse.dev.azuresynapse.net:443/pipelines?api-version=2019-06-01-preview\u0026%24skipToken=%2BRID%3A%7ESl8ZAKxwhACXZQAAAAD8BA%3D%3D%23RT%3A2%23TRC%3A100%23ISV%3A2%23IEO%3A65551%23QCF%3A1" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines?api-version=2019-06-01-preview\u0026%24skipToken=%2BRID%3A~Sl8ZAKxwhACXZQAAAAD8BA%3D%3D%23RT%3A2%23TRC%3A100%23ISV%3A2%23IEO%3A65551%23QCF%3A1", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-b37f52c2d4311941988f4047d90a7d49-7c668c5e51c3f541-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "0077227f1af953e3c6aa663ff7bb5776", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Length": "3603", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:41 GMT", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "0077227f1af953e3c6aa663ff7bb5776", - "x-ms-request-id": "3d70bd7b-f8aa-4621-8589-bcd2ab61cd7d" - }, - "ResponseBody": { - "value": [ - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1157145368", - "name": "Pipeline1157145368", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "d907d1e4-0000-0800-0000-6001dcc80000", - "properties": { - "lastPublishTime": "2021-01-15T18:19:52Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1721294700", - "name": "Pipeline1721294700", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "07001982-0000-0800-0000-60073d160000", - "properties": { - "lastPublishTime": "2021-01-19T20:12:06Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1221073405", - "name": "Pipeline1221073405", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "07002789-0000-0800-0000-6007415a0000", - "properties": { - "lastPublishTime": "2021-01-19T20:30:18Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline56022682", - "name": "Pipeline56022682", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "31003770-0000-0800-0000-6008744c0000", - "properties": { - "lastPublishTime": "2021-01-20T18:19:56Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline64227599", - "name": "Pipeline64227599", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "31001e82-0000-0800-0000-600874660000", - "properties": { - "lastPublishTime": "2021-01-20T18:20:22Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline17897275", - "name": "Pipeline17897275", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "330079f7-0000-0800-0000-600877d20000", - "properties": { - "lastPublishTime": "2021-01-20T18:34:58Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline15426769", - "name": "Pipeline15426769", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "3400f90a-0000-0800-0000-600877ef0000", - "properties": { - "lastPublishTime": "2021-01-20T18:35:27Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline20933056", - "name": "Pipeline20933056", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "5100e5e9-0000-0800-0000-6008a31d0000", - "properties": { - "lastPublishTime": "2021-01-20T21:39:41Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline11571453", - "name": "Pipeline11571453", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "510085f8-0000-0800-0000-6008a3330000", - "properties": { - "lastPublishTime": "2021-01-20T21:40:03Z" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline19023801", - "name": "Pipeline19023801", - "type": "Microsoft.Synapse/workspaces/pipelines", - "etag": "1401ced5-0000-0800-0000-6009c8c70000", - "properties": { - "lastPublishTime": "2021-01-21T18:32:39Z" - } - } - ] - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline1764361910?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-dcd5082aed3a92459b68773ba6f5b172-6368c8e543fa3a4b-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "010a9729b5522950d284b848378ba096", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "361", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:41 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-ms-client-request-id": "010a9729b5522950d284b848378ba096", - "x-ms-correlation-request-id": "5180a80c-235d-426e-933f-e12bc5e1d096", - "x-ms-request-id": "c019d5bd-714b-41c0-a266-83bb6cf1d0e2", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1764361910", - "name": "Pipeline1764361910", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-10T17:21:43Z" - }, - "etag": "f6018f22-0000-0800-0000-5fd259270000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline2107615627?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-a3afd7ba399db545a04841b41a09ab39-a51f7a6645f3ce4f-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "cd925f7790cbcee6bd0ba9a95a6278d7", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "361", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:41 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-ms-client-request-id": "cd925f7790cbcee6bd0ba9a95a6278d7", - "x-ms-correlation-request-id": "af4222d9-e40c-45ac-92a7-22f0b8b38a84", - "x-ms-request-id": "0d83a0a4-566d-453a-92d9-ed1d5eeb8b12", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline2107615627", - "name": "Pipeline2107615627", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-10T17:43:02Z" - }, - "etag": "f6013eaf-0000-0800-0000-5fd25e260000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline1857260053?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-35e1b9b5160c9348bae835524c58ed6d-25b345f1d6403c4f-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "e1dd1692d09dc92cd24d2d75619b1b3b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "361", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:41 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-ms-client-request-id": "e1dd1692d09dc92cd24d2d75619b1b3b", - "x-ms-correlation-request-id": "8742dad2-fa0a-482b-9e9a-7b082115205c", - "x-ms-request-id": "6ca37cb8-bced-4d6e-b3e4-6ac9916f03b9", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1857260053", - "name": "Pipeline1857260053", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-10T18:04:34Z" - }, - "etag": "f7011c35-0000-0800-0000-5fd263320000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline1876419613?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-e050b7dbd38ad04c88c7e4a173f51363-71511c256ba9a147-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "97c8d009892898abb13b43460ca6ce6f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "361", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:42 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-ms-client-request-id": "97c8d009892898abb13b43460ca6ce6f", - "x-ms-correlation-request-id": "10ea4220-7abc-4370-a983-ab8111455557", - "x-ms-request-id": "5a9f3393-cffe-4c35-8782-5dcf3f4b7221", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1876419613", - "name": "Pipeline1876419613", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-10T18:20:14Z" - }, - "etag": "f7012e9b-0000-0800-0000-5fd266de0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline1740477251?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-2b87ef4b7f4ebd4bb576acc9377947ed-e3a7e109d90b9b49-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "20b5e00bbfaea6f833c8fb7d62716d21", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "361", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:42 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-ms-client-request-id": "20b5e00bbfaea6f833c8fb7d62716d21", - "x-ms-correlation-request-id": "c34332cf-03ce-4cda-a250-99a7bf3f47bc", - "x-ms-request-id": "db099a49-8c52-4da7-b4c7-ece8c83332d9", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1740477251", - "name": "Pipeline1740477251", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-14T16:49:06Z" - }, - "etag": "62028798-0000-0800-0000-5fd797820000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline1905362346?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-3573506023011f4aa917f8cfeda8b36f-a5ec93390012804e-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "8aa06df0e09a09af6b4430618ce5bd2c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "361", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:42 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-ms-client-request-id": "8aa06df0e09a09af6b4430618ce5bd2c", - "x-ms-correlation-request-id": "c1fe9a0e-9c2c-4d71-b0de-c4696fe62962", - "x-ms-request-id": "fcf8e7de-98d8-4a1b-94b1-27881dd20b0f", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1905362346", - "name": "Pipeline1905362346", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-15T15:19:05Z" - }, - "etag": "830225fc-0000-0800-0000-5fd8d3e90000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline1609882431?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-5f065750e5c1e34c86e76b3850304a4d-dc61d24133fe2c47-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "8069bd7efae64a8dd721645f8d2d3640", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "361", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:42 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-ms-client-request-id": "8069bd7efae64a8dd721645f8d2d3640", - "x-ms-correlation-request-id": "0c7ba919-51e1-4dee-bf30-f70361519793", - "x-ms-request-id": "304d9901-2f37-46ee-b3bd-756400287304", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1609882431", - "name": "Pipeline1609882431", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-15T15:19:23Z" - }, - "etag": "83028ffe-0000-0800-0000-5fd8d3fb0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline1961982223?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-6847b613232b7945a37fa4054a14aaaf-97863461dd66c843-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "9e5622ce44062ad531acb5698f971a4d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "361", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:42 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-ms-client-request-id": "9e5622ce44062ad531acb5698f971a4d", - "x-ms-correlation-request-id": "e34647cb-ed03-42ef-be36-f399023f1f55", - "x-ms-request-id": "46f67068-d3ee-4789-b4bc-c62bedb6eb68", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1961982223", - "name": "Pipeline1961982223", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-15T15:26:26Z" - }, - "etag": "8402a536-0000-0800-0000-5fd8d5a20000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline1387939708?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-e716c9066cdc164794329a6db4bdf629-c9a351fb18cedf46-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "a5fecf0bec07f53be055b2787c4f7b3d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "361", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:42 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-ms-client-request-id": "a5fecf0bec07f53be055b2787c4f7b3d", - "x-ms-correlation-request-id": "8f8120d8-2276-478c-9540-02a641fb19e1", - "x-ms-request-id": "0786088c-fc14-4e01-acb3-b83d15236ff5", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1387939708", - "name": "Pipeline1387939708", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-15T15:26:38Z" - }, - "etag": "84025338-0000-0800-0000-5fd8d5ae0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline83733385?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-8c70bad6765e584db96a3d6551459eff-f8e63895d34f094e-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "6a92ef0e1e8e3a25e73e4f394523bb40", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "357", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:42 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-ms-client-request-id": "6a92ef0e1e8e3a25e73e4f394523bb40", - "x-ms-correlation-request-id": "e0a89417-9f54-4e74-ae24-897849276eff", - "x-ms-request-id": "0225d0cd-1fab-4dc8-91ee-bd75e306e534", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline83733385", - "name": "Pipeline83733385", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-15T15:31:23Z" - }, - "etag": "8402ff5c-0000-0800-0000-5fd8d6cb0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline946829669?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-f36b1dcc1985524392b6dec852fe1c72-593a88ca25a88940-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "be531607902fe239e661beb0915daee1", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "359", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:42 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-ms-client-request-id": "be531607902fe239e661beb0915daee1", - "x-ms-correlation-request-id": "4cc3a340-2287-4b12-803a-a25309714866", - "x-ms-request-id": "a639e1b9-ae53-4c43-a515-c8ee41be891e", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline946829669", - "name": "Pipeline946829669", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-15T15:31:36Z" - }, - "etag": "8402bb5e-0000-0800-0000-5fd8d6d80000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline1325869023?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-10362ad75406784e90c7f6e3d0e4e0b6-3942442eb5b12e45-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "9f5a7830b004ecbfa9c4bdc89d01afbc", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "361", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:43 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-ms-client-request-id": "9f5a7830b004ecbfa9c4bdc89d01afbc", - "x-ms-correlation-request-id": "01a412b7-54db-4be8-8247-5ada426c7a00", - "x-ms-request-id": "ab840f20-b92e-4a45-b065-572bc9109802", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1325869023", - "name": "Pipeline1325869023", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-15T17:24:50Z" - }, - "etag": "87021bb7-0000-0800-0000-5fd8f1620000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline2043656390?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-a2abe3c4f7bf174a92cb17852146fccd-a4a9341a3251ea48-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "65717299bcfc7d0eb6b0832d6075a88a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "361", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:43 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-ms-client-request-id": "65717299bcfc7d0eb6b0832d6075a88a", - "x-ms-correlation-request-id": "b52b35a3-543c-404a-80c2-5da6bba3ba38", - "x-ms-request-id": "af98148c-0d60-4f38-b0e7-ab274a766803", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline2043656390", - "name": "Pipeline2043656390", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-15T17:25:07Z" - }, - "etag": "870225b9-0000-0800-0000-5fd8f1730000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline169494837?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-982fc391214a2341b21daf7514dd0669-b5e79b951f9e134a-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "cd086d8f1cc9563c5766156ad37045e4", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "359", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:43 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-ms-client-request-id": "cd086d8f1cc9563c5766156ad37045e4", - "x-ms-correlation-request-id": "0840a0d3-8078-4a4f-8415-e14de2c451c4", - "x-ms-request-id": "36f3aaa6-53bb-4a1e-8a21-ccb944adaf3a", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline169494837", - "name": "Pipeline169494837", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-15T17:29:07Z" - }, - "etag": "8702afd7-0000-0800-0000-5fd8f2630000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline435107315?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-0e028dd3f323494eac383679897cc7cd-b35582d773014d46-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "1f1601b149ec74e569dde8532c928c34", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "359", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:43 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-ms-client-request-id": "1f1601b149ec74e569dde8532c928c34", - "x-ms-correlation-request-id": "50ecda5a-cc09-4e39-9a8d-fd02bc65fea5", - "x-ms-request-id": "4aa803c8-c225-4502-ac24-3cfd97883466", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline435107315", - "name": "Pipeline435107315", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-15T17:29:28Z" - }, - "etag": "87024eda-0000-0800-0000-5fd8f2780000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline481261475?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-6b9794e5792d2d44b569136bf7b7d829-25787796d001624e-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "2f39331be2f87df3361a0d95a7a3aa46", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "359", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:43 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-ms-client-request-id": "2f39331be2f87df3361a0d95a7a3aa46", - "x-ms-correlation-request-id": "a75b97ae-068f-4c00-acb3-f1c3b7210bfa", - "x-ms-request-id": "83e44d92-1a39-4ba1-af11-057cfe13356f", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline481261475", - "name": "Pipeline481261475", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-15T17:33:54Z" - }, - "etag": "8702ccfa-0000-0800-0000-5fd8f3820000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline533552945?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-e14639e7fac03f43a82a494147d1775f-5203b4327d7da942-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "5e7b9e6b895e469d889463eb33e829c5", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "359", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:43 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-ms-client-request-id": "5e7b9e6b895e469d889463eb33e829c5", - "x-ms-correlation-request-id": "b9398fa7-5e0d-40f9-9e59-7362e0510551", - "x-ms-request-id": "88c898b8-19db-47b2-8ecc-0fbe444f999b", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline533552945", - "name": "Pipeline533552945", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-15T17:34:11Z" - }, - "etag": "87023efd-0000-0800-0000-5fd8f3930000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline204413031?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-4c5ae968d981e743869775f94413b768-800345b2d9a71847-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "9f4fe0da1536ceeb0e98e8d23b50ccc6", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "359", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:43 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-ms-client-request-id": "9f4fe0da1536ceeb0e98e8d23b50ccc6", - "x-ms-correlation-request-id": "03f43c12-0ec9-4f02-87e6-cf8906721547", - "x-ms-request-id": "1406cf2a-c6af-4be3-9bc3-df78ee27d922", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline204413031", - "name": "Pipeline204413031", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-15T17:48:39Z" - }, - "etag": "88026568-0000-0800-0000-5fd8f6f70000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline1515724574?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-fadb6fe668372840b857a5976007113f-6c363554b2002949-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "8de7a2322e1692d695f3a6647f074a4d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "361", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:43 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-ms-client-request-id": "8de7a2322e1692d695f3a6647f074a4d", - "x-ms-correlation-request-id": "d59e0da0-e5ad-4a20-ae92-a05118de5f7b", - "x-ms-request-id": "540f6d62-a60e-4a22-ab12-bc085bfb9609", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1515724574", - "name": "Pipeline1515724574", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-15T17:48:58Z" - }, - "etag": "8802b56a-0000-0800-0000-5fd8f70a0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline2050037960?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-b1b37de32a06d443bd349b4a10e5b44f-548d6bad15cefa40-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "c6ba48f00a54550fb3ac4fc5a0cb0a38", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "361", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:44 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-ms-client-request-id": "c6ba48f00a54550fb3ac4fc5a0cb0a38", - "x-ms-correlation-request-id": "595103a0-b1c2-47bc-abcf-83f6795683b1", - "x-ms-request-id": "5f3c1cbd-0f69-4d42-b73b-c23a302143d5", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline2050037960", - "name": "Pipeline2050037960", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-15T17:53:31Z" - }, - "etag": "88026589-0000-0800-0000-5fd8f81b0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline1519978047?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-38d78f5a80b90142a1dadf03a1c332f5-d61df9cad5a8c94a-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "90b89dc89b00acae0abc0a436f874f06", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "361", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:44 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-ms-client-request-id": "90b89dc89b00acae0abc0a436f874f06", - "x-ms-correlation-request-id": "6bc7386e-8f09-4e7e-8cae-e2f4eca63644", - "x-ms-request-id": "2d610bf0-4acb-4d92-9b37-a6e866a26490", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1519978047", - "name": "Pipeline1519978047", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-15T17:53:51Z" - }, - "etag": "8802c98b-0000-0800-0000-5fd8f82f0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline1262198528?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-90a1030d6af475429e44240472bdc003-a90ff74e60bdbc43-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "f3e19b4d059528719392da6ade10f2ca", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "361", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:44 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-ms-client-request-id": "f3e19b4d059528719392da6ade10f2ca", - "x-ms-correlation-request-id": "c25ad9fb-488f-47ea-a5ba-aa4e0db8a59d", - "x-ms-request-id": "8ec029b1-1ebd-4139-8c21-b38cbeca6fbc", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1262198528", - "name": "Pipeline1262198528", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-15T17:58:32Z" - }, - "etag": "8802c8ae-0000-0800-0000-5fd8f9480000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline1607934098?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-d131bfcca802d14495ffc9711d05f6c8-a4ba52865c278241-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "e19b6ee9ba4e544d9a0ebc9700cbe62b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "361", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:44 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-ms-client-request-id": "e19b6ee9ba4e544d9a0ebc9700cbe62b", - "x-ms-correlation-request-id": "51663485-19ec-4745-a7ee-9bbf31851f12", - "x-ms-request-id": "f39ce229-1dff-40e4-8090-db2d16269aa8", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1607934098", - "name": "Pipeline1607934098", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-15T17:58:42Z" - }, - "etag": "8802d1af-0000-0800-0000-5fd8f9520000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline676567357?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-e3e8ea5813c4e74b9d3e09003d0f8fcc-69cd7d186084b748-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "0577485c16e9c2a22c90fd6ec144cdf9", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "359", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:44 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-ms-client-request-id": "0577485c16e9c2a22c90fd6ec144cdf9", - "x-ms-correlation-request-id": "191ffd2e-b6ae-4963-b2aa-ecdbb2608a37", - "x-ms-request-id": "51ccf570-167e-4023-9c1d-0b165fbd862d", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline676567357", - "name": "Pipeline676567357", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-16T22:14:43Z" - }, - "etag": "42007e6d-0000-0800-0000-5fda86d30000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline2031314261?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-8c2004bc7012394fa02e275c355b456f-7d37f9709b1b1f48-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "015a3fca6dec93b84d8c598649d928c7", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "361", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:44 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-ms-client-request-id": "015a3fca6dec93b84d8c598649d928c7", - "x-ms-correlation-request-id": "7f5786a8-3edc-4dbe-9fa4-fe09a47b1136", - "x-ms-request-id": "e1aa0551-2223-46d3-ac37-e43c345321a5", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline2031314261", - "name": "Pipeline2031314261", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-16T22:15:03Z" - }, - "etag": "42003d72-0000-0800-0000-5fda86e70000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline1714988960?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-36edba612e47624eb286c583dfba9414-e566484c1ec42249-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "950dafacec98d2e0cbd8b5bebcdf9356", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "361", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:44 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-ms-client-request-id": "950dafacec98d2e0cbd8b5bebcdf9356", - "x-ms-correlation-request-id": "364b1d08-9e3f-4e27-a6f9-2d51479c540c", - "x-ms-request-id": "6dda73f5-3581-49b9-b128-747bcda5f183", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1714988960", - "name": "Pipeline1714988960", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-16T22:19:29Z" - }, - "etag": "42009cb7-0000-0800-0000-5fda87f10000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline1259315615?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-203f36a8f2be334cae00895e57c6a9af-46366f9acfb01149-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "c0ccc241e471ee3f90e4b75cbd1c7952", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "361", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:44 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-ms-client-request-id": "c0ccc241e471ee3f90e4b75cbd1c7952", - "x-ms-correlation-request-id": "75821acb-5ba7-41e4-9621-4fb22515b901", - "x-ms-request-id": "08399591-7a36-4dfe-875f-5c1f0f6fc03d", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1259315615", - "name": "Pipeline1259315615", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-16T22:19:46Z" - }, - "etag": "42001bbc-0000-0800-0000-5fda88020000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline1236576079?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-ac2f2ff442b67f499723c2ab1c26e2ca-4b6aa2a6a026944b-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "11c136683736de605e883613b8f9d66e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "361", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:45 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-ms-client-request-id": "11c136683736de605e883613b8f9d66e", - "x-ms-correlation-request-id": "c002a6bd-301b-4a90-94ed-db8ad60e61cd", - "x-ms-request-id": "c9a3e368-141d-47bf-8c7e-bfea3ed1707f", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1236576079", - "name": "Pipeline1236576079", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-16T22:23:49Z" - }, - "etag": "420081f9-0000-0800-0000-5fda88f50000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline485344534?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-8f7643bd9a829c4eaddb47934ba47229-7cfa92a680067b4e-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "864502f9670dc755701e05b4358314ae", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "359", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:45 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-ms-client-request-id": "864502f9670dc755701e05b4358314ae", - "x-ms-correlation-request-id": "2c2419c6-eaaa-45cd-9180-0ffb73b50419", - "x-ms-request-id": "2a2572c8-0072-42c1-a06f-9df1beca7c18", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline485344534", - "name": "Pipeline485344534", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-16T22:24:11Z" - }, - "etag": "4200c2fe-0000-0800-0000-5fda890b0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline426580370?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-170c37108532fe469e78431e6fcbcb4c-fc05eaf0ebfe1542-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "8655635f811d091f61ee61e9ae2b3696", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "359", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:45 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-ms-client-request-id": "8655635f811d091f61ee61e9ae2b3696", - "x-ms-correlation-request-id": "dc3a985d-3559-4d4d-8efa-6f3fa26c5dc3", - "x-ms-request-id": "62e9b1b4-2073-4ded-8ccf-4d5dc20583d3", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline426580370", - "name": "Pipeline426580370", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-17T19:21:03Z" - }, - "etag": "790023aa-0000-0800-0000-5fdbaf9f0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline846919427?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-06774f94069a7d4cb3aaae0cebd02e71-2f91c75b4865b540-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "ba63480df2d60045e0faa11832aca8da", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "359", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:45 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-ms-client-request-id": "ba63480df2d60045e0faa11832aca8da", - "x-ms-correlation-request-id": "5cc136d0-ebef-4bee-803c-ec0b3411ae1c", - "x-ms-request-id": "b1c480cd-31e4-48bd-bb65-cb3fa3947090", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline846919427", - "name": "Pipeline846919427", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-17T19:21:22Z" - }, - "etag": "79009cb0-0000-0800-0000-5fdbafb20000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline403400646?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-5a4432333788bf428104d27b5502c446-4c285b36d7cd7146-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "54b387734fa37851e33b251e056c1844", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "359", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:45 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-ms-client-request-id": "54b387734fa37851e33b251e056c1844", - "x-ms-correlation-request-id": "c92ad136-6dd7-4230-8409-a54de8ca73f6", - "x-ms-request-id": "9df024da-ee0f-4ec3-9f54-29b964a76a8b", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline403400646", - "name": "Pipeline403400646", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-17T19:25:26Z" - }, - "etag": "7a005c06-0000-0800-0000-5fdbb0a60000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline731098520?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-25667cc2cfefc843984b5851761e0bdf-7b3ed838df07b944-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "eca76ee759206cd71e54a522df07d6b5", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "359", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:45 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-ms-client-request-id": "eca76ee759206cd71e54a522df07d6b5", - "x-ms-correlation-request-id": "869ef001-16b2-461e-8a06-cdbe4c89399c", - "x-ms-request-id": "763deefc-30ba-445d-8ea9-eca3c127b3c7", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline731098520", - "name": "Pipeline731098520", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-17T19:25:49Z" - }, - "etag": "7a00cd0e-0000-0800-0000-5fdbb0bd0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline361470053?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-6fd45756a52e444a86a6ce368b0725ef-8d55e65c6360ad4e-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "27758646e177bdf2f7ebd79acd26fb74", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "359", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:45 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-ms-client-request-id": "27758646e177bdf2f7ebd79acd26fb74", - "x-ms-correlation-request-id": "483a50e9-2894-4ad6-8a4a-6543525e9341", - "x-ms-request-id": "162066e0-a805-4d5d-b3f8-7ffa5a9c856f", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline361470053", - "name": "Pipeline361470053", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-17T19:30:12Z" - }, - "etag": "7a003373-0000-0800-0000-5fdbb1c40000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline1885848639?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-0df868e4e2e4be4f8dfe23957e187b6c-21af0dccde208046-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "c4305de1bb0419baaf47364fa92e98dc", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "361", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:45 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-ms-client-request-id": "c4305de1bb0419baaf47364fa92e98dc", - "x-ms-correlation-request-id": "bea27ac6-0983-4369-bbe5-3e1270dc1bce", - "x-ms-request-id": "52131e24-26c3-473e-95c3-e780e68f2b3b", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1885848639", - "name": "Pipeline1885848639", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-17T19:30:29Z" - }, - "etag": "7a00747a-0000-0800-0000-5fdbb1d50000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline2015250014?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-dfdd4833252e8a4e9634dbc2c06ecb20-bce9581ca07a634c-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "7ed87065f1f605cc7be9f535823d9ff7", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "361", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:46 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-ms-client-request-id": "7ed87065f1f605cc7be9f535823d9ff7", - "x-ms-correlation-request-id": "538c3fc6-66f6-4fd4-be36-392dd3e0999d", - "x-ms-request-id": "2acdb283-c9e4-4439-8590-204f876b392e", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline2015250014", - "name": "Pipeline2015250014", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-18T15:17:03Z" - }, - "etag": "12006f9b-0000-0800-0000-5fdcc7ef0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline1958105182?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-8eb4753ee1c2cb4c9f6b38a8564f9823-57fb11ce08fdc74f-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "8241315912d68ab0cc5c7730aba313c8", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "361", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:46 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-ms-client-request-id": "8241315912d68ab0cc5c7730aba313c8", - "x-ms-correlation-request-id": "75e43033-a0f7-4f12-abe9-1b55b49e65d2", - "x-ms-request-id": "704e7ac6-3aea-4c40-b886-6f7981abed9d", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1958105182", - "name": "Pipeline1958105182", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-18T15:17:21Z" - }, - "etag": "1200859d-0000-0800-0000-5fdcc8010000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline709448218?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-6e444785d3446549b5d1fcfccca11e2b-138ae66aa454da42-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "5c35fb527d4eef7e902a481bc6849772", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "359", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:46 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-ms-client-request-id": "5c35fb527d4eef7e902a481bc6849772", - "x-ms-correlation-request-id": "31b2273d-b4cf-4943-91bb-f1abb430e191", - "x-ms-request-id": "aeb8d3a1-962c-46a1-ba7f-ba649c9ec677", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline709448218", - "name": "Pipeline709448218", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-18T15:25:26Z" - }, - "etag": "12005fd8-0000-0800-0000-5fdcc9e60000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline1370318582?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-5be59a953c581340b45ac961d4cab317-92fa7400e3a1c54a-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "78f53fa715ed5205c04db199799b5ad7", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "361", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:46 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-ms-client-request-id": "78f53fa715ed5205c04db199799b5ad7", - "x-ms-correlation-request-id": "1c12b17a-3674-42fa-ad2b-95dd8741cb16", - "x-ms-request-id": "9a685ed1-e4c4-45e7-8ef5-d07e246fdef3", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1370318582", - "name": "Pipeline1370318582", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-18T15:25:43Z" - }, - "etag": "12003ddb-0000-0800-0000-5fdcc9f70000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline285873936?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-19f5db63e3f1e04d88ffa63114d043fa-175661f261d0ad4a-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "87e22cd54207dca8b351f2abc994c447", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "359", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:46 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-ms-client-request-id": "87e22cd54207dca8b351f2abc994c447", - "x-ms-correlation-request-id": "4ec660fa-0f89-4f9e-9ede-2fb1e0a7b9fd", - "x-ms-request-id": "966c6263-225b-4860-a5fb-f26324f303b1", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline285873936", - "name": "Pipeline285873936", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-18T15:32:20Z" - }, - "etag": "13001007-0000-0800-0000-5fdccb840000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline1524730390?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-ff1e3cb196aaad48af3eedf5e7b47894-a617d14af576774f-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "6c8905c59bae3ddbf5e29c01cbe475f4", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "361", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:46 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-ms-client-request-id": "6c8905c59bae3ddbf5e29c01cbe475f4", - "x-ms-correlation-request-id": "e4688893-4bfb-4430-a473-aff6570f970a", - "x-ms-request-id": "ea08c48b-9b54-44a8-acf9-ef9f5c5e04c4", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1524730390", - "name": "Pipeline1524730390", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-18T15:32:44Z" - }, - "etag": "13009409-0000-0800-0000-5fdccb9c0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline1151422564?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-4d62b78826cd0545b138811ed9ea582d-dd740c356ad61a4b-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "994670d00fa2646b9619c59b2259892b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "361", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:46 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-ms-client-request-id": "994670d00fa2646b9619c59b2259892b", - "x-ms-correlation-request-id": "52590116-3307-4c29-8b46-9defa9f94528", - "x-ms-request-id": "b5bd3e17-f5cd-4f92-a8c9-b8082730b2ca", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1151422564", - "name": "Pipeline1151422564", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-18T16:48:02Z" - }, - "etag": "1400b9ff-0000-0800-0000-5fdcdd420000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline1911534615?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-98f4b4bc1b4eac4e8ec5f18a7583c00a-9c86a349683dfb49-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "74d46989ee12392951a49124a6a711ce", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "361", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:46 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-ms-client-request-id": "74d46989ee12392951a49124a6a711ce", - "x-ms-correlation-request-id": "97776ab0-d726-4919-a866-90221f5c6fa7", - "x-ms-request-id": "68f55472-356f-4952-8976-a9c1023690d6", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1911534615", - "name": "Pipeline1911534615", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-18T16:48:18Z" - }, - "etag": "15005501-0000-0800-0000-5fdcdd520000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline1175029344?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-331ed703f1558943bcae6da00d35db1c-1293c79afbe8e94d-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "58dbfddb2a4eb5a59a24d594d63f1b9b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "361", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:47 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-ms-client-request-id": "58dbfddb2a4eb5a59a24d594d63f1b9b", - "x-ms-correlation-request-id": "fcd82144-3928-473c-a45e-481d7df7fbe3", - "x-ms-request-id": "57a874cd-f788-4c5f-8731-45c5e64e4504", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1175029344", - "name": "Pipeline1175029344", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-18T16:52:45Z" - }, - "etag": "1500e81e-0000-0800-0000-5fdcde5d0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline836738180?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-b5f23f3139f0a34a9684d2cbdfa7c965-c42726ee514b214b-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "617771590110e1e1460c47fd7d46beef", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "359", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:47 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-ms-client-request-id": "617771590110e1e1460c47fd7d46beef", - "x-ms-correlation-request-id": "b529b719-dc3a-4550-bc04-c433ef739ae4", - "x-ms-request-id": "95ab039a-3e9d-47b8-879e-f212cedcfb66", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline836738180", - "name": "Pipeline836738180", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-18T16:53:01Z" - }, - "etag": "1500c020-0000-0800-0000-5fdcde6d0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline1365315171?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-bb775977157a6b41aa754f0bf21591a4-afe47856eecb0b49-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "24bff607307d5eddc41ed9ee18946311", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "361", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:47 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-ms-client-request-id": "24bff607307d5eddc41ed9ee18946311", - "x-ms-correlation-request-id": "b74edac3-ceca-4c46-886f-4771dccfe4ed", - "x-ms-request-id": "1c047619-bcf6-4216-83a4-db07c14a7ab0", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1365315171", - "name": "Pipeline1365315171", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-18T16:57:34Z" - }, - "etag": "1500a941-0000-0800-0000-5fdcdf7e0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline941345213?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-f5e4e2d1efb37643be3de1b8c1e83242-670b8874fae51144-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "35caf689af2fdabe1cf91141e2a83753", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "359", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:47 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-ms-client-request-id": "35caf689af2fdabe1cf91141e2a83753", - "x-ms-correlation-request-id": "23209bf8-b09d-4fe8-bc7c-b17da8fd0873", - "x-ms-request-id": "3e3758fd-a8bf-4962-86ed-926aa11dba11", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline941345213", - "name": "Pipeline941345213", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-18T16:57:50Z" - }, - "etag": "1500c543-0000-0800-0000-5fdcdf8e0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline546860755?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-9749ee966da9484080ce530cf2ff5ec3-8a9851cd22e5834c-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "df8de666f680291d93189df127f3c9b1", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "359", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:47 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-ms-client-request-id": "df8de666f680291d93189df127f3c9b1", - "x-ms-correlation-request-id": "7b747808-b315-4351-aebd-9aaf515d6066", - "x-ms-request-id": "a5a52c61-e426-4ea0-8c4b-2d9b4fef9b55", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline546860755", - "name": "Pipeline546860755", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-18T17:24:18Z" - }, - "etag": "1500d1f4-0000-0800-0000-5fdce5c20000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline575832323?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-b17b60ee8fb1874ba6e7969082853be7-aa02077bae74504e-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "877335a8887b57bf37e508831e9b7c1b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "359", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:47 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-ms-client-request-id": "877335a8887b57bf37e508831e9b7c1b", - "x-ms-correlation-request-id": "8b1e1ec7-5be9-457c-b819-c881509b233c", - "x-ms-request-id": "e45ce6a0-f61b-422a-8088-fc42f7b0cb57", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline575832323", - "name": "Pipeline575832323", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-18T17:24:38Z" - }, - "etag": "15000bf7-0000-0800-0000-5fdce5d60000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline1629474829?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-213811663906da41abac53ac0c3d2841-09ed0b8acf7ba14e-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "318786e683079391d8a1a11612cdb228", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "361", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:47 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-ms-client-request-id": "318786e683079391d8a1a11612cdb228", - "x-ms-correlation-request-id": "31ed97a7-8c2b-42e4-8959-7da0b70429c2", - "x-ms-request-id": "96bd6464-92ed-4de6-92d6-088af112c46f", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1629474829", - "name": "Pipeline1629474829", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-18T17:29:25Z" - }, - "etag": "16002a18-0000-0800-0000-5fdce6f50000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline689712987?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-6089e762fc077341bec29e18c67aa07d-01a0cf664516224c-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "ac996030b034ddd72635a79aed9a0af8", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "359", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:47 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-ms-client-request-id": "ac996030b034ddd72635a79aed9a0af8", - "x-ms-correlation-request-id": "987d0cdb-40fb-4b22-b3ca-c0e56f0609c7", - "x-ms-request-id": "d18e21a5-1c5b-45f1-8253-7d0e42ba735a", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline689712987", - "name": "Pipeline689712987", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-18T17:30:30Z" - }, - "etag": "1600c11f-0000-0800-0000-5fdce7360000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline585240566?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-bb8d5bb301bd814488868c2b99fdf0aa-cca24b229861bf46-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "a10a819c976b25a9a4e0afdae7a8456a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "359", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:48 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-ms-client-request-id": "a10a819c976b25a9a4e0afdae7a8456a", - "x-ms-correlation-request-id": "6c0d1817-36ad-494a-84c8-a177d186d425", - "x-ms-request-id": "7733fe16-9ed8-4da5-8aab-91b227dd969d", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline585240566", - "name": "Pipeline585240566", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-18T17:35:51Z" - }, - "etag": "16001843-0000-0800-0000-5fdce8770000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline1463431359?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-4a6247f2e05aa3468cdfcfd2540fc889-15e1e4550ab1ef40-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "be53e032cf0236e6aeaa0bd2dbf7a53e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "361", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:48 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-ms-client-request-id": "be53e032cf0236e6aeaa0bd2dbf7a53e", - "x-ms-correlation-request-id": "79aadac1-682e-489c-9f09-24e914066839", - "x-ms-request-id": "10c9e9fc-d92f-4f24-8409-e46b6558d52e", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1463431359", - "name": "Pipeline1463431359", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-18T17:36:10Z" - }, - "etag": "16005145-0000-0800-0000-5fdce88a0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline142427005?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-bc5683bd93585646be172d3992607f26-5e452e82618b724f-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "917aa99611c298bcb673085401fdf67d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "359", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:48 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-ms-client-request-id": "917aa99611c298bcb673085401fdf67d", - "x-ms-correlation-request-id": "74f04b51-e36f-4c64-a8c3-7611028f1022", - "x-ms-request-id": "26810ad2-24b0-4dbc-80bb-0a5f8f3a8d90", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline142427005", - "name": "Pipeline142427005", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-21T16:34:25Z" - }, - "etag": "9400db5d-0000-0800-0000-5fe0ce910000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline2113438296?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-ad4c9447205adf44a9e5480fccf6d6fe-cda14076ad575c42-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "0d673cef4c46cdf69ad4f2c18cd749ad", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "361", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:48 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-ms-client-request-id": "0d673cef4c46cdf69ad4f2c18cd749ad", - "x-ms-correlation-request-id": "12ce654b-d716-4f0b-bbb7-a2c93db70cec", - "x-ms-request-id": "5b1b359e-407b-4eab-96eb-258ba824b590", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline2113438296", - "name": "Pipeline2113438296", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-21T16:34:43Z" - }, - "etag": "94002669-0000-0800-0000-5fe0cea30000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline1863241518?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-80d3a37de6bbf14c8219f99eb6f62690-40361b92d313da4c-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "3e43703bb32e21a823ba088ec69234b1", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "361", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:48 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-ms-client-request-id": "3e43703bb32e21a823ba088ec69234b1", - "x-ms-correlation-request-id": "c3526a60-0430-488b-a6b7-9c1dff52961d", - "x-ms-request-id": "a8be4450-d8c1-40c2-87f1-2bdaef27c7a3", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1863241518", - "name": "Pipeline1863241518", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-21T16:42:22Z" - }, - "etag": "95000d5d-0000-0800-0000-5fe0d06e0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline887403503?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-04d74fe702bea04fa50a03f9a655e477-e5fe95b3273d7e47-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "9fe28db4978f4af7b2acf6ed1efb0cdf", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "359", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:48 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-ms-client-request-id": "9fe28db4978f4af7b2acf6ed1efb0cdf", - "x-ms-correlation-request-id": "c334d2a7-d83e-4b8d-ac24-319e8a43e76c", - "x-ms-request-id": "0012726d-78f7-4d70-a94c-533f68b7e6f8", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline887403503", - "name": "Pipeline887403503", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-21T16:42:48Z" - }, - "etag": "95007d6b-0000-0800-0000-5fe0d0880000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline310693596?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-b943760a6b583648a420dd363b6203e6-80d2a5d79969de40-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "90185b2ab7b93c4f9446ea8b44670707", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "359", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:48 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-ms-client-request-id": "90185b2ab7b93c4f9446ea8b44670707", - "x-ms-correlation-request-id": "4311de8e-03d3-4903-93e2-71417f4d738f", - "x-ms-request-id": "90143ba8-56c6-464a-b744-4b359fe69d08", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline310693596", - "name": "Pipeline310693596", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-21T16:48:59Z" - }, - "etag": "96000442-0000-0800-0000-5fe0d1fb0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline1741897570?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-619b993951dd7d42ae860a53c5b7666e-ba0986ac12261347-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "ff0c419fa9f4a41d79f88b82bcbb0228", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "361", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:49 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-ms-client-request-id": "ff0c419fa9f4a41d79f88b82bcbb0228", - "x-ms-correlation-request-id": "ac783e9b-84c1-41aa-9583-da6db4c3732c", - "x-ms-request-id": "fa28e7b4-406b-45fb-946c-772e511fc268", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1741897570", - "name": "Pipeline1741897570", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-21T16:49:23Z" - }, - "etag": "96000a4e-0000-0800-0000-5fe0d2130000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline957622854?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-408e7f2f685b9449b4b50a7bc39805e3-832712f372a3b84d-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "6a6329aea47afcf73ea60b48ac6b064b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "359", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:49 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-ms-client-request-id": "6a6329aea47afcf73ea60b48ac6b064b", - "x-ms-correlation-request-id": "a7941fb2-9ba4-45a7-9396-9ec0b488174a", - "x-ms-request-id": "b9c1b124-db45-41c2-9a6c-e895724f83e1", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline957622854", - "name": "Pipeline957622854", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-21T20:44:20Z" - }, - "etag": "b300e937-0000-0800-0000-5fe109240000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline2077048772?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-dbf04a4148f731439a013ccfedd4e834-49e14f99d1ee5441-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "dc4defa50dee80eb3d7417c02ccd7fd8", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "361", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:49 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-ms-client-request-id": "dc4defa50dee80eb3d7417c02ccd7fd8", - "x-ms-correlation-request-id": "c07921bf-7e26-4484-9071-9af32bf71445", - "x-ms-request-id": "20c1700b-e6d9-4696-b1db-fcaaed0c87c7", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline2077048772", - "name": "Pipeline2077048772", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-21T20:44:34Z" - }, - "etag": "b300903d-0000-0800-0000-5fe109320000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline851082303?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-c6e93f001058614fbc84f91477150ba3-9d73d8bb58f7c44d-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "1addc2449c04fb8d4a10c04d9ed5f70d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "359", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:49 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-ms-client-request-id": "1addc2449c04fb8d4a10c04d9ed5f70d", - "x-ms-correlation-request-id": "d32e7933-95c6-4cc2-ac93-d36208a83194", - "x-ms-request-id": "c04acf52-9345-481e-9fd4-1bf682a4c6ab", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline851082303", - "name": "Pipeline851082303", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-21T20:52:53Z" - }, - "etag": "b400e001-0000-0800-0000-5fe10b250000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline1750442906?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-f8c83a02937db943b7e618eab5208fc9-29fdb6bfb0afa740-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "cddc40f2256da1393de22c068c36d071", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "361", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:49 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-ms-client-request-id": "cddc40f2256da1393de22c068c36d071", - "x-ms-correlation-request-id": "b9bcfd9c-cea7-4707-9dda-b0c42c0c4976", - "x-ms-request-id": "1f23be6e-842b-45ee-a6d4-9ee6db208b1b", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1750442906", - "name": "Pipeline1750442906", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-21T20:53:13Z" - }, - "etag": "b400760a-0000-0800-0000-5fe10b390000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline173146615?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-2b935684d7e7bc49aff2c87fa565cbd4-7b3c39daae47c348-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "ea043227eb8e0846625191de4c9de168", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "359", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:49 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-ms-client-request-id": "ea043227eb8e0846625191de4c9de168", - "x-ms-correlation-request-id": "9a77cf19-92ad-4039-81a8-9ab463cdd1f9", - "x-ms-request-id": "d4fcf446-e1cc-4ac3-93ea-e04587be03d6", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline173146615", - "name": "Pipeline173146615", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-21T21:00:21Z" - }, - "etag": "b400adc2-0000-0800-0000-5fe10ce50000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline1984196211?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-d3b7041743d53d4aa3aed30871a575c9-eb893dc8f1c63246-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "ebce0a7cb1f01e6a883bdc2170866f14", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "361", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:49 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-ms-client-request-id": "ebce0a7cb1f01e6a883bdc2170866f14", - "x-ms-correlation-request-id": "d63d978b-6ed3-4fed-8f76-4e9e42f38db9", - "x-ms-request-id": "6481aeac-92af-45f0-a7c0-e6cc93298a29", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1984196211", - "name": "Pipeline1984196211", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-21T21:00:37Z" - }, - "etag": "b40020cb-0000-0800-0000-5fe10cf50000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline537708951?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-6f969c5b2979dc419c2f319982b963d4-5547c1a2cd08cc4a-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "6c254f3f0dd1077ef9d46b1c935b55a0", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "359", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:49 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-ms-client-request-id": "6c254f3f0dd1077ef9d46b1c935b55a0", - "x-ms-correlation-request-id": "f20cbda9-2323-41b6-9d59-e45808241ddf", - "x-ms-request-id": "b0e46803-198d-4178-81ec-de45400ec721", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline537708951", - "name": "Pipeline537708951", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-21T21:34:39Z" - }, - "etag": "b800c116-0000-0800-0000-5fe114ef0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline1479158253?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-e4e29e2f8c3a71429eadec44b6e2cef3-a37c2d04008b334e-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "8289c400e4677581c7e561530e2597db", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "361", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:50 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-ms-client-request-id": "8289c400e4677581c7e561530e2597db", - "x-ms-correlation-request-id": "6efb05e2-1452-4796-9bbc-71cf713a25eb", - "x-ms-request-id": "1366b945-9586-4f4b-be46-dbb3de0dda6b", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1479158253", - "name": "Pipeline1479158253", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-21T21:35:04Z" - }, - "etag": "b8004720-0000-0800-0000-5fe115080000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline1715617179?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-78b013ba6be0ee44a59b40cb22e36f95-dfbc88d8b01d4641-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "fc9e7de275786f978cc7f21b464e8a2d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "361", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:50 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-ms-client-request-id": "fc9e7de275786f978cc7f21b464e8a2d", - "x-ms-correlation-request-id": "401ad74d-ceff-48d6-be43-d47d87fe7172", - "x-ms-request-id": "7d4fcde1-cdff-4fb4-af3f-5e9f9c329c28", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1715617179", - "name": "Pipeline1715617179", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-21T21:44:17Z" - }, - "etag": "b80091ee-0000-0800-0000-5fe117310000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline828820192?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-c21053fd40944d44b18c8ff539506f90-c1087dbffe230e42-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "ac203ce6ecfd5aacceafa4ebac2bf8d4", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "359", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:50 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-ms-client-request-id": "ac203ce6ecfd5aacceafa4ebac2bf8d4", - "x-ms-correlation-request-id": "dc90d2f6-7f03-4fdd-ab26-8020d6a9bf26", - "x-ms-request-id": "bb2c1f5c-06cd-4332-9cf7-4b582fd44fd6", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline828820192", - "name": "Pipeline828820192", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-21T21:44:37Z" - }, - "etag": "b800eff5-0000-0800-0000-5fe117450000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline548580191?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-8b96b66e1293814f97c5b4693e19a847-23293dd24ca44844-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "1639903c59bc8b272d1af6a0f2652f79", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "359", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:50 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-ms-client-request-id": "1639903c59bc8b272d1af6a0f2652f79", - "x-ms-correlation-request-id": "20ba41e7-fdef-42bd-8ccc-c144e9d42eda", - "x-ms-request-id": "c329894d-3bd4-4753-a528-9fa403b72e8a", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline548580191", - "name": "Pipeline548580191", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-21T21:51:10Z" - }, - "etag": "b9006f83-0000-0800-0000-5fe118ce0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline1130547557?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-be575d1e2efc94428735731b4220752d-1466b946d5256341-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "d16d335beb04f5ded0432dc8d0abc261", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "361", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:50 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-ms-client-request-id": "d16d335beb04f5ded0432dc8d0abc261", - "x-ms-correlation-request-id": "9c788849-eab6-42e0-a836-7782957c1c3a", - "x-ms-request-id": "3a152a6f-d417-4b31-a5c2-c0738c578b9c", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1130547557", - "name": "Pipeline1130547557", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-21T21:51:32Z" - }, - "etag": "b9006b8b-0000-0800-0000-5fe118e40000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline1108413193?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-d16765bfc0803b4699545ad667a247a4-7a0793e7fa875b42-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "b6de1dce73148c7115957fe2f60c6869", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "361", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:50 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-ms-client-request-id": "b6de1dce73148c7115957fe2f60c6869", - "x-ms-correlation-request-id": "f96a691d-88e7-40bd-adb5-3a7985c4c873", - "x-ms-request-id": "2e871910-47db-4687-8f5e-3e04b50c5d8e", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1108413193", - "name": "Pipeline1108413193", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-22T20:40:43Z" - }, - "etag": "000088ed-0000-0800-0000-5fe259cb0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline1470104174?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-afff5e8f6b1b354b8364dd25d76ec098-fb5d91775be0624d-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "78902b8027be51cfb14346782b5fba81", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "361", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:50 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-ms-client-request-id": "78902b8027be51cfb14346782b5fba81", - "x-ms-correlation-request-id": "adb20348-32d7-486a-9e74-761c96988247", - "x-ms-request-id": "5bd4660a-e0c7-46d6-9e98-c6332b059108", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1470104174", - "name": "Pipeline1470104174", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-22T20:41:02Z" - }, - "etag": "0000b7ed-0000-0800-0000-5fe259de0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline1719665946?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-bf4c442d12f41441a494fc12e029157d-fbfa01a506f1e843-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "d4d194577987e764c2e0bc6f6cfbfec3", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "361", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:50 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-ms-client-request-id": "d4d194577987e764c2e0bc6f6cfbfec3", - "x-ms-correlation-request-id": "fd6540ea-ab92-4f23-8e7b-d71e3dbc6dce", - "x-ms-request-id": "74697dbb-c7fa-405d-934b-1874ea72d01d", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1719665946", - "name": "Pipeline1719665946", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-22T20:50:05Z" - }, - "etag": "000065f5-0000-0800-0000-5fe25bfd0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline760779103?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-47f11cba5aa3764b947fe98baa8d8a66-76bd1fb3a7a9ec45-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "a548c4db4a1aa7a24e8c04d12df861b5", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "359", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32: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-ms-client-request-id": "a548c4db4a1aa7a24e8c04d12df861b5", - "x-ms-correlation-request-id": "dd55103a-e8e4-48cc-8a4e-8739bfe904fe", - "x-ms-request-id": "38d789f6-0912-4a4b-bc97-850318ae5461", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline760779103", - "name": "Pipeline760779103", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-22T20:50:26Z" - }, - "etag": "0000c3f5-0000-0800-0000-5fe25c120000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline263155253?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-0befd34543e00f4491b83979c990555c-13aedbc31ec1a849-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "618afdda933a07e1c7a9b5de6a5fe5b5", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "359", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32: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-ms-client-request-id": "618afdda933a07e1c7a9b5de6a5fe5b5", - "x-ms-correlation-request-id": "806d15cf-931f-47d5-972b-e07b3a77fa92", - "x-ms-request-id": "9b1af490-7dcf-4996-bfca-954f67de4f6d", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline263155253", - "name": "Pipeline263155253", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-22T20:57:29Z" - }, - "etag": "000046fa-0000-0800-0000-5fe25db90000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline1186264083?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-11f03b27a0ffe241b305f029968bc1da-a031296da59ac24a-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "669c824415170d66f12a86fa7493b9c9", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "361", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32: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-ms-client-request-id": "669c824415170d66f12a86fa7493b9c9", - "x-ms-correlation-request-id": "5cccd961-5e95-4bf0-b323-878a1c8e36a8", - "x-ms-request-id": "1f9bbfd7-87c5-4b2f-bf4f-1e6e59f8a432", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1186264083", - "name": "Pipeline1186264083", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-22T20:57:51Z" - }, - "etag": "00007dfa-0000-0800-0000-5fe25dcf0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline947795739?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-dc48d1279d76a44487c6d0b72eceb71e-46ab77e059206345-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "6e95067e9c714889e240de7195c43dee", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "359", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32: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-ms-client-request-id": "6e95067e9c714889e240de7195c43dee", - "x-ms-correlation-request-id": "c4710ea8-8b35-4f1f-a7ef-18882d54ae18", - "x-ms-request-id": "7850be8a-474d-494e-9478-ba35e99c70c7", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline947795739", - "name": "Pipeline947795739", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-23T18:19:07Z" - }, - "etag": "03005478-0000-0800-0000-5fe38a1b0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline947006839?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-d15ed7490862e740b64006d01cda5714-67bdf832ffcafa42-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "ab8c4ea7fa5bc59e967d6f100ce79233", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "359", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32: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-ms-client-request-id": "ab8c4ea7fa5bc59e967d6f100ce79233", - "x-ms-correlation-request-id": "4363f77f-a145-4ae1-bf95-0db67e9204c1", - "x-ms-request-id": "2ba7c0b8-ca6f-4498-b4c8-91e28b415b70", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline947006839", - "name": "Pipeline947006839", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-23T18:19:25Z" - }, - "etag": "03008678-0000-0800-0000-5fe38a2d0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline1075747870?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-de98170466e2b04db13ad2ae32bd8b7d-478de2fcb21c174d-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "635febef76caa744f95484d636f5782c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "361", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32: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-ms-client-request-id": "635febef76caa744f95484d636f5782c", - "x-ms-correlation-request-id": "4d138e44-024e-4c32-91e9-be9cd7544c7b", - "x-ms-request-id": "01ae2606-30f9-4745-8095-d06efc5a3144", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1075747870", - "name": "Pipeline1075747870", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-23T18:33:17Z" - }, - "etag": "03002f81-0000-0800-0000-5fe38d6d0000" + "lastPublishTime": "2021-04-13T04:46:44Z" + } + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/Pipeline13334290", + "name": "Pipeline13334290", + "type": "Microsoft.Synapse/workspaces/pipelines", + "etag": "fb019e25-0000-0100-0000-6075356f0000", + "properties": { + "lastPublishTime": "2021-04-13T06:08:47Z" + } + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/notebook-04-14-00-07", + "name": "notebook-04-14-00-07", + "type": "Microsoft.Synapse/workspaces/pipelines", + "etag": "6003aed9-0000-0100-0000-607695040000", + "properties": { + "activities": [ + { + "policy": { + "timeout": "0.00:00:30", + "retry": 0, + "retryIntervalInSeconds": 30, + "secureInput": false, + "secureOutput": false + }, + "name": "Notebook", + "type": "SynapseNotebook", + "typeProperties": { + "notebook": { + "type": "NotebookReference", + "referenceName": "notebook-04-14-00-07" + }, + "parameters": { + "param": { + "type": "Float", + "defaultValue": 1.2345 + } + } + } + } + ], + "parameters": { + "callBackUri": { + "type": "String" + } + }, + "lastPublishTime": "2021-04-14T07:08:52Z" + } + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/notebook-04-14-00-09", + "name": "notebook-04-14-00-09", + "type": "Microsoft.Synapse/workspaces/pipelines", + "etag": "6103746a-0000-0100-0000-6076954d0000", + "properties": { + "activities": [ + { + "policy": { + "timeout": "0.00:00:30", + "retry": 0, + "retryIntervalInSeconds": 30, + "secureInput": false, + "secureOutput": false + }, + "name": "Notebook", + "type": "SynapseNotebook", + "typeProperties": { + "notebook": { + "type": "NotebookReference", + "referenceName": "notebook-04-14-00-09" + }, + "parameters": { + "param": { + "type": "Float", + "defaultValue": 1.2345 + } + } + } + } + ], + "parameters": { + "callBackUri": { + "type": "String" + } + }, + "lastPublishTime": "2021-04-14T07:10:05Z" + } + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/Pipeline19023801", + "name": "Pipeline19023801", + "type": "Microsoft.Synapse/workspaces/pipelines", + "etag": "2e009b80-0000-0100-0000-615557240000", + "properties": { + "lastPublishTime": "2021-09-30T06:20:20Z" + } + } + ] } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline611082881?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/pipelines/Pipeline%201?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-0a4a29c9dc43fe45883cd93e696c8cc9-534d38a65f9cfe4d-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "265298ec0d06846e68cfd7f42c783bfb", + "traceparent": "00-d5000db5411dde4cb7457689e10f0b99-7dc4adc6771b1f4f-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "4bf475ebc4311a913e48de12f04290df", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "359", + "Content-Length": "1078", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:51 GMT", + "Date": "Thu, 30 Sep 2021 06:20:21 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "265298ec0d06846e68cfd7f42c783bfb", - "x-ms-correlation-request-id": "f544eb29-9f72-4a80-9cbd-4ca13cf04366", - "x-ms-request-id": "ec72599d-ed78-4a40-a13f-fc4e5867fc68", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline611082881", - "name": "Pipeline611082881", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2020-12-23T18:33:37Z" - }, - "etag": "03006c81-0000-0800-0000-5fe38d810000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline1157686718?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-53ba644d6fb99f4d9237c9393c0077f6-799237cd1a0aa24c-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "a981aaaed96531230ae4b20776c78ea1", + "x-ms-client-request-id": "4bf475ebc4311a913e48de12f04290df", + "x-ms-correlation-request-id": "cd30485f-82a2-40c9-b493-684a3e4e4485", + "x-ms-request-id": "161900ff-36b3-45e2-a3f8-15c8243aff24", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/Pipeline 1", + "name": "Pipeline 1", + "type": "Microsoft.Synapse/workspaces/pipelines", + "properties": { + "activities": [ + { + "name": "Notebook1", + "type": "SynapseNotebook", + "dependsOn": [], + "policy": { + "timeout": "7.00:00:00", + "retry": 0, + "retryIntervalInSeconds": 30, + "secureOutput": false, + "secureInput": false + }, + "userProperties": [], + "typeProperties": { + "notebook": { + "referenceName": "Notebook 1", + "type": "NotebookReference" + } + } + }, + { + "name": "Dataflow1", + "type": "ExecuteDataFlow", + "dependsOn": [], + "policy": { + "timeout": "7.00:00:00", + "retry": 0, + "retryIntervalInSeconds": 30, + "secureOutput": false, + "secureInput": false + }, + "userProperties": [], + "typeProperties": { + "dataflow": { + "referenceName": "Dataflow1", + "type": "DataFlowReference", + "parameters": {}, + "datasetParameters": { + "source1": {}, + "sink1": {} + } + }, + "staging": {}, + "compute": { + "coreCount": 8, + "computeType": "General" + }, + "traceLevel": "Fine" + } + } + ], + "annotations": [], + "lastPublishTime": "2020-12-11T07:31:19Z" + }, + "etag": "c200c28a-0000-0100-0000-5fd320470000" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/pipelines/dongwwa_pipeline_8572?api-version=2020-12-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-fd676705c4719042a635b5e67b153ba8-aa6bfcc5b019cc4e-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "705ea1e9c1546fa293e98c0679a8d17e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "361", + "Content-Length": "454", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:51 GMT", + "Date": "Thu, 30 Sep 2021 06:20:21 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "a981aaaed96531230ae4b20776c78ea1", - "x-ms-correlation-request-id": "252c9e9b-a8bc-45d4-80cc-1fa74d3a3d00", - "x-ms-request-id": "d3e7d694-a024-4239-a2dd-6044e2f30fef", + "x-ms-client-request-id": "705ea1e9c1546fa293e98c0679a8d17e", + "x-ms-correlation-request-id": "203bad6b-ec5f-4c9b-b6e9-039393f0ca15", + "x-ms-request-id": "28a901cc-7270-41f6-bb48-a51a29ee0120", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1157686718", - "name": "Pipeline1157686718", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/dongwwa_pipeline_8572", + "name": "dongwwa_pipeline_8572", "type": "Microsoft.Synapse/workspaces/pipelines", "properties": { - "lastPublishTime": "2020-12-23T18:49:04Z" + "description": "testDescription", + "activities": [], + "parameters": { + "dongwwatest": { + "type": "Array" + } + }, + "lastPublishTime": "2020-06-30T13:35:07Z" }, - "etag": "0300178c-0000-0800-0000-5fe391200000" + "etag": "300020f3-0000-0100-0000-5efb3f8b0000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline651612725?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/pipelines/dongwwa_pipeline_6637?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-4d4821d9a7cbe7489f367c519a5a20c8-9911570a49a6b74a-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "742343056c94e12d7ddbfbfa9e507a80", + "traceparent": "00-dee3d3d9c3b05b41a501c0b7d5cb8493-59d29747629d5a4e-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "0077227f1af953e3c6aa663ff7bb5776", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "359", + "Content-Length": "454", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:52 GMT", + "Date": "Thu, 30 Sep 2021 06:20:21 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "742343056c94e12d7ddbfbfa9e507a80", - "x-ms-correlation-request-id": "e1809cdd-0dee-4fb7-af40-0ccac97fcee5", - "x-ms-request-id": "a6e4da68-10c4-4af2-b13a-59aee40cee2d", + "x-ms-client-request-id": "0077227f1af953e3c6aa663ff7bb5776", + "x-ms-correlation-request-id": "f22defea-aa2e-4040-bdb9-03d7c2659aec", + "x-ms-request-id": "99d14816-9b11-4e5c-83fc-a5a4f3fb1e30", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline651612725", - "name": "Pipeline651612725", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/dongwwa_pipeline_6637", + "name": "dongwwa_pipeline_6637", "type": "Microsoft.Synapse/workspaces/pipelines", "properties": { - "lastPublishTime": "2020-12-23T18:49:26Z" + "description": "testDescription", + "activities": [], + "parameters": { + "dongwwatest": { + "type": "Array" + } + }, + "lastPublishTime": "2020-06-30T13:35:30Z" }, - "etag": "0300428c-0000-0800-0000-5fe391360000" + "etag": "30003ef4-0000-0100-0000-5efb3fa20000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline1261734494?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/pipelines/dongwwa_pipeline_5633?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-4a1b3ab00ff4fe4cb25068c114f6fd90-289be29bba52ee4d-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "8c278818ce7413c774211b225b660da0", + "traceparent": "00-245901459eb13d4d87ac12611268c0b2-8da87b4aa9f7e64a-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "010a9729b5522950d284b848378ba096", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "361", + "Content-Length": "454", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:52 GMT", + "Date": "Thu, 30 Sep 2021 06:20:21 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "8c278818ce7413c774211b225b660da0", - "x-ms-correlation-request-id": "b3f4e45c-0fc3-4c97-9752-1e024e496e17", - "x-ms-request-id": "109d4a18-2083-41fd-ae06-0ab905350409", + "x-ms-client-request-id": "010a9729b5522950d284b848378ba096", + "x-ms-correlation-request-id": "f5499142-9338-40de-9039-8338e86f0e43", + "x-ms-request-id": "01afce17-14fd-4ed4-a2c8-fa21993a58a6", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1261734494", - "name": "Pipeline1261734494", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/dongwwa_pipeline_5633", + "name": "dongwwa_pipeline_5633", "type": "Microsoft.Synapse/workspaces/pipelines", "properties": { - "lastPublishTime": "2020-12-23T19:02:46Z" + "description": "testDescription", + "activities": [], + "parameters": { + "dongwwatest": { + "type": "Array" + } + }, + "lastPublishTime": "2020-06-30T13:39:10Z" }, - "etag": "03001996-0000-0800-0000-5fe394560000" + "etag": "300009ff-0000-0100-0000-5efb407e0000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline1955846061?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/pipelines/dongwwa_pipeline_6157?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-b20d04708cfb5f4c946b7964311ee673-cc64bc3fa2c04341-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "e9ee3641c75442667d9f2b8add2892ba", + "traceparent": "00-0f853c6590c1294f8acae210a12adde5-c3be70ad05dea742-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "cd925f7790cbcee6bd0ba9a95a6278d7", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "361", + "Content-Length": "454", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:52 GMT", + "Date": "Thu, 30 Sep 2021 06:20:21 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "e9ee3641c75442667d9f2b8add2892ba", - "x-ms-correlation-request-id": "500df61d-12e6-468d-871b-6821804411eb", - "x-ms-request-id": "705c2447-4b2c-4a9f-a15a-1df392417575", + "x-ms-client-request-id": "cd925f7790cbcee6bd0ba9a95a6278d7", + "x-ms-correlation-request-id": "e0983443-55b3-4f04-bc15-37b2b1e148de", + "x-ms-request-id": "13cb5b3f-a403-4a5b-a4f6-7a8d5d07f8ef", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1955846061", - "name": "Pipeline1955846061", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/dongwwa_pipeline_6157", + "name": "dongwwa_pipeline_6157", "type": "Microsoft.Synapse/workspaces/pipelines", "properties": { - "lastPublishTime": "2020-12-23T19:03:14Z" + "description": "testDescription", + "activities": [], + "parameters": { + "dongwwatest": { + "type": "Array" + } + }, + "lastPublishTime": "2020-06-30T14:47:23Z" }, - "etag": "03006c96-0000-0800-0000-5fe394720000" + "etag": "3100578a-0000-0100-0000-5efb507b0000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline1743905488?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/pipelines/dongwwa_pipeline_8864?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-1e8fd3ff34421b4d9aafb767eb8f7d80-32711a02fdacc241-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "edef3169029f362c7b100073500a8617", + "traceparent": "00-4a65c1c6d9e79b42a009141f613141e5-3af295e592299649-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "e1dd1692d09dc92cd24d2d75619b1b3b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "361", + "Content-Length": "454", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:52 GMT", + "Date": "Thu, 30 Sep 2021 06:20:22 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "edef3169029f362c7b100073500a8617", - "x-ms-correlation-request-id": "ebf65b74-bdc8-4194-8306-4ff1c17ae7c7", - "x-ms-request-id": "c2e082b0-4a3e-4db6-abee-8af29ec2f2b0", + "x-ms-client-request-id": "e1dd1692d09dc92cd24d2d75619b1b3b", + "x-ms-correlation-request-id": "09afbb16-bce0-41bc-ae69-e01941fa1d37", + "x-ms-request-id": "27212a41-913b-4a6e-a2a5-d92a433a3b72", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1743905488", - "name": "Pipeline1743905488", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/dongwwa_pipeline_8864", + "name": "dongwwa_pipeline_8864", "type": "Microsoft.Synapse/workspaces/pipelines", "properties": { - "lastPublishTime": "2020-12-23T19:15:57Z" + "description": "testDescription", + "activities": [], + "parameters": { + "dongwwatest": { + "type": "Array" + } + }, + "lastPublishTime": "2020-06-30T14:48:15Z" }, - "etag": "0300db9e-0000-0800-0000-5fe3976d0000" + "etag": "3100068c-0000-0100-0000-5efb50af0000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline269842666?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/pipelines/MyPipeline?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-91a4cc46db443a45bd9c588ef3e11853-2cca027534553d49-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "67b95acd9161512c21e50fd4a33d364b", + "traceparent": "00-2995bc9a9a443849a0123007edcdb5ac-46e60a10e43e3542-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "97c8d009892898abb13b43460ca6ce6f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "359", + "Content-Length": "338", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:52 GMT", + "Date": "Thu, 30 Sep 2021 06:20:22 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "67b95acd9161512c21e50fd4a33d364b", - "x-ms-correlation-request-id": "083ce529-c949-44ea-b60a-b22c4597310b", - "x-ms-request-id": "7dbf19fd-b4da-465b-811f-049a613fedf6", + "x-ms-client-request-id": "97c8d009892898abb13b43460ca6ce6f", + "x-ms-correlation-request-id": "ea3991c6-43a1-49d2-b77a-7bbdc6f97479", + "x-ms-request-id": "e4e5811b-175b-4cda-82e7-58e3d5ec1b45", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline269842666", - "name": "Pipeline269842666", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/MyPipeline", + "name": "MyPipeline", "type": "Microsoft.Synapse/workspaces/pipelines", "properties": { - "lastPublishTime": "2020-12-23T19:16:19Z" + "lastPublishTime": "2020-10-09T10:58:26Z" }, - "etag": "0300159f-0000-0800-0000-5fe397830000" + "etag": "0000752a-0000-0100-0000-5f8042520000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline1836727375?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/pipelines/dongwwa_pipeline_0651?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-f907f7b6d679434fb07fc1c9fc9a855d-c5cc2402ace8da4e-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "2ab9618e1f773f0009b86e44c7f3f272", + "traceparent": "00-78c490b3df0f2946a1ac958c9ed744c7-3f220c5945b0da40-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "20b5e00bbfaea6f833c8fb7d62716d21", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "361", + "Content-Length": "562", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:52 GMT", + "Date": "Thu, 30 Sep 2021 06:20:22 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "2ab9618e1f773f0009b86e44c7f3f272", - "x-ms-correlation-request-id": "28c42a5c-f486-4b85-b03c-f30566b25659", - "x-ms-request-id": "596dd605-8123-4b4f-9793-3fdcfe831440", + "x-ms-client-request-id": "20b5e00bbfaea6f833c8fb7d62716d21", + "x-ms-correlation-request-id": "7965c341-552f-4e74-8998-421d551f0ef8", + "x-ms-request-id": "3a44fffe-a413-4ae3-a3c3-966803684859", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1836727375", - "name": "Pipeline1836727375", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/dongwwa_pipeline_0651", + "name": "dongwwa_pipeline_0651", "type": "Microsoft.Synapse/workspaces/pipelines", "properties": { - "lastPublishTime": "2020-12-23T19:28:41Z" + "activities": [ + { + "name": "Wait for 60 to 90 seconds", + "type": "Wait", + "dependsOn": [], + "userProperties": [], + "typeProperties": { + "waitTimeInSeconds": { + "value": "@rand(60,90)", + "type": "Expression" + } + } + } + ], + "annotations": [], + "lastPublishTime": "2021-07-27T12:02:26Z" }, - "etag": "030081a7-0000-0800-0000-5fe39a690000" + "etag": "2f00de6b-0000-0100-0000-60fff5d20000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline2025138465?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/pipelines/MyPipeline1200?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-fa5968f50824974782047fdeb9116332-168962bfeede374f-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "82bc14192b6ed858049eccbaf258933e", + "traceparent": "00-d8badc2feec3604487c69f04805b7736-49a35341e3e50d48-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "8aa06df0e09a09af6b4430618ce5bd2c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "361", + "Content-Length": "346", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:52 GMT", + "Date": "Thu, 30 Sep 2021 06:20:22 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "82bc14192b6ed858049eccbaf258933e", - "x-ms-correlation-request-id": "890598b1-c806-472e-9038-54e7c3251e39", - "x-ms-request-id": "4c66a991-591d-4706-84cb-d679d371b568", + "x-ms-client-request-id": "8aa06df0e09a09af6b4430618ce5bd2c", + "x-ms-correlation-request-id": "0dd940f5-4868-410b-a090-a7251f79ff08", + "x-ms-request-id": "6d61b05c-8f35-4ed2-8eb7-790331be4385", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline2025138465", - "name": "Pipeline2025138465", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/MyPipeline1200", + "name": "MyPipeline1200", "type": "Microsoft.Synapse/workspaces/pipelines", "properties": { - "lastPublishTime": "2020-12-23T19:29:07Z" + "lastPublishTime": "2020-10-09T10:58:58Z" }, - "etag": "0300d1a7-0000-0800-0000-5fe39a830000" + "etag": "0000802a-0000-0100-0000-5f8042720000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline495811967?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/pipelines/MyPipeline1374?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-25a61f5b57414f45b9d77921a085a0f7-00a9a723d5d4c249-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "eee4b4d95b51aea05a7a5da822e8892e", + "traceparent": "00-3551aa03e3777e4a84116d17e4fa2fcd-f3edd163f2b7fc40-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "8069bd7efae64a8dd721645f8d2d3640", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "359", + "Content-Length": "346", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:52 GMT", + "Date": "Thu, 30 Sep 2021 06:20:22 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "eee4b4d95b51aea05a7a5da822e8892e", - "x-ms-correlation-request-id": "3c143aa3-26cb-4a59-92a3-03524c2057ae", - "x-ms-request-id": "59c496b0-819f-431f-8758-4519c70181ea", + "x-ms-client-request-id": "8069bd7efae64a8dd721645f8d2d3640", + "x-ms-correlation-request-id": "d3fd7137-01f6-476b-964f-31432cc9c06b", + "x-ms-request-id": "a5441906-efcd-4936-8132-5947896a2fcd", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline495811967", - "name": "Pipeline495811967", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/MyPipeline1374", + "name": "MyPipeline1374", "type": "Microsoft.Synapse/workspaces/pipelines", "properties": { - "lastPublishTime": "2020-12-23T19:46:28Z" + "lastPublishTime": "2020-10-09T10:59:00Z" }, - "etag": "03008ab3-0000-0800-0000-5fe39e940000" + "etag": "0000832a-0000-0100-0000-5f8042740000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline1133402875?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/pipelines/MyPipeline7274?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-fb51d5dcaea82247a7dc7817772bcc99-5887e13e90b60444-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "8ebb9cf3b38063dc08e025d953464cb1", + "traceparent": "00-a5d4535608b8244baeb106991c7f420e-be672f2f2f82ff49-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "9e5622ce44062ad531acb5698f971a4d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "361", + "Content-Length": "346", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:53 GMT", + "Date": "Thu, 30 Sep 2021 06:20:22 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "8ebb9cf3b38063dc08e025d953464cb1", - "x-ms-correlation-request-id": "3e295e4a-e5dd-404d-81b5-ac68f19c7385", - "x-ms-request-id": "d5d96a9f-6b80-4f7c-b5a6-ad5ebd01f746", + "x-ms-client-request-id": "9e5622ce44062ad531acb5698f971a4d", + "x-ms-correlation-request-id": "0cb02342-bbce-49f1-99d5-3a74b802b766", + "x-ms-request-id": "13cce92c-7d88-48e5-a328-9d4519e5a6f8", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1133402875", - "name": "Pipeline1133402875", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/MyPipeline7274", + "name": "MyPipeline7274", "type": "Microsoft.Synapse/workspaces/pipelines", "properties": { - "lastPublishTime": "2020-12-23T19:46:48Z" + "lastPublishTime": "2020-10-09T11:00:20Z" }, - "etag": "030043b4-0000-0800-0000-5fe39ea80000" + "etag": "00008c2a-0000-0100-0000-5f8042c40000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline602155748?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/pipelines/MyPipeline6076?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-ccc57faae5d837459081ca4ff8e50aef-d394b797f1d2134e-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "126a2f24030ebd21740e28f4cdafb51c", + "traceparent": "00-536a4bf5d39cf34bb5a819157c60013a-71ac9a463cfb1b47-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "a5fecf0bec07f53be055b2787c4f7b3d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "359", + "Content-Length": "346", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:53 GMT", + "Date": "Thu, 30 Sep 2021 06:20:23 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "126a2f24030ebd21740e28f4cdafb51c", - "x-ms-correlation-request-id": "6be08b07-5242-44e2-a36f-2bfaf45df567", - "x-ms-request-id": "879d2c7f-9bfe-4153-b0e2-3373a5f47ad4", + "x-ms-client-request-id": "a5fecf0bec07f53be055b2787c4f7b3d", + "x-ms-correlation-request-id": "37e788d9-a752-4cb7-a3bf-46ea95bf2919", + "x-ms-request-id": "87d9830b-cfac-4abd-97ef-718e4779a479", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline602155748", - "name": "Pipeline602155748", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/MyPipeline6076", + "name": "MyPipeline6076", "type": "Microsoft.Synapse/workspaces/pipelines", "properties": { - "lastPublishTime": "2020-12-23T20:10:28Z" + "lastPublishTime": "2020-10-09T11:00:25Z" }, - "etag": "030088c5-0000-0800-0000-5fe3a4340000" + "etag": "0000902a-0000-0100-0000-5f8042c90000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline947148473?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/pipelines/MyPipeline6340?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-5fe0b1cd17d732439f509593055de4f9-6ffc8d16dd935140-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "55c69e14049c26bdd881e57036c65a14", + "traceparent": "00-862bd83b13ffbf4097dde2685f51497a-216b2508231da14f-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "6a92ef0e1e8e3a25e73e4f394523bb40", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "359", + "Content-Length": "346", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:53 GMT", + "Date": "Thu, 30 Sep 2021 06:20:23 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "55c69e14049c26bdd881e57036c65a14", - "x-ms-correlation-request-id": "aa2300ee-b332-4506-933e-1a5b41f0f4b5", - "x-ms-request-id": "b2d39f21-d446-4515-b9b5-d3964217d1c9", + "x-ms-client-request-id": "6a92ef0e1e8e3a25e73e4f394523bb40", + "x-ms-correlation-request-id": "aa68b94b-5829-4a0e-a4ee-6a445af61cc7", + "x-ms-request-id": "270af0f8-d23c-4c05-830e-53431a94dcf8", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline947148473", - "name": "Pipeline947148473", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/MyPipeline6340", + "name": "MyPipeline6340", "type": "Microsoft.Synapse/workspaces/pipelines", "properties": { - "lastPublishTime": "2020-12-23T20:10:58Z" + "lastPublishTime": "2020-10-09T11:00:48Z" }, - "etag": "0300d8c5-0000-0800-0000-5fe3a4520000" + "etag": "0000932a-0000-0100-0000-5f8042e00000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline1567819041?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/pipelines/MyPipeline8937?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-c0e83a3919e14e458a3618efcc90f049-835c24b584028848-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "f284ac2e767df01f7bfe1a728be89559", + "traceparent": "00-cb135ef77cb3514eb1bb19e201692b3f-fbf2de16c27f4943-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "be531607902fe239e661beb0915daee1", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "361", + "Content-Length": "346", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:53 GMT", + "Date": "Thu, 30 Sep 2021 06:20:23 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "f284ac2e767df01f7bfe1a728be89559", - "x-ms-correlation-request-id": "86fe389b-23a5-4535-a4cb-f14275339aca", - "x-ms-request-id": "272f5671-a70a-444f-891c-c9840f79d3b3", + "x-ms-client-request-id": "be531607902fe239e661beb0915daee1", + "x-ms-correlation-request-id": "a8c965a4-822b-4fe4-a380-aa7cb3031482", + "x-ms-request-id": "bf61156d-c941-425a-9f79-c47c94ab6a6d", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1567819041", - "name": "Pipeline1567819041", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/MyPipeline8937", + "name": "MyPipeline8937", "type": "Microsoft.Synapse/workspaces/pipelines", "properties": { - "lastPublishTime": "2020-12-23T20:30:21Z" + "lastPublishTime": "2020-10-09T11:00:54Z" }, - "etag": "03002ed4-0000-0800-0000-5fe3a8dd0000" + "etag": "0000962a-0000-0100-0000-5f8042e60000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline2065174593?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/pipelines/MyPipeline532?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-69fd45d3f8ff74448d00ef155b68cdf9-fc0077af4bcdac4a-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "b4c4082bf67f1f1572433a8d1eb086ad", + "traceparent": "00-ec648ae084ea3147847edd13d6b6889e-cd2539830dcd7648-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "9f5a7830b004ecbfa9c4bdc89d01afbc", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "361", + "Content-Length": "360", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:53 GMT", + "Date": "Thu, 30 Sep 2021 06:20:23 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "b4c4082bf67f1f1572433a8d1eb086ad", - "x-ms-correlation-request-id": "ead74289-27dc-41f3-9321-06697a250de5", - "x-ms-request-id": "1be13e18-6bc9-4678-abc2-eb9e0b39bb99", + "x-ms-client-request-id": "9f5a7830b004ecbfa9c4bdc89d01afbc", + "x-ms-correlation-request-id": "f4c18a98-1cec-4072-a0c0-ac4b85dd6e3f", + "x-ms-request-id": "33a300b6-bf92-40c5-800a-b6f745b67188", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline2065174593", - "name": "Pipeline2065174593", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/MyPipeline532", + "name": "MyPipeline532", "type": "Microsoft.Synapse/workspaces/pipelines", "properties": { - "lastPublishTime": "2020-12-23T20:30:44Z" + "activities": [], + "lastPublishTime": "2020-10-09T11:04:10Z" }, - "etag": "03006ed4-0000-0800-0000-5fe3a8f40000" + "etag": "0000ab2a-0000-0100-0000-5f8043aa0000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline1380849574?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/pipelines/MyPipeline387?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-0bd5ca5b64f7854480ce8f3061a7bea6-0f1785d7493b6c43-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "21c513b3c22b9d9f7fd6da9dea4a9bef", + "traceparent": "00-bf7c823fe110c841a3ab48652a7474fa-de13d4d0c23eb846-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "65717299bcfc7d0eb6b0832d6075a88a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "361", + "Content-Length": "704", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:53 GMT", + "Date": "Thu, 30 Sep 2021 06:20:23 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "21c513b3c22b9d9f7fd6da9dea4a9bef", - "x-ms-correlation-request-id": "59d2465c-4e39-4c0a-ad12-5ea8a9671d80", - "x-ms-request-id": "189e2b2c-a108-4dd3-8f65-5e4a7b920887", + "x-ms-client-request-id": "65717299bcfc7d0eb6b0832d6075a88a", + "x-ms-correlation-request-id": "a9bdf431-a961-4b94-a127-28462d3c4237", + "x-ms-request-id": "a30210f3-5265-496c-9234-70aa1689d19a", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1380849574", - "name": "Pipeline1380849574", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/MyPipeline387", + "name": "MyPipeline387", "type": "Microsoft.Synapse/workspaces/pipelines", "properties": { - "lastPublishTime": "2021-01-14T22:25:10Z" + "activities": [ + { + "name": "Spark job definition1", + "type": "SparkJob", + "dependsOn": [], + "policy": { + "timeout": "7.00:00:00", + "retry": 0, + "retryIntervalInSeconds": 30, + "secureOutput": false, + "secureInput": false + }, + "userProperties": [], + "typeProperties": { + "sparkJob": { + "referenceName": "Spark job definition yifso", + "type": "SparkJobDefinitionReference" + }, + "args": [ + "abc" + ] + } + } + ], + "annotations": [], + "lastPublishTime": "2021-08-11T00:53:55Z" }, - "etag": "0807506f-0000-0800-0000-6000c4c60000" + "etag": "1c00887e-0000-0100-0000-61131fa30000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline1007302775?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/pipelines/MyPipeline849?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-a4c2f32466e63a4898946eb8d8f03701-a0604f5b63f70d4a-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "2d458ceba5023794966480393c92d1cb", + "traceparent": "00-0c133099ff48a14b99ba0789e512ab10-f3b60b59376fa447-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "cd086d8f1cc9563c5766156ad37045e4", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "361", + "Content-Length": "360", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:53 GMT", + "Date": "Thu, 30 Sep 2021 06:20:23 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "2d458ceba5023794966480393c92d1cb", - "x-ms-correlation-request-id": "61df00d7-342b-4def-ab7e-479933f8e2ec", - "x-ms-request-id": "64993923-9dc9-48af-8a09-356d054ca596", + "x-ms-client-request-id": "cd086d8f1cc9563c5766156ad37045e4", + "x-ms-correlation-request-id": "3b99f402-7259-4686-a9fd-4c3fa13298fd", + "x-ms-request-id": "1f7a2eb4-5576-4b25-a4b1-af5b28dbec81", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1007302775", - "name": "Pipeline1007302775", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/MyPipeline849", + "name": "MyPipeline849", "type": "Microsoft.Synapse/workspaces/pipelines", "properties": { - "lastPublishTime": "2021-01-14T22:25:32Z" + "activities": [], + "lastPublishTime": "2020-10-09T11:16:23Z" }, - "etag": "08074880-0000-0800-0000-6000c4dc0000" + "etag": "0000022b-0000-0100-0000-5f8046870000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline280500725?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/pipelines/dongwwa_pipeline_1202?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-9d0d70450524e6489529b8c1f2dd6ba3-b1a8831dd08a9646-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "77bf6c777422682d692735a81b773527", + "traceparent": "00-c5a555d116851f40ae579a60000b140b-e455e28e7d866c41-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "1f1601b149ec74e569dde8532c928c34", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "359", + "Content-Length": "820", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:54 GMT", + "Date": "Thu, 30 Sep 2021 06:20:23 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "77bf6c777422682d692735a81b773527", - "x-ms-correlation-request-id": "5101e8fc-c55d-4e3c-8737-172738a126ab", - "x-ms-request-id": "191d0137-6dab-49a9-8ae9-486c1596e806", + "x-ms-client-request-id": "1f1601b149ec74e569dde8532c928c34", + "x-ms-correlation-request-id": "8c43c032-1c41-44e1-a049-21227f4d78ac", + "x-ms-request-id": "0d9c5afd-7864-44f0-bc36-51337ae9cf3a", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline280500725", - "name": "Pipeline280500725", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/dongwwa_pipeline_1202", + "name": "dongwwa_pipeline_1202", "type": "Microsoft.Synapse/workspaces/pipelines", "properties": { - "lastPublishTime": "2021-01-15T16:23:19Z" + "description": "testDescription", + "activities": [ + { + "name": "Notebook1", + "type": "SynapseNotebook", + "dependsOn": [], + "policy": { + "timeout": "7.00:00:00", + "retry": 0, + "retryIntervalInSeconds": 30, + "secureOutput": false, + "secureInput": false + }, + "userProperties": [], + "typeProperties": { + "notebook": { + "referenceName": "Notebook 1", + "type": "NotebookReference" + }, + "parameters": { + "dongwwavar": { + "value": "dongwwatest", + "type": "string" + } + } + } + } + ], + "parameters": { + "dongwwatest": { + "type": "Array" + } + }, + "annotations": [], + "lastPublishTime": "2021-04-13T06:46:57Z" }, - "etag": "c5074d53-0000-0800-0000-6001c1770000" + "etag": "fb01956a-0000-0100-0000-60753e610000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline1956491908?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/pipelines/dwpipeline0342?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-2d169238f6a1964b99bcf6f83bb403bd-efce57f8bb655545-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "91a14aa8586a0dab7f8d8ac7426561ec", + "traceparent": "00-b116f74bbec4ae478cce9374cb948aaf-3f81f85e1db5c645-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "2f39331be2f87df3361a0d95a7a3aa46", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "361", + "Content-Length": "660", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:54 GMT", + "Date": "Thu, 30 Sep 2021 06:20:24 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "91a14aa8586a0dab7f8d8ac7426561ec", - "x-ms-correlation-request-id": "94edfe07-3621-4676-819f-8caed8f35c0b", - "x-ms-request-id": "fb6cbaeb-0ae5-4f98-a9b1-657022741eec", + "x-ms-client-request-id": "2f39331be2f87df3361a0d95a7a3aa46", + "x-ms-correlation-request-id": "394f2585-2784-441f-ae4a-18da41d125ad", + "x-ms-request-id": "eab78fa8-d158-4353-9d86-207840ed3df2", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1956491908", - "name": "Pipeline1956491908", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/dwpipeline0342", + "name": "dwpipeline0342", "type": "Microsoft.Synapse/workspaces/pipelines", "properties": { - "lastPublishTime": "2021-01-15T16:23:42Z" + "activities": [ + { + "name": "Notebook1", + "type": "SynapseNotebook", + "dependsOn": [], + "userProperties": [], + "typeProperties": { + "notebook": { + "type": "NotebookReference", + "referenceName": "Notebook 1" + } + }, + "policy": { + "timeout": "7.00:00:00", + "retry": 0, + "retryIntervalInSeconds": 30, + "secureOutput": false, + "secureInput": false + } + } + ], + "annotations": [], + "lastPublishTime": "2020-12-10T11:53:20Z" }, - "etag": "c5077964-0000-0800-0000-6001c18e0000" + "etag": "c2005778-0000-0100-0000-5fd20c300000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline209330562?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/pipelines/Pipeline36729663?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-b988799eb2949143823b84e5dffc49d1-ae94f0ddacfe5445-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "7d260f04248b77cd5fddc4da70eb1b1f", + "traceparent": "00-0e72e9a7056d404a95ae68a0fdf129bd-39ff059760cd5e44-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "5e7b9e6b895e469d889463eb33e829c5", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "359", + "Content-Length": "350", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:54 GMT", + "Date": "Thu, 30 Sep 2021 06:20:24 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "7d260f04248b77cd5fddc4da70eb1b1f", - "x-ms-correlation-request-id": "cdf19d3e-9c61-455a-a40b-62c986269086", - "x-ms-request-id": "a88d0f99-995c-4c64-a5c2-4f6b50faa3c0", + "x-ms-client-request-id": "5e7b9e6b895e469d889463eb33e829c5", + "x-ms-correlation-request-id": "66059588-5f1c-4544-a8a9-9b295edb065e", + "x-ms-request-id": "90b0041e-5a5b-4e16-b07b-575b071eabe0", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline209330562", - "name": "Pipeline209330562", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/Pipeline36729663", + "name": "Pipeline36729663", "type": "Microsoft.Synapse/workspaces/pipelines", "properties": { - "lastPublishTime": "2021-01-15T18:19:25Z" + "lastPublishTime": "2021-04-01T08:05:56Z" }, - "etag": "d90701d0-0000-0800-0000-6001dcad0000" + "etag": "9500cccb-0000-0100-0000-60657ee40000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline1157145368?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/pipelines/Pipeline57685944?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-9b42b8e337d28c4882a9017493377cdd-8f8aa897f4532541-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "f191582e40f11e60c1b2f794e9652504", + "traceparent": "00-06f25aa657d99d40af530b9d1f5443b3-1b18c9a969915e41-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "9f4fe0da1536ceeb0e98e8d23b50ccc6", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "361", + "Content-Length": "350", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:54 GMT", + "Date": "Thu, 30 Sep 2021 06:20:24 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "f191582e40f11e60c1b2f794e9652504", - "x-ms-correlation-request-id": "3f2653c9-c62f-4357-9adf-449343906cef", - "x-ms-request-id": "5c402f09-688c-423e-8e20-081e8eb96053", + "x-ms-client-request-id": "9f4fe0da1536ceeb0e98e8d23b50ccc6", + "x-ms-correlation-request-id": "676efefe-bc7b-472f-9e0a-c157d9862140", + "x-ms-request-id": "59655fc3-c7d5-4780-aa3b-760de8aa453f", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1157145368", - "name": "Pipeline1157145368", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/Pipeline57685944", + "name": "Pipeline57685944", "type": "Microsoft.Synapse/workspaces/pipelines", "properties": { - "lastPublishTime": "2021-01-15T18:19:52Z" + "lastPublishTime": "2021-04-01T08:27:23Z" }, - "etag": "d907d1e4-0000-0800-0000-6001dcc80000" + "etag": "95007ccc-0000-0100-0000-606583eb0000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline1721294700?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/pipelines/Pipeline19258722?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-bb3214209885af46be297e9b642e264d-9f7cd97b0a98b143-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "0ca449c6b851839c7d29328d94d09d93", + "traceparent": "00-6cc0973da77ba446b7e31b1e24e82975-9180631304d5b848-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "8de7a2322e1692d695f3a6647f074a4d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "361", + "Content-Length": "350", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:54 GMT", + "Date": "Thu, 30 Sep 2021 06:20:24 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "0ca449c6b851839c7d29328d94d09d93", - "x-ms-correlation-request-id": "acc88995-0f1b-4feb-ad03-f4a7a42dbe85", - "x-ms-request-id": "8790e990-c9f2-4811-ba07-24ab7c2a76c7", + "x-ms-client-request-id": "8de7a2322e1692d695f3a6647f074a4d", + "x-ms-correlation-request-id": "ba4903a8-0291-4e05-b3e4-2e0f7d4c6eaf", + "x-ms-request-id": "7b541568-1a19-45c9-8889-96806659e80d", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1721294700", - "name": "Pipeline1721294700", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/Pipeline19258722", + "name": "Pipeline19258722", "type": "Microsoft.Synapse/workspaces/pipelines", "properties": { - "lastPublishTime": "2021-01-19T20:12:06Z" + "lastPublishTime": "2021-04-13T04:25:47Z" }, - "etag": "07001982-0000-0800-0000-60073d160000" + "etag": "fa01a87b-0000-0100-0000-60751d4b0000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline1221073405?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/pipelines/Pipeline15194766?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-a96919f8f5a1694080bdfa594964d9b9-f788a31bb4f33346-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "e9996b716fd3c4fbaf07bbd92c388ef9", + "traceparent": "00-a6abf6351249c74280a66c2dad4424a3-d0d3553cb236c445-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "c6ba48f00a54550fb3ac4fc5a0cb0a38", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "361", + "Content-Length": "350", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:54 GMT", + "Date": "Thu, 30 Sep 2021 06:20:24 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "e9996b716fd3c4fbaf07bbd92c388ef9", - "x-ms-correlation-request-id": "8067e96b-be84-4afb-afb8-ceb9d1670ef8", - "x-ms-request-id": "476c055d-3b80-450e-be39-aeee1e84e7e3", + "x-ms-client-request-id": "c6ba48f00a54550fb3ac4fc5a0cb0a38", + "x-ms-correlation-request-id": "b9436dc8-4855-49f5-84f6-aaa46a151e38", + "x-ms-request-id": "96d1b07b-cbeb-45fa-9ff2-88563162dd91", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline1221073405", - "name": "Pipeline1221073405", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/Pipeline15194766", + "name": "Pipeline15194766", "type": "Microsoft.Synapse/workspaces/pipelines", "properties": { - "lastPublishTime": "2021-01-19T20:30:18Z" + "lastPublishTime": "2021-04-13T04:45:45Z" }, - "etag": "07002789-0000-0800-0000-6007415a0000" + "etag": "fa015e9b-0000-0100-0000-607521f90000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline56022682?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/pipelines/Pipeline83704521?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-be0f3a7e79b1254abedc4804531618b5-6d70193d63c68640-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "2614c0b70f4776cebc0d73c70dd28af0", + "traceparent": "00-689babccd02acc4488b95c8ce8e63286-5d51bd81d727dd44-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "90b89dc89b00acae0abc0a436f874f06", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "357", + "Content-Length": "350", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:54 GMT", + "Date": "Thu, 30 Sep 2021 06:20:24 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "2614c0b70f4776cebc0d73c70dd28af0", - "x-ms-correlation-request-id": "adb1d45d-3f5e-47f5-a7b6-5489e20396c6", - "x-ms-request-id": "abfdfad9-8ff1-4745-b688-6cb8bd48efe4", + "x-ms-client-request-id": "90b89dc89b00acae0abc0a436f874f06", + "x-ms-correlation-request-id": "1609e3bf-aed6-4255-9758-2d8254404eb6", + "x-ms-request-id": "8ed04b90-d170-4d92-9184-2e8c06c3b93c", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline56022682", - "name": "Pipeline56022682", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/Pipeline83704521", + "name": "Pipeline83704521", "type": "Microsoft.Synapse/workspaces/pipelines", "properties": { - "lastPublishTime": "2021-01-20T18:19:56Z" + "lastPublishTime": "2021-04-13T04:46:44Z" }, - "etag": "31003770-0000-0800-0000-6008744c0000" + "etag": "fa01049d-0000-0100-0000-607522340000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline64227599?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/pipelines/Pipeline13334290?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-abdfb3f507273d48a4a91a5f1ebeb48f-5b30252fa8d45a43-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "7d2264143bcc56304ddf5d49fcc25745", + "traceparent": "00-aa391a43b86ee348b19eee80408007ad-d2a07924e1b01d42-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "f3e19b4d059528719392da6ade10f2ca", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "357", + "Content-Length": "350", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:54 GMT", + "Date": "Thu, 30 Sep 2021 06:20:24 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "7d2264143bcc56304ddf5d49fcc25745", - "x-ms-correlation-request-id": "8b7de532-2b8e-45ce-946e-aa59e728b0ad", - "x-ms-request-id": "90574d18-0ffa-4068-8f23-a37d6d39d571", + "x-ms-client-request-id": "f3e19b4d059528719392da6ade10f2ca", + "x-ms-correlation-request-id": "d3bf5e15-5dca-42ef-bd75-76d4fbcd1ae8", + "x-ms-request-id": "186b414d-acee-44e5-a21f-8a1f823e1592", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline64227599", - "name": "Pipeline64227599", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/Pipeline13334290", + "name": "Pipeline13334290", "type": "Microsoft.Synapse/workspaces/pipelines", "properties": { - "lastPublishTime": "2021-01-20T18:20:22Z" + "lastPublishTime": "2021-04-13T06:08:47Z" }, - "etag": "31001e82-0000-0800-0000-600874660000" + "etag": "fb019e25-0000-0100-0000-6075356f0000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline17897275?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/pipelines/notebook-04-14-00-07?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-9ce232f505639f49963b2db20b4d492e-24c4af2f3a96dd4e-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "d4d5389a76bc624b9d222cc5fc33b7dc", + "traceparent": "00-607f24902114af4396ed18d0a3d8b40b-2b791aba2330b24d-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "e19b6ee9ba4e544d9a0ebc9700cbe62b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "357", + "Content-Length": "738", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:54 GMT", + "Date": "Thu, 30 Sep 2021 06:20:25 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "d4d5389a76bc624b9d222cc5fc33b7dc", - "x-ms-correlation-request-id": "c6115830-ce19-4405-869b-ac608fceefe9", - "x-ms-request-id": "637d4822-5f7c-424b-adf8-fb16529e5d90", + "x-ms-client-request-id": "e19b6ee9ba4e544d9a0ebc9700cbe62b", + "x-ms-correlation-request-id": "352b2fbe-e495-416d-906e-57c8de0216c6", + "x-ms-request-id": "1711b8f2-f56d-48fe-aaa9-3b6f4e08e6e2", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline17897275", - "name": "Pipeline17897275", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/notebook-04-14-00-07", + "name": "notebook-04-14-00-07", "type": "Microsoft.Synapse/workspaces/pipelines", "properties": { - "lastPublishTime": "2021-01-20T18:34:58Z" + "activities": [ + { + "policy": { + "timeout": "0.00:00:30", + "retry": 0, + "retryIntervalInSeconds": 30, + "secureInput": false, + "secureOutput": false + }, + "name": "Notebook", + "type": "SynapseNotebook", + "typeProperties": { + "notebook": { + "type": "NotebookReference", + "referenceName": "notebook-04-14-00-07" + }, + "parameters": { + "param": { + "type": "Float", + "defaultValue": 1.2345 + } + } + } + } + ], + "parameters": { + "callBackUri": { + "type": "String" + } + }, + "lastPublishTime": "2021-04-14T07:08:52Z" }, - "etag": "330079f7-0000-0800-0000-600877d20000" + "etag": "6003aed9-0000-0100-0000-607695040000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline15426769?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/pipelines/notebook-04-14-00-09?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-3045575f6575c541b765105b8974895b-6dbee8e25e28274b-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "c7c4cb7d10157b2d8fbdd968b2847afa", + "traceparent": "00-92481239bae16b47b08aac61303c710f-84425fa64d44d546-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "0577485c16e9c2a22c90fd6ec144cdf9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "357", + "Content-Length": "738", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:55 GMT", + "Date": "Thu, 30 Sep 2021 06:20:25 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "c7c4cb7d10157b2d8fbdd968b2847afa", - "x-ms-correlation-request-id": "e2f65948-60c1-45b2-a796-036860b8a8cb", - "x-ms-request-id": "ca8d7c71-8802-4d04-9d78-6923c3bfa192", + "x-ms-client-request-id": "0577485c16e9c2a22c90fd6ec144cdf9", + "x-ms-correlation-request-id": "dc8c17ff-6af1-40fa-bf98-f48132b9d8cb", + "x-ms-request-id": "f0def73d-a9e4-41eb-87da-7eab99966796", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline15426769", - "name": "Pipeline15426769", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/notebook-04-14-00-09", + "name": "notebook-04-14-00-09", "type": "Microsoft.Synapse/workspaces/pipelines", "properties": { - "lastPublishTime": "2021-01-20T18:35:27Z" + "activities": [ + { + "policy": { + "timeout": "0.00:00:30", + "retry": 0, + "retryIntervalInSeconds": 30, + "secureInput": false, + "secureOutput": false + }, + "name": "Notebook", + "type": "SynapseNotebook", + "typeProperties": { + "notebook": { + "type": "NotebookReference", + "referenceName": "notebook-04-14-00-09" + }, + "parameters": { + "param": { + "type": "Float", + "defaultValue": 1.2345 + } + } + } + } + ], + "parameters": { + "callBackUri": { + "type": "String" + } + }, + "lastPublishTime": "2021-04-14T07:10:05Z" }, - "etag": "3400f90a-0000-0800-0000-600877ef0000" + "etag": "6103746a-0000-0100-0000-6076954d0000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline20933056?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/pipelines/Pipeline19023801?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-051bef27bd2837448ac0a7c3cb961cb3-20280de805ea3242-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "d42d2eb6b5fd9e3418c0e0a90f6a5a1a", + "traceparent": "00-d7e06586c7bdbd44bca72a1e4782389a-166f7346487e644a-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "015a3fca6dec93b84d8c598649d928c7", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "357", + "Content-Length": "350", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:55 GMT", + "Date": "Thu, 30 Sep 2021 06:20:25 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "d42d2eb6b5fd9e3418c0e0a90f6a5a1a", - "x-ms-correlation-request-id": "1fe90d68-bffb-422d-9207-3e2872aa7005", - "x-ms-request-id": "9879cd4f-4d65-4c56-b795-6ce3d3151f9e", + "x-ms-client-request-id": "015a3fca6dec93b84d8c598649d928c7", + "x-ms-correlation-request-id": "e07618dc-353e-49aa-89d0-1a3661d85463", + "x-ms-request-id": "d5367d33-51a4-4729-b1e7-2b4fe308e834", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline20933056", - "name": "Pipeline20933056", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/Pipeline19023801", + "name": "Pipeline19023801", "type": "Microsoft.Synapse/workspaces/pipelines", "properties": { - "lastPublishTime": "2021-01-20T21:39:41Z" + "lastPublishTime": "2021-09-30T06:20:20Z" }, - "etag": "5100e5e9-0000-0800-0000-6008a31d0000" + "etag": "2e009b80-0000-0100-0000-615557240000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline11571453?api-version=2019-06-01-preview", - "RequestMethod": "GET", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/pipelines/Pipeline19023801?api-version=2020-12-01", + "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-4e483080ffb3c14ca2104f36844f2737-b1596e6ac1f2dc45-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "31cc80288ffe8a2f0b5944fe9de3b019", + "traceparent": "00-ea50c15dcf05fb49bba530a5cc235fec-c2ed246ea63ce74b-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "950dafacec98d2e0cbd8b5bebcdf9356", "x-ms-return-client-request-id": "true" }, "RequestBody": null, - "StatusCode": 200, + "StatusCode": 202, "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "357", + "Access-Control-Allow-Headers": "Location", + "Access-Control-Expose-Headers": "Location", + "Content-Length": "367", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:55 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-ms-client-request-id": "31cc80288ffe8a2f0b5944fe9de3b019", - "x-ms-correlation-request-id": "50abf665-4b1b-4ef2-be0e-6814554f15b6", - "x-ms-request-id": "54e2015f-937b-4653-8834-2234ba07f1a3", - "X-Powered-By": "ASP.NET" + "Date": "Thu, 30 Sep 2021 06:20:25 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/5b9e79d6-6e75-4cd4-a56d-7c9b79f5d57a?api-version=2020-12-01", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "950dafacec98d2e0cbd8b5bebcdf9356", + "x-ms-request-id": "b238414f-3dd4-4ad0-9b0b-ee7a2aaa3b01" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline11571453", - "name": "Pipeline11571453", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2021-01-20T21:40:03Z" - }, - "etag": "510085f8-0000-0800-0000-6008a3330000" + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/Pipeline19023801", + "recordId": 0, + "state": "Deleting", + "created": "0001-01-01T00:00:00", + "changed": "0001-01-01T00:00:00", + "type": "Pipeline", + "name": "Pipeline19023801", + "operationId": "5b9e79d6-6e75-4cd4-a56d-7c9b79f5d57a" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline19023801?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/5b9e79d6-6e75-4cd4-a56d-7c9b79f5d57a?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-ef6f98f68c9ec54cb3f60a8e479ef465-37a1b6c3c1b0024d-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "cd0f32a8e206c7de9625ae552f836c24", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "11c136683736de605e883613b8f9d66e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, - "StatusCode": 200, + "StatusCode": 202, "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "357", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:55 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" ], - "Strict-Transport-Security": "max-age=15724800; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "cd0f32a8e206c7de9625ae552f836c24", - "x-ms-correlation-request-id": "959c5ffc-d58b-42b0-851f-cb4d1f04ca38", - "x-ms-request-id": "bd71eb59-2163-4603-a6ca-822b915246b9", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline19023801", - "name": "Pipeline19023801", - "type": "Microsoft.Synapse/workspaces/pipelines", - "properties": { - "lastPublishTime": "2021-01-21T18:32:39Z" - }, - "etag": "1401ced5-0000-0800-0000-6009c8c70000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline19023801?api-version=2019-06-01-preview", - "RequestMethod": "DELETE", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-2f1bb438b6097c418fdae62b2a1fc3df-16183395acfd6843-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" ], - "x-ms-client-request-id": "313fbf6349b726fbffa2c8a470360135", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": "Location", - "Access-Control-Expose-Headers": "Location", - "Content-Length": "374", + "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:55 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/3b458552-f7af-48b2-8d86-a2cac60e83fe?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:20:25 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/5b9e79d6-6e75-4cd4-a56d-7c9b79f5d57a?api-version=2020-12-01", + "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "313fbf6349b726fbffa2c8a470360135", - "x-ms-request-id": "77af7ba1-557d-496e-8e80-b400769788a2" + "x-ms-client-request-id": "11c136683736de605e883613b8f9d66e", + "x-ms-request-id": "2aa2a15c-2973-4675-81f7-75e88716ea51" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline19023801", - "recordId": 0, - "state": "Deleting", - "created": "0001-01-01T00:00:00", - "changed": "0001-01-01T00:00:00", - "type": "Pipeline", - "name": "Pipeline19023801", - "operationId": "3b458552-f7af-48b2-8d86-a2cac60e83fe" + "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/3b458552-f7af-48b2-8d86-a2cac60e83fe?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/5b9e79d6-6e75-4cd4-a56d-7c9b79f5d57a?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "dd9a1fec7ea35f6136e9ce63193a5660", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "864502f9670dc755701e05b4358314ae", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -6190,28 +2077,25 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:55 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/3b458552-f7af-48b2-8d86-a2cac60e83fe?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:20:27 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/5b9e79d6-6e75-4cd4-a56d-7c9b79f5d57a?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "dd9a1fec7ea35f6136e9ce63193a5660", - "x-ms-request-id": "b1b62466-2b9f-49bc-952f-16db3d95fc73" + "x-ms-client-request-id": "864502f9670dc755701e05b4358314ae", + "x-ms-request-id": "2c825d47-7f3f-4f5d-ab16-5dcfa9d4c3b2" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/3b458552-f7af-48b2-8d86-a2cac60e83fe?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/5b9e79d6-6e75-4cd4-a56d-7c9b79f5d57a?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "684579249081d7caabf98fb1ae234525", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "8655635f811d091f61ee61e9ae2b3696", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -6227,28 +2111,25 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:57 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/3b458552-f7af-48b2-8d86-a2cac60e83fe?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:20:28 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/5b9e79d6-6e75-4cd4-a56d-7c9b79f5d57a?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "684579249081d7caabf98fb1ae234525", - "x-ms-request-id": "463aac46-0d86-45fb-8194-f2eabc5ae059" + "x-ms-client-request-id": "8655635f811d091f61ee61e9ae2b3696", + "x-ms-request-id": "da074489-21e2-4696-8203-76c42eb43b40" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/3b458552-f7af-48b2-8d86-a2cac60e83fe?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/5b9e79d6-6e75-4cd4-a56d-7c9b79f5d57a?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "50b74047239b909165a2a571bdaf2b67", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "ba63480df2d60045e0faa11832aca8da", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -6264,45 +2145,42 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 18:32:58 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/3b458552-f7af-48b2-8d86-a2cac60e83fe?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:20:29 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/5b9e79d6-6e75-4cd4-a56d-7c9b79f5d57a?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "50b74047239b909165a2a571bdaf2b67", - "x-ms-request-id": "7fac0277-549e-4ad5-a516-ed34cb44ec87" + "x-ms-client-request-id": "ba63480df2d60045e0faa11832aca8da", + "x-ms-request-id": "b504a94d-7605-47ac-81f0-a2e327e4d1ab" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/3b458552-f7af-48b2-8d86-a2cac60e83fe?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/5b9e79d6-6e75-4cd4-a56d-7c9b79f5d57a?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "66b33aaff1935c0655c332aaefafb012", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "54b387734fa37851e33b251e056c1844", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Content-Length": "0", - "Date": "Thu, 21 Jan 2021 18:32:59 GMT", + "Date": "Thu, 30 Sep 2021 06:20:30 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "66b33aaff1935c0655c332aaefafb012", - "x-ms-request-id": "6c160eb1-d9ee-401c-af85-581c9af7f711" + "x-ms-client-request-id": "54b387734fa37851e33b251e056c1844", + "x-ms-request-id": "9c9d256f-b1c4-4ae9-809e-16fed99c71ad" }, "ResponseBody": [] } ], "Variables": { - "AZURE_SYNAPSE_WORKSPACE_URL": "https://workspacechhamosynapse.dev.azuresynapse.net", + "AZURE_SYNAPSE_WORKSPACE_URL": "https://testsynapseworkspace.dev.azuresynapse.net", "RandomSeed": "1499650122" } } \ No newline at end of file diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/PipelineClientLiveTests/TestPipelineRun.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/PipelineClientLiveTests/TestPipelineRun.json index 6d727ec03e35..9e4ac07d8ac4 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/PipelineClientLiveTests/TestPipelineRun.json +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/PipelineClientLiveTests/TestPipelineRun.json @@ -1,18 +1,15 @@ { "Entries": [ { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline22452398?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/pipelines/Pipeline22452398?api-version=2020-12-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "17", "Content-Type": "application/json", - "traceparent": "00-abc0abdd0e97f84fbe54d055680ca284-9ca7e04503e8e949-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "traceparent": "00-23442a8687e9ee4793efa8750c80a136-7c3d7aa5388a1445-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "3682ac5d75d15f2cc47d672613317228", "x-ms-return-client-request-id": "true" }, @@ -29,37 +26,34 @@ "Location", "Retry-After" ], - "Content-Length": "449", + "Content-Length": "443", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:55:34 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/75c1e827-0635-4acb-aefc-b6a218ca4009?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:19:38 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/adac5d90-c14e-4693-8ee7-2d8d8599b347?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "3682ac5d75d15f2cc47d672613317228", - "x-ms-request-id": "ae6dd115-3125-47c9-b000-fdb05d073aa7" + "x-ms-request-id": "f9ffc977-b71f-4cdb-ac06-41a7058bb4df" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline22452398", - "recordId": 990830, + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/Pipeline22452398", + "recordId": 2424394, "state": "Creating", - "created": "2021-01-21T17:55:35.2933333Z", - "changed": "2021-01-21T17:55:35.2933333Z", + "created": "2021-09-30T06:19:39.1533333Z", + "changed": "2021-09-30T06:19:39.1533333Z", "type": "Pipeline", "name": "Pipeline22452398", - "operationId": "75c1e827-0635-4acb-aefc-b6a218ca4009", - "artifactId": "F649FEA8-3AD1-47B4-AC89-801947B32DAB" + "operationId": "adac5d90-c14e-4693-8ee7-2d8d8599b347", + "artifactId": "4F743B43-F50E-40B3-8261-B211DDB810B5" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/75c1e827-0635-4acb-aefc-b6a218ca4009?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/adac5d90-c14e-4693-8ee7-2d8d8599b347?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6acbccae6b04672645176c1fb9d37c6e", "x-ms-return-client-request-id": "true" }, @@ -76,109 +70,63 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:55:34 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/75c1e827-0635-4acb-aefc-b6a218ca4009?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:19:38 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/adac5d90-c14e-4693-8ee7-2d8d8599b347?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "6acbccae6b04672645176c1fb9d37c6e", - "x-ms-request-id": "17c62919-798d-49c3-ac85-b122fe2ee4d4" + "x-ms-request-id": "0322fe2c-f70b-4016-ace8-6e780fd89f92" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/75c1e827-0635-4acb-aefc-b6a218ca4009?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/adac5d90-c14e-4693-8ee7-2d8d8599b347?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "97db8f2dd99a8bc5c7229df95da09e02", "x-ms-return-client-request-id": "true" }, "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:55:36 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/75c1e827-0635-4acb-aefc-b6a218ca4009?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "97db8f2dd99a8bc5c7229df95da09e02", - "x-ms-request-id": "a5d752b6-bfcd-4dca-bb7c-3ff939526917" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/75c1e827-0635-4acb-aefc-b6a218ca4009?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "4677a26e086692246c602bf165c5a6c4", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "357", + "Content-Length": "350", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:55:37 GMT", + "Date": "Thu, 30 Sep 2021 06:19:39 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "4677a26e086692246c602bf165c5a6c4", - "x-ms-correlation-request-id": "630154f9-f62e-4787-b8af-6a138518ffd6", - "x-ms-request-id": "009e4915-11e0-4b80-aec2-6ed60ab5ad20", + "x-ms-client-request-id": "97db8f2dd99a8bc5c7229df95da09e02", + "x-ms-correlation-request-id": "7905596f-e82e-4264-b405-db12461c581e", + "x-ms-request-id": "fc0b01a9-ade2-46b4-b548-dc1396892d56", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline22452398", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/Pipeline22452398", "name": "Pipeline22452398", "type": "Microsoft.Synapse/workspaces/pipelines", "properties": { - "lastPublishTime": "2021-01-21T17:55:36Z" + "lastPublishTime": "2021-09-30T06:19:40Z" }, - "etag": "0e01c1d7-0000-0800-0000-6009c0180000" + "etag": "2e006e80-0000-0100-0000-615556fc0000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline22452398/createRun?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/pipelines/Pipeline22452398/createRun?api-version=2020-12-01", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-03fdf640b1c6594992a01ee87046d4f2-7e6a448a9444394a-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "315eaa5c77e7d429073fa3e1cd2d0aa4", + "traceparent": "00-77b5c1ecb22a9e4f8b3477fd11cef252-802079cb067f144d-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "4677a26e086692246c602bf165c5a6c4", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -187,36 +135,30 @@ "Cache-Control": "no-cache", "Content-Length": "48", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:55:39 GMT", + "Date": "Thu, 30 Sep 2021 06:19:42 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "315eaa5c77e7d429073fa3e1cd2d0aa4", - "x-ms-correlation-request-id": "4a3afa93-5fe9-4141-8744-c12cda74ca9e", - "x-ms-request-id": "2416db75-09ac-44c2-89fc-2c8c5d45341f", + "x-ms-client-request-id": "4677a26e086692246c602bf165c5a6c4", + "x-ms-correlation-request-id": "6283a4c6-9119-4467-958d-a67469a0db18", + "x-ms-request-id": "b24de002-aba9-4c62-88d2-3959c5506632", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "runId": "315eaa5c-77e7-d429-073f-a3e1cd2d0aa4" + "runId": "4677a26e-0866-9224-6c60-2bf165c5a6c4" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline22452398?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/pipelines/Pipeline22452398?api-version=2020-12-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-26494912ac562b419115f7cd888f0b15-7bdc943de77eac45-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "16b16979355b24086a482a39aed32602", + "traceparent": "00-915db6635d8bc744b378634c3a5552e9-ea80f5997eae884c-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "315eaa5c77e7d429073fa3e1cd2d0aa4", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -224,110 +166,33 @@ "ResponseHeaders": { "Access-Control-Allow-Headers": "Location", "Access-Control-Expose-Headers": "Location", - "Content-Length": "374", + "Content-Length": "367", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:55:39 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/205217ae-3df0-42b8-93bc-8f9323ccb10b?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:19:42 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/f00869ba-f59d-452e-8972-e56ea532dd24?api-version=2020-12-01", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "16b16979355b24086a482a39aed32602", - "x-ms-request-id": "3b1552b3-2406-4b8e-97c4-ca0f6e6a91f7" + "x-ms-client-request-id": "315eaa5c77e7d429073fa3e1cd2d0aa4", + "x-ms-request-id": "94c632cd-ba9a-40c5-bf10-159231f4a040" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline22452398", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/Pipeline22452398", "recordId": 0, "state": "Deleting", "created": "0001-01-01T00:00:00", "changed": "0001-01-01T00:00:00", "type": "Pipeline", "name": "Pipeline22452398", - "operationId": "205217ae-3df0-42b8-93bc-8f9323ccb10b" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/205217ae-3df0-42b8-93bc-8f9323ccb10b?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "fc7886568f132768a13ac69e4df02533", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:55:39 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/205217ae-3df0-42b8-93bc-8f9323ccb10b?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "fc7886568f132768a13ac69e4df02533", - "x-ms-request-id": "b15ca222-8254-4c4f-882d-dda52cd7da9a" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/205217ae-3df0-42b8-93bc-8f9323ccb10b?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "f466a01957900c634fba9db8f5e1be28", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:55:41 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/205217ae-3df0-42b8-93bc-8f9323ccb10b?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "f466a01957900c634fba9db8f5e1be28", - "x-ms-request-id": "6bd3a777-43ef-4444-abd0-e893333ffad8" - }, - "ResponseBody": { - "status": "InProgress" + "operationId": "f00869ba-f59d-452e-8972-e56ea532dd24" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/205217ae-3df0-42b8-93bc-8f9323ccb10b?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/f00869ba-f59d-452e-8972-e56ea532dd24?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "27e3ea84295bebee70751107a57ba988", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "b39cd87b6c41f61a78a33f266542c43f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -343,65 +208,25 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:55:42 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/205217ae-3df0-42b8-93bc-8f9323ccb10b?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:19:42 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/f00869ba-f59d-452e-8972-e56ea532dd24?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "27e3ea84295bebee70751107a57ba988", - "x-ms-request-id": "d9db6009-054c-49dd-916b-cd6c7bdbd055" + "x-ms-client-request-id": "b39cd87b6c41f61a78a33f266542c43f", + "x-ms-request-id": "5b9fd6b0-2947-4c32-ab60-d7d4307930ad" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/205217ae-3df0-42b8-93bc-8f9323ccb10b?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/f00869ba-f59d-452e-8972-e56ea532dd24?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "c40d0c7dcfdcfeae236bac59f2b032bf", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:55:43 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/205217ae-3df0-42b8-93bc-8f9323ccb10b?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "c40d0c7dcfdcfeae236bac59f2b032bf", - "x-ms-request-id": "3213a749-4e1a-4276-8da6-3310ad367996" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/205217ae-3df0-42b8-93bc-8f9323ccb10b?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "621a9e7bfd0cefd8b27a841b465b66d3", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "fc7886568f132768a13ac69e4df02533", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -417,45 +242,42 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:55:44 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/205217ae-3df0-42b8-93bc-8f9323ccb10b?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:19:43 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/f00869ba-f59d-452e-8972-e56ea532dd24?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "621a9e7bfd0cefd8b27a841b465b66d3", - "x-ms-request-id": "2c301e91-8f8e-4b16-b23d-40fccf71060f" + "x-ms-client-request-id": "fc7886568f132768a13ac69e4df02533", + "x-ms-request-id": "15795690-f272-4cc5-ae0b-b2f87c9c6436" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/205217ae-3df0-42b8-93bc-8f9323ccb10b?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/f00869ba-f59d-452e-8972-e56ea532dd24?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "e93a1411fad4b44c3be504ef7d95f9bf", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "f466a01957900c634fba9db8f5e1be28", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Content-Length": "0", - "Date": "Thu, 21 Jan 2021 17:55:45 GMT", + "Date": "Thu, 30 Sep 2021 06:19:45 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "e93a1411fad4b44c3be504ef7d95f9bf", - "x-ms-request-id": "163a3f07-7228-475a-bd37-6d9519fc2f55" + "x-ms-client-request-id": "f466a01957900c634fba9db8f5e1be28", + "x-ms-request-id": "d8d7b659-9e5e-4f65-8801-a4470b47f063" }, "ResponseBody": [] } ], "Variables": { - "AZURE_SYNAPSE_WORKSPACE_URL": "https://workspacechhamosynapse.dev.azuresynapse.net", + "AZURE_SYNAPSE_WORKSPACE_URL": "https://testsynapseworkspace.dev.azuresynapse.net", "RandomSeed": "1496319922" } } \ No newline at end of file diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/PipelineClientLiveTests/TestPipelineRunAsync.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/PipelineClientLiveTests/TestPipelineRunAsync.json index 28d20ab26496..a3f1fb3cbdc1 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/PipelineClientLiveTests/TestPipelineRunAsync.json +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/PipelineClientLiveTests/TestPipelineRunAsync.json @@ -1,18 +1,15 @@ { "Entries": [ { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline74195038?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/pipelines/Pipeline74195038?api-version=2020-12-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "17", "Content-Type": "application/json", - "traceparent": "00-cf2679641c16cb4a82e57374a1314a3c-d7a8110689d17e46-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "traceparent": "00-fd8a8d217a438b4baf3fd16bfeffc50b-35a18eb3a0a86344-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "1a42e788c0fceffe0d24aeaeac5cbcf2", "x-ms-return-client-request-id": "true" }, @@ -29,37 +26,34 @@ "Location", "Retry-After" ], - "Content-Length": "449", + "Content-Length": "443", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:56:35 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/0cdae9e5-49a0-404c-9913-6c06a1028f1d?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:20:30 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/959bf4f5-5cdc-45cd-969b-7b580da4459f?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "1a42e788c0fceffe0d24aeaeac5cbcf2", - "x-ms-request-id": "5bfe9494-427e-454d-985d-4450261d7624" + "x-ms-request-id": "97a4cb51-0b4d-40c3-8cf5-44056a21e772" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline74195038", - "recordId": 990836, + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/Pipeline74195038", + "recordId": 2424452, "state": "Creating", - "created": "2021-01-21T17:56:36.1366667Z", - "changed": "2021-01-21T17:56:36.1366667Z", + "created": "2021-09-30T06:20:31.0433333Z", + "changed": "2021-09-30T06:20:31.0433333Z", "type": "Pipeline", "name": "Pipeline74195038", - "operationId": "0cdae9e5-49a0-404c-9913-6c06a1028f1d", - "artifactId": "696A467A-8B4F-4BE0-AF71-2B2B38AAB9CD" + "operationId": "959bf4f5-5cdc-45cd-969b-7b580da4459f", + "artifactId": "DE50C756-DEA7-4334-89C0-342882D7C206" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/0cdae9e5-49a0-404c-9913-6c06a1028f1d?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/959bf4f5-5cdc-45cd-969b-7b580da4459f?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d5ab1b1ee714a1a34a65492c36af4d3b", "x-ms-return-client-request-id": "true" }, @@ -76,27 +70,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:56:35 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/0cdae9e5-49a0-404c-9913-6c06a1028f1d?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:20:30 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/959bf4f5-5cdc-45cd-969b-7b580da4459f?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "d5ab1b1ee714a1a34a65492c36af4d3b", - "x-ms-request-id": "9759ca99-6707-4dd8-9d3d-ac92627dfe56" + "x-ms-request-id": "3d6b899e-06c4-4d12-b389-3a550819e955" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/0cdae9e5-49a0-404c-9913-6c06a1028f1d?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/959bf4f5-5cdc-45cd-969b-7b580da4459f?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "0937703a1f1f898b1d6220735581aaf4", "x-ms-return-client-request-id": "true" }, @@ -113,27 +104,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:56:36 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/0cdae9e5-49a0-404c-9913-6c06a1028f1d?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:20:32 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/959bf4f5-5cdc-45cd-969b-7b580da4459f?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "0937703a1f1f898b1d6220735581aaf4", - "x-ms-request-id": "f963cf6c-b9c3-4faa-8858-54f597463d34" + "x-ms-request-id": "ffef57e4-813d-4b65-97af-8587d429c4e1" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/0cdae9e5-49a0-404c-9913-6c06a1028f1d?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/959bf4f5-5cdc-45cd-969b-7b580da4459f?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "91902341e7b06fdea54d19bdb49da94a", "x-ms-return-client-request-id": "true" }, @@ -150,27 +138,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:56:38 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/0cdae9e5-49a0-404c-9913-6c06a1028f1d?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:20:33 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/959bf4f5-5cdc-45cd-969b-7b580da4459f?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "91902341e7b06fdea54d19bdb49da94a", - "x-ms-request-id": "5c65c841-2624-45c8-8724-e2bb35af86c6" + "x-ms-request-id": "a7e73973-6bf5-4ae4-a413-97add76a3c83" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/0cdae9e5-49a0-404c-9913-6c06a1028f1d?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/959bf4f5-5cdc-45cd-969b-7b580da4459f?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d4422f3bd9e1ff6b8f22b8b2c6304bc9", "x-ms-return-client-request-id": "true" }, @@ -178,43 +163,37 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "357", + "Content-Length": "350", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:56:39 GMT", + "Date": "Thu, 30 Sep 2021 06:20:34 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "d4422f3bd9e1ff6b8f22b8b2c6304bc9", - "x-ms-correlation-request-id": "02d74f67-857e-49f5-914d-d5991f24a8f4", - "x-ms-request-id": "f5285f91-e864-40ed-b33d-7912c9ba7c55", + "x-ms-correlation-request-id": "629aaf4a-66f9-427f-b4b9-3b72426dafca", + "x-ms-request-id": "a3a9490a-2723-4bcb-b11e-eeef80ae74af", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline74195038", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/Pipeline74195038", "name": "Pipeline74195038", "type": "Microsoft.Synapse/workspaces/pipelines", "properties": { - "lastPublishTime": "2021-01-21T17:56:38Z" + "lastPublishTime": "2021-09-30T06:20:33Z" }, - "etag": "0f011702-0000-0800-0000-6009c0560000" + "etag": "2e00a480-0000-0100-0000-615557310000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline74195038/createRun?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/pipelines/Pipeline74195038/createRun?api-version=2020-12-01", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-e0623c782c45dd40b5c7ccbb99eab2ae-d717b79721b6bd48-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "traceparent": "00-0b9b496ea3aa784fb5953563e82516c2-f813ae30ce08b141-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "12eb54bbbc1e538a92c763d105ced47f", "x-ms-return-client-request-id": "true" }, @@ -224,18 +203,15 @@ "Cache-Control": "no-cache", "Content-Length": "48", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:56:50 GMT", + "Date": "Thu, 30 Sep 2021 06:20:36 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "12eb54bbbc1e538a92c763d105ced47f", - "x-ms-correlation-request-id": "affaea2d-7457-4606-a338-e340fc93ae50", - "x-ms-request-id": "fb5f34bf-8992-4959-af7a-a9934ecaf4be", + "x-ms-correlation-request-id": "c8166dd8-a80c-498e-a86a-9aa50c8dc26c", + "x-ms-request-id": "29b8f954-5e7c-4a6b-9c1b-62d2c1396a88", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -243,16 +219,13 @@ } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline74195038?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/pipelines/Pipeline74195038?api-version=2020-12-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-4c6cedb71a36064e86d21599de103f78-1f13608e167abc47-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "traceparent": "00-077e1d337ac54d4eb5d7f2ffc09322b0-d34a1777f13e0643-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2637d6b8d53e6813b891018e2e2ba975", "x-ms-return-client-request-id": "true" }, @@ -261,35 +234,32 @@ "ResponseHeaders": { "Access-Control-Allow-Headers": "Location", "Access-Control-Expose-Headers": "Location", - "Content-Length": "374", + "Content-Length": "367", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:56:50 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/5e36c541-f464-495a-9278-7531655257e6?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:20:36 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dd8a7024-d278-4659-8cb1-06cfd873f400?api-version=2020-12-01", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "2637d6b8d53e6813b891018e2e2ba975", - "x-ms-request-id": "aa60428a-1fd6-42b1-b78c-e606157b1c81" + "x-ms-request-id": "bece542a-629c-44e4-8099-e4e13d045dc1" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline74195038", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/Pipeline74195038", "recordId": 0, "state": "Deleting", "created": "0001-01-01T00:00:00", "changed": "0001-01-01T00:00:00", "type": "Pipeline", "name": "Pipeline74195038", - "operationId": "5e36c541-f464-495a-9278-7531655257e6" + "operationId": "dd8a7024-d278-4659-8cb1-06cfd873f400" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/5e36c541-f464-495a-9278-7531655257e6?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dd8a7024-d278-4659-8cb1-06cfd873f400?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f0f9394d25f8e68a41825a8dbafb2466", "x-ms-return-client-request-id": "true" }, @@ -306,27 +276,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:56:50 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/5e36c541-f464-495a-9278-7531655257e6?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:20:36 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dd8a7024-d278-4659-8cb1-06cfd873f400?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "f0f9394d25f8e68a41825a8dbafb2466", - "x-ms-request-id": "5e1ff4eb-e2f4-4ea1-94b2-954fcff62a78" + "x-ms-request-id": "037fcfeb-8f68-4d1b-a020-1a7e71bb6c1c" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/5e36c541-f464-495a-9278-7531655257e6?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dd8a7024-d278-4659-8cb1-06cfd873f400?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b4cfee1d74cd21ccaab8805093f9f21f", "x-ms-return-client-request-id": "true" }, @@ -343,27 +310,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:56:52 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/5e36c541-f464-495a-9278-7531655257e6?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:20:38 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dd8a7024-d278-4659-8cb1-06cfd873f400?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "b4cfee1d74cd21ccaab8805093f9f21f", - "x-ms-request-id": "46924bb5-0b6c-4288-9176-5059adadacf1" + "x-ms-request-id": "c581d975-36c4-41e7-8106-f595749a44a0" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/5e36c541-f464-495a-9278-7531655257e6?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dd8a7024-d278-4659-8cb1-06cfd873f400?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f5413f97b931dc7dc61b1e2f3c9ec4a9", "x-ms-return-client-request-id": "true" }, @@ -380,27 +344,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:56:53 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/5e36c541-f464-495a-9278-7531655257e6?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:20:39 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dd8a7024-d278-4659-8cb1-06cfd873f400?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "f5413f97b931dc7dc61b1e2f3c9ec4a9", - "x-ms-request-id": "7aa91207-16ac-4a6b-80c9-f54af4780344" + "x-ms-request-id": "5d4165c2-ffc6-4756-92b0-edd7099c91b6" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/5e36c541-f464-495a-9278-7531655257e6?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dd8a7024-d278-4659-8cb1-06cfd873f400?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "87fcdcc945cad8f46cd8453fa43a5247", "x-ms-return-client-request-id": "true" }, @@ -417,119 +378,42 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:56:54 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/5e36c541-f464-495a-9278-7531655257e6?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:20:40 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dd8a7024-d278-4659-8cb1-06cfd873f400?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "87fcdcc945cad8f46cd8453fa43a5247", - "x-ms-request-id": "bfe96773-1058-4ab5-a2fc-1b432241effb" + "x-ms-request-id": "1a5db428-5e7d-4716-b418-a48a9d62e2f7" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/5e36c541-f464-495a-9278-7531655257e6?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/dd8a7024-d278-4659-8cb1-06cfd873f400?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "7bf53a902fba643471f2eeb1569ce40b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:56:56 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/5e36c541-f464-495a-9278-7531655257e6?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7bf53a902fba643471f2eeb1569ce40b", - "x-ms-request-id": "ba077d83-ee6e-42ab-83a7-d78862d64a58" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/5e36c541-f464-495a-9278-7531655257e6?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "b686d7f46bfd52554b698859733d388c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:56:57 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/5e36c541-f464-495a-9278-7531655257e6?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "b686d7f46bfd52554b698859733d388c", - "x-ms-request-id": "e30c987e-cfe7-487d-9f6f-5e3e35b3d9a5" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/5e36c541-f464-495a-9278-7531655257e6?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "019fd7c849a89aefa79716d7574281d0", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Content-Length": "0", - "Date": "Thu, 21 Jan 2021 17:56:58 GMT", + "Date": "Thu, 30 Sep 2021 06:20:41 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "019fd7c849a89aefa79716d7574281d0", - "x-ms-request-id": "3413e556-e225-4825-87b8-fb5d671d6a02" + "x-ms-client-request-id": "7bf53a902fba643471f2eeb1569ce40b", + "x-ms-request-id": "65d274db-0d35-48f7-a268-5ea2f2541f6d" }, "ResponseBody": [] } ], "Variables": { - "AZURE_SYNAPSE_WORKSPACE_URL": "https://workspacechhamosynapse.dev.azuresynapse.net", + "AZURE_SYNAPSE_WORKSPACE_URL": "https://testsynapseworkspace.dev.azuresynapse.net", "RandomSeed": "77993004" } } \ No newline at end of file diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/PipelineClientLiveTests/TestRenameLinkedService.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/PipelineClientLiveTests/TestRenameLinkedService.json index d74b27b4208f..da06a69ca07d 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/PipelineClientLiveTests/TestRenameLinkedService.json +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/PipelineClientLiveTests/TestRenameLinkedService.json @@ -1,18 +1,15 @@ { "Entries": [ { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline10327593?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/pipelines/Pipeline10327593?api-version=2020-12-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "17", "Content-Type": "application/json", - "traceparent": "00-c05bfa9f17c2a64498dd54c3e789537b-b2a23db2c2d69a43-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "traceparent": "00-75371b92ae9cec489f92162a5fbee9fa-88d760d32c2a6f49-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a8bb926a706d4e8f055052265e7ed7f9", "x-ms-return-client-request-id": "true" }, @@ -29,37 +26,34 @@ "Location", "Retry-After" ], - "Content-Length": "439", + "Content-Length": "433", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:55:45 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/0c7d4b09-bea1-43f6-a918-4d991fd1457d?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:19:45 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/7d5f1a4a-a09c-4949-82dd-6f1bf23c8aec?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "a8bb926a706d4e8f055052265e7ed7f9", - "x-ms-request-id": "510d1d37-6606-4d8c-a55e-e2dadeb0b7ec" + "x-ms-request-id": "a0dedfc8-c37c-4270-aff5-d2a617e8864a" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline10327593", - "recordId": 990831, + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/Pipeline10327593", + "recordId": 2424395, "state": "Creating", - "created": "2021-01-21T17:55:46.09Z", - "changed": "2021-01-21T17:55:46.09Z", + "created": "2021-09-30T06:19:45.47Z", + "changed": "2021-09-30T06:19:45.47Z", "type": "Pipeline", "name": "Pipeline10327593", - "operationId": "0c7d4b09-bea1-43f6-a918-4d991fd1457d", - "artifactId": "0BD534AB-DEA9-442D-B171-3EF71B3D160E" + "operationId": "7d5f1a4a-a09c-4949-82dd-6f1bf23c8aec", + "artifactId": "D2A04F29-8D5D-4C46-84CB-386B5CE84434" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/0c7d4b09-bea1-43f6-a918-4d991fd1457d?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/7d5f1a4a-a09c-4949-82dd-6f1bf23c8aec?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f7064755d4add16f1c5eff52c5f99e6f", "x-ms-return-client-request-id": "true" }, @@ -76,27 +70,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:55:45 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/0c7d4b09-bea1-43f6-a918-4d991fd1457d?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:19:45 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/7d5f1a4a-a09c-4949-82dd-6f1bf23c8aec?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "f7064755d4add16f1c5eff52c5f99e6f", - "x-ms-request-id": "f61d6643-823e-4478-86dc-b617d5037da3" + "x-ms-request-id": "1c2ffa1f-aa9e-4820-9670-c8626055f1f5" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/0c7d4b09-bea1-43f6-a918-4d991fd1457d?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/7d5f1a4a-a09c-4949-82dd-6f1bf23c8aec?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "3b254e8f1421df92d80d2ca52040d389", "x-ms-return-client-request-id": "true" }, @@ -113,27 +104,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:55:47 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/0c7d4b09-bea1-43f6-a918-4d991fd1457d?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:19:46 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/7d5f1a4a-a09c-4949-82dd-6f1bf23c8aec?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "3b254e8f1421df92d80d2ca52040d389", - "x-ms-request-id": "9266d5f0-d03b-46ca-bc08-9c6c21f01d77" + "x-ms-request-id": "5885f25d-9466-4d7c-8c15-f2e87915eae5" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/0c7d4b09-bea1-43f6-a918-4d991fd1457d?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/7d5f1a4a-a09c-4949-82dd-6f1bf23c8aec?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "17d02c88df78e74b673ad0498b67e883", "x-ms-return-client-request-id": "true" }, @@ -150,115 +138,69 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:55:48 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/0c7d4b09-bea1-43f6-a918-4d991fd1457d?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:19:47 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/7d5f1a4a-a09c-4949-82dd-6f1bf23c8aec?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "17d02c88df78e74b673ad0498b67e883", - "x-ms-request-id": "4b309e6d-e38d-4bbf-84ee-4850e391e2c0" + "x-ms-request-id": "66f76956-d677-48da-92fe-a2a0a509c9bb" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/0c7d4b09-bea1-43f6-a918-4d991fd1457d?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/7d5f1a4a-a09c-4949-82dd-6f1bf23c8aec?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "2cbedf298b564104b5271ea0a7c9b1db", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:55:49 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/0c7d4b09-bea1-43f6-a918-4d991fd1457d?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2cbedf298b564104b5271ea0a7c9b1db", - "x-ms-request-id": "666fe7d7-2895-4a48-8c06-91e9f96c5d7c" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/0c7d4b09-bea1-43f6-a918-4d991fd1457d?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "98c9758b8728b0f7033ed4e644485371", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "357", + "Content-Length": "350", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:55:50 GMT", + "Date": "Thu, 30 Sep 2021 06:19:48 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "98c9758b8728b0f7033ed4e644485371", - "x-ms-correlation-request-id": "678fa536-ac32-4ab6-9227-52d7e6d426b9", - "x-ms-request-id": "b602a8b3-1f4f-4448-bd86-7818ec934999", + "x-ms-client-request-id": "2cbedf298b564104b5271ea0a7c9b1db", + "x-ms-correlation-request-id": "b409aafd-f9a9-4313-b595-03045f29e079", + "x-ms-request-id": "ddcc89ed-7cbe-46db-8423-568c9e529027", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline10327593", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/Pipeline10327593", "name": "Pipeline10327593", "type": "Microsoft.Synapse/workspaces/pipelines", "properties": { - "lastPublishTime": "2021-01-21T17:55:49Z" + "lastPublishTime": "2021-09-30T06:19:48Z" }, - "etag": "0e0178e0-0000-0800-0000-6009c0250000" + "etag": "2e007880-0000-0100-0000-615557040000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline10327593/rename?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/pipelines/Pipeline10327593/rename?api-version=2020-12-01", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "30", "Content-Type": "application/json", - "traceparent": "00-ffaa788e56923b428120534524b21b25-65d8eddac92e1a4d-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "82407ca933a627fd8f6150c1ab3f9d89", + "traceparent": "00-8a0989232810224d9619d154b10ecbae-b753b55a14c4ad4d-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "2898c975f78703b03ed4e64448537124", "x-ms-return-client-request-id": "true" }, "RequestBody": { - "newName": "Pipeline21526658" + "newName": "Pipeline27823361" }, "StatusCode": 202, "ResponseHeaders": { @@ -270,37 +212,68 @@ "Location", "Retry-After" ], - "Content-Length": "444", + "Content-Length": "438", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:55:50 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/2457cdad-c2ed-45af-a473-3b8019e4995d?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:19:48 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c2c1106c-334d-48d9-9406-d6e2a9ef91a2?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "82407ca933a627fd8f6150c1ab3f9d89", - "x-ms-request-id": "e14b462f-23ff-4a71-a6ce-ce0721082ac2" + "x-ms-client-request-id": "2898c975f78703b03ed4e64448537124", + "x-ms-request-id": "13a3b3ca-7c5a-428a-89d1-143363e1bf1f" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline10327593", - "recordId": 990831, + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/Pipeline10327593", + "recordId": 2424395, "state": "Renaming", - "created": "2021-01-21T17:55:46.09Z", - "changed": "2021-01-21T17:55:49.6166667Z", + "created": "2021-09-30T06:19:45.47Z", + "changed": "2021-09-30T06:19:48.6433333Z", "type": "Pipeline", "name": "Pipeline10327593", - "operationId": "2457cdad-c2ed-45af-a473-3b8019e4995d", - "artifactId": "0BD534AB-DEA9-442D-B171-3EF71B3D160E" + "operationId": "c2c1106c-334d-48d9-9406-d6e2a9ef91a2", + "artifactId": "D2A04F29-8D5D-4C46-84CB-386B5CE84434" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/2457cdad-c2ed-45af-a473-3b8019e4995d?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c2c1106c-334d-48d9-9406-d6e2a9ef91a2?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "9d16bef45a50e8a10e2917b71efd6dd3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 30 Sep 2021 06:19:48 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c2c1106c-334d-48d9-9406-d6e2a9ef91a2?api-version=2020-12-01", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "9d16bef45a50e8a10e2917b71efd6dd3", + "x-ms-request-id": "a97b2c62-549c-4e11-b797-74b578dfb214" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c2c1106c-334d-48d9-9406-d6e2a9ef91a2?api-version=2020-12-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "4dfe7bad597041e5cc709826a6ee58ff", "x-ms-return-client-request-id": "true" }, @@ -317,27 +290,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:55:50 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/2457cdad-c2ed-45af-a473-3b8019e4995d?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:19:50 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c2c1106c-334d-48d9-9406-d6e2a9ef91a2?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "4dfe7bad597041e5cc709826a6ee58ff", - "x-ms-request-id": "3fc63550-42f1-4560-bfa5-f0b39d73737a" + "x-ms-request-id": "a8f38401-51d7-451b-b724-f82849080979" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/2457cdad-c2ed-45af-a473-3b8019e4995d?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c2c1106c-334d-48d9-9406-d6e2a9ef91a2?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "894f5c36d33d4ed4da58737c1c450992", "x-ms-return-client-request-id": "true" }, @@ -354,27 +324,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:55:52 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/2457cdad-c2ed-45af-a473-3b8019e4995d?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:19:51 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c2c1106c-334d-48d9-9406-d6e2a9ef91a2?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "894f5c36d33d4ed4da58737c1c450992", - "x-ms-request-id": "4327207a-d180-4639-89d6-ca538b2c1993" + "x-ms-request-id": "9f85ea6b-ec02-469e-924b-18abbb30191c" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/2457cdad-c2ed-45af-a473-3b8019e4995d?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c2c1106c-334d-48d9-9406-d6e2a9ef91a2?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2f137df44f409a19d9d4d0dfc17b411f", "x-ms-return-client-request-id": "true" }, @@ -391,27 +358,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:55:53 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/2457cdad-c2ed-45af-a473-3b8019e4995d?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:19:52 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c2c1106c-334d-48d9-9406-d6e2a9ef91a2?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "2f137df44f409a19d9d4d0dfc17b411f", - "x-ms-request-id": "82792bdb-8117-4577-86e2-c953b87f82eb" + "x-ms-request-id": "b58be127-ed89-489a-9298-5dcf2e3f331e" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/2457cdad-c2ed-45af-a473-3b8019e4995d?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c2c1106c-334d-48d9-9406-d6e2a9ef91a2?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c18118d1e3add996a7b07317e6682587", "x-ms-return-client-request-id": "true" }, @@ -428,27 +392,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:55:54 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/2457cdad-c2ed-45af-a473-3b8019e4995d?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:19:53 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c2c1106c-334d-48d9-9406-d6e2a9ef91a2?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "c18118d1e3add996a7b07317e6682587", - "x-ms-request-id": "9c96c553-8630-4455-bd80-941bdb9f5dd4" + "x-ms-request-id": "17cf1f1d-065f-4b0d-aeaf-cde8d595b7d7" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/2457cdad-c2ed-45af-a473-3b8019e4995d?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c2c1106c-334d-48d9-9406-d6e2a9ef91a2?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2931066628dbe6be43b5b06802f48d5e", "x-ms-return-client-request-id": "true" }, @@ -465,27 +426,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:55:55 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/2457cdad-c2ed-45af-a473-3b8019e4995d?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:19:54 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c2c1106c-334d-48d9-9406-d6e2a9ef91a2?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "2931066628dbe6be43b5b06802f48d5e", - "x-ms-request-id": "52ccac1a-8f8f-4223-a6b3-a5b7f0cc57c6" + "x-ms-request-id": "ba3e0dc7-8908-446f-98ba-618ea4071ea8" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/2457cdad-c2ed-45af-a473-3b8019e4995d?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c2c1106c-334d-48d9-9406-d6e2a9ef91a2?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "03aa531747c411e5e6398790dc01b470", "x-ms-return-client-request-id": "true" }, @@ -502,27 +460,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:55:56 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/2457cdad-c2ed-45af-a473-3b8019e4995d?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:19:55 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c2c1106c-334d-48d9-9406-d6e2a9ef91a2?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "03aa531747c411e5e6398790dc01b470", - "x-ms-request-id": "2bc60888-bd06-4b89-8924-6fbbf90f90bb" + "x-ms-request-id": "f66972eb-8e7f-4879-8a59-85cb699ed40b" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/2457cdad-c2ed-45af-a473-3b8019e4995d?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c2c1106c-334d-48d9-9406-d6e2a9ef91a2?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "bb7949ae174aa844599a7ef8322ed7b3", "x-ms-return-client-request-id": "true" }, @@ -539,27 +494,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:55:57 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/2457cdad-c2ed-45af-a473-3b8019e4995d?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:19:56 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c2c1106c-334d-48d9-9406-d6e2a9ef91a2?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "bb7949ae174aa844599a7ef8322ed7b3", - "x-ms-request-id": "f611cbd7-6811-4265-bc34-ce37cc328c78" + "x-ms-request-id": "a0e5647f-8afb-4705-a980-a8ade9d3b322" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/2457cdad-c2ed-45af-a473-3b8019e4995d?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c2c1106c-334d-48d9-9406-d6e2a9ef91a2?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "9200142221bd1fc2211f43a1a02e0a42", "x-ms-return-client-request-id": "true" }, @@ -576,27 +528,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:55:58 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/2457cdad-c2ed-45af-a473-3b8019e4995d?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:19:57 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c2c1106c-334d-48d9-9406-d6e2a9ef91a2?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "9200142221bd1fc2211f43a1a02e0a42", - "x-ms-request-id": "ffe98ad3-a241-4aaa-bba6-559eb6d4afcc" + "x-ms-request-id": "5cd4aee0-953a-4239-9799-ff7fffcb3276" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/2457cdad-c2ed-45af-a473-3b8019e4995d?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c2c1106c-334d-48d9-9406-d6e2a9ef91a2?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b9b93f00d17b00140f01aa2ac9eddeb8", "x-ms-return-client-request-id": "true" }, @@ -613,27 +562,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:56:00 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/2457cdad-c2ed-45af-a473-3b8019e4995d?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:19:59 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c2c1106c-334d-48d9-9406-d6e2a9ef91a2?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "b9b93f00d17b00140f01aa2ac9eddeb8", - "x-ms-request-id": "cef4e19e-07db-44c7-9bf7-a5aa284f12f9" + "x-ms-request-id": "d68ce25e-03e9-44e9-816e-3b64214fd523" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/2457cdad-c2ed-45af-a473-3b8019e4995d?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c2c1106c-334d-48d9-9406-d6e2a9ef91a2?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c76dd46221018cb38759992ad4a3082b", "x-ms-return-client-request-id": "true" }, @@ -650,27 +596,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:56:01 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/2457cdad-c2ed-45af-a473-3b8019e4995d?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:20:00 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c2c1106c-334d-48d9-9406-d6e2a9ef91a2?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "c76dd46221018cb38759992ad4a3082b", - "x-ms-request-id": "059d79ea-4fd2-4cca-8a03-f94c28768c7e" + "x-ms-request-id": "84482e69-0756-4b97-a894-f701707373c2" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/2457cdad-c2ed-45af-a473-3b8019e4995d?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c2c1106c-334d-48d9-9406-d6e2a9ef91a2?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f3f73b8f1d745137000083bb77985534", "x-ms-return-client-request-id": "true" }, @@ -687,27 +630,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:56:02 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/2457cdad-c2ed-45af-a473-3b8019e4995d?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:20:01 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c2c1106c-334d-48d9-9406-d6e2a9ef91a2?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "f3f73b8f1d745137000083bb77985534", - "x-ms-request-id": "f6cffb2e-33f1-4602-aacf-581d8c462873" + "x-ms-request-id": "02cbe331-27e1-44a3-9b7e-ca49431b21ce" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/2457cdad-c2ed-45af-a473-3b8019e4995d?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c2c1106c-334d-48d9-9406-d6e2a9ef91a2?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "cb3e8a4143c0df418c2c312137e92b6c", "x-ms-return-client-request-id": "true" }, @@ -724,27 +664,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:56:03 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/2457cdad-c2ed-45af-a473-3b8019e4995d?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:20:02 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c2c1106c-334d-48d9-9406-d6e2a9ef91a2?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "cb3e8a4143c0df418c2c312137e92b6c", - "x-ms-request-id": "eca54a42-4009-4e7f-bf40-e39d0558e6db" + "x-ms-request-id": "80ac5f7a-62fa-4d74-a227-10912221265f" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/2457cdad-c2ed-45af-a473-3b8019e4995d?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c2c1106c-334d-48d9-9406-d6e2a9ef91a2?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "8e9a7ef9eaf544439d1cc6009ef715ee", "x-ms-return-client-request-id": "true" }, @@ -761,27 +698,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:56:04 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/2457cdad-c2ed-45af-a473-3b8019e4995d?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:20:03 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c2c1106c-334d-48d9-9406-d6e2a9ef91a2?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "8e9a7ef9eaf544439d1cc6009ef715ee", - "x-ms-request-id": "74d67638-c6e7-4973-bbbd-f5c8a533c49c" + "x-ms-request-id": "7532f7aa-e6ca-4ee4-bd5c-75abd0177e11" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/2457cdad-c2ed-45af-a473-3b8019e4995d?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c2c1106c-334d-48d9-9406-d6e2a9ef91a2?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "49e865043c644c6afa176647ec161917", "x-ms-return-client-request-id": "true" }, @@ -798,98 +732,154 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:56:05 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/2457cdad-c2ed-45af-a473-3b8019e4995d?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:20:04 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c2c1106c-334d-48d9-9406-d6e2a9ef91a2?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "49e865043c644c6afa176647ec161917", - "x-ms-request-id": "0c57c8cc-c19d-4551-8575-09e45331c175" + "x-ms-request-id": "b5f2b841-3c23-4eda-949e-c20a6cfd530f" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/2457cdad-c2ed-45af-a473-3b8019e4995d?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c2c1106c-334d-48d9-9406-d6e2a9ef91a2?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "f9c117d4c7fe563e46f92ea37d404195", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 30 Sep 2021 06:20:05 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c2c1106c-334d-48d9-9406-d6e2a9ef91a2?api-version=2020-12-01", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "f9c117d4c7fe563e46f92ea37d404195", + "x-ms-request-id": "50c7c8c9-fd0f-48f7-b605-22b0f8cdb92e" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c2c1106c-334d-48d9-9406-d6e2a9ef91a2?api-version=2020-12-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "d21c4317e100bd07134e93dd83fb5886", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 30 Sep 2021 06:20:06 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c2c1106c-334d-48d9-9406-d6e2a9ef91a2?api-version=2020-12-01", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "d21c4317e100bd07134e93dd83fb5886", + "x-ms-request-id": "08d4c895-abcf-4588-9124-c3b1a218390a" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c2c1106c-334d-48d9-9406-d6e2a9ef91a2?api-version=2020-12-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "872caf031b353df02792026b0dc6cfb9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Content-Length": "0", - "Date": "Thu, 21 Jan 2021 17:56:06 GMT", + "Date": "Thu, 30 Sep 2021 06:20:07 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "f9c117d4c7fe563e46f92ea37d404195", - "x-ms-request-id": "163ddca5-6164-458d-91cb-5a1c26b0b398" + "x-ms-client-request-id": "872caf031b353df02792026b0dc6cfb9", + "x-ms-request-id": "e28d263f-ba57-43a8-b2d9-88a488f8d6af" }, "ResponseBody": [] }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline21526658?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/pipelines/Pipeline27823361?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-77788ab496157f49af9490d12da296a3-f2ac3f8f0641e54a-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "d21c4317e100bd07134e93dd83fb5886", + "traceparent": "00-37f8db7019951346ba77d142c610981f-ce7a5933629fbc4e-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "a830d1d646f9f2160f04e5af3360d24b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "357", + "Content-Length": "350", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:56:06 GMT", + "Date": "Thu, 30 Sep 2021 06:20:07 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "d21c4317e100bd07134e93dd83fb5886", - "x-ms-correlation-request-id": "f038be5f-9487-4368-8bf2-f2dba1df35af", - "x-ms-request-id": "95375f9b-1c9e-4622-a847-3d4d92de9e96", + "x-ms-client-request-id": "a830d1d646f9f2160f04e5af3360d24b", + "x-ms-correlation-request-id": "ce22a5f7-ddc3-413c-9a45-1601e2c42573", + "x-ms-request-id": "8b5bcdd0-4eae-4817-b476-33decdae6a29", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline21526658", - "name": "Pipeline21526658", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/Pipeline27823361", + "name": "Pipeline27823361", "type": "Microsoft.Synapse/workspaces/pipelines", "properties": { - "lastPublishTime": "2021-01-21T17:55:59Z" + "lastPublishTime": "2021-09-30T06:20:00Z" }, - "etag": "0e0128e7-0000-0800-0000-6009c02f0000" + "etag": "2e008880-0000-0100-0000-615557100000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline21526658?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/pipelines/Pipeline27823361?api-version=2020-12-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-d717fdc2b478044589371d903aa729d7-37f475226e43254f-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "872caf031b353df02792026b0dc6cfb9", + "traceparent": "00-4b66bd632d8e2b4baaf25861e7481eac-1eb232f58bf8c843-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "cda0a7a0b914fb5f52dfaa6edf9caf4c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -897,36 +887,33 @@ "ResponseHeaders": { "Access-Control-Allow-Headers": "Location", "Access-Control-Expose-Headers": "Location", - "Content-Length": "374", + "Content-Length": "367", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:56:06 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/92559cac-9450-46ff-9b97-e676a2738aff?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:20:07 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d08b3323-bfd0-4baf-96f3-e366578d8c15?api-version=2020-12-01", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "872caf031b353df02792026b0dc6cfb9", - "x-ms-request-id": "28132ee9-edfb-4f46-92a4-ffbbd5bd8e1a" + "x-ms-client-request-id": "cda0a7a0b914fb5f52dfaa6edf9caf4c", + "x-ms-request-id": "6c763124-57f8-42dd-a26a-37866dfe9f71" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline21526658", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/Pipeline27823361", "recordId": 0, "state": "Deleting", "created": "0001-01-01T00:00:00", "changed": "0001-01-01T00:00:00", "type": "Pipeline", - "name": "Pipeline21526658", - "operationId": "92559cac-9450-46ff-9b97-e676a2738aff" + "name": "Pipeline27823361", + "operationId": "d08b3323-bfd0-4baf-96f3-e366578d8c15" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/92559cac-9450-46ff-9b97-e676a2738aff?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d08b3323-bfd0-4baf-96f3-e366578d8c15?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "cda0a7a0b914fb5f52dfaa6edf9caf4c", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "66cab7bf01261ca5723455199ba71372", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -942,28 +929,25 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:56:06 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/92559cac-9450-46ff-9b97-e676a2738aff?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:20:07 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d08b3323-bfd0-4baf-96f3-e366578d8c15?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "cda0a7a0b914fb5f52dfaa6edf9caf4c", - "x-ms-request-id": "9387d07c-1658-46c6-b357-f86abf2237b7" + "x-ms-client-request-id": "66cab7bf01261ca5723455199ba71372", + "x-ms-request-id": "45399701-0886-4a92-9044-5d0d5b0342bd" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/92559cac-9450-46ff-9b97-e676a2738aff?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d08b3323-bfd0-4baf-96f3-e366578d8c15?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "b207d97eb0cbbc8d98397730364009c6", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "593198552059f07f1ae334da422fc512", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -979,28 +963,59 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:56:08 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/92559cac-9450-46ff-9b97-e676a2738aff?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:20:09 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d08b3323-bfd0-4baf-96f3-e366578d8c15?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "b207d97eb0cbbc8d98397730364009c6", - "x-ms-request-id": "d9b6eada-1031-49a8-bdfa-91ccd3af5c46" + "x-ms-client-request-id": "593198552059f07f1ae334da422fc512", + "x-ms-request-id": "1d721eef-239b-43e6-9be2-b0db162baff9" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/92559cac-9450-46ff-9b97-e676a2738aff?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d08b3323-bfd0-4baf-96f3-e366578d8c15?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "27aee4d649d27d2634ea40965a7320f0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" ], - "x-ms-client-request-id": "66cab7bf01261ca5723455199ba71372", + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 30 Sep 2021 06:20:10 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d08b3323-bfd0-4baf-96f3-e366578d8c15?api-version=2020-12-01", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "27aee4d649d27d2634ea40965a7320f0", + "x-ms-request-id": "19f7da27-7770-4ade-9c12-9c8fe479ec03" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d08b3323-bfd0-4baf-96f3-e366578d8c15?api-version=2020-12-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "9ddb0426af0f9f6d38d94c42cccada43", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -1016,45 +1031,76 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:56:09 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/92559cac-9450-46ff-9b97-e676a2738aff?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:20:11 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d08b3323-bfd0-4baf-96f3-e366578d8c15?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "66cab7bf01261ca5723455199ba71372", - "x-ms-request-id": "514fe6e1-9b53-46f1-b2bf-807089aa578a" + "x-ms-client-request-id": "9ddb0426af0f9f6d38d94c42cccada43", + "x-ms-request-id": "527a07ed-5a52-4780-912d-1c73d82fc4eb" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/92559cac-9450-46ff-9b97-e676a2738aff?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d08b3323-bfd0-4baf-96f3-e366578d8c15?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "b743436fecf90ca072b3256ee0e996a6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" ], - "x-ms-client-request-id": "593198552059f07f1ae334da422fc512", + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 30 Sep 2021 06:20:12 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d08b3323-bfd0-4baf-96f3-e366578d8c15?api-version=2020-12-01", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "b743436fecf90ca072b3256ee0e996a6", + "x-ms-request-id": "da0ce7d4-7a11-4ea0-878f-1d730b6a7919" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d08b3323-bfd0-4baf-96f3-e366578d8c15?api-version=2020-12-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "3db443c227532603760feff8fce3b069", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Content-Length": "0", - "Date": "Thu, 21 Jan 2021 17:56:10 GMT", + "Date": "Thu, 30 Sep 2021 06:20:13 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "593198552059f07f1ae334da422fc512", - "x-ms-request-id": "04f92142-5024-4306-8140-9618b859160a" + "x-ms-client-request-id": "3db443c227532603760feff8fce3b069", + "x-ms-request-id": "b9073186-dc6d-4efc-a4f7-327a15bf51d7" }, "ResponseBody": [] } ], "Variables": { - "AZURE_SYNAPSE_WORKSPACE_URL": "https://workspacechhamosynapse.dev.azuresynapse.net", + "AZURE_SYNAPSE_WORKSPACE_URL": "https://testsynapseworkspace.dev.azuresynapse.net", "RandomSeed": "1528588985" } } \ No newline at end of file diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/PipelineClientLiveTests/TestRenameLinkedServiceAsync.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/PipelineClientLiveTests/TestRenameLinkedServiceAsync.json index e9db0d50d9c0..3dd90431ef9c 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/PipelineClientLiveTests/TestRenameLinkedServiceAsync.json +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/PipelineClientLiveTests/TestRenameLinkedServiceAsync.json @@ -1,18 +1,15 @@ { "Entries": [ { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline57135945?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/pipelines/Pipeline57135945?api-version=2020-12-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "17", "Content-Type": "application/json", - "traceparent": "00-f4166ca632b4b24c9200b86ff171d43d-755bdfa2a503a048-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "traceparent": "00-1c6f40c02e58d245940ac457b6829d33-6da4a0b040e2fa4e-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "14c29669e7b209f42a997f1bf7b4b155", "x-ms-return-client-request-id": "true" }, @@ -29,37 +26,34 @@ "Location", "Retry-After" ], - "Content-Length": "449", + "Content-Length": "443", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:56:58 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/97f6301b-a163-4852-a041-8103ba33f33e?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:20:41 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/54256b24-339a-4850-a8b3-6cc3f2476c43?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "14c29669e7b209f42a997f1bf7b4b155", - "x-ms-request-id": "e86c829a-227d-4c71-b6f1-ac0612903e0c" + "x-ms-request-id": "56084f29-b73d-4e39-bcbc-6652f469ddbc" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline57135945", - "recordId": 990838, + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/Pipeline57135945", + "recordId": 2424478, "state": "Creating", - "created": "2021-01-21T17:56:58.5966667Z", - "changed": "2021-01-21T17:56:58.5966667Z", + "created": "2021-09-30T06:20:41.8033333Z", + "changed": "2021-09-30T06:20:41.8033333Z", "type": "Pipeline", "name": "Pipeline57135945", - "operationId": "97f6301b-a163-4852-a041-8103ba33f33e", - "artifactId": "32B2FC55-A13C-435C-85B1-6E9690836DE6" + "operationId": "54256b24-339a-4850-a8b3-6cc3f2476c43", + "artifactId": "F344EB6C-0E5C-4D7B-ABD9-6D279D3266DD" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/97f6301b-a163-4852-a041-8103ba33f33e?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/54256b24-339a-4850-a8b3-6cc3f2476c43?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "64b164a580becb323c49301467375867", "x-ms-return-client-request-id": "true" }, @@ -76,27 +70,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:56:58 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/97f6301b-a163-4852-a041-8103ba33f33e?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:20:41 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/54256b24-339a-4850-a8b3-6cc3f2476c43?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "64b164a580becb323c49301467375867", - "x-ms-request-id": "882f4396-136e-4daf-87f8-f8867af36446" + "x-ms-request-id": "f6892d07-e8be-41ed-8ef8-6bb42017cb43" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/97f6301b-a163-4852-a041-8103ba33f33e?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/54256b24-339a-4850-a8b3-6cc3f2476c43?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5f9d3b83434a99d68844390fafb003f9", "x-ms-return-client-request-id": "true" }, @@ -113,78 +104,137 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:56:59 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/97f6301b-a163-4852-a041-8103ba33f33e?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:20:43 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/54256b24-339a-4850-a8b3-6cc3f2476c43?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "5f9d3b83434a99d68844390fafb003f9", - "x-ms-request-id": "5aa0525e-c47c-4d2e-8a96-f30d16877a6a" + "x-ms-request-id": "6146b481-91d1-4965-875a-d6b9c6fbd173" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/97f6301b-a163-4852-a041-8103ba33f33e?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/54256b24-339a-4850-a8b3-6cc3f2476c43?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "937623024c021f970af242c09ff917a4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 30 Sep 2021 06:20:44 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/54256b24-339a-4850-a8b3-6cc3f2476c43?api-version=2020-12-01", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "937623024c021f970af242c09ff917a4", + "x-ms-request-id": "12e82f12-7857-4f15-8d6d-cb20e03d0148" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/54256b24-339a-4850-a8b3-6cc3f2476c43?api-version=2020-12-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "c9c0d049379362108e17dc7947221c8c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 30 Sep 2021 06:20:45 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/54256b24-339a-4850-a8b3-6cc3f2476c43?api-version=2020-12-01", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "c9c0d049379362108e17dc7947221c8c", + "x-ms-request-id": "2d66bef0-2912-4f74-bb7b-c35afda5f143" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/54256b24-339a-4850-a8b3-6cc3f2476c43?api-version=2020-12-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "43113645c5c03765a47e55580016fa8e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "357", + "Content-Length": "350", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:57:00 GMT", + "Date": "Thu, 30 Sep 2021 06:20:46 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "937623024c021f970af242c09ff917a4", - "x-ms-correlation-request-id": "84bb8a3b-3168-42b2-a6f5-b293e381150b", - "x-ms-request-id": "c4501ef3-7ca2-47d7-84ca-b2cbbf316d9b", + "x-ms-client-request-id": "43113645c5c03765a47e55580016fa8e", + "x-ms-correlation-request-id": "076b0111-ff8f-451b-92b9-e32d78107adc", + "x-ms-request-id": "9cfa947e-894c-4758-ae83-d131dd015a82", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline57135945", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/Pipeline57135945", "name": "Pipeline57135945", "type": "Microsoft.Synapse/workspaces/pipelines", "properties": { - "lastPublishTime": "2021-01-21T17:57:00Z" + "lastPublishTime": "2021-09-30T06:20:45Z" }, - "etag": "0f01d610-0000-0800-0000-6009c06c0000" + "etag": "2e00ab80-0000-0100-0000-6155573d0000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline57135945/rename?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/pipelines/Pipeline57135945/rename?api-version=2020-12-01", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "30", "Content-Type": "application/json", - "traceparent": "00-c7addcf93440f940b3016d5c6f09bc77-7ae2e4642485e647-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "93c9c0d010378e6217dc7947221c8c45", + "traceparent": "00-a83e5e0dde59d247a469440d8f3d510b-b37785977928404f-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "f0dec594663a13cb1405ea701dd8e7d6", "x-ms-return-client-request-id": "true" }, "RequestBody": { - "newName": "Pipeline22113081" + "newName": "Pipeline26727639" }, "StatusCode": 202, "ResponseHeaders": { @@ -196,38 +246,35 @@ "Location", "Retry-After" ], - "Content-Length": "449", + "Content-Length": "435", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:57:00 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/c650517b-0210-4f11-b40d-accbd30b9067?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:20:46 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/2aa541d4-5148-45a3-a0a3-e5f60e19a003?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "93c9c0d010378e6217dc7947221c8c45", - "x-ms-request-id": "97190d6a-c19f-4246-a13c-e9a116319f33" + "x-ms-client-request-id": "f0dec594663a13cb1405ea701dd8e7d6", + "x-ms-request-id": "032ddb16-7564-460a-9038-d318cba9df4c" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline57135945", - "recordId": 990838, + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/Pipeline57135945", + "recordId": 2424478, "state": "Renaming", - "created": "2021-01-21T17:56:58.5966667Z", - "changed": "2021-01-21T17:57:00.1766667Z", + "created": "2021-09-30T06:20:41.8033333Z", + "changed": "2021-09-30T06:20:46Z", "type": "Pipeline", "name": "Pipeline57135945", - "operationId": "c650517b-0210-4f11-b40d-accbd30b9067", - "artifactId": "32B2FC55-A13C-435C-85B1-6E9690836DE6" + "operationId": "2aa541d4-5148-45a3-a0a3-e5f60e19a003", + "artifactId": "F344EB6C-0E5C-4D7B-ABD9-6D279D3266DD" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/c650517b-0210-4f11-b40d-accbd30b9067?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/2aa541d4-5148-45a3-a0a3-e5f60e19a003?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "f0dec594663a13cb1405ea701dd8e7d6", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "5cb24c4d9b3dd00b462facc07bc686a5", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -243,28 +290,59 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:57:00 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/c650517b-0210-4f11-b40d-accbd30b9067?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:20:46 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/2aa541d4-5148-45a3-a0a3-e5f60e19a003?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "f0dec594663a13cb1405ea701dd8e7d6", - "x-ms-request-id": "17b173be-2af2-41d0-8131-92466e08acc6" + "x-ms-client-request-id": "5cb24c4d9b3dd00b462facc07bc686a5", + "x-ms-request-id": "d78425d5-48ca-46e0-8015-4d23c87f04d2" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/c650517b-0210-4f11-b40d-accbd30b9067?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/2aa541d4-5148-45a3-a0a3-e5f60e19a003?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "9b49826da791b1594173671451e85ab2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" ], - "x-ms-client-request-id": "e7687ab6e3d36a84882515e2b861781d", + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 30 Sep 2021 06:20:47 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/2aa541d4-5148-45a3-a0a3-e5f60e19a003?api-version=2020-12-01", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "9b49826da791b1594173671451e85ab2", + "x-ms-request-id": "b5d0218e-ab8a-49ca-aa13-70c3b5d0b826" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/2aa541d4-5148-45a3-a0a3-e5f60e19a003?api-version=2020-12-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "d122cc8d8a251b986e98a0a436c4efc1", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -280,28 +358,59 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:57:02 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/c650517b-0210-4f11-b40d-accbd30b9067?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:20:48 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/2aa541d4-5148-45a3-a0a3-e5f60e19a003?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "e7687ab6e3d36a84882515e2b861781d", - "x-ms-request-id": "508f6d48-21e9-465b-8eb5-602168e2a40f" + "x-ms-client-request-id": "d122cc8d8a251b986e98a0a436c4efc1", + "x-ms-request-id": "532e182c-cdf1-43f1-97ab-6cc922d86dbd" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/c650517b-0210-4f11-b40d-accbd30b9067?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/2aa541d4-5148-45a3-a0a3-e5f60e19a003?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "36756f9fdc18a68bf3001bc933f67f5e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" ], - "x-ms-client-request-id": "5cb24c4d9b3dd00b462facc07bc686a5", + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 30 Sep 2021 06:20:49 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/2aa541d4-5148-45a3-a0a3-e5f60e19a003?api-version=2020-12-01", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "36756f9fdc18a68bf3001bc933f67f5e", + "x-ms-request-id": "76bc13db-ed4d-4e98-adc6-044f8cbb0257" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/2aa541d4-5148-45a3-a0a3-e5f60e19a003?api-version=2020-12-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "ae33fad4b4a4e27fe92e2df906b57b7d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -317,28 +426,59 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:57:03 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/c650517b-0210-4f11-b40d-accbd30b9067?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:20:51 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/2aa541d4-5148-45a3-a0a3-e5f60e19a003?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "5cb24c4d9b3dd00b462facc07bc686a5", - "x-ms-request-id": "58231157-add4-4be7-9e71-ae3fb4fc2491" + "x-ms-client-request-id": "ae33fad4b4a4e27fe92e2df906b57b7d", + "x-ms-request-id": "15780c75-1ba4-4a85-99d7-38a31101754b" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/c650517b-0210-4f11-b40d-accbd30b9067?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/2aa541d4-5148-45a3-a0a3-e5f60e19a003?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "e175a5842472b199407bde256fcee777", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" ], - "x-ms-client-request-id": "9b49826da791b1594173671451e85ab2", + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 30 Sep 2021 06:20:52 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/2aa541d4-5148-45a3-a0a3-e5f60e19a003?api-version=2020-12-01", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "e175a5842472b199407bde256fcee777", + "x-ms-request-id": "30497505-e5b3-41f5-ab7c-c50c281dc325" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/2aa541d4-5148-45a3-a0a3-e5f60e19a003?api-version=2020-12-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "3bcf42184091ea1def924ce9ae92a03d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -354,28 +494,59 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:57:04 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/c650517b-0210-4f11-b40d-accbd30b9067?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:20:53 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/2aa541d4-5148-45a3-a0a3-e5f60e19a003?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "9b49826da791b1594173671451e85ab2", - "x-ms-request-id": "46b7f583-f590-488f-8ad8-c9d408c76f0a" + "x-ms-client-request-id": "3bcf42184091ea1def924ce9ae92a03d", + "x-ms-request-id": "e6b1ac17-c291-4483-9d4c-74cb1345cf29" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/c650517b-0210-4f11-b40d-accbd30b9067?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/2aa541d4-5148-45a3-a0a3-e5f60e19a003?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "8e459e859d81afeb60816d28d65a721b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" ], - "x-ms-client-request-id": "d122cc8d8a251b986e98a0a436c4efc1", + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 30 Sep 2021 06:20:54 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/2aa541d4-5148-45a3-a0a3-e5f60e19a003?api-version=2020-12-01", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "8e459e859d81afeb60816d28d65a721b", + "x-ms-request-id": "9b924519-8c38-404a-a122-a9793257278c" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/2aa541d4-5148-45a3-a0a3-e5f60e19a003?api-version=2020-12-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "c4e0b5473fe643eb888af2e0d8af02ae", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -391,28 +562,59 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:57:05 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/c650517b-0210-4f11-b40d-accbd30b9067?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:20:55 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/2aa541d4-5148-45a3-a0a3-e5f60e19a003?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "d122cc8d8a251b986e98a0a436c4efc1", - "x-ms-request-id": "4d1c18bf-c601-4db0-a287-f95af8f50e3b" + "x-ms-client-request-id": "c4e0b5473fe643eb888af2e0d8af02ae", + "x-ms-request-id": "b296a54c-28ff-428e-ac54-5be1cceac675" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/c650517b-0210-4f11-b40d-accbd30b9067?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/2aa541d4-5148-45a3-a0a3-e5f60e19a003?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "d19fa0db59887bf6561fda0fd3f41394", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" ], - "x-ms-client-request-id": "36756f9fdc18a68bf3001bc933f67f5e", + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 30 Sep 2021 06:20:56 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/2aa541d4-5148-45a3-a0a3-e5f60e19a003?api-version=2020-12-01", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "d19fa0db59887bf6561fda0fd3f41394", + "x-ms-request-id": "efb93656-1716-4a09-9f10-eeed1715cac3" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/2aa541d4-5148-45a3-a0a3-e5f60e19a003?api-version=2020-12-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "f9a23020dbb14557b20205f6aa0bd7b1", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -428,28 +630,59 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:57:06 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/c650517b-0210-4f11-b40d-accbd30b9067?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:20:57 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/2aa541d4-5148-45a3-a0a3-e5f60e19a003?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "36756f9fdc18a68bf3001bc933f67f5e", - "x-ms-request-id": "e53badad-2e94-4d98-9667-4bdf404d8879" + "x-ms-client-request-id": "f9a23020dbb14557b20205f6aa0bd7b1", + "x-ms-request-id": "13f15d10-6717-43a9-a91f-3848e81f06e5" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/c650517b-0210-4f11-b40d-accbd30b9067?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/2aa541d4-5148-45a3-a0a3-e5f60e19a003?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "354dbf7fa1baee92bf656dc764dc7093", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" ], - "x-ms-client-request-id": "ae33fad4b4a4e27fe92e2df906b57b7d", + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 30 Sep 2021 06:20:58 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/2aa541d4-5148-45a3-a0a3-e5f60e19a003?api-version=2020-12-01", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "354dbf7fa1baee92bf656dc764dc7093", + "x-ms-request-id": "bc183224-1254-4bbd-b50e-081427891c37" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/2aa541d4-5148-45a3-a0a3-e5f60e19a003?api-version=2020-12-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "a8c05e76090dfffd495a1f8653ffd04a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -465,98 +698,120 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:57:07 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/c650517b-0210-4f11-b40d-accbd30b9067?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:20:59 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/2aa541d4-5148-45a3-a0a3-e5f60e19a003?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "ae33fad4b4a4e27fe92e2df906b57b7d", - "x-ms-request-id": "05dc21eb-24cc-4caf-a9ef-768d1d3114a0" + "x-ms-client-request-id": "a8c05e76090dfffd495a1f8653ffd04a", + "x-ms-request-id": "a4ff3828-9fd3-4872-89c1-55fed9ca099b" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/c650517b-0210-4f11-b40d-accbd30b9067?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/2aa541d4-5148-45a3-a0a3-e5f60e19a003?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "148f2948dea67ed99db4394b6d90e1d5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" ], - "x-ms-client-request-id": "e175a5842472b199407bde256fcee777", + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 30 Sep 2021 06:21:00 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/2aa541d4-5148-45a3-a0a3-e5f60e19a003?api-version=2020-12-01", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "148f2948dea67ed99db4394b6d90e1d5", + "x-ms-request-id": "d7694707-a692-4ec0-b719-cbf0750aa5df" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/2aa541d4-5148-45a3-a0a3-e5f60e19a003?api-version=2020-12-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "4c7f71922e4b76a3c14dec60820b9abf", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Content-Length": "0", - "Date": "Thu, 21 Jan 2021 17:57:08 GMT", + "Date": "Thu, 30 Sep 2021 06:21:01 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "e175a5842472b199407bde256fcee777", - "x-ms-request-id": "ec543f1c-82f5-483c-a7a0-f1cb494fb937" + "x-ms-client-request-id": "4c7f71922e4b76a3c14dec60820b9abf", + "x-ms-request-id": "05d59f55-2817-4b9c-85a0-5d9f0cf4c6f1" }, "ResponseBody": [] }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline22113081?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/pipelines/Pipeline26727639?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-a4d4bda1214141418c1479b87e66bf3d-62ebc13bce2ff04d-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "3bcf42184091ea1def924ce9ae92a03d", + "traceparent": "00-8cc422d9cd1dfe43ad61005c26380a75-b7340fae2ed80148-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "3b7f22945c4c98ed84410a58cfb292b9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "357", + "Content-Length": "350", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:57:08 GMT", + "Date": "Thu, 30 Sep 2021 06:21:01 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "3bcf42184091ea1def924ce9ae92a03d", - "x-ms-correlation-request-id": "e6342daf-e783-4aa3-860d-452a09709df7", - "x-ms-request-id": "a9ccec0d-39ca-4850-b51a-7db9de779dc6", + "x-ms-client-request-id": "3b7f22945c4c98ed84410a58cfb292b9", + "x-ms-correlation-request-id": "acf2d75a-bf94-4e33-9b92-f0150cebc5dd", + "x-ms-request-id": "698ef226-129c-495b-bfd3-9779154b46ad", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline22113081", - "name": "Pipeline22113081", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/Pipeline26727639", + "name": "Pipeline26727639", "type": "Microsoft.Synapse/workspaces/pipelines", "properties": { - "lastPublishTime": "2021-01-21T17:57:06Z" + "lastPublishTime": "2021-09-30T06:20:54Z" }, - "etag": "0f012315-0000-0800-0000-6009c0720000" + "etag": "2e00b480-0000-0100-0000-615557460000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/pipelines/Pipeline22113081?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/pipelines/Pipeline26727639?api-version=2020-12-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-7123727dcfc92347b1be67b7968e2f5f-a508d2b075944547-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "8e459e859d81afeb60816d28d65a721b", + "traceparent": "00-5da9e9f454c8b94989a80b715b4a52e3-898993c49def9740-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "e1f44979848019ff85195259f179fc91", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -564,36 +819,67 @@ "ResponseHeaders": { "Access-Control-Allow-Headers": "Location", "Access-Control-Expose-Headers": "Location", - "Content-Length": "374", + "Content-Length": "367", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:57:08 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/a5f71cb0-a4d1-402f-8d94-170383a34be1?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:21:01 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/7b5a07e4-6b04-4e47-8155-a28316767005?api-version=2020-12-01", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "8e459e859d81afeb60816d28d65a721b", - "x-ms-request-id": "0e8f0539-1417-420d-85b1-9acc315fcfeb" + "x-ms-client-request-id": "e1f44979848019ff85195259f179fc91", + "x-ms-request-id": "768d3602-4f95-4acc-be8c-cd40a8500fb9" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/pipelines/Pipeline22113081", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/pipelines/Pipeline26727639", "recordId": 0, "state": "Deleting", "created": "0001-01-01T00:00:00", "changed": "0001-01-01T00:00:00", "type": "Pipeline", - "name": "Pipeline22113081", - "operationId": "a5f71cb0-a4d1-402f-8d94-170383a34be1" + "name": "Pipeline26727639", + "operationId": "7b5a07e4-6b04-4e47-8155-a28316767005" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/a5f71cb0-a4d1-402f-8d94-170383a34be1?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/7b5a07e4-6b04-4e47-8155-a28316767005?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "38e732bbb917103f2365b5330993a70a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" ], - "x-ms-client-request-id": "d19fa0db59887bf6561fda0fd3f41394", + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 30 Sep 2021 06:21:01 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/7b5a07e4-6b04-4e47-8155-a28316767005?api-version=2020-12-01", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "38e732bbb917103f2365b5330993a70a", + "x-ms-request-id": "45ab3433-edf0-4988-a869-e8cbd648a8d8" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/7b5a07e4-6b04-4e47-8155-a28316767005?api-version=2020-12-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "553e784447fbd3a8c0be5c99bbf5f53a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -609,45 +895,76 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 17:57:08 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/a5f71cb0-a4d1-402f-8d94-170383a34be1?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:21:03 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/7b5a07e4-6b04-4e47-8155-a28316767005?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "d19fa0db59887bf6561fda0fd3f41394", - "x-ms-request-id": "9e2614f0-a668-4890-9074-6df94beb8390" + "x-ms-client-request-id": "553e784447fbd3a8c0be5c99bbf5f53a", + "x-ms-request-id": "48c85414-69bd-4d92-8db1-d98814991296" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/a5f71cb0-a4d1-402f-8d94-170383a34be1?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/7b5a07e4-6b04-4e47-8155-a28316767005?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "be9d4372c392607a3aa627abf0552cf1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" ], - "x-ms-client-request-id": "f9a23020dbb14557b20205f6aa0bd7b1", + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 30 Sep 2021 06:21:04 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/7b5a07e4-6b04-4e47-8155-a28316767005?api-version=2020-12-01", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "be9d4372c392607a3aa627abf0552cf1", + "x-ms-request-id": "1ea7716a-b445-4a58-afc5-ecfcd9ab185c" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/7b5a07e4-6b04-4e47-8155-a28316767005?api-version=2020-12-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "abc5bd3f520c74138a1478585da5552e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Content-Length": "0", - "Date": "Thu, 21 Jan 2021 17:57:10 GMT", + "Date": "Thu, 30 Sep 2021 06:21:05 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "f9a23020dbb14557b20205f6aa0bd7b1", - "x-ms-request-id": "21d35d8f-7244-467a-ab1f-feeaaa903584" + "x-ms-client-request-id": "abc5bd3f520c74138a1478585da5552e", + "x-ms-request-id": "8bc29363-07b8-4e31-b72f-38e309a6b21a" }, "ResponseBody": [] } ], "Variables": { - "AZURE_SYNAPSE_WORKSPACE_URL": "https://workspacechhamosynapse.dev.azuresynapse.net", + "AZURE_SYNAPSE_WORKSPACE_URL": "https://testsynapseworkspace.dev.azuresynapse.net", "RandomSeed": "938265875" } } \ No newline at end of file diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/SqlPoolsClientLiveTests/TestGet.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/SqlPoolsClientLiveTests/TestGet.json index 9dad81a867d2..5165484792c2 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/SqlPoolsClientLiveTests/TestGet.json +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/SqlPoolsClientLiveTests/TestGet.json @@ -1,37 +1,543 @@ { "Entries": [ { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/sqlPools?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/sqlPools?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-2c44e9e952890c4fb4a7e1781e89df3d-d36e920f66cb4d4b-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "traceparent": "00-59d84265fae9ae43a4ab5d7ef642eb37-6ab5867adab40741-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ab27a64e35c4cc90ef27740f0ac9c2bd", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Content-Length": "12", + "Content-Length": "4779", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 22:20:15 GMT", + "Date": "Thu, 30 Sep 2021 06:21:05 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "ab27a64e35c4cc90ef27740f0ac9c2bd", - "x-ms-request-id": "5f45e186-8563-4703-bdbc-35e7effb08f8" + "x-ms-request-id": "2630ee18-e786-4ad4-8062-c57164d28245" }, "ResponseBody": { - "value": [] + "value": [ + { + "properties": { + "status": "Paused", + "maxSizeBytes": 263882790666240, + "collation": "SQL_Latin1_General_CP1_CI_AS", + "restorePointInTime": "0001-01-01T00:00:00", + "creationDate": "2020-12-21T08:27:23.163Z", + "storageAccountType": "GRS", + "sourceDatabaseDeletionDate": "0001-01-01T00:00:00", + "provisioningState": "Succeeded" + }, + "sku": { + "name": "DW200c", + "capacity": 0 + }, + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/sqlPools/dwnewpool1221", + "name": "dwnewpool1221", + "type": "Microsoft.Synapse/workspaces/sqlPools", + "location": "eastus", + "tags": {} + }, + { + "properties": { + "status": "Paused", + "maxSizeBytes": 263882790666240, + "collation": "SQL_Latin1_General_CP1_CI_AS", + "restorePointInTime": "0001-01-01T00:00:00", + "creationDate": "2020-12-30T06:49:25.41Z", + "storageAccountType": "GRS", + "sourceDatabaseDeletionDate": "0001-01-01T00:00:00", + "provisioningState": "Succeeded" + }, + "sku": { + "name": "DW200c", + "capacity": 0 + }, + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/sqlPools/dwtest1034", + "name": "dwtest1034", + "type": "Microsoft.Synapse/workspaces/sqlPools", + "location": "eastus" + }, + { + "properties": { + "status": "Paused", + "maxSizeBytes": 263882790666240, + "collation": "SQL_Latin1_General_CP1_CI_AS", + "restorePointInTime": "0001-01-01T00:00:00", + "creationDate": "2021-01-05T08:52:55.787Z", + "storageAccountType": "GRS", + "sourceDatabaseDeletionDate": "0001-01-01T00:00:00", + "provisioningState": "Succeeded" + }, + "sku": { + "name": "DW200c", + "capacity": 0 + }, + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/sqlPools/dwtest1035", + "name": "dwtest1035", + "type": "Microsoft.Synapse/workspaces/sqlPools", + "location": "eastus" + }, + { + "properties": { + "status": "Paused", + "maxSizeBytes": 263882790666240, + "collation": "SQL_Latin1_General_CP1_CI_AS", + "restorePointInTime": "0001-01-01T00:00:00", + "creationDate": "2021-01-11T11:33:42.26Z", + "storageAccountType": "GRS", + "sourceDatabaseDeletionDate": "0001-01-01T00:00:00", + "provisioningState": "Succeeded" + }, + "sku": { + "name": "DW400c", + "capacity": 0 + }, + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/sqlPools/dwtestbackup", + "name": "dwtestbackup", + "type": "Microsoft.Synapse/workspaces/sqlPools", + "location": "eastus", + "tags": {} + }, + { + "properties": { + "status": "Paused", + "maxSizeBytes": 263882790666240, + "collation": "SQL_Latin1_General_CP1_CI_AS", + "restorePointInTime": "0001-01-01T00:00:00", + "creationDate": "2021-01-12T04:57:02.723Z", + "storageAccountType": "GRS", + "sourceDatabaseDeletionDate": "0001-01-01T00:00:00", + "provisioningState": "Succeeded" + }, + "sku": { + "name": "DW200c", + "capacity": 0 + }, + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/sqlPools/ps3416", + "name": "ps3416", + "type": "Microsoft.Synapse/workspaces/sqlPools", + "location": "eastus" + }, + { + "properties": { + "status": "Paused", + "maxSizeBytes": 263882790666240, + "collation": "SQL_Latin1_General_CP1_CI_AS", + "restorePointInTime": "0001-01-01T00:00:00", + "creationDate": "2021-01-12T05:40:00.923Z", + "storageAccountType": "GRS", + "sourceDatabaseDeletionDate": "0001-01-01T00:00:00", + "provisioningState": "Succeeded" + }, + "sku": { + "name": "DW200c", + "capacity": 0 + }, + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/sqlPools/ps540", + "name": "ps540", + "type": "Microsoft.Synapse/workspaces/sqlPools", + "location": "eastus" + }, + { + "properties": { + "status": "Paused", + "maxSizeBytes": 263882790666240, + "collation": "SQL_Latin1_General_CP1_CI_AS", + "restorePointInTime": "0001-01-01T00:00:00", + "creationDate": "2021-01-21T12:16:49.09Z", + "storageAccountType": "GRS", + "sourceDatabaseDeletionDate": "0001-01-01T00:00:00", + "provisioningState": "Succeeded" + }, + "sku": { + "name": "DW200c", + "capacity": 0 + }, + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/sqlPools/restorepool1", + "name": "restorepool1", + "type": "Microsoft.Synapse/workspaces/sqlPools", + "location": "eastus" + }, + { + "properties": { + "status": "Paused", + "maxSizeBytes": 263882790666240, + "collation": "SQL_Latin1_General_CP1_CI_AS", + "restorePointInTime": "0001-01-01T00:00:00", + "creationDate": "2020-03-02T04:27:54.933Z", + "storageAccountType": "GRS", + "sourceDatabaseDeletionDate": "0001-01-01T00:00:00", + "provisioningState": "Succeeded" + }, + "sku": { + "name": "DW1500c", + "capacity": 0 + }, + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/sqlPools/sqlpoolcli1", + "name": "sqlpoolcli1", + "type": "Microsoft.Synapse/workspaces/sqlPools", + "location": "eastus" + } + ] + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/sqlPools/dwnewpool1221?api-version=2020-12-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-66ba96b441eb7145b3cf0b3f9e703e79-89fea64114662f42-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "36ed9f6bec7af8938dab953ab15a8de9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Content-Length": "609", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 30 Sep 2021 06:21:05 GMT", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "36ed9f6bec7af8938dab953ab15a8de9", + "x-ms-request-id": "0dd48577-e69d-429a-bda5-b4ce8ba69d22" + }, + "ResponseBody": { + "properties": { + "status": "Paused", + "maxSizeBytes": 263882790666240, + "collation": "SQL_Latin1_General_CP1_CI_AS", + "restorePointInTime": "0001-01-01T00:00:00", + "creationDate": "2020-12-21T08:27:23.163Z", + "storageAccountType": "GRS", + "sourceDatabaseDeletionDate": "0001-01-01T00:00:00", + "provisioningState": "Succeeded" + }, + "sku": { + "name": "DW200c", + "capacity": 0 + }, + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/sqlPools/dwnewpool1221", + "name": "dwnewpool1221", + "type": "Microsoft.Synapse/workspaces/sqlPools", + "location": "eastus", + "tags": {} + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/sqlPools/dwtest1034?api-version=2020-12-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-eddd79663f2f7945bea43b33a91653ea-6360045116998c4e-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "85c0b74181d9f77bf634b160180e6ced", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Content-Length": "592", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 30 Sep 2021 06:21:05 GMT", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "85c0b74181d9f77bf634b160180e6ced", + "x-ms-request-id": "ea4acb99-5c65-4740-a95b-a15b9506f9d8" + }, + "ResponseBody": { + "properties": { + "status": "Paused", + "maxSizeBytes": 263882790666240, + "collation": "SQL_Latin1_General_CP1_CI_AS", + "restorePointInTime": "0001-01-01T00:00:00", + "creationDate": "2020-12-30T06:49:25.41Z", + "storageAccountType": "GRS", + "sourceDatabaseDeletionDate": "0001-01-01T00:00:00", + "provisioningState": "Succeeded" + }, + "sku": { + "name": "DW200c", + "capacity": 0 + }, + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/sqlPools/dwtest1034", + "name": "dwtest1034", + "type": "Microsoft.Synapse/workspaces/sqlPools", + "location": "eastus" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/sqlPools/dwtest1035?api-version=2020-12-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-c3890425448b3d4f98c534ea599ff4cc-e9e3c3778169e249-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "349bb182432761b0122f1e18a0561a94", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Content-Length": "593", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 30 Sep 2021 06:21:05 GMT", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "349bb182432761b0122f1e18a0561a94", + "x-ms-request-id": "9ca9797e-4824-4821-90e3-2b9576a31376" + }, + "ResponseBody": { + "properties": { + "status": "Paused", + "maxSizeBytes": 263882790666240, + "collation": "SQL_Latin1_General_CP1_CI_AS", + "restorePointInTime": "0001-01-01T00:00:00", + "creationDate": "2021-01-05T08:52:55.787Z", + "storageAccountType": "GRS", + "sourceDatabaseDeletionDate": "0001-01-01T00:00:00", + "provisioningState": "Succeeded" + }, + "sku": { + "name": "DW200c", + "capacity": 0 + }, + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/sqlPools/dwtest1035", + "name": "dwtest1035", + "type": "Microsoft.Synapse/workspaces/sqlPools", + "location": "eastus" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/sqlPools/dwtestbackup?api-version=2020-12-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-cd73da2815d9fd46b5e0bac0ea719019-b3f1e5ac351eeb4e-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "53cd8b993c08e9e324f640463b33e07e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Content-Length": "606", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 30 Sep 2021 06:21:06 GMT", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "53cd8b993c08e9e324f640463b33e07e", + "x-ms-request-id": "062ccb96-f856-4738-ad87-de4dc3bd7095" + }, + "ResponseBody": { + "properties": { + "status": "Paused", + "maxSizeBytes": 263882790666240, + "collation": "SQL_Latin1_General_CP1_CI_AS", + "restorePointInTime": "0001-01-01T00:00:00", + "creationDate": "2021-01-11T11:33:42.26Z", + "storageAccountType": "GRS", + "sourceDatabaseDeletionDate": "0001-01-01T00:00:00", + "provisioningState": "Succeeded" + }, + "sku": { + "name": "DW400c", + "capacity": 0 + }, + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/sqlPools/dwtestbackup", + "name": "dwtestbackup", + "type": "Microsoft.Synapse/workspaces/sqlPools", + "location": "eastus", + "tags": {} + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/sqlPools/ps3416?api-version=2020-12-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-d1b2121a0a282d4aace7cb2841263ee3-b436997dc84af042-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "00b7a73f58bffec1065e73aa636256a0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Content-Length": "585", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 30 Sep 2021 06:21:06 GMT", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "00b7a73f58bffec1065e73aa636256a0", + "x-ms-request-id": "7d57a629-30a0-45be-87bf-417b91c47987" + }, + "ResponseBody": { + "properties": { + "status": "Paused", + "maxSizeBytes": 263882790666240, + "collation": "SQL_Latin1_General_CP1_CI_AS", + "restorePointInTime": "0001-01-01T00:00:00", + "creationDate": "2021-01-12T04:57:02.723Z", + "storageAccountType": "GRS", + "sourceDatabaseDeletionDate": "0001-01-01T00:00:00", + "provisioningState": "Succeeded" + }, + "sku": { + "name": "DW200c", + "capacity": 0 + }, + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/sqlPools/ps3416", + "name": "ps3416", + "type": "Microsoft.Synapse/workspaces/sqlPools", + "location": "eastus" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/sqlPools/ps540?api-version=2020-12-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-343902b6be71044aa7e9f3296def256d-a502ef3e63153045-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "8cc61c19194146e4cdb11030036a26df", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Content-Length": "583", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 30 Sep 2021 06:21:06 GMT", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "8cc61c19194146e4cdb11030036a26df", + "x-ms-request-id": "87385b79-823e-4f55-8ce6-5f3ef1b541b3" + }, + "ResponseBody": { + "properties": { + "status": "Paused", + "maxSizeBytes": 263882790666240, + "collation": "SQL_Latin1_General_CP1_CI_AS", + "restorePointInTime": "0001-01-01T00:00:00", + "creationDate": "2021-01-12T05:40:00.923Z", + "storageAccountType": "GRS", + "sourceDatabaseDeletionDate": "0001-01-01T00:00:00", + "provisioningState": "Succeeded" + }, + "sku": { + "name": "DW200c", + "capacity": 0 + }, + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/sqlPools/ps540", + "name": "ps540", + "type": "Microsoft.Synapse/workspaces/sqlPools", + "location": "eastus" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/sqlPools/restorepool1?api-version=2020-12-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-17d0ebbc1536aa47ae70b7f164c2e5e9-98b5339c16489d44-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "f8d9a04e1a9e41d4c9cf4caac93985c2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Content-Length": "596", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 30 Sep 2021 06:21:06 GMT", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "f8d9a04e1a9e41d4c9cf4caac93985c2", + "x-ms-request-id": "9c9e2a48-d536-41ed-a5ca-478bdb392aed" + }, + "ResponseBody": { + "properties": { + "status": "Paused", + "maxSizeBytes": 263882790666240, + "collation": "SQL_Latin1_General_CP1_CI_AS", + "restorePointInTime": "0001-01-01T00:00:00", + "creationDate": "2021-01-21T12:16:49.09Z", + "storageAccountType": "GRS", + "sourceDatabaseDeletionDate": "0001-01-01T00:00:00", + "provisioningState": "Succeeded" + }, + "sku": { + "name": "DW200c", + "capacity": 0 + }, + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/sqlPools/restorepool1", + "name": "restorepool1", + "type": "Microsoft.Synapse/workspaces/sqlPools", + "location": "eastus" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/sqlPools/sqlpoolcli1?api-version=2020-12-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-4ed298557772f34c8ba667863643d793-f01d8ad193007c46-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "1f2c9fa0536d263cc271330e4891fa9c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Content-Length": "596", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 30 Sep 2021 06:21:06 GMT", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "1f2c9fa0536d263cc271330e4891fa9c", + "x-ms-request-id": "b7cb2c25-5287-4879-b563-42cb42e6edaa" + }, + "ResponseBody": { + "properties": { + "status": "Paused", + "maxSizeBytes": 263882790666240, + "collation": "SQL_Latin1_General_CP1_CI_AS", + "restorePointInTime": "0001-01-01T00:00:00", + "creationDate": "2020-03-02T04:27:54.933Z", + "storageAccountType": "GRS", + "sourceDatabaseDeletionDate": "0001-01-01T00:00:00", + "provisioningState": "Succeeded" + }, + "sku": { + "name": "DW1500c", + "capacity": 0 + }, + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/sqlPools/sqlpoolcli1", + "name": "sqlpoolcli1", + "type": "Microsoft.Synapse/workspaces/sqlPools", + "location": "eastus" } } ], "Variables": { - "AZURE_SYNAPSE_WORKSPACE_URL": "https://workspacechhamosynapse.dev.azuresynapse.net", + "AZURE_SYNAPSE_WORKSPACE_URL": "https://testsynapseworkspace.dev.azuresynapse.net", "RandomSeed": "1749395839" } } \ No newline at end of file diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/SqlPoolsClientLiveTests/TestGetAsync.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/SqlPoolsClientLiveTests/TestGetAsync.json index 7d5dc9cbee26..216b3313e486 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/SqlPoolsClientLiveTests/TestGetAsync.json +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/SqlPoolsClientLiveTests/TestGetAsync.json @@ -1,37 +1,543 @@ { "Entries": [ { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/sqlPools?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/sqlPools?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-753f687b63e6604a81d675e4679af783-a5a34b9df8d7834f-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210121.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "traceparent": "00-749e32204e5f56498a4b16082ed39795-ef67f2620d2fe34a-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "1a96190df7dd184c8bf1a79f57551fff", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Content-Length": "12", + "Content-Length": "4779", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 21 Jan 2021 22:20:16 GMT", + "Date": "Thu, 30 Sep 2021 06:21:06 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "1a96190df7dd184c8bf1a79f57551fff", - "x-ms-request-id": "0f5b09d4-8af9-4424-a4b5-91caec60f47c" + "x-ms-request-id": "f6eb26a9-2ca9-4c45-8caf-bb3dd983f19e" }, "ResponseBody": { - "value": [] + "value": [ + { + "properties": { + "status": "Paused", + "maxSizeBytes": 263882790666240, + "collation": "SQL_Latin1_General_CP1_CI_AS", + "restorePointInTime": "0001-01-01T00:00:00", + "creationDate": "2020-12-21T08:27:23.163Z", + "storageAccountType": "GRS", + "sourceDatabaseDeletionDate": "0001-01-01T00:00:00", + "provisioningState": "Succeeded" + }, + "sku": { + "name": "DW200c", + "capacity": 0 + }, + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/sqlPools/dwnewpool1221", + "name": "dwnewpool1221", + "type": "Microsoft.Synapse/workspaces/sqlPools", + "location": "eastus", + "tags": {} + }, + { + "properties": { + "status": "Paused", + "maxSizeBytes": 263882790666240, + "collation": "SQL_Latin1_General_CP1_CI_AS", + "restorePointInTime": "0001-01-01T00:00:00", + "creationDate": "2020-12-30T06:49:25.41Z", + "storageAccountType": "GRS", + "sourceDatabaseDeletionDate": "0001-01-01T00:00:00", + "provisioningState": "Succeeded" + }, + "sku": { + "name": "DW200c", + "capacity": 0 + }, + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/sqlPools/dwtest1034", + "name": "dwtest1034", + "type": "Microsoft.Synapse/workspaces/sqlPools", + "location": "eastus" + }, + { + "properties": { + "status": "Paused", + "maxSizeBytes": 263882790666240, + "collation": "SQL_Latin1_General_CP1_CI_AS", + "restorePointInTime": "0001-01-01T00:00:00", + "creationDate": "2021-01-05T08:52:55.787Z", + "storageAccountType": "GRS", + "sourceDatabaseDeletionDate": "0001-01-01T00:00:00", + "provisioningState": "Succeeded" + }, + "sku": { + "name": "DW200c", + "capacity": 0 + }, + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/sqlPools/dwtest1035", + "name": "dwtest1035", + "type": "Microsoft.Synapse/workspaces/sqlPools", + "location": "eastus" + }, + { + "properties": { + "status": "Paused", + "maxSizeBytes": 263882790666240, + "collation": "SQL_Latin1_General_CP1_CI_AS", + "restorePointInTime": "0001-01-01T00:00:00", + "creationDate": "2021-01-11T11:33:42.26Z", + "storageAccountType": "GRS", + "sourceDatabaseDeletionDate": "0001-01-01T00:00:00", + "provisioningState": "Succeeded" + }, + "sku": { + "name": "DW400c", + "capacity": 0 + }, + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/sqlPools/dwtestbackup", + "name": "dwtestbackup", + "type": "Microsoft.Synapse/workspaces/sqlPools", + "location": "eastus", + "tags": {} + }, + { + "properties": { + "status": "Paused", + "maxSizeBytes": 263882790666240, + "collation": "SQL_Latin1_General_CP1_CI_AS", + "restorePointInTime": "0001-01-01T00:00:00", + "creationDate": "2021-01-12T04:57:02.723Z", + "storageAccountType": "GRS", + "sourceDatabaseDeletionDate": "0001-01-01T00:00:00", + "provisioningState": "Succeeded" + }, + "sku": { + "name": "DW200c", + "capacity": 0 + }, + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/sqlPools/ps3416", + "name": "ps3416", + "type": "Microsoft.Synapse/workspaces/sqlPools", + "location": "eastus" + }, + { + "properties": { + "status": "Paused", + "maxSizeBytes": 263882790666240, + "collation": "SQL_Latin1_General_CP1_CI_AS", + "restorePointInTime": "0001-01-01T00:00:00", + "creationDate": "2021-01-12T05:40:00.923Z", + "storageAccountType": "GRS", + "sourceDatabaseDeletionDate": "0001-01-01T00:00:00", + "provisioningState": "Succeeded" + }, + "sku": { + "name": "DW200c", + "capacity": 0 + }, + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/sqlPools/ps540", + "name": "ps540", + "type": "Microsoft.Synapse/workspaces/sqlPools", + "location": "eastus" + }, + { + "properties": { + "status": "Paused", + "maxSizeBytes": 263882790666240, + "collation": "SQL_Latin1_General_CP1_CI_AS", + "restorePointInTime": "0001-01-01T00:00:00", + "creationDate": "2021-01-21T12:16:49.09Z", + "storageAccountType": "GRS", + "sourceDatabaseDeletionDate": "0001-01-01T00:00:00", + "provisioningState": "Succeeded" + }, + "sku": { + "name": "DW200c", + "capacity": 0 + }, + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/sqlPools/restorepool1", + "name": "restorepool1", + "type": "Microsoft.Synapse/workspaces/sqlPools", + "location": "eastus" + }, + { + "properties": { + "status": "Paused", + "maxSizeBytes": 263882790666240, + "collation": "SQL_Latin1_General_CP1_CI_AS", + "restorePointInTime": "0001-01-01T00:00:00", + "creationDate": "2020-03-02T04:27:54.933Z", + "storageAccountType": "GRS", + "sourceDatabaseDeletionDate": "0001-01-01T00:00:00", + "provisioningState": "Succeeded" + }, + "sku": { + "name": "DW1500c", + "capacity": 0 + }, + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/sqlPools/sqlpoolcli1", + "name": "sqlpoolcli1", + "type": "Microsoft.Synapse/workspaces/sqlPools", + "location": "eastus" + } + ] + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/sqlPools/dwnewpool1221?api-version=2020-12-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-d0cf560f172f1d488a4e5689b288f9db-206643bb8db7ad45-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "4cf7b656684f4c7ba0994ca29786f016", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Content-Length": "609", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 30 Sep 2021 06:21:07 GMT", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "4cf7b656684f4c7ba0994ca29786f016", + "x-ms-request-id": "3db61476-ba43-4027-9940-3645729360ec" + }, + "ResponseBody": { + "properties": { + "status": "Paused", + "maxSizeBytes": 263882790666240, + "collation": "SQL_Latin1_General_CP1_CI_AS", + "restorePointInTime": "0001-01-01T00:00:00", + "creationDate": "2020-12-21T08:27:23.163Z", + "storageAccountType": "GRS", + "sourceDatabaseDeletionDate": "0001-01-01T00:00:00", + "provisioningState": "Succeeded" + }, + "sku": { + "name": "DW200c", + "capacity": 0 + }, + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/sqlPools/dwnewpool1221", + "name": "dwnewpool1221", + "type": "Microsoft.Synapse/workspaces/sqlPools", + "location": "eastus", + "tags": {} + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/sqlPools/dwtest1034?api-version=2020-12-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-4335cdcdfc7b4540baefd8d64d37e065-56e32b81889ffb46-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "756f0db805506f9e0e56c4202960951d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Content-Length": "592", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 30 Sep 2021 06:21:07 GMT", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "756f0db805506f9e0e56c4202960951d", + "x-ms-request-id": "6d5c89df-d09f-4d50-8da6-59e952b621d6" + }, + "ResponseBody": { + "properties": { + "status": "Paused", + "maxSizeBytes": 263882790666240, + "collation": "SQL_Latin1_General_CP1_CI_AS", + "restorePointInTime": "0001-01-01T00:00:00", + "creationDate": "2020-12-30T06:49:25.41Z", + "storageAccountType": "GRS", + "sourceDatabaseDeletionDate": "0001-01-01T00:00:00", + "provisioningState": "Succeeded" + }, + "sku": { + "name": "DW200c", + "capacity": 0 + }, + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/sqlPools/dwtest1034", + "name": "dwtest1034", + "type": "Microsoft.Synapse/workspaces/sqlPools", + "location": "eastus" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/sqlPools/dwtest1035?api-version=2020-12-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-12289b7621451544877c1b7ea04f1cc7-42ccdcb8e1078a4e-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "8f17f26affcda4e39d4a7a43aaaa8104", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Content-Length": "593", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 30 Sep 2021 06:21:07 GMT", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "8f17f26affcda4e39d4a7a43aaaa8104", + "x-ms-request-id": "ea713cbd-00e8-42df-b08d-ba0cbfbe2d3f" + }, + "ResponseBody": { + "properties": { + "status": "Paused", + "maxSizeBytes": 263882790666240, + "collation": "SQL_Latin1_General_CP1_CI_AS", + "restorePointInTime": "0001-01-01T00:00:00", + "creationDate": "2021-01-05T08:52:55.787Z", + "storageAccountType": "GRS", + "sourceDatabaseDeletionDate": "0001-01-01T00:00:00", + "provisioningState": "Succeeded" + }, + "sku": { + "name": "DW200c", + "capacity": 0 + }, + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/sqlPools/dwtest1035", + "name": "dwtest1035", + "type": "Microsoft.Synapse/workspaces/sqlPools", + "location": "eastus" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/sqlPools/dwtestbackup?api-version=2020-12-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-be3a7fcf23229440b54b51ad3ae0a917-6c9e49b6958a774b-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "49e69101a9e651af17883ef9a45b2340", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Content-Length": "606", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 30 Sep 2021 06:21:07 GMT", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "49e69101a9e651af17883ef9a45b2340", + "x-ms-request-id": "256e5872-c5dc-4cd2-824b-1ae07d919bd2" + }, + "ResponseBody": { + "properties": { + "status": "Paused", + "maxSizeBytes": 263882790666240, + "collation": "SQL_Latin1_General_CP1_CI_AS", + "restorePointInTime": "0001-01-01T00:00:00", + "creationDate": "2021-01-11T11:33:42.26Z", + "storageAccountType": "GRS", + "sourceDatabaseDeletionDate": "0001-01-01T00:00:00", + "provisioningState": "Succeeded" + }, + "sku": { + "name": "DW400c", + "capacity": 0 + }, + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/sqlPools/dwtestbackup", + "name": "dwtestbackup", + "type": "Microsoft.Synapse/workspaces/sqlPools", + "location": "eastus", + "tags": {} + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/sqlPools/ps3416?api-version=2020-12-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-7ee6e498e45ad648a4eacf209c8929b1-1b9ad857e0b0bc42-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "a4372f03606fb8482acad8068b5bc464", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Content-Length": "585", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 30 Sep 2021 06:21:07 GMT", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "a4372f03606fb8482acad8068b5bc464", + "x-ms-request-id": "e5d25a04-2759-43c6-9c51-9b3e845ced91" + }, + "ResponseBody": { + "properties": { + "status": "Paused", + "maxSizeBytes": 263882790666240, + "collation": "SQL_Latin1_General_CP1_CI_AS", + "restorePointInTime": "0001-01-01T00:00:00", + "creationDate": "2021-01-12T04:57:02.723Z", + "storageAccountType": "GRS", + "sourceDatabaseDeletionDate": "0001-01-01T00:00:00", + "provisioningState": "Succeeded" + }, + "sku": { + "name": "DW200c", + "capacity": 0 + }, + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/sqlPools/ps3416", + "name": "ps3416", + "type": "Microsoft.Synapse/workspaces/sqlPools", + "location": "eastus" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/sqlPools/ps540?api-version=2020-12-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-4ee11ac2285a2d4a97eadff78d015cf9-c95a5a9552908e47-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "971fbfd54b79c13743c67845c1e90041", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Content-Length": "583", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 30 Sep 2021 06:21:07 GMT", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "971fbfd54b79c13743c67845c1e90041", + "x-ms-request-id": "452a7221-3ff0-4152-bb0a-aef248183df8" + }, + "ResponseBody": { + "properties": { + "status": "Paused", + "maxSizeBytes": 263882790666240, + "collation": "SQL_Latin1_General_CP1_CI_AS", + "restorePointInTime": "0001-01-01T00:00:00", + "creationDate": "2021-01-12T05:40:00.923Z", + "storageAccountType": "GRS", + "sourceDatabaseDeletionDate": "0001-01-01T00:00:00", + "provisioningState": "Succeeded" + }, + "sku": { + "name": "DW200c", + "capacity": 0 + }, + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/sqlPools/ps540", + "name": "ps540", + "type": "Microsoft.Synapse/workspaces/sqlPools", + "location": "eastus" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/sqlPools/restorepool1?api-version=2020-12-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-519531f15540c842b271b120bc1009da-834470da9d2e4a48-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "7a403a26dc72a095492e1f1bd1a9c5bc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Content-Length": "596", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 30 Sep 2021 06:21:07 GMT", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "7a403a26dc72a095492e1f1bd1a9c5bc", + "x-ms-request-id": "3710709f-5d50-44db-adb3-89e8f9584763" + }, + "ResponseBody": { + "properties": { + "status": "Paused", + "maxSizeBytes": 263882790666240, + "collation": "SQL_Latin1_General_CP1_CI_AS", + "restorePointInTime": "0001-01-01T00:00:00", + "creationDate": "2021-01-21T12:16:49.09Z", + "storageAccountType": "GRS", + "sourceDatabaseDeletionDate": "0001-01-01T00:00:00", + "provisioningState": "Succeeded" + }, + "sku": { + "name": "DW200c", + "capacity": 0 + }, + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/sqlPools/restorepool1", + "name": "restorepool1", + "type": "Microsoft.Synapse/workspaces/sqlPools", + "location": "eastus" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/sqlPools/sqlpoolcli1?api-version=2020-12-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-d46375c5397bd049b20248e38c63e56c-e3731b0ee5e92544-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "e424d9c38c3cb7c6f87661a9e703f640", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Content-Length": "596", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 30 Sep 2021 06:21:08 GMT", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "e424d9c38c3cb7c6f87661a9e703f640", + "x-ms-request-id": "96eb875f-325d-45b4-9326-76f13e0a5485" + }, + "ResponseBody": { + "properties": { + "status": "Paused", + "maxSizeBytes": 263882790666240, + "collation": "SQL_Latin1_General_CP1_CI_AS", + "restorePointInTime": "0001-01-01T00:00:00", + "creationDate": "2020-03-02T04:27:54.933Z", + "storageAccountType": "GRS", + "sourceDatabaseDeletionDate": "0001-01-01T00:00:00", + "provisioningState": "Succeeded" + }, + "sku": { + "name": "DW1500c", + "capacity": 0 + }, + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/sqlPools/sqlpoolcli1", + "name": "sqlpoolcli1", + "type": "Microsoft.Synapse/workspaces/sqlPools", + "location": "eastus" } } ], "Variables": { - "AZURE_SYNAPSE_WORKSPACE_URL": "https://workspacechhamosynapse.dev.azuresynapse.net", + "AZURE_SYNAPSE_WORKSPACE_URL": "https://testsynapseworkspace.dev.azuresynapse.net", "RandomSeed": "1946890102" } } \ No newline at end of file diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/SqlScriptClientLiveTests/TestDeleteSparkJob.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/SqlScriptClientLiveTests/TestDeleteSparkJob.json index e7793ed64759..0b853b8d782f 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/SqlScriptClientLiveTests/TestDeleteSparkJob.json +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/SqlScriptClientLiveTests/TestDeleteSparkJob.json @@ -1,18 +1,15 @@ { "Entries": [ { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/sqlScripts/SqlScript1705717?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/sqlScripts/SqlScript1705717?api-version=2020-12-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "299", "Content-Type": "application/json", - "traceparent": "00-47dadf2f83f07c4587eadfb62340c301-efe029b3351c174a-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210125.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "traceparent": "00-6e2a4b03d9730248a73fb48084a81b46-b7646f69e0f44241-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "22ec62dbc2d1e54927e3d94bc178c95b", "x-ms-return-client-request-id": "true" }, @@ -38,37 +35,34 @@ "Location", "Retry-After" ], - "Content-Length": "452", + "Content-Length": "445", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 Jan 2021 15:34:39 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/4c7c1072-b6b9-41f9-a7ee-cfd7d2f21fba?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:21:08 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/8a8f38bb-6121-456a-a199-257af894b118?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "22ec62dbc2d1e54927e3d94bc178c95b", - "x-ms-request-id": "b8f26d0e-b5fe-49e8-b01a-f5b5b6b0eb6b" + "x-ms-request-id": "edb970de-981f-4182-9f6d-fc0f9aa68584" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/sqlScripts/SqlScript1705717", - "recordId": 1004060, + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/sqlScripts/SqlScript1705717", + "recordId": 2424530, "state": "Creating", - "created": "2021-01-25T15:34:40.1533333Z", - "changed": "2021-01-25T15:34:40.1533333Z", + "created": "2021-09-30T06:21:09.1833333Z", + "changed": "2021-09-30T06:21:09.1833333Z", "type": "SqlScript", "name": "SqlScript1705717", - "operationId": "4c7c1072-b6b9-41f9-a7ee-cfd7d2f21fba", - "artifactId": "AAE54EA9-624D-4222-9D62-4B739F8FE379" + "operationId": "8a8f38bb-6121-456a-a199-257af894b118", + "artifactId": "BFF25533-29B2-46C6-881B-BA85D7335513" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/4c7c1072-b6b9-41f9-a7ee-cfd7d2f21fba?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/8a8f38bb-6121-456a-a199-257af894b118?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210125.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f1f56f3c02195a0fe1ad314c95e36234", "x-ms-return-client-request-id": "true" }, @@ -85,27 +79,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 Jan 2021 15:34:39 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/4c7c1072-b6b9-41f9-a7ee-cfd7d2f21fba?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:21:08 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/8a8f38bb-6121-456a-a199-257af894b118?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "f1f56f3c02195a0fe1ad314c95e36234", - "x-ms-request-id": "50e197a0-0eec-4897-b48c-9ccabae395ec" + "x-ms-request-id": "a3e627a0-64b5-4526-ba28-6b808fca8212" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/4c7c1072-b6b9-41f9-a7ee-cfd7d2f21fba?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/8a8f38bb-6121-456a-a199-257af894b118?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210125.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f99110f9d831fa6b840f75ff563dac1b", "x-ms-return-client-request-id": "true" }, @@ -122,163 +113,46 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 Jan 2021 15:34:41 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/4c7c1072-b6b9-41f9-a7ee-cfd7d2f21fba?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:21:10 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/8a8f38bb-6121-456a-a199-257af894b118?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "f99110f9d831fa6b840f75ff563dac1b", - "x-ms-request-id": "a26134cc-6d96-49c3-8a53-c8d4e5a972c1" + "x-ms-request-id": "075df5a0-59d6-4dae-9094-e29d12133c9e" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/4c7c1072-b6b9-41f9-a7ee-cfd7d2f21fba?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/8a8f38bb-6121-456a-a199-257af894b118?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210125.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "510e0812d782fb414dc355fdaf9147c9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 Jan 2021 15:34:42 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/4c7c1072-b6b9-41f9-a7ee-cfd7d2f21fba?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "510e0812d782fb414dc355fdaf9147c9", - "x-ms-request-id": "0e37de91-84e4-4be1-a2ac-82fb04bef177" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/4c7c1072-b6b9-41f9-a7ee-cfd7d2f21fba?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210125.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "2913366ed67a639f04fb6c0a8c1003a4", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 Jan 2021 15:34:43 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/4c7c1072-b6b9-41f9-a7ee-cfd7d2f21fba?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "2913366ed67a639f04fb6c0a8c1003a4", - "x-ms-request-id": "2e07233e-5060-4bba-8cfc-2d7ae59c628d" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/4c7c1072-b6b9-41f9-a7ee-cfd7d2f21fba?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210125.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "8d39160111d521b1ce96ab6d836d4bf3", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 Jan 2021 15:34:44 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/4c7c1072-b6b9-41f9-a7ee-cfd7d2f21fba?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "8d39160111d521b1ce96ab6d836d4bf3", - "x-ms-request-id": "994f3afb-fbe1-4f10-b359-3e4284c32d9d" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/4c7c1072-b6b9-41f9-a7ee-cfd7d2f21fba?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210125.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "1f90acc7822a3ba069aa4d876a376e3d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "575", + "Content-Length": "568", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 Jan 2021 15:34:45 GMT", + "Date": "Thu, 30 Sep 2021 06:21:11 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "1f90acc7822a3ba069aa4d876a376e3d", - "x-ms-correlation-request-id": "559b8aaa-2e50-45de-9848-ed84ff3dddd2", - "x-ms-request-id": "afdfa0b7-c21e-44f4-99cc-c11e64d7b659", + "x-ms-client-request-id": "510e0812d782fb414dc355fdaf9147c9", + "x-ms-correlation-request-id": "cb483dac-c211-48c5-bcc5-ee2097825c75", + "x-ms-request-id": "a4d4e775-b3aa-4935-8473-7323be34c5c2", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/sqlscripts/SqlScript1705717", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/sqlscripts/SqlScript1705717", "name": "SqlScript1705717", "type": "Microsoft.Synapse/workspaces/sqlscripts", "properties": { @@ -290,21 +164,18 @@ } } }, - "etag": "af048e24-0000-0800-0000-600ee5150000" + "etag": "2e00b880-0000-0100-0000-615557560000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/sqlScripts/SqlScript1705717?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/sqlScripts/SqlScript1705717?api-version=2020-12-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-fa4346a333554647ad6def6fa4495bc6-835d9d17d1084346-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210125.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "98fcb1c0ba575df385f15ae42b31e097", + "traceparent": "00-c5602bb59755f34daba425d09580acc2-d320b8303332b044-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "2913366ed67a639f04fb6c0a8c1003a4", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -312,110 +183,33 @@ "ResponseHeaders": { "Access-Control-Allow-Headers": "Location", "Access-Control-Expose-Headers": "Location", - "Content-Length": "376", + "Content-Length": "369", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 Jan 2021 15:34:45 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/8653fce1-97e8-4f99-9486-61c2aef9fe9a?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:21:11 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e6d6cfe2-1afc-4d2a-b74f-822c9111eaf3?api-version=2020-12-01", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "98fcb1c0ba575df385f15ae42b31e097", - "x-ms-request-id": "2bf34c5f-eb1e-4a7a-9a7d-a51f9a5bb81e" + "x-ms-client-request-id": "2913366ed67a639f04fb6c0a8c1003a4", + "x-ms-request-id": "f72c1ecf-fcb2-47c3-a445-a60fb91147ac" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/sqlScripts/SqlScript1705717", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/sqlScripts/SqlScript1705717", "recordId": 0, "state": "Deleting", "created": "0001-01-01T00:00:00", "changed": "0001-01-01T00:00:00", "type": "SqlScript", "name": "SqlScript1705717", - "operationId": "8653fce1-97e8-4f99-9486-61c2aef9fe9a" + "operationId": "e6d6cfe2-1afc-4d2a-b74f-822c9111eaf3" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/8653fce1-97e8-4f99-9486-61c2aef9fe9a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e6d6cfe2-1afc-4d2a-b74f-822c9111eaf3?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210125.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "d1ad6e27b2710d9bb8339a3827bb1037", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 Jan 2021 15:34:45 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/8653fce1-97e8-4f99-9486-61c2aef9fe9a?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "d1ad6e27b2710d9bb8339a3827bb1037", - "x-ms-request-id": "10865517-fa41-4b3e-9d4f-730e4f0bca21" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/8653fce1-97e8-4f99-9486-61c2aef9fe9a?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210125.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "f0d8b6c98ef5dcbe377d225996c8995a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 Jan 2021 15:34:47 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/8653fce1-97e8-4f99-9486-61c2aef9fe9a?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "f0d8b6c98ef5dcbe377d225996c8995a", - "x-ms-request-id": "b9469389-f84f-4ec4-b423-d65c2ff9dc26" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/8653fce1-97e8-4f99-9486-61c2aef9fe9a?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210125.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "bcbdc43a0f84fc26de35274b484156ba", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "1f90acc7822a3ba069aa4d876a376e3d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -431,28 +225,25 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 Jan 2021 15:34:48 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/8653fce1-97e8-4f99-9486-61c2aef9fe9a?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:21:11 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e6d6cfe2-1afc-4d2a-b74f-822c9111eaf3?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "bcbdc43a0f84fc26de35274b484156ba", - "x-ms-request-id": "d44b5025-6785-4c21-92fa-35680375f165" + "x-ms-client-request-id": "1f90acc7822a3ba069aa4d876a376e3d", + "x-ms-request-id": "71864d75-c77c-4705-9aa8-f58d4c9c2a51" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/8653fce1-97e8-4f99-9486-61c2aef9fe9a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e6d6cfe2-1afc-4d2a-b74f-822c9111eaf3?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210125.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "0d61ecedc65299a1b0d099f38f4176f0", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "98fcb1c0ba575df385f15ae42b31e097", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -468,45 +259,42 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 Jan 2021 15:34:49 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/8653fce1-97e8-4f99-9486-61c2aef9fe9a?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:21:12 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e6d6cfe2-1afc-4d2a-b74f-822c9111eaf3?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "0d61ecedc65299a1b0d099f38f4176f0", - "x-ms-request-id": "e7c6f7e1-5681-4144-98cf-fa2a96928254" + "x-ms-client-request-id": "98fcb1c0ba575df385f15ae42b31e097", + "x-ms-request-id": "3fcbe4fe-a123-42d3-b315-429fdbae8140" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/8653fce1-97e8-4f99-9486-61c2aef9fe9a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/e6d6cfe2-1afc-4d2a-b74f-822c9111eaf3?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210125.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "63fe3f9953febab38fdb12bf667293f6", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "e04279afe37f7e7975fe232ac32ab796", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Content-Length": "0", - "Date": "Mon, 25 Jan 2021 15:34:50 GMT", + "Date": "Thu, 30 Sep 2021 06:21:13 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "63fe3f9953febab38fdb12bf667293f6", - "x-ms-request-id": "eada52fb-e57e-4c12-bd55-09813366ff64" + "x-ms-client-request-id": "e04279afe37f7e7975fe232ac32ab796", + "x-ms-request-id": "9fbd0a3f-dbba-4d9a-80a2-b890f5c92e65" }, "ResponseBody": [] } ], "Variables": { - "AZURE_SYNAPSE_WORKSPACE_URL": "https://workspacechhamosynapse.dev.azuresynapse.net", + "AZURE_SYNAPSE_WORKSPACE_URL": "https://testsynapseworkspace.dev.azuresynapse.net", "RandomSeed": "1747390673" } } \ No newline at end of file diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/SqlScriptClientLiveTests/TestDeleteSparkJobAsync.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/SqlScriptClientLiveTests/TestDeleteSparkJobAsync.json index a2060d5a5f2c..27fe76c7a3e5 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/SqlScriptClientLiveTests/TestDeleteSparkJobAsync.json +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/SqlScriptClientLiveTests/TestDeleteSparkJobAsync.json @@ -1,18 +1,15 @@ { "Entries": [ { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/sqlScripts/SqlScript1397025?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/sqlScripts/SqlScript1397025?api-version=2020-12-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "299", "Content-Type": "application/json", - "traceparent": "00-73797711009f304da3786203a1002e27-391f9b51e6336545-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210125.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "traceparent": "00-cd622b16c519064e9260efcff547d08a-445baa9a95b81443-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "008012d32d8c037d46d66d720f03b668", "x-ms-return-client-request-id": "true" }, @@ -38,37 +35,34 @@ "Location", "Retry-After" ], - "Content-Length": "442", + "Content-Length": "445", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 Jan 2021 15:34:50 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/efba1bdf-f2a6-410d-b049-94cffd652beb?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:21:52 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/8ad49a4e-177f-461c-a101-dd4b82012244?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "008012d32d8c037d46d66d720f03b668", - "x-ms-request-id": "9bed8095-9d9b-4a73-be41-03f357512516" + "x-ms-request-id": "f6c17211-3684-46e6-8482-7ab324652ab5" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/sqlScripts/SqlScript1397025", - "recordId": 1004061, + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/sqlScripts/SqlScript1397025", + "recordId": 2424595, "state": "Creating", - "created": "2021-01-25T15:34:50.88Z", - "changed": "2021-01-25T15:34:50.88Z", + "created": "2021-09-30T06:21:52.8766667Z", + "changed": "2021-09-30T06:21:52.8766667Z", "type": "SqlScript", "name": "SqlScript1397025", - "operationId": "efba1bdf-f2a6-410d-b049-94cffd652beb", - "artifactId": "E6DA50B4-B735-4AAE-8803-EFA0B17202F1" + "operationId": "8ad49a4e-177f-461c-a101-dd4b82012244", + "artifactId": "0ABEC1E4-0887-4F37-A5D1-5C11C166B826" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/efba1bdf-f2a6-410d-b049-94cffd652beb?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/8ad49a4e-177f-461c-a101-dd4b82012244?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210125.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "59dda5b670666f4b1ca950ab3478a33d", "x-ms-return-client-request-id": "true" }, @@ -85,27 +79,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 Jan 2021 15:34:50 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/efba1bdf-f2a6-410d-b049-94cffd652beb?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:21:52 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/8ad49a4e-177f-461c-a101-dd4b82012244?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "59dda5b670666f4b1ca950ab3478a33d", - "x-ms-request-id": "8772f5eb-f51a-491c-8aa7-3fb5c41a9b87" + "x-ms-request-id": "654d0fa3-374e-4ac9-9d7d-a578907a9f84" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/efba1bdf-f2a6-410d-b049-94cffd652beb?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/8ad49a4e-177f-461c-a101-dd4b82012244?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210125.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "27b064e19fb7f3f835a10cc0d1133ff5", "x-ms-return-client-request-id": "true" }, @@ -122,126 +113,46 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 Jan 2021 15:34:52 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/efba1bdf-f2a6-410d-b049-94cffd652beb?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:21:53 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/8ad49a4e-177f-461c-a101-dd4b82012244?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "27b064e19fb7f3f835a10cc0d1133ff5", - "x-ms-request-id": "c32a1275-48ac-4f2a-9f0b-ea99e25a2cb6" + "x-ms-request-id": "b9cc85f6-682e-47e9-b87b-d01b1885787e" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/efba1bdf-f2a6-410d-b049-94cffd652beb?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/8ad49a4e-177f-461c-a101-dd4b82012244?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210125.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "69bbdd9d5d26cb019820342f8e31a97b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 Jan 2021 15:34:53 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/efba1bdf-f2a6-410d-b049-94cffd652beb?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "69bbdd9d5d26cb019820342f8e31a97b", - "x-ms-request-id": "2c9115a6-2808-4d61-9cab-4994afeb0057" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/efba1bdf-f2a6-410d-b049-94cffd652beb?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210125.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "5e871e2811a117d8ade923c4638b9d09", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 Jan 2021 15:34:54 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/efba1bdf-f2a6-410d-b049-94cffd652beb?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "5e871e2811a117d8ade923c4638b9d09", - "x-ms-request-id": "15dbd5d5-3483-4675-931c-242e90e89b86" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/efba1bdf-f2a6-410d-b049-94cffd652beb?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210125.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "560e5b6a3abc831763e48e966bc96503", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "575", + "Content-Length": "568", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 Jan 2021 15:34:55 GMT", + "Date": "Thu, 30 Sep 2021 06:21:55 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "560e5b6a3abc831763e48e966bc96503", - "x-ms-correlation-request-id": "bf4a8c4f-388c-4c2b-a963-9e72c0682a17", - "x-ms-request-id": "bcb0d74a-c1da-43cf-a99b-b8590859d340", + "x-ms-client-request-id": "69bbdd9d5d26cb019820342f8e31a97b", + "x-ms-correlation-request-id": "426cec6e-44c2-4b10-81ce-e6ef629094ad", + "x-ms-request-id": "d85fdda1-ae5d-4bc7-aab3-af197f610bd3", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/sqlscripts/SqlScript1397025", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/sqlscripts/SqlScript1397025", "name": "SqlScript1397025", "type": "Microsoft.Synapse/workspaces/sqlscripts", "properties": { @@ -253,21 +164,18 @@ } } }, - "etag": "af04ab2c-0000-0800-0000-600ee51f0000" + "etag": "2e00f180-0000-0100-0000-615557820000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/sqlScripts/SqlScript1397025?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/sqlScripts/SqlScript1397025?api-version=2020-12-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-36829bf0249d1a4784d5d2289ec2c321-89f5d8e5a15fcf47-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210125.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "b39891f8e08b8b5305a4bb3c393c680d", + "traceparent": "00-596e0af39461ed46a3f4ad0f45ac61f1-3f7279e6c2a6404b-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "5e871e2811a117d8ade923c4638b9d09", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -275,221 +183,33 @@ "ResponseHeaders": { "Access-Control-Allow-Headers": "Location", "Access-Control-Expose-Headers": "Location", - "Content-Length": "376", + "Content-Length": "369", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 Jan 2021 15:34:55 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/7672371e-2b59-464d-93b7-6c4112e15741?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:21:55 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/f81f21ec-13fe-4f81-ac50-ef7c8137c77f?api-version=2020-12-01", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "b39891f8e08b8b5305a4bb3c393c680d", - "x-ms-request-id": "ac73a5ed-17b4-4342-92b5-1e4d929ff393" + "x-ms-client-request-id": "5e871e2811a117d8ade923c4638b9d09", + "x-ms-request-id": "0e39acfb-8289-4f13-9c06-62c31b549828" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/sqlScripts/SqlScript1397025", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/sqlScripts/SqlScript1397025", "recordId": 0, "state": "Deleting", "created": "0001-01-01T00:00:00", "changed": "0001-01-01T00:00:00", "type": "SqlScript", "name": "SqlScript1397025", - "operationId": "7672371e-2b59-464d-93b7-6c4112e15741" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/7672371e-2b59-464d-93b7-6c4112e15741?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210125.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "d1cc2084eaf2897d088251187eda4927", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 Jan 2021 15:34:55 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/7672371e-2b59-464d-93b7-6c4112e15741?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "d1cc2084eaf2897d088251187eda4927", - "x-ms-request-id": "bac9c8f8-5806-4867-b6aa-66dc6e64f3dd" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/7672371e-2b59-464d-93b7-6c4112e15741?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210125.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "3f13807b3204a5e0d3aaab87e59609c3", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 Jan 2021 15:34:56 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/7672371e-2b59-464d-93b7-6c4112e15741?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "3f13807b3204a5e0d3aaab87e59609c3", - "x-ms-request-id": "d002c101-b37a-426d-9f42-91445487edd2" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/7672371e-2b59-464d-93b7-6c4112e15741?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210125.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "19b8d7f8966f981bae3c2aa001a6702c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 Jan 2021 15:34:57 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/7672371e-2b59-464d-93b7-6c4112e15741?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "19b8d7f8966f981bae3c2aa001a6702c", - "x-ms-request-id": "8c67d62e-49db-4d77-81b9-a086b39ed141" - }, - "ResponseBody": { - "status": "InProgress" + "operationId": "f81f21ec-13fe-4f81-ac50-ef7c8137c77f" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/7672371e-2b59-464d-93b7-6c4112e15741?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/f81f21ec-13fe-4f81-ac50-ef7c8137c77f?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210125.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "0141d4ba6c2d51e04027fe483ef5a372", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 Jan 2021 15:34:58 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/7672371e-2b59-464d-93b7-6c4112e15741?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "0141d4ba6c2d51e04027fe483ef5a372", - "x-ms-request-id": "6e8df380-cb1c-4dac-8c75-3432149d6803" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/7672371e-2b59-464d-93b7-6c4112e15741?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210125.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "a61f8d793021e5b7657a91c7073fa32d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 Jan 2021 15:35:00 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/7672371e-2b59-464d-93b7-6c4112e15741?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "a61f8d793021e5b7657a91c7073fa32d", - "x-ms-request-id": "ef21274f-e9e7-47ef-bb4f-1889be8debeb" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/7672371e-2b59-464d-93b7-6c4112e15741?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210125.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "11cd7f3a07548c96f766d94798d35ab8", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "b39891f8e08b8b5305a4bb3c393c680d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -505,45 +225,42 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 Jan 2021 15:35:01 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/7672371e-2b59-464d-93b7-6c4112e15741?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:21:55 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/f81f21ec-13fe-4f81-ac50-ef7c8137c77f?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "11cd7f3a07548c96f766d94798d35ab8", - "x-ms-request-id": "7e66d26d-f4e6-461c-8702-9b51eb92aaa9" + "x-ms-client-request-id": "b39891f8e08b8b5305a4bb3c393c680d", + "x-ms-request-id": "ccc8fd9a-909d-4cf0-8226-f2e292ebf7d7" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/7672371e-2b59-464d-93b7-6c4112e15741?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/f81f21ec-13fe-4f81-ac50-ef7c8137c77f?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210125.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "7327b898c9868a0a1c5c9cb3da184a00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "32c52b835223eebe0704fbbd8241abe4", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Content-Length": "0", - "Date": "Mon, 25 Jan 2021 15:35:02 GMT", + "Date": "Thu, 30 Sep 2021 06:21:56 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "7327b898c9868a0a1c5c9cb3da184a00", - "x-ms-request-id": "25a21cc9-cb32-4a08-90cb-a4d12c5e05cc" + "x-ms-client-request-id": "32c52b835223eebe0704fbbd8241abe4", + "x-ms-request-id": "d351ff27-4efe-4639-9161-029e8aa03bf9" }, "ResponseBody": [] } ], "Variables": { - "AZURE_SYNAPSE_WORKSPACE_URL": "https://workspacechhamosynapse.dev.azuresynapse.net", + "AZURE_SYNAPSE_WORKSPACE_URL": "https://testsynapseworkspace.dev.azuresynapse.net", "RandomSeed": "2078744629" } } \ No newline at end of file diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/SqlScriptClientLiveTests/TestGetScripts.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/SqlScriptClientLiveTests/TestGetScripts.json index 7b47d01f1d60..04ff1136f3d3 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/SqlScriptClientLiveTests/TestGetScripts.json +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/SqlScriptClientLiveTests/TestGetScripts.json @@ -1,18 +1,15 @@ { "Entries": [ { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/sqlScripts/SqlScript1382833?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/sqlScripts/SqlScript1382833?api-version=2020-12-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "299", "Content-Type": "application/json", - "traceparent": "00-48b443835e45d044abc7613d00057282-0e32a7fdae4b8a4b-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210125.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "traceparent": "00-d9d304a03a7af641a762db9d8a5ce7f1-40fdfa34506c6e48-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "78ce46e8e90702a3db74bfca335ffb61", "x-ms-return-client-request-id": "true" }, @@ -38,37 +35,34 @@ "Location", "Retry-After" ], - "Content-Length": "442", + "Content-Length": "435", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 Jan 2021 15:35:27 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/4c37de70-ccce-4659-ad02-5d9413698e84?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:21:13 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/92f21b17-1926-4555-9d07-73b04366201b?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "78ce46e8e90702a3db74bfca335ffb61", - "x-ms-request-id": "847179c5-1818-4ac5-9d68-74cdd2f9d6f0" + "x-ms-request-id": "e1026bbc-1e7c-4d5d-853f-cf31676cb55d" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/sqlScripts/SqlScript1382833", - "recordId": 1004064, + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/sqlScripts/SqlScript1382833", + "recordId": 2424537, "state": "Creating", - "created": "2021-01-25T15:35:28.18Z", - "changed": "2021-01-25T15:35:28.18Z", + "created": "2021-09-30T06:21:14.41Z", + "changed": "2021-09-30T06:21:14.41Z", "type": "SqlScript", "name": "SqlScript1382833", - "operationId": "4c37de70-ccce-4659-ad02-5d9413698e84", - "artifactId": "7EBD7876-E724-47BF-85C9-0762ED4A2915" + "operationId": "92f21b17-1926-4555-9d07-73b04366201b", + "artifactId": "3A35907D-A7B6-4B0D-8287-0B878CF93FA8" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/4c37de70-ccce-4659-ad02-5d9413698e84?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/92f21b17-1926-4555-9d07-73b04366201b?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210125.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "78a5d17c2f4aeadb047bd8f376a58504", "x-ms-return-client-request-id": "true" }, @@ -85,27 +79,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 Jan 2021 15:35:27 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/4c37de70-ccce-4659-ad02-5d9413698e84?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:21:13 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/92f21b17-1926-4555-9d07-73b04366201b?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "78a5d17c2f4aeadb047bd8f376a58504", - "x-ms-request-id": "57099c74-db7c-404f-9347-1ec14b26d6f3" + "x-ms-request-id": "730a3bfa-db8c-4778-b5ea-50a88012d219" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/4c37de70-ccce-4659-ad02-5d9413698e84?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/92f21b17-1926-4555-9d07-73b04366201b?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210125.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e2f30ae1f73e383f147659de67d3afb3", "x-ms-return-client-request-id": "true" }, @@ -122,27 +113,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 Jan 2021 15:35:29 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/4c37de70-ccce-4659-ad02-5d9413698e84?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:21:15 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/92f21b17-1926-4555-9d07-73b04366201b?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "e2f30ae1f73e383f147659de67d3afb3", - "x-ms-request-id": "48135211-791a-4312-b7e9-647b011ba3ff" + "x-ms-request-id": "82aef3b5-5882-4e25-a5f2-ea789647d5ae" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/4c37de70-ccce-4659-ad02-5d9413698e84?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/92f21b17-1926-4555-9d07-73b04366201b?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210125.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "614e8c8b82b99f1723168f28d73ee178", "x-ms-return-client-request-id": "true" }, @@ -159,52 +147,80 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 Jan 2021 15:35:30 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/4c37de70-ccce-4659-ad02-5d9413698e84?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:21:16 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/92f21b17-1926-4555-9d07-73b04366201b?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "614e8c8b82b99f1723168f28d73ee178", - "x-ms-request-id": "33a83eff-2256-4cb4-b5b5-581947489030" + "x-ms-request-id": "58e4a3b6-7045-4fb1-a7df-6c8edbb2e549" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/4c37de70-ccce-4659-ad02-5d9413698e84?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/92f21b17-1926-4555-9d07-73b04366201b?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210125.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "48ee7ca3073584f4926d64d4d5fc8331", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 30 Sep 2021 06:21:17 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/92f21b17-1926-4555-9d07-73b04366201b?api-version=2020-12-01", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "48ee7ca3073584f4926d64d4d5fc8331", + "x-ms-request-id": "7fdfd463-df19-4315-afc0-faa0ca2d7a87" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/92f21b17-1926-4555-9d07-73b04366201b?api-version=2020-12-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "e96825cc24575f4af354be27681760d6", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "575", + "Content-Length": "568", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 Jan 2021 15:35:31 GMT", + "Date": "Thu, 30 Sep 2021 06:21:18 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "48ee7ca3073584f4926d64d4d5fc8331", - "x-ms-correlation-request-id": "b1a8ef67-154b-4b5b-8a93-21c40ce376f5", - "x-ms-request-id": "c9e1f23e-1624-427f-b308-86925486e591", + "x-ms-client-request-id": "e96825cc24575f4af354be27681760d6", + "x-ms-correlation-request-id": "40725aa0-b736-4080-b5c8-500f9d2c5a56", + "x-ms-request-id": "5c57d465-1ae0-45f5-9616-6a77a31e7918", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/sqlscripts/SqlScript1382833", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/sqlscripts/SqlScript1382833", "name": "SqlScript1382833", "type": "Microsoft.Synapse/workspaces/sqlscripts", "properties": { @@ -216,41 +232,216 @@ } } }, - "etag": "af044146-0000-0800-0000-600ee5430000" + "etag": "2e00bc80-0000-0100-0000-6155575d0000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/sqlScripts?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/sqlScripts?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-de7280b7adf8bb43b5bda7400a1d2764-edb583a6735c6846-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210125.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "e96825cc24575f4af354be27681760d6", + "traceparent": "00-0857757890b0c9469a2d1fd8c7daba5a-6284ff2abf2d0d4d-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "ea3ae09466e5837e98c9ce4c1e42c926", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Content-Length": "587", + "Content-Length": "4975", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 Jan 2021 15:35:31 GMT", + "Date": "Thu, 30 Sep 2021 06:21:18 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "e96825cc24575f4af354be27681760d6", - "x-ms-request-id": "c5130dac-f527-4f37-9157-5bfa4cd6aa98" + "x-ms-client-request-id": "ea3ae09466e5837e98c9ce4c1e42c926", + "x-ms-request-id": "56e7acb6-3dec-4e0a-947a-6a2dc1dda9a7" }, "ResponseBody": { "value": [ { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/sqlscripts/SqlScript1382833", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/sqlscripts/SQL script 1", + "name": "SQL script 1", + "type": "Microsoft.Synapse/workspaces/sqlscripts", + "etag": "0d0026bd-0000-0100-0000-60015b520000", + "properties": { + "content": { + "query": "SELECT *\nFROM sample\nLIMIT 1", + "metadata": { + "language": "sql" + }, + "currentConnection": { + "poolName": "Built-in", + "databaseName": "master" + } + }, + "type": "SqlQuery" + } + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/sqlscripts/dongwwasql", + "name": "dongwwasql", + "type": "Microsoft.Synapse/workspaces/sqlscripts", + "etag": "0d0069bd-0000-0100-0000-60015b880000", + "properties": { + "content": { + "query": "SELECT *\nFROM sample\nLIMIT 1", + "metadata": { + "language": "sql" + }, + "currentConnection": { + "poolName": "Built-in", + "databaseName": "master" + } + }, + "type": "SqlQuery" + } + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/sqlscripts/dongwwasql2", + "name": "dongwwasql2", + "type": "Microsoft.Synapse/workspaces/sqlscripts", + "etag": "4500e9f8-0000-0100-0000-6125892e0000", + "properties": { + "content": { + "query": "SELECT *\nFROM sample\nLIMIT 2", + "metadata": { + "language": "sql" + }, + "currentConnection": { + "databaseName": "master", + "poolName": "Built-in" + }, + "resultLimit": 5000 + }, + "type": "SqlQuery" + } + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/sqlscripts/dongwwapssql2", + "name": "dongwwapssql2", + "type": "Microsoft.Synapse/workspaces/sqlscripts", + "etag": "46002b27-0000-0100-0000-612590120000", + "properties": { + "content": { + "query": "SELECT *\nFROM sample\nLIMIT 4", + "metadata": { + "language": "sql" + }, + "currentConnection": { + "databaseName": "master", + "poolName": "Built-in" + }, + "resultLimit": 5000 + }, + "type": "SqlQuery" + } + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/sqlscripts/SQL script 2", + "name": "SQL script 2", + "type": "Microsoft.Synapse/workspaces/sqlscripts", + "etag": "04005e14-0000-0100-0000-609a0d960000", + "properties": { + "content": { + "query": "SELECT *\nFROM sample\nLIMIT 2", + "metadata": { + "language": "sql" + }, + "currentConnection": { + "poolName": "dwnewpool1221", + "databaseName": "master" + }, + "resultLimit": -1 + }, + "type": "SqlQuery" + } + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/sqlscripts/dongwwapssql", + "name": "dongwwapssql", + "type": "Microsoft.Synapse/workspaces/sqlscripts", + "etag": "46001e1c-0000-0100-0000-61258ecd0000", + "properties": { + "content": { + "query": "SELECT *\nFROM sample\nLIMIT 4", + "metadata": { + "language": "sql" + }, + "currentConnection": { + "databaseName": "master", + "poolName": "Built-in" + }, + "resultLimit": 5000 + }, + "type": "SqlQuery" + } + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/sqlscripts/dongwwapssql1", + "name": "dongwwapssql1", + "type": "Microsoft.Synapse/workspaces/sqlscripts", + "etag": "4600b124-0000-0100-0000-61258fbb0000", + "properties": { + "content": { + "query": "SELECT *\nFROM sample\nLIMIT 4", + "metadata": { + "language": "sql" + }, + "currentConnection": { + "databaseName": "master", + "poolName": "Built-in" + }, + "resultLimit": 5000 + }, + "type": "SqlQuery" + } + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/sqlscripts/dongwwapssql4", + "name": "dongwwapssql4", + "type": "Microsoft.Synapse/workspaces/sqlscripts", + "etag": "4600d54e-0000-0100-0000-612595740000", + "properties": { + "content": { + "query": "SELECT *\nFROM sample\nLIMIT 4", + "metadata": { + "language": "sql" + }, + "currentConnection": { + "databaseName": "master", + "poolName": "Built-in" + }, + "resultLimit": 5000 + }, + "type": "SqlQuery" + } + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/sqlscripts/dongwwapssql5", + "name": "dongwwapssql5", + "type": "Microsoft.Synapse/workspaces/sqlscripts", + "etag": "46004557-0000-0100-0000-6125963e0000", + "properties": { + "content": { + "query": "SELECT *\nFROM sample\nLIMIT 4", + "metadata": { + "language": "sql" + }, + "currentConnection": { + "databaseName": "master", + "poolName": "Built-in" + }, + "resultLimit": 5000 + }, + "type": "SqlQuery" + } + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/sqlscripts/SqlScript1382833", "name": "SqlScript1382833", "type": "Microsoft.Synapse/workspaces/sqlscripts", - "etag": "af044146-0000-0800-0000-600ee5430000", + "etag": "2e00bc80-0000-0100-0000-6155575d0000", "properties": { "content": { "query": "SELECT NULL LIMIT 0;", @@ -265,41 +456,474 @@ } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/sqlScripts/SqlScript1382833?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/sqlScripts/SQL%20script%201?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-810aae61d0e13147b66cc46b430203ac-acb95c22f8dae145-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210125.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "ea3ae09466e5837e98c9ce4c1e42c926", + "traceparent": "00-fdb6977b0d548243bb315abd5cbcc83e-89e2a6ace7949841-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "b25b5e93f7d57f21318f55e048cc1c7b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "575", + "Content-Length": "472", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 Jan 2021 15:35:31 GMT", + "Date": "Thu, 30 Sep 2021 06:21:18 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "ea3ae09466e5837e98c9ce4c1e42c926", - "x-ms-correlation-request-id": "8f5fafb6-d4d7-449f-ab5e-e0ca5324fa33", - "x-ms-request-id": "6c96a135-4d14-42a8-ba58-b97cb5fc1b32", + "x-ms-client-request-id": "b25b5e93f7d57f21318f55e048cc1c7b", + "x-ms-correlation-request-id": "4c104c78-4809-47f4-b83f-19170def56c9", + "x-ms-request-id": "b883d04c-2201-490a-8b2e-c413a862c0f9", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/sqlscripts/SQL script 1", + "name": "SQL script 1", + "type": "Microsoft.Synapse/workspaces/sqlscripts", + "properties": { + "content": { + "query": "SELECT *\nFROM sample\nLIMIT 1", + "metadata": { + "language": "sql" + }, + "currentConnection": { + "poolName": "Built-in", + "databaseName": "master" + } + }, + "type": "SqlQuery" + }, + "etag": "0d0026bd-0000-0100-0000-60015b520000" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/sqlScripts/dongwwasql?api-version=2020-12-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-a603b4cc141abb498a0d6b1e11a53628-bd15a9a66980a249-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "f53f8e0d98c1664ba6e4518e55fe40b0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "468", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 30 Sep 2021 06:21:18 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-ms-client-request-id": "f53f8e0d98c1664ba6e4518e55fe40b0", + "x-ms-correlation-request-id": "6a054019-b646-476c-b09a-f88a766ff907", + "x-ms-request-id": "c4f8a6f5-a61a-499b-b49e-c0bcfbb113e9", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/sqlscripts/dongwwasql", + "name": "dongwwasql", + "type": "Microsoft.Synapse/workspaces/sqlscripts", + "properties": { + "content": { + "query": "SELECT *\nFROM sample\nLIMIT 1", + "metadata": { + "language": "sql" + }, + "currentConnection": { + "poolName": "Built-in", + "databaseName": "master" + } + }, + "type": "SqlQuery" + }, + "etag": "0d0069bd-0000-0100-0000-60015b880000" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/sqlScripts/dongwwasql2?api-version=2020-12-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-2f122548ae0c704db604ec05662d95ba-30084fda3b8eea4a-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "0a94988badbb9d01bfbbb855109d3bcb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "489", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 30 Sep 2021 06:21:18 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-ms-client-request-id": "0a94988badbb9d01bfbbb855109d3bcb", + "x-ms-correlation-request-id": "6b3ed727-6b4f-44fb-b717-e5d21dd40f00", + "x-ms-request-id": "09e629d6-d685-4b9e-8003-be01ed2774a7", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/sqlscripts/dongwwasql2", + "name": "dongwwasql2", + "type": "Microsoft.Synapse/workspaces/sqlscripts", + "properties": { + "content": { + "query": "SELECT *\nFROM sample\nLIMIT 2", + "metadata": { + "language": "sql" + }, + "currentConnection": { + "databaseName": "master", + "poolName": "Built-in" + }, + "resultLimit": 5000 + }, + "type": "SqlQuery" + }, + "etag": "4500e9f8-0000-0100-0000-6125892e0000" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/sqlScripts/dongwwapssql2?api-version=2020-12-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-12b0c1667e74b54ebac3b4698e9380dd-671db6b9de432444-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "8f3f53acd302fb6412f40bf0a6922933", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "493", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 30 Sep 2021 06:21:18 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-ms-client-request-id": "8f3f53acd302fb6412f40bf0a6922933", + "x-ms-correlation-request-id": "76347ed2-4b73-494a-a84d-07715327bed0", + "x-ms-request-id": "a07b5a88-effd-4089-abb0-44c9584d5b81", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/sqlscripts/dongwwapssql2", + "name": "dongwwapssql2", + "type": "Microsoft.Synapse/workspaces/sqlscripts", + "properties": { + "content": { + "query": "SELECT *\nFROM sample\nLIMIT 4", + "metadata": { + "language": "sql" + }, + "currentConnection": { + "databaseName": "master", + "poolName": "Built-in" + }, + "resultLimit": 5000 + }, + "type": "SqlQuery" + }, + "etag": "46002b27-0000-0100-0000-612590120000" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/sqlScripts/SQL%20script%202?api-version=2020-12-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-9c492c5677c1064289e7ac4ccfb2c59b-1f21a6b18330cd41-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "b055a44e12385fbf8da23506dff65609", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "494", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 30 Sep 2021 06:21:18 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-ms-client-request-id": "b055a44e12385fbf8da23506dff65609", + "x-ms-correlation-request-id": "8e2f3025-4a0c-4daa-9b9a-20a7c31eb6ec", + "x-ms-request-id": "402c6ec3-735b-43da-9138-44e261de5a8e", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/sqlscripts/SQL script 2", + "name": "SQL script 2", + "type": "Microsoft.Synapse/workspaces/sqlscripts", + "properties": { + "content": { + "query": "SELECT *\nFROM sample\nLIMIT 2", + "metadata": { + "language": "sql" + }, + "currentConnection": { + "poolName": "dwnewpool1221", + "databaseName": "master" + }, + "resultLimit": -1 + }, + "type": "SqlQuery" + }, + "etag": "04005e14-0000-0100-0000-609a0d960000" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/sqlScripts/dongwwapssql?api-version=2020-12-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-feb5610bb968f2479d5861797af6796e-2ec1a518c1903349-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "01e185a9b1bfb7ad3399f7c7a110f62d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "491", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 30 Sep 2021 06:21:19 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-ms-client-request-id": "01e185a9b1bfb7ad3399f7c7a110f62d", + "x-ms-correlation-request-id": "c89ff469-3b60-4162-aad4-c3fcd2d3679f", + "x-ms-request-id": "4ca7b3f8-63cd-4a69-845b-f4168b25fa82", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/sqlscripts/dongwwapssql", + "name": "dongwwapssql", + "type": "Microsoft.Synapse/workspaces/sqlscripts", + "properties": { + "content": { + "query": "SELECT *\nFROM sample\nLIMIT 4", + "metadata": { + "language": "sql" + }, + "currentConnection": { + "databaseName": "master", + "poolName": "Built-in" + }, + "resultLimit": 5000 + }, + "type": "SqlQuery" + }, + "etag": "46001e1c-0000-0100-0000-61258ecd0000" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/sqlScripts/dongwwapssql1?api-version=2020-12-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-3acd805c7176784d857e14c1d78e9cdf-94637e6721257947-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "6b0785918b489a9394df02609e5e1b1c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "493", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 30 Sep 2021 06:21:19 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-ms-client-request-id": "6b0785918b489a9394df02609e5e1b1c", + "x-ms-correlation-request-id": "ef07b72a-74c2-4d05-9929-2c031788d8b7", + "x-ms-request-id": "12d9c884-8187-4cfd-b1c8-1149c79f7003", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/sqlscripts/SqlScript1382833", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/sqlscripts/dongwwapssql1", + "name": "dongwwapssql1", + "type": "Microsoft.Synapse/workspaces/sqlscripts", + "properties": { + "content": { + "query": "SELECT *\nFROM sample\nLIMIT 4", + "metadata": { + "language": "sql" + }, + "currentConnection": { + "databaseName": "master", + "poolName": "Built-in" + }, + "resultLimit": 5000 + }, + "type": "SqlQuery" + }, + "etag": "4600b124-0000-0100-0000-61258fbb0000" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/sqlScripts/dongwwapssql4?api-version=2020-12-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-70b49bacc566bf488836f4b41f42797f-99e9ae45d77ca443-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "2047029d28b09d73f79e7c9e1af7bd7c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "493", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 30 Sep 2021 06:21:19 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-ms-client-request-id": "2047029d28b09d73f79e7c9e1af7bd7c", + "x-ms-correlation-request-id": "fd46e5ab-61dc-4e3e-b6e9-14506023b78a", + "x-ms-request-id": "ac11faf0-5fee-4554-93c2-fe1cf12fea1e", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/sqlscripts/dongwwapssql4", + "name": "dongwwapssql4", + "type": "Microsoft.Synapse/workspaces/sqlscripts", + "properties": { + "content": { + "query": "SELECT *\nFROM sample\nLIMIT 4", + "metadata": { + "language": "sql" + }, + "currentConnection": { + "databaseName": "master", + "poolName": "Built-in" + }, + "resultLimit": 5000 + }, + "type": "SqlQuery" + }, + "etag": "4600d54e-0000-0100-0000-612595740000" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/sqlScripts/dongwwapssql5?api-version=2020-12-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-65b4e01b31c97c4bbe7f4539759e5609-283f2e98f1ae574a-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "5a7408abebee1ec1f1476ddfae4d19d5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "493", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 30 Sep 2021 06:21:19 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-ms-client-request-id": "5a7408abebee1ec1f1476ddfae4d19d5", + "x-ms-correlation-request-id": "43db02d2-fb2f-4f3f-9281-0fd93b829f11", + "x-ms-request-id": "dd3f2095-d007-47fc-bee8-803f53f9bc91", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/sqlscripts/dongwwapssql5", + "name": "dongwwapssql5", + "type": "Microsoft.Synapse/workspaces/sqlscripts", + "properties": { + "content": { + "query": "SELECT *\nFROM sample\nLIMIT 4", + "metadata": { + "language": "sql" + }, + "currentConnection": { + "databaseName": "master", + "poolName": "Built-in" + }, + "resultLimit": 5000 + }, + "type": "SqlQuery" + }, + "etag": "46004557-0000-0100-0000-6125963e0000" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/sqlScripts/SqlScript1382833?api-version=2020-12-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-f79838cd65192548a715a1ecfb1ca903-2d2b7a30a7892d4f-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "9f29db7dd5c9697c116a74aa0ff4809c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "568", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 30 Sep 2021 06:21:19 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-ms-client-request-id": "9f29db7dd5c9697c116a74aa0ff4809c", + "x-ms-correlation-request-id": "c640cb74-fe58-4eb5-9d72-ebb8e5b7acca", + "x-ms-request-id": "e4737c17-6d4c-412b-9a6f-67217bb9d258", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/sqlscripts/SqlScript1382833", "name": "SqlScript1382833", "type": "Microsoft.Synapse/workspaces/sqlscripts", "properties": { @@ -311,21 +935,18 @@ } } }, - "etag": "af044146-0000-0800-0000-600ee5430000" + "etag": "2e00bc80-0000-0100-0000-6155575d0000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/sqlScripts/SqlScript1382833?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/sqlScripts/SqlScript1382833?api-version=2020-12-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-6cd126d9498dfd4f9f327c5c91b60906-e8432c755ba60e41-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210125.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "b25b5e93f7d57f21318f55e048cc1c7b", + "traceparent": "00-23b084f1a5b43748ac34a43e2a3229bd-3a2b63c77048be40-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "95b48622c1e9b22d41292f69ba93efa9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -333,36 +954,33 @@ "ResponseHeaders": { "Access-Control-Allow-Headers": "Location", "Access-Control-Expose-Headers": "Location", - "Content-Length": "376", + "Content-Length": "369", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 Jan 2021 15:35:31 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/1d09cbb6-da39-47c1-a18f-4ae1b8836e92?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:21:19 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/f7a6fed6-beeb-430f-8ebc-4b4ae85f453c?api-version=2020-12-01", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "b25b5e93f7d57f21318f55e048cc1c7b", - "x-ms-request-id": "8d702517-533b-4e9f-97ec-5ec2d595bbf7" + "x-ms-client-request-id": "95b48622c1e9b22d41292f69ba93efa9", + "x-ms-request-id": "9a80e779-9cae-47a7-bc7a-cce93fc1d186" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/sqlScripts/SqlScript1382833", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/sqlScripts/SqlScript1382833", "recordId": 0, "state": "Deleting", "created": "0001-01-01T00:00:00", "changed": "0001-01-01T00:00:00", "type": "SqlScript", "name": "SqlScript1382833", - "operationId": "1d09cbb6-da39-47c1-a18f-4ae1b8836e92" + "operationId": "f7a6fed6-beeb-430f-8ebc-4b4ae85f453c" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/1d09cbb6-da39-47c1-a18f-4ae1b8836e92?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/f7a6fed6-beeb-430f-8ebc-4b4ae85f453c?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210125.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "0a94988badbb9d01bfbbb855109d3bcb", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "27bdd0c68398bcecae775ea0a613ae7e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -378,28 +996,59 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 Jan 2021 15:35:31 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/1d09cbb6-da39-47c1-a18f-4ae1b8836e92?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:21:19 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/f7a6fed6-beeb-430f-8ebc-4b4ae85f453c?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "0a94988badbb9d01bfbbb855109d3bcb", - "x-ms-request-id": "a518d93a-bd87-4871-834d-ca1833a44c3b" + "x-ms-client-request-id": "27bdd0c68398bcecae775ea0a613ae7e", + "x-ms-request-id": "a771ff2b-792c-4967-ab0e-081326683eab" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/1d09cbb6-da39-47c1-a18f-4ae1b8836e92?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/f7a6fed6-beeb-430f-8ebc-4b4ae85f453c?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210125.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "6824ca7a42d404ced3de09dd78a93b2a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" ], - "x-ms-client-request-id": "8f3f53acd302fb6412f40bf0a6922933", + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 30 Sep 2021 06:21:21 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/f7a6fed6-beeb-430f-8ebc-4b4ae85f453c?api-version=2020-12-01", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "6824ca7a42d404ced3de09dd78a93b2a", + "x-ms-request-id": "0df42c8b-d65b-4494-b1c1-52d4c4946b70" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/f7a6fed6-beeb-430f-8ebc-4b4ae85f453c?api-version=2020-12-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "e9a2321ac7d50110ba649056bf122f79", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -415,45 +1064,76 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 Jan 2021 15:35:32 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/1d09cbb6-da39-47c1-a18f-4ae1b8836e92?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:21:22 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/f7a6fed6-beeb-430f-8ebc-4b4ae85f453c?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "8f3f53acd302fb6412f40bf0a6922933", - "x-ms-request-id": "aa163c83-1f1a-4368-a87a-39968ec8d154" + "x-ms-client-request-id": "e9a2321ac7d50110ba649056bf122f79", + "x-ms-request-id": "3017e1b8-575a-4944-9016-6db7cd255a1a" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/1d09cbb6-da39-47c1-a18f-4ae1b8836e92?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/f7a6fed6-beeb-430f-8ebc-4b4ae85f453c?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210125.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "ac09ca5ca6f2842802b954ba7a0e4305", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" ], - "x-ms-client-request-id": "b055a44e12385fbf8da23506dff65609", + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 30 Sep 2021 06:21:24 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/f7a6fed6-beeb-430f-8ebc-4b4ae85f453c?api-version=2020-12-01", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "ac09ca5ca6f2842802b954ba7a0e4305", + "x-ms-request-id": "579798d7-d3e4-4821-bba1-22343af7a8ff" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/f7a6fed6-beeb-430f-8ebc-4b4ae85f453c?api-version=2020-12-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "7486333cc470b3a8b923ae6fb17844c1", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Content-Length": "0", - "Date": "Mon, 25 Jan 2021 15:35:33 GMT", + "Date": "Thu, 30 Sep 2021 06:21:25 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "b055a44e12385fbf8da23506dff65609", - "x-ms-request-id": "4e4d99d0-c193-4505-97a2-6afddbf2d612" + "x-ms-client-request-id": "7486333cc470b3a8b923ae6fb17844c1", + "x-ms-request-id": "bd29802c-14b5-4505-b2e7-490b6dcadf39" }, "ResponseBody": [] } ], "Variables": { - "AZURE_SYNAPSE_WORKSPACE_URL": "https://workspacechhamosynapse.dev.azuresynapse.net", + "AZURE_SYNAPSE_WORKSPACE_URL": "https://testsynapseworkspace.dev.azuresynapse.net", "RandomSeed": "1057485537" } } \ No newline at end of file diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/SqlScriptClientLiveTests/TestGetScriptsAsync.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/SqlScriptClientLiveTests/TestGetScriptsAsync.json index dd2ce53109fc..452ee23b3f75 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/SqlScriptClientLiveTests/TestGetScriptsAsync.json +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/SqlScriptClientLiveTests/TestGetScriptsAsync.json @@ -1,18 +1,15 @@ { "Entries": [ { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/sqlScripts/SqlScript2115367?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/sqlScripts/SqlScript2115367?api-version=2020-12-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "299", "Content-Type": "application/json", - "traceparent": "00-70a6170d1e40c145a9581fbce3c6b8a3-e9a6b3f573880f4b-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210125.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "traceparent": "00-fba85518dd460742a0b2f107fb14d913-a20e397c2eee1449-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "9e81b7186934c1c27fd8fddcf8fc3625", "x-ms-return-client-request-id": "true" }, @@ -38,37 +35,34 @@ "Location", "Retry-After" ], - "Content-Length": "452", + "Content-Length": "435", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 Jan 2021 15:35:33 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/60a7ca54-0f31-4bd9-8241-0ce16f3f1a3b?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:21:56 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/0c4fcb3a-a4e5-43cc-a404-2e1755f3c95d?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "9e81b7186934c1c27fd8fddcf8fc3625", - "x-ms-request-id": "c6ea0733-4d6c-426e-b50d-1d233530c580" + "x-ms-request-id": "e500cb97-e53b-494c-a7bc-74d3ae0be474" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/sqlScripts/SqlScript2115367", - "recordId": 1004065, + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/sqlScripts/SqlScript2115367", + "recordId": 2424596, "state": "Creating", - "created": "2021-01-25T15:35:34.7633333Z", - "changed": "2021-01-25T15:35:34.7633333Z", + "created": "2021-09-30T06:21:56.78Z", + "changed": "2021-09-30T06:21:56.78Z", "type": "SqlScript", "name": "SqlScript2115367", - "operationId": "60a7ca54-0f31-4bd9-8241-0ce16f3f1a3b", - "artifactId": "93C254C9-3C19-4177-A465-A55A56F02586" + "operationId": "0c4fcb3a-a4e5-43cc-a404-2e1755f3c95d", + "artifactId": "406D5E1F-CF6A-4ADD-A113-23F229B34D10" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/60a7ca54-0f31-4bd9-8241-0ce16f3f1a3b?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/0c4fcb3a-a4e5-43cc-a404-2e1755f3c95d?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210125.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a7c326310ef95cad0269257f4228563a", "x-ms-return-client-request-id": "true" }, @@ -85,27 +79,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 Jan 2021 15:35:34 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/60a7ca54-0f31-4bd9-8241-0ce16f3f1a3b?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:21:56 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/0c4fcb3a-a4e5-43cc-a404-2e1755f3c95d?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "a7c326310ef95cad0269257f4228563a", - "x-ms-request-id": "0f9ec4b7-2a9c-4923-b7e3-9402dc3d2c49" + "x-ms-request-id": "dbb8d7ff-d55e-4ffa-a630-0208300a1fd2" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/60a7ca54-0f31-4bd9-8241-0ce16f3f1a3b?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/0c4fcb3a-a4e5-43cc-a404-2e1755f3c95d?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210125.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "3406daeef1a7a5152a0a40827129d6a9", "x-ms-return-client-request-id": "true" }, @@ -122,27 +113,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 Jan 2021 15:35:35 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/60a7ca54-0f31-4bd9-8241-0ce16f3f1a3b?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:21:57 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/0c4fcb3a-a4e5-43cc-a404-2e1755f3c95d?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "3406daeef1a7a5152a0a40827129d6a9", - "x-ms-request-id": "95a2dab9-341f-4901-b577-ccb7491c368a" + "x-ms-request-id": "d0e0e307-124f-4fad-878e-706d5d118343" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/60a7ca54-0f31-4bd9-8241-0ce16f3f1a3b?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/0c4fcb3a-a4e5-43cc-a404-2e1755f3c95d?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210125.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d1ab78a28f38022b876d89c04d0d3535", "x-ms-return-client-request-id": "true" }, @@ -159,27 +147,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 Jan 2021 15:35:37 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/60a7ca54-0f31-4bd9-8241-0ce16f3f1a3b?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:21:58 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/0c4fcb3a-a4e5-43cc-a404-2e1755f3c95d?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "d1ab78a28f38022b876d89c04d0d3535", - "x-ms-request-id": "ee35c822-45da-492b-866a-115df950efac" + "x-ms-request-id": "8fed211f-b369-4e33-9895-ab46010ed668" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/60a7ca54-0f31-4bd9-8241-0ce16f3f1a3b?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/0c4fcb3a-a4e5-43cc-a404-2e1755f3c95d?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210125.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "10abbd5b01ce3fdc111d7cefce2bead9", "x-ms-return-client-request-id": "true" }, @@ -196,27 +181,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 Jan 2021 15:35:38 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/60a7ca54-0f31-4bd9-8241-0ce16f3f1a3b?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:21:59 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/0c4fcb3a-a4e5-43cc-a404-2e1755f3c95d?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "10abbd5b01ce3fdc111d7cefce2bead9", - "x-ms-request-id": "62563c2c-7e85-4001-8858-d9781d764949" + "x-ms-request-id": "dbc94bd7-f25f-4d2e-a8e8-db00958f08f1" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/60a7ca54-0f31-4bd9-8241-0ce16f3f1a3b?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/0c4fcb3a-a4e5-43cc-a404-2e1755f3c95d?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210125.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c9dc7b92857c5e01ae04ac3a6855581c", "x-ms-return-client-request-id": "true" }, @@ -233,27 +215,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 Jan 2021 15:35:39 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/60a7ca54-0f31-4bd9-8241-0ce16f3f1a3b?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:22:00 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/0c4fcb3a-a4e5-43cc-a404-2e1755f3c95d?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "c9dc7b92857c5e01ae04ac3a6855581c", - "x-ms-request-id": "dbdfc13a-a268-4b91-8f32-a07c5e626618" + "x-ms-request-id": "86e2d88e-8d21-4aad-9ff1-78055277c37a" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/60a7ca54-0f31-4bd9-8241-0ce16f3f1a3b?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/0c4fcb3a-a4e5-43cc-a404-2e1755f3c95d?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210125.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b3260ad5c67da1da9c6bbf1a123b345b", "x-ms-return-client-request-id": "true" }, @@ -261,24 +240,21 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "575", + "Content-Length": "568", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 Jan 2021 15:35:40 GMT", + "Date": "Thu, 30 Sep 2021 06:22:01 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "b3260ad5c67da1da9c6bbf1a123b345b", - "x-ms-correlation-request-id": "4c47075e-6f57-4239-b8cd-8f10afee1872", - "x-ms-request-id": "00501dde-0bb5-42f1-973e-ffe4d7f9b23f", + "x-ms-correlation-request-id": "43d7fd08-a4ff-4f5c-b9fd-43ff6c7ab619", + "x-ms-request-id": "4162d403-fe9c-4c39-a43f-ea03fd33487d", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/sqlscripts/SqlScript2115367", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/sqlscripts/SqlScript2115367", "name": "SqlScript2115367", "type": "Microsoft.Synapse/workspaces/sqlscripts", "properties": { @@ -290,41 +266,216 @@ } } }, - "etag": "af04004d-0000-0800-0000-600ee54b0000" + "etag": "2e00fa80-0000-0100-0000-615557890000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/sqlScripts?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/sqlScripts?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-d6596a8e7faf9f43901a554f25352f51-19c6b6439dae4e40-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210125.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "traceparent": "00-e1d720960b54f8478d6d2a661ab4b058-a358ae19fda3df4e-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d22db0826b30d6b8bc4c61ca54a1d7bc", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Content-Length": "587", + "Content-Length": "4975", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 Jan 2021 15:35:40 GMT", + "Date": "Thu, 30 Sep 2021 06:22:01 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "d22db0826b30d6b8bc4c61ca54a1d7bc", - "x-ms-request-id": "c4d4a32f-6d94-4d85-9a0b-26c26fbf7c25" + "x-ms-request-id": "5128b06c-70db-403f-8ae5-b8ff392da1ad" }, "ResponseBody": { "value": [ { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/sqlscripts/SqlScript2115367", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/sqlscripts/SQL script 1", + "name": "SQL script 1", + "type": "Microsoft.Synapse/workspaces/sqlscripts", + "etag": "0d0026bd-0000-0100-0000-60015b520000", + "properties": { + "content": { + "query": "SELECT *\nFROM sample\nLIMIT 1", + "metadata": { + "language": "sql" + }, + "currentConnection": { + "poolName": "Built-in", + "databaseName": "master" + } + }, + "type": "SqlQuery" + } + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/sqlscripts/dongwwasql", + "name": "dongwwasql", + "type": "Microsoft.Synapse/workspaces/sqlscripts", + "etag": "0d0069bd-0000-0100-0000-60015b880000", + "properties": { + "content": { + "query": "SELECT *\nFROM sample\nLIMIT 1", + "metadata": { + "language": "sql" + }, + "currentConnection": { + "poolName": "Built-in", + "databaseName": "master" + } + }, + "type": "SqlQuery" + } + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/sqlscripts/dongwwasql2", + "name": "dongwwasql2", + "type": "Microsoft.Synapse/workspaces/sqlscripts", + "etag": "4500e9f8-0000-0100-0000-6125892e0000", + "properties": { + "content": { + "query": "SELECT *\nFROM sample\nLIMIT 2", + "metadata": { + "language": "sql" + }, + "currentConnection": { + "databaseName": "master", + "poolName": "Built-in" + }, + "resultLimit": 5000 + }, + "type": "SqlQuery" + } + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/sqlscripts/dongwwapssql2", + "name": "dongwwapssql2", + "type": "Microsoft.Synapse/workspaces/sqlscripts", + "etag": "46002b27-0000-0100-0000-612590120000", + "properties": { + "content": { + "query": "SELECT *\nFROM sample\nLIMIT 4", + "metadata": { + "language": "sql" + }, + "currentConnection": { + "databaseName": "master", + "poolName": "Built-in" + }, + "resultLimit": 5000 + }, + "type": "SqlQuery" + } + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/sqlscripts/SQL script 2", + "name": "SQL script 2", + "type": "Microsoft.Synapse/workspaces/sqlscripts", + "etag": "04005e14-0000-0100-0000-609a0d960000", + "properties": { + "content": { + "query": "SELECT *\nFROM sample\nLIMIT 2", + "metadata": { + "language": "sql" + }, + "currentConnection": { + "poolName": "dwnewpool1221", + "databaseName": "master" + }, + "resultLimit": -1 + }, + "type": "SqlQuery" + } + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/sqlscripts/dongwwapssql", + "name": "dongwwapssql", + "type": "Microsoft.Synapse/workspaces/sqlscripts", + "etag": "46001e1c-0000-0100-0000-61258ecd0000", + "properties": { + "content": { + "query": "SELECT *\nFROM sample\nLIMIT 4", + "metadata": { + "language": "sql" + }, + "currentConnection": { + "databaseName": "master", + "poolName": "Built-in" + }, + "resultLimit": 5000 + }, + "type": "SqlQuery" + } + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/sqlscripts/dongwwapssql1", + "name": "dongwwapssql1", + "type": "Microsoft.Synapse/workspaces/sqlscripts", + "etag": "4600b124-0000-0100-0000-61258fbb0000", + "properties": { + "content": { + "query": "SELECT *\nFROM sample\nLIMIT 4", + "metadata": { + "language": "sql" + }, + "currentConnection": { + "databaseName": "master", + "poolName": "Built-in" + }, + "resultLimit": 5000 + }, + "type": "SqlQuery" + } + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/sqlscripts/dongwwapssql4", + "name": "dongwwapssql4", + "type": "Microsoft.Synapse/workspaces/sqlscripts", + "etag": "4600d54e-0000-0100-0000-612595740000", + "properties": { + "content": { + "query": "SELECT *\nFROM sample\nLIMIT 4", + "metadata": { + "language": "sql" + }, + "currentConnection": { + "databaseName": "master", + "poolName": "Built-in" + }, + "resultLimit": 5000 + }, + "type": "SqlQuery" + } + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/sqlscripts/dongwwapssql5", + "name": "dongwwapssql5", + "type": "Microsoft.Synapse/workspaces/sqlscripts", + "etag": "46004557-0000-0100-0000-6125963e0000", + "properties": { + "content": { + "query": "SELECT *\nFROM sample\nLIMIT 4", + "metadata": { + "language": "sql" + }, + "currentConnection": { + "databaseName": "master", + "poolName": "Built-in" + }, + "resultLimit": 5000 + }, + "type": "SqlQuery" + } + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/sqlscripts/SqlScript2115367", "name": "SqlScript2115367", "type": "Microsoft.Synapse/workspaces/sqlscripts", - "etag": "af04004d-0000-0800-0000-600ee54b0000", + "etag": "2e00fa80-0000-0100-0000-615557890000", "properties": { "content": { "query": "SELECT NULL LIMIT 0;", @@ -339,16 +490,13 @@ } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/sqlScripts/SqlScript2115367?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/sqlScripts/SQL%20script%201?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-7b55d6b5e92773499dfc5107b65e95db-13c47c1640225f40-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210125.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "traceparent": "00-3202ca5cfcfb674fb33eb7d35768e46a-0f357a3760250049-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c31960c53605cc5ba03b2c10c5e64c73", "x-ms-return-client-request-id": "true" }, @@ -356,24 +504,460 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "575", + "Content-Length": "472", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 Jan 2021 15:35:40 GMT", + "Date": "Thu, 30 Sep 2021 06:22:01 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "c31960c53605cc5ba03b2c10c5e64c73", - "x-ms-correlation-request-id": "ee0ae873-02f4-4a64-a16e-25b35be9a6d5", - "x-ms-request-id": "be47164c-611a-4795-b605-6684e9b0c049", + "x-ms-correlation-request-id": "eeba2bd0-f68b-4453-82f1-d73d95e8740e", + "x-ms-request-id": "1933d50f-4ae7-4c0a-89f9-0145aed83893", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/sqlscripts/SqlScript2115367", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/sqlscripts/SQL script 1", + "name": "SQL script 1", + "type": "Microsoft.Synapse/workspaces/sqlscripts", + "properties": { + "content": { + "query": "SELECT *\nFROM sample\nLIMIT 1", + "metadata": { + "language": "sql" + }, + "currentConnection": { + "poolName": "Built-in", + "databaseName": "master" + } + }, + "type": "SqlQuery" + }, + "etag": "0d0026bd-0000-0100-0000-60015b520000" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/sqlScripts/dongwwasql?api-version=2020-12-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-6c00f46da8f2fd49b034a5efa4d4cf5e-785ca9f537809745-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "b8b851d0862769ec5150f73164104dfa", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "468", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 30 Sep 2021 06:22:02 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-ms-client-request-id": "b8b851d0862769ec5150f73164104dfa", + "x-ms-correlation-request-id": "f47434f8-3d7f-4959-b9cf-d4ce08f696b9", + "x-ms-request-id": "d4a1ce75-c86f-4224-8e11-ebcf3f96d810", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/sqlscripts/dongwwasql", + "name": "dongwwasql", + "type": "Microsoft.Synapse/workspaces/sqlscripts", + "properties": { + "content": { + "query": "SELECT *\nFROM sample\nLIMIT 1", + "metadata": { + "language": "sql" + }, + "currentConnection": { + "poolName": "Built-in", + "databaseName": "master" + } + }, + "type": "SqlQuery" + }, + "etag": "0d0069bd-0000-0100-0000-60015b880000" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/sqlScripts/dongwwasql2?api-version=2020-12-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-f16f2df28ccd9649a59a2cb359992877-744026b2eeade34c-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "b254039470214b56546031f53fa810d5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "489", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 30 Sep 2021 06:22:02 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-ms-client-request-id": "b254039470214b56546031f53fa810d5", + "x-ms-correlation-request-id": "afe248b5-8e6a-48ab-9ee9-cd208aedd662", + "x-ms-request-id": "95bff97f-45ac-4e0b-90ef-98edb9fe989c", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/sqlscripts/dongwwasql2", + "name": "dongwwasql2", + "type": "Microsoft.Synapse/workspaces/sqlscripts", + "properties": { + "content": { + "query": "SELECT *\nFROM sample\nLIMIT 2", + "metadata": { + "language": "sql" + }, + "currentConnection": { + "databaseName": "master", + "poolName": "Built-in" + }, + "resultLimit": 5000 + }, + "type": "SqlQuery" + }, + "etag": "4500e9f8-0000-0100-0000-6125892e0000" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/sqlScripts/dongwwapssql2?api-version=2020-12-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-f7bc4c6170b5e6498c25e57294908b8e-a7a1bca147b94240-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "03faee001fe93f9473b071b43f2a6790", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "493", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 30 Sep 2021 06:22:02 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-ms-client-request-id": "03faee001fe93f9473b071b43f2a6790", + "x-ms-correlation-request-id": "a335ad5a-d5d3-453f-bcc7-7895bffce412", + "x-ms-request-id": "c55adee9-24fb-4008-a0b3-1790fa8947e1", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/sqlscripts/dongwwapssql2", + "name": "dongwwapssql2", + "type": "Microsoft.Synapse/workspaces/sqlscripts", + "properties": { + "content": { + "query": "SELECT *\nFROM sample\nLIMIT 4", + "metadata": { + "language": "sql" + }, + "currentConnection": { + "databaseName": "master", + "poolName": "Built-in" + }, + "resultLimit": 5000 + }, + "type": "SqlQuery" + }, + "etag": "46002b27-0000-0100-0000-612590120000" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/sqlScripts/SQL%20script%202?api-version=2020-12-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-94aac9428ccb894caf521255cd095098-e5b9280f12ac8d4c-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "c27c32ed9a915f51fa6c63c754f62aa9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "494", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 30 Sep 2021 06:22:02 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-ms-client-request-id": "c27c32ed9a915f51fa6c63c754f62aa9", + "x-ms-correlation-request-id": "49a7e799-5b00-470e-9134-372fa55abd0e", + "x-ms-request-id": "069fbc4a-221e-4468-9787-3b635983ff6b", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/sqlscripts/SQL script 2", + "name": "SQL script 2", + "type": "Microsoft.Synapse/workspaces/sqlscripts", + "properties": { + "content": { + "query": "SELECT *\nFROM sample\nLIMIT 2", + "metadata": { + "language": "sql" + }, + "currentConnection": { + "poolName": "dwnewpool1221", + "databaseName": "master" + }, + "resultLimit": -1 + }, + "type": "SqlQuery" + }, + "etag": "04005e14-0000-0100-0000-609a0d960000" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/sqlScripts/dongwwapssql?api-version=2020-12-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-eb20a5a7ac4eca45be2e90933f25b40d-69b86320e374e94a-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "7631213f491675116e153e71fea10c2a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "491", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 30 Sep 2021 06:22:02 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-ms-client-request-id": "7631213f491675116e153e71fea10c2a", + "x-ms-correlation-request-id": "85af1a9b-4d94-4aca-a5c8-0ab9c4c90b2c", + "x-ms-request-id": "091a9086-809b-4b96-a149-9517b32d4787", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/sqlscripts/dongwwapssql", + "name": "dongwwapssql", + "type": "Microsoft.Synapse/workspaces/sqlscripts", + "properties": { + "content": { + "query": "SELECT *\nFROM sample\nLIMIT 4", + "metadata": { + "language": "sql" + }, + "currentConnection": { + "databaseName": "master", + "poolName": "Built-in" + }, + "resultLimit": 5000 + }, + "type": "SqlQuery" + }, + "etag": "46001e1c-0000-0100-0000-61258ecd0000" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/sqlScripts/dongwwapssql1?api-version=2020-12-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-5712d9e1a03536419d81ca7d765d14f7-ebe44299ac94964a-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "0c07a1f94d2c66439d9a087dbbcdea7c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "493", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 30 Sep 2021 06:22:02 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-ms-client-request-id": "0c07a1f94d2c66439d9a087dbbcdea7c", + "x-ms-correlation-request-id": "a9938906-48d0-4c98-b9e1-7ff70c5f024d", + "x-ms-request-id": "26e8b09e-f47f-44cf-a79c-28652b032edc", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/sqlscripts/dongwwapssql1", + "name": "dongwwapssql1", + "type": "Microsoft.Synapse/workspaces/sqlscripts", + "properties": { + "content": { + "query": "SELECT *\nFROM sample\nLIMIT 4", + "metadata": { + "language": "sql" + }, + "currentConnection": { + "databaseName": "master", + "poolName": "Built-in" + }, + "resultLimit": 5000 + }, + "type": "SqlQuery" + }, + "etag": "4600b124-0000-0100-0000-61258fbb0000" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/sqlScripts/dongwwapssql4?api-version=2020-12-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-7861cfc21c727743a9ed881759df4cb5-5b70da76ee816845-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "1d75c785f1f8a3792006537c5bdf6058", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "493", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 30 Sep 2021 06:22:02 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-ms-client-request-id": "1d75c785f1f8a3792006537c5bdf6058", + "x-ms-correlation-request-id": "cf5a7ffb-4f85-44a5-9db1-584be8bb9f22", + "x-ms-request-id": "56f8fe4b-942c-44d2-99c8-6a78c9df3481", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/sqlscripts/dongwwapssql4", + "name": "dongwwapssql4", + "type": "Microsoft.Synapse/workspaces/sqlscripts", + "properties": { + "content": { + "query": "SELECT *\nFROM sample\nLIMIT 4", + "metadata": { + "language": "sql" + }, + "currentConnection": { + "databaseName": "master", + "poolName": "Built-in" + }, + "resultLimit": 5000 + }, + "type": "SqlQuery" + }, + "etag": "4600d54e-0000-0100-0000-612595740000" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/sqlScripts/dongwwapssql5?api-version=2020-12-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-5d016f323ee150419cf9ce82276184a4-ac392bf1818fb848-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "b3cd385f1deff17dddcbd97c4194b9a1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "493", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 30 Sep 2021 06:22:03 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-ms-client-request-id": "b3cd385f1deff17dddcbd97c4194b9a1", + "x-ms-correlation-request-id": "e9cd4a3f-342d-465c-a095-f9a367b709f2", + "x-ms-request-id": "9b8348b9-7765-469d-846a-7a0554e7872c", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/sqlscripts/dongwwapssql5", + "name": "dongwwapssql5", + "type": "Microsoft.Synapse/workspaces/sqlscripts", + "properties": { + "content": { + "query": "SELECT *\nFROM sample\nLIMIT 4", + "metadata": { + "language": "sql" + }, + "currentConnection": { + "databaseName": "master", + "poolName": "Built-in" + }, + "resultLimit": 5000 + }, + "type": "SqlQuery" + }, + "etag": "46004557-0000-0100-0000-6125963e0000" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/sqlScripts/SqlScript2115367?api-version=2020-12-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-514b2ac84401154e823dd1a69e610128-20cf907f90d3ef4d-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "37ebc12aee2c07312763ec25f9c70abd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "568", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 30 Sep 2021 06:22:03 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-ms-client-request-id": "37ebc12aee2c07312763ec25f9c70abd", + "x-ms-correlation-request-id": "0fafa397-7c14-44f8-a2c9-6d8d315861f9", + "x-ms-request-id": "ceb2c93a-f829-4a2a-9dfa-0a3a7510528e", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/sqlscripts/SqlScript2115367", "name": "SqlScript2115367", "type": "Microsoft.Synapse/workspaces/sqlscripts", "properties": { @@ -385,21 +969,18 @@ } } }, - "etag": "af04004d-0000-0800-0000-600ee54b0000" + "etag": "2e00fa80-0000-0100-0000-615557890000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/sqlScripts/SqlScript2115367?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/sqlScripts/SqlScript2115367?api-version=2020-12-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-3a642fd3532f6c4ea69cf37b3480b2d6-17d16445e7f9d745-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210125.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "b8b851d0862769ec5150f73164104dfa", + "traceparent": "00-5abcfabad04d3040ae02a78cc28408eb-15b0865e6eb98d49-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "821db03937ff688d4a833f2d18fd628c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -407,36 +988,33 @@ "ResponseHeaders": { "Access-Control-Allow-Headers": "Location", "Access-Control-Expose-Headers": "Location", - "Content-Length": "376", + "Content-Length": "369", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 Jan 2021 15:35:40 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/09d8ad20-9818-4f25-941b-2c8fcd934faa?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:22:03 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9e04022a-fae9-42de-94bf-596a91e283b1?api-version=2020-12-01", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "b8b851d0862769ec5150f73164104dfa", - "x-ms-request-id": "b0eb7b4f-d334-4e93-909e-7593cd12eb55" + "x-ms-client-request-id": "821db03937ff688d4a833f2d18fd628c", + "x-ms-request-id": "1ce07b7f-297d-4a8e-9fdd-061a1cf37b58" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/sqlScripts/SqlScript2115367", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/sqlScripts/SqlScript2115367", "recordId": 0, "state": "Deleting", "created": "0001-01-01T00:00:00", "changed": "0001-01-01T00:00:00", "type": "SqlScript", "name": "SqlScript2115367", - "operationId": "09d8ad20-9818-4f25-941b-2c8fcd934faa" + "operationId": "9e04022a-fae9-42de-94bf-596a91e283b1" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/09d8ad20-9818-4f25-941b-2c8fcd934faa?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9e04022a-fae9-42de-94bf-596a91e283b1?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210125.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "03faee001fe93f9473b071b43f2a6790", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "90421bc03676f3a13383eca9af04ef2a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -452,28 +1030,25 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 Jan 2021 15:35:40 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/09d8ad20-9818-4f25-941b-2c8fcd934faa?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:22:03 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9e04022a-fae9-42de-94bf-596a91e283b1?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "03faee001fe93f9473b071b43f2a6790", - "x-ms-request-id": "0a49f0bf-4b08-4647-abaa-dd368162b2c8" + "x-ms-client-request-id": "90421bc03676f3a13383eca9af04ef2a", + "x-ms-request-id": "aeb757ca-eeea-45be-8682-2a1a718437bc" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/09d8ad20-9818-4f25-941b-2c8fcd934faa?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9e04022a-fae9-42de-94bf-596a91e283b1?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210125.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "c27c32ed9a915f51fa6c63c754f62aa9", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "47d85f01707410c983ac7b39ab0236f1", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -489,28 +1064,25 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 Jan 2021 15:35:41 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/09d8ad20-9818-4f25-941b-2c8fcd934faa?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:22:05 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9e04022a-fae9-42de-94bf-596a91e283b1?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "c27c32ed9a915f51fa6c63c754f62aa9", - "x-ms-request-id": "f2595aff-6e75-4cbe-ac87-3d9544ba894f" + "x-ms-client-request-id": "47d85f01707410c983ac7b39ab0236f1", + "x-ms-request-id": "1f24f08e-3524-49d3-a73e-e8c771519089" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/09d8ad20-9818-4f25-941b-2c8fcd934faa?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9e04022a-fae9-42de-94bf-596a91e283b1?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210125.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "7631213f491675116e153e71fea10c2a", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "fc6d288bd1bb1615115f66703c82c102", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -526,28 +1098,25 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 Jan 2021 15:35:42 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/09d8ad20-9818-4f25-941b-2c8fcd934faa?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:22:06 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9e04022a-fae9-42de-94bf-596a91e283b1?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "7631213f491675116e153e71fea10c2a", - "x-ms-request-id": "7239d979-94c7-4b44-93d5-eea8432673ee" + "x-ms-client-request-id": "fc6d288bd1bb1615115f66703c82c102", + "x-ms-request-id": "1c56c5eb-0859-4216-8af4-1c9b3c534ec1" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/09d8ad20-9818-4f25-941b-2c8fcd934faa?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9e04022a-fae9-42de-94bf-596a91e283b1?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210125.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "0c07a1f94d2c66439d9a087dbbcdea7c", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "d18961d6b0804fa251320ccaba674730", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -563,45 +1132,42 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 Jan 2021 15:35:44 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/09d8ad20-9818-4f25-941b-2c8fcd934faa?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:22:07 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9e04022a-fae9-42de-94bf-596a91e283b1?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "0c07a1f94d2c66439d9a087dbbcdea7c", - "x-ms-request-id": "3a1ba0b5-a81b-4a8a-a1f9-c86a5bdacfce" + "x-ms-client-request-id": "d18961d6b0804fa251320ccaba674730", + "x-ms-request-id": "95054f71-840b-4392-a4e0-9bacc0364925" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/09d8ad20-9818-4f25-941b-2c8fcd934faa?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/9e04022a-fae9-42de-94bf-596a91e283b1?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210125.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "1d75c785f1f8a3792006537c5bdf6058", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "861dfa4cf2962f6f49c235150a59d301", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Content-Length": "0", - "Date": "Mon, 25 Jan 2021 15:35:45 GMT", + "Date": "Thu, 30 Sep 2021 06:22:08 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "1d75c785f1f8a3792006537c5bdf6058", - "x-ms-request-id": "8b67eaf1-6ed8-4cfa-b4b6-83be2e3ef2c3" + "x-ms-client-request-id": "861dfa4cf2962f6f49c235150a59d301", + "x-ms-request-id": "736def41-9794-41c5-becb-1982630d4ddb" }, "ResponseBody": [] } ], "Variables": { - "AZURE_SYNAPSE_WORKSPACE_URL": "https://workspacechhamosynapse.dev.azuresynapse.net", + "AZURE_SYNAPSE_WORKSPACE_URL": "https://testsynapseworkspace.dev.azuresynapse.net", "RandomSeed": "1605355607" } } \ No newline at end of file diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/SqlScriptClientLiveTests/TestRenameSparkJob.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/SqlScriptClientLiveTests/TestRenameSparkJob.json index db352e780292..7d877ded7734 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/SqlScriptClientLiveTests/TestRenameSparkJob.json +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/SqlScriptClientLiveTests/TestRenameSparkJob.json @@ -1,18 +1,15 @@ { "Entries": [ { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/sqlScripts/SqlScript4608759?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/sqlScripts/SqlScript4608759?api-version=2020-12-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "299", "Content-Type": "application/json", - "traceparent": "00-704c77898a6e06458909160f1798c22b-ce658862a0dcf746-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210125.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "traceparent": "00-66c3bf4705f60747905fa7dbeb1b60a1-549bf912fb07d94f-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "66bc25bb5e3354dbd9208c97e06c0d41", "x-ms-return-client-request-id": "true" }, @@ -38,37 +35,34 @@ "Location", "Retry-After" ], - "Content-Length": "452", + "Content-Length": "445", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 Jan 2021 15:33:24 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/01cceece-8e60-45bf-8d26-c4abb86fcb37?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:21:25 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/829b2cfb-6d10-44ef-a68b-7e8b24229df2?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "66bc25bb5e3354dbd9208c97e06c0d41", - "x-ms-request-id": "eed91529-efab-4494-814b-4904439d6970" + "x-ms-request-id": "83d0faab-9abb-4883-b063-6153ba9f8d81" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/sqlScripts/SqlScript4608759", - "recordId": 1004052, + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/sqlScripts/SqlScript4608759", + "recordId": 2424568, "state": "Creating", - "created": "2021-01-25T15:33:24.6933333Z", - "changed": "2021-01-25T15:33:24.6933333Z", + "created": "2021-09-30T06:21:25.4433333Z", + "changed": "2021-09-30T06:21:25.4433333Z", "type": "SqlScript", "name": "SqlScript4608759", - "operationId": "01cceece-8e60-45bf-8d26-c4abb86fcb37", - "artifactId": "1456D763-C935-42A6-9C95-39E6842CD356" + "operationId": "829b2cfb-6d10-44ef-a68b-7e8b24229df2", + "artifactId": "DE9BE116-547C-4C86-A789-5628A9286963" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/01cceece-8e60-45bf-8d26-c4abb86fcb37?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/829b2cfb-6d10-44ef-a68b-7e8b24229df2?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210125.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "77a149e3a40148a04bfea8d89e3fa5cb", "x-ms-return-client-request-id": "true" }, @@ -85,52 +79,80 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 Jan 2021 15:33:24 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/01cceece-8e60-45bf-8d26-c4abb86fcb37?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:21:25 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/829b2cfb-6d10-44ef-a68b-7e8b24229df2?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "77a149e3a40148a04bfea8d89e3fa5cb", - "x-ms-request-id": "a5306221-b178-49c8-945f-6a3f7cf6d617" + "x-ms-request-id": "0fe1dc8a-5b21-4ca3-b58f-fb29360bfba0" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/01cceece-8e60-45bf-8d26-c4abb86fcb37?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/829b2cfb-6d10-44ef-a68b-7e8b24229df2?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210125.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "7db00770188792e1e7bfb85c5288c737", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 30 Sep 2021 06:21:26 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/829b2cfb-6d10-44ef-a68b-7e8b24229df2?api-version=2020-12-01", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "7db00770188792e1e7bfb85c5288c737", + "x-ms-request-id": "e6418a7d-cb04-48b1-a270-d76ebca63d01" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/829b2cfb-6d10-44ef-a68b-7e8b24229df2?api-version=2020-12-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "96b47dd996cb4440f8c3f7bf80655e6e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "575", + "Content-Length": "568", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 Jan 2021 15:33:25 GMT", + "Date": "Thu, 30 Sep 2021 06:21:27 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "7db00770188792e1e7bfb85c5288c737", - "x-ms-correlation-request-id": "6cf1d605-3d77-483e-ad8a-9022767c2764", - "x-ms-request-id": "f8196cfe-7ab8-4e2e-a981-78a4654bafd1", + "x-ms-client-request-id": "96b47dd996cb4440f8c3f7bf80655e6e", + "x-ms-correlation-request-id": "f8eeea8c-4db2-4e2c-b62d-2b3aaa283c79", + "x-ms-request-id": "2c1cdd1b-3535-4174-a773-2eddb5a1859c", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/sqlscripts/SqlScript4608759", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/sqlscripts/SqlScript4608759", "name": "SqlScript4608759", "type": "Microsoft.Synapse/workspaces/sqlscripts", "properties": { @@ -142,27 +164,24 @@ } } }, - "etag": "ae0458e8-0000-0800-0000-600ee4c50000" + "etag": "2e00c380-0000-0100-0000-615557670000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/sqlScripts/SqlScript4608759/rename?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/sqlScripts/SqlScript4608759/rename?api-version=2020-12-01", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "30", "Content-Type": "application/json", - "traceparent": "00-f5737cbe4359064792dceba840d2a05d-4a432e4ee17cd640-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210125.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "cb96b47d4096f844c3f7bf80655e6e30", + "traceparent": "00-47efec44d739e44ba7254f81f39ec9f3-9392183589cba147-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "f185e24088c967ca0e8f41eb43f5c237", "x-ms-return-client-request-id": "true" }, "RequestBody": { - "newName": "SqlScript1650263" + "newName": "SqlScript1121829" }, "StatusCode": 202, "ResponseHeaders": { @@ -174,74 +193,34 @@ "Location", "Retry-After" ], - "Content-Length": "447", + "Content-Length": "445", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 Jan 2021 15:33:25 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/d595e4f1-72c9-4b20-b648-b8729bff26a2?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:21:27 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/65b16bc8-ccd1-4647-a2d3-2568693c73c4?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "cb96b47d4096f844c3f7bf80655e6e30", - "x-ms-request-id": "30a9c88a-387f-4058-a9f3-973f6a91978c" + "x-ms-client-request-id": "f185e24088c967ca0e8f41eb43f5c237", + "x-ms-request-id": "b373e892-ee89-4f8f-af86-3003a89a68bd" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/sqlScripts/SqlScript4608759", - "recordId": 1004052, + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/sqlScripts/SqlScript4608759", + "recordId": 2424568, "state": "Renaming", - "created": "2021-01-25T15:33:24.6933333Z", - "changed": "2021-01-25T15:33:25.53Z", + "created": "2021-09-30T06:21:25.4433333Z", + "changed": "2021-09-30T06:21:27.1866667Z", "type": "SqlScript", "name": "SqlScript4608759", - "operationId": "d595e4f1-72c9-4b20-b648-b8729bff26a2", - "artifactId": "1456D763-C935-42A6-9C95-39E6842CD356" + "operationId": "65b16bc8-ccd1-4647-a2d3-2568693c73c4", + "artifactId": "DE9BE116-547C-4C86-A789-5628A9286963" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/d595e4f1-72c9-4b20-b648-b8729bff26a2?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/65b16bc8-ccd1-4647-a2d3-2568693c73c4?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210125.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "8b21fe70000fc7d96c84c32122118261", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 Jan 2021 15:33:25 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/d595e4f1-72c9-4b20-b648-b8729bff26a2?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "8b21fe70000fc7d96c84c32122118261", - "x-ms-request-id": "db08a750-e234-4a80-b222-5055ebcda2a2" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/d595e4f1-72c9-4b20-b648-b8729bff26a2?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210125.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a5122c494541f410e92fbc06fe58b4cd", "x-ms-return-client-request-id": "true" }, @@ -258,27 +237,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 Jan 2021 15:33:27 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/d595e4f1-72c9-4b20-b648-b8729bff26a2?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:21:27 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/65b16bc8-ccd1-4647-a2d3-2568693c73c4?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "a5122c494541f410e92fbc06fe58b4cd", - "x-ms-request-id": "0af3a6b4-8e00-43fc-a9d8-e406b69b881c" + "x-ms-request-id": "270ed2ac-85c0-420a-a0d8-a5c721a41541" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/d595e4f1-72c9-4b20-b648-b8729bff26a2?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/65b16bc8-ccd1-4647-a2d3-2568693c73c4?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210125.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "660f8735e33c3f2108be8444c4a944fc", "x-ms-return-client-request-id": "true" }, @@ -295,27 +271,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 Jan 2021 15:33:28 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/d595e4f1-72c9-4b20-b648-b8729bff26a2?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:21:29 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/65b16bc8-ccd1-4647-a2d3-2568693c73c4?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "660f8735e33c3f2108be8444c4a944fc", - "x-ms-request-id": "41fb0c62-075a-4926-a141-d402963022fa" + "x-ms-request-id": "c338bb5c-0a90-4fa4-b36c-2d93d004634e" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/d595e4f1-72c9-4b20-b648-b8729bff26a2?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/65b16bc8-ccd1-4647-a2d3-2568693c73c4?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210125.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "17a2e00d1ce22af5ee2ca1df43d3c814", "x-ms-return-client-request-id": "true" }, @@ -332,27 +305,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 Jan 2021 15:33:29 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/d595e4f1-72c9-4b20-b648-b8729bff26a2?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:21:30 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/65b16bc8-ccd1-4647-a2d3-2568693c73c4?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "17a2e00d1ce22af5ee2ca1df43d3c814", - "x-ms-request-id": "d8336bae-907e-4f49-b498-797a3bf23a0f" + "x-ms-request-id": "c14ca92a-0207-4021-841c-97092c212e8d" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/d595e4f1-72c9-4b20-b648-b8729bff26a2?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/65b16bc8-ccd1-4647-a2d3-2568693c73c4?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210125.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "9aebf5d01b0265240ad39d83c1cb2f40", "x-ms-return-client-request-id": "true" }, @@ -369,27 +339,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 Jan 2021 15:33:30 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/d595e4f1-72c9-4b20-b648-b8729bff26a2?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:21:31 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/65b16bc8-ccd1-4647-a2d3-2568693c73c4?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "9aebf5d01b0265240ad39d83c1cb2f40", - "x-ms-request-id": "c37c3102-44b2-4925-8af6-49ec8d79c9e3" + "x-ms-request-id": "b6e71ca0-e10e-4cf3-8edb-5c76ad0b2063" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/d595e4f1-72c9-4b20-b648-b8729bff26a2?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/65b16bc8-ccd1-4647-a2d3-2568693c73c4?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210125.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "1df8bfea9db518ea91e4780f4242fb35", "x-ms-return-client-request-id": "true" }, @@ -406,27 +373,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 Jan 2021 15:33:31 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/d595e4f1-72c9-4b20-b648-b8729bff26a2?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:21:32 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/65b16bc8-ccd1-4647-a2d3-2568693c73c4?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "1df8bfea9db518ea91e4780f4242fb35", - "x-ms-request-id": "6a36f035-45e7-4e09-9d6c-49f1143e360a" + "x-ms-request-id": "a6143cb2-fbc2-4ca0-b786-e67f80a0e539" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/d595e4f1-72c9-4b20-b648-b8729bff26a2?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/65b16bc8-ccd1-4647-a2d3-2568693c73c4?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210125.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ce7470f5aabdf2fabc3c0c0f7f726922", "x-ms-return-client-request-id": "true" }, @@ -443,27 +407,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 Jan 2021 15:33:32 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/d595e4f1-72c9-4b20-b648-b8729bff26a2?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:21:33 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/65b16bc8-ccd1-4647-a2d3-2568693c73c4?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "ce7470f5aabdf2fabc3c0c0f7f726922", - "x-ms-request-id": "1f45997b-35f7-4f71-aa3c-d31e15a381e6" + "x-ms-request-id": "bd38d077-e11f-47f7-a1ae-f949f44fca65" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/d595e4f1-72c9-4b20-b648-b8729bff26a2?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/65b16bc8-ccd1-4647-a2d3-2568693c73c4?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210125.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "84f460fcabdb325e0bd3091da31423c8", "x-ms-return-client-request-id": "true" }, @@ -480,27 +441,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 Jan 2021 15:33:33 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/d595e4f1-72c9-4b20-b648-b8729bff26a2?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:21:34 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/65b16bc8-ccd1-4647-a2d3-2568693c73c4?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "84f460fcabdb325e0bd3091da31423c8", - "x-ms-request-id": "2e6b5a5d-08b2-46e9-ad0a-acd2e682f617" + "x-ms-request-id": "1d7b7fee-36f0-4db0-ba14-3ca017207dc5" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/d595e4f1-72c9-4b20-b648-b8729bff26a2?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/65b16bc8-ccd1-4647-a2d3-2568693c73c4?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210125.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "508e67d760574082c406617990da991f", "x-ms-return-client-request-id": "true" }, @@ -517,27 +475,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 Jan 2021 15:33:34 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/d595e4f1-72c9-4b20-b648-b8729bff26a2?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:21:35 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/65b16bc8-ccd1-4647-a2d3-2568693c73c4?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "508e67d760574082c406617990da991f", - "x-ms-request-id": "962d5f97-af1a-4acd-8dad-e227adba4e8f" + "x-ms-request-id": "291554f4-fda6-4622-9302-351c8515dc68" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/d595e4f1-72c9-4b20-b648-b8729bff26a2?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/65b16bc8-ccd1-4647-a2d3-2568693c73c4?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210125.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e113557a774d495a1241c3eaa0dd4ea7", "x-ms-return-client-request-id": "true" }, @@ -554,27 +509,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 Jan 2021 15:33:35 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/d595e4f1-72c9-4b20-b648-b8729bff26a2?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:21:36 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/65b16bc8-ccd1-4647-a2d3-2568693c73c4?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "e113557a774d495a1241c3eaa0dd4ea7", - "x-ms-request-id": "fdba56a8-0697-4516-8d45-9c2ed8b6600d" + "x-ms-request-id": "826c4716-c956-4bb2-897b-3e6d6556ee8a" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/d595e4f1-72c9-4b20-b648-b8729bff26a2?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/65b16bc8-ccd1-4647-a2d3-2568693c73c4?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210125.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "1738441919e49bcbddb3bfd44ae4a230", "x-ms-return-client-request-id": "true" }, @@ -591,27 +543,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 Jan 2021 15:33:37 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/d595e4f1-72c9-4b20-b648-b8729bff26a2?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:21:37 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/65b16bc8-ccd1-4647-a2d3-2568693c73c4?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "1738441919e49bcbddb3bfd44ae4a230", - "x-ms-request-id": "06d87dd5-d267-4aea-bdb6-a02ffccb53e5" + "x-ms-request-id": "958b0c9d-59ad-4dd7-bd0a-bf5a6c11e9a7" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/d595e4f1-72c9-4b20-b648-b8729bff26a2?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/65b16bc8-ccd1-4647-a2d3-2568693c73c4?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210125.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "4da2e93a4201607a0d443e159d989fe7", "x-ms-return-client-request-id": "true" }, @@ -628,27 +577,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 Jan 2021 15:33:38 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/d595e4f1-72c9-4b20-b648-b8729bff26a2?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:21:38 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/65b16bc8-ccd1-4647-a2d3-2568693c73c4?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "4da2e93a4201607a0d443e159d989fe7", - "x-ms-request-id": "783865fc-5c2c-4fbf-a861-d9c62a42da05" + "x-ms-request-id": "b561b495-77e0-45c2-af87-72c37e3531dc" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/d595e4f1-72c9-4b20-b648-b8729bff26a2?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/65b16bc8-ccd1-4647-a2d3-2568693c73c4?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210125.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "4c60b9b781a2613a8a77039ab785ff2d", "x-ms-return-client-request-id": "true" }, @@ -665,27 +611,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 Jan 2021 15:33:39 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/d595e4f1-72c9-4b20-b648-b8729bff26a2?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:21:40 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/65b16bc8-ccd1-4647-a2d3-2568693c73c4?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "4c60b9b781a2613a8a77039ab785ff2d", - "x-ms-request-id": "6954c46e-d778-477c-b239-48de71f1d301" + "x-ms-request-id": "5f68077b-8d32-4c72-a0fe-a7ed74ef5fd7" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/d595e4f1-72c9-4b20-b648-b8729bff26a2?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/65b16bc8-ccd1-4647-a2d3-2568693c73c4?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210125.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b7af939f013ad7a5c9d709a0dab5fe45", "x-ms-return-client-request-id": "true" }, @@ -702,27 +645,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 Jan 2021 15:33:40 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/d595e4f1-72c9-4b20-b648-b8729bff26a2?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:21:41 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/65b16bc8-ccd1-4647-a2d3-2568693c73c4?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "b7af939f013ad7a5c9d709a0dab5fe45", - "x-ms-request-id": "d0d3c55a-d95b-40cf-957f-3324c0a208f1" + "x-ms-request-id": "6da26a33-0ce5-4d58-b649-bac1be962b19" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/d595e4f1-72c9-4b20-b648-b8729bff26a2?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/65b16bc8-ccd1-4647-a2d3-2568693c73c4?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210125.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "901dd8135684b88daf40c38a3ee0a988", "x-ms-return-client-request-id": "true" }, @@ -739,79 +679,172 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 Jan 2021 15:33:41 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/d595e4f1-72c9-4b20-b648-b8729bff26a2?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:21:42 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/65b16bc8-ccd1-4647-a2d3-2568693c73c4?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "901dd8135684b88daf40c38a3ee0a988", - "x-ms-request-id": "4b55f5c4-eaff-4c9b-9050-d47a79abbdff" + "x-ms-request-id": "29b637af-bebe-4937-8c0a-11847faef54f" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/d595e4f1-72c9-4b20-b648-b8729bff26a2?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/65b16bc8-ccd1-4647-a2d3-2568693c73c4?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210125.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "09761144e8e9b6ad148982cb779a87d5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 30 Sep 2021 06:21:43 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/65b16bc8-ccd1-4647-a2d3-2568693c73c4?api-version=2020-12-01", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "09761144e8e9b6ad148982cb779a87d5", + "x-ms-request-id": "7686250a-343a-4037-a749-453750584260" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/65b16bc8-ccd1-4647-a2d3-2568693c73c4?api-version=2020-12-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "df86be786f6749a806f608f93e1b98e9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 30 Sep 2021 06:21:44 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/65b16bc8-ccd1-4647-a2d3-2568693c73c4?api-version=2020-12-01", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "df86be786f6749a806f608f93e1b98e9", + "x-ms-request-id": "182dd38c-0e86-4824-ad39-81d10664030c" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/65b16bc8-ccd1-4647-a2d3-2568693c73c4?api-version=2020-12-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "c85c812ef43e2a5b2a677cfbd3c24114", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 30 Sep 2021 06:21:45 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/65b16bc8-ccd1-4647-a2d3-2568693c73c4?api-version=2020-12-01", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "c85c812ef43e2a5b2a677cfbd3c24114", + "x-ms-request-id": "91dbe470-cbe2-430b-9467-0f40655a0fd7" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/65b16bc8-ccd1-4647-a2d3-2568693c73c4?api-version=2020-12-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "7f11edb9c959d420692d03f2e0b378f8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Content-Length": "0", - "Date": "Mon, 25 Jan 2021 15:33:42 GMT", + "Date": "Thu, 30 Sep 2021 06:21:46 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "09761144e8e9b6ad148982cb779a87d5", - "x-ms-request-id": "ed0bf73a-075e-422e-bf62-da34338527eb" + "x-ms-client-request-id": "7f11edb9c959d420692d03f2e0b378f8", + "x-ms-request-id": "2d8f7a75-f01c-49f5-8b2f-29bc15357a73" }, "ResponseBody": [] }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/sqlScripts/SqlScript1650263?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/sqlScripts/SqlScript1121829?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-8f8a6b64dbb9944da3de10d795caaa28-aa5abd2067c52d4c-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210125.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "df86be786f6749a806f608f93e1b98e9", + "traceparent": "00-8eaa2c5d41b5f64db27ab44f05b8c001-f354cd6703ae904a-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "f69c99f0be3e8396625cb400f2ad7543", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "575", + "Content-Length": "568", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 Jan 2021 15:33:42 GMT", + "Date": "Thu, 30 Sep 2021 06:21:46 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "df86be786f6749a806f608f93e1b98e9", - "x-ms-correlation-request-id": "12f34627-6c9f-475b-9932-7a965bb52209", - "x-ms-request-id": "61c0b311-9a3a-4359-a2b5-815c203888d4", + "x-ms-client-request-id": "f69c99f0be3e8396625cb400f2ad7543", + "x-ms-correlation-request-id": "03c36126-460f-4cfc-9d3f-84d5467a9a2a", + "x-ms-request-id": "a9bfc17f-7cc6-4d10-adc7-d8fc27403549", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/sqlscripts/SqlScript1650263", - "name": "SqlScript1650263", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/sqlscripts/SqlScript1121829", + "name": "SqlScript1121829", "type": "Microsoft.Synapse/workspaces/sqlscripts", "properties": { "content": { @@ -822,21 +855,18 @@ } } }, - "etag": "ae04c2f1-0000-0800-0000-600ee4d10000" + "etag": "2e00d080-0000-0100-0000-615557770000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/sqlScripts/SqlScript1650263?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/sqlScripts/SqlScript1121829?api-version=2020-12-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-4f754043d602394cb5ecb159b775abca-776bbfa4fdc3c648-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210125.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "c85c812ef43e2a5b2a677cfbd3c24114", + "traceparent": "00-d3f8b0d2630ee4489004d91d9a08e4e3-078c6a6248a0d448-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "5040f3b51809648f60875f11f1694977", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -844,36 +874,67 @@ "ResponseHeaders": { "Access-Control-Allow-Headers": "Location", "Access-Control-Expose-Headers": "Location", - "Content-Length": "376", + "Content-Length": "369", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 Jan 2021 15:33:42 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/f2813b19-ac38-4529-bf39-b9f463857566?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:21:46 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c6ca9412-0b1f-4014-9d5f-da5aacf33836?api-version=2020-12-01", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "c85c812ef43e2a5b2a677cfbd3c24114", - "x-ms-request-id": "aa1eb5e6-3b22-4563-9fbb-fe7694a19684" + "x-ms-client-request-id": "5040f3b51809648f60875f11f1694977", + "x-ms-request-id": "f5e3d93c-afa6-455a-a618-ef34a4de2c4c" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/sqlScripts/SqlScript1650263", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/sqlScripts/SqlScript1121829", "recordId": 0, "state": "Deleting", "created": "0001-01-01T00:00:00", "changed": "0001-01-01T00:00:00", "type": "SqlScript", - "name": "SqlScript1650263", - "operationId": "f2813b19-ac38-4529-bf39-b9f463857566" + "name": "SqlScript1121829", + "operationId": "c6ca9412-0b1f-4014-9d5f-da5aacf33836" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/f2813b19-ac38-4529-bf39-b9f463857566?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c6ca9412-0b1f-4014-9d5f-da5aacf33836?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210125.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "ed3dbfb72773d7ef0a3795b75e8492f9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" ], - "x-ms-client-request-id": "f69c99f0be3e8396625cb400f2ad7543", + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 30 Sep 2021 06:21:46 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c6ca9412-0b1f-4014-9d5f-da5aacf33836?api-version=2020-12-01", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "ed3dbfb72773d7ef0a3795b75e8492f9", + "x-ms-request-id": "285220e9-56f4-4ce9-b9b0-4e4f959a5dd6" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c6ca9412-0b1f-4014-9d5f-da5aacf33836?api-version=2020-12-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "6f113d123ca2691d1d44f87bfb924f40", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -889,28 +950,59 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 Jan 2021 15:33:42 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/f2813b19-ac38-4529-bf39-b9f463857566?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:21:47 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c6ca9412-0b1f-4014-9d5f-da5aacf33836?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "f69c99f0be3e8396625cb400f2ad7543", - "x-ms-request-id": "141afe6c-806c-4cca-9b9c-13e6bf98d25a" + "x-ms-client-request-id": "6f113d123ca2691d1d44f87bfb924f40", + "x-ms-request-id": "d68b6fe7-c1dc-4ad0-a3f3-18d027659968" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/f2813b19-ac38-4529-bf39-b9f463857566?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c6ca9412-0b1f-4014-9d5f-da5aacf33836?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210125.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "315aa3a55c2cc60394322feeb61f9cd3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" ], - "x-ms-client-request-id": "5040f3b51809648f60875f11f1694977", + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 30 Sep 2021 06:21:49 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c6ca9412-0b1f-4014-9d5f-da5aacf33836?api-version=2020-12-01", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "315aa3a55c2cc60394322feeb61f9cd3", + "x-ms-request-id": "c210bcbd-505c-4022-a199-13bdcac18c01" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c6ca9412-0b1f-4014-9d5f-da5aacf33836?api-version=2020-12-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "d8ea23fb720e7b19a1d3d02e2f74dc77", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -926,45 +1018,76 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 Jan 2021 15:33:44 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/f2813b19-ac38-4529-bf39-b9f463857566?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:21:50 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c6ca9412-0b1f-4014-9d5f-da5aacf33836?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "5040f3b51809648f60875f11f1694977", - "x-ms-request-id": "13f83bcc-6077-4ece-a0a5-f8e68d00e1b8" + "x-ms-client-request-id": "d8ea23fb720e7b19a1d3d02e2f74dc77", + "x-ms-request-id": "301253b2-7f08-4b02-a9c7-bc4dcb827221" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/f2813b19-ac38-4529-bf39-b9f463857566?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c6ca9412-0b1f-4014-9d5f-da5aacf33836?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210125.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "bb1254e8602ab6cd394adb6f0d2fb3fd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" ], - "x-ms-client-request-id": "390a83ee4b26fbd6578e1dfd1520e2bc", + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 30 Sep 2021 06:21:51 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c6ca9412-0b1f-4014-9d5f-da5aacf33836?api-version=2020-12-01", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "bb1254e8602ab6cd394adb6f0d2fb3fd", + "x-ms-request-id": "b8d580b8-e1fb-403a-93c5-07e1ca631c7b" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/c6ca9412-0b1f-4014-9d5f-da5aacf33836?api-version=2020-12-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "d77f25a877a832328ade8f588bd4971f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Content-Length": "0", - "Date": "Mon, 25 Jan 2021 15:33:45 GMT", + "Date": "Thu, 30 Sep 2021 06:21:52 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "390a83ee4b26fbd6578e1dfd1520e2bc", - "x-ms-request-id": "8881a7bf-f2be-42dd-b81d-3f16dad6cbd5" + "x-ms-client-request-id": "d77f25a877a832328ade8f588bd4971f", + "x-ms-request-id": "9a7ba19e-537d-4c0a-81a9-5eb8e9fc6e7a" }, "ResponseBody": [] } ], "Variables": { - "AZURE_SYNAPSE_WORKSPACE_URL": "https://workspacechhamosynapse.dev.azuresynapse.net", + "AZURE_SYNAPSE_WORKSPACE_URL": "https://testsynapseworkspace.dev.azuresynapse.net", "RandomSeed": "1095246884" } } \ No newline at end of file diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/SqlScriptClientLiveTests/TestRenameSparkJobAsync.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/SqlScriptClientLiveTests/TestRenameSparkJobAsync.json index d61e1a39aa6c..8e648f0a294d 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/SqlScriptClientLiveTests/TestRenameSparkJobAsync.json +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/SqlScriptClientLiveTests/TestRenameSparkJobAsync.json @@ -1,18 +1,15 @@ { "Entries": [ { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/sqlScripts/SqlScript1578470?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/sqlScripts/SqlScript1578470?api-version=2020-12-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "299", "Content-Type": "application/json", - "traceparent": "00-81a991481ae3e841b3cab70e913e269c-2417af3ff2ed2e47-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210125.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "traceparent": "00-11f447d0385edb45a12731c638c5912a-582bf7ee60c8454f-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e58abc7dd3f41bc7e0849981b1f56b20", "x-ms-return-client-request-id": "true" }, @@ -38,37 +35,34 @@ "Location", "Retry-After" ], - "Content-Length": "442", + "Content-Length": "445", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 Jan 2021 15:33:45 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/a5790c2b-3dd0-4907-86de-3e406abe640e?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:22:08 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/b802a1a3-6fdd-47b2-8c80-ac2858e7d64d?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "e58abc7dd3f41bc7e0849981b1f56b20", - "x-ms-request-id": "0aff0523-fc8d-42d4-bf32-10e9735ad125" + "x-ms-request-id": "678f9bd2-f0ce-4a3a-98b4-5cdd9525d1e8" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/sqlScripts/SqlScript1578470", - "recordId": 1004055, + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/sqlScripts/SqlScript1578470", + "recordId": 2424611, "state": "Creating", - "created": "2021-01-25T15:33:45.44Z", - "changed": "2021-01-25T15:33:45.44Z", + "created": "2021-09-30T06:22:09.0333333Z", + "changed": "2021-09-30T06:22:09.0333333Z", "type": "SqlScript", "name": "SqlScript1578470", - "operationId": "a5790c2b-3dd0-4907-86de-3e406abe640e", - "artifactId": "A0F092AA-D1A0-40B9-843C-243432016C9C" + "operationId": "b802a1a3-6fdd-47b2-8c80-ac2858e7d64d", + "artifactId": "525746F3-2C11-4672-9B07-D3C84CAB26FA" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/a5790c2b-3dd0-4907-86de-3e406abe640e?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/b802a1a3-6fdd-47b2-8c80-ac2858e7d64d?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210125.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "38ab7f84e295ab06c240849bf2935543", "x-ms-return-client-request-id": "true" }, @@ -85,27 +79,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 Jan 2021 15:33:45 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/a5790c2b-3dd0-4907-86de-3e406abe640e?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:22:08 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/b802a1a3-6fdd-47b2-8c80-ac2858e7d64d?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "38ab7f84e295ab06c240849bf2935543", - "x-ms-request-id": "d07c048e-d8f2-4490-ad4a-1c18f2094fb5" + "x-ms-request-id": "a71b9b79-3ee0-471f-ba27-273e20d75920" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/a5790c2b-3dd0-4907-86de-3e406abe640e?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/b802a1a3-6fdd-47b2-8c80-ac2858e7d64d?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210125.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "57ed5c52c4b725233f313f3aec796885", "x-ms-return-client-request-id": "true" }, @@ -122,27 +113,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 Jan 2021 15:33:46 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/a5790c2b-3dd0-4907-86de-3e406abe640e?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:22:09 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/b802a1a3-6fdd-47b2-8c80-ac2858e7d64d?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "57ed5c52c4b725233f313f3aec796885", - "x-ms-request-id": "81fc5669-2aab-49c2-a99a-5a5919797976" + "x-ms-request-id": "76790370-faf7-4ddc-9e10-a0cdc9d660e6" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/a5790c2b-3dd0-4907-86de-3e406abe640e?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/b802a1a3-6fdd-47b2-8c80-ac2858e7d64d?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210125.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "31fd66d23349ce8ae84d489bd3e06611", "x-ms-return-client-request-id": "true" }, @@ -159,27 +147,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 Jan 2021 15:33:47 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/a5790c2b-3dd0-4907-86de-3e406abe640e?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:22:11 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/b802a1a3-6fdd-47b2-8c80-ac2858e7d64d?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "31fd66d23349ce8ae84d489bd3e06611", - "x-ms-request-id": "ee0d69fb-bbda-4628-a8d9-478ad85c7cbf" + "x-ms-request-id": "9595fd61-7195-4316-a818-17f9104d75fd" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/a5790c2b-3dd0-4907-86de-3e406abe640e?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/b802a1a3-6fdd-47b2-8c80-ac2858e7d64d?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210125.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "55fba365596dbf7b5c85f863a2ccbf49", "x-ms-return-client-request-id": "true" }, @@ -196,89 +181,46 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 Jan 2021 15:33:48 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/a5790c2b-3dd0-4907-86de-3e406abe640e?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:22:12 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/b802a1a3-6fdd-47b2-8c80-ac2858e7d64d?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "55fba365596dbf7b5c85f863a2ccbf49", - "x-ms-request-id": "80f6ea3b-7031-4a42-b5ef-4ff90de25ad5" + "x-ms-request-id": "bbf102d1-21b9-4cad-8388-0e7e6bea3b6c" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/a5790c2b-3dd0-4907-86de-3e406abe640e?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/b802a1a3-6fdd-47b2-8c80-ac2858e7d64d?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210125.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "8bc9fed723961ff9d11f6f697b87525f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 Jan 2021 15:33:49 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/a5790c2b-3dd0-4907-86de-3e406abe640e?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "8bc9fed723961ff9d11f6f697b87525f", - "x-ms-request-id": "59769eb9-1fb3-42d3-a1e8-a78f41cbbf6a" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/a5790c2b-3dd0-4907-86de-3e406abe640e?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210125.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "49d42ecb137e7817ea3dd5c43a262b1c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "575", + "Content-Length": "568", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 Jan 2021 15:33:51 GMT", + "Date": "Thu, 30 Sep 2021 06:22:13 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "49d42ecb137e7817ea3dd5c43a262b1c", - "x-ms-correlation-request-id": "3b310ab7-ab5d-4512-abe2-67ab5fc6dedb", - "x-ms-request-id": "a207fbad-190f-47fb-891c-4a9ba0ca0247", + "x-ms-client-request-id": "8bc9fed723961ff9d11f6f697b87525f", + "x-ms-correlation-request-id": "dc28291f-fd99-4e8f-86d5-d647a2e9014e", + "x-ms-request-id": "f54142e3-4fc7-46ec-8e09-57aefa62fbbd", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/sqlscripts/SqlScript1578470", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/sqlscripts/SqlScript1578470", "name": "SqlScript1578470", "type": "Microsoft.Synapse/workspaces/sqlscripts", "properties": { @@ -290,27 +232,24 @@ } } }, - "etag": "ae048ffc-0000-0800-0000-600ee4de0000" + "etag": "2e000181-0000-0100-0000-615557940000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/sqlScripts/SqlScript1578470/rename?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/sqlScripts/SqlScript1578470/rename?api-version=2020-12-01", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "30", "Content-Type": "application/json", - "traceparent": "00-6486c3b8c26b5e40aa156de7ee63fc77-05768db98314d248-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210125.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "17d4c4ff7bdaa941db834dea1243d432", + "traceparent": "00-e6910da82b6c7647b78de0c741b654a3-94d29a7c7f8c124b-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "7e49d42e1713ea783dd5c43a262b1c8e", "x-ms-return-client-request-id": "true" }, "RequestBody": { - "newName": "SqlScript1310071" + "newName": "SqlScript9653654" }, "StatusCode": 202, "ResponseHeaders": { @@ -322,38 +261,35 @@ "Location", "Retry-After" ], - "Content-Length": "442", + "Content-Length": "445", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 Jan 2021 15:33:51 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/d0de3594-6ed7-470a-96d7-79c9d2e80671?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:22:13 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/5f9eca61-c886-4442-af3f-922df9d24f72?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "17d4c4ff7bdaa941db834dea1243d432", - "x-ms-request-id": "57a540e1-0a7b-4427-ab8f-565b746ac6a2" + "x-ms-client-request-id": "7e49d42e1713ea783dd5c43a262b1c8e", + "x-ms-request-id": "3c571709-d2df-4247-96d6-93c639a9dcc7" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/sqlScripts/SqlScript1578470", - "recordId": 1004055, + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/sqlScripts/SqlScript1578470", + "recordId": 2424611, "state": "Renaming", - "created": "2021-01-25T15:33:45.44Z", - "changed": "2021-01-25T15:33:51.01Z", + "created": "2021-09-30T06:22:09.0333333Z", + "changed": "2021-09-30T06:22:12.8266667Z", "type": "SqlScript", "name": "SqlScript1578470", - "operationId": "d0de3594-6ed7-470a-96d7-79c9d2e80671", - "artifactId": "A0F092AA-D1A0-40B9-843C-243432016C9C" + "operationId": "5f9eca61-c886-4442-af3f-922df9d24f72", + "artifactId": "525746F3-2C11-4672-9B07-D3C84CAB26FA" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/d0de3594-6ed7-470a-96d7-79c9d2e80671?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/5f9eca61-c886-4442-af3f-922df9d24f72?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210125.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "c27cdb52487eb3f1939fa28fc98dd8f9", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "f7749899cb75e7c450a1594d34e5abf4", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -369,287 +305,25 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 Jan 2021 15:33:51 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/d0de3594-6ed7-470a-96d7-79c9d2e80671?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:22:13 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/5f9eca61-c886-4442-af3f-922df9d24f72?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "c27cdb52487eb3f1939fa28fc98dd8f9", - "x-ms-request-id": "acb8f39d-3247-4eca-ba64-380471f02089" + "x-ms-client-request-id": "f7749899cb75e7c450a1594d34e5abf4", + "x-ms-request-id": "15ff8a0f-5519-4bdf-b6a3-c3a764994827" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/d0de3594-6ed7-470a-96d7-79c9d2e80671?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/5f9eca61-c886-4442-af3f-922df9d24f72?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210125.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "8ea0910125b6341800edc63921f375f6", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 Jan 2021 15:33:52 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/d0de3594-6ed7-470a-96d7-79c9d2e80671?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "8ea0910125b6341800edc63921f375f6", - "x-ms-request-id": "69a27ac0-2865-4ee3-bfd8-5c7596e6bdf2" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/d0de3594-6ed7-470a-96d7-79c9d2e80671?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210125.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "369859d811c751b4a7c163d628341dc2", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 Jan 2021 15:33:53 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/d0de3594-6ed7-470a-96d7-79c9d2e80671?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "369859d811c751b4a7c163d628341dc2", - "x-ms-request-id": "ad2e036b-459c-490a-9c76-44cfc59ffca6" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/d0de3594-6ed7-470a-96d7-79c9d2e80671?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210125.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "a34c5fc81c442d3dc348c29081b7919f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 Jan 2021 15:33:54 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/d0de3594-6ed7-470a-96d7-79c9d2e80671?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "a34c5fc81c442d3dc348c29081b7919f", - "x-ms-request-id": "de3227ad-3cea-4c1a-9ce5-9949017b2cb3" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/d0de3594-6ed7-470a-96d7-79c9d2e80671?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210125.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "70b6ab2aa2f5ef32dc4fe7f5c1410bcb", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 Jan 2021 15:33:55 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/d0de3594-6ed7-470a-96d7-79c9d2e80671?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "70b6ab2aa2f5ef32dc4fe7f5c1410bcb", - "x-ms-request-id": "47998639-ef31-40ce-90cf-c9611c626a35" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/d0de3594-6ed7-470a-96d7-79c9d2e80671?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210125.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "c27003d0d1a7bbb21c6a727e4f24cfef", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 Jan 2021 15:33:56 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/d0de3594-6ed7-470a-96d7-79c9d2e80671?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "c27003d0d1a7bbb21c6a727e4f24cfef", - "x-ms-request-id": "9693361c-c8de-44a1-b3f4-e702f4878748" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/d0de3594-6ed7-470a-96d7-79c9d2e80671?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210125.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "7dacc430ac7e26cd2d5dc6f435486c81", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 Jan 2021 15:33:57 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/d0de3594-6ed7-470a-96d7-79c9d2e80671?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "7dacc430ac7e26cd2d5dc6f435486c81", - "x-ms-request-id": "45ea78da-f6cf-4c8d-a983-4845076cd44d" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/d0de3594-6ed7-470a-96d7-79c9d2e80671?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210125.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "7dc0f63dcf4658f8f8fa538a2fb3a0b8", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 Jan 2021 15:33:58 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/d0de3594-6ed7-470a-96d7-79c9d2e80671?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "7dc0f63dcf4658f8f8fa538a2fb3a0b8", - "x-ms-request-id": "49c83fd0-4bf4-4362-a3f7-b72f3c1e4754" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/d0de3594-6ed7-470a-96d7-79c9d2e80671?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210125.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "fcc5f77f8d95234d364a95490bbd86d3", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "c27cdb52487eb3f1939fa28fc98dd8f9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -665,28 +339,25 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 Jan 2021 15:34:00 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/d0de3594-6ed7-470a-96d7-79c9d2e80671?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:22:14 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/5f9eca61-c886-4442-af3f-922df9d24f72?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "fcc5f77f8d95234d364a95490bbd86d3", - "x-ms-request-id": "040bf346-1cef-4e37-a430-db90307862b7" + "x-ms-client-request-id": "c27cdb52487eb3f1939fa28fc98dd8f9", + "x-ms-request-id": "11362b13-cbed-4d25-b2b1-c67976f6fcfb" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/d0de3594-6ed7-470a-96d7-79c9d2e80671?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/5f9eca61-c886-4442-af3f-922df9d24f72?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210125.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "5841f0fe516360a8cc5384835943f779", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "8ea0910125b6341800edc63921f375f6", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -702,28 +373,25 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 Jan 2021 15:34:01 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/d0de3594-6ed7-470a-96d7-79c9d2e80671?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:22:15 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/5f9eca61-c886-4442-af3f-922df9d24f72?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "5841f0fe516360a8cc5384835943f779", - "x-ms-request-id": "7abc096f-f709-465c-9652-cdca9b5d59be" + "x-ms-client-request-id": "8ea0910125b6341800edc63921f375f6", + "x-ms-request-id": "b4420ccb-761a-49eb-bb54-5c6f1194a6a8" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/d0de3594-6ed7-470a-96d7-79c9d2e80671?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/5f9eca61-c886-4442-af3f-922df9d24f72?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210125.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "3e750dbc6f83afeca99d47fc3aae4c3b", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "369859d811c751b4a7c163d628341dc2", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -739,28 +407,25 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 Jan 2021 15:34:02 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/d0de3594-6ed7-470a-96d7-79c9d2e80671?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:22:17 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/5f9eca61-c886-4442-af3f-922df9d24f72?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "3e750dbc6f83afeca99d47fc3aae4c3b", - "x-ms-request-id": "a2b53dcd-b3d4-43a2-ba1e-f8c8bc72fbf2" + "x-ms-client-request-id": "369859d811c751b4a7c163d628341dc2", + "x-ms-request-id": "166481ac-d4e8-4b15-bb74-73b98892c0a7" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/d0de3594-6ed7-470a-96d7-79c9d2e80671?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/5f9eca61-c886-4442-af3f-922df9d24f72?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210125.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "3e8b807447722d554e64304208cacaf2", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "a34c5fc81c442d3dc348c29081b7919f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -776,28 +441,25 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 Jan 2021 15:34:03 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/d0de3594-6ed7-470a-96d7-79c9d2e80671?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:22:18 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/5f9eca61-c886-4442-af3f-922df9d24f72?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "3e8b807447722d554e64304208cacaf2", - "x-ms-request-id": "21756415-b718-4588-82eb-89bddc1ef505" + "x-ms-client-request-id": "a34c5fc81c442d3dc348c29081b7919f", + "x-ms-request-id": "6ff2ea09-8ac7-428c-b455-68f5374a3b32" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/d0de3594-6ed7-470a-96d7-79c9d2e80671?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/5f9eca61-c886-4442-af3f-922df9d24f72?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210125.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "fe8c1b5348488e500491afc609ac261d", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "70b6ab2aa2f5ef32dc4fe7f5c1410bcb", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -813,28 +475,25 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 Jan 2021 15:34:04 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/d0de3594-6ed7-470a-96d7-79c9d2e80671?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:22:19 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/5f9eca61-c886-4442-af3f-922df9d24f72?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "fe8c1b5348488e500491afc609ac261d", - "x-ms-request-id": "b913c691-2fdd-4f7a-bb06-c746ea38015c" + "x-ms-client-request-id": "70b6ab2aa2f5ef32dc4fe7f5c1410bcb", + "x-ms-request-id": "6fcacd51-11c5-42c1-8737-ee141b9d3872" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/d0de3594-6ed7-470a-96d7-79c9d2e80671?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/5f9eca61-c886-4442-af3f-922df9d24f72?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210125.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "d80e4906b8b77406b847ef1e3faaa7de", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "c27003d0d1a7bbb21c6a727e4f24cfef", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -850,28 +509,25 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 Jan 2021 15:34:05 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/d0de3594-6ed7-470a-96d7-79c9d2e80671?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:22:20 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/5f9eca61-c886-4442-af3f-922df9d24f72?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "d80e4906b8b77406b847ef1e3faaa7de", - "x-ms-request-id": "18c791fb-6e59-4ca6-a859-5de59d3ad011" + "x-ms-client-request-id": "c27003d0d1a7bbb21c6a727e4f24cfef", + "x-ms-request-id": "2a14217e-f033-46fe-8135-cf65993cf8e2" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/d0de3594-6ed7-470a-96d7-79c9d2e80671?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/5f9eca61-c886-4442-af3f-922df9d24f72?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210125.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "1ea854d24e212cf22ffd39e1988e23a1", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "7dacc430ac7e26cd2d5dc6f435486c81", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -887,79 +543,70 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 Jan 2021 15:34:06 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/d0de3594-6ed7-470a-96d7-79c9d2e80671?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:22:21 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/5f9eca61-c886-4442-af3f-922df9d24f72?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "1ea854d24e212cf22ffd39e1988e23a1", - "x-ms-request-id": "4e54be45-5f4e-4a07-b0fc-929621e4876e" + "x-ms-client-request-id": "7dacc430ac7e26cd2d5dc6f435486c81", + "x-ms-request-id": "623d7aea-64db-4297-9ce7-e90fa2f55f0c" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/d0de3594-6ed7-470a-96d7-79c9d2e80671?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/5f9eca61-c886-4442-af3f-922df9d24f72?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210125.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "be3b123df1bb9a3b1517460058324f5a", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "7dc0f63dcf4658f8f8fa538a2fb3a0b8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Content-Length": "0", - "Date": "Mon, 25 Jan 2021 15:34:07 GMT", + "Date": "Thu, 30 Sep 2021 06:22:22 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "be3b123df1bb9a3b1517460058324f5a", - "x-ms-request-id": "01a4c7e2-cc0f-4dba-b563-ea6ec552b552" + "x-ms-client-request-id": "7dc0f63dcf4658f8f8fa538a2fb3a0b8", + "x-ms-request-id": "35d4786a-8807-40c4-961f-962255ec4106" }, "ResponseBody": [] }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/sqlScripts/SqlScript1310071?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/sqlScripts/SqlScript9653654?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-51908c33149f334db613b15bf7dd3ae6-5812361524557f4b-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210125.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "b4f3d0ea0804b7fc57e2a9ba7f25dc29", + "traceparent": "00-94b876c8e29584458b6c6a867403289e-2d6c2e178c8e124a-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "fcc5f77f8d95234d364a95490bbd86d3", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "575", + "Content-Length": "568", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 Jan 2021 15:34:07 GMT", + "Date": "Thu, 30 Sep 2021 06:22:22 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "b4f3d0ea0804b7fc57e2a9ba7f25dc29", - "x-ms-correlation-request-id": "5c8762be-c33d-4705-933e-764f2cbbfb31", - "x-ms-request-id": "7fb2ebe2-eb67-44f6-adde-caf59f25e688", + "x-ms-client-request-id": "fcc5f77f8d95234d364a95490bbd86d3", + "x-ms-correlation-request-id": "1d29ade3-52aa-44e4-b592-db9a01a62f7a", + "x-ms-request-id": "4f2b6379-4405-48c8-8c21-fb58a58aeb9f", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/sqlscripts/SqlScript1310071", - "name": "SqlScript1310071", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/sqlscripts/SqlScript9653654", + "name": "SqlScript9653654", "type": "Microsoft.Synapse/workspaces/sqlscripts", "properties": { "content": { @@ -970,21 +617,18 @@ } } }, - "etag": "af04e902-0000-0800-0000-600ee4e70000" + "etag": "2e000781-0000-0100-0000-6155579d0000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/sqlScripts/SqlScript1310071?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/sqlScripts/SqlScript9653654?api-version=2020-12-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-ad29cd1637e8f94a8799a8eb54c84fd5-d71665a08ae6974e-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210125.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "2ce14d23e86ee123190d090908f2d3fc", + "traceparent": "00-ade5b3489ab0a3428e0288b136b8f442-b055492fc3db6548-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "5841f0fe516360a8cc5384835943f779", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -992,147 +636,33 @@ "ResponseHeaders": { "Access-Control-Allow-Headers": "Location", "Access-Control-Expose-Headers": "Location", - "Content-Length": "376", + "Content-Length": "369", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 Jan 2021 15:34:07 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/20497d20-76e1-4ee3-bf56-25472199756a?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:22:22 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/37a75045-4112-42b5-86a8-bf9b3d118ad5?api-version=2020-12-01", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "2ce14d23e86ee123190d090908f2d3fc", - "x-ms-request-id": "f107a305-e90f-46d7-86ae-f9dc94eabda3" + "x-ms-client-request-id": "5841f0fe516360a8cc5384835943f779", + "x-ms-request-id": "64a007da-91e7-4ec1-817c-cc5b1eba5549" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/sqlScripts/SqlScript1310071", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/sqlScripts/SqlScript9653654", "recordId": 0, "state": "Deleting", "created": "0001-01-01T00:00:00", "changed": "0001-01-01T00:00:00", "type": "SqlScript", - "name": "SqlScript1310071", - "operationId": "20497d20-76e1-4ee3-bf56-25472199756a" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/20497d20-76e1-4ee3-bf56-25472199756a?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210125.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "0bdd1c3b225001ebac129bf6fff2af65", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 Jan 2021 15:34:07 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/20497d20-76e1-4ee3-bf56-25472199756a?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "0bdd1c3b225001ebac129bf6fff2af65", - "x-ms-request-id": "ca0d6f0e-f356-4a1d-87e7-b02a5b072217" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/20497d20-76e1-4ee3-bf56-25472199756a?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210125.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "9f0cac0f132eb48fafac16eb804b9a97", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 Jan 2021 15:34:09 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/20497d20-76e1-4ee3-bf56-25472199756a?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "9f0cac0f132eb48fafac16eb804b9a97", - "x-ms-request-id": "ab05eb8d-06e4-48ab-9ffd-7dbae15563c9" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/20497d20-76e1-4ee3-bf56-25472199756a?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210125.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "eccd19f1c7148aacf3f41b87d3a73524", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 Jan 2021 15:34:10 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/20497d20-76e1-4ee3-bf56-25472199756a?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "eccd19f1c7148aacf3f41b87d3a73524", - "x-ms-request-id": "656c9aa8-e588-41d6-ac55-b5ad3c714c09" - }, - "ResponseBody": { - "status": "InProgress" + "name": "SqlScript9653654", + "operationId": "37a75045-4112-42b5-86a8-bf9b3d118ad5" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/20497d20-76e1-4ee3-bf56-25472199756a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/37a75045-4112-42b5-86a8-bf9b3d118ad5?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210125.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "9ac802d47c7527c18c285ba30c008161", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "3e8b807447722d554e64304208cacaf2", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -1148,28 +678,25 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 Jan 2021 15:34:11 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/20497d20-76e1-4ee3-bf56-25472199756a?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:22:22 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/37a75045-4112-42b5-86a8-bf9b3d118ad5?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "9ac802d47c7527c18c285ba30c008161", - "x-ms-request-id": "e689cc24-7119-48d6-89d3-7762cec642c6" + "x-ms-client-request-id": "3e8b807447722d554e64304208cacaf2", + "x-ms-request-id": "97731dca-e0d1-4b83-92c5-8d658c7a0688" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/20497d20-76e1-4ee3-bf56-25472199756a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/37a75045-4112-42b5-86a8-bf9b3d118ad5?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210125.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "e6040478c22447500082ac39f807e108", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "fe8c1b5348488e500491afc609ac261d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -1185,45 +712,42 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 Jan 2021 15:34:12 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/20497d20-76e1-4ee3-bf56-25472199756a?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:22:24 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/37a75045-4112-42b5-86a8-bf9b3d118ad5?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "e6040478c22447500082ac39f807e108", - "x-ms-request-id": "38a82356-1890-4540-922a-2cf69eab8fd7" + "x-ms-client-request-id": "fe8c1b5348488e500491afc609ac261d", + "x-ms-request-id": "e26579e0-6891-4461-a627-cf46aad92181" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/20497d20-76e1-4ee3-bf56-25472199756a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/37a75045-4112-42b5-86a8-bf9b3d118ad5?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210125.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "7e16f177ff82752258a55fec6c087df3", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "d80e4906b8b77406b847ef1e3faaa7de", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Content-Length": "0", - "Date": "Mon, 25 Jan 2021 15:34:13 GMT", + "Date": "Thu, 30 Sep 2021 06:22:25 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "7e16f177ff82752258a55fec6c087df3", - "x-ms-request-id": "0f8b543e-0f42-473d-a2ac-3385dbdde75f" + "x-ms-client-request-id": "d80e4906b8b77406b847ef1e3faaa7de", + "x-ms-request-id": "23cd8af8-1228-4935-a712-92921d93698c" }, "ResponseBody": [] } ], "Variables": { - "AZURE_SYNAPSE_WORKSPACE_URL": "https://workspacechhamosynapse.dev.azuresynapse.net", + "AZURE_SYNAPSE_WORKSPACE_URL": "https://testsynapseworkspace.dev.azuresynapse.net", "RandomSeed": "2091553528" } } \ No newline at end of file diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/TriggerClientLiveTests/TestDeleteSparkJob.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/TriggerClientLiveTests/TestDeleteSparkJob.json index 24406a2352ee..9efd6fc7c2b8 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/TriggerClientLiveTests/TestDeleteSparkJob.json +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/TriggerClientLiveTests/TestDeleteSparkJob.json @@ -1,18 +1,15 @@ { "Entries": [ { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger172308524?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/triggers/Trigger172308524?api-version=2020-12-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "76", "Content-Type": "application/json", - "traceparent": "00-356ddbada37f184eaef5972f987a0938-022332c27091994a-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210125.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "traceparent": "00-0152506bcd9c214ebd9ad2ee835d8765-1cf2e8556fe7824d-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e948c4322bbac6820a5fb3b2090ee40a", "x-ms-return-client-request-id": "true" }, @@ -34,37 +31,34 @@ "Location", "Retry-After" ], - "Content-Length": "448", + "Content-Length": "431", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 Jan 2021 15:35:02 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/1b74cab6-1b1c-4351-844c-854fb0f941f8?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:22:25 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/6a82be00-6a42-4f80-b369-ff67df534ba8?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "e948c4322bbac6820a5fb3b2090ee40a", - "x-ms-request-id": "29da833e-35fb-4700-bf71-e1ccb1a8138d" + "x-ms-request-id": "8f93b422-0285-4cd8-88d7-d8955eeadcbb" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger172308524", - "recordId": 1004062, + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/triggers/Trigger172308524", + "recordId": 2424613, "state": "Creating", - "created": "2021-01-25T15:35:02.6766667Z", - "changed": "2021-01-25T15:35:02.6766667Z", + "created": "2021-09-30T06:22:25.84Z", + "changed": "2021-09-30T06:22:25.84Z", "type": "Trigger", "name": "Trigger172308524", - "operationId": "1b74cab6-1b1c-4351-844c-854fb0f941f8", - "artifactId": "B623B07B-8F5A-4B45-8BDF-33BA1400AC51" + "operationId": "6a82be00-6a42-4f80-b369-ff67df534ba8", + "artifactId": "4BCF8650-9EA7-4254-B1E0-FF5808D71584" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/1b74cab6-1b1c-4351-844c-854fb0f941f8?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/6a82be00-6a42-4f80-b369-ff67df534ba8?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210125.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d5d5cdede3305127b761bd26502f2007", "x-ms-return-client-request-id": "true" }, @@ -81,27 +75,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 Jan 2021 15:35:02 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/1b74cab6-1b1c-4351-844c-854fb0f941f8?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:22:25 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/6a82be00-6a42-4f80-b369-ff67df534ba8?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "d5d5cdede3305127b761bd26502f2007", - "x-ms-request-id": "e54f9059-bf2a-40a9-8d15-2b68cf8ff250" + "x-ms-request-id": "5cfe4183-949e-4230-b3ea-5d53248feadd" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/1b74cab6-1b1c-4351-844c-854fb0f941f8?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/6a82be00-6a42-4f80-b369-ff67df534ba8?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210125.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a767a6378b9af545bb4003e13b782b61", "x-ms-return-client-request-id": "true" }, @@ -118,27 +109,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 Jan 2021 15:35:03 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/1b74cab6-1b1c-4351-844c-854fb0f941f8?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:22:26 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/6a82be00-6a42-4f80-b369-ff67df534ba8?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "a767a6378b9af545bb4003e13b782b61", - "x-ms-request-id": "9bae781d-64d2-4bae-89f1-3cf80f87fe7a" + "x-ms-request-id": "b76689e5-f33d-4471-a5e8-1223062c6f9d" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/1b74cab6-1b1c-4351-844c-854fb0f941f8?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/6a82be00-6a42-4f80-b369-ff67df534ba8?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210125.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "3bc53b440f397ada16f3ff187ee2b7b5", "x-ms-return-client-request-id": "true" }, @@ -155,27 +143,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 Jan 2021 15:35:04 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/1b74cab6-1b1c-4351-844c-854fb0f941f8?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:22:28 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/6a82be00-6a42-4f80-b369-ff67df534ba8?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "3bc53b440f397ada16f3ff187ee2b7b5", - "x-ms-request-id": "3260e0a5-dc9e-4bed-86e6-41c19477dba9" + "x-ms-request-id": "7e5625f9-8a95-4fc0-9ca0-cecd6b177530" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/1b74cab6-1b1c-4351-844c-854fb0f941f8?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/6a82be00-6a42-4f80-b369-ff67df534ba8?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210125.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f3d2e7b8724161dd88e019efdf46163f", "x-ms-return-client-request-id": "true" }, @@ -192,27 +177,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 Jan 2021 15:35:06 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/1b74cab6-1b1c-4351-844c-854fb0f941f8?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:22:29 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/6a82be00-6a42-4f80-b369-ff67df534ba8?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "f3d2e7b8724161dd88e019efdf46163f", - "x-ms-request-id": "6ea14906-164e-4ce0-89ca-a9df13f4050b" + "x-ms-request-id": "dd23cf0d-172c-4d16-80f3-d91321025005" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/1b74cab6-1b1c-4351-844c-854fb0f941f8?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/6a82be00-6a42-4f80-b369-ff67df534ba8?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210125.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "15e15c36e56a28ceccec91a78c2d76d8", "x-ms-return-client-request-id": "true" }, @@ -229,27 +211,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 Jan 2021 15:35:07 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/1b74cab6-1b1c-4351-844c-854fb0f941f8?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:22:30 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/6a82be00-6a42-4f80-b369-ff67df534ba8?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "15e15c36e56a28ceccec91a78c2d76d8", - "x-ms-request-id": "66d2f1e4-ef83-48bd-95e4-c86e1f46c51b" + "x-ms-request-id": "383bf704-d44a-4680-84b8-0e42709eada3" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/1b74cab6-1b1c-4351-844c-854fb0f941f8?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/6a82be00-6a42-4f80-b369-ff67df534ba8?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210125.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "53284e8938a5d11f5e63b358f5ea9acf", "x-ms-return-client-request-id": "true" }, @@ -257,24 +236,21 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "399", + "Content-Length": "392", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 Jan 2021 15:35:08 GMT", + "Date": "Thu, 30 Sep 2021 06:22:31 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "53284e8938a5d11f5e63b358f5ea9acf", - "x-ms-correlation-request-id": "01ee2632-7785-458d-97dd-150fac770eaa", - "x-ms-request-id": "f098f597-4662-43a8-a43a-ae6168348abe", + "x-ms-correlation-request-id": "9f0f1ac7-be42-4b98-a150-d5a2cf5bc03d", + "x-ms-request-id": "a73f3afe-8df7-4d80-8a25-76738b39c8d8", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger172308524", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/triggers/Trigger172308524", "name": "Trigger172308524", "type": "Microsoft.Synapse/workspaces/triggers", "properties": { @@ -284,20 +260,17 @@ }, "runtimeState": "Stopped" }, - "etag": "af046935-0000-0800-0000-600ee52b0000" + "etag": "2e002281-0000-0100-0000-615557a60000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger172308524?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/triggers/Trigger172308524?api-version=2020-12-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-71471d619ee19c4094369cd73504b21f-de39f860cbfd4442-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210125.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "traceparent": "00-d2064e2edf65444eb76814be7cbe08e9-77376f4b50a00548-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "22e2c0dda201d24b19aa2755e136d55a", "x-ms-return-client-request-id": "true" }, @@ -306,35 +279,32 @@ "ResponseHeaders": { "Access-Control-Allow-Headers": "Location", "Access-Control-Expose-Headers": "Location", - "Content-Length": "372", + "Content-Length": "365", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 Jan 2021 15:35:08 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/fb783d8d-c2a3-4b98-ba61-2e669456e5ac?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:22:31 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/32f08e4b-a93f-4418-918a-00074c4adc90?api-version=2020-12-01", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "22e2c0dda201d24b19aa2755e136d55a", - "x-ms-request-id": "7e815fcc-0bdd-4d92-882f-99b62806f780" + "x-ms-request-id": "d385fe0f-e8f5-4b26-b987-41ea72c6e20b" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger172308524", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/triggers/Trigger172308524", "recordId": 0, "state": "Deleting", "created": "0001-01-01T00:00:00", "changed": "0001-01-01T00:00:00", "type": "Trigger", "name": "Trigger172308524", - "operationId": "fb783d8d-c2a3-4b98-ba61-2e669456e5ac" + "operationId": "32f08e4b-a93f-4418-918a-00074c4adc90" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/fb783d8d-c2a3-4b98-ba61-2e669456e5ac?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/32f08e4b-a93f-4418-918a-00074c4adc90?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210125.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ccc9c152544be6d703563afb10caf027", "x-ms-return-client-request-id": "true" }, @@ -351,27 +321,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 Jan 2021 15:35:08 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/fb783d8d-c2a3-4b98-ba61-2e669456e5ac?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:22:31 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/32f08e4b-a93f-4418-918a-00074c4adc90?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "ccc9c152544be6d703563afb10caf027", - "x-ms-request-id": "6eb43b23-01e1-4e26-a6af-5fcdea9dae0a" + "x-ms-request-id": "02c3732e-c12e-4789-b843-d286ed7d05f2" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/fb783d8d-c2a3-4b98-ba61-2e669456e5ac?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/32f08e4b-a93f-4418-918a-00074c4adc90?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210125.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b4ef588d09841ab126e4e6f1eb43a0a3", "x-ms-return-client-request-id": "true" }, @@ -388,27 +355,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 Jan 2021 15:35:09 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/fb783d8d-c2a3-4b98-ba61-2e669456e5ac?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:22:32 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/32f08e4b-a93f-4418-918a-00074c4adc90?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "b4ef588d09841ab126e4e6f1eb43a0a3", - "x-ms-request-id": "582b8deb-1409-4ba7-ba5a-33a537a127fe" + "x-ms-request-id": "4fab2c72-e0ad-42e6-8fb7-6c0b055009ce" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/fb783d8d-c2a3-4b98-ba61-2e669456e5ac?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/32f08e4b-a93f-4418-918a-00074c4adc90?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210125.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "1f034577096c140f697f8ec7889dec71", "x-ms-return-client-request-id": "true" }, @@ -416,17 +380,17 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Length": "0", - "Date": "Mon, 25 Jan 2021 15:35:10 GMT", + "Date": "Thu, 30 Sep 2021 06:22:33 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "1f034577096c140f697f8ec7889dec71", - "x-ms-request-id": "3ed6444c-b0e9-40db-b97b-b8d255b418c0" + "x-ms-request-id": "9bd8138f-bf55-4efe-a855-f1e6d87e0b34" }, "ResponseBody": [] } ], "Variables": { - "AZURE_SYNAPSE_WORKSPACE_URL": "https://workspacechhamosynapse.dev.azuresynapse.net", + "AZURE_SYNAPSE_WORKSPACE_URL": "https://testsynapseworkspace.dev.azuresynapse.net", "RandomSeed": "1678850573" } } \ No newline at end of file diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/TriggerClientLiveTests/TestDeleteSparkJobAsync.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/TriggerClientLiveTests/TestDeleteSparkJobAsync.json index 5c22538b8135..f17806e466d3 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/TriggerClientLiveTests/TestDeleteSparkJobAsync.json +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/TriggerClientLiveTests/TestDeleteSparkJobAsync.json @@ -1,18 +1,15 @@ { "Entries": [ { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger127376234?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/triggers/Trigger127376234?api-version=2020-12-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "76", "Content-Type": "application/json", - "traceparent": "00-d93d90d669ec454a98585059b473528f-4b14055e4854f541-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210125.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "traceparent": "00-839e9b7cd8c3224db5ad70c7d23b775a-aeb7ac26c17a3e46-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2a609a476fcd56a702db64d2e7fabed1", "x-ms-return-client-request-id": "true" }, @@ -34,37 +31,34 @@ "Location", "Retry-After" ], - "Content-Length": "448", + "Content-Length": "441", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 Jan 2021 15:35:10 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/48d0907c-de73-4ae3-9515-8e473fbe2c0a?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:23:05 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/27a72a05-9c2a-4c41-ba7e-f26680429f70?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "2a609a476fcd56a702db64d2e7fabed1", - "x-ms-request-id": "0a296f83-19b3-4b03-aa31-0fc44b87e7e3" + "x-ms-request-id": "468cd99a-1e21-4998-a359-0354cb9a1735" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger127376234", - "recordId": 1004063, + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/triggers/Trigger127376234", + "recordId": 2424617, "state": "Creating", - "created": "2021-01-25T15:35:11.1166667Z", - "changed": "2021-01-25T15:35:11.1166667Z", + "created": "2021-09-30T06:23:06.3066667Z", + "changed": "2021-09-30T06:23:06.3066667Z", "type": "Trigger", "name": "Trigger127376234", - "operationId": "48d0907c-de73-4ae3-9515-8e473fbe2c0a", - "artifactId": "C0BB93FF-2CDE-4E8A-BBD8-34B5154DF409" + "operationId": "27a72a05-9c2a-4c41-ba7e-f26680429f70", + "artifactId": "82095788-EEE8-462D-89D6-9A71094D9100" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/48d0907c-de73-4ae3-9515-8e473fbe2c0a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/27a72a05-9c2a-4c41-ba7e-f26680429f70?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210125.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ed3dfa9e94607f0016a30e2ec97df885", "x-ms-return-client-request-id": "true" }, @@ -81,27 +75,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 Jan 2021 15:35:10 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/48d0907c-de73-4ae3-9515-8e473fbe2c0a?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:23:05 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/27a72a05-9c2a-4c41-ba7e-f26680429f70?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "ed3dfa9e94607f0016a30e2ec97df885", - "x-ms-request-id": "2fd92695-ab9a-46cc-a39c-70f417e70c3e" + "x-ms-request-id": "c5dfc2b6-d6cd-4f90-ab36-bc497a5b7e85" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/48d0907c-de73-4ae3-9515-8e473fbe2c0a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/27a72a05-9c2a-4c41-ba7e-f26680429f70?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210125.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e20846b0c98aecaaf2929278c265b240", "x-ms-return-client-request-id": "true" }, @@ -118,89 +109,46 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 Jan 2021 15:35:12 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/48d0907c-de73-4ae3-9515-8e473fbe2c0a?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:23:07 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/27a72a05-9c2a-4c41-ba7e-f26680429f70?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "e20846b0c98aecaaf2929278c265b240", - "x-ms-request-id": "7be57ad7-d216-4d62-b9f4-a655b3d4d901" + "x-ms-request-id": "d18a351d-d419-40d8-8f03-6d733d9187d4" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/48d0907c-de73-4ae3-9515-8e473fbe2c0a?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/27a72a05-9c2a-4c41-ba7e-f26680429f70?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210125.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ec34bf3bd0bd29703aa80cdd4c78041a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 Jan 2021 15:35:13 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/48d0907c-de73-4ae3-9515-8e473fbe2c0a?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "ec34bf3bd0bd29703aa80cdd4c78041a", - "x-ms-request-id": "480cbed1-88db-4e1d-bd04-c02e8aa72da9" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/48d0907c-de73-4ae3-9515-8e473fbe2c0a?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210125.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "5d91275cbeb9d41a5050face0187bdb1", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "399", + "Content-Length": "392", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 Jan 2021 15:35:14 GMT", + "Date": "Thu, 30 Sep 2021 06:23:08 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "5d91275cbeb9d41a5050face0187bdb1", - "x-ms-correlation-request-id": "b2ae8661-6fc5-4cae-869f-3c8c84c41e20", - "x-ms-request-id": "f37a9995-a064-4ae7-999f-3c18ed09735c", + "x-ms-client-request-id": "ec34bf3bd0bd29703aa80cdd4c78041a", + "x-ms-correlation-request-id": "19878126-1347-4349-9d2d-636ea8719fc9", + "x-ms-request-id": "bdd52c41-0a00-434a-898d-15a59ace3311", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger127376234", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/triggers/Trigger127376234", "name": "Trigger127376234", "type": "Microsoft.Synapse/workspaces/triggers", "properties": { @@ -210,21 +158,18 @@ }, "runtimeState": "Stopped" }, - "etag": "af04e839-0000-0800-0000-600ee5310000" + "etag": "2e004781-0000-0100-0000-615557cb0000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger127376234?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/triggers/Trigger127376234?api-version=2020-12-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-090c40d83573b642aa357d1de8b74ce3-db34709feb5a2c48-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210125.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "0af3cdf10b48e0c8d5dfa7e2bdcca07a", + "traceparent": "00-1f6000e6e123184bb56948bc2d07d8c4-495073f96391aa47-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "5d91275cbeb9d41a5050face0187bdb1", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -232,73 +177,33 @@ "ResponseHeaders": { "Access-Control-Allow-Headers": "Location", "Access-Control-Expose-Headers": "Location", - "Content-Length": "372", + "Content-Length": "365", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 Jan 2021 15:35:14 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/c7f3e84d-9d42-4591-8608-a597319ba97c?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:23:08 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/4bce2058-6cc3-4b53-888c-a58ded24e558?api-version=2020-12-01", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "0af3cdf10b48e0c8d5dfa7e2bdcca07a", - "x-ms-request-id": "3e01c247-4e62-4979-b19a-51aa755cd49b" + "x-ms-client-request-id": "5d91275cbeb9d41a5050face0187bdb1", + "x-ms-request-id": "2de8fa15-1a0b-4b2c-bc3d-ea05c914d08e" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger127376234", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/triggers/Trigger127376234", "recordId": 0, "state": "Deleting", "created": "0001-01-01T00:00:00", "changed": "0001-01-01T00:00:00", "type": "Trigger", "name": "Trigger127376234", - "operationId": "c7f3e84d-9d42-4591-8608-a597319ba97c" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/c7f3e84d-9d42-4591-8608-a597319ba97c?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210125.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "7eec5beaf98450d15fb187da16381783", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 Jan 2021 15:35:14 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/c7f3e84d-9d42-4591-8608-a597319ba97c?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "7eec5beaf98450d15fb187da16381783", - "x-ms-request-id": "92dd33cd-6576-4a98-a5d2-39f51a3aa3ef" - }, - "ResponseBody": { - "status": "InProgress" + "operationId": "4bce2058-6cc3-4b53-888c-a58ded24e558" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/c7f3e84d-9d42-4591-8608-a597319ba97c?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/4bce2058-6cc3-4b53-888c-a58ded24e558?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210125.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "893f80b0236b9cdd467666e86f5b0a33", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "9a1c788e55d47c86a45f9c6cd5a227b3", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -314,119 +219,42 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 Jan 2021 15:35:15 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/c7f3e84d-9d42-4591-8608-a597319ba97c?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:23:08 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/4bce2058-6cc3-4b53-888c-a58ded24e558?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "893f80b0236b9cdd467666e86f5b0a33", - "x-ms-request-id": "86a5441b-fade-4fb7-a909-e765df6380f9" + "x-ms-client-request-id": "9a1c788e55d47c86a45f9c6cd5a227b3", + "x-ms-request-id": "2146c479-d993-482d-8adf-f52373d4ee40" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/c7f3e84d-9d42-4591-8608-a597319ba97c?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/4bce2058-6cc3-4b53-888c-a58ded24e558?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210125.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "62f7f4b721e095f5a6cc3b23cdac666c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 Jan 2021 15:35:16 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/c7f3e84d-9d42-4591-8608-a597319ba97c?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "62f7f4b721e095f5a6cc3b23cdac666c", - "x-ms-request-id": "b7514be9-af02-403e-992e-a64dba9d43e0" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/c7f3e84d-9d42-4591-8608-a597319ba97c?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210125.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "55bc19489d63c7477e50370d92e9e003", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 25 Jan 2021 15:35:18 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/c7f3e84d-9d42-4591-8608-a597319ba97c?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "55bc19489d63c7477e50370d92e9e003", - "x-ms-request-id": "60b95d57-7d0b-4105-a9f4-641dc3149a43" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/c7f3e84d-9d42-4591-8608-a597319ba97c?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210125.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "222254a6b5408ea28aaae39ee7b9ce9a", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "7eec5beaf98450d15fb187da16381783", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Content-Length": "0", - "Date": "Mon, 25 Jan 2021 15:35:19 GMT", + "Date": "Thu, 30 Sep 2021 06:23:09 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "222254a6b5408ea28aaae39ee7b9ce9a", - "x-ms-request-id": "03bbbbce-a657-4ab0-b410-86aef0611c09" + "x-ms-client-request-id": "7eec5beaf98450d15fb187da16381783", + "x-ms-request-id": "748d9fa6-59bd-4997-8e53-be9fe50f29a0" }, "ResponseBody": [] } ], "Variables": { - "AZURE_SYNAPSE_WORKSPACE_URL": "https://workspacechhamosynapse.dev.azuresynapse.net", + "AZURE_SYNAPSE_WORKSPACE_URL": "https://testsynapseworkspace.dev.azuresynapse.net", "RandomSeed": "631660687" } } \ No newline at end of file diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/TriggerClientLiveTests/TestEventStatus.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/TriggerClientLiveTests/TestEventStatus.json index a44281ee047e..ca5a2f0596b3 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/TriggerClientLiveTests/TestEventStatus.json +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/TriggerClientLiveTests/TestEventStatus.json @@ -1,18 +1,15 @@ { "Entries": [ { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger175846718?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/triggers/Trigger175846718?api-version=2020-12-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "76", "Content-Type": "application/json", - "traceparent": "00-7f2246fd35191145a9574a96bde1a927-c88e32db64566749-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "traceparent": "00-8fbcbf2a2812d94a9de81966cbb3f035-f713406aba17954f-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "1bd0671809cc91f43749c27bcb25f7ce", "x-ms-return-client-request-id": "true" }, @@ -34,37 +31,34 @@ "Location", "Retry-After" ], - "Content-Length": "447", + "Content-Length": "431", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:43:45 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/35d8a3f5-b580-4ceb-b219-360ee10e2691?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:22:33 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/3da25995-fe30-420a-ae10-e7f334199e2d?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "1bd0671809cc91f43749c27bcb25f7ce", - "x-ms-request-id": "1651ce6e-6dcd-4221-9e19-18e2dcd9a715" + "x-ms-request-id": "d6132f94-81a2-4624-966d-da2af4a852f5" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger175846718", - "recordId": 996509, + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/triggers/Trigger175846718", + "recordId": 2424614, "state": "Creating", - "created": "2021-01-22T19:43:45.7433333Z", - "changed": "2021-01-22T19:43:45.7433333Z", + "created": "2021-09-30T06:22:34.42Z", + "changed": "2021-09-30T06:22:34.42Z", "type": "Trigger", "name": "Trigger175846718", - "operationId": "35d8a3f5-b580-4ceb-b219-360ee10e2691", - "artifactId": "15477A5A-D932-4EB6-B3CF-B0ED0B6D7BC3" + "operationId": "3da25995-fe30-420a-ae10-e7f334199e2d", + "artifactId": "6A8D132C-72B5-4CDA-9ADE-FBBCD6B130E6" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/35d8a3f5-b580-4ceb-b219-360ee10e2691?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/3da25995-fe30-420a-ae10-e7f334199e2d?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a3613f4e403659b4e57bf41910789282", "x-ms-return-client-request-id": "true" }, @@ -81,27 +75,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:43:45 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/35d8a3f5-b580-4ceb-b219-360ee10e2691?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:22:33 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/3da25995-fe30-420a-ae10-e7f334199e2d?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "a3613f4e403659b4e57bf41910789282", - "x-ms-request-id": "17d75dc6-e2c1-4034-9ed9-48920937dce9" + "x-ms-request-id": "bbf5f66d-17e6-4f39-83eb-95417b22403e" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/35d8a3f5-b580-4ceb-b219-360ee10e2691?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/3da25995-fe30-420a-ae10-e7f334199e2d?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "eb68122a402e40b2155e28a9403aee4e", "x-ms-return-client-request-id": "true" }, @@ -118,27 +109,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:43:46 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/35d8a3f5-b580-4ceb-b219-360ee10e2691?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:22:35 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/3da25995-fe30-420a-ae10-e7f334199e2d?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "eb68122a402e40b2155e28a9403aee4e", - "x-ms-request-id": "86c4a2f0-6255-4800-b18a-a4d7365ec9d2" + "x-ms-request-id": "a10ced36-a6df-4c80-a23a-9f151f641d50" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/35d8a3f5-b580-4ceb-b219-360ee10e2691?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/3da25995-fe30-420a-ae10-e7f334199e2d?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "8b2db3c053c47e9758ff3843e438617a", "x-ms-return-client-request-id": "true" }, @@ -155,89 +143,46 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:43:48 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/35d8a3f5-b580-4ceb-b219-360ee10e2691?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:22:36 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/3da25995-fe30-420a-ae10-e7f334199e2d?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "8b2db3c053c47e9758ff3843e438617a", - "x-ms-request-id": "4cc1d62a-c4fe-4dc5-848d-33d1222e380e" + "x-ms-request-id": "a6e4bdb5-38bf-44c4-81a6-4590401d8978" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/35d8a3f5-b580-4ceb-b219-360ee10e2691?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/3da25995-fe30-420a-ae10-e7f334199e2d?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "908e47919e800de08d208ed8170b18aa", "x-ms-return-client-request-id": "true" }, "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:43:49 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/35d8a3f5-b580-4ceb-b219-360ee10e2691?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "908e47919e800de08d208ed8170b18aa", - "x-ms-request-id": "6fa94790-f39f-4003-8de0-eb6d68d70079" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/35d8a3f5-b580-4ceb-b219-360ee10e2691?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "5d58a58d064bd7bd7bea922e086e5cdd", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "399", + "Content-Length": "392", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:43:50 GMT", + "Date": "Thu, 30 Sep 2021 06:22:37 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "5d58a58d064bd7bd7bea922e086e5cdd", - "x-ms-correlation-request-id": "f258c533-230c-4176-ab01-11e860a37259", - "x-ms-request-id": "c5344439-090f-473a-b7b1-0c700153e214", + "x-ms-client-request-id": "908e47919e800de08d208ed8170b18aa", + "x-ms-correlation-request-id": "db078ed5-6396-4844-a902-079e14103f85", + "x-ms-request-id": "fdec95af-91ae-45df-b352-f67ab85a4d0e", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger175846718", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/triggers/Trigger175846718", "name": "Trigger175846718", "type": "Microsoft.Synapse/workspaces/triggers", "properties": { @@ -247,21 +192,18 @@ }, "runtimeState": "Stopped" }, - "etag": "030266db-0000-0800-0000-600b2af50000" + "etag": "2e003081-0000-0100-0000-615557ad0000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger175846718/getEventSubscriptionStatus?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/triggers/Trigger175846718/getEventSubscriptionStatus?api-version=2020-12-01", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-3eeabe63d822b64b96a336a19203e0f3-f6577ea5cf9eb549-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "f917aefc5dac21cdd220fea3c5bf664d", + "traceparent": "00-ec429f21fa762a47888574a451299820-59c7c3027337d04f-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "5d58a58d064bd7bd7bea922e086e5cdd", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -270,18 +212,15 @@ "Cache-Control": "no-cache", "Content-Length": "53", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:43:50 GMT", + "Date": "Thu, 30 Sep 2021 06:22:37 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "f917aefc5dac21cdd220fea3c5bf664d", - "x-ms-correlation-request-id": "461a5ff2-0af5-4551-aab8-769a25b1b0ac", - "x-ms-request-id": "601fe166-0e5b-4147-bb5f-b4a5d004527c", + "x-ms-client-request-id": "5d58a58d064bd7bd7bea922e086e5cdd", + "x-ms-correlation-request-id": "54a7485b-f1c9-4802-aaf4-048faa27e296", + "x-ms-request-id": "ae840fb2-709b-4f39-ad34-880ff83266c0", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -290,17 +229,14 @@ } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger175846718?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/triggers/Trigger175846718?api-version=2020-12-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-74ca91d26691924a8e78c00616f82dc0-4aaa7743b1db704e-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "3eb68ee604df8a2e89b715960bb1041e", + "traceparent": "00-e512671b2ccdff43ad3188f205d23105-5003598005f4a246-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "f917aefc5dac21cdd220fea3c5bf664d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -308,35 +244,66 @@ "ResponseHeaders": { "Access-Control-Allow-Headers": "Location", "Access-Control-Expose-Headers": "Location", - "Content-Length": "372", + "Content-Length": "365", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:43:50 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/cd43360b-33e7-4919-a721-d3d7e2b0b212?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:22:37 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/5101b598-2136-4817-8155-ae397933dcf3?api-version=2020-12-01", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "3eb68ee604df8a2e89b715960bb1041e", - "x-ms-request-id": "5d708b11-7e1b-45aa-bc24-0ffb2742e46a" + "x-ms-client-request-id": "f917aefc5dac21cdd220fea3c5bf664d", + "x-ms-request-id": "a9e9bca1-f022-4d87-a056-6c594920afab" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger175846718", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/triggers/Trigger175846718", "recordId": 0, "state": "Deleting", "created": "0001-01-01T00:00:00", "changed": "0001-01-01T00:00:00", "type": "Trigger", "name": "Trigger175846718", - "operationId": "cd43360b-33e7-4919-a721-d3d7e2b0b212" + "operationId": "5101b598-2136-4817-8155-ae397933dcf3" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/cd43360b-33e7-4919-a721-d3d7e2b0b212?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/5101b598-2136-4817-8155-ae397933dcf3?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "68dbb0c41ff330fed8378a2a071a11bb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 30 Sep 2021 06:22:37 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/5101b598-2136-4817-8155-ae397933dcf3?api-version=2020-12-01", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "68dbb0c41ff330fed8378a2a071a11bb", + "x-ms-request-id": "91f8bab0-859f-4bb2-a1d8-57ffcc7715e4" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/5101b598-2136-4817-8155-ae397933dcf3?api-version=2020-12-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7a4845831db8f7fe7f8d6ff447371621", "x-ms-return-client-request-id": "true" }, @@ -353,27 +320,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:43:50 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/cd43360b-33e7-4919-a721-d3d7e2b0b212?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:22:39 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/5101b598-2136-4817-8155-ae397933dcf3?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "7a4845831db8f7fe7f8d6ff447371621", - "x-ms-request-id": "232625fd-ffdd-449e-8698-34a5b6249e11" + "x-ms-request-id": "18fa59c9-0a27-4967-8271-51b4c65c5a04" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/cd43360b-33e7-4919-a721-d3d7e2b0b212?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/5101b598-2136-4817-8155-ae397933dcf3?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "15dee01bfee3c7598f8566a87a03836f", "x-ms-return-client-request-id": "true" }, @@ -390,45 +354,76 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:43:51 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/cd43360b-33e7-4919-a721-d3d7e2b0b212?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:22:40 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/5101b598-2136-4817-8155-ae397933dcf3?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "15dee01bfee3c7598f8566a87a03836f", - "x-ms-request-id": "c96b3b68-44c8-4ba2-bc26-f73b2eb339fc" + "x-ms-request-id": "84f73b84-3f8e-465b-8aa7-84bdbc566195" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/cd43360b-33e7-4919-a721-d3d7e2b0b212?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/5101b598-2136-4817-8155-ae397933dcf3?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "c6125aa58a69a765b1e3e866af09e9a0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 30 Sep 2021 06:22:41 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/5101b598-2136-4817-8155-ae397933dcf3?api-version=2020-12-01", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "c6125aa58a69a765b1e3e866af09e9a0", + "x-ms-request-id": "ee766817-e2b9-40fc-805e-ebe573581937" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/5101b598-2136-4817-8155-ae397933dcf3?api-version=2020-12-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "270f6920fc3b85d7eb80ea33b7567d7b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Content-Length": "0", - "Date": "Fri, 22 Jan 2021 19:43:52 GMT", + "Date": "Thu, 30 Sep 2021 06:22:42 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "c6125aa58a69a765b1e3e866af09e9a0", - "x-ms-request-id": "9d6d4a3d-82d2-4f94-9586-fb4ab1664688" + "x-ms-client-request-id": "270f6920fc3b85d7eb80ea33b7567d7b", + "x-ms-request-id": "83c6e428-5a09-4fc7-bf18-302ca38c3561" }, "ResponseBody": [] } ], "Variables": { - "AZURE_SYNAPSE_WORKSPACE_URL": "https://workspacechhamosynapse.dev.azuresynapse.net", + "AZURE_SYNAPSE_WORKSPACE_URL": "https://testsynapseworkspace.dev.azuresynapse.net", "RandomSeed": "992192279" } } \ No newline at end of file diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/TriggerClientLiveTests/TestEventStatusAsync.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/TriggerClientLiveTests/TestEventStatusAsync.json index a06dd88ca967..82de268f2cda 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/TriggerClientLiveTests/TestEventStatusAsync.json +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/TriggerClientLiveTests/TestEventStatusAsync.json @@ -1,18 +1,15 @@ { "Entries": [ { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger137064619?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/triggers/Trigger137064619?api-version=2020-12-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "76", "Content-Type": "application/json", - "traceparent": "00-134ebe7740adaf48b1c843969e6a52a9-5062f9f618e21e4c-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "traceparent": "00-9a8459c7749067478c9aee9a7c945409-cf18dadb9640b841-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7287732c62e89cbf0cc1edbf02af5074", "x-ms-return-client-request-id": "true" }, @@ -34,37 +31,34 @@ "Location", "Retry-After" ], - "Content-Length": "447", + "Content-Length": "441", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:39 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/0e4ee64c-5abf-49a4-8f50-131024c2b166?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:23:09 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a85a0639-11e7-4f8b-ae7b-839eca06f1cb?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "7287732c62e89cbf0cc1edbf02af5074", - "x-ms-request-id": "31f0b4ad-ba39-4ddd-88d4-9be871b9aa9c" + "x-ms-request-id": "52b11592-9d55-4d4a-8d5b-95c82bd1540a" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger137064619", - "recordId": 996521, + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/triggers/Trigger137064619", + "recordId": 2424618, "state": "Creating", - "created": "2021-01-22T19:44:39.5966667Z", - "changed": "2021-01-22T19:44:39.5966667Z", + "created": "2021-09-30T06:23:10.4566667Z", + "changed": "2021-09-30T06:23:10.4566667Z", "type": "Trigger", "name": "Trigger137064619", - "operationId": "0e4ee64c-5abf-49a4-8f50-131024c2b166", - "artifactId": "7E3A3FE9-6A2A-482B-8DB0-3BBD4FB6E9E5" + "operationId": "a85a0639-11e7-4f8b-ae7b-839eca06f1cb", + "artifactId": "F8847C06-30CD-4A83-AE57-462E60725817" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/0e4ee64c-5abf-49a4-8f50-131024c2b166?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a85a0639-11e7-4f8b-ae7b-839eca06f1cb?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "3488f2d2372b689e22db4efb80b8e725", "x-ms-return-client-request-id": "true" }, @@ -81,27 +75,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:39 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/0e4ee64c-5abf-49a4-8f50-131024c2b166?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:23:09 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a85a0639-11e7-4f8b-ae7b-839eca06f1cb?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "3488f2d2372b689e22db4efb80b8e725", - "x-ms-request-id": "16a0d7cd-1101-4208-a756-2bb921044e5d" + "x-ms-request-id": "875e81a4-fe46-4eed-bb0a-8847ac2e26df" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/0e4ee64c-5abf-49a4-8f50-131024c2b166?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a85a0639-11e7-4f8b-ae7b-839eca06f1cb?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a4998ad116e74d68bf4808e14673132e", "x-ms-return-client-request-id": "true" }, @@ -118,27 +109,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:41 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/0e4ee64c-5abf-49a4-8f50-131024c2b166?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:23:11 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a85a0639-11e7-4f8b-ae7b-839eca06f1cb?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "a4998ad116e74d68bf4808e14673132e", - "x-ms-request-id": "7a602f56-874f-4c3e-ba8e-25f4d4e367b2" + "x-ms-request-id": "aab1e522-7060-4ad0-a113-b7e927336fea" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/0e4ee64c-5abf-49a4-8f50-131024c2b166?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a85a0639-11e7-4f8b-ae7b-839eca06f1cb?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "10edf6411c26ed490533627190b8beb2", "x-ms-return-client-request-id": "true" }, @@ -155,27 +143,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:42 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/0e4ee64c-5abf-49a4-8f50-131024c2b166?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:23:12 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a85a0639-11e7-4f8b-ae7b-839eca06f1cb?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "10edf6411c26ed490533627190b8beb2", - "x-ms-request-id": "6ea0fa6c-f877-4962-aa08-94977f5ed878" + "x-ms-request-id": "18395766-7e0c-4edb-ad24-428157115360" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/0e4ee64c-5abf-49a4-8f50-131024c2b166?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/a85a0639-11e7-4f8b-ae7b-839eca06f1cb?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "fe79f51fda45bb0f893a74e32ebc21ae", "x-ms-return-client-request-id": "true" }, @@ -183,24 +168,21 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "399", + "Content-Length": "392", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:43 GMT", + "Date": "Thu, 30 Sep 2021 06:23:13 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "fe79f51fda45bb0f893a74e32ebc21ae", - "x-ms-correlation-request-id": "4b658e18-90b0-4843-8e31-c406619ecb2f", - "x-ms-request-id": "e36591a8-980a-4bbe-a5c6-3f22e307c6c5", + "x-ms-correlation-request-id": "8ee2a5e4-9544-407d-ae03-e993baf12de3", + "x-ms-request-id": "c24c16aa-34e9-45fd-bd0e-da551e54eba5", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger137064619", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/triggers/Trigger137064619", "name": "Trigger137064619", "type": "Microsoft.Synapse/workspaces/triggers", "properties": { @@ -210,20 +192,17 @@ }, "runtimeState": "Stopped" }, - "etag": "04029e01-0000-0800-0000-600b2b2a0000" + "etag": "2e004c81-0000-0100-0000-615557d10000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger137064619/getEventSubscriptionStatus?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/triggers/Trigger137064619/getEventSubscriptionStatus?api-version=2020-12-01", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-bf6ffabbb0a0af45a9398d2925cac451-0b9ff9808d431b46-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "traceparent": "00-05e05d50c4006547a567c66ba8d42442-a06764db9d9d6b4c-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "8ab920c8d6cbb5ff41ac9fb4b4f6bd07", "x-ms-return-client-request-id": "true" }, @@ -233,18 +212,15 @@ "Cache-Control": "no-cache", "Content-Length": "53", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:43 GMT", + "Date": "Thu, 30 Sep 2021 06:23:13 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "8ab920c8d6cbb5ff41ac9fb4b4f6bd07", - "x-ms-correlation-request-id": "4a096f21-8d49-41eb-9084-27f952146aae", - "x-ms-request-id": "041eda90-fca6-49f7-9ec5-eb68f963b947", + "x-ms-correlation-request-id": "967a2d20-b2fd-4227-9e1a-db99339b8780", + "x-ms-request-id": "dddf3971-d25c-462b-9b82-8a5aef5c190b", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -253,16 +229,13 @@ } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger137064619?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/triggers/Trigger137064619?api-version=2020-12-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-fa31607428677249b8ebebcd7478e680-c8fc66c7f75dc640-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "traceparent": "00-abf0fab2ce93b74d9061aff0a4596bd6-c4c59319fbec6d40-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "51c2568a14f966e8e63186eba766be48", "x-ms-return-client-request-id": "true" }, @@ -271,35 +244,32 @@ "ResponseHeaders": { "Access-Control-Allow-Headers": "Location", "Access-Control-Expose-Headers": "Location", - "Content-Length": "372", + "Content-Length": "365", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:43 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/3f1753ac-ef5b-42a8-89a4-54fdd27f53f4?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:23:13 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/153b00f9-9d6b-47cb-a858-f3c0a3f8b726?api-version=2020-12-01", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "51c2568a14f966e8e63186eba766be48", - "x-ms-request-id": "8ef3962a-f388-436e-8974-d385cf74553b" + "x-ms-request-id": "a4bf306d-48db-406b-86b2-31f114851ae1" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger137064619", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/triggers/Trigger137064619", "recordId": 0, "state": "Deleting", "created": "0001-01-01T00:00:00", "changed": "0001-01-01T00:00:00", "type": "Trigger", "name": "Trigger137064619", - "operationId": "3f1753ac-ef5b-42a8-89a4-54fdd27f53f4" + "operationId": "153b00f9-9d6b-47cb-a858-f3c0a3f8b726" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/3f1753ac-ef5b-42a8-89a4-54fdd27f53f4?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/153b00f9-9d6b-47cb-a858-f3c0a3f8b726?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d8586c7dd0fab3b43852a3994f130ddb", "x-ms-return-client-request-id": "true" }, @@ -316,27 +286,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:43 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/3f1753ac-ef5b-42a8-89a4-54fdd27f53f4?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:23:13 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/153b00f9-9d6b-47cb-a858-f3c0a3f8b726?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "d8586c7dd0fab3b43852a3994f130ddb", - "x-ms-request-id": "94242be5-8be0-4985-ba19-6c7072fa3015" + "x-ms-request-id": "7f558b7a-bba6-426c-a28f-9fdd5e85c26d" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/3f1753ac-ef5b-42a8-89a4-54fdd27f53f4?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/153b00f9-9d6b-47cb-a858-f3c0a3f8b726?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "00a356ee4e4d56096f7a5a35574f2b8b", "x-ms-return-client-request-id": "true" }, @@ -353,45 +320,110 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:44 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/3f1753ac-ef5b-42a8-89a4-54fdd27f53f4?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:23:15 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/153b00f9-9d6b-47cb-a858-f3c0a3f8b726?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "00a356ee4e4d56096f7a5a35574f2b8b", - "x-ms-request-id": "1b21de91-ac48-471f-8e3c-8383fc6c9e8b" + "x-ms-request-id": "c59f812c-e16a-4a69-b445-f9e7564ceffb" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/3f1753ac-ef5b-42a8-89a4-54fdd27f53f4?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/153b00f9-9d6b-47cb-a858-f3c0a3f8b726?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "3b6df42ae50d404efef537ac904df8e2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 30 Sep 2021 06:23:16 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/153b00f9-9d6b-47cb-a858-f3c0a3f8b726?api-version=2020-12-01", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "3b6df42ae50d404efef537ac904df8e2", + "x-ms-request-id": "5f2777d0-afaf-4d80-8272-7487b736a15a" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/153b00f9-9d6b-47cb-a858-f3c0a3f8b726?api-version=2020-12-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "e4aae2b607b72f4563026980767e5ce8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 30 Sep 2021 06:23:17 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/153b00f9-9d6b-47cb-a858-f3c0a3f8b726?api-version=2020-12-01", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "e4aae2b607b72f4563026980767e5ce8", + "x-ms-request-id": "1bb7d0de-e20f-4c29-af26-de0e314dffd3" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/153b00f9-9d6b-47cb-a858-f3c0a3f8b726?api-version=2020-12-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "5b6f1826d2a508cd08630158175dc521", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Content-Length": "0", - "Date": "Fri, 22 Jan 2021 19:44:46 GMT", + "Date": "Thu, 30 Sep 2021 06:23:18 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "3b6df42ae50d404efef537ac904df8e2", - "x-ms-request-id": "6d169808-d2e3-4f1e-a30e-51e1af29fc68" + "x-ms-client-request-id": "5b6f1826d2a508cd08630158175dc521", + "x-ms-request-id": "83225c5a-5be7-4e63-a526-a9df18cfe56d" }, "ResponseBody": [] } ], "Variables": { - "AZURE_SYNAPSE_WORKSPACE_URL": "https://workspacechhamosynapse.dev.azuresynapse.net", + "AZURE_SYNAPSE_WORKSPACE_URL": "https://testsynapseworkspace.dev.azuresynapse.net", "RandomSeed": "858634053" } } \ No newline at end of file diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/TriggerClientLiveTests/TestGetTrigger.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/TriggerClientLiveTests/TestGetTrigger.json index d54e94b914da..e679493c1c51 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/TriggerClientLiveTests/TestGetTrigger.json +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/TriggerClientLiveTests/TestGetTrigger.json @@ -1,18 +1,15 @@ { "Entries": [ { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger324461666?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/triggers/Trigger324461666?api-version=2020-12-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "76", "Content-Type": "application/json", - "traceparent": "00-a7c46b826105a3449c1674d58d6e4792-4229daf95634c445-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "traceparent": "00-d5ceeee78b91b84cbfbfa2c766306b15-2768ef27c62bf54e-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b0d922153a99f9eb306ecdcc3e967b0a", "x-ms-return-client-request-id": "true" }, @@ -34,37 +31,34 @@ "Location", "Retry-After" ], - "Content-Length": "435", + "Content-Length": "441", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:43:52 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/0e850f00-3e11-4c48-a347-9baf6117ac9f?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:22:42 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/37078012-6993-4a2d-8356-6e3ce558685c?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "b0d922153a99f9eb306ecdcc3e967b0a", - "x-ms-request-id": "655e53fc-ae09-4c08-9fbe-7184d4c4f228" + "x-ms-request-id": "1f9838ed-92cb-499c-808d-3244052231e5" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger324461666", - "recordId": 996512, + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/triggers/Trigger324461666", + "recordId": 2424615, "state": "Creating", - "created": "2021-01-22T19:43:53.3Z", - "changed": "2021-01-22T19:43:53.3Z", + "created": "2021-09-30T06:22:43.2033333Z", + "changed": "2021-09-30T06:22:43.2033333Z", "type": "Trigger", "name": "Trigger324461666", - "operationId": "0e850f00-3e11-4c48-a347-9baf6117ac9f", - "artifactId": "FA240DFC-CFF5-43BA-A097-D6B11F5081FD" + "operationId": "37078012-6993-4a2d-8356-6e3ce558685c", + "artifactId": "4EB6296D-BA92-4683-AA43-7F489BD633AE" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/0e850f00-3e11-4c48-a347-9baf6117ac9f?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/37078012-6993-4a2d-8356-6e3ce558685c?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "38b167289d32c4f3d0f5572fdedfd16a", "x-ms-return-client-request-id": "true" }, @@ -81,102 +75,25 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:43:52 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/0e850f00-3e11-4c48-a347-9baf6117ac9f?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:22:42 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/37078012-6993-4a2d-8356-6e3ce558685c?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "38b167289d32c4f3d0f5572fdedfd16a", - "x-ms-request-id": "2626d119-6887-4cc5-9fda-39ea31a73f09" + "x-ms-request-id": "2041d821-57f6-498a-a964-a31661d1c10d" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/0e850f00-3e11-4c48-a347-9baf6117ac9f?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/37078012-6993-4a2d-8356-6e3ce558685c?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "6aea4f94bdb782d60b25981fe837168d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:43:54 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/0e850f00-3e11-4c48-a347-9baf6117ac9f?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6aea4f94bdb782d60b25981fe837168d", - "x-ms-request-id": "7c68eeb7-f1b5-463f-a919-af85efc133d2" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/0e850f00-3e11-4c48-a347-9baf6117ac9f?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "d7a49e4643e501d71bc3e2963be7d538", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:43:55 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/0e850f00-3e11-4c48-a347-9baf6117ac9f?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "d7a49e4643e501d71bc3e2963be7d538", - "x-ms-request-id": "46a60aad-e60c-4776-93cc-5729abad7366" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/0e850f00-3e11-4c48-a347-9baf6117ac9f?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "931fe7a8bcb86b76912e2c0c05d3db99", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -192,7595 +109,81 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:43:56 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/0e850f00-3e11-4c48-a347-9baf6117ac9f?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:22:44 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/37078012-6993-4a2d-8356-6e3ce558685c?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "931fe7a8bcb86b76912e2c0c05d3db99", - "x-ms-request-id": "54c8cd1b-7a3c-40f3-bc9c-d0473c9ce9df" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/0e850f00-3e11-4c48-a347-9baf6117ac9f?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "40e8c9defa3b518577e84ff4db3f4624", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "399", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:43:57 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-ms-client-request-id": "40e8c9defa3b518577e84ff4db3f4624", - "x-ms-correlation-request-id": "2586e8f6-6daa-4683-8e46-0ab14b90be58", - "x-ms-request-id": "ae07201e-f817-444e-ae75-f2668fd32aca", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger324461666", - "name": "Trigger324461666", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "030266e0-0000-0800-0000-600b2afc0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-261d2a08fcdee945b8437e0539679017-bbda29a58a3b474c-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "01775f5083178ad5273946b616cbfb47", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Length": "20272", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:43:57 GMT", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "01775f5083178ad5273946b616cbfb47", - "x-ms-request-id": "128acd7d-7bfb-4067-9f57-7109e1abaa8d" - }, - "ResponseBody": { - "value": [ - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger56446399", - "name": "Trigger56446399", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "f5012d73-0000-0800-0000-5fd2533c0000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger938529212", - "name": "Trigger938529212", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "f5016fea-0000-0800-0000-5fd257320000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger604607482", - "name": "Trigger604607482", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "f6015b08-0000-0800-0000-5fd2583a0000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger694784690", - "name": "Trigger694784690", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "f601cf09-0000-0800-0000-5fd258470000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger346538274", - "name": "Trigger346538274", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "f6011124-0000-0800-0000-5fd259340000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1964767865", - "name": "Trigger1964767865", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "f601eb25-0000-0800-0000-5fd259450000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1751712180", - "name": "Trigger1751712180", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "f601274c-0000-0800-0000-5fd25a6c0000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger711503755", - "name": "Trigger711503755", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "f6010d4d-0000-0800-0000-5fd25a730000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1712446015", - "name": "Trigger1712446015", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "f601deb1-0000-0800-0000-5fd25e3e0000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1222588758", - "name": "Trigger1222588758", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "f60152b3-0000-0800-0000-5fd25e4c0000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1163150338", - "name": "Trigger1163150338", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "f6011dca-0000-0800-0000-5fd25f180000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1055011545", - "name": "Trigger1055011545", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "f601cacb-0000-0800-0000-5fd25f270000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger235227369", - "name": "Trigger235227369", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "f7015c36-0000-0800-0000-5fd263430000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger330622409", - "name": "Trigger330622409", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "f7017d52-0000-0800-0000-5fd264350000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger258279549", - "name": "Trigger258279549", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "f7013d54-0000-0800-0000-5fd264480000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1937238322", - "name": "Trigger1937238322", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "f7010d6d-0000-0800-0000-5fd265300000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1438351414", - "name": "Trigger1438351414", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "f701af6e-0000-0800-0000-5fd265400000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1370548897", - "name": "Trigger1370548897", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "f701f59e-0000-0800-0000-5fd267030000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger225206473", - "name": "Trigger225206473", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "f7015fa0-0000-0800-0000-5fd267120000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/TestTrigger-asdf", - "name": "TestTrigger-asdf", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "fc01c140-0000-0800-0000-5fd28ff90000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger277322190", - "name": "Trigger277322190", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "1a020b08-0000-0800-0000-5fd3ad2a0000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger533902365", - "name": "Trigger533902365", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "1a02cc09-0000-0800-0000-5fd3ad3c0000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger2050746666", - "name": "Trigger2050746666", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "6202c89b-0000-0800-0000-5fd7979a0000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1963667612", - "name": "Trigger1963667612", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "6202d29c-0000-0800-0000-5fd797a50000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger2136579760", - "name": "Trigger2136579760", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "620262cd-0000-0800-0000-5fd7991d0000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger104997096", - "name": "Trigger104997096", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "6202f6cf-0000-0800-0000-5fd7992f0000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger694187999", - "name": "Trigger694187999", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "6202aff2-0000-0800-0000-5fd79a3a0000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger982066533", - "name": "Trigger982066533", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "620201f4-0000-0800-0000-5fd79a450000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger209853000", - "name": "Trigger209853000", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "84025700-0000-0800-0000-5fd8d4090000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1806891071", - "name": "Trigger1806891071", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "8402cc02-0000-0800-0000-5fd8d41d0000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger250196196", - "name": "Trigger250196196", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "84029b39-0000-0800-0000-5fd8d5b90000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1443463744", - "name": "Trigger1443463744", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "8402283b-0000-0800-0000-5fd8d5c50000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger2002432701", - "name": "Trigger2002432701", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "8402f15f-0000-0800-0000-5fd8d6e10000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1101946319", - "name": "Trigger1101946319", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "8402f061-0000-0800-0000-5fd8d6ef0000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger61747177", - "name": "Trigger61747177", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "8702d5ba-0000-0800-0000-5fd8f1820000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger998075970", - "name": "Trigger998075970", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "87021abd-0000-0800-0000-5fd8f1930000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger818895932", - "name": "Trigger818895932", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "87029edc-0000-0800-0000-5fd8f28a0000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1730714410", - "name": "Trigger1730714410", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "8702b4de-0000-0800-0000-5fd8f29c0000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger371058577", - "name": "Trigger371058577", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "870298ff-0000-0800-0000-5fd8f3a70000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger52768059", - "name": "Trigger52768059", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "88028502-0000-0800-0000-5fd8f3bd0000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger899038259", - "name": "Trigger899038259", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "8802cb6c-0000-0800-0000-5fd8f71f0000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1826422556", - "name": "Trigger1826422556", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "8802a76e-0000-0800-0000-5fd8f7350000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1366547425", - "name": "Trigger1366547425", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "8802048e-0000-0800-0000-5fd8f8410000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1555225742", - "name": "Trigger1555225742", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "8802bd90-0000-0800-0000-5fd8f8590000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1843171455", - "name": "Trigger1843171455", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "8802f1b1-0000-0800-0000-5fd8f9640000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1919554351", - "name": "Trigger1919554351", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "880225b5-0000-0800-0000-5fd8f97d0000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1335994905", - "name": "Trigger1335994905", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "4200277a-0000-0800-0000-5fda87030000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1050015707", - "name": "Trigger1050015707", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "4200187f-0000-0800-0000-5fda87170000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger877067340", - "name": "Trigger877067340", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "42006fbf-0000-0800-0000-5fda88100000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger2107231899", - "name": "Trigger2107231899", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "4200b4c5-0000-0800-0000-5fda88290000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - } - ], - "nextLink": "https://workspacechhamosynapse.dev.azuresynapse.net:443/triggers?api-version=2019-06-01-preview\u0026%24skipToken=%2BRID%3A%7ESl8ZAKxwhABoUgAAAAD8BA%3D%3D%23RT%3A1%23TRC%3A50%23ISV%3A2%23IEO%3A65551%23QCF%3A1" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger56446399?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-a16dadde1fd513429d0cbbf9c8ccccae-c12f8ab1c96bc442-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "71b848e794ffadfd62cd1bcf6d828f51", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "397", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:43:57 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-ms-client-request-id": "71b848e794ffadfd62cd1bcf6d828f51", - "x-ms-correlation-request-id": "6e501a69-854d-4519-9e5d-66c10baf4fbd", - "x-ms-request-id": "7f43d94f-61c2-4391-bd96-95df7ce27c0b", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger56446399", - "name": "Trigger56446399", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "f5012d73-0000-0800-0000-5fd2533c0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger938529212?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-b16445dcfa8ac44c82d67d75d3cb3c2f-87b989ccbe460f42-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "a6bc08e7da5c5a81f45e1801b4ce3bac", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "399", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:43:57 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-ms-client-request-id": "a6bc08e7da5c5a81f45e1801b4ce3bac", - "x-ms-correlation-request-id": "3406b1ca-563f-4b28-8687-e9a6ee1b36a8", - "x-ms-request-id": "b6f9439e-5fa0-4316-8a7f-1450b6a97fcc", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger938529212", - "name": "Trigger938529212", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "f5016fea-0000-0800-0000-5fd257320000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger604607482?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-ae10affe2a908946b327f3353094fe36-4c1cf2f37b73bd4a-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "920c08edd586bb2561c99e4a68051ca5", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "399", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:43:57 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-ms-client-request-id": "920c08edd586bb2561c99e4a68051ca5", - "x-ms-correlation-request-id": "0171950c-966b-430c-8f4b-6fe8829b1577", - "x-ms-request-id": "cc8eba40-180b-4682-aeca-c7877603bac0", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger604607482", - "name": "Trigger604607482", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "f6015b08-0000-0800-0000-5fd2583a0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger694784690?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-7641581caa07d449a9ad9c3637c9213f-3675d62ec28e5d42-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "0ecef4a9550f0deac65e7ca07cfbf994", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "399", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:43:58 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-ms-client-request-id": "0ecef4a9550f0deac65e7ca07cfbf994", - "x-ms-correlation-request-id": "a451e2e7-e8b8-48c3-997e-43972119e15f", - "x-ms-request-id": "37ddd628-40c9-4af0-904b-ef74ef7c83c9", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger694784690", - "name": "Trigger694784690", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "f601cf09-0000-0800-0000-5fd258470000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger346538274?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-428ef0a528355f4b90ed5ae079da3fae-d1fa3a0e2b20424e-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "64e26e92fd7512cbe20044923b37f1ef", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "399", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:43:58 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-ms-client-request-id": "64e26e92fd7512cbe20044923b37f1ef", - "x-ms-correlation-request-id": "f0ad983c-3eeb-4655-82b6-97546940d277", - "x-ms-request-id": "6e27373f-760b-4b53-b4e3-0ccc170275b5", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger346538274", - "name": "Trigger346538274", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "f6011124-0000-0800-0000-5fd259340000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger1964767865?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-059be05e8b4b384ca4f94b5f649f3082-ec18b4e6f4b66745-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "bf5873412cff979d1dffcb2758843f65", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "401", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:43:58 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-ms-client-request-id": "bf5873412cff979d1dffcb2758843f65", - "x-ms-correlation-request-id": "a4c987af-04e0-4cff-8d36-ac7f77424391", - "x-ms-request-id": "e7f02b89-8ca7-484f-992d-5830fdeb7c48", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1964767865", - "name": "Trigger1964767865", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "f601eb25-0000-0800-0000-5fd259450000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger1751712180?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-21b92f939507d446a50a67808378bb96-881af6f8904bea47-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "fab70ad0b722ac3028bb2b0e1158d18f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "401", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:43:58 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-ms-client-request-id": "fab70ad0b722ac3028bb2b0e1158d18f", - "x-ms-correlation-request-id": "3ff59c33-9af4-47d1-b719-9c58401898ae", - "x-ms-request-id": "b140babf-8503-4e45-a734-678676130867", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1751712180", - "name": "Trigger1751712180", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "f601274c-0000-0800-0000-5fd25a6c0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger711503755?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-e5461ae3cd0b1e4692df7c4255b3591d-4462305165e77c43-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "095f8c6c39a36594d04b477531a3ba5d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "399", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:43:58 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-ms-client-request-id": "095f8c6c39a36594d04b477531a3ba5d", - "x-ms-correlation-request-id": "e59f46ee-ebd5-4132-9929-22f9ccad8822", - "x-ms-request-id": "33a087a5-7213-44e9-85f3-5f8a45919c0b", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger711503755", - "name": "Trigger711503755", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "f6010d4d-0000-0800-0000-5fd25a730000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger1712446015?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-af25a6567a11d044afa8508d7fbe563e-f8de41d23f7b8344-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "30c2dec0f77f89cd42ac9743008e86c5", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "401", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:43:58 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-ms-client-request-id": "30c2dec0f77f89cd42ac9743008e86c5", - "x-ms-correlation-request-id": "24998419-2bf9-42b8-9bdd-2d229460efde", - "x-ms-request-id": "657d0f34-27bf-4473-8795-c6b4379c199b", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1712446015", - "name": "Trigger1712446015", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "f601deb1-0000-0800-0000-5fd25e3e0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger1222588758?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-05ba3e9b61a1554a9357453112ffdfff-7fc1d15fb5126242-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "cbba3c2d362497c2755229d670ba7a84", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "401", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:43:58 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-ms-client-request-id": "cbba3c2d362497c2755229d670ba7a84", - "x-ms-correlation-request-id": "c4e059f1-5433-4b5e-aa3b-04cf2a87fbf5", - "x-ms-request-id": "57f88040-b161-425d-8e9e-2993093283c4", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1222588758", - "name": "Trigger1222588758", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "f60152b3-0000-0800-0000-5fd25e4c0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger1163150338?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-5fc54fb4718b1d42a0c26c099e456965-081fd18455909941-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "324dcd01a196750fbfd6c6f7a1516442", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "401", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:43: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-ms-client-request-id": "324dcd01a196750fbfd6c6f7a1516442", - "x-ms-correlation-request-id": "d5fb1b95-2cb4-44cc-91d4-144ae463b404", - "x-ms-request-id": "cdad9281-f5b0-4ccb-8016-3ad711011c91", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1163150338", - "name": "Trigger1163150338", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "f6011dca-0000-0800-0000-5fd25f180000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger1055011545?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-9fe5ee4e6747c84199f8e665a36fa14e-317443ab762a8645-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "f54782c5efe98a381c2aba2dcef71888", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "401", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:43: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-ms-client-request-id": "f54782c5efe98a381c2aba2dcef71888", - "x-ms-correlation-request-id": "967e6d60-7a5b-4f7c-b820-6195d4f4ac48", - "x-ms-request-id": "a6b1b018-ac61-4261-bde7-08b8953a9f2a", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1055011545", - "name": "Trigger1055011545", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "f601cacb-0000-0800-0000-5fd25f270000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger235227369?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-b887ae0a5a79034db05691e602de63fd-5d5b8790b723f042-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "3341123154418c2f2c450c4e6fcbf524", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "399", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:43: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-ms-client-request-id": "3341123154418c2f2c450c4e6fcbf524", - "x-ms-correlation-request-id": "3e5fcc46-d572-414b-8e66-f3b59400644b", - "x-ms-request-id": "58c7e6d7-d91e-4cb2-aee8-b583843783ff", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger235227369", - "name": "Trigger235227369", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "f7015c36-0000-0800-0000-5fd263430000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger330622409?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-02af8afd07dbdd458d10aae9ea25d1c9-bea33cdc1be5334a-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "ed11e7ed8472129b95c2156be6e1a6c8", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "399", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:43: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-ms-client-request-id": "ed11e7ed8472129b95c2156be6e1a6c8", - "x-ms-correlation-request-id": "9fd46b76-c7e4-44a9-a6ca-082d02c70141", - "x-ms-request-id": "da6debb2-7b09-4f8b-9197-e01d77fe9f52", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger330622409", - "name": "Trigger330622409", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "f7017d52-0000-0800-0000-5fd264350000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger258279549?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-0634fcb16e482b43972091a66c11703c-ca274e830ce17347-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "8fc53ebd310f710053bbc8a3e2ea1b51", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "399", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:43: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-ms-client-request-id": "8fc53ebd310f710053bbc8a3e2ea1b51", - "x-ms-correlation-request-id": "b822d15f-604d-4b16-acf6-c48e277157eb", - "x-ms-request-id": "a9962b71-9f16-4680-9ced-c66ac07f42ce", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger258279549", - "name": "Trigger258279549", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "f7013d54-0000-0800-0000-5fd264480000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger1937238322?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-5642dd68cd184e4ab3b409d49618feee-94d6da44ec52fe45-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "e74096352be5ac15762f9d7e3ec3a54a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "401", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:43: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-ms-client-request-id": "e74096352be5ac15762f9d7e3ec3a54a", - "x-ms-correlation-request-id": "c787174a-8255-4d0f-90cf-1e8ce6a5464f", - "x-ms-request-id": "92cd4b1d-e18f-40c0-ac58-96ef0b47589b", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1937238322", - "name": "Trigger1937238322", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "f7010d6d-0000-0800-0000-5fd265300000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger1438351414?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-390703e6291f6048b3253875adcd7dd4-d8134c56e4898a4b-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "3090449f6505bb15e6a09ab7bbf82faa", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "401", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:00 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-ms-client-request-id": "3090449f6505bb15e6a09ab7bbf82faa", - "x-ms-correlation-request-id": "93ac638a-1ffa-4af2-bf39-6f87bf5ccf4c", - "x-ms-request-id": "7218ee42-56f2-4882-bfe5-2300ea99b1ce", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1438351414", - "name": "Trigger1438351414", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "f701af6e-0000-0800-0000-5fd265400000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger1370548897?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-e67c29291ec82c47a1276e145c409f7a-6f6d82eb348d0048-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "5035c4a7bea192e2291818df9382328f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "401", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:00 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-ms-client-request-id": "5035c4a7bea192e2291818df9382328f", - "x-ms-correlation-request-id": "8435976a-687f-44cf-8f06-670604e03762", - "x-ms-request-id": "d41325a9-cd63-4108-8072-f3f5ec0bf9a1", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1370548897", - "name": "Trigger1370548897", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "f701f59e-0000-0800-0000-5fd267030000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger225206473?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-2423aa1e48acce46ae90a63cd4cf3e6f-5cb1acb74a41c74e-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "9e037e15ea59cf4b80840144905ef07e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "399", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:00 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-ms-client-request-id": "9e037e15ea59cf4b80840144905ef07e", - "x-ms-correlation-request-id": "e1320143-1f6c-4988-a1ed-f3b1af56d2a3", - "x-ms-request-id": "30e1b25b-825b-44cf-a7eb-b81f729ad5b0", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger225206473", - "name": "Trigger225206473", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "f7015fa0-0000-0800-0000-5fd267120000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/TestTrigger-asdf?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-8126022c3f12444882c9b6cb582cc406-cf49b09630e27b4c-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "79d6f300558ee0a961fe07ed4d352863", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "399", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:00 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-ms-client-request-id": "79d6f300558ee0a961fe07ed4d352863", - "x-ms-correlation-request-id": "7a53106c-2568-4314-b69e-9d4a1a160d8e", - "x-ms-request-id": "ffd7d935-6ea7-4505-afa1-2d0279667f4a", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/TestTrigger-asdf", - "name": "TestTrigger-asdf", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "fc01c140-0000-0800-0000-5fd28ff90000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger277322190?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-b1ec61c1b5739847b47a60ed617ba4c8-88c355eabea2be47-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "3da10a6d90f4bd507865cf1dbd9d01ca", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "399", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:00 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-ms-client-request-id": "3da10a6d90f4bd507865cf1dbd9d01ca", - "x-ms-correlation-request-id": "ce2d19ff-05f7-47be-8a6e-21dd1576ead2", - "x-ms-request-id": "fa9d5d45-50e4-433c-8110-6257902d62a6", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger277322190", - "name": "Trigger277322190", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "1a020b08-0000-0800-0000-5fd3ad2a0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger533902365?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-50265dd73360db409d4e328bdb9ecf2b-5f31bbd91df14c41-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "a0df9927b9abc001d5233d5be25e824b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "399", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:00 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-ms-client-request-id": "a0df9927b9abc001d5233d5be25e824b", - "x-ms-correlation-request-id": "4f2108db-8137-4099-845c-e207413851b6", - "x-ms-request-id": "8c8fcada-31ad-4903-8500-3ddbd252fbb9", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger533902365", - "name": "Trigger533902365", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "1a02cc09-0000-0800-0000-5fd3ad3c0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger2050746666?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-9a5d7fe67479664c99b961bb6cfee223-da300ade7d62054b-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "86d79d5bb3bc708aa2190028858b23c3", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "401", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:02 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-ms-client-request-id": "86d79d5bb3bc708aa2190028858b23c3", - "x-ms-correlation-request-id": "40446b70-94e0-46eb-a081-461afa07f606", - "x-ms-request-id": "eed20f1e-1d4d-44ae-9236-2265341d2231", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger2050746666", - "name": "Trigger2050746666", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "6202c89b-0000-0800-0000-5fd7979a0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger1963667612?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-93626b66b890fc48b4846c5d165eea4d-891f1ba2ae5d044c-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "b3c53cfc8856b4b709e168d152f5da1a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "401", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:02 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-ms-client-request-id": "b3c53cfc8856b4b709e168d152f5da1a", - "x-ms-correlation-request-id": "48ecf853-2fa2-4de1-9852-81c3a26b3e1b", - "x-ms-request-id": "fa4a88be-f4a3-49db-bd10-416dbbdea38c", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1963667612", - "name": "Trigger1963667612", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "6202d29c-0000-0800-0000-5fd797a50000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger2136579760?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-7b0863ef02fbb247ba15f207d766ab8b-6bd914330c254a4b-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "1fc184e37bc6740e0f6ffd91b8d83a49", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "401", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:02 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-ms-client-request-id": "1fc184e37bc6740e0f6ffd91b8d83a49", - "x-ms-correlation-request-id": "e0cf1a6c-af24-452a-b478-5b04986c1edc", - "x-ms-request-id": "149b40b2-5ead-4b9f-b46b-95076e152d04", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger2136579760", - "name": "Trigger2136579760", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "620262cd-0000-0800-0000-5fd7991d0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger104997096?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-d03d5b627f183d47835124c2508ea691-e7633b7811670247-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "a55e7a00ce98d3f5e5227ddb4ab91dac", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "399", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:02 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-ms-client-request-id": "a55e7a00ce98d3f5e5227ddb4ab91dac", - "x-ms-correlation-request-id": "37b27003-f5a6-4664-9f4f-4b0733ec80a7", - "x-ms-request-id": "b6151a09-bf20-422f-9d15-823dacb32f24", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger104997096", - "name": "Trigger104997096", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "6202f6cf-0000-0800-0000-5fd7992f0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger694187999?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-13696ac5af63994fb654e8c8fbcb086c-d81d549efa7aaa4f-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "0145e63f03ca81fd2e51a3e68a26fc30", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "399", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:02 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-ms-client-request-id": "0145e63f03ca81fd2e51a3e68a26fc30", - "x-ms-correlation-request-id": "4abc18f0-148b-4f24-bdea-074e1b711550", - "x-ms-request-id": "f33cd31d-2d4e-4a03-b0f1-36c6a6794ba0", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger694187999", - "name": "Trigger694187999", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "6202aff2-0000-0800-0000-5fd79a3a0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger982066533?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-1476f48b0b80b44ab2816362c037818b-2bdf6d72a9e76a42-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "d8d01fa6349714818fed39a3fd322956", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "399", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:02 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-ms-client-request-id": "d8d01fa6349714818fed39a3fd322956", - "x-ms-correlation-request-id": "8a3609f7-3a04-49de-b089-09d49903c6f7", - "x-ms-request-id": "819b6924-7d53-4e29-9abc-263db6c94661", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger982066533", - "name": "Trigger982066533", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "620201f4-0000-0800-0000-5fd79a450000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger209853000?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-7ca2b4404bc0bc42a6151dda7f3b5afd-578af23dbaa97e4f-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "d15251523993fd7f7cdc76472a0e49bf", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "399", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:03 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-ms-client-request-id": "d15251523993fd7f7cdc76472a0e49bf", - "x-ms-correlation-request-id": "b6e45595-1613-4214-89fd-f02e0e8dcb18", - "x-ms-request-id": "f583eb3a-4b4f-490c-970c-ba9b4212563a", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger209853000", - "name": "Trigger209853000", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "84025700-0000-0800-0000-5fd8d4090000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger1806891071?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-10a511cc59272e45a7629a6f3bac3aaf-81667231cc510649-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "2b354d2644e80a15643071dcc95983fc", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "401", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:03 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-ms-client-request-id": "2b354d2644e80a15643071dcc95983fc", - "x-ms-correlation-request-id": "9b970aa7-855f-4c70-a5b6-b3e1d354cc28", - "x-ms-request-id": "a2cdb5bf-f86e-42d4-83f4-68d702df1795", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1806891071", - "name": "Trigger1806891071", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "8402cc02-0000-0800-0000-5fd8d41d0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger250196196?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-088855cc5522ae4cb55a5a56e0cf1816-1c657c0e3185f34c-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "39944c282ad36d9c9fd35bbabd3ae980", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "399", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:03 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-ms-client-request-id": "39944c282ad36d9c9fd35bbabd3ae980", - "x-ms-correlation-request-id": "e4877789-4ca1-4cb7-9b57-2e098ad10459", - "x-ms-request-id": "5ff1695c-0f70-46a6-b144-c23075dfa221", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger250196196", - "name": "Trigger250196196", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "84029b39-0000-0800-0000-5fd8d5b90000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger1443463744?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-92fe21d3da97cc4baafa284bbf10586b-48afcd5d0044af4b-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "b07d79a4fdfc0d6e3c476d63c7a23323", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "401", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:03 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-ms-client-request-id": "b07d79a4fdfc0d6e3c476d63c7a23323", - "x-ms-correlation-request-id": "0974aaad-454f-4882-912e-5dfd307435d8", - "x-ms-request-id": "f2813d1a-4723-47a1-a9f6-14239f92e132", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1443463744", - "name": "Trigger1443463744", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "8402283b-0000-0800-0000-5fd8d5c50000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger2002432701?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-818e50491ad297429229f6b2e527acfc-87ec85b303cb8c4f-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "dd1e7a581079fcecb0c78b14e85a4d29", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "401", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:03 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-ms-client-request-id": "dd1e7a581079fcecb0c78b14e85a4d29", - "x-ms-correlation-request-id": "753f5d90-3ec4-4a70-bc3a-bd74f8a98833", - "x-ms-request-id": "1972fc8c-a2f6-4482-963d-13cf573d00df", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger2002432701", - "name": "Trigger2002432701", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "8402f15f-0000-0800-0000-5fd8d6e10000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger1101946319?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-d8ea110b1ea24449b6f72bbedb36bdf4-5521a13159b33940-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "4f38f146d2dc2affde87fd8cbc39a6fd", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "401", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:03 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-ms-client-request-id": "4f38f146d2dc2affde87fd8cbc39a6fd", - "x-ms-correlation-request-id": "0c646f00-7ccc-406c-8bf7-d688696c9dfe", - "x-ms-request-id": "c90c870b-16b6-40b3-822d-90712b2c331a", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1101946319", - "name": "Trigger1101946319", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "8402f061-0000-0800-0000-5fd8d6ef0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger61747177?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-aa6cca2414e0d74db2b05349fc0eacae-24ca7559882a014c-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "436238a00b1b94078d810034715924e2", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "397", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:04 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-ms-client-request-id": "436238a00b1b94078d810034715924e2", - "x-ms-correlation-request-id": "e1f5844a-5fb0-4156-98ca-9be6a1dba409", - "x-ms-request-id": "071b7134-7496-49c3-9b6b-69496592be63", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger61747177", - "name": "Trigger61747177", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "8702d5ba-0000-0800-0000-5fd8f1820000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger998075970?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-4962ed13c0d06f47bbae13b9d3b70f71-f2b76fae93e61542-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "d61c43f9e36a86477af4fff2135f3f77", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "399", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:04 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-ms-client-request-id": "d61c43f9e36a86477af4fff2135f3f77", - "x-ms-correlation-request-id": "0a6d66cc-5019-4c1c-8acf-b962dbd4c850", - "x-ms-request-id": "1eb480e4-d65d-420c-9069-0e28ea7ec807", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger998075970", - "name": "Trigger998075970", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "87021abd-0000-0800-0000-5fd8f1930000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger818895932?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-f9512782ecf9644694d219b038c0ffc2-ac30821fc2025b44-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "b0748e210af73a0de9a3c25ad2cab885", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "399", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:04 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-ms-client-request-id": "b0748e210af73a0de9a3c25ad2cab885", - "x-ms-correlation-request-id": "0dfe58c6-f1c2-48ee-9817-99eaf6a3c498", - "x-ms-request-id": "5502683e-7ffc-48d9-8f4f-923aaeb9bf3b", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger818895932", - "name": "Trigger818895932", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "87029edc-0000-0800-0000-5fd8f28a0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger1730714410?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-e63cd01e30c4cb4f8eea316ca2fe4814-4c4210f6fcaf064f-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "79921a62cf1cbc92f1dcc8270c14812d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "401", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:04 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-ms-client-request-id": "79921a62cf1cbc92f1dcc8270c14812d", - "x-ms-correlation-request-id": "2f43e4c5-7bbc-4c4e-977f-6c3308e6b496", - "x-ms-request-id": "3d47ad22-fca5-4549-906f-bd91da02c8a1", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1730714410", - "name": "Trigger1730714410", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "8702b4de-0000-0800-0000-5fd8f29c0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger371058577?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-71533a8fa3760d47b62cffc2acbebe76-f9bfbe7354365c4b-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "e313894274e4efea35e2ecc621ecb3b0", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "399", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:04 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-ms-client-request-id": "e313894274e4efea35e2ecc621ecb3b0", - "x-ms-correlation-request-id": "5514391a-3e32-4813-a413-44f6bb7b675c", - "x-ms-request-id": "ea461141-cb99-4e01-9888-941805364aa1", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger371058577", - "name": "Trigger371058577", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "870298ff-0000-0800-0000-5fd8f3a70000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger52768059?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-a2c3c90b7cef5041bffb407a8b3f3001-bfcbb57f4473204e-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "f88f7a3bc5cd525afbb7bf1b41e62ed4", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "397", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:04 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-ms-client-request-id": "f88f7a3bc5cd525afbb7bf1b41e62ed4", - "x-ms-correlation-request-id": "e49e8dfe-f3a4-436e-a87b-dee8fefe505f", - "x-ms-request-id": "547e8f85-4378-4c51-a91d-d7a8b778b0e9", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger52768059", - "name": "Trigger52768059", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "88028502-0000-0800-0000-5fd8f3bd0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger899038259?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-460a5f3d96a6aa4f822d6f5597a4a445-1819d78b74d8a941-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "49189422d5b7eea030a2433ae3cb9b04", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "399", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:05 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-ms-client-request-id": "49189422d5b7eea030a2433ae3cb9b04", - "x-ms-correlation-request-id": "1cbacc61-cb1d-4626-b439-a5ce3bd1f37e", - "x-ms-request-id": "6898f2d2-a6c7-40bf-af7f-681f91a5e1dc", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger899038259", - "name": "Trigger899038259", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "8802cb6c-0000-0800-0000-5fd8f71f0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger1826422556?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-e1b7c3e646a0cd4b952d299c8327123e-f1e6eda0a3803a4f-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "92ec182888857c602ec0e72db4cead4f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "401", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:05 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-ms-client-request-id": "92ec182888857c602ec0e72db4cead4f", - "x-ms-correlation-request-id": "a643d4da-8c62-4f2a-8f27-f016991438f7", - "x-ms-request-id": "fd44ecb7-aa5e-4fb1-8b6f-28d3173a7f2b", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1826422556", - "name": "Trigger1826422556", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "8802a76e-0000-0800-0000-5fd8f7350000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger1366547425?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-607313d4636edd43b55e6553db2f7c7f-e1f287e43cf88e42-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "8ca417b36ad365f8d9a1c72a82206f2f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "401", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:05 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-ms-client-request-id": "8ca417b36ad365f8d9a1c72a82206f2f", - "x-ms-correlation-request-id": "1454586c-daf8-459f-a1e6-b82eaa5ddaf8", - "x-ms-request-id": "2ac0e329-0c4b-4f09-95a3-08068d393121", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1366547425", - "name": "Trigger1366547425", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "8802048e-0000-0800-0000-5fd8f8410000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger1555225742?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-1c0032023dcb274b97303956bddb0ace-529cef58fab35842-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "29f3ba1b9bfa994f339c1bf6ee723962", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "401", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:05 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-ms-client-request-id": "29f3ba1b9bfa994f339c1bf6ee723962", - "x-ms-correlation-request-id": "db0a354a-8c35-4f70-b235-8f18c5de974f", - "x-ms-request-id": "b3fa3d0e-90d6-4c66-8d8d-1f0352962cff", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1555225742", - "name": "Trigger1555225742", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "8802bd90-0000-0800-0000-5fd8f8590000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger1843171455?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-24636d6957a0614ab843bede1530d80f-e1fe2cbf399dce43-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "cb86f4f40f27be311f86b8e3c135fa0d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "401", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:05 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-ms-client-request-id": "cb86f4f40f27be311f86b8e3c135fa0d", - "x-ms-correlation-request-id": "bbef7e63-22af-49df-b16a-be6a14a9f3a2", - "x-ms-request-id": "a23ace52-41a0-490f-97e4-9d034d2f40b4", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1843171455", - "name": "Trigger1843171455", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "8802f1b1-0000-0800-0000-5fd8f9640000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger1919554351?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-cf03e81c2ea3be4d900d3c8e721a1b29-6a5262f4c51e474d-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "fa11b75184da1854c70a59374e017666", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "401", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:06 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-ms-client-request-id": "fa11b75184da1854c70a59374e017666", - "x-ms-correlation-request-id": "ee298957-7d43-44b9-a0ef-2e4ecebca9ab", - "x-ms-request-id": "c29f25a5-341f-46ac-a2ae-1669c72b8d8f", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1919554351", - "name": "Trigger1919554351", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "880225b5-0000-0800-0000-5fd8f97d0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger1335994905?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-e9695ac6d52b16449060a7bfdb098380-fa07b4233f29fd4d-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "8d366567a3990c0888340973e36cd8fe", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "401", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:06 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-ms-client-request-id": "8d366567a3990c0888340973e36cd8fe", - "x-ms-correlation-request-id": "dfe7f382-6727-44ad-bdc1-2b69b6eb9b33", - "x-ms-request-id": "5ac67805-f907-4ed4-bfd3-0f1e5c157bba", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1335994905", - "name": "Trigger1335994905", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "4200277a-0000-0800-0000-5fda87030000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger1050015707?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-3c82e846546e844396deef1765fd5444-47edf47c878fc84b-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "37a50da13f6170879f6e031db5fa6f1e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "401", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:06 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-ms-client-request-id": "37a50da13f6170879f6e031db5fa6f1e", - "x-ms-correlation-request-id": "d8eaf44b-65d2-4e40-92af-fb5173b63458", - "x-ms-request-id": "787c922d-027e-4374-bb16-ca0add172fd4", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1050015707", - "name": "Trigger1050015707", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "4200187f-0000-0800-0000-5fda87170000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger877067340?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-4709bd9b03644e47a698a841b85353d0-072d44a1c311514d-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "5c7c510f6cffad74af0471a57ae0345b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "399", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:06 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-ms-client-request-id": "5c7c510f6cffad74af0471a57ae0345b", - "x-ms-correlation-request-id": "5340fc31-b60d-4ee0-8a5c-888377ce774c", - "x-ms-request-id": "a0469b60-6b9b-483c-9932-30e3e0fe99e8", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger877067340", - "name": "Trigger877067340", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "42006fbf-0000-0800-0000-5fda88100000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger2107231899?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-a19bee727a88624282dabc73ed64d2c8-28e685a1d5e01c4e-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "41955b313f5c2805ddc5ed2ba0ea568e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "401", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:06 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-ms-client-request-id": "41955b313f5c2805ddc5ed2ba0ea568e", - "x-ms-correlation-request-id": "51173c3b-8f71-431d-ad47-bb5c80f967e1", - "x-ms-request-id": "8f5f210a-d1bc-4b20-8b95-e91bc663b974", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger2107231899", - "name": "Trigger2107231899", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "4200b4c5-0000-0800-0000-5fda88290000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers?api-version=2019-06-01-preview\u0026%24skipToken=%2BRID%3A~Sl8ZAKxwhABoUgAAAAD8BA%3D%3D%23RT%3A1%23TRC%3A50%23ISV%3A2%23IEO%3A65551%23QCF%3A1", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-945182878237364c8aae1d772fff8ded-005c8c84b24bfd40-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "9264ebc57cf035fe99f7885ccde1f5be", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Length": "20279", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:06 GMT", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "9264ebc57cf035fe99f7885ccde1f5be", - "x-ms-request-id": "78ef28a4-c951-4cce-82d7-2887a3156470" - }, - "ResponseBody": { - "value": [ - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger2086378973", - "name": "Trigger2086378973", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "4300c302-0000-0800-0000-5fda891d0000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1800475066", - "name": "Trigger1800475066", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "43006007-0000-0800-0000-5fda89310000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger431322087", - "name": "Trigger431322087", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "790095b7-0000-0800-0000-5fdbafc50000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger2021752222", - "name": "Trigger2021752222", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "79004ec0-0000-0800-0000-5fdbafdd0000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1905850478", - "name": "Trigger1905850478", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "7a005917-0000-0800-0000-5fdbb0d30000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger792600914", - "name": "Trigger792600914", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "7a00bf20-0000-0800-0000-5fdbb0ed0000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger312272570", - "name": "Trigger312272570", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "7a00a981-0000-0800-0000-5fdbb1e70000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger441374363", - "name": "Trigger441374363", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "7a002687-0000-0800-0000-5fdbb1f70000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1129688383", - "name": "Trigger1129688383", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "1200e59f-0000-0800-0000-5fdcc8170000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1050941025", - "name": "Trigger1050941025", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "1200dda1-0000-0800-0000-5fdcc82a0000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger828400962", - "name": "Trigger828400962", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "12007add-0000-0800-0000-5fdcca050000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger807763024", - "name": "Trigger807763024", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "12001de0-0000-0800-0000-5fdcca190000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1945410976", - "name": "Trigger1945410976", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "1300940a-0000-0800-0000-5fdccba80000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger506963272", - "name": "Trigger506963272", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "1300920c-0000-0800-0000-5fdccbbc0000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger792987352", - "name": "Trigger792987352", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "15001704-0000-0800-0000-5fdcdd670000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger893127625", - "name": "Trigger893127625", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "15003a06-0000-0800-0000-5fdcdd790000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1126903680", - "name": "Trigger1126903680", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "15005322-0000-0800-0000-5fdcde7d0000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger968456924", - "name": "Trigger968456924", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "15008e24-0000-0800-0000-5fdcde910000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1787296514", - "name": "Trigger1787296514", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "15007345-0000-0800-0000-5fdcdf9c0000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1894775179", - "name": "Trigger1894775179", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "1500f846-0000-0800-0000-5fdcdfae0000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1927233170", - "name": "Trigger1927233170", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "1500acf8-0000-0800-0000-5fdce5e60000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger786174417", - "name": "Trigger786174417", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "15003efb-0000-0800-0000-5fdce5fd0000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger695156011", - "name": "Trigger695156011", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "1600e421-0000-0800-0000-5fdce74b0000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger769604978", - "name": "Trigger769604978", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "1600ae24-0000-0800-0000-5fdce7600000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger35400768", - "name": "Trigger35400768", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "1600f547-0000-0800-0000-5fdce89e0000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1895283959", - "name": "Trigger1895283959", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "1600504a-0000-0800-0000-5fdce8b00000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1803780687", - "name": "Trigger1803780687", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "94003270-0000-0800-0000-5fe0ceb00000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger992702220", - "name": "Trigger992702220", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "9400a17d-0000-0800-0000-5fe0cec80000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger837612643", - "name": "Trigger837612643", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "9500eb76-0000-0800-0000-5fe0d09c0000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger387250351", - "name": "Trigger387250351", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "95009184-0000-0800-0000-5fe0d0b30000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger261210929", - "name": "Trigger261210929", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "9600eb56-0000-0800-0000-5fe0d2240000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1046317501", - "name": "Trigger1046317501", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "9600ea64-0000-0800-0000-5fe0d23b0000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger493153749", - "name": "Trigger493153749", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "b3002845-0000-0800-0000-5fe109440000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1142933410", - "name": "Trigger1142933410", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "b300fb4d-0000-0800-0000-5fe109590000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1811743108", - "name": "Trigger1811743108", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "b4006f15-0000-0800-0000-5fe10b540000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1195837112", - "name": "Trigger1195837112", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "b4004f20-0000-0800-0000-5fe10b6e0000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1092804044", - "name": "Trigger1092804044", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "b4006fd6-0000-0800-0000-5fe10d0b0000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1061147341", - "name": "Trigger1061147341", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "b40097e0-0000-0800-0000-5fe10d1e0000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1293676330", - "name": "Trigger1293676330", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "b8005129-0000-0800-0000-5fe115210000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1121318397", - "name": "Trigger1121318397", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "b8004c31-0000-0800-0000-5fe115370000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1424339475", - "name": "Trigger1424339475", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "b800fdfe-0000-0800-0000-5fe1175d0000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1995833831", - "name": "Trigger1995833831", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "b9009208-0000-0800-0000-5fe117770000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1450305468", - "name": "Trigger1450305468", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "b9002c94-0000-0800-0000-5fe118fd0000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger982309688", - "name": "Trigger982309688", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "b900c39c-0000-0800-0000-5fe119140000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger18006337", - "name": "Trigger18006337", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "0000f7ed-0000-0800-0000-5fe259f10000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger669761297", - "name": "Trigger669761297", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "00004cee-0000-0800-0000-5fe25a0d0000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger283243002", - "name": "Trigger283243002", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "000007f6-0000-0800-0000-5fe25c260000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger2009827879", - "name": "Trigger2009827879", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "000052f6-0000-0800-0000-5fe25c400000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger2062696623", - "name": "Trigger2062696623", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "0000c1fa-0000-0800-0000-5fe25de70000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1883475285", - "name": "Trigger1883475285", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "000026fb-0000-0800-0000-5fe25e000000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - } - ], - "nextLink": "https://workspacechhamosynapse.dev.azuresynapse.net:443/triggers?api-version=2019-06-01-preview\u0026%24skipToken=%2BRID%3A%7ESl8ZAKxwhACdWwAAAAD8BA%3D%3D%23RT%3A2%23TRC%3A100%23ISV%3A2%23IEO%3A65551%23QCF%3A1" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger2086378973?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-583b946952a2cd48ac85a6882132e926-f4d017a4342dfb40-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "5aeba73a2e65d0c14b537e3a7e480dc4", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "401", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:06 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-ms-client-request-id": "5aeba73a2e65d0c14b537e3a7e480dc4", - "x-ms-correlation-request-id": "bd0d5e76-4a53-44e5-bba5-fb72fdace40b", - "x-ms-request-id": "a6302d95-a9d7-45be-bc2e-978aab9d9a44", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger2086378973", - "name": "Trigger2086378973", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "4300c302-0000-0800-0000-5fda891d0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger1800475066?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-7433286fd4fc0e49bddaed384cfe5697-a847f0e7d0d31043-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "8fe0e2aea27cb56b5c60a765b6a95afc", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "401", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:07 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-ms-client-request-id": "8fe0e2aea27cb56b5c60a765b6a95afc", - "x-ms-correlation-request-id": "8dd3b0b6-8d6a-4e57-8146-dcd78efd9e3d", - "x-ms-request-id": "816ba083-7e23-4b98-b678-dc13bd213495", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1800475066", - "name": "Trigger1800475066", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "43006007-0000-0800-0000-5fda89310000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger431322087?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-4080fa3636ad384ebeb2fbbbe0c7fac1-0c664ae7d45ddf4e-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "f8f12ecffbfe97292993469cfdc4b650", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "399", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:07 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-ms-client-request-id": "f8f12ecffbfe97292993469cfdc4b650", - "x-ms-correlation-request-id": "fc60314f-05c1-4f1f-aca1-3d045f2fdc2c", - "x-ms-request-id": "1943f4e1-b3a1-4a0b-bdc5-a747e6e1ec87", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger431322087", - "name": "Trigger431322087", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "790095b7-0000-0800-0000-5fdbafc50000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger2021752222?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-c37f54ded8feff41a78b9e73aab21ab0-a8084dc09be54a49-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "eaaec4e9660097423c36fe04865c19a2", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "401", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:07 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-ms-client-request-id": "eaaec4e9660097423c36fe04865c19a2", - "x-ms-correlation-request-id": "f77b95b1-e884-4370-8ea1-c0f4f4909043", - "x-ms-request-id": "ba111313-0c65-4074-a935-c8c9d7e3d406", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger2021752222", - "name": "Trigger2021752222", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "79004ec0-0000-0800-0000-5fdbafdd0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger1905850478?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-9052c86b2bfd6a4eaf3c0eeb7a95bee4-52e70714fbac0a43-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "506a82f81557b2c5b94965e85ccfb798", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "401", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:07 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-ms-client-request-id": "506a82f81557b2c5b94965e85ccfb798", - "x-ms-correlation-request-id": "6128e8e0-8ee5-4a44-8f25-17253e3571c4", - "x-ms-request-id": "450f210c-c56c-46d0-9a39-59fdae4bb330", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1905850478", - "name": "Trigger1905850478", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "7a005917-0000-0800-0000-5fdbb0d30000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger792600914?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-183a1f42dd0edc408442cee7fd3cffcb-342839c437942247-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "f27b57aa70fa69fbec59bcc8fd2410cd", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "399", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:07 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-ms-client-request-id": "f27b57aa70fa69fbec59bcc8fd2410cd", - "x-ms-correlation-request-id": "311a94b4-9858-4339-818f-8e9986e1e8dc", - "x-ms-request-id": "17fa0a95-f95c-4783-8417-39bd9469240c", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger792600914", - "name": "Trigger792600914", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "7a00bf20-0000-0800-0000-5fdbb0ed0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger312272570?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-7c98ea86ad2d034eab79380e71374871-4ac81cad2154264a-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "7ba4a379665ad3f8fefc31b701593b6d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "399", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:07 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-ms-client-request-id": "7ba4a379665ad3f8fefc31b701593b6d", - "x-ms-correlation-request-id": "d55ecf44-f905-4fc2-83f3-b44080e18cae", - "x-ms-request-id": "51d93665-d506-42d4-ac52-a2fedb384e32", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger312272570", - "name": "Trigger312272570", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "7a00a981-0000-0800-0000-5fdbb1e70000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger441374363?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-5d70d68d8611af43bfe83dbc2a20fd56-9747e80e729ba743-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "2e5a667e27e088a8870163fe59fdb494", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "399", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:07 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-ms-client-request-id": "2e5a667e27e088a8870163fe59fdb494", - "x-ms-correlation-request-id": "972c942b-8014-4f01-a91e-144eaff08559", - "x-ms-request-id": "11a8b302-c6c5-47f5-be1e-540eb6167e9a", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger441374363", - "name": "Trigger441374363", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "7a002687-0000-0800-0000-5fdbb1f70000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger1129688383?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-2cd6a0adfcf01546a0d4f6d0a6fc1974-d93c9cb6dc0c6741-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "b86f97383c2a433e5ea7f4fe3e436793", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "401", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:08 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-ms-client-request-id": "b86f97383c2a433e5ea7f4fe3e436793", - "x-ms-correlation-request-id": "cb4801f2-6c81-4a06-a45a-af5c4acafb18", - "x-ms-request-id": "880cf74d-f83f-4c0b-b3c8-2d1f917bcba0", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1129688383", - "name": "Trigger1129688383", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "1200e59f-0000-0800-0000-5fdcc8170000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger1050941025?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-2167fc9ea7b3e14d93b2fc8d888fa40f-a4186a2a49735247-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "97494f1ee1c952ecfb1bf45902fa7a00", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "401", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:08 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-ms-client-request-id": "97494f1ee1c952ecfb1bf45902fa7a00", - "x-ms-correlation-request-id": "75802cdd-f4c5-4997-acc9-fe2062ebed10", - "x-ms-request-id": "7cef81cf-e163-4d3b-abb0-0ca9a20bcb8c", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1050941025", - "name": "Trigger1050941025", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "1200dda1-0000-0800-0000-5fdcc82a0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger828400962?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-968f6ae374f4534d97c3b70ecfe57561-fd3ebd8c06fc9645-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "697e9c4782ea42422717d03833a94943", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "399", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:08 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-ms-client-request-id": "697e9c4782ea42422717d03833a94943", - "x-ms-correlation-request-id": "750abd32-a327-419b-94b2-76fa687e007d", - "x-ms-request-id": "b366de39-f280-4514-98b4-7bd7aad23b5c", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger828400962", - "name": "Trigger828400962", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "12007add-0000-0800-0000-5fdcca050000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger807763024?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-c6731f786d63114ea13edf246f9efb58-54acee4daef3cb42-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "09e0d0991db357cbab1cbd0e47e44164", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "399", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:08 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-ms-client-request-id": "09e0d0991db357cbab1cbd0e47e44164", - "x-ms-correlation-request-id": "8d571eb2-2127-497c-a4b3-d046e5864b48", - "x-ms-request-id": "966d19c1-2708-413b-aacb-1274b47160b0", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger807763024", - "name": "Trigger807763024", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "12001de0-0000-0800-0000-5fdcca190000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger1945410976?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-9cff68f99aa90a47909f2614bcfc56f8-59a43063044c2e4b-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "a2b6f32dfec59ba80d076fb211b41f52", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "401", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:08 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-ms-client-request-id": "a2b6f32dfec59ba80d076fb211b41f52", - "x-ms-correlation-request-id": "61f4c52c-4914-4d37-aa5a-a4eddab8fb20", - "x-ms-request-id": "a8ff607d-6a96-41f5-bbc8-ba8c958db3f5", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1945410976", - "name": "Trigger1945410976", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "1300940a-0000-0800-0000-5fdccba80000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger506963272?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-996e2c7b528a28478f2e7dfa355c59de-1993acac2345244f-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "32bfb1d270192a4cd127becdc533fb42", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "399", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:08 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-ms-client-request-id": "32bfb1d270192a4cd127becdc533fb42", - "x-ms-correlation-request-id": "03aa73e9-b00c-467b-8bc0-c404981f144b", - "x-ms-request-id": "161d4cb0-04a8-4526-8808-5f5b8665484b", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger506963272", - "name": "Trigger506963272", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "1300920c-0000-0800-0000-5fdccbbc0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger792987352?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-6392c6832c75a048aa8727fd96b9d793-0fc90877b4762a4c-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "3f0b6bd5a6f29b7d2744fcacad1845f7", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "399", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:08 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-ms-client-request-id": "3f0b6bd5a6f29b7d2744fcacad1845f7", - "x-ms-correlation-request-id": "5964c392-7f16-4760-9d7c-67d2cf9202e9", - "x-ms-request-id": "38cc72b5-7e40-433e-9a34-3328bcea0dbb", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger792987352", - "name": "Trigger792987352", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "15001704-0000-0800-0000-5fdcdd670000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger893127625?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-2a58db17702beb4e95047ad89cf139a0-54d6d3d17402c34d-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "963c6bfd0e25bc4aa68cd09e40dbd6d9", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "399", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:08 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-ms-client-request-id": "963c6bfd0e25bc4aa68cd09e40dbd6d9", - "x-ms-correlation-request-id": "b20ebb49-fc94-4cb4-bc14-2324b74248fa", - "x-ms-request-id": "6008e311-25c2-4545-8fa6-4aa97225b89f", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger893127625", - "name": "Trigger893127625", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "15003a06-0000-0800-0000-5fdcdd790000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger1126903680?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-894cd931e95cd0478788da7983c7ab1b-67d2f41b19470148-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "a5dc2c0be0a82c5f33240bd573a07db8", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "401", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:09 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-ms-client-request-id": "a5dc2c0be0a82c5f33240bd573a07db8", - "x-ms-correlation-request-id": "781c71be-b8c7-456a-82cb-28984a62c2a0", - "x-ms-request-id": "02704620-130b-4daf-b7f1-b90c55508da3", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1126903680", - "name": "Trigger1126903680", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "15005322-0000-0800-0000-5fdcde7d0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger968456924?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-20b808cdcb678f49bb00bbf4ae8e6771-05620b2a7d45014c-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "5ad0c6e164f7c71d204e9866d5df5b4b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "399", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:09 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-ms-client-request-id": "5ad0c6e164f7c71d204e9866d5df5b4b", - "x-ms-correlation-request-id": "5a7d7383-7a27-4a32-a263-b8702bf56b9f", - "x-ms-request-id": "a03257d0-30ec-4984-a7c9-2508e30207a6", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger968456924", - "name": "Trigger968456924", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "15008e24-0000-0800-0000-5fdcde910000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger1787296514?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-06de90cca0d13c4ba688503b620c6a22-31bb225cbc2ea34f-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "80a0226e9f3b1d4e0b10620003754806", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "401", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:09 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-ms-client-request-id": "80a0226e9f3b1d4e0b10620003754806", - "x-ms-correlation-request-id": "f5ed54e0-6791-41de-ab64-ff9fc617fa7b", - "x-ms-request-id": "3ca43477-2183-4cfd-b220-3b6edf0b0469", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1787296514", - "name": "Trigger1787296514", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "15007345-0000-0800-0000-5fdcdf9c0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger1894775179?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-7f939b91b8b8814c920f650c27b6274d-d4f482de47ce7347-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "79bc180f7c0ba7e20e15855a47f95653", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "401", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:09 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-ms-client-request-id": "79bc180f7c0ba7e20e15855a47f95653", - "x-ms-correlation-request-id": "fa91389b-5ab8-4ea0-a37b-29fa3c11ed4b", - "x-ms-request-id": "88d9b8f2-2131-4c0d-b9e6-ba94762f94a5", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1894775179", - "name": "Trigger1894775179", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "1500f846-0000-0800-0000-5fdcdfae0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger1927233170?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-a2d61d382bc8fb45bd4838c80a3d58e3-5aa0e660a07d4e40-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "5066bfc9fcff417d78b24ee7021cc3ab", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "401", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:09 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-ms-client-request-id": "5066bfc9fcff417d78b24ee7021cc3ab", - "x-ms-correlation-request-id": "b8f643f3-7869-403f-b492-ae45c075ca91", - "x-ms-request-id": "2a69aa52-e0f4-4ce6-8637-c7764dfb0788", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1927233170", - "name": "Trigger1927233170", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "1500acf8-0000-0800-0000-5fdce5e60000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger786174417?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-9384a216feae4441b787c920345976d9-31a92a99ed84014d-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "bd569106e123f24040f971261af4d512", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "399", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:09 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-ms-client-request-id": "bd569106e123f24040f971261af4d512", - "x-ms-correlation-request-id": "a8cb0d57-a5f2-4ea8-a5b6-69f43b18c416", - "x-ms-request-id": "9ddc83d1-898f-4a56-9cbf-bb6c002dff02", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger786174417", - "name": "Trigger786174417", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "15003efb-0000-0800-0000-5fdce5fd0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger695156011?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-48ba46809286bf48a07c7c8684b3a826-57cac4dfcfeb0b42-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "43370eb9f70f12079a7a00582dfba4f2", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "399", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:09 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-ms-client-request-id": "43370eb9f70f12079a7a00582dfba4f2", - "x-ms-correlation-request-id": "e8848fa0-2405-45ba-aa92-59ea3a153fc3", - "x-ms-request-id": "60273ed4-847d-4f55-9fe8-ae8e2c8dfa8a", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger695156011", - "name": "Trigger695156011", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "1600e421-0000-0800-0000-5fdce74b0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger769604978?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-570a4fd7791cf24ba06dd05e43d705c0-6b967a280fd89e40-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "b553da5198a2e7307e7410058a572783", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "399", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:09 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-ms-client-request-id": "b553da5198a2e7307e7410058a572783", - "x-ms-correlation-request-id": "3895f852-de86-4cef-a8d6-eaa3b2cc45b0", - "x-ms-request-id": "67236eeb-2041-4c25-af3a-c8cda4fd2650", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger769604978", - "name": "Trigger769604978", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "1600ae24-0000-0800-0000-5fdce7600000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger35400768?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-97d5772a8006e7409a3ef940910263f6-f215556028523a42-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "f32d3bdc7fe50e9c8a4422a8e1e7c444", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "397", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:10 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-ms-client-request-id": "f32d3bdc7fe50e9c8a4422a8e1e7c444", - "x-ms-correlation-request-id": "df2f0270-924f-42d3-bf52-190060c6443c", - "x-ms-request-id": "3ef4cd19-e0a0-4e35-91ea-af5723d0817b", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger35400768", - "name": "Trigger35400768", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "1600f547-0000-0800-0000-5fdce89e0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger1895283959?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-c55a6e6df3f40445ad928e7fed1c2cc1-db92fbf41ffc7a43-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "40d47f5420a02170de50c59ae6018843", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "401", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:10 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-ms-client-request-id": "40d47f5420a02170de50c59ae6018843", - "x-ms-correlation-request-id": "06c60595-52f5-474b-ad30-07fd52530fc7", - "x-ms-request-id": "0d70930a-6af1-4c8c-8d05-6f0bb706066a", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1895283959", - "name": "Trigger1895283959", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "1600504a-0000-0800-0000-5fdce8b00000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger1803780687?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-12e45044b9657249a12047eef4495c29-5dc640ff28cffa49-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "f27c7d53b1ced10c3e452a5e75870697", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "401", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:10 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-ms-client-request-id": "f27c7d53b1ced10c3e452a5e75870697", - "x-ms-correlation-request-id": "dc852b2a-9221-4b36-bde4-4d64194f1369", - "x-ms-request-id": "fc0a706d-f742-48be-a783-edbfdad6449c", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1803780687", - "name": "Trigger1803780687", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "94003270-0000-0800-0000-5fe0ceb00000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger992702220?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-d6a24e7f47a3424aac7a9782d1edf0fe-6883913fca4a9b42-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "0ab1ccafe682bce3cb0b1495ba012789", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "399", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:10 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-ms-client-request-id": "0ab1ccafe682bce3cb0b1495ba012789", - "x-ms-correlation-request-id": "2c2c9372-a8a3-47b6-8f8f-cdf02254ed7b", - "x-ms-request-id": "4ec4f510-36c4-4079-bc21-a8697c6d6d20", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger992702220", - "name": "Trigger992702220", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "9400a17d-0000-0800-0000-5fe0cec80000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger837612643?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-5b4b6b3b6f50ca4490d759b4c757b5f1-35ffe3a3e4640f45-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "6355dfbbd26ba3757302025af512ac57", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "399", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:10 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-ms-client-request-id": "6355dfbbd26ba3757302025af512ac57", - "x-ms-correlation-request-id": "bc9a1e5b-eae9-476a-9d6d-be2e3479c8ee", - "x-ms-request-id": "c4338964-593a-4325-af76-4b595144f23b", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger837612643", - "name": "Trigger837612643", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "9500eb76-0000-0800-0000-5fe0d09c0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger387250351?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-6b3d11091794b54ab8ddffe2a4dfa741-ba2e076478ee7c4a-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "1aeb2e497d506cc199bf26c39d77173c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "399", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:10 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-ms-client-request-id": "1aeb2e497d506cc199bf26c39d77173c", - "x-ms-correlation-request-id": "f1e131c1-08e2-4eb0-8d4a-d184b0ff867c", - "x-ms-request-id": "0324ec9b-fde8-4d35-a0a4-228646309cb2", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger387250351", - "name": "Trigger387250351", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "95009184-0000-0800-0000-5fe0d0b30000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger261210929?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-19662ac56f507e41bdc2517368b20410-1b8cce8559ee2048-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "96a2a11ea231dd2b560e9780e488c7b9", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "399", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:11 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-ms-client-request-id": "96a2a11ea231dd2b560e9780e488c7b9", - "x-ms-correlation-request-id": "2865bcc2-3010-40b8-a49c-375357994c79", - "x-ms-request-id": "68ad275d-45f4-41c5-b2a7-3b2394e1df6a", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger261210929", - "name": "Trigger261210929", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "9600eb56-0000-0800-0000-5fe0d2240000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger1046317501?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-e20dabbd077dbd478a8c216b7100e32d-58844c50b29f394a-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "8c4bbd5f0d163e391ee9caacabb205fb", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "401", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:11 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-ms-client-request-id": "8c4bbd5f0d163e391ee9caacabb205fb", - "x-ms-correlation-request-id": "b3e2b632-ca23-4c83-b766-29680081ede5", - "x-ms-request-id": "b49665c0-7417-4401-aa46-c05a2c20408a", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1046317501", - "name": "Trigger1046317501", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "9600ea64-0000-0800-0000-5fe0d23b0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger493153749?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-9db6c7a4ec901949b720a5666a791ea3-ee7d1d9b1ecc4d45-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "533cc5eb1570a725020dc342e5408711", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "399", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:11 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-ms-client-request-id": "533cc5eb1570a725020dc342e5408711", - "x-ms-correlation-request-id": "8f319b28-826e-425a-bf3f-154fdfe629f5", - "x-ms-request-id": "e58d59ab-f618-41d6-922e-d73bfe5eec55", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger493153749", - "name": "Trigger493153749", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "b3002845-0000-0800-0000-5fe109440000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger1142933410?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-833aa8098bb4474395132a12105f2cc5-fd23551c8101604c-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "df636df88a2c112667637847d87f31a4", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "401", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:11 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-ms-client-request-id": "df636df88a2c112667637847d87f31a4", - "x-ms-correlation-request-id": "14222e32-c4a7-478b-84f0-238fa8fa1271", - "x-ms-request-id": "0e878bd5-08df-4185-b61f-52889c1cac5f", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1142933410", - "name": "Trigger1142933410", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "b300fb4d-0000-0800-0000-5fe109590000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger1811743108?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-fb50e6cfcc06fd498fcf54f844df0210-3ed4dbb9a39e7048-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "1e949b08734b494897a3890849f758dd", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "401", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:11 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-ms-client-request-id": "1e949b08734b494897a3890849f758dd", - "x-ms-correlation-request-id": "aae37577-4d04-4cbc-8e18-89a8483d9092", - "x-ms-request-id": "38ef15a0-a6ef-429b-9355-75e02370c092", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1811743108", - "name": "Trigger1811743108", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "b4006f15-0000-0800-0000-5fe10b540000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger1195837112?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-acfd162ec3e6a747bb60d50c9bfac0db-367795a5a2664d46-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "3eb4b862264f60cf9e2bec0c9dddcf83", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "401", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:11 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-ms-client-request-id": "3eb4b862264f60cf9e2bec0c9dddcf83", - "x-ms-correlation-request-id": "ce935880-0fe5-422d-858a-fcc1f3e90022", - "x-ms-request-id": "88dcdab9-0928-4cf3-bf40-aa48e2b4e89e", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1195837112", - "name": "Trigger1195837112", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "b4004f20-0000-0800-0000-5fe10b6e0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger1092804044?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-79b609f8e122b44eb6cc9f8e52fb324e-e69af28bed564345-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "49391fdb68ab84c624194788001ec770", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "401", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:11 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-ms-client-request-id": "49391fdb68ab84c624194788001ec770", - "x-ms-correlation-request-id": "cca18f32-6cce-4aab-b350-63e70e749c7d", - "x-ms-request-id": "2d6dfddb-4ffe-492d-ba2a-2c422cdbc61c", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1092804044", - "name": "Trigger1092804044", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "b4006fd6-0000-0800-0000-5fe10d0b0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger1061147341?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-94bc21d031beba448565980e7177532b-cc375efaf728a142-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "1fe59a0af3cae154cc347f20873cacba", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "401", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:12 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-ms-client-request-id": "1fe59a0af3cae154cc347f20873cacba", - "x-ms-correlation-request-id": "8c775187-6e62-4cc9-8bd4-a63e98ee50d2", - "x-ms-request-id": "87b9215a-f0f4-4e73-a5b4-eb1825e472df", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1061147341", - "name": "Trigger1061147341", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "b40097e0-0000-0800-0000-5fe10d1e0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger1293676330?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-c51cce295798844294569e2b61149cb3-2424ebd10e4a1946-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "2a2c06d40fbdf931f22f1935de475f80", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "401", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:12 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-ms-client-request-id": "2a2c06d40fbdf931f22f1935de475f80", - "x-ms-correlation-request-id": "a82f73ba-5b38-4d76-8e3b-7106ec086289", - "x-ms-request-id": "0b8ae65a-9fc5-49b5-a814-c612875441ee", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1293676330", - "name": "Trigger1293676330", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "b8005129-0000-0800-0000-5fe115210000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger1121318397?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-5c3c4798f6731347a4265f01531ef152-9a687bbd48aae548-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "02027b63aff8e8b8ca587d77e9a5fde8", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "401", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:12 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-ms-client-request-id": "02027b63aff8e8b8ca587d77e9a5fde8", - "x-ms-correlation-request-id": "ce8ba09e-3a48-4342-a72a-0bc814f61a90", - "x-ms-request-id": "fd0fea55-4a4b-47a5-8308-9f29ae3bc653", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1121318397", - "name": "Trigger1121318397", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "b8004c31-0000-0800-0000-5fe115370000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger1424339475?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-6334e71338ed8147b29b63a9a79d1ae4-d9e1d138959c5047-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "fab48d6d9df1fbb269ec2d9bda1f0285", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "401", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:12 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-ms-client-request-id": "fab48d6d9df1fbb269ec2d9bda1f0285", - "x-ms-correlation-request-id": "9ebdc683-8ef8-4f9c-b5b4-6493603c1ba9", - "x-ms-request-id": "5dc14e06-09dc-4cc5-8ba0-6efe60a431a4", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1424339475", - "name": "Trigger1424339475", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "b800fdfe-0000-0800-0000-5fe1175d0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger1995833831?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-cf3dffdc9452204fa5b69a07df2ecbf4-ad24ca20dbc0a645-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "0bbcffd4a93a24c14d445f6591b9104c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "401", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:12 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-ms-client-request-id": "0bbcffd4a93a24c14d445f6591b9104c", - "x-ms-correlation-request-id": "dddaac5b-033f-4fe4-9358-e01218b040b3", - "x-ms-request-id": "865ff64d-c38b-4185-ab38-239cdec4d998", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1995833831", - "name": "Trigger1995833831", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "b9009208-0000-0800-0000-5fe117770000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger1450305468?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-76f5cf8ffae6b2478d1a0b1bd941922b-eaf5be106a30a248-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "51c731326592c68fc806990b811d0eaa", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "401", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:12 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-ms-client-request-id": "51c731326592c68fc806990b811d0eaa", - "x-ms-correlation-request-id": "b42f17a1-d3d8-45ef-a56a-20d7ee630be3", - "x-ms-request-id": "e3c133e3-2876-4f08-aea4-de3314a2b918", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1450305468", - "name": "Trigger1450305468", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "b9002c94-0000-0800-0000-5fe118fd0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger982309688?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-7dfb62b8c3cb8c4abda3c6373a0b9c01-f26428dfe054a049-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "eaa3f855f1e9c4aecb8fadac3d4d69af", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "399", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:12 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-ms-client-request-id": "eaa3f855f1e9c4aecb8fadac3d4d69af", - "x-ms-correlation-request-id": "6bb22db9-07cd-4177-892c-100eea871bd2", - "x-ms-request-id": "4cf6d232-f822-408a-9ba7-12175b7faa70", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger982309688", - "name": "Trigger982309688", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "b900c39c-0000-0800-0000-5fe119140000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger18006337?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-9d7ff597d5add04886b722bc3f895053-b724f9bc4af3ee4d-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "a868e1dcb1576ff26ff642330fb6a22f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "397", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:13 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-ms-client-request-id": "a868e1dcb1576ff26ff642330fb6a22f", - "x-ms-correlation-request-id": "c0c8b182-d82e-4019-9f0d-d87749d3a831", - "x-ms-request-id": "1e01b13c-1cdc-4680-bb08-b7f2bea5ae67", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger18006337", - "name": "Trigger18006337", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "0000f7ed-0000-0800-0000-5fe259f10000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger669761297?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-9b508dd33684de4cb08364e2640343e5-f794e445d3886643-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "9910b4362516406283038502b7e3887b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "399", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:13 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-ms-client-request-id": "9910b4362516406283038502b7e3887b", - "x-ms-correlation-request-id": "b55ace79-6c3a-40d1-8217-70358915d2a3", - "x-ms-request-id": "7d79ef3d-2694-4c30-86c3-40278b3e32e7", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger669761297", - "name": "Trigger669761297", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "00004cee-0000-0800-0000-5fe25a0d0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger283243002?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-5ca646cded4b0a46b6e965c98f80e318-52f950b707c2ab44-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "a02fe99c65b4a35305337af3af7ab415", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "399", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:13 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-ms-client-request-id": "a02fe99c65b4a35305337af3af7ab415", - "x-ms-correlation-request-id": "fe5ab57a-c9e9-4b8b-9beb-ad22ffcad3ff", - "x-ms-request-id": "5be3cd76-4f78-4bb5-9317-1c2c99c7920b", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger283243002", - "name": "Trigger283243002", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "000007f6-0000-0800-0000-5fe25c260000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger2009827879?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-4e2d105b391b164a8a3eb2273c184a0d-9c7cea74c12e1e44-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "89757dedd03db6997e2825542befb78c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "401", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:13 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-ms-client-request-id": "89757dedd03db6997e2825542befb78c", - "x-ms-correlation-request-id": "cbd00295-c264-48b7-841e-ceb2d7d99f9b", - "x-ms-request-id": "9f1ae00d-3c7e-4d73-82f4-b76b70a40555", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger2009827879", - "name": "Trigger2009827879", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "000052f6-0000-0800-0000-5fe25c400000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger2062696623?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-4c04d80a918b984ba3648e62db7be463-0ee68b484733ad4e-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "2697c66e0286d17b616c93e3ab6f9108", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "401", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:13 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-ms-client-request-id": "2697c66e0286d17b616c93e3ab6f9108", - "x-ms-correlation-request-id": "1060af20-99fb-47d9-9222-7dd1e297853b", - "x-ms-request-id": "e6a999f6-58d9-4118-8fa3-a61a660bcab4", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger2062696623", - "name": "Trigger2062696623", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "0000c1fa-0000-0800-0000-5fe25de70000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger1883475285?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-2ccfbc35d2a43f47aa37cd7ae70dacbd-04a59c9159315f42-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "3a15704efe6dcb3e4f79218c3fff7816", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "401", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:13 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-ms-client-request-id": "3a15704efe6dcb3e4f79218c3fff7816", - "x-ms-correlation-request-id": "5a513e22-3b07-425a-aa38-5f659ef51afe", - "x-ms-request-id": "f4ff5025-48ec-4e1a-b1b9-91729fd63919", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1883475285", - "name": "Trigger1883475285", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "000026fb-0000-0800-0000-5fe25e000000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers?api-version=2019-06-01-preview\u0026%24skipToken=%2BRID%3A~Sl8ZAKxwhACdWwAAAAD8BA%3D%3D%23RT%3A2%23TRC%3A100%23ISV%3A2%23IEO%3A65551%23QCF%3A1", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-3304e955c3fe9e4eaaf6735b28e6f681-fe4046da45ccce41-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "e885ee7b8ee3ea8e02a428d03db60b0f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Length": "12023", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:13 GMT", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "e885ee7b8ee3ea8e02a428d03db60b0f", - "x-ms-request-id": "c64aebd3-6b17-46f7-ae80-91fdb9923a87" - }, - "ResponseBody": { - "value": [ - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1609595334", - "name": "Trigger1609595334", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "0300b478-0000-0800-0000-5fe38a420000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger912772013", - "name": "Trigger912772013", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "0300f678-0000-0800-0000-5fe38a5c0000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger535165641", - "name": "Trigger535165641", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "0300a381-0000-0800-0000-5fe38d970000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1509405974", - "name": "Trigger1509405974", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "0300f481-0000-0800-0000-5fe38dad0000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger55949564", - "name": "Trigger55949564", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "0300808c-0000-0800-0000-5fe3914f0000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger870392964", - "name": "Trigger870392964", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "0300d38c-0000-0800-0000-5fe391680000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1585308722", - "name": "Trigger1585308722", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "0300b096-0000-0800-0000-5fe394860000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger15901042", - "name": "Trigger15901042", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "03000497-0000-0800-0000-5fe3949f0000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger946431362", - "name": "Trigger946431362", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "0300659f-0000-0800-0000-5fe3979b0000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger78017815", - "name": "Trigger78017815", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "0300ac9f-0000-0800-0000-5fe397b60000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger691539022", - "name": "Trigger691539022", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "030007a8-0000-0800-0000-5fe39a970000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1203381574", - "name": "Trigger1203381574", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "0300e4a8-0000-0800-0000-5fe39ab60000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger612185256", - "name": "Trigger612185256", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "030083b4-0000-0800-0000-5fe39ebb0000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1217281743", - "name": "Trigger1217281743", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "0300cdb4-0000-0800-0000-5fe39ed20000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger861733555", - "name": "Trigger861733555", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "030013c6-0000-0800-0000-5fe3a46b0000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1966155271", - "name": "Trigger1966155271", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "030064c6-0000-0800-0000-5fe3a4860000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1923568218", - "name": "Trigger1923568218", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "0300a0d4-0000-0800-0000-5fe3a90b0000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger427638691", - "name": "Trigger427638691", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "0300e5d4-0000-0800-0000-5fe3a9240000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger540057645", - "name": "Trigger540057645", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "08070691-0000-0800-0000-6000c4f20000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1626566748", - "name": "Trigger1626566748", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "080724a7-0000-0800-0000-6000c50f0000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger469312722", - "name": "Trigger469312722", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "c507d777-0000-0800-0000-6001c1a80000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger381029169", - "name": "Trigger381029169", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "c5079688-0000-0800-0000-6001c1be0000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1253021849", - "name": "Trigger1253021849", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "d90775f5-0000-0800-0000-6001dcdf0000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger173097332", - "name": "Trigger173097332", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "0f01ec6f-0000-0800-0000-6009c0f50000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger877272684", - "name": "Trigger877272684", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "31008f97-0000-0800-0000-600874830000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger120342619", - "name": "Trigger120342619", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "3100fdaf-0000-0800-0000-600874a50000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger108320990", - "name": "Trigger108320990", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "34001120-0000-0800-0000-6008780d0000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger125302184", - "name": "Trigger125302184", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "0f01ec5d-0000-0800-0000-6009c0da0000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger571918210", - "name": "Trigger571918210", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "02028c8d-0000-0800-0000-600b291b0000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger324461666", - "name": "Trigger324461666", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "030266e0-0000-0800-0000-600b2afc0000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - } - ] - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger1609595334?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-f6851b80f5cf6748b5219759efa4df95-9f30f23f8015464d-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "bb051c967dd96f1f88cbd60de0ee9162", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "401", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:14 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-ms-client-request-id": "bb051c967dd96f1f88cbd60de0ee9162", - "x-ms-correlation-request-id": "a36d55d2-2d1d-41f5-84bc-76427e81160f", - "x-ms-request-id": "24bbfdf0-4073-4903-b77f-1c5d7d72b75c", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1609595334", - "name": "Trigger1609595334", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "0300b478-0000-0800-0000-5fe38a420000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger912772013?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-99ac5df2c024f544847905b02bbc71ec-dd2fb8788d927f4a-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "bd677df4a9eac025e12a38c9d66d8e99", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "399", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:14 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-ms-client-request-id": "bd677df4a9eac025e12a38c9d66d8e99", - "x-ms-correlation-request-id": "1cb96cc7-8788-4d35-bdf9-058157b3e7e4", - "x-ms-request-id": "618a0fb4-376d-408f-bed9-c86362837085", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger912772013", - "name": "Trigger912772013", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "0300f678-0000-0800-0000-5fe38a5c0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger535165641?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-7dfe8ef81c77b84187f3703eefd6a3fd-9a52468f6285d44d-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "23f6126ebcf9fe3ccf155f18b7810a13", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "399", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:14 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-ms-client-request-id": "23f6126ebcf9fe3ccf155f18b7810a13", - "x-ms-correlation-request-id": "b939a0f9-fe8d-42e6-a6a3-690cb03e9ea6", - "x-ms-request-id": "0fddee56-de37-4c42-b4bc-e1d65e50a144", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger535165641", - "name": "Trigger535165641", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "0300a381-0000-0800-0000-5fe38d970000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger1509405974?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-8d57c9c9b90dab438971cefe05635a5d-d4a560e03005ef4a-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "bfdcc5124d4fec24f744d9ae4456981a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "401", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:14 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-ms-client-request-id": "bfdcc5124d4fec24f744d9ae4456981a", - "x-ms-correlation-request-id": "8d8b8c93-978d-470b-ad55-2c7e5e0bc5e1", - "x-ms-request-id": "4aac788b-6631-430c-98ab-d5313a2bfb7f", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1509405974", - "name": "Trigger1509405974", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "0300f481-0000-0800-0000-5fe38dad0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger55949564?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-8327eb4a53e5dc4eaf9cd4bb14bdb8ba-0197fa6de6215948-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "ce9f3d3c6ef837684068edd44a0d0960", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "397", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:14 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-ms-client-request-id": "ce9f3d3c6ef837684068edd44a0d0960", - "x-ms-correlation-request-id": "6270630c-939f-498d-8eb8-05dd40c63b1c", - "x-ms-request-id": "d4b10f53-4b95-4351-8ed1-1abe950bc95c", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger55949564", - "name": "Trigger55949564", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "0300808c-0000-0800-0000-5fe3914f0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger870392964?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-7221912f4848b342b58b37e178aa01c5-e24ad24e3c533d48-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "11b62420cf91204aed092bb4e38db979", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "399", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:14 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-ms-client-request-id": "11b62420cf91204aed092bb4e38db979", - "x-ms-correlation-request-id": "efdc71fa-bf6a-4d8e-9b0a-f72456ed9208", - "x-ms-request-id": "99a7e2ef-147a-4420-9665-f3ab71e25883", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger870392964", - "name": "Trigger870392964", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "0300d38c-0000-0800-0000-5fe391680000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger1585308722?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-7c4736f628f94d4eb2e997fbe731eb38-f1df6585b5ef3646-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "7adc447d3ce1a41b5ca57fe66050a2ea", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "401", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:14 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-ms-client-request-id": "7adc447d3ce1a41b5ca57fe66050a2ea", - "x-ms-correlation-request-id": "5fa2fb99-9bff-4f17-9d7c-9f3a150159b0", - "x-ms-request-id": "28b8a911-597e-492e-a8ce-6239f4a13744", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1585308722", - "name": "Trigger1585308722", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "0300b096-0000-0800-0000-5fe394860000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger15901042?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-7dc3b134c6eaf242a947b7aa51795684-75021d7023e15241-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "208e793b879f6c89f27fe0ee42b454b3", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "397", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:15 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-ms-client-request-id": "208e793b879f6c89f27fe0ee42b454b3", - "x-ms-correlation-request-id": "6f37461b-ceeb-47c6-b90f-ffe199b8e92f", - "x-ms-request-id": "c1cb2d79-35ae-40ed-948d-2ba2229e8854", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger15901042", - "name": "Trigger15901042", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "03000497-0000-0800-0000-5fe3949f0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger946431362?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-7f41439b384796488545943ea8ca5397-2277d71679b79a48-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "055774ae8f30e47e0912b4eb5063c09d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "399", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:15 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-ms-client-request-id": "055774ae8f30e47e0912b4eb5063c09d", - "x-ms-correlation-request-id": "7c708e1b-d951-4ad1-a893-e00309b5a353", - "x-ms-request-id": "33b9862d-a52d-4263-b36a-ca267e080a42", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger946431362", - "name": "Trigger946431362", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "0300659f-0000-0800-0000-5fe3979b0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger78017815?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-6bb53a70ac3ddd468346c1d3bb2d0ae4-e84bb81bcf458b47-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "6978416799fff5d9bb6f87625b2c61a8", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "397", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:15 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-ms-client-request-id": "6978416799fff5d9bb6f87625b2c61a8", - "x-ms-correlation-request-id": "07d92f1c-7349-4d6b-aa3d-73c2f5e5a2a2", - "x-ms-request-id": "33f46310-ecab-48ef-b822-dd58ead6ef09", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger78017815", - "name": "Trigger78017815", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "0300ac9f-0000-0800-0000-5fe397b60000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger691539022?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-dd873b55c84df34092f3d5a283c13223-3ea0a99fcdc40645-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "eb38cb519df9acb9fba9168dd39d1c8f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "399", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:15 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-ms-client-request-id": "eb38cb519df9acb9fba9168dd39d1c8f", - "x-ms-correlation-request-id": "f205ad1a-2c4d-47d9-ace4-510d9651d3ea", - "x-ms-request-id": "694f3a2c-220c-480b-9d83-4c82ce94d238", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger691539022", - "name": "Trigger691539022", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "030007a8-0000-0800-0000-5fe39a970000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger1203381574?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-98094864ef50eb4d8332631cd091eccb-25ca613c8397ba41-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "018743bfea3b14b39b6149c1071c89dc", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "401", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:15 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-ms-client-request-id": "018743bfea3b14b39b6149c1071c89dc", - "x-ms-correlation-request-id": "14f562dc-ab71-4083-8cca-e80379aaaf03", - "x-ms-request-id": "29ca64d2-27ae-4025-96c0-bfaf59fa8e58", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1203381574", - "name": "Trigger1203381574", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "0300e4a8-0000-0800-0000-5fe39ab60000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger612185256?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-69c3a2a98481b04487df640526bc36b5-c81cd938d1a4a64b-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "849a0cb1d42ac9a488cc6d55834c221d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "399", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:15 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-ms-client-request-id": "849a0cb1d42ac9a488cc6d55834c221d", - "x-ms-correlation-request-id": "696b943b-99e2-4636-b853-fcb89d4bb8b0", - "x-ms-request-id": "3e8f19b8-aec5-4e6c-a824-2e11d8d3b8a4", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger612185256", - "name": "Trigger612185256", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "030083b4-0000-0800-0000-5fe39ebb0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger1217281743?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-b37649e7235a224290961fbeba57bbde-5c3730d221726943-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "17a2f75260a5666c1823509754f7a4df", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "401", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:15 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-ms-client-request-id": "17a2f75260a5666c1823509754f7a4df", - "x-ms-correlation-request-id": "c132370a-8283-43af-80e0-c630f2f533e0", - "x-ms-request-id": "ba9de97c-19fc-48ff-9bde-f9a97a5ee5a3", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1217281743", - "name": "Trigger1217281743", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "0300cdb4-0000-0800-0000-5fe39ed20000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger861733555?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-dd83a949b72d154383e7982b1fd19ee5-136c814dd2360b4e-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "c7dc39209802ea649fbd786f7c5d914f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "399", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:16 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-ms-client-request-id": "c7dc39209802ea649fbd786f7c5d914f", - "x-ms-correlation-request-id": "a940feeb-3259-44ce-9a3a-18e916a6f523", - "x-ms-request-id": "bd9e4eac-985d-4711-9e7e-6ca2be572b2c", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger861733555", - "name": "Trigger861733555", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "030013c6-0000-0800-0000-5fe3a46b0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger1966155271?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-7f11c5060742aa4faef2d7df17f873f0-5fddbc9d3513864d-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "0f6e2b3e717951379f346b06840c7590", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "401", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:16 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-ms-client-request-id": "0f6e2b3e717951379f346b06840c7590", - "x-ms-correlation-request-id": "244df246-204a-4022-a830-1e9b48f84dd9", - "x-ms-request-id": "03031d13-5469-4ccc-b1ef-96a9f08dd4a9", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1966155271", - "name": "Trigger1966155271", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "030064c6-0000-0800-0000-5fe3a4860000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger1923568218?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-0abbc65852c7534dbfce29396559d841-97b3c5f1129de745-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "49358e275b70ba1b92b878e7e7fce9ba", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "401", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:16 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-ms-client-request-id": "49358e275b70ba1b92b878e7e7fce9ba", - "x-ms-correlation-request-id": "9090efa4-f906-45dc-9b7d-56fc90e780f4", - "x-ms-request-id": "aced6aaa-0dbc-43e3-a63f-8379d33ec4a6", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1923568218", - "name": "Trigger1923568218", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "0300a0d4-0000-0800-0000-5fe3a90b0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger427638691?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-c6e7731143f0024aa8db07b4c4819db2-128a7acfb2952643-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "285800929588ae66028a27ce2c5e6692", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "399", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:16 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-ms-client-request-id": "285800929588ae66028a27ce2c5e6692", - "x-ms-correlation-request-id": "f3bb630c-68dc-4cb3-a3ac-4165010b0043", - "x-ms-request-id": "c842133f-2a55-4077-91fb-8bc1a86db008", - "X-Powered-By": "ASP.NET" + "x-ms-client-request-id": "6aea4f94bdb782d60b25981fe837168d", + "x-ms-request-id": "59c6bed4-2b27-4c3c-ab46-c26bc59e45de" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger427638691", - "name": "Trigger427638691", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "0300e5d4-0000-0800-0000-5fe3a9240000" + "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger540057645?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/37078012-6993-4a2d-8356-6e3ce558685c?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-5cb6346bf41f9948908f02d418738a50-51802ffe73d0034b-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "ee48e8484728e3de10b47dc1f94f6aa2", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "d7a49e4643e501d71bc3e2963be7d538", "x-ms-return-client-request-id": "true" }, "RequestBody": null, - "StatusCode": 200, + "StatusCode": 202, "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "399", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:16 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" ], - "Strict-Transport-Security": "max-age=15724800; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "ee48e8484728e3de10b47dc1f94f6aa2", - "x-ms-correlation-request-id": "cb3cb2c1-27e5-4d03-b639-1170b417d01d", - "x-ms-request-id": "bfcc7ec1-b05b-4fc4-a368-fdf6a9537886", - "X-Powered-By": "ASP.NET" + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 30 Sep 2021 06:22:45 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/37078012-6993-4a2d-8356-6e3ce558685c?api-version=2020-12-01", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "d7a49e4643e501d71bc3e2963be7d538", + "x-ms-request-id": "dc0c13a9-4378-4ed1-a79f-3ca9339adf70" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger540057645", - "name": "Trigger540057645", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "08070691-0000-0800-0000-6000c4f20000" + "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger1626566748?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/37078012-6993-4a2d-8356-6e3ce558685c?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-0ead8a06bb029c47aa57c9d2bc2fcfaf-8dcdae85f6b03846-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "8373b04a4db39207288647e5344c8d34", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "931fe7a8bcb86b76912e2c0c05d3db99", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "401", + "Content-Length": "392", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:16 GMT", + "Date": "Thu, 30 Sep 2021 06:22:46 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "8373b04a4db39207288647e5344c8d34", - "x-ms-correlation-request-id": "6c548097-6f5a-42c3-a218-47ea7ff458e2", - "x-ms-request-id": "5dde38e6-f81c-4992-960b-199f1db2acb3", + "x-ms-client-request-id": "931fe7a8bcb86b76912e2c0c05d3db99", + "x-ms-correlation-request-id": "4ec7a995-2b21-4230-a0de-2771916addc3", + "x-ms-request-id": "2112addc-8b27-43ad-84c3-91efa320ef97", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1626566748", - "name": "Trigger1626566748", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/triggers/Trigger324461666", + "name": "Trigger324461666", "type": "Microsoft.Synapse/workspaces/triggers", "properties": { "type": "ScheduleTrigger", @@ -7789,334 +192,498 @@ }, "runtimeState": "Stopped" }, - "etag": "080724a7-0000-0800-0000-6000c50f0000" + "etag": "2e003681-0000-0100-0000-615557b60000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger469312722?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/triggers?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-5738260fe112a647b2dad0ea76a56697-8b9f4b5efe10b14f-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "fe9fe552fbb44b92227518d418a4b5b2", + "traceparent": "00-461dac112cbdd54389207c468b8ea2d8-7a64cb24f0228a4e-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "40e8c9defa3b518577e84ff4db3f4624", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "399", + "Content-Length": "4687", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:16 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-ms-client-request-id": "fe9fe552fbb44b92227518d418a4b5b2", - "x-ms-correlation-request-id": "5b79acd4-1751-459d-b10a-8f0363103e1a", - "x-ms-request-id": "6bd23430-1815-43fb-b2a3-80463091320d", - "X-Powered-By": "ASP.NET" + "Date": "Thu, 30 Sep 2021 06:22:46 GMT", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "40e8c9defa3b518577e84ff4db3f4624", + "x-ms-request-id": "a4da66fa-7c9a-4779-a688-154579c4d848" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger469312722", - "name": "Trigger469312722", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} + "value": [ + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/triggers/Trigger 1", + "name": "Trigger 1", + "type": "Microsoft.Synapse/workspaces/triggers", + "etag": "00000200-0000-0100-0000-5f07d15b0000", + "properties": { + "annotations": [], + "runtimeState": "Stopped", + "pipelines": [], + "type": "ScheduleTrigger", + "typeProperties": { + "recurrence": { + "frequency": "Minute", + "interval": 1, + "startTime": "2020-07-10T02:23:00Z", + "timeZone": "UTC" + } + } + } }, - "runtimeState": "Stopped" - }, - "etag": "c507d777-0000-0800-0000-6001c1a80000" + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/triggers/dongwwaTrigger2", + "name": "dongwwaTrigger2", + "type": "Microsoft.Synapse/workspaces/triggers", + "etag": "00000600-0000-0100-0000-5f07d2bb0000", + "properties": { + "annotations": [], + "runtimeState": "Stopped", + "type": "TumblingWindowTrigger", + "typeProperties": { + "frequency": "Minute", + "interval": 15, + "startTime": "2020-07-10T02:29:00Z", + "delay": "00:00:00", + "maxConcurrency": 50, + "retryPolicy": { + "intervalInSeconds": 30 + }, + "dependsOn": [] + } + } + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/triggers/Trigger3", + "name": "Trigger3", + "type": "Microsoft.Synapse/workspaces/triggers", + "etag": "0000e600-0000-0100-0000-5f07d4c80000", + "properties": { + "annotations": [], + "runtimeState": "Stopped", + "pipelines": [], + "type": "BlobEventsTrigger", + "typeProperties": { + "blobPathBeginsWith": "/fs1/blobs/", + "ignoreEmptyBlobs": true, + "scope": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/arcadia-ps-test-group/providers/Microsoft.Storage/storageAccounts/zzygen2", + "events": [ + "Microsoft.Storage.BlobCreated" + ] + } + } + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/triggers/EventTrigger", + "name": "EventTrigger", + "type": "Microsoft.Synapse/workspaces/triggers", + "etag": "1200bc14-0000-0100-0000-5f51ace40000", + "properties": { + "type": "BlobEventsTrigger", + "annotations": [], + "pipelines": [ + { + "pipelineReference": { + "type": "PipelineReference", + "referenceName": "Pipeline 1" + } + } + ], + "typeProperties": { + "blobPathBeginsWith": "/ywfilesystem/blobs/", + "ignoreEmptyBlobs": true, + "events": [ + "Microsoft.Storage.BlobCreated" + ], + "scope": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/ywtest/providers/Microsoft.Storage/storageAccounts/ywtestaccount" + }, + "runtimeState": "Stopped" + } + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/triggers/TumblingWindowTrigger", + "name": "TumblingWindowTrigger", + "type": "Microsoft.Synapse/workspaces/triggers", + "etag": "09009271-0000-0100-0000-61404cd20000", + "properties": { + "type": "TumblingWindowTrigger", + "annotations": [], + "pipeline": { + "pipelineReference": { + "type": "PipelineReference", + "referenceName": "Pipeline 1" + } + }, + "typeProperties": { + "frequency": "Minute", + "interval": 15, + "startTime": "2020-07-10T02:00:00Z", + "delay": "00:00:00", + "maxConcurrency": 50, + "retryPolicy": { + "intervalInSeconds": 30 + }, + "dependsOn": [] + }, + "runtimeState": "Stopped" + } + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/triggers/TestTrigger-asdf", + "name": "TestTrigger-asdf", + "type": "Microsoft.Synapse/workspaces/triggers", + "etag": "1a00bdca-0000-0100-0000-5fd71bf80000", + "properties": { + "type": "ScheduleTrigger", + "typeProperties": { + "recurrence": {} + }, + "runtimeState": "Stopped" + } + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/triggers/Trigger277322190", + "name": "Trigger277322190", + "type": "Microsoft.Synapse/workspaces/triggers", + "etag": "00009000-0000-0100-0000-600163080000", + "properties": { + "type": "ScheduleTrigger", + "typeProperties": { + "recurrence": {} + }, + "runtimeState": "Stopped" + } + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/triggers/Trigger533902365", + "name": "Trigger533902365", + "type": "Microsoft.Synapse/workspaces/triggers", + "etag": "00009a00-0000-0100-0000-6001630e0000", + "properties": { + "type": "ScheduleTrigger", + "typeProperties": { + "recurrence": {} + }, + "runtimeState": "Stopped" + } + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/triggers/Trigger324461666", + "name": "Trigger324461666", + "type": "Microsoft.Synapse/workspaces/triggers", + "etag": "2e003681-0000-0100-0000-615557b60000", + "properties": { + "type": "ScheduleTrigger", + "typeProperties": { + "recurrence": {} + }, + "runtimeState": "Stopped" + } + } + ] } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger381029169?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/triggers/Trigger%201?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-f29b933b250f964f9f3ff7e075f80cec-8ec480857403f141-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "7b848420e2eafadee0b6c5a1fff9aec3", + "traceparent": "00-1ee886bfc2d2d74c96d68af6522ab141-94e5cb66895cda46-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "01775f5083178ad5273946b616cbfb47", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "399", + "Content-Length": "495", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:17 GMT", + "Date": "Thu, 30 Sep 2021 06:22:46 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "7b848420e2eafadee0b6c5a1fff9aec3", - "x-ms-correlation-request-id": "af5fc810-244c-4f67-bda4-50496f416c8a", - "x-ms-request-id": "69b35b3c-16cc-4f1e-ba36-57097f985010", + "x-ms-client-request-id": "01775f5083178ad5273946b616cbfb47", + "x-ms-correlation-request-id": "0ecb623a-ae49-4570-93ef-4b6545bcf5b7", + "x-ms-request-id": "fc528ada-1092-443a-9d3a-84954fc55942", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger381029169", - "name": "Trigger381029169", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/triggers/Trigger 1", + "name": "Trigger 1", "type": "Microsoft.Synapse/workspaces/triggers", "properties": { + "annotations": [], + "runtimeState": "Stopped", + "pipelines": [], "type": "ScheduleTrigger", "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" + "recurrence": { + "frequency": "Minute", + "interval": 1, + "startTime": "2020-07-10T02:23:00Z", + "timeZone": "UTC" + } + } }, - "etag": "c5079688-0000-0800-0000-6001c1be0000" + "etag": "00000200-0000-0100-0000-5f07d15b0000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger1253021849?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/triggers/dongwwaTrigger2?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-386651a25ea90845b2badcc0278d6cd0-75661e5104132546-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "146f48276bb04fee1e28613e35337a83", + "traceparent": "00-2aa6479abfcaf645a1aa54f05d8c779b-ca94851170b8f944-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "71b848e794ffadfd62cd1bcf6d828f51", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "401", + "Content-Length": "560", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:17 GMT", + "Date": "Thu, 30 Sep 2021 06:22:46 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "146f48276bb04fee1e28613e35337a83", - "x-ms-correlation-request-id": "3d54bb7b-b1f9-4829-8986-48a24942d697", - "x-ms-request-id": "450548d0-9f1a-4f44-8155-38660fd916ed", + "x-ms-client-request-id": "71b848e794ffadfd62cd1bcf6d828f51", + "x-ms-correlation-request-id": "474f813d-b48e-46a9-a351-7dfc4517daf4", + "x-ms-request-id": "0e28b0dd-540b-4072-8b82-072087c505e2", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1253021849", - "name": "Trigger1253021849", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/triggers/dongwwaTrigger2", + "name": "dongwwaTrigger2", "type": "Microsoft.Synapse/workspaces/triggers", "properties": { - "type": "ScheduleTrigger", + "annotations": [], + "runtimeState": "Stopped", + "type": "TumblingWindowTrigger", "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" + "frequency": "Minute", + "interval": 15, + "startTime": "2020-07-10T02:29:00Z", + "delay": "00:00:00", + "maxConcurrency": 50, + "retryPolicy": { + "intervalInSeconds": 30 + }, + "dependsOn": [] + } }, - "etag": "d90775f5-0000-0800-0000-6001dcdf0000" + "etag": "00000600-0000-0100-0000-5f07d2bb0000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger173097332?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/triggers/Trigger3?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-c2393fadc978e846bd15e012f6b9bea4-df1e1dd3b31c784f-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "afc495d111c86f4a06a41dfe35f14c28", + "traceparent": "00-4c5bf9857fee4e40a37ece5c73317ba5-7d9a9fd35dfe6843-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "a6bc08e7da5c5a81f45e1801b4ce3bac", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "399", + "Content-Length": "647", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:17 GMT", + "Date": "Thu, 30 Sep 2021 06:22:47 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "afc495d111c86f4a06a41dfe35f14c28", - "x-ms-correlation-request-id": "8061cfeb-a91b-4947-9992-af2783688653", - "x-ms-request-id": "f785bdff-944e-471f-a5d8-aa331a31fbec", + "x-ms-client-request-id": "a6bc08e7da5c5a81f45e1801b4ce3bac", + "x-ms-correlation-request-id": "09b2a2c6-d75e-4bde-b683-687447259c87", + "x-ms-request-id": "36462598-428a-4d2c-9bad-3721d4aa86cd", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger173097332", - "name": "Trigger173097332", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/triggers/Trigger3", + "name": "Trigger3", "type": "Microsoft.Synapse/workspaces/triggers", "properties": { - "type": "ScheduleTrigger", + "annotations": [], + "runtimeState": "Stopped", + "pipelines": [], + "type": "BlobEventsTrigger", "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" + "blobPathBeginsWith": "/fs1/blobs/", + "ignoreEmptyBlobs": true, + "scope": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/arcadia-ps-test-group/providers/Microsoft.Storage/storageAccounts/zzygen2", + "events": [ + "Microsoft.Storage.BlobCreated" + ] + } }, - "etag": "0f01ec6f-0000-0800-0000-6009c0f50000" + "etag": "0000e600-0000-0100-0000-5f07d4c80000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger877272684?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/triggers/EventTrigger?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-0addff7a7c7e0d4e9aa02b3b05e09505-c1011ac1ae9aeb4a-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "cfac54c6a135b50296345dc280a0c5ad", + "traceparent": "00-15548cdad195354c9b47e4cf0510c9d3-4c745e8c14b2b943-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "920c08edd586bb2561c99e4a68051ca5", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "399", + "Content-Length": "734", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:17 GMT", + "Date": "Thu, 30 Sep 2021 06:22:47 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "cfac54c6a135b50296345dc280a0c5ad", - "x-ms-correlation-request-id": "72d332b2-8cee-473c-87ca-39a376566cb7", - "x-ms-request-id": "bc937144-6a1e-40ac-ac8d-3e312009ec12", + "x-ms-client-request-id": "920c08edd586bb2561c99e4a68051ca5", + "x-ms-correlation-request-id": "a99f1d62-858e-4b61-ac58-726749182dc6", + "x-ms-request-id": "9a95f714-ba52-4e6a-8e9c-5c21330576f9", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger877272684", - "name": "Trigger877272684", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/triggers/EventTrigger", + "name": "EventTrigger", "type": "Microsoft.Synapse/workspaces/triggers", "properties": { - "type": "ScheduleTrigger", + "type": "BlobEventsTrigger", + "annotations": [], + "pipelines": [ + { + "pipelineReference": { + "type": "PipelineReference", + "referenceName": "Pipeline 1" + } + } + ], "typeProperties": { - "recurrence": {} + "blobPathBeginsWith": "/ywfilesystem/blobs/", + "ignoreEmptyBlobs": true, + "events": [ + "Microsoft.Storage.BlobCreated" + ], + "scope": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/ywtest/providers/Microsoft.Storage/storageAccounts/ywtestaccount" }, "runtimeState": "Stopped" }, - "etag": "31008f97-0000-0800-0000-600874830000" + "etag": "1200bc14-0000-0100-0000-5f51ace40000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger120342619?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/triggers/TumblingWindowTrigger?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-e4b144311d8fb740b956241e98c55c65-d8c62e9dc0c6604d-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "69cf423cff3515fbfdff0d0b4df0192c", + "traceparent": "00-67eff99b2acc334a8ad9a531585868f8-a9921811bd943745-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "0ecef4a9550f0deac65e7ca07cfbf994", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "399", + "Content-Length": "663", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:17 GMT", + "Date": "Thu, 30 Sep 2021 06:22:47 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "69cf423cff3515fbfdff0d0b4df0192c", - "x-ms-correlation-request-id": "8f983711-6e07-44f1-bc63-20bbd45d4ff3", - "x-ms-request-id": "ed4c08a7-da05-4767-828c-7c415b91490f", + "x-ms-client-request-id": "0ecef4a9550f0deac65e7ca07cfbf994", + "x-ms-correlation-request-id": "de2aaa42-40c1-4de1-babb-cc71ded31ea2", + "x-ms-request-id": "81168061-188a-4446-80e1-27480b9ab469", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger120342619", - "name": "Trigger120342619", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/triggers/TumblingWindowTrigger", + "name": "TumblingWindowTrigger", "type": "Microsoft.Synapse/workspaces/triggers", "properties": { - "type": "ScheduleTrigger", + "type": "TumblingWindowTrigger", + "annotations": [], + "pipeline": { + "pipelineReference": { + "type": "PipelineReference", + "referenceName": "Pipeline 1" + } + }, "typeProperties": { - "recurrence": {} + "frequency": "Minute", + "interval": 15, + "startTime": "2020-07-10T02:00:00Z", + "delay": "00:00:00", + "maxConcurrency": 50, + "retryPolicy": { + "intervalInSeconds": 30 + }, + "dependsOn": [] }, "runtimeState": "Stopped" }, - "etag": "3100fdaf-0000-0800-0000-600874a50000" + "etag": "09009271-0000-0100-0000-61404cd20000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger108320990?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/triggers/TestTrigger-asdf?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-559594ab932ccc458ee164184b3f0a3a-c75fe222b1db9542-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "e07739dbaa86304e930e1993b488ef65", + "traceparent": "00-ed376b9993a6e744911aa49009a27a1c-aa2c61fbf988274d-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "64e26e92fd7512cbe20044923b37f1ef", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "399", + "Content-Length": "392", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:17 GMT", + "Date": "Thu, 30 Sep 2021 06:22:47 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "e07739dbaa86304e930e1993b488ef65", - "x-ms-correlation-request-id": "22778efd-4b69-4a2d-8b6d-06823d8a1c39", - "x-ms-request-id": "ddc15256-991a-46ac-8840-c8c7789dc982", + "x-ms-client-request-id": "64e26e92fd7512cbe20044923b37f1ef", + "x-ms-correlation-request-id": "d5590d24-605b-46c1-a90c-4fd8fa8c037f", + "x-ms-request-id": "02553e96-f0ad-4bd0-9b0f-feb634c19541", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger108320990", - "name": "Trigger108320990", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/triggers/TestTrigger-asdf", + "name": "TestTrigger-asdf", "type": "Microsoft.Synapse/workspaces/triggers", "properties": { "type": "ScheduleTrigger", @@ -8125,46 +692,40 @@ }, "runtimeState": "Stopped" }, - "etag": "34001120-0000-0800-0000-6008780d0000" + "etag": "1a00bdca-0000-0100-0000-5fd71bf80000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger125302184?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/triggers/Trigger277322190?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-3e1f4f39b7b44042ad1db12202b3d8fa-341c054a4907ee48-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "f3c270dee222c7f25897d13693f668a5", + "traceparent": "00-a92b8401fbbd9d4f8ac3033d28befa79-a016b016900bda45-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "bf5873412cff979d1dffcb2758843f65", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "399", + "Content-Length": "392", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:17 GMT", + "Date": "Thu, 30 Sep 2021 06:22:47 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "f3c270dee222c7f25897d13693f668a5", - "x-ms-correlation-request-id": "0e5cad7d-0622-4bec-b2f9-4a168405314e", - "x-ms-request-id": "e18e40d7-57aa-463e-88a7-cae824781959", + "x-ms-client-request-id": "bf5873412cff979d1dffcb2758843f65", + "x-ms-correlation-request-id": "31767d94-14f3-4d35-852e-6debbb91293e", + "x-ms-request-id": "91a1f5a1-3602-4f7f-8b42-706b3ff58b06", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger125302184", - "name": "Trigger125302184", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/triggers/Trigger277322190", + "name": "Trigger277322190", "type": "Microsoft.Synapse/workspaces/triggers", "properties": { "type": "ScheduleTrigger", @@ -8173,46 +734,40 @@ }, "runtimeState": "Stopped" }, - "etag": "0f01ec5d-0000-0800-0000-6009c0da0000" + "etag": "00009000-0000-0100-0000-600163080000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger571918210?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/triggers/Trigger533902365?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-fc5343674d493b4b98a47f851cf23892-326642bc9433f846-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "47e6301be4289126f49ed626e5676175", + "traceparent": "00-f2399863eb03e84b9f41e2c71a9911db-a3e94fa1255ff346-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "fab70ad0b722ac3028bb2b0e1158d18f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "399", + "Content-Length": "392", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:18 GMT", + "Date": "Thu, 30 Sep 2021 06:22:47 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "47e6301be4289126f49ed626e5676175", - "x-ms-correlation-request-id": "187a1d11-ffb6-429e-a290-bbe9b52a5ba2", - "x-ms-request-id": "2610b37b-3822-4233-b2f5-ad286a245a2c", + "x-ms-client-request-id": "fab70ad0b722ac3028bb2b0e1158d18f", + "x-ms-correlation-request-id": "efd9b845-551f-4428-a11b-c95a627b31e6", + "x-ms-request-id": "16b70889-8179-4c8a-802e-f8154f8381ae", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger571918210", - "name": "Trigger571918210", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/triggers/Trigger533902365", + "name": "Trigger533902365", "type": "Microsoft.Synapse/workspaces/triggers", "properties": { "type": "ScheduleTrigger", @@ -8221,45 +776,39 @@ }, "runtimeState": "Stopped" }, - "etag": "02028c8d-0000-0800-0000-600b291b0000" + "etag": "00009a00-0000-0100-0000-6001630e0000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger324461666?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/triggers/Trigger324461666?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-96d7241eaf7f164496a5207618897800-6898c8a2b2315946-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "dc2ca710262ef90a46b088efd8179d9d", + "traceparent": "00-7adc2f30a6c3cc4bb27a99d275ed4618-9fcd559952853140-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "095f8c6c39a36594d04b477531a3ba5d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "399", + "Content-Length": "392", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:18 GMT", + "Date": "Thu, 30 Sep 2021 06:22:48 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "dc2ca710262ef90a46b088efd8179d9d", - "x-ms-correlation-request-id": "17bd7f3b-b4ba-4a4b-a916-d6f9420ee7ce", - "x-ms-request-id": "d8a206ac-a400-4182-a114-62b45e7cac80", + "x-ms-client-request-id": "095f8c6c39a36594d04b477531a3ba5d", + "x-ms-correlation-request-id": "0d6e47b0-9d80-4fdc-9158-eba67595db49", + "x-ms-request-id": "f0dcfd0e-c3f8-4d81-9d25-7c235328b7dc", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger324461666", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/triggers/Trigger324461666", "name": "Trigger324461666", "type": "Microsoft.Synapse/workspaces/triggers", "properties": { @@ -8269,21 +818,18 @@ }, "runtimeState": "Stopped" }, - "etag": "030266e0-0000-0800-0000-600b2afc0000" + "etag": "2e003681-0000-0100-0000-615557b60000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger324461666?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/triggers/Trigger324461666?api-version=2020-12-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-56bf5381e3866c419f378129d4d97e87-981142e5611d214f-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "837873a6a7a2f93d4a30ff830ccce2f0", + "traceparent": "00-aa41a35a1b88574191420af10d6e69c7-9be5951ec6ed9c45-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "30c2dec0f77f89cd42ac9743008e86c5", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -8291,36 +837,33 @@ "ResponseHeaders": { "Access-Control-Allow-Headers": "Location", "Access-Control-Expose-Headers": "Location", - "Content-Length": "372", + "Content-Length": "365", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:18 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/4918db6d-19b2-450e-bffc-2a6cfbbf2a61?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:22:48 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d05cd422-b0e4-4b7a-b8e6-1e06c379becb?api-version=2020-12-01", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "837873a6a7a2f93d4a30ff830ccce2f0", - "x-ms-request-id": "35743e1f-23d5-4446-a966-7ae780e283fe" + "x-ms-client-request-id": "30c2dec0f77f89cd42ac9743008e86c5", + "x-ms-request-id": "594a8cda-8103-409e-84d2-3be347ce6eff" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger324461666", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/triggers/Trigger324461666", "recordId": 0, "state": "Deleting", "created": "0001-01-01T00:00:00", "changed": "0001-01-01T00:00:00", "type": "Trigger", "name": "Trigger324461666", - "operationId": "4918db6d-19b2-450e-bffc-2a6cfbbf2a61" + "operationId": "d05cd422-b0e4-4b7a-b8e6-1e06c379becb" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/4918db6d-19b2-450e-bffc-2a6cfbbf2a61?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d05cd422-b0e4-4b7a-b8e6-1e06c379becb?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "71803801ddef68d36a3291fd2786ec7a", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "324dcd01a196750fbfd6c6f7a1516442", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -8336,28 +879,25 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:18 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/4918db6d-19b2-450e-bffc-2a6cfbbf2a61?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:22:48 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d05cd422-b0e4-4b7a-b8e6-1e06c379becb?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "71803801ddef68d36a3291fd2786ec7a", - "x-ms-request-id": "e71bb58a-6fe1-428c-aa03-c4b8f4cfc07f" + "x-ms-client-request-id": "324dcd01a196750fbfd6c6f7a1516442", + "x-ms-request-id": "b46c50eb-1471-4040-9ecf-e67584fc3d86" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/4918db6d-19b2-450e-bffc-2a6cfbbf2a61?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d05cd422-b0e4-4b7a-b8e6-1e06c379becb?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "7cba97ceb1f21ad3fc845db5a6c49d14", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "f54782c5efe98a381c2aba2dcef71888", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -8373,28 +913,25 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:19 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/4918db6d-19b2-450e-bffc-2a6cfbbf2a61?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:22:49 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d05cd422-b0e4-4b7a-b8e6-1e06c379becb?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "7cba97ceb1f21ad3fc845db5a6c49d14", - "x-ms-request-id": "e416196b-9480-4335-979a-7715165be5f1" + "x-ms-client-request-id": "f54782c5efe98a381c2aba2dcef71888", + "x-ms-request-id": "a02df4aa-eb6b-4c19-9424-eb74d62a2691" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/4918db6d-19b2-450e-bffc-2a6cfbbf2a61?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d05cd422-b0e4-4b7a-b8e6-1e06c379becb?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "d3822277704b570189bd8197fa79cd9f", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "3341123154418c2f2c450c4e6fcbf524", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -8410,28 +947,25 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:21 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/4918db6d-19b2-450e-bffc-2a6cfbbf2a61?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:22:51 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d05cd422-b0e4-4b7a-b8e6-1e06c379becb?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "d3822277704b570189bd8197fa79cd9f", - "x-ms-request-id": "9442878f-15fc-4e2e-867a-097e8e9c4069" + "x-ms-client-request-id": "3341123154418c2f2c450c4e6fcbf524", + "x-ms-request-id": "275fa3df-9cc7-4ae2-bb33-4dbbcd5cc60e" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/4918db6d-19b2-450e-bffc-2a6cfbbf2a61?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d05cd422-b0e4-4b7a-b8e6-1e06c379becb?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "c5aa86ff3d7b50ea6566756a801dc1a6", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "ed11e7ed8472129b95c2156be6e1a6c8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -8447,45 +981,76 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:22 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/4918db6d-19b2-450e-bffc-2a6cfbbf2a61?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:22:52 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d05cd422-b0e4-4b7a-b8e6-1e06c379becb?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "c5aa86ff3d7b50ea6566756a801dc1a6", - "x-ms-request-id": "f02f777c-61e0-441a-ae53-454ad01871aa" + "x-ms-client-request-id": "ed11e7ed8472129b95c2156be6e1a6c8", + "x-ms-request-id": "51d9ae00-07de-4ccc-9f0b-8d91f32766a1" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/4918db6d-19b2-450e-bffc-2a6cfbbf2a61?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d05cd422-b0e4-4b7a-b8e6-1e06c379becb?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "8fc53ebd310f710053bbc8a3e2ea1b51", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" ], - "x-ms-client-request-id": "04867d9519045d2e9562f234303b2082", + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 30 Sep 2021 06:22:53 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d05cd422-b0e4-4b7a-b8e6-1e06c379becb?api-version=2020-12-01", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "8fc53ebd310f710053bbc8a3e2ea1b51", + "x-ms-request-id": "44d5692d-42f3-452b-bd40-67953ec18c47" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d05cd422-b0e4-4b7a-b8e6-1e06c379becb?api-version=2020-12-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "e74096352be5ac15762f9d7e3ec3a54a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Content-Length": "0", - "Date": "Fri, 22 Jan 2021 19:44:23 GMT", + "Date": "Thu, 30 Sep 2021 06:22:54 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "04867d9519045d2e9562f234303b2082", - "x-ms-request-id": "372ed0f5-bfcf-448c-9c36-199bd9c80117" + "x-ms-client-request-id": "e74096352be5ac15762f9d7e3ec3a54a", + "x-ms-request-id": "edba20ca-c559-40d4-94ed-7e6c6795b010" }, "ResponseBody": [] } ], "Variables": { - "AZURE_SYNAPSE_WORKSPACE_URL": "https://workspacechhamosynapse.dev.azuresynapse.net", + "AZURE_SYNAPSE_WORKSPACE_URL": "https://testsynapseworkspace.dev.azuresynapse.net", "RandomSeed": "1535958187" } } \ No newline at end of file diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/TriggerClientLiveTests/TestGetTriggerAsync.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/TriggerClientLiveTests/TestGetTriggerAsync.json index 4ed656c27141..49e7c892a8bc 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/TriggerClientLiveTests/TestGetTriggerAsync.json +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/TriggerClientLiveTests/TestGetTriggerAsync.json @@ -1,18 +1,15 @@ { "Entries": [ { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger169449771?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/triggers/Trigger169449771?api-version=2020-12-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "76", "Content-Type": "application/json", - "traceparent": "00-c914ea8d70cac24a890f9c057b90d794-b39fc49c99ff2349-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "traceparent": "00-504b765126dd5f4f974e272ddca7e95a-403f85aacf9b094f-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d53efd64db6676d9f580f8dfdbd71fbe", "x-ms-return-client-request-id": "true" }, @@ -34,37 +31,34 @@ "Location", "Retry-After" ], - "Content-Length": "437", + "Content-Length": "441", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:46 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/5a83d028-5971-4ec9-b4ed-c626229d5d9c?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:23:18 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/86c0d524-7a7d-4b06-a9a6-d686270094ad?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "d53efd64db6676d9f580f8dfdbd71fbe", - "x-ms-request-id": "2a7c1801-b928-45bd-a039-4d9fe125ec0b" + "x-ms-request-id": "f87ad56b-f663-41af-a699-77ffa2698270" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger169449771", - "recordId": 996522, + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/triggers/Trigger169449771", + "recordId": 2424625, "state": "Creating", - "created": "2021-01-22T19:44:46.31Z", - "changed": "2021-01-22T19:44:46.31Z", + "created": "2021-09-30T06:23:19.3333333Z", + "changed": "2021-09-30T06:23:19.3333333Z", "type": "Trigger", "name": "Trigger169449771", - "operationId": "5a83d028-5971-4ec9-b4ed-c626229d5d9c", - "artifactId": "EE953B2D-F8EE-462E-9B7C-A10B462C7827" + "operationId": "86c0d524-7a7d-4b06-a9a6-d686270094ad", + "artifactId": "709245B9-8E8A-459A-A2CB-79886DFBF7E5" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/5a83d028-5971-4ec9-b4ed-c626229d5d9c?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/86c0d524-7a7d-4b06-a9a6-d686270094ad?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "593d71d71fd41872037ccde9ef627d3a", "x-ms-return-client-request-id": "true" }, @@ -81,27 +75,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:46 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/5a83d028-5971-4ec9-b4ed-c626229d5d9c?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:23:18 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/86c0d524-7a7d-4b06-a9a6-d686270094ad?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "593d71d71fd41872037ccde9ef627d3a", - "x-ms-request-id": "293a3d77-f6f3-4d1b-a2f2-52bfc75df878" + "x-ms-request-id": "e1ef18c8-7bf0-4146-9103-6d9562c0fa75" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/5a83d028-5971-4ec9-b4ed-c626229d5d9c?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/86c0d524-7a7d-4b06-a9a6-d686270094ad?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "bce390a5c757ba67235a655052849825", "x-ms-return-client-request-id": "true" }, @@ -118,27 +109,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:47 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/5a83d028-5971-4ec9-b4ed-c626229d5d9c?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:23:19 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/86c0d524-7a7d-4b06-a9a6-d686270094ad?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "bce390a5c757ba67235a655052849825", - "x-ms-request-id": "2074dc21-a664-4abe-bd6d-5cd9083bafc3" + "x-ms-request-id": "97795b83-b035-4927-bdcc-39c0e341a291" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/5a83d028-5971-4ec9-b4ed-c626229d5d9c?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/86c0d524-7a7d-4b06-a9a6-d686270094ad?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6a081673c699f7e9087483cddcf0f40c", "x-ms-return-client-request-id": "true" }, @@ -155,27 +143,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:48 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/5a83d028-5971-4ec9-b4ed-c626229d5d9c?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:23:20 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/86c0d524-7a7d-4b06-a9a6-d686270094ad?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "6a081673c699f7e9087483cddcf0f40c", - "x-ms-request-id": "f487c4a6-ecdb-4493-a5c5-28ddeca4df48" + "x-ms-request-id": "08c1aad1-aa46-4c63-9627-bca53be5a2b8" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/5a83d028-5971-4ec9-b4ed-c626229d5d9c?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/86c0d524-7a7d-4b06-a9a6-d686270094ad?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "4daf4e9851ec0f890983357ab921c57e", "x-ms-return-client-request-id": "true" }, @@ -192,7595 +177,81 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:49 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/5a83d028-5971-4ec9-b4ed-c626229d5d9c?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:23:22 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/86c0d524-7a7d-4b06-a9a6-d686270094ad?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "4daf4e9851ec0f890983357ab921c57e", - "x-ms-request-id": "c8c19384-adc2-49dc-9918-06aaf3699f47" + "x-ms-request-id": "fc220efa-198c-4ba7-9447-cb682b9ad057" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/5a83d028-5971-4ec9-b4ed-c626229d5d9c?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/86c0d524-7a7d-4b06-a9a6-d686270094ad?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d875a7e3135adfa0a6ecb3e3439add33", "x-ms-return-client-request-id": "true" }, "RequestBody": null, - "StatusCode": 200, + "StatusCode": 202, "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "399", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:50 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-ms-client-request-id": "d875a7e3135adfa0a6ecb3e3439add33", - "x-ms-correlation-request-id": "cce5fed6-b60c-4054-9b4f-299ccc790ab5", - "x-ms-request-id": "c78e1058-0c0c-4e02-8a1d-6c8e45477e92", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger169449771", - "name": "Trigger169449771", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "04023007-0000-0800-0000-600b2b310000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-3b83771174240c409252776ae51aaed6-b2fece4ae64e014f-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" ], - "x-ms-client-request-id": "04b859654bd521398df86016906e3de7", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Length": "20272", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:50 GMT", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "04b859654bd521398df86016906e3de7", - "x-ms-request-id": "94104b7c-7bf8-40ca-b5c3-ec44f6e96382" - }, - "ResponseBody": { - "value": [ - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger56446399", - "name": "Trigger56446399", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "f5012d73-0000-0800-0000-5fd2533c0000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger938529212", - "name": "Trigger938529212", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "f5016fea-0000-0800-0000-5fd257320000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger604607482", - "name": "Trigger604607482", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "f6015b08-0000-0800-0000-5fd2583a0000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger694784690", - "name": "Trigger694784690", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "f601cf09-0000-0800-0000-5fd258470000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger346538274", - "name": "Trigger346538274", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "f6011124-0000-0800-0000-5fd259340000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1964767865", - "name": "Trigger1964767865", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "f601eb25-0000-0800-0000-5fd259450000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1751712180", - "name": "Trigger1751712180", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "f601274c-0000-0800-0000-5fd25a6c0000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger711503755", - "name": "Trigger711503755", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "f6010d4d-0000-0800-0000-5fd25a730000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1712446015", - "name": "Trigger1712446015", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "f601deb1-0000-0800-0000-5fd25e3e0000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1222588758", - "name": "Trigger1222588758", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "f60152b3-0000-0800-0000-5fd25e4c0000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1163150338", - "name": "Trigger1163150338", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "f6011dca-0000-0800-0000-5fd25f180000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1055011545", - "name": "Trigger1055011545", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "f601cacb-0000-0800-0000-5fd25f270000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger235227369", - "name": "Trigger235227369", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "f7015c36-0000-0800-0000-5fd263430000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger330622409", - "name": "Trigger330622409", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "f7017d52-0000-0800-0000-5fd264350000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger258279549", - "name": "Trigger258279549", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "f7013d54-0000-0800-0000-5fd264480000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1937238322", - "name": "Trigger1937238322", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "f7010d6d-0000-0800-0000-5fd265300000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1438351414", - "name": "Trigger1438351414", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "f701af6e-0000-0800-0000-5fd265400000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1370548897", - "name": "Trigger1370548897", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "f701f59e-0000-0800-0000-5fd267030000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger225206473", - "name": "Trigger225206473", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "f7015fa0-0000-0800-0000-5fd267120000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/TestTrigger-asdf", - "name": "TestTrigger-asdf", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "fc01c140-0000-0800-0000-5fd28ff90000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger277322190", - "name": "Trigger277322190", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "1a020b08-0000-0800-0000-5fd3ad2a0000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger533902365", - "name": "Trigger533902365", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "1a02cc09-0000-0800-0000-5fd3ad3c0000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger2050746666", - "name": "Trigger2050746666", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "6202c89b-0000-0800-0000-5fd7979a0000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1963667612", - "name": "Trigger1963667612", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "6202d29c-0000-0800-0000-5fd797a50000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger2136579760", - "name": "Trigger2136579760", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "620262cd-0000-0800-0000-5fd7991d0000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger104997096", - "name": "Trigger104997096", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "6202f6cf-0000-0800-0000-5fd7992f0000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger694187999", - "name": "Trigger694187999", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "6202aff2-0000-0800-0000-5fd79a3a0000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger982066533", - "name": "Trigger982066533", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "620201f4-0000-0800-0000-5fd79a450000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger209853000", - "name": "Trigger209853000", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "84025700-0000-0800-0000-5fd8d4090000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1806891071", - "name": "Trigger1806891071", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "8402cc02-0000-0800-0000-5fd8d41d0000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger250196196", - "name": "Trigger250196196", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "84029b39-0000-0800-0000-5fd8d5b90000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1443463744", - "name": "Trigger1443463744", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "8402283b-0000-0800-0000-5fd8d5c50000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger2002432701", - "name": "Trigger2002432701", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "8402f15f-0000-0800-0000-5fd8d6e10000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1101946319", - "name": "Trigger1101946319", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "8402f061-0000-0800-0000-5fd8d6ef0000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger61747177", - "name": "Trigger61747177", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "8702d5ba-0000-0800-0000-5fd8f1820000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger998075970", - "name": "Trigger998075970", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "87021abd-0000-0800-0000-5fd8f1930000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger818895932", - "name": "Trigger818895932", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "87029edc-0000-0800-0000-5fd8f28a0000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1730714410", - "name": "Trigger1730714410", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "8702b4de-0000-0800-0000-5fd8f29c0000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger371058577", - "name": "Trigger371058577", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "870298ff-0000-0800-0000-5fd8f3a70000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger52768059", - "name": "Trigger52768059", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "88028502-0000-0800-0000-5fd8f3bd0000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger899038259", - "name": "Trigger899038259", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "8802cb6c-0000-0800-0000-5fd8f71f0000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1826422556", - "name": "Trigger1826422556", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "8802a76e-0000-0800-0000-5fd8f7350000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1366547425", - "name": "Trigger1366547425", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "8802048e-0000-0800-0000-5fd8f8410000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1555225742", - "name": "Trigger1555225742", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "8802bd90-0000-0800-0000-5fd8f8590000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1843171455", - "name": "Trigger1843171455", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "8802f1b1-0000-0800-0000-5fd8f9640000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1919554351", - "name": "Trigger1919554351", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "880225b5-0000-0800-0000-5fd8f97d0000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1335994905", - "name": "Trigger1335994905", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "4200277a-0000-0800-0000-5fda87030000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1050015707", - "name": "Trigger1050015707", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "4200187f-0000-0800-0000-5fda87170000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger877067340", - "name": "Trigger877067340", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "42006fbf-0000-0800-0000-5fda88100000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger2107231899", - "name": "Trigger2107231899", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "4200b4c5-0000-0800-0000-5fda88290000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - } - ], - "nextLink": "https://workspacechhamosynapse.dev.azuresynapse.net:443/triggers?api-version=2019-06-01-preview\u0026%24skipToken=%2BRID%3A%7ESl8ZAKxwhABoUgAAAAD8BA%3D%3D%23RT%3A1%23TRC%3A50%23ISV%3A2%23IEO%3A65551%23QCF%3A1" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger56446399?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-9126542ede179c41b4c99aab9adf1a6c-71187ece58183b41-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "35ea04af1b7a85b2aed0a6ff9da6cb6f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "397", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:50 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-ms-client-request-id": "35ea04af1b7a85b2aed0a6ff9da6cb6f", - "x-ms-correlation-request-id": "b60b3014-1f22-4db7-bac9-5358cd01dec1", - "x-ms-request-id": "4dd0e9cb-1431-4a63-a35e-613dd68d7789", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger56446399", - "name": "Trigger56446399", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "f5012d73-0000-0800-0000-5fd2533c0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger938529212?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-a7036f95884d054cb5fedd1d917b34c2-1c0cbafa4a380c42-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "601502a5c06997a96d544b61b2894e38", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "399", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:50 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-ms-client-request-id": "601502a5c06997a96d544b61b2894e38", - "x-ms-correlation-request-id": "35a0f4df-efb5-4e02-82df-f7eb2ef59b3a", - "x-ms-request-id": "95be2ab4-a490-4506-b418-ca1bcf2a5733", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger938529212", - "name": "Trigger938529212", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "f5016fea-0000-0800-0000-5fd257320000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger604607482?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-4862579b1fcd4545b283e538125156fc-5862d1f7e2d64b49-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "3f34ccafa8af49b9a6325605a43a84e6", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "399", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:50 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-ms-client-request-id": "3f34ccafa8af49b9a6325605a43a84e6", - "x-ms-correlation-request-id": "8cb861ab-f596-431d-91f4-097177851271", - "x-ms-request-id": "f477fc4b-ef63-48d5-886e-0a483c4719fe", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger604607482", - "name": "Trigger604607482", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "f6015b08-0000-0800-0000-5fd2583a0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger694784690?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-5f3f92a71f055a47b1c33d95830e790f-9bf7c0f4731eaa4d-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "8e70f12ddc59ee7e5b52c726cf50d324", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "399", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:50 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-ms-client-request-id": "8e70f12ddc59ee7e5b52c726cf50d324", - "x-ms-correlation-request-id": "a689e86f-86e5-4ef5-a19e-d13fb79fe871", - "x-ms-request-id": "3054aa79-a0aa-4f23-b2b8-a14783298657", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger694784690", - "name": "Trigger694784690", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "f601cf09-0000-0800-0000-5fd258470000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger346538274?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-5fcdbff6df19704fae7bf80cdc6e9c55-0ac721b7675c8a43-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "d14f6e818c72fdbf48cbba366aa4f233", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "399", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:50 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-ms-client-request-id": "d14f6e818c72fdbf48cbba366aa4f233", - "x-ms-correlation-request-id": "df7a8fed-dee8-4b7d-a7a2-82c3b3314cb8", - "x-ms-request-id": "fd4b3640-4be1-4a80-86c3-c8fb8dd55ed2", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger346538274", - "name": "Trigger346538274", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "f6011124-0000-0800-0000-5fd259340000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger1964767865?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-bc5ca0cc2e20f045820ff0e4e597f83b-c7f86816404dc04c-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "c13465cfc018d2de4e45e35ce0937a55", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "401", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44: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-ms-client-request-id": "c13465cfc018d2de4e45e35ce0937a55", - "x-ms-correlation-request-id": "d7829ee0-b8f6-475a-8363-831f1645c412", - "x-ms-request-id": "484af6b7-65f6-48ba-bcb4-a211cb214aa6", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1964767865", - "name": "Trigger1964767865", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "f601eb25-0000-0800-0000-5fd259450000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger1751712180?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-f729aa950f5eeb42b08eaee8e8402bde-15b1068b8e4bf94d-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "3683315fb2eaa0743173458e224783b7", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "401", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44: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-ms-client-request-id": "3683315fb2eaa0743173458e224783b7", - "x-ms-correlation-request-id": "f819870d-f23e-463e-94df-202338838ede", - "x-ms-request-id": "9a64ca21-4f0b-428e-9c9a-4a2bb7e81da5", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1751712180", - "name": "Trigger1751712180", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "f601274c-0000-0800-0000-5fd25a6c0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger711503755?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-f9228ad10180b342ba175c6440260b6f-7cdc7b462f249b48-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "6a569460111cc10b907d822ca8621db5", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "399", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44: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-ms-client-request-id": "6a569460111cc10b907d822ca8621db5", - "x-ms-correlation-request-id": "a6ac4a31-65e9-46a1-a5a9-b246e0983a2e", - "x-ms-request-id": "638e3963-cf00-4a66-9416-a2e173c3e1e3", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger711503755", - "name": "Trigger711503755", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "f6010d4d-0000-0800-0000-5fd25a730000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger1712446015?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-7c6e897dc255bc4f9421c1b991da63df-4d8fc0a33176e345-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "38d76451bc201c48f09390a57a50b007", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "401", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44: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-ms-client-request-id": "38d76451bc201c48f09390a57a50b007", - "x-ms-correlation-request-id": "bd7defaf-c882-4074-a98a-be3c38d8aa5c", - "x-ms-request-id": "6a11932b-126c-4b11-8987-48195ae29a7d", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1712446015", - "name": "Trigger1712446015", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "f601deb1-0000-0800-0000-5fd25e3e0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger1222588758?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-3f5171d315223343bf59deb651fd8576-8e86755bb6deb74f-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "4bfc2cc20f3d4d3926c2a66d3048f8ce", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "401", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44: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-ms-client-request-id": "4bfc2cc20f3d4d3926c2a66d3048f8ce", - "x-ms-correlation-request-id": "79774e69-64b1-41ca-bc5a-1539465f56d9", - "x-ms-request-id": "22bd05f3-22f5-4821-9a6d-996b43b4773b", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1222588758", - "name": "Trigger1222588758", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "f60152b3-0000-0800-0000-5fd25e4c0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger1163150338?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-27361cb457962545a4616b803eb9173c-7a14d302f9fa1845-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "be3d90564a70a3964c39798981664640", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "401", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44: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-ms-client-request-id": "be3d90564a70a3964c39798981664640", - "x-ms-correlation-request-id": "96441e5d-44c3-4521-b68e-522dde42d4aa", - "x-ms-request-id": "49134eba-5e49-4e93-8925-c695e7632fef", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1163150338", - "name": "Trigger1163150338", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "f6011dca-0000-0800-0000-5fd25f180000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger1055011545?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-93ede3ef3792a041a5c4416a55155b8f-3f7bafd2f227a948-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "7c697bcdd26641782b89125e16dbeca8", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "401", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44: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-ms-client-request-id": "7c697bcdd26641782b89125e16dbeca8", - "x-ms-correlation-request-id": "72734f36-e31a-4178-9374-6d5b273bc54a", - "x-ms-request-id": "6a5f1750-de4a-4277-be4f-f32cc472291d", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1055011545", - "name": "Trigger1055011545", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "f601cacb-0000-0800-0000-5fd25f270000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger235227369?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-44d1b73160a5ba48858a5317dbeb5965-873f39834da44345-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "ea4fc19bf11277969659ff0395afccbf", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "399", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44: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-ms-client-request-id": "ea4fc19bf11277969659ff0395afccbf", - "x-ms-correlation-request-id": "99ae1ad6-94e8-439e-860e-85a0a3f362ad", - "x-ms-request-id": "393f7605-7d60-42df-867e-c11c6fbf66a0", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger235227369", - "name": "Trigger235227369", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "f7015c36-0000-0800-0000-5fd263430000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger330622409?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-633d30d219dcb94ca3cce668f4c0b4db-a4d51051fa55a84e-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "b4a0667b7cde846818fb93e638388d70", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "399", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:52 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-ms-client-request-id": "b4a0667b7cde846818fb93e638388d70", - "x-ms-correlation-request-id": "f69acded-9919-4dc7-b519-e797512ea914", - "x-ms-request-id": "34686024-35fd-4648-9a64-9bb3f24aeda3", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger330622409", - "name": "Trigger330622409", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "f7017d52-0000-0800-0000-5fd264350000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger258279549?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-4c498844964bd74f8294b33846aa8c91-56d3c75eab8b5a40-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "bfedd04c5c17db2de4f2e50cd274ab7b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "399", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:52 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-ms-client-request-id": "bfedd04c5c17db2de4f2e50cd274ab7b", - "x-ms-correlation-request-id": "63c69178-428e-4e8b-adc5-8c7bcce7fcfc", - "x-ms-request-id": "ea6c9aeb-a7c8-46f8-b6f5-7b24279e38da", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger258279549", - "name": "Trigger258279549", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "f7013d54-0000-0800-0000-5fd264480000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger1937238322?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-1364365c09658742a3e9541857cc23f6-ea09b217f4a10242-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "b0e252bc383a1fca59cbd1165eb03f5e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "401", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:52 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-ms-client-request-id": "b0e252bc383a1fca59cbd1165eb03f5e", - "x-ms-correlation-request-id": "daddfc9a-1795-41d5-a6a9-8f4ace6f0e60", - "x-ms-request-id": "1d0034f2-b3fc-49cb-b3c3-ad95378b7966", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1937238322", - "name": "Trigger1937238322", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "f7010d6d-0000-0800-0000-5fd265300000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger1438351414?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-430d0ae742367e4985b7edf496951256-67a6b0a72778cb4c-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "c4b78ecb0cc21ea838c4cfeb965bb1a3", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "401", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:52 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-ms-client-request-id": "c4b78ecb0cc21ea838c4cfeb965bb1a3", - "x-ms-correlation-request-id": "fa79c2c6-120e-4c70-8866-336ef31c8db9", - "x-ms-request-id": "3d0f533d-f5ec-4b43-96b9-b3b9785d8e98", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1438351414", - "name": "Trigger1438351414", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "f701af6e-0000-0800-0000-5fd265400000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger1370548897?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-d3a0121247c764438e5a0671d91b557c-0a0d4000807ea643-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "e52a174fdc55143506ce664c8a167c34", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "401", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:52 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-ms-client-request-id": "e52a174fdc55143506ce664c8a167c34", - "x-ms-correlation-request-id": "3dbed643-dda1-498c-a6e1-3d49a90ccd9e", - "x-ms-request-id": "03db83a8-1c72-4228-931e-adb2531d75a0", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1370548897", - "name": "Trigger1370548897", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "f701f59e-0000-0800-0000-5fd267030000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger225206473?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-b20b89125b9ede449d67a34dad673ff1-1ebf0e8f215a5744-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "444087b3e7bdb0b9aac4777668de89fd", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "399", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:52 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-ms-client-request-id": "444087b3e7bdb0b9aac4777668de89fd", - "x-ms-correlation-request-id": "09238dae-580c-4d5f-8645-3d96faf3245f", - "x-ms-request-id": "c61149a2-4d34-4ba7-a79b-2383e80b290c", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger225206473", - "name": "Trigger225206473", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "f7015fa0-0000-0800-0000-5fd267120000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/TestTrigger-asdf?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-c85751ea1d45924c9ade3f3384692e8f-6d60abe79db47242-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "46c72e195985ef0858a3bef3a65c9322", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "399", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:52 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-ms-client-request-id": "46c72e195985ef0858a3bef3a65c9322", - "x-ms-correlation-request-id": "559e203f-3898-47c2-8208-aea2470b68e3", - "x-ms-request-id": "18d9ef8c-746f-4791-a280-c244bb85719b", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/TestTrigger-asdf", - "name": "TestTrigger-asdf", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "fc01c140-0000-0800-0000-5fd28ff90000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger277322190?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-a3b199bcffe70c4db802b34627c870e5-1e0e86a8c3b60e46-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "0e389a486d1a68e65e793a9064bfab27", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "399", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:52 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-ms-client-request-id": "0e389a486d1a68e65e793a9064bfab27", - "x-ms-correlation-request-id": "243a1c1f-156e-4c03-8941-9ae01d6e1dbe", - "x-ms-request-id": "cad58c66-959f-4a89-8e65-c84ed1e7a7d0", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger277322190", - "name": "Trigger277322190", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "1a020b08-0000-0800-0000-5fd3ad2a0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger533902365?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-d6a18925bf21ed4d97e055e8ff13567a-bd7265651362da4c-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "5c326844354f59ae7e51eb1928c5094e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "399", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44: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-ms-client-request-id": "5c326844354f59ae7e51eb1928c5094e", - "x-ms-correlation-request-id": "cfc0c69f-b7fd-4c31-9c37-022195956bf8", - "x-ms-request-id": "9b04593c-44d8-448a-8e16-ad6cd82b1c8c", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger533902365", - "name": "Trigger533902365", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "1a02cc09-0000-0800-0000-5fd3ad3c0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger2050746666?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-3019a2396b9f7f47872a8219f20b3328-69ee3ad7f7357f4f-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "cd2e55317aa6ace3485ee80b1e788a99", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "401", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44: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-ms-client-request-id": "cd2e55317aa6ace3485ee80b1e788a99", - "x-ms-correlation-request-id": "595fc025-8be8-4883-b748-f8c35c539cce", - "x-ms-request-id": "00d966ad-c54e-4d8b-a25d-d2f643a6a2d0", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger2050746666", - "name": "Trigger2050746666", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "6202c89b-0000-0800-0000-5fd7979a0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger1963667612?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-03c19110a7fb8243afd0e37503d50583-dd6620ab0a085747-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "3daf97f7362a12d2ecdf90c881cc4099", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "401", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44: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-ms-client-request-id": "3daf97f7362a12d2ecdf90c881cc4099", - "x-ms-correlation-request-id": "03b5909b-12fc-4251-ab11-ad518f34f39b", - "x-ms-request-id": "adf312b5-05aa-4e83-a4ee-9bb360e99568", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1963667612", - "name": "Trigger1963667612", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "6202d29c-0000-0800-0000-5fd797a50000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger2136579760?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-28fa111636faad4c8aa337a8bd00aa3a-39f46901a1b2334c-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "0f5fec70de91ca81858514f04da23a06", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "401", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44: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-ms-client-request-id": "0f5fec70de91ca81858514f04da23a06", - "x-ms-correlation-request-id": "aec8e482-ecbb-4618-8a9d-938aba1ae8e6", - "x-ms-request-id": "dbac8fb0-215c-4a8a-baa4-c713ca9de696", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger2136579760", - "name": "Trigger2136579760", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "620262cd-0000-0800-0000-5fd7991d0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger104997096?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-19304365462520469c682be64118522c-767c671791386e41-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "912252c7cc16fa23831be1c7ea1a2a7b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "399", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44: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-ms-client-request-id": "912252c7cc16fa23831be1c7ea1a2a7b", - "x-ms-correlation-request-id": "87c913b3-6ae9-4361-bea5-7a022b02e8c7", - "x-ms-request-id": "e95ae435-93de-4653-a7eb-dc74f6b50f6f", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger104997096", - "name": "Trigger104997096", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "6202f6cf-0000-0800-0000-5fd7992f0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger694187999?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-befc4278b5b1b845a4fc3e2e4824329f-4ded6e41cbbbfa41-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "329b4f1e7b18190716e4b7a422e1c449", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "399", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44: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-ms-client-request-id": "329b4f1e7b18190716e4b7a422e1c449", - "x-ms-correlation-request-id": "ac65a61d-ddb7-4dda-b828-2ee92e600e28", - "x-ms-request-id": "540431c3-763f-4732-9d46-7114ad6b3be5", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger694187999", - "name": "Trigger694187999", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "6202aff2-0000-0800-0000-5fd79a3a0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger982066533?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-c4bd2c900de2014db8d237a7d988595a-852c8a6c54e59f45-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "2f0189a4aeaaa382c9658b75fcbae06a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "399", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44: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-ms-client-request-id": "2f0189a4aeaaa382c9658b75fcbae06a", - "x-ms-correlation-request-id": "b56cce0c-8a8c-44e5-aac0-0c10856adaf0", - "x-ms-request-id": "063802db-a6fc-47f7-8cae-d28305effd6d", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger982066533", - "name": "Trigger982066533", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "620201f4-0000-0800-0000-5fd79a450000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger209853000?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-4f16e9b2163ba0408bc8d32c27964f18-8218cc05d62aee4d-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "fdd2995a08064bed4a087b31147fd7a1", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "399", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44: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-ms-client-request-id": "fdd2995a08064bed4a087b31147fd7a1", - "x-ms-correlation-request-id": "ed9d275d-2fb7-43e4-b1ae-52a3e1e02f1d", - "x-ms-request-id": "563dbd6c-3fc0-4c1e-b2fb-870bbb0a165a", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger209853000", - "name": "Trigger209853000", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "84025700-0000-0800-0000-5fd8d4090000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger1806891071?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-895d3ac293742541a18be6fdc3907b85-a6923c0c36611d40-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "60229857fb196fd1ccf869b3ef911d5c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "401", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:55 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-ms-client-request-id": "60229857fb196fd1ccf869b3ef911d5c", - "x-ms-correlation-request-id": "3d6d1361-2345-47a1-b5db-5ad9817f47b9", - "x-ms-request-id": "cfe5e8e7-5385-4576-96a1-9769b5395f21", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1806891071", - "name": "Trigger1806891071", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "8402cc02-0000-0800-0000-5fd8d41d0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger250196196?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-542a9781b042c94c93a41fab36d09024-7af836f4f205b54f-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "89494d04c60f9c429cb5e4a133518e49", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "399", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:55 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-ms-client-request-id": "89494d04c60f9c429cb5e4a133518e49", - "x-ms-correlation-request-id": "b13e49c3-0a1c-4ca3-ba1a-ec8cd20a6e7e", - "x-ms-request-id": "708c8d83-1b4f-4220-be74-7db1d077eb0d", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger250196196", - "name": "Trigger250196196", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "84029b39-0000-0800-0000-5fd8d5b90000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger1443463744?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-faa209d523304143b226424fdcdc4b4e-3a9242b36d05cd4e-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "641eea8d7f975f51c762310e9f395cb9", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "401", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:55 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-ms-client-request-id": "641eea8d7f975f51c762310e9f395cb9", - "x-ms-correlation-request-id": "8b70018f-ed10-4ff3-9210-bdb592b6dadd", - "x-ms-request-id": "7a39821e-c86c-47b0-869b-b215daf054a6", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1443463744", - "name": "Trigger1443463744", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "8402283b-0000-0800-0000-5fd8d5c50000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger2002432701?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-4a4cf0b4cb943540af87dc058fe13979-15fccd91da984045-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "c72d1eeb4e3590915585c463162f3c7b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "401", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:55 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-ms-client-request-id": "c72d1eeb4e3590915585c463162f3c7b", - "x-ms-correlation-request-id": "a6c5986c-af28-4485-921b-d9f87c38d076", - "x-ms-request-id": "c147953e-4c4e-4cbb-b242-b7551cb7c405", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger2002432701", - "name": "Trigger2002432701", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "8402f15f-0000-0800-0000-5fd8d6e10000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger1101946319?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-ca39f2d16667b04fb05e28f2d3b4a211-b88479fbd5b74144-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "04261f69b87385c4fbeac1ac9533fd62", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "401", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:55 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-ms-client-request-id": "04261f69b87385c4fbeac1ac9533fd62", - "x-ms-correlation-request-id": "72340668-51b1-4d36-b19f-4f31649a6503", - "x-ms-request-id": "94fea268-d292-4a32-871a-20327c50971c", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1101946319", - "name": "Trigger1101946319", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "8402f061-0000-0800-0000-5fd8d6ef0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger61747177?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-3966c9f293593d41ab247762d2cab5a7-342dada60d07474c-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "14b62b59c7233f13588d0e12bbed4898", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "397", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:55 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-ms-client-request-id": "14b62b59c7233f13588d0e12bbed4898", - "x-ms-correlation-request-id": "5067e332-4789-41d5-90f8-61d0ad8b30ec", - "x-ms-request-id": "2e6aca9b-37f3-4711-a8fd-7161ef3e786a", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger61747177", - "name": "Trigger61747177", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "8702d5ba-0000-0800-0000-5fd8f1820000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger998075970?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-810af8798cc4c949abbfc71ac47ca58b-9e5c006763269748-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "7fa5b526571333455aa8cb4b8ce5fb21", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "399", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:55 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-ms-client-request-id": "7fa5b526571333455aa8cb4b8ce5fb21", - "x-ms-correlation-request-id": "bba132a9-a6d0-4975-84b5-3b9994576c8d", - "x-ms-request-id": "695d0d75-acd0-47ca-9223-8b4ed2e79585", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger998075970", - "name": "Trigger998075970", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "87021abd-0000-0800-0000-5fd8f1930000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger818895932?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-55568084595d4540873287ca5ae2592f-ef6762442ab90547-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "eb0a61882778a1570be6abe5a9b2c90d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "399", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:55 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-ms-client-request-id": "eb0a61882778a1570be6abe5a9b2c90d", - "x-ms-correlation-request-id": "902fccde-3f3f-4430-b04f-8e623c5a27e3", - "x-ms-request-id": "9e16cef7-7173-4f5c-ad36-ef7c59da5049", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger818895932", - "name": "Trigger818895932", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "87029edc-0000-0800-0000-5fd8f28a0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger1730714410?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-cff58c66b86cc5428989ec2d47914689-4e662730df0d1c42-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "df8528a27d8e014fe583b97bfbc8b273", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "401", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:56 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-ms-client-request-id": "df8528a27d8e014fe583b97bfbc8b273", - "x-ms-correlation-request-id": "c7786aa9-d2da-4cc1-b659-71e80d5f3b0e", - "x-ms-request-id": "27cfa2c2-fa42-4507-a577-f12fb7763d90", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1730714410", - "name": "Trigger1730714410", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "8702b4de-0000-0800-0000-5fd8f29c0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger371058577?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-bb9632d68956a84988f51b4c77d68a7a-1681c047b3922842-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "5989ed925ce3ff205d03742cab6089a8", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "399", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:56 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-ms-client-request-id": "5989ed925ce3ff205d03742cab6089a8", - "x-ms-correlation-request-id": "90405560-648b-41bc-87e1-141a11c8dfd0", - "x-ms-request-id": "8c1d4197-d31c-45d7-9c0d-09ae107c4d26", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger371058577", - "name": "Trigger371058577", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "870298ff-0000-0800-0000-5fd8f3a70000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger52768059?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-7fb7c6ff86d7da4bb4c84df6f084499c-b8d4bda6d3611040-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "64a8bede1b5f0b92120906f56ddba642", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "397", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:56 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-ms-client-request-id": "64a8bede1b5f0b92120906f56ddba642", - "x-ms-correlation-request-id": "a22e27db-50a1-4018-ace5-5236a3b2628a", - "x-ms-request-id": "37988adb-afc3-408b-9540-94cd9f389bcf", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger52768059", - "name": "Trigger52768059", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "88028502-0000-0800-0000-5fd8f3bd0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger899038259?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-c9eaa7c58108004ea0b03f1f21784266-af0682e821a65d40-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "bc5238346f28452a0886818b08225585", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "399", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:56 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-ms-client-request-id": "bc5238346f28452a0886818b08225585", - "x-ms-correlation-request-id": "58d34f79-4154-4e37-9783-f431b1ec75ca", - "x-ms-request-id": "84a67386-ade4-4fc0-93f5-210c0844ad7e", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger899038259", - "name": "Trigger899038259", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "8802cb6c-0000-0800-0000-5fd8f71f0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger1826422556?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-58887dacd6e81f48ae4804ff682c00f4-2e9ddb07494e5742-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "3d9d11f94e1f77145a7e47d9562a9181", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "401", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:56 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-ms-client-request-id": "3d9d11f94e1f77145a7e47d9562a9181", - "x-ms-correlation-request-id": "fc3b05e8-1ad2-44f8-b752-f76defb551ba", - "x-ms-request-id": "4ade2573-65fc-4a05-9b67-6f0117ecc90d", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1826422556", - "name": "Trigger1826422556", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "8802a76e-0000-0800-0000-5fd8f7350000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger1366547425?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-4f0724bede74c9419f881df9fa9e82b4-f122ca35455be249-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "73f8315dcd0d6e7f93635bd9990702f0", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "401", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:56 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-ms-client-request-id": "73f8315dcd0d6e7f93635bd9990702f0", - "x-ms-correlation-request-id": "df1717f5-b104-4094-aec5-a7744c97210c", - "x-ms-request-id": "4cc3b57d-e62c-4db9-a490-77e3f0753cde", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1366547425", - "name": "Trigger1366547425", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "8802048e-0000-0800-0000-5fd8f8410000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger1555225742?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-fee6cfa386bf3544a0e8ca00b78af5a2-5950d7d88cf6a944-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "5cfb80b4683ee52224db62aa2850eede", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "401", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:56 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-ms-client-request-id": "5cfb80b4683ee52224db62aa2850eede", - "x-ms-correlation-request-id": "e45b0573-aea2-4fb6-ac06-fad8acdc6d0a", - "x-ms-request-id": "d46a39b6-d224-412a-a335-a0febff4f20e", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1555225742", - "name": "Trigger1555225742", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "8802bd90-0000-0800-0000-5fd8f8590000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger1843171455?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-6ffa2531e2dad049826e511839d16379-09833aef55af6d4b-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "d72efff4e1292c77912fa9bcf23ade52", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "401", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:56 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-ms-client-request-id": "d72efff4e1292c77912fa9bcf23ade52", - "x-ms-correlation-request-id": "9f38686a-569a-4884-8c3b-2243bb089753", - "x-ms-request-id": "52a32295-5bcd-4330-87af-25efe657e0be", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1843171455", - "name": "Trigger1843171455", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "8802f1b1-0000-0800-0000-5fd8f9640000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger1919554351?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-fbd58db064447b43804d51f8cf6abba6-e0e048540bf27b4c-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "d525577b352ef4430e134f326bd54643", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "401", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:57 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-ms-client-request-id": "d525577b352ef4430e134f326bd54643", - "x-ms-correlation-request-id": "67a505e2-2865-4399-9296-de9473b01a8b", - "x-ms-request-id": "0600261e-84d0-4e50-84d9-0f888705efa7", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1919554351", - "name": "Trigger1919554351", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "880225b5-0000-0800-0000-5fd8f97d0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger1335994905?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-002ab99bc6ade84b94d7e55caf86f33c-279ebfc80652e24a-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "99e47d742bd8d2c609cfca0fbe66f2e9", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "401", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:57 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-ms-client-request-id": "99e47d742bd8d2c609cfca0fbe66f2e9", - "x-ms-correlation-request-id": "5d23e338-e437-4979-b4ea-8a5d48aea3c8", - "x-ms-request-id": "8794b0c2-4fe2-48fc-baec-53561039937f", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1335994905", - "name": "Trigger1335994905", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "4200277a-0000-0800-0000-5fda87030000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger1050015707?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-2002f48447e0d642ad8bb1ccc56766b2-d20ba6c83aaf0e40-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "d02e0ffd192abfafbc3ac8169244c1bb", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "401", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:57 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-ms-client-request-id": "d02e0ffd192abfafbc3ac8169244c1bb", - "x-ms-correlation-request-id": "4cd32cf5-9bbb-4666-b3d5-ed6cba5c8e0b", - "x-ms-request-id": "8e647ff5-0fbb-4f28-bc06-6d4c723aad18", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1050015707", - "name": "Trigger1050015707", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "4200187f-0000-0800-0000-5fda87170000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger877067340?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-9408eb73bc726549bce21b0089d287ac-a3d85c6d5da9ba4f-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "754766e844564f799052cc5f6a3435a8", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "399", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:57 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-ms-client-request-id": "754766e844564f799052cc5f6a3435a8", - "x-ms-correlation-request-id": "a8bfde0a-1810-41ae-982d-f402241d99b1", - "x-ms-request-id": "40e67912-92dc-46cb-9584-890ce84c4f60", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger877067340", - "name": "Trigger877067340", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "42006fbf-0000-0800-0000-5fda88100000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger2107231899?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-00f0531c80868e4c875408aa62275d1c-5790c137acb4bc47-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "5c35662075a65b18cd25dd9e63b040c4", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "401", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:57 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-ms-client-request-id": "5c35662075a65b18cd25dd9e63b040c4", - "x-ms-correlation-request-id": "c68bd995-7490-45f5-8251-9d0637022633", - "x-ms-request-id": "7e950538-7c50-4a30-a21c-48fe68944179", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger2107231899", - "name": "Trigger2107231899", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "4200b4c5-0000-0800-0000-5fda88290000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers?api-version=2019-06-01-preview\u0026%24skipToken=%2BRID%3A~Sl8ZAKxwhABoUgAAAAD8BA%3D%3D%23RT%3A1%23TRC%3A50%23ISV%3A2%23IEO%3A65551%23QCF%3A1", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-e8f2b158966d004ea968b3c8b6d412a2-51095554c0b82040-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "58260e0d7d1eb89295df3fd84d505488", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Length": "20279", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:57 GMT", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "58260e0d7d1eb89295df3fd84d505488", - "x-ms-request-id": "9276ad3c-b68c-4f79-a33b-aa416acf2b35" - }, - "ResponseBody": { - "value": [ - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger2086378973", - "name": "Trigger2086378973", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "4300c302-0000-0800-0000-5fda891d0000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1800475066", - "name": "Trigger1800475066", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "43006007-0000-0800-0000-5fda89310000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger431322087", - "name": "Trigger431322087", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "790095b7-0000-0800-0000-5fdbafc50000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger2021752222", - "name": "Trigger2021752222", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "79004ec0-0000-0800-0000-5fdbafdd0000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1905850478", - "name": "Trigger1905850478", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "7a005917-0000-0800-0000-5fdbb0d30000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger792600914", - "name": "Trigger792600914", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "7a00bf20-0000-0800-0000-5fdbb0ed0000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger312272570", - "name": "Trigger312272570", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "7a00a981-0000-0800-0000-5fdbb1e70000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger441374363", - "name": "Trigger441374363", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "7a002687-0000-0800-0000-5fdbb1f70000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1129688383", - "name": "Trigger1129688383", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "1200e59f-0000-0800-0000-5fdcc8170000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1050941025", - "name": "Trigger1050941025", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "1200dda1-0000-0800-0000-5fdcc82a0000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger828400962", - "name": "Trigger828400962", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "12007add-0000-0800-0000-5fdcca050000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger807763024", - "name": "Trigger807763024", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "12001de0-0000-0800-0000-5fdcca190000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1945410976", - "name": "Trigger1945410976", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "1300940a-0000-0800-0000-5fdccba80000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger506963272", - "name": "Trigger506963272", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "1300920c-0000-0800-0000-5fdccbbc0000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger792987352", - "name": "Trigger792987352", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "15001704-0000-0800-0000-5fdcdd670000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger893127625", - "name": "Trigger893127625", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "15003a06-0000-0800-0000-5fdcdd790000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1126903680", - "name": "Trigger1126903680", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "15005322-0000-0800-0000-5fdcde7d0000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger968456924", - "name": "Trigger968456924", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "15008e24-0000-0800-0000-5fdcde910000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1787296514", - "name": "Trigger1787296514", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "15007345-0000-0800-0000-5fdcdf9c0000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1894775179", - "name": "Trigger1894775179", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "1500f846-0000-0800-0000-5fdcdfae0000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1927233170", - "name": "Trigger1927233170", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "1500acf8-0000-0800-0000-5fdce5e60000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger786174417", - "name": "Trigger786174417", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "15003efb-0000-0800-0000-5fdce5fd0000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger695156011", - "name": "Trigger695156011", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "1600e421-0000-0800-0000-5fdce74b0000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger769604978", - "name": "Trigger769604978", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "1600ae24-0000-0800-0000-5fdce7600000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger35400768", - "name": "Trigger35400768", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "1600f547-0000-0800-0000-5fdce89e0000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1895283959", - "name": "Trigger1895283959", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "1600504a-0000-0800-0000-5fdce8b00000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1803780687", - "name": "Trigger1803780687", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "94003270-0000-0800-0000-5fe0ceb00000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger992702220", - "name": "Trigger992702220", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "9400a17d-0000-0800-0000-5fe0cec80000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger837612643", - "name": "Trigger837612643", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "9500eb76-0000-0800-0000-5fe0d09c0000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger387250351", - "name": "Trigger387250351", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "95009184-0000-0800-0000-5fe0d0b30000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger261210929", - "name": "Trigger261210929", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "9600eb56-0000-0800-0000-5fe0d2240000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1046317501", - "name": "Trigger1046317501", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "9600ea64-0000-0800-0000-5fe0d23b0000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger493153749", - "name": "Trigger493153749", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "b3002845-0000-0800-0000-5fe109440000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1142933410", - "name": "Trigger1142933410", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "b300fb4d-0000-0800-0000-5fe109590000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1811743108", - "name": "Trigger1811743108", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "b4006f15-0000-0800-0000-5fe10b540000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1195837112", - "name": "Trigger1195837112", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "b4004f20-0000-0800-0000-5fe10b6e0000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1092804044", - "name": "Trigger1092804044", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "b4006fd6-0000-0800-0000-5fe10d0b0000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1061147341", - "name": "Trigger1061147341", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "b40097e0-0000-0800-0000-5fe10d1e0000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1293676330", - "name": "Trigger1293676330", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "b8005129-0000-0800-0000-5fe115210000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1121318397", - "name": "Trigger1121318397", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "b8004c31-0000-0800-0000-5fe115370000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1424339475", - "name": "Trigger1424339475", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "b800fdfe-0000-0800-0000-5fe1175d0000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1995833831", - "name": "Trigger1995833831", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "b9009208-0000-0800-0000-5fe117770000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1450305468", - "name": "Trigger1450305468", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "b9002c94-0000-0800-0000-5fe118fd0000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger982309688", - "name": "Trigger982309688", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "b900c39c-0000-0800-0000-5fe119140000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger18006337", - "name": "Trigger18006337", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "0000f7ed-0000-0800-0000-5fe259f10000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger669761297", - "name": "Trigger669761297", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "00004cee-0000-0800-0000-5fe25a0d0000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger283243002", - "name": "Trigger283243002", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "000007f6-0000-0800-0000-5fe25c260000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger2009827879", - "name": "Trigger2009827879", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "000052f6-0000-0800-0000-5fe25c400000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger2062696623", - "name": "Trigger2062696623", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "0000c1fa-0000-0800-0000-5fe25de70000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1883475285", - "name": "Trigger1883475285", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "000026fb-0000-0800-0000-5fe25e000000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - } - ], - "nextLink": "https://workspacechhamosynapse.dev.azuresynapse.net:443/triggers?api-version=2019-06-01-preview\u0026%24skipToken=%2BRID%3A%7ESl8ZAKxwhACdWwAAAAD8BA%3D%3D%23RT%3A2%23TRC%3A100%23ISV%3A2%23IEO%3A65551%23QCF%3A1" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger2086378973?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-ed6f79dd32824c449dda07c22d954a2c-76a70ba77e411c42-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "2bf62004650f73154eeca73167daece0", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "401", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:57 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-ms-client-request-id": "2bf62004650f73154eeca73167daece0", - "x-ms-correlation-request-id": "28d52e80-30ae-4dc7-9312-c0afad6fcfa6", - "x-ms-request-id": "fdea6632-c1a8-40ce-8b20-ae2ba948df59", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger2086378973", - "name": "Trigger2086378973", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "4300c302-0000-0800-0000-5fda891d0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger1800475066?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-3ca7ce6fd6f30d46a2a0b5b1868bd4a7-a31fed00db99924f-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "5c510712dc0ea389d37cc6c735400d7d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "401", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:58 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-ms-client-request-id": "5c510712dc0ea389d37cc6c735400d7d", - "x-ms-correlation-request-id": "5adca19a-ce76-483f-9237-def1233cbcd6", - "x-ms-request-id": "be53f215-24f1-4e57-a0a3-59fd97dcd8c9", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1800475066", - "name": "Trigger1800475066", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "43006007-0000-0800-0000-5fda89310000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger431322087?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-b936aa8466de4b4d940d6437f5a471fa-52a089809cdec34c-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "439a55d114baa8b5f9b20a31d56151ba", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "399", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:58 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-ms-client-request-id": "439a55d114baa8b5f9b20a31d56151ba", - "x-ms-correlation-request-id": "a2b58132-9461-43db-bbd6-7fccf1a51714", - "x-ms-request-id": "dde06c1e-b37f-47a9-b43d-b5fb7be07ba4", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger431322087", - "name": "Trigger431322087", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "790095b7-0000-0800-0000-5fdbafc50000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger2021752222?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-fe78129bf7ea3a479c5cbd55943517c5-27da05e346a23649-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "46c55ff2f7fe2779965258929e4d3d0d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "401", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:58 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-ms-client-request-id": "46c55ff2f7fe2779965258929e4d3d0d", - "x-ms-correlation-request-id": "6a7b93bd-e2d3-454f-93e9-aa171c7ecd89", - "x-ms-request-id": "53f36d75-265c-4e11-b123-a86874c2b7cf", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger2021752222", - "name": "Trigger2021752222", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "79004ec0-0000-0800-0000-5fdbafdd0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger1905850478?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-3cb47b6527baa94cb0aed7d16657e586-67b0aaba1cb7ff43-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "12602adfa940fd2551a8625bd257cd72", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "401", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:58 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-ms-client-request-id": "12602adfa940fd2551a8625bd257cd72", - "x-ms-correlation-request-id": "6e77ea47-b5f0-4bf8-ab79-c39bd02c64c3", - "x-ms-request-id": "7dadcc44-ec35-492f-a8b4-08ed9e89cbb5", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1905850478", - "name": "Trigger1905850478", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "7a005917-0000-0800-0000-5fdbb0d30000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger792600914?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-864aaa219f09ee46971179eb214f0ab5-e89263d0bf57174a-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "d6d40c2bc77ad97edb72ac67bc230aac", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "399", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:58 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-ms-client-request-id": "d6d40c2bc77ad97edb72ac67bc230aac", - "x-ms-correlation-request-id": "871bf847-c323-44af-9d2b-a365b687066a", - "x-ms-request-id": "46aa40dc-a473-407b-9b24-7cf9b56fa6ed", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger792600914", - "name": "Trigger792600914", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "7a00bf20-0000-0800-0000-5fdbb0ed0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger312272570?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-17bc70a9e6a6894b9d6f772f27f27b08-439f34eee8fc404e-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "ab52fc753f00497939c8f456951e553e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "399", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:58 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-ms-client-request-id": "ab52fc753f00497939c8f456951e553e", - "x-ms-correlation-request-id": "51cbdd68-cd07-4e68-88f1-0e84712ab2fa", - "x-ms-request-id": "b8cff18f-8a79-4130-b37f-0f0ac33db7de", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger312272570", - "name": "Trigger312272570", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "7a00a981-0000-0800-0000-5fdbb1e70000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger441374363?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-65c884d58933b6468387993b6615af92-aa7f820bc2ad6045-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "9266e58566781793ab8736cefcbe412e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "399", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:58 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-ms-client-request-id": "9266e58566781793ab8736cefcbe412e", - "x-ms-correlation-request-id": "f0ef13cd-33ce-4a43-9fac-9d2d7f73e0ee", - "x-ms-request-id": "43500f7a-e74b-4a16-a751-63b762ae0992", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger441374363", - "name": "Trigger441374363", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "7a002687-0000-0800-0000-5fdbb1f70000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger1129688383?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-bf49255322bf3d438ae1dff419a388d3-92769d6a761a0d4f-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "d5e5b69e2205ec71928b9db2d22843bc", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "401", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:58 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-ms-client-request-id": "d5e5b69e2205ec71928b9db2d22843bc", - "x-ms-correlation-request-id": "a425d5bf-99e9-4789-8745-308dbe8eb47c", - "x-ms-request-id": "bcb94410-9531-4575-8ff2-710ddc251493", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1129688383", - "name": "Trigger1129688383", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "1200e59f-0000-0800-0000-5fdcc8170000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger1050941025?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-af4878bfbb909246be8ed8ef0cce2b06-a68aec6214227d4a-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "d6e26d1d78bc0e33693aff7908ab4c7b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "401", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44: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-ms-client-request-id": "d6e26d1d78bc0e33693aff7908ab4c7b", - "x-ms-correlation-request-id": "ee13d648-7a6b-4594-b6d4-62d316790f85", - "x-ms-request-id": "57455840-caba-4fae-8a01-58a5bcb2c1a2", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1050941025", - "name": "Trigger1050941025", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "1200dda1-0000-0800-0000-5fdcc82a0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger828400962?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-ebc057ea04ca184885f391a53beee0b3-102054e7931dc24c-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "dfb7c6867f386239747affedc9e04482", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "399", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44: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-ms-client-request-id": "dfb7c6867f386239747affedc9e04482", - "x-ms-correlation-request-id": "0c95f378-d8e9-40e7-88f0-54c416aaf4fa", - "x-ms-request-id": "10feb2e8-3fcf-4f78-9ec8-0ffc08985d0a", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger828400962", - "name": "Trigger828400962", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "12007add-0000-0800-0000-5fdcca050000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger807763024?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-281e49c4e4bdac47a251127d174a9851-7beedbf80f9ef947-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "8fb17a436bdc267183d76cca22f8e3e7", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "399", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44: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-ms-client-request-id": "8fb17a436bdc267183d76cca22f8e3e7", - "x-ms-correlation-request-id": "669187da-ea94-49e7-a371-b5f0a48810d0", - "x-ms-request-id": "85c4ea68-c4f4-4998-9da4-f808e5cc0fb7", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger807763024", - "name": "Trigger807763024", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "12001de0-0000-0800-0000-5fdcca190000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger1945410976?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-27159763a791ca44b49262dc4995e663-a0a4e0de4541e64c-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "0c2b223e64719d833480614178454488", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "401", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44: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-ms-client-request-id": "0c2b223e64719d833480614178454488", - "x-ms-correlation-request-id": "f821c183-0ff2-4a88-a385-271a04e4e067", - "x-ms-request-id": "e3ff63ea-efa9-473d-ab93-759194af0f2f", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1945410976", - "name": "Trigger1945410976", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "1300940a-0000-0800-0000-5fdccba80000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger506963272?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-f76dbf2893c04240a5b46d8fda81338f-9b036694b1bca742-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "8e367df5bdfa1b9e55915b61126e3f7c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "399", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44: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-ms-client-request-id": "8e367df5bdfa1b9e55915b61126e3f7c", - "x-ms-correlation-request-id": "b13944c8-f6dd-4a1a-88f8-71d5f859c58e", - "x-ms-request-id": "35010088-103c-409d-bb4c-4bf2668cd4cf", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger506963272", - "name": "Trigger506963272", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "1300920c-0000-0800-0000-5fdccbbc0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger792987352?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-937be1354dc77d42878a77658c3d3a4f-6da77ec0bc69ed4e-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "a7af189738b4de10f6135b5c092fad3d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "399", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44: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-ms-client-request-id": "a7af189738b4de10f6135b5c092fad3d", - "x-ms-correlation-request-id": "9cc6185c-2f02-47c8-a7b0-92dd1cc3bb00", - "x-ms-request-id": "70fee789-bb6a-455e-bd8d-df71962bd503", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger792987352", - "name": "Trigger792987352", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "15001704-0000-0800-0000-5fdcdd670000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger893127625?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-9f105db6491b0e4890936aad687fa163-5ed8a53d49fa1a4d-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "a5d4e49255c281ec8310b6e008228ac5", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "399", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44: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-ms-client-request-id": "a5d4e49255c281ec8310b6e008228ac5", - "x-ms-correlation-request-id": "10cd5c54-3259-42c4-80c6-e26ca0cab0f2", - "x-ms-request-id": "a3ac7d81-58a2-42c6-8197-03b553190d04", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger893127625", - "name": "Trigger893127625", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "15003a06-0000-0800-0000-5fdcdd790000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger1126903680?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-9aee5e79d8420e41af55844c0f17a4ad-b7a52af1a7fb8549-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "5faae5409c96bcd36c5798e662421125", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "401", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44: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-ms-client-request-id": "5faae5409c96bcd36c5798e662421125", - "x-ms-correlation-request-id": "08e8808b-fd2a-4942-b027-f8347dce4511", - "x-ms-request-id": "689c1f8b-116e-4916-98aa-909c632c50ad", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1126903680", - "name": "Trigger1126903680", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "15005322-0000-0800-0000-5fdcde7d0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger968456924?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-54f3fbb24bc51640b9dae9abcb17875c-edcf6d780a36e245-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "2ecf1ee39a9942ba2c2e24a48130d6d3", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "399", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:45:00 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-ms-client-request-id": "2ecf1ee39a9942ba2c2e24a48130d6d3", - "x-ms-correlation-request-id": "5d39558a-4b52-472c-9834-9ed17e0c615b", - "x-ms-request-id": "a5f8f26d-9481-4276-bbe8-7cbbbf0ee947", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger968456924", - "name": "Trigger968456924", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "15008e24-0000-0800-0000-5fdcde910000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger1787296514?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-d1befa806778cd4f85867488ff41a60a-409284b560e9454c-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "231b95894d85f5a71017386abc051e40", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "401", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:45:00 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-ms-client-request-id": "231b95894d85f5a71017386abc051e40", - "x-ms-correlation-request-id": "2492ec73-5ab3-45e9-97e1-a5292477c965", - "x-ms-request-id": "e8783cd3-967e-4a10-9f24-2bb6f2cef7f4", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1787296514", - "name": "Trigger1787296514", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "15007345-0000-0800-0000-5fdcdf9c0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger1894775179?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-069b38fa042f8b478813edbe0385c9d0-7e324ab07b88d245-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "eafd91fe5b53a62b2b683368782f3b3c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "401", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:45:00 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-ms-client-request-id": "eafd91fe5b53a62b2b683368782f3b3c", - "x-ms-correlation-request-id": "d4944be3-28a6-4b93-a388-f3ebd0565828", - "x-ms-request-id": "e70de8b1-bdca-4ed1-ade5-d5e81bc75da3", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1894775179", - "name": "Trigger1894775179", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "1500f846-0000-0800-0000-5fdcdfae0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger1927233170?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-e83719356a4de744b5bfd217c6276073-6dbe2052d097bf4a-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "cc5dc480ee27959f76d91d81614f8526", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "401", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:45:00 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-ms-client-request-id": "cc5dc480ee27959f76d91d81614f8526", - "x-ms-correlation-request-id": "699c943c-42a5-437b-af4b-4ecc5206c46b", - "x-ms-request-id": "5b1d96b3-e46e-454d-ba79-68f06d03bcd8", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1927233170", - "name": "Trigger1927233170", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "1500acf8-0000-0800-0000-5fdce5e60000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger786174417?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-249f3f22df38fe4581f7919a7ff497e8-fdf890f14dcc4b44-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "f0a5e40feb332d806974f81d193e7de1", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "399", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:45:00 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-ms-client-request-id": "f0a5e40feb332d806974f81d193e7de1", - "x-ms-correlation-request-id": "bfafc666-7b12-42c1-8205-8e57ad299590", - "x-ms-request-id": "b2fed3c5-e979-4299-bc1f-dc34e7c4d95c", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger786174417", - "name": "Trigger786174417", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "15003efb-0000-0800-0000-5fdce5fd0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger695156011?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-fd5caf1b1d0480489a2880e73c4de9ab-320b88c676a6d249-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "f8eafcdc51a71019f16873793da945dc", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "399", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:45:00 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-ms-client-request-id": "f8eafcdc51a71019f16873793da945dc", - "x-ms-correlation-request-id": "376b43fa-7dc5-49b8-b19c-bb68fc1ea969", - "x-ms-request-id": "6cad639d-0e89-4f89-8b64-8ac27c18318f", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger695156011", - "name": "Trigger695156011", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "1600e421-0000-0800-0000-5fdce74b0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger769604978?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-401c38e37d2f174ba4200eb1b101609d-95f771c917daff4a-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "93580de24a899509433063b2f6827b38", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "399", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:45:01 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-ms-client-request-id": "93580de24a899509433063b2f6827b38", - "x-ms-correlation-request-id": "982d7685-f509-4a4b-b300-5e7bdf3820d7", - "x-ms-request-id": "456510ef-66a1-430b-8c25-1a732227a744", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger769604978", - "name": "Trigger769604978", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "1600ae24-0000-0800-0000-5fdce7600000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger35400768?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-ed6f2b3267841f4dab18e0900a9df3c7-8d538f9614e8cd4a-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "65a43c5c8c65bd7eca95fecb7706efbf", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "397", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:45:01 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-ms-client-request-id": "65a43c5c8c65bd7eca95fecb7706efbf", - "x-ms-correlation-request-id": "57430d81-2678-4f45-8ddb-a306e8b31fc1", - "x-ms-request-id": "61197b7a-0302-4145-94f1-8cc1b65e2e0a", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger35400768", - "name": "Trigger35400768", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "1600f547-0000-0800-0000-5fdce89e0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger1895283959?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-1ebef1dde37cbc4f9c4d056431583530-9731ee41bfa5b044-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "0c3a1c2fe9e59258f255b477ee661a6f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "401", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:45:01 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-ms-client-request-id": "0c3a1c2fe9e59258f255b477ee661a6f", - "x-ms-correlation-request-id": "a4673a48-70dc-4149-b5c3-7d2855a34407", - "x-ms-request-id": "13683d3b-e4f2-49df-9f5e-810b69fae48b", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1895283959", - "name": "Trigger1895283959", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "1600504a-0000-0800-0000-5fdce8b00000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger1803780687?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-cc472ab040c7b4408270e12a165d07df-e94d1d7b2399d548-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "011d3becdf0556778f9bc9f44c3e1d3d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "401", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:45:01 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-ms-client-request-id": "011d3becdf0556778f9bc9f44c3e1d3d", - "x-ms-correlation-request-id": "a61498cf-81bf-4dbc-b2d0-792fef414e75", - "x-ms-request-id": "af716967-b2b2-4efc-88cf-a908cb3da9e2", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1803780687", - "name": "Trigger1803780687", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "94003270-0000-0800-0000-5fe0ceb00000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger992702220?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-a5a735b827ce6342b6d54b91b1a99d0b-ef7255ef3033c14c-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "d982a3406e477252e312720fd706ce63", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "399", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:45:01 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-ms-client-request-id": "d982a3406e477252e312720fd706ce63", - "x-ms-correlation-request-id": "0a38345e-c806-4d01-975c-dddc9e101784", - "x-ms-request-id": "b8fc5c19-7336-48a5-86e3-10d175840b56", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger992702220", - "name": "Trigger992702220", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "9400a17d-0000-0800-0000-5fe0cec80000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger837612643?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-ca0ed5dfcb5fde4e84f36ec886e4f93e-8d74fca42640f64e-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "3cde8e7aede850baa4e47d4a206445b4", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "399", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:45:01 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-ms-client-request-id": "3cde8e7aede850baa4e47d4a206445b4", - "x-ms-correlation-request-id": "57bd73fe-1832-44d0-8539-274f3f8ac513", - "x-ms-request-id": "0f263b22-ee31-462d-ad3b-8d64e823ab2b", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger837612643", - "name": "Trigger837612643", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "9500eb76-0000-0800-0000-5fe0d09c0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger387250351?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-101e4639c15be541aa01ec790f780589-7a6a15efd0b56d4e-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "4b36773740e47e27e9ab1df26c677e88", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "399", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:45:01 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-ms-client-request-id": "4b36773740e47e27e9ab1df26c677e88", - "x-ms-correlation-request-id": "107465a1-46cf-4381-9d05-56bbaa3a65a6", - "x-ms-request-id": "18c7e75d-4677-4244-9270-7cc718d8b12b", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger387250351", - "name": "Trigger387250351", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "95009184-0000-0800-0000-5fe0d0b30000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger261210929?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-1bcce5875e17fd4da1c2a81563546447-aa58317dee53d149-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "bd7965cce05f5254e8313463f107527f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "399", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:45:01 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-ms-client-request-id": "bd7965cce05f5254e8313463f107527f", - "x-ms-correlation-request-id": "ba7463a3-3c88-4848-81d4-e97641604258", - "x-ms-request-id": "786d8e78-7c30-4e1a-af7c-0342fce085f6", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger261210929", - "name": "Trigger261210929", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "9600eb56-0000-0800-0000-5fe0d2240000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger1046317501?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-e37dbd16b558164f86e71dc1c411f6b7-409a97939b6f3646-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "60d8becc83d03a7f6760523dcfc8e33d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "401", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:45:02 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-ms-client-request-id": "60d8becc83d03a7f6760523dcfc8e33d", - "x-ms-correlation-request-id": "8da9e7d0-cf25-4fa1-8235-1f5d367d6be1", - "x-ms-request-id": "105d2e16-8dfd-4b8c-ab2e-be9027539674", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1046317501", - "name": "Trigger1046317501", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "9600ea64-0000-0800-0000-5fe0d23b0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger493153749?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-fc262c8b3474ec429043143b91d26854-fa0999eef22c8a48-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "bb7ef56688ea575423e362b20bc48ce1", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "399", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:45:02 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-ms-client-request-id": "bb7ef56688ea575423e362b20bc48ce1", - "x-ms-correlation-request-id": "1c4e41c7-d05a-4b3c-9985-42e5cf7c6f2a", - "x-ms-request-id": "377d8fdd-a8ab-48e2-8e04-ddf2d0a07242", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger493153749", - "name": "Trigger493153749", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "b3002845-0000-0800-0000-5fe109440000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger1142933410?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-f532af11e2c1e94d864c1e69b509e58e-f2098cc3754ff241-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "ae259e591e8f49b7e53e56ff8e168220", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "401", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:45:02 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-ms-client-request-id": "ae259e591e8f49b7e53e56ff8e168220", - "x-ms-correlation-request-id": "c8001b9b-a65e-4818-a767-0c1b7f3dfa3c", - "x-ms-request-id": "946033c6-d319-41f8-b0a9-44802df6df46", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1142933410", - "name": "Trigger1142933410", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "b300fb4d-0000-0800-0000-5fe109590000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger1811743108?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-baee1dcee5c5654a8c6dad4e6481ce57-609b40e704c7754e-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "fbfdf74e9689449469803cec20cc2ea3", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "401", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:45:02 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-ms-client-request-id": "fbfdf74e9689449469803cec20cc2ea3", - "x-ms-correlation-request-id": "cdb32a65-0da6-4889-9072-967e178561d3", - "x-ms-request-id": "04809bd7-61ac-4e34-91bc-9bf61087e7c6", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1811743108", - "name": "Trigger1811743108", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "b4006f15-0000-0800-0000-5fe10b540000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger1195837112?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-cf63bcefdefabe41a9bac58fc92a7d00-d9c00b6c81c55747-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "31e470d334a247ae3d35d5ac3254c90c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "401", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:45:02 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-ms-client-request-id": "31e470d334a247ae3d35d5ac3254c90c", - "x-ms-correlation-request-id": "4ff12796-8ba3-47c3-9327-0bc324265773", - "x-ms-request-id": "513dc93d-534e-4ab4-9f08-ae77298bc981", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1195837112", - "name": "Trigger1195837112", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "b4004f20-0000-0800-0000-5fe10b6e0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger1092804044?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-878f188bb955fa468d7f38d85632f998-085c7944749b2c47-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "1464426190c6c25809e1450ee1cb2819", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "401", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:45:02 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-ms-client-request-id": "1464426190c6c25809e1450ee1cb2819", - "x-ms-correlation-request-id": "dd3275e8-8d12-49ab-b822-3f949cce08b7", - "x-ms-request-id": "3e81dde0-423c-44c5-af0e-1d45532da990", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1092804044", - "name": "Trigger1092804044", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "b4006fd6-0000-0800-0000-5fe10d0b0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger1061147341?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-89f3f812417ec84092fd01b0d19a5b46-2c47d1ed6c989e45-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "1d2cb20f5132197e48b5be54c1e81114", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "401", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:45:02 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-ms-client-request-id": "1d2cb20f5132197e48b5be54c1e81114", - "x-ms-correlation-request-id": "57fabbde-e174-4075-924d-ae10a0ce9a53", - "x-ms-request-id": "163589e5-eda4-4e95-ae5c-99e66d6ca2b4", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1061147341", - "name": "Trigger1061147341", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "b40097e0-0000-0800-0000-5fe10d1e0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger1293676330?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-259d829ab1973042bd25134255d176a4-0aaf7f2137179c46-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "dd8b2fb71a6842dc182228c0efa06671", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "401", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:45:02 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-ms-client-request-id": "dd8b2fb71a6842dc182228c0efa06671", - "x-ms-correlation-request-id": "38d2cedf-5645-4cbe-a414-813ad3511173", - "x-ms-request-id": "d8511824-e461-48fd-92ff-fe7e213b8fa1", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1293676330", - "name": "Trigger1293676330", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "b8005129-0000-0800-0000-5fe115210000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger1121318397?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-b0d19fa0e42ab14482fef581104f303b-9c26cc6a7cc4bd4f-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "7f9cbc0cac270fdac44acc10d2040021", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "401", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:45:03 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-ms-client-request-id": "7f9cbc0cac270fdac44acc10d2040021", - "x-ms-correlation-request-id": "892a76f0-4400-49f7-abab-2322188c1860", - "x-ms-request-id": "98437675-b32d-422e-89c4-852677bca384", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1121318397", - "name": "Trigger1121318397", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "b8004c31-0000-0800-0000-5fe115370000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger1424339475?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-3e3e6dafcf6fdc409d21d79d24d281fc-90172501c0eda04e-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "b25630cf4a40f5b0d6ea040f29bd29a7", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "401", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:45:03 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-ms-client-request-id": "b25630cf4a40f5b0d6ea040f29bd29a7", - "x-ms-correlation-request-id": "cc3dbf3e-d289-474d-adfb-7837e83112bb", - "x-ms-request-id": "8a83c38c-5a39-4f15-8ce8-06b21cd84935", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1424339475", - "name": "Trigger1424339475", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "b800fdfe-0000-0800-0000-5fe1175d0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger1995833831?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-425442a3ae57724c9022573e63de554f-2377add10daf1b46-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "05474c4f924b0bec547b191d4ecb6f14", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "401", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:45:03 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-ms-client-request-id": "05474c4f924b0bec547b191d4ecb6f14", - "x-ms-correlation-request-id": "6ad4eaa8-ee2c-478a-b1bd-9685f02d03d7", - "x-ms-request-id": "4ac72f9c-68a9-4214-9c65-25f6722174ff", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1995833831", - "name": "Trigger1995833831", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "b9009208-0000-0800-0000-5fe117770000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger1450305468?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-1a3099ef1c9cda40a96716a31b02919c-27a6b1c6136bb743-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "bff10622b44ac1300ba7a93da7cbe607", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "401", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:45:03 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-ms-client-request-id": "bff10622b44ac1300ba7a93da7cbe607", - "x-ms-correlation-request-id": "56915ea2-c970-4edb-90c6-7f934987ed7d", - "x-ms-request-id": "8db20784-8d76-4788-93e6-ba45defa2120", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1450305468", - "name": "Trigger1450305468", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "b9002c94-0000-0800-0000-5fe118fd0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger982309688?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-57df339b8824e043aa6bd8da14c15868-62acb9b66b42e340-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "85c12421fbbc3dd5434a5dc53192a60a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "399", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:45:03 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-ms-client-request-id": "85c12421fbbc3dd5434a5dc53192a60a", - "x-ms-correlation-request-id": "ec44cef1-0510-4d89-ac94-0cdb1673253c", - "x-ms-request-id": "0a32cc77-a11c-4455-9732-3d314e147743", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger982309688", - "name": "Trigger982309688", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "b900c39c-0000-0800-0000-5fe119140000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger18006337?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-426cb488c16e8b4ebe0da48e323120fc-ebf8d01b64a7fa49-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "22edf07a6acb9b5d1b85f9a4e8af6489", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "397", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:45:03 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-ms-client-request-id": "22edf07a6acb9b5d1b85f9a4e8af6489", - "x-ms-correlation-request-id": "17b7c743-e32f-448b-9f51-57dd76815da7", - "x-ms-request-id": "524821f7-9ea1-4127-ae71-08e578cc83d7", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger18006337", - "name": "Trigger18006337", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "0000f7ed-0000-0800-0000-5fe259f10000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger669761297?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-7e4d8dd4d2b50247b1fa2ae7f88271a9-16f5918ca1c46b44-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "2afc1294ea0a265831b37bff566b9078", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "399", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:45:03 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-ms-client-request-id": "2afc1294ea0a265831b37bff566b9078", - "x-ms-correlation-request-id": "2ebd3587-778f-4ab3-b09d-35b886c3a88c", - "x-ms-request-id": "cc7989f2-2934-4beb-aa5a-1b530bcf6b28", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger669761297", - "name": "Trigger669761297", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "00004cee-0000-0800-0000-5fe25a0d0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger283243002?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-da25fbe80eabe84d9b9e45cccc6b9f08-1e8b3f6f13b45440-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "b6c29f00c4ddb63bc625693602305494", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "399", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:45:03 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-ms-client-request-id": "b6c29f00c4ddb63bc625693602305494", - "x-ms-correlation-request-id": "8456db2d-275a-4b5c-9717-79a667bfbcd0", - "x-ms-request-id": "1596e653-6d52-46c0-8671-ca2adc554e8c", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger283243002", - "name": "Trigger283243002", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "000007f6-0000-0800-0000-5fe25c260000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger2009827879?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-d75952cae74aa84cbc3bcf3e44623989-5fcf6f15ce318240-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "1f30d3e67c9690ff98c6f018ee5e44b0", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "401", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:45:04 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-ms-client-request-id": "1f30d3e67c9690ff98c6f018ee5e44b0", - "x-ms-correlation-request-id": "fca9bd35-ab5b-41eb-8f3f-062db5765aab", - "x-ms-request-id": "494a9e15-842f-4679-a35c-e699b8925c04", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger2009827879", - "name": "Trigger2009827879", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "000052f6-0000-0800-0000-5fe25c400000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger2062696623?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-647ada9bb3af51458e797a340d07b24d-6b7098e197f94542-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "49a480f5adecd0abd64563e480212400", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "401", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:45:04 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-ms-client-request-id": "49a480f5adecd0abd64563e480212400", - "x-ms-correlation-request-id": "44d2e30e-23b2-4ee5-a42a-82d143628a51", - "x-ms-request-id": "d2aa01fd-aa57-42c4-bf1d-cc46ae86be38", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger2062696623", - "name": "Trigger2062696623", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "0000c1fa-0000-0800-0000-5fe25de70000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger1883475285?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-ee5809d0fc08f9449e92193bc95340a7-f3319d6ae2f50d46-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "8319e65e713a83e29f321e16d323c867", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "401", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:45:04 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-ms-client-request-id": "8319e65e713a83e29f321e16d323c867", - "x-ms-correlation-request-id": "076a89a0-55e2-4363-afdc-b5b4f0055693", - "x-ms-request-id": "d8bdcf04-4f98-4c1e-9061-b40298eb7502", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1883475285", - "name": "Trigger1883475285", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "000026fb-0000-0800-0000-5fe25e000000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers?api-version=2019-06-01-preview\u0026%24skipToken=%2BRID%3A~Sl8ZAKxwhACdWwAAAAD8BA%3D%3D%23RT%3A2%23TRC%3A100%23ISV%3A2%23IEO%3A65551%23QCF%3A1", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-c6f93a35f1745349bae37134e7c6474f-37c06c199a701b4c-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "8241b9e10b8c38a828604851191b0f76", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Length": "12023", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:45:04 GMT", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "8241b9e10b8c38a828604851191b0f76", - "x-ms-request-id": "16c61e37-3f59-46db-9742-6ac56c8fef42" - }, - "ResponseBody": { - "value": [ - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1609595334", - "name": "Trigger1609595334", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "0300b478-0000-0800-0000-5fe38a420000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger912772013", - "name": "Trigger912772013", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "0300f678-0000-0800-0000-5fe38a5c0000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger535165641", - "name": "Trigger535165641", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "0300a381-0000-0800-0000-5fe38d970000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1509405974", - "name": "Trigger1509405974", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "0300f481-0000-0800-0000-5fe38dad0000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger55949564", - "name": "Trigger55949564", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "0300808c-0000-0800-0000-5fe3914f0000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger870392964", - "name": "Trigger870392964", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "0300d38c-0000-0800-0000-5fe391680000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1585308722", - "name": "Trigger1585308722", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "0300b096-0000-0800-0000-5fe394860000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger15901042", - "name": "Trigger15901042", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "03000497-0000-0800-0000-5fe3949f0000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger946431362", - "name": "Trigger946431362", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "0300659f-0000-0800-0000-5fe3979b0000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger78017815", - "name": "Trigger78017815", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "0300ac9f-0000-0800-0000-5fe397b60000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger691539022", - "name": "Trigger691539022", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "030007a8-0000-0800-0000-5fe39a970000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1203381574", - "name": "Trigger1203381574", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "0300e4a8-0000-0800-0000-5fe39ab60000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger612185256", - "name": "Trigger612185256", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "030083b4-0000-0800-0000-5fe39ebb0000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1217281743", - "name": "Trigger1217281743", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "0300cdb4-0000-0800-0000-5fe39ed20000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger861733555", - "name": "Trigger861733555", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "030013c6-0000-0800-0000-5fe3a46b0000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1966155271", - "name": "Trigger1966155271", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "030064c6-0000-0800-0000-5fe3a4860000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1923568218", - "name": "Trigger1923568218", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "0300a0d4-0000-0800-0000-5fe3a90b0000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger427638691", - "name": "Trigger427638691", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "0300e5d4-0000-0800-0000-5fe3a9240000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger540057645", - "name": "Trigger540057645", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "08070691-0000-0800-0000-6000c4f20000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1626566748", - "name": "Trigger1626566748", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "080724a7-0000-0800-0000-6000c50f0000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger469312722", - "name": "Trigger469312722", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "c507d777-0000-0800-0000-6001c1a80000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger381029169", - "name": "Trigger381029169", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "c5079688-0000-0800-0000-6001c1be0000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1253021849", - "name": "Trigger1253021849", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "d90775f5-0000-0800-0000-6001dcdf0000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger173097332", - "name": "Trigger173097332", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "0f01ec6f-0000-0800-0000-6009c0f50000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger877272684", - "name": "Trigger877272684", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "31008f97-0000-0800-0000-600874830000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger120342619", - "name": "Trigger120342619", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "3100fdaf-0000-0800-0000-600874a50000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger108320990", - "name": "Trigger108320990", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "34001120-0000-0800-0000-6008780d0000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger125302184", - "name": "Trigger125302184", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "0f01ec5d-0000-0800-0000-6009c0da0000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger571918210", - "name": "Trigger571918210", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "02028c8d-0000-0800-0000-600b291b0000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - }, - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger169449771", - "name": "Trigger169449771", - "type": "Microsoft.Synapse/workspaces/triggers", - "etag": "04023007-0000-0800-0000-600b2b310000", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - } - } - ] - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger1609595334?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-0d761b6b9842ae4f83175f105f56f20f-7f7653f946880642-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "07b9efa2c14583759e20a9ba8e94fcb3", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "401", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:45:04 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-ms-client-request-id": "07b9efa2c14583759e20a9ba8e94fcb3", - "x-ms-correlation-request-id": "54d15e70-9950-49a9-b8ed-a398faa37f16", - "x-ms-request-id": "4e31ee6f-642d-45d2-b37b-7e015e224098", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1609595334", - "name": "Trigger1609595334", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "0300b478-0000-0800-0000-5fe38a420000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger912772013?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-d32c4e029a463e4795b3d323602045f8-82a7526a9e6c1641-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "c703fb7da2e053743ee05ada29916a84", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "399", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:45:04 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-ms-client-request-id": "c703fb7da2e053743ee05ada29916a84", - "x-ms-correlation-request-id": "5210d867-8c18-4c86-9c48-58e6d9b0d199", - "x-ms-request-id": "73bbd2df-6365-41ee-8b31-50ab55ad1aa9", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger912772013", - "name": "Trigger912772013", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "0300f678-0000-0800-0000-5fe38a5c0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger535165641?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-5288e1b189430240a121646c04d1cf74-04cbb850cc60eb42-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "e374a722c0691f2244bde46b61eeaa93", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "399", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:45:04 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-ms-client-request-id": "e374a722c0691f2244bde46b61eeaa93", - "x-ms-correlation-request-id": "3cc8db7e-4650-4c43-b6de-6d379e6247ec", - "x-ms-request-id": "da0ebe0e-9b39-4538-9af2-7054ceda0c4a", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger535165641", - "name": "Trigger535165641", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "0300a381-0000-0800-0000-5fe38d970000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger1509405974?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-197c3ddd2bb59e42b248e12934a6fe81-90ac93763894144d-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "1dd39463481800967b66c965669a5a0c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "401", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:45:04 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-ms-client-request-id": "1dd39463481800967b66c965669a5a0c", - "x-ms-correlation-request-id": "7ec2ecc9-07ff-4014-95ee-6a54f2eef347", - "x-ms-request-id": "e1011205-aef8-4de7-8e20-e9d5239948e3", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1509405974", - "name": "Trigger1509405974", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "0300f481-0000-0800-0000-5fe38dad0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger55949564?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-3ea1383f5e589640a0cb1c26226478ec-90a56d8761576044-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "e69725b61920bd4ad9e38323be08f150", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "397", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:45:05 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-ms-client-request-id": "e69725b61920bd4ad9e38323be08f150", - "x-ms-correlation-request-id": "dd2efb19-316d-4154-ae5c-71c1108cce65", - "x-ms-request-id": "3d70cb37-780a-464a-92ab-d7582ef531da", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger55949564", - "name": "Trigger55949564", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "0300808c-0000-0800-0000-5fe3914f0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger870392964?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-cb69df9ff37a624e94b5d0141ce6d057-369966e00a307d48-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "9477c6364cbdd96b11736803f7bdb9a9", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "399", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:45:05 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-ms-client-request-id": "9477c6364cbdd96b11736803f7bdb9a9", - "x-ms-correlation-request-id": "34d48111-9d48-47a7-80b6-c97de5ff9e3b", - "x-ms-request-id": "92f2dd9b-2184-4dfe-b990-53a7a78e9bd3", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger870392964", - "name": "Trigger870392964", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "0300d38c-0000-0800-0000-5fe391680000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger1585308722?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-54299b47d810ab45becabdcdd591b80e-f51c6e30b7149c47-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "3bb5d762c3564a734a164434c5724272", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "401", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:45:05 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-ms-client-request-id": "3bb5d762c3564a734a164434c5724272", - "x-ms-correlation-request-id": "ab9b1bfe-3508-4097-8a97-dbc76336d4fd", - "x-ms-request-id": "640e9c07-7028-46f0-b2ff-156dac20f5b8", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1585308722", - "name": "Trigger1585308722", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "0300b096-0000-0800-0000-5fe394860000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger15901042?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-fdf1e097583c8f4eb3e63edf6b368315-7f452b26b62ad14a-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "9f2e7874c523694eb9bdd5acb146c61b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "397", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:45:05 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-ms-client-request-id": "9f2e7874c523694eb9bdd5acb146c61b", - "x-ms-correlation-request-id": "8c2b7ced-ff85-4ead-bf11-afcddd8fcb85", - "x-ms-request-id": "ceca0de5-7cf3-4b9b-a71c-be94633f4ce8", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger15901042", - "name": "Trigger15901042", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "03000497-0000-0800-0000-5fe3949f0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger946431362?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-ad6f505091ba4b4f96a59ca59b89f380-2458ac18551ca540-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "e6c0d92ab65373fa532d4aa70837149e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "399", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:45:05 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-ms-client-request-id": "e6c0d92ab65373fa532d4aa70837149e", - "x-ms-correlation-request-id": "d0a25497-f428-48b7-8a1b-4d7cab8f93a4", - "x-ms-request-id": "de219194-584c-40ad-a180-c7b06a2c7993", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger946431362", - "name": "Trigger946431362", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "0300659f-0000-0800-0000-5fe3979b0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger78017815?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-20df2c402e43d04ab19984e1dfb35f4d-a015a20434622742-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "7e8ff531198e9d86884b8198eec79804", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "397", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:45:05 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-ms-client-request-id": "7e8ff531198e9d86884b8198eec79804", - "x-ms-correlation-request-id": "3fffc53d-d73f-4d82-8f00-4b3a7459e522", - "x-ms-request-id": "9f805394-02f1-48f6-a271-a845b12081c4", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger78017815", - "name": "Trigger78017815", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "0300ac9f-0000-0800-0000-5fe397b60000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger691539022?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-28263c7212858f41be98a19e41762a83-3002c6e78c76eb41-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "ec0a284f5bb2be1e7dbb4cf57ba76082", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "399", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:45:05 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-ms-client-request-id": "ec0a284f5bb2be1e7dbb4cf57ba76082", - "x-ms-correlation-request-id": "162c2cd1-c6c6-4861-8476-2de9591ec8ab", - "x-ms-request-id": "a96283c2-7838-416e-bbf0-76a98d7bc356", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger691539022", - "name": "Trigger691539022", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "030007a8-0000-0800-0000-5fe39a970000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger1203381574?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-d37da9bf0e6e26458ff55ec57ad8e641-33dffa2a722f9c4a-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "bb7a36a947b6118d52235e083461858c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "401", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:45:06 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-ms-client-request-id": "bb7a36a947b6118d52235e083461858c", - "x-ms-correlation-request-id": "4a987bc0-9f53-4751-9359-f507008de1b5", - "x-ms-request-id": "bc556fbf-df2f-4359-9dce-1c51ea41a95d", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1203381574", - "name": "Trigger1203381574", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "0300e4a8-0000-0800-0000-5fe39ab60000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger612185256?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-841c44e56c7314499d7379a66d480534-e6e5ff809af1c14a-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "e0574694272cd6ecd6d101d2cc9021e0", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "399", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:45:06 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-ms-client-request-id": "e0574694272cd6ecd6d101d2cc9021e0", - "x-ms-correlation-request-id": "f298a5c1-6858-4c8b-83c7-e17ca3dbfc2f", - "x-ms-request-id": "e739703c-11c2-4434-b1d6-83db98854e22", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger612185256", - "name": "Trigger612185256", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "030083b4-0000-0800-0000-5fe39ebb0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger1217281743?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-910e04c757f8ba43b327bc1e63494c2d-04178a93d384604b-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "b7efffeadc4c084d9af9998efc16891c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "401", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:45:06 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-ms-client-request-id": "b7efffeadc4c084d9af9998efc16891c", - "x-ms-correlation-request-id": "af5241ef-10d1-43cc-b77f-1809ab9082ee", - "x-ms-request-id": "b167d11f-53d9-4919-b907-8df911819571", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1217281743", - "name": "Trigger1217281743", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "0300cdb4-0000-0800-0000-5fe39ed20000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger861733555?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-1a42278c70b932419379b0e05cdbb55c-320b2e78a2e9fd47-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "3561c036804f815549a4e5e546bb44c2", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "399", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:45:06 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-ms-client-request-id": "3561c036804f815549a4e5e546bb44c2", - "x-ms-correlation-request-id": "61526b93-2da8-4614-afc2-84ed9a9b520b", - "x-ms-request-id": "9a3e8fbe-1e34-4a00-a326-e3b08f306777", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger861733555", - "name": "Trigger861733555", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "030013c6-0000-0800-0000-5fe3a46b0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger1966155271?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-707dac4240223845a8799c5bb799c143-d6b7ef6cab4e2c4b-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "351d7d02cd72b73ff84e45338e5dd9bf", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "401", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:45:06 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-ms-client-request-id": "351d7d02cd72b73ff84e45338e5dd9bf", - "x-ms-correlation-request-id": "419efa42-6bae-4fc2-8bb7-cf864451952a", - "x-ms-request-id": "f74777e8-f265-437e-ad62-b1e8d73448e3", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1966155271", - "name": "Trigger1966155271", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "030064c6-0000-0800-0000-5fe3a4860000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger1923568218?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-f305cc7d89865544aa20566e161a9091-5abe24a480af6840-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "0b9be447eb2f6a91a96d6ea7f767c2df", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "401", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:45:06 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-ms-client-request-id": "0b9be447eb2f6a91a96d6ea7f767c2df", - "x-ms-correlation-request-id": "6112f09f-58b8-4be4-a4bb-fd05e7962548", - "x-ms-request-id": "3a4a385c-0cc8-4884-9177-af8b3ff1a6e0", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1923568218", - "name": "Trigger1923568218", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "0300a0d4-0000-0800-0000-5fe3a90b0000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger427638691?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-8227d326559b4446b67c86dd435fa756-2cafcb60448f7340-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "7e8cd6b454f869aa80a93c003a21f2eb", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "399", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:45:06 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-ms-client-request-id": "7e8cd6b454f869aa80a93c003a21f2eb", - "x-ms-correlation-request-id": "c73ad02f-c6c2-4d32-a016-082a0f290c35", - "x-ms-request-id": "f0d3004a-5093-470f-bb9a-7209a77fd602", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger427638691", - "name": "Trigger427638691", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "0300e5d4-0000-0800-0000-5fe3a9240000" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger540057645?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-570317149dd25248934a80ed7cc01120-0b337f8dce433d41-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "619e25cb381f1692ecb38b045e98bf91", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "399", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:45:06 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" ], - "Strict-Transport-Security": "max-age=15724800; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "619e25cb381f1692ecb38b045e98bf91", - "x-ms-correlation-request-id": "3bd79d53-187f-450c-a35e-fe6e68a44974", - "x-ms-request-id": "120a8dc0-401a-4987-b931-afc7836c896d", - "X-Powered-By": "ASP.NET" + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 30 Sep 2021 06:23:23 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/86c0d524-7a7d-4b06-a9a6-d686270094ad?api-version=2020-12-01", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "d875a7e3135adfa0a6ecb3e3439add33", + "x-ms-request-id": "578f9802-56ea-477c-ac45-7e1a982e5b67" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger540057645", - "name": "Trigger540057645", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" - }, - "etag": "08070691-0000-0800-0000-6000c4f20000" + "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger1626566748?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/86c0d524-7a7d-4b06-a9a6-d686270094ad?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-1a53afdd3fd7e947a311d6dcfed5eb2c-a61109e3708a414f-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "b77f668c5ad1f2c73a318b85af902f87", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "04b859654bd521398df86016906e3de7", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "401", + "Content-Length": "392", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:45:07 GMT", + "Date": "Thu, 30 Sep 2021 06:23:24 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "b77f668c5ad1f2c73a318b85af902f87", - "x-ms-correlation-request-id": "e7a5beae-8a95-4fca-99c3-8ea38428eccc", - "x-ms-request-id": "f37adc66-c9cc-490c-880a-dd13e164dae4", + "x-ms-client-request-id": "04b859654bd521398df86016906e3de7", + "x-ms-correlation-request-id": "35d9b196-c184-45eb-b6e7-127025d078c5", + "x-ms-request-id": "c6d2bb54-c1cd-42e8-bc89-875017d51c1e", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1626566748", - "name": "Trigger1626566748", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/triggers/Trigger169449771", + "name": "Trigger169449771", "type": "Microsoft.Synapse/workspaces/triggers", "properties": { "type": "ScheduleTrigger", @@ -7789,334 +260,498 @@ }, "runtimeState": "Stopped" }, - "etag": "080724a7-0000-0800-0000-6000c50f0000" + "etag": "2e005381-0000-0100-0000-615557dc0000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger469312722?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/triggers?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-1e18ca0459d4e54eacf0ada2d919d439-0e9a7a5defa36b4e-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "d2dc837a60c87bc043769245c8a50be8", + "traceparent": "00-3cfd769ed182c7499a0386cdc02dd426-2e5b95fb7e002d4e-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "35ea04af1b7a85b2aed0a6ff9da6cb6f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "399", + "Content-Length": "4687", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:45:07 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-ms-client-request-id": "d2dc837a60c87bc043769245c8a50be8", - "x-ms-correlation-request-id": "60cbb7b2-b954-42a5-925e-90977ecf9ed5", - "x-ms-request-id": "c5758a69-02c3-4cc0-aeb4-a5a8acd84593", - "X-Powered-By": "ASP.NET" + "Date": "Thu, 30 Sep 2021 06:23:24 GMT", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "35ea04af1b7a85b2aed0a6ff9da6cb6f", + "x-ms-request-id": "0d8f037b-ddc4-4ce1-896a-c51107514be2" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger469312722", - "name": "Trigger469312722", - "type": "Microsoft.Synapse/workspaces/triggers", - "properties": { - "type": "ScheduleTrigger", - "typeProperties": { - "recurrence": {} + "value": [ + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/triggers/Trigger 1", + "name": "Trigger 1", + "type": "Microsoft.Synapse/workspaces/triggers", + "etag": "00000200-0000-0100-0000-5f07d15b0000", + "properties": { + "annotations": [], + "runtimeState": "Stopped", + "pipelines": [], + "type": "ScheduleTrigger", + "typeProperties": { + "recurrence": { + "frequency": "Minute", + "interval": 1, + "startTime": "2020-07-10T02:23:00Z", + "timeZone": "UTC" + } + } + } }, - "runtimeState": "Stopped" - }, - "etag": "c507d777-0000-0800-0000-6001c1a80000" + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/triggers/dongwwaTrigger2", + "name": "dongwwaTrigger2", + "type": "Microsoft.Synapse/workspaces/triggers", + "etag": "00000600-0000-0100-0000-5f07d2bb0000", + "properties": { + "annotations": [], + "runtimeState": "Stopped", + "type": "TumblingWindowTrigger", + "typeProperties": { + "frequency": "Minute", + "interval": 15, + "startTime": "2020-07-10T02:29:00Z", + "delay": "00:00:00", + "maxConcurrency": 50, + "retryPolicy": { + "intervalInSeconds": 30 + }, + "dependsOn": [] + } + } + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/triggers/Trigger3", + "name": "Trigger3", + "type": "Microsoft.Synapse/workspaces/triggers", + "etag": "0000e600-0000-0100-0000-5f07d4c80000", + "properties": { + "annotations": [], + "runtimeState": "Stopped", + "pipelines": [], + "type": "BlobEventsTrigger", + "typeProperties": { + "blobPathBeginsWith": "/fs1/blobs/", + "ignoreEmptyBlobs": true, + "scope": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/arcadia-ps-test-group/providers/Microsoft.Storage/storageAccounts/zzygen2", + "events": [ + "Microsoft.Storage.BlobCreated" + ] + } + } + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/triggers/EventTrigger", + "name": "EventTrigger", + "type": "Microsoft.Synapse/workspaces/triggers", + "etag": "1200bc14-0000-0100-0000-5f51ace40000", + "properties": { + "type": "BlobEventsTrigger", + "annotations": [], + "pipelines": [ + { + "pipelineReference": { + "type": "PipelineReference", + "referenceName": "Pipeline 1" + } + } + ], + "typeProperties": { + "blobPathBeginsWith": "/ywfilesystem/blobs/", + "ignoreEmptyBlobs": true, + "events": [ + "Microsoft.Storage.BlobCreated" + ], + "scope": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/ywtest/providers/Microsoft.Storage/storageAccounts/ywtestaccount" + }, + "runtimeState": "Stopped" + } + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/triggers/TumblingWindowTrigger", + "name": "TumblingWindowTrigger", + "type": "Microsoft.Synapse/workspaces/triggers", + "etag": "09009271-0000-0100-0000-61404cd20000", + "properties": { + "type": "TumblingWindowTrigger", + "annotations": [], + "pipeline": { + "pipelineReference": { + "type": "PipelineReference", + "referenceName": "Pipeline 1" + } + }, + "typeProperties": { + "frequency": "Minute", + "interval": 15, + "startTime": "2020-07-10T02:00:00Z", + "delay": "00:00:00", + "maxConcurrency": 50, + "retryPolicy": { + "intervalInSeconds": 30 + }, + "dependsOn": [] + }, + "runtimeState": "Stopped" + } + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/triggers/TestTrigger-asdf", + "name": "TestTrigger-asdf", + "type": "Microsoft.Synapse/workspaces/triggers", + "etag": "1a00bdca-0000-0100-0000-5fd71bf80000", + "properties": { + "type": "ScheduleTrigger", + "typeProperties": { + "recurrence": {} + }, + "runtimeState": "Stopped" + } + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/triggers/Trigger277322190", + "name": "Trigger277322190", + "type": "Microsoft.Synapse/workspaces/triggers", + "etag": "00009000-0000-0100-0000-600163080000", + "properties": { + "type": "ScheduleTrigger", + "typeProperties": { + "recurrence": {} + }, + "runtimeState": "Stopped" + } + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/triggers/Trigger533902365", + "name": "Trigger533902365", + "type": "Microsoft.Synapse/workspaces/triggers", + "etag": "00009a00-0000-0100-0000-6001630e0000", + "properties": { + "type": "ScheduleTrigger", + "typeProperties": { + "recurrence": {} + }, + "runtimeState": "Stopped" + } + }, + { + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/triggers/Trigger169449771", + "name": "Trigger169449771", + "type": "Microsoft.Synapse/workspaces/triggers", + "etag": "2e005381-0000-0100-0000-615557dc0000", + "properties": { + "type": "ScheduleTrigger", + "typeProperties": { + "recurrence": {} + }, + "runtimeState": "Stopped" + } + } + ] } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger381029169?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/triggers/Trigger%201?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-e9b28920c06ba442850c5ae3a866dc45-76bb1335df1efc41-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "d474abe93aa2701a5eab27edad0d665b", + "traceparent": "00-9e9ea28baefa714984edc0fcc94caf88-28e8f9eb3661814f-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "601502a5c06997a96d544b61b2894e38", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "399", + "Content-Length": "495", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:45:07 GMT", + "Date": "Thu, 30 Sep 2021 06:23:24 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "d474abe93aa2701a5eab27edad0d665b", - "x-ms-correlation-request-id": "a5a9f157-25df-438f-b168-5621943a9b85", - "x-ms-request-id": "2f37e2e8-cc56-45af-8a0a-b06e806f395d", + "x-ms-client-request-id": "601502a5c06997a96d544b61b2894e38", + "x-ms-correlation-request-id": "42584980-339c-49e1-852f-27495d3f74cc", + "x-ms-request-id": "eef4ea0b-5a83-4801-8006-a9140230fbe3", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger381029169", - "name": "Trigger381029169", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/triggers/Trigger 1", + "name": "Trigger 1", "type": "Microsoft.Synapse/workspaces/triggers", "properties": { + "annotations": [], + "runtimeState": "Stopped", + "pipelines": [], "type": "ScheduleTrigger", "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" + "recurrence": { + "frequency": "Minute", + "interval": 1, + "startTime": "2020-07-10T02:23:00Z", + "timeZone": "UTC" + } + } }, - "etag": "c5079688-0000-0800-0000-6001c1be0000" + "etag": "00000200-0000-0100-0000-5f07d15b0000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger1253021849?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/triggers/dongwwaTrigger2?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-053dd0e2b9c8da4e8b77e232344500f5-b989de27036ceb46-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "db8a0483edbb2bc8a504735ac7822a95", + "traceparent": "00-7ebe8c33d84fb24aa5f58499e47cd178-2d7a091ee9b46746-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "3f34ccafa8af49b9a6325605a43a84e6", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "401", + "Content-Length": "560", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:45:07 GMT", + "Date": "Thu, 30 Sep 2021 06:23:24 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "db8a0483edbb2bc8a504735ac7822a95", - "x-ms-correlation-request-id": "a6a00289-1bb7-4c65-9fed-666f71b5b2ec", - "x-ms-request-id": "ccfc736a-36c0-4c98-8c48-33efd1ded0c9", + "x-ms-client-request-id": "3f34ccafa8af49b9a6325605a43a84e6", + "x-ms-correlation-request-id": "da8daec9-01d7-4b8e-8f88-d386265d9610", + "x-ms-request-id": "e0060f93-da2e-4edc-8a63-df28f2ebfa2a", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger1253021849", - "name": "Trigger1253021849", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/triggers/dongwwaTrigger2", + "name": "dongwwaTrigger2", "type": "Microsoft.Synapse/workspaces/triggers", "properties": { - "type": "ScheduleTrigger", + "annotations": [], + "runtimeState": "Stopped", + "type": "TumblingWindowTrigger", "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" + "frequency": "Minute", + "interval": 15, + "startTime": "2020-07-10T02:29:00Z", + "delay": "00:00:00", + "maxConcurrency": 50, + "retryPolicy": { + "intervalInSeconds": 30 + }, + "dependsOn": [] + } }, - "etag": "d90775f5-0000-0800-0000-6001dcdf0000" + "etag": "00000600-0000-0100-0000-5f07d2bb0000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger173097332?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/triggers/Trigger3?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-63f3d9092b06034998fc24ecb0122828-0b2c662e76a2a943-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "039ba2265b1c3fe5686b731c39d2cd36", + "traceparent": "00-fc01ae217565b344b917cd537093a1ce-b4ce386845b4f24e-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "8e70f12ddc59ee7e5b52c726cf50d324", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "399", + "Content-Length": "647", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:45:07 GMT", + "Date": "Thu, 30 Sep 2021 06:23:24 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "039ba2265b1c3fe5686b731c39d2cd36", - "x-ms-correlation-request-id": "0b62d2a9-1246-4a74-9059-35247424358c", - "x-ms-request-id": "4223266b-fffb-4325-ba54-292afd337d68", + "x-ms-client-request-id": "8e70f12ddc59ee7e5b52c726cf50d324", + "x-ms-correlation-request-id": "bfa538df-c269-448c-ab8c-8c24b70ce09e", + "x-ms-request-id": "2bcd5a8e-c822-4f83-bf6b-cda76645bb45", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger173097332", - "name": "Trigger173097332", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/triggers/Trigger3", + "name": "Trigger3", "type": "Microsoft.Synapse/workspaces/triggers", "properties": { - "type": "ScheduleTrigger", + "annotations": [], + "runtimeState": "Stopped", + "pipelines": [], + "type": "BlobEventsTrigger", "typeProperties": { - "recurrence": {} - }, - "runtimeState": "Stopped" + "blobPathBeginsWith": "/fs1/blobs/", + "ignoreEmptyBlobs": true, + "scope": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/arcadia-ps-test-group/providers/Microsoft.Storage/storageAccounts/zzygen2", + "events": [ + "Microsoft.Storage.BlobCreated" + ] + } }, - "etag": "0f01ec6f-0000-0800-0000-6009c0f50000" + "etag": "0000e600-0000-0100-0000-5f07d4c80000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger877272684?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/triggers/EventTrigger?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-536fac4542388645bfaddad79c47b788-da06969bd4218f4d-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "c4c1360f301bfc2de2482e9dc6bfa8dc", + "traceparent": "00-cd59dfa1da28e041bf635bfe496a80d1-6fb8eb7977a79d48-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "d14f6e818c72fdbf48cbba366aa4f233", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "399", + "Content-Length": "734", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:45:07 GMT", + "Date": "Thu, 30 Sep 2021 06:23:24 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "c4c1360f301bfc2de2482e9dc6bfa8dc", - "x-ms-correlation-request-id": "a5bcbde9-77f0-4e6c-98be-5540e3455c64", - "x-ms-request-id": "6e57e4a2-3acd-4941-b412-346a281eb488", + "x-ms-client-request-id": "d14f6e818c72fdbf48cbba366aa4f233", + "x-ms-correlation-request-id": "dd276627-2c69-4481-a484-45c8e01f9dce", + "x-ms-request-id": "eca192ad-016e-4a79-ac5f-122274697ac8", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger877272684", - "name": "Trigger877272684", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/triggers/EventTrigger", + "name": "EventTrigger", "type": "Microsoft.Synapse/workspaces/triggers", "properties": { - "type": "ScheduleTrigger", + "type": "BlobEventsTrigger", + "annotations": [], + "pipelines": [ + { + "pipelineReference": { + "type": "PipelineReference", + "referenceName": "Pipeline 1" + } + } + ], "typeProperties": { - "recurrence": {} + "blobPathBeginsWith": "/ywfilesystem/blobs/", + "ignoreEmptyBlobs": true, + "events": [ + "Microsoft.Storage.BlobCreated" + ], + "scope": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/ywtest/providers/Microsoft.Storage/storageAccounts/ywtestaccount" }, "runtimeState": "Stopped" }, - "etag": "31008f97-0000-0800-0000-600874830000" + "etag": "1200bc14-0000-0100-0000-5f51ace40000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger120342619?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/triggers/TumblingWindowTrigger?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-0540062b14ece445bd4d66141d59078a-8f19fa900e797845-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "0bc791816272283f1e4a724f7aabf2d3", + "traceparent": "00-5e4a4ecf8ed2304ca9fee4530f53c030-d2eb110e423caf4d-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "c13465cfc018d2de4e45e35ce0937a55", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "399", + "Content-Length": "663", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:45:07 GMT", + "Date": "Thu, 30 Sep 2021 06:23:24 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "0bc791816272283f1e4a724f7aabf2d3", - "x-ms-correlation-request-id": "44b2083a-5350-4f3c-9ba3-5531db1dd355", - "x-ms-request-id": "46e0cf2f-237f-4614-870c-c13a0cd11d98", + "x-ms-client-request-id": "c13465cfc018d2de4e45e35ce0937a55", + "x-ms-correlation-request-id": "f64063be-1946-4a93-91e5-7b42c4e6933b", + "x-ms-request-id": "a348dd40-c385-4ff8-afd1-7ab4398d4733", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger120342619", - "name": "Trigger120342619", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/triggers/TumblingWindowTrigger", + "name": "TumblingWindowTrigger", "type": "Microsoft.Synapse/workspaces/triggers", "properties": { - "type": "ScheduleTrigger", + "type": "TumblingWindowTrigger", + "annotations": [], + "pipeline": { + "pipelineReference": { + "type": "PipelineReference", + "referenceName": "Pipeline 1" + } + }, "typeProperties": { - "recurrence": {} + "frequency": "Minute", + "interval": 15, + "startTime": "2020-07-10T02:00:00Z", + "delay": "00:00:00", + "maxConcurrency": 50, + "retryPolicy": { + "intervalInSeconds": 30 + }, + "dependsOn": [] }, "runtimeState": "Stopped" }, - "etag": "3100fdaf-0000-0800-0000-600874a50000" + "etag": "09009271-0000-0100-0000-61404cd20000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger108320990?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/triggers/TestTrigger-asdf?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-c462db31008f1741be042a27ab0c5b3c-1a3855ee84ec174d-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "914a3d3665c0f67a759f21d42d4778a9", + "traceparent": "00-a75999560fd5ed40a74876ed9b952204-b641348b9f2a5648-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "3683315fb2eaa0743173458e224783b7", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "399", + "Content-Length": "392", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:45:07 GMT", + "Date": "Thu, 30 Sep 2021 06:23:25 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "914a3d3665c0f67a759f21d42d4778a9", - "x-ms-correlation-request-id": "17400ce5-e062-4c12-9f1e-0e6845a7035c", - "x-ms-request-id": "b3f7a120-2b85-41e2-a4f3-bf6cfef6be93", + "x-ms-client-request-id": "3683315fb2eaa0743173458e224783b7", + "x-ms-correlation-request-id": "be43d7b6-6fef-4eff-a8c4-749ad0e7c541", + "x-ms-request-id": "b24c699e-24e4-4211-9ccf-ef8fe4ec6266", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger108320990", - "name": "Trigger108320990", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/triggers/TestTrigger-asdf", + "name": "TestTrigger-asdf", "type": "Microsoft.Synapse/workspaces/triggers", "properties": { "type": "ScheduleTrigger", @@ -8125,46 +760,40 @@ }, "runtimeState": "Stopped" }, - "etag": "34001120-0000-0800-0000-6008780d0000" + "etag": "1a00bdca-0000-0100-0000-5fd71bf80000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger125302184?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/triggers/Trigger277322190?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-5f41f0882e51b643a5dd4802bf53865b-9d5f1f4707807548-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "a79b97c3c20bacc4f699a5d0bddd8136", + "traceparent": "00-2fc1d0703999e1478c0f32418c73c217-82d0bf19875f144a-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "6a569460111cc10b907d822ca8621db5", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "399", + "Content-Length": "392", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:45:08 GMT", + "Date": "Thu, 30 Sep 2021 06:23:25 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "a79b97c3c20bacc4f699a5d0bddd8136", - "x-ms-correlation-request-id": "214ead2a-e5b0-4871-ac65-eea8ae8b4fae", - "x-ms-request-id": "2cd7fd0a-2ebc-4ef0-99fc-d63f3710334e", + "x-ms-client-request-id": "6a569460111cc10b907d822ca8621db5", + "x-ms-correlation-request-id": "a161a154-5059-4150-89da-d27123947b3f", + "x-ms-request-id": "32e2d5d3-4b99-4ca6-9616-572dd4b3a113", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger125302184", - "name": "Trigger125302184", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/triggers/Trigger277322190", + "name": "Trigger277322190", "type": "Microsoft.Synapse/workspaces/triggers", "properties": { "type": "ScheduleTrigger", @@ -8173,46 +802,40 @@ }, "runtimeState": "Stopped" }, - "etag": "0f01ec5d-0000-0800-0000-6009c0da0000" + "etag": "00009000-0000-0100-0000-600163080000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger571918210?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/triggers/Trigger533902365?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-e25219275115a3499aa850e0525ff04c-0ec479af02fe2849-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "89675b5617751b1b17d095d2416bfad6", + "traceparent": "00-d0ebf83bf317e34e9aa8f774f487e342-75c83d1fc9ba9742-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "38d76451bc201c48f09390a57a50b007", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "399", + "Content-Length": "392", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:45:08 GMT", + "Date": "Thu, 30 Sep 2021 06:23:25 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "89675b5617751b1b17d095d2416bfad6", - "x-ms-correlation-request-id": "e85ff635-4114-46f2-95b1-af46209a0a8b", - "x-ms-request-id": "d6919319-908e-4df7-8cba-382adb02cf8e", + "x-ms-client-request-id": "38d76451bc201c48f09390a57a50b007", + "x-ms-correlation-request-id": "1ec743f6-39e7-4be8-9bbb-1c36cd3c4dad", + "x-ms-request-id": "b6bbb070-3138-44cf-9781-699a4f064bd0", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger571918210", - "name": "Trigger571918210", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/triggers/Trigger533902365", + "name": "Trigger533902365", "type": "Microsoft.Synapse/workspaces/triggers", "properties": { "type": "ScheduleTrigger", @@ -8221,45 +844,39 @@ }, "runtimeState": "Stopped" }, - "etag": "02028c8d-0000-0800-0000-600b291b0000" + "etag": "00009a00-0000-0100-0000-6001630e0000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger169449771?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/triggers/Trigger169449771?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-335723c1ed0e634fb22d2decb32b40b5-574b12558e140c4f-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "e28cc9d14a1073c7799d9a27c0a93898", + "traceparent": "00-f1e2485afcda214f84a25aeab493aefa-2443c1c6ceba9e42-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "4bfc2cc20f3d4d3926c2a66d3048f8ce", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "399", + "Content-Length": "392", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:45:08 GMT", + "Date": "Thu, 30 Sep 2021 06:23:25 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "e28cc9d14a1073c7799d9a27c0a93898", - "x-ms-correlation-request-id": "fad1be30-8183-41cf-84d6-fb46ad787e8d", - "x-ms-request-id": "73e7493a-6540-4d58-9a6c-442f50fe93d3", + "x-ms-client-request-id": "4bfc2cc20f3d4d3926c2a66d3048f8ce", + "x-ms-correlation-request-id": "ba646fd6-850b-4eba-ad16-ff1c0718c9c2", + "x-ms-request-id": "da60582b-a196-416e-aaf8-979f2992bb88", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger169449771", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/triggers/Trigger169449771", "name": "Trigger169449771", "type": "Microsoft.Synapse/workspaces/triggers", "properties": { @@ -8269,21 +886,18 @@ }, "runtimeState": "Stopped" }, - "etag": "04023007-0000-0800-0000-600b2b310000" + "etag": "2e005381-0000-0100-0000-615557dc0000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger169449771?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/triggers/Trigger169449771?api-version=2020-12-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-957f7726aa945f48b06da649dc28e1b3-ae72669fce442347-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "d17dea1defe0ab347c7f903a2df16b8b", + "traceparent": "00-044e24e8a3dd3a44aeacaccce6404eae-cf6bdee353c8ed45-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "be3d90564a70a3964c39798981664640", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -8291,110 +905,33 @@ "ResponseHeaders": { "Access-Control-Allow-Headers": "Location", "Access-Control-Expose-Headers": "Location", - "Content-Length": "372", + "Content-Length": "365", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:45:08 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/46f4c89f-3921-441f-96d0-6b4a5ba10356?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:23:25 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d5f17629-ffd6-4e8f-b208-2db16a4dc634?api-version=2020-12-01", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "d17dea1defe0ab347c7f903a2df16b8b", - "x-ms-request-id": "6f9f0ee2-915c-47d3-a6c6-a76702041f28" + "x-ms-client-request-id": "be3d90564a70a3964c39798981664640", + "x-ms-request-id": "a361bb24-6643-4ca7-bba4-05f5460eb7e5" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger169449771", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/triggers/Trigger169449771", "recordId": 0, "state": "Deleting", "created": "0001-01-01T00:00:00", "changed": "0001-01-01T00:00:00", "type": "Trigger", "name": "Trigger169449771", - "operationId": "46f4c89f-3921-441f-96d0-6b4a5ba10356" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/46f4c89f-3921-441f-96d0-6b4a5ba10356?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "57b5fd9829ede1f695e06690ba8c4688", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:45:08 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/46f4c89f-3921-441f-96d0-6b4a5ba10356?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "57b5fd9829ede1f695e06690ba8c4688", - "x-ms-request-id": "98b781b9-2cb5-4068-9f6a-7a4bbdffabe0" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/46f4c89f-3921-441f-96d0-6b4a5ba10356?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "f1890f3243aa7e47c3723decdf5c2f88", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:45:10 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/46f4c89f-3921-441f-96d0-6b4a5ba10356?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "f1890f3243aa7e47c3723decdf5c2f88", - "x-ms-request-id": "249dfc45-c996-4229-9a79-17fe4097da86" - }, - "ResponseBody": { - "status": "InProgress" + "operationId": "d5f17629-ffd6-4e8f-b208-2db16a4dc634" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/46f4c89f-3921-441f-96d0-6b4a5ba10356?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d5f17629-ffd6-4e8f-b208-2db16a4dc634?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "2fa22124143b759dd81d5f6f39955107", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "ea4fc19bf11277969659ff0395afccbf", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -8410,28 +947,25 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:45:11 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/46f4c89f-3921-441f-96d0-6b4a5ba10356?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:23:25 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d5f17629-ffd6-4e8f-b208-2db16a4dc634?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "2fa22124143b759dd81d5f6f39955107", - "x-ms-request-id": "63450744-3c56-4542-bc7b-ecb14fdd7d01" + "x-ms-client-request-id": "ea4fc19bf11277969659ff0395afccbf", + "x-ms-request-id": "51077929-1e42-4b0e-961a-2fa8f400dbf1" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/46f4c89f-3921-441f-96d0-6b4a5ba10356?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d5f17629-ffd6-4e8f-b208-2db16a4dc634?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "6da487ad696954c4b537937beb090238", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "b4a0667b7cde846818fb93e638388d70", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -8447,28 +981,25 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:45:12 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/46f4c89f-3921-441f-96d0-6b4a5ba10356?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:23:27 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d5f17629-ffd6-4e8f-b208-2db16a4dc634?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "6da487ad696954c4b537937beb090238", - "x-ms-request-id": "5311d6d2-7b51-4868-ace9-b63a75e1c66a" + "x-ms-client-request-id": "b4a0667b7cde846818fb93e638388d70", + "x-ms-request-id": "24f6bf55-fe4f-4bb7-9dd7-30f3ad44e160" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/46f4c89f-3921-441f-96d0-6b4a5ba10356?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d5f17629-ffd6-4e8f-b208-2db16a4dc634?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "986cddb116e91e4c7114198ce4d8452e", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "bfedd04c5c17db2de4f2e50cd274ab7b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -8484,45 +1015,42 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:45:13 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/46f4c89f-3921-441f-96d0-6b4a5ba10356?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:23:28 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d5f17629-ffd6-4e8f-b208-2db16a4dc634?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "986cddb116e91e4c7114198ce4d8452e", - "x-ms-request-id": "6e0998ab-7910-480a-8b83-4110eff28e8f" + "x-ms-client-request-id": "bfedd04c5c17db2de4f2e50cd274ab7b", + "x-ms-request-id": "e333ccf1-4549-4cb0-b73b-85d10e892d89" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/46f4c89f-3921-441f-96d0-6b4a5ba10356?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/d5f17629-ffd6-4e8f-b208-2db16a4dc634?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "583f3620c1b7ba1e5d4d7a04812289ce", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "b0e252bc383a1fca59cbd1165eb03f5e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Content-Length": "0", - "Date": "Fri, 22 Jan 2021 19:45:14 GMT", + "Date": "Thu, 30 Sep 2021 06:23:29 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "583f3620c1b7ba1e5d4d7a04812289ce", - "x-ms-request-id": "dc68c2bb-9497-4ef3-8b3e-6ea1f952efad" + "x-ms-client-request-id": "b0e252bc383a1fca59cbd1165eb03f5e", + "x-ms-request-id": "169cf9b1-7f77-4bd1-8f9e-5943446d8941" }, "ResponseBody": [] } ], "Variables": { - "AZURE_SYNAPSE_WORKSPACE_URL": "https://workspacechhamosynapse.dev.azuresynapse.net", + "AZURE_SYNAPSE_WORKSPACE_URL": "https://testsynapseworkspace.dev.azuresynapse.net", "RandomSeed": "1061454897" } } \ No newline at end of file diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/TriggerClientLiveTests/TestSubscribeUnsubscribe.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/TriggerClientLiveTests/TestSubscribeUnsubscribe.json index 33e4bffa260f..1afaf5776808 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/TriggerClientLiveTests/TestSubscribeUnsubscribe.json +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/TriggerClientLiveTests/TestSubscribeUnsubscribe.json @@ -1,18 +1,15 @@ { "Entries": [ { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger121732671?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/triggers/Trigger121732671?api-version=2020-12-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "76", "Content-Type": "application/json", - "traceparent": "00-dac04fbac7f8004b80d151901aa3a037-ff97367cb4f4b841-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "traceparent": "00-b8ef0566cb01be4098490e5071d33016-e8071f9d32919348-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ba1d2ef0ded2ab2923e5f35bcb3561de", "x-ms-return-client-request-id": "true" }, @@ -34,37 +31,34 @@ "Location", "Retry-After" ], - "Content-Length": "447", + "Content-Length": "441", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:23 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/670aaf05-8b5e-4025-a4bf-bef6ea4ff0ab?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:22:54 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/3c56d470-5df7-4261-b8f2-ac3f219ba18e?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "ba1d2ef0ded2ab2923e5f35bcb3561de", - "x-ms-request-id": "b3b398ce-96c6-469a-9e56-58d7acd8c112" + "x-ms-request-id": "c0b5b127-6c5c-4a92-883e-cba2c2bb90d3" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger121732671", - "recordId": 996518, + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/triggers/Trigger121732671", + "recordId": 2424616, "state": "Creating", - "created": "2021-01-22T19:44:23.9266667Z", - "changed": "2021-01-22T19:44:23.9266667Z", + "created": "2021-09-30T06:22:54.7266667Z", + "changed": "2021-09-30T06:22:54.7266667Z", "type": "Trigger", "name": "Trigger121732671", - "operationId": "670aaf05-8b5e-4025-a4bf-bef6ea4ff0ab", - "artifactId": "B20457E8-CC28-461B-AF06-8FA2FF6AA751" + "operationId": "3c56d470-5df7-4261-b8f2-ac3f219ba18e", + "artifactId": "EF1FE6D1-8318-4926-8DF3-E16C9000EB33" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/670aaf05-8b5e-4025-a4bf-bef6ea4ff0ab?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/3c56d470-5df7-4261-b8f2-ac3f219ba18e?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "117de4415648fb12b7739c2486cc9a19", "x-ms-return-client-request-id": "true" }, @@ -81,27 +75,24 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:23 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/670aaf05-8b5e-4025-a4bf-bef6ea4ff0ab?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:22:54 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/3c56d470-5df7-4261-b8f2-ac3f219ba18e?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "117de4415648fb12b7739c2486cc9a19", - "x-ms-request-id": "42e70f87-c0ff-4b3b-a683-6fac10823ac6" + "x-ms-request-id": "4966aedb-5119-4896-aaee-5d3669414f19" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/670aaf05-8b5e-4025-a4bf-bef6ea4ff0ab?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/3c56d470-5df7-4261-b8f2-ac3f219ba18e?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "401de5d9b700e098e446b65c468f886f", "x-ms-return-client-request-id": "true" }, @@ -118,52 +109,182 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:25 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/670aaf05-8b5e-4025-a4bf-bef6ea4ff0ab?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:22:55 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/3c56d470-5df7-4261-b8f2-ac3f219ba18e?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "401de5d9b700e098e446b65c468f886f", - "x-ms-request-id": "9c2975b5-4826-4e23-98c7-9b557c43e36f" + "x-ms-request-id": "2fbac540-cfd5-46e6-ba12-ed9598b457c5" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/670aaf05-8b5e-4025-a4bf-bef6ea4ff0ab?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/3c56d470-5df7-4261-b8f2-ac3f219ba18e?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "e719b12150b8819661b15a6e73255038", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 30 Sep 2021 06:22:56 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/3c56d470-5df7-4261-b8f2-ac3f219ba18e?api-version=2020-12-01", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "e719b12150b8819661b15a6e73255038", + "x-ms-request-id": "22ffd26a-949a-45eb-beaa-c93948672176" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/3c56d470-5df7-4261-b8f2-ac3f219ba18e?api-version=2020-12-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "3dc07edb83968a424b9c2c02a0b6b427", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 30 Sep 2021 06:22:58 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/3c56d470-5df7-4261-b8f2-ac3f219ba18e?api-version=2020-12-01", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "3dc07edb83968a424b9c2c02a0b6b427", + "x-ms-request-id": "5254823a-e0ed-4d97-b28a-0c0baee92d27" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/3c56d470-5df7-4261-b8f2-ac3f219ba18e?api-version=2020-12-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "d5022cebb3b389614f9bdf4f5c2a6dbe", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 30 Sep 2021 06:22:59 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/3c56d470-5df7-4261-b8f2-ac3f219ba18e?api-version=2020-12-01", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "d5022cebb3b389614f9bdf4f5c2a6dbe", + "x-ms-request-id": "4ec573af-3e75-4b01-9136-76dd41e16caf" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/3c56d470-5df7-4261-b8f2-ac3f219ba18e?api-version=2020-12-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "c7807df54ace9dd96f8e9b1b2394e1ab", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 30 Sep 2021 06:23:00 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/3c56d470-5df7-4261-b8f2-ac3f219ba18e?api-version=2020-12-01", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "c7807df54ace9dd96f8e9b1b2394e1ab", + "x-ms-request-id": "671c1a0b-e0fc-4a69-a4ea-9c625dabf6cd" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/3c56d470-5df7-4261-b8f2-ac3f219ba18e?api-version=2020-12-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "468233fc7a2227841d37edfaa4f22d21", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "399", + "Content-Length": "392", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:26 GMT", + "Date": "Thu, 30 Sep 2021 06:23:01 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "e719b12150b8819661b15a6e73255038", - "x-ms-correlation-request-id": "fa2d775d-2fd3-4f51-9460-186a90fa4a8a", - "x-ms-request-id": "51d52540-72e1-4622-bdc5-0153cfdb3e3f", + "x-ms-client-request-id": "468233fc7a2227841d37edfaa4f22d21", + "x-ms-correlation-request-id": "811fdb9a-33c9-403b-be77-0f4233704ac5", + "x-ms-request-id": "f6ccee40-61fe-4b56-a2f0-b2d63d15001c", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger121732671", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/triggers/Trigger121732671", "name": "Trigger121732671", "type": "Microsoft.Synapse/workspaces/triggers", "properties": { @@ -173,21 +294,18 @@ }, "runtimeState": "Stopped" }, - "etag": "030296f5-0000-0800-0000-600b2b190000" + "etag": "2e004081-0000-0100-0000-615557c40000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger121732671/subscribeToEvents?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/triggers/Trigger121732671/subscribeToEvents?api-version=2020-12-01", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-8909e8af0433e147a360c5df8d634f57-73bece6889b7074b-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "3dc07edb83968a424b9c2c02a0b6b427", + "traceparent": "00-00958adf074d70498831cf21a47a5338-a7b452c827612341-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "220c6e2fed35a15853656524184565bb", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -196,18 +314,15 @@ "Cache-Control": "no-cache", "Content-Length": "53", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:26 GMT", + "Date": "Thu, 30 Sep 2021 06:23:01 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "3dc07edb83968a424b9c2c02a0b6b427", - "x-ms-correlation-request-id": "fd783ef4-18ac-4ccf-b841-f862b799ec3f", - "x-ms-request-id": "fa13e956-0d5a-4b26-988e-9e910691e979", + "x-ms-client-request-id": "220c6e2fed35a15853656524184565bb", + "x-ms-correlation-request-id": "e7f5f9d1-ddd0-4386-abc5-9b26a9c6a795", + "x-ms-request-id": "c47fe17e-c294-48b2-a56f-0be58381e3db", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -216,17 +331,14 @@ } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger121732671/unsubscribeFromEvents?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/triggers/Trigger121732671/unsubscribeFromEvents?api-version=2020-12-01", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-214e28595a13cb4bb954c79f2d51102b-1073d4ccdccfe145-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "c7807df54ace9dd96f8e9b1b2394e1ab", + "traceparent": "00-782868f571b8094cb0b840fecad13aba-fcc2151f4750fc43-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "b5eb7a61be870f76dae1f3bd14600fd8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -235,18 +347,15 @@ "Cache-Control": "no-cache", "Content-Length": "54", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:26 GMT", + "Date": "Thu, 30 Sep 2021 06:23:01 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "c7807df54ace9dd96f8e9b1b2394e1ab", - "x-ms-correlation-request-id": "73d83d19-6457-41d1-8217-5482458b141b", - "x-ms-request-id": "12966a35-631b-49d3-8b3c-5c4f5a1f531f", + "x-ms-client-request-id": "b5eb7a61be870f76dae1f3bd14600fd8", + "x-ms-correlation-request-id": "dbd19d79-b08e-4156-91ad-818909d76206", + "x-ms-request-id": "8b10df13-1ca0-48f3-ac48-33ffaecd7f86", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -255,17 +364,14 @@ } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger121732671?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/triggers/Trigger121732671?api-version=2020-12-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-fff12d91b1e21542b08ad7ba66a8fcef-5cc17498084c9d4d-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "220c6e2fed35a15853656524184565bb", + "traceparent": "00-77b4e856f590ea44a4c4c30cf988b2da-4b3b477c41cfbf43-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "9ec3e96bb059fb33bd434fc633de6698", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -273,36 +379,33 @@ "ResponseHeaders": { "Access-Control-Allow-Headers": "Location", "Access-Control-Expose-Headers": "Location", - "Content-Length": "372", + "Content-Length": "365", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:26 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/ab4fd87d-6d4e-4244-9f1f-290ffe7b818e?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:23:02 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/0ecc479c-388b-4b12-9de2-20dde74638fd?api-version=2020-12-01", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "220c6e2fed35a15853656524184565bb", - "x-ms-request-id": "8d98210c-6460-455a-94ee-1bb54448f790" + "x-ms-client-request-id": "9ec3e96bb059fb33bd434fc633de6698", + "x-ms-request-id": "a058c7cb-446a-4d98-a4f3-d561c716672c" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger121732671", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/triggers/Trigger121732671", "recordId": 0, "state": "Deleting", "created": "0001-01-01T00:00:00", "changed": "0001-01-01T00:00:00", "type": "Trigger", "name": "Trigger121732671", - "operationId": "ab4fd87d-6d4e-4244-9f1f-290ffe7b818e" + "operationId": "0ecc479c-388b-4b12-9de2-20dde74638fd" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/ab4fd87d-6d4e-4244-9f1f-290ffe7b818e?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/0ecc479c-388b-4b12-9de2-20dde74638fd?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "b5eb7a61be870f76dae1f3bd14600fd8", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "2b527e9c719d217eff44b25cb4b3d5f4", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -318,28 +421,25 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:26 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/ab4fd87d-6d4e-4244-9f1f-290ffe7b818e?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:23:02 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/0ecc479c-388b-4b12-9de2-20dde74638fd?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "b5eb7a61be870f76dae1f3bd14600fd8", - "x-ms-request-id": "3d0b2f64-96ac-437f-a60a-41ca72355702" + "x-ms-client-request-id": "2b527e9c719d217eff44b25cb4b3d5f4", + "x-ms-request-id": "1ed4c928-c1f7-46ce-b177-ef8371e0b234" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/ab4fd87d-6d4e-4244-9f1f-290ffe7b818e?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/0ecc479c-388b-4b12-9de2-20dde74638fd?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "704032d203a00979d29129dc43c14474", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "7192902a1afbe1d60d669d77cd3c6724", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -355,45 +455,76 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:44:27 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/ab4fd87d-6d4e-4244-9f1f-290ffe7b818e?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:23:03 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/0ecc479c-388b-4b12-9de2-20dde74638fd?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "704032d203a00979d29129dc43c14474", - "x-ms-request-id": "b23ab6f5-d5d0-44be-827c-6f130402650c" + "x-ms-client-request-id": "7192902a1afbe1d60d669d77cd3c6724", + "x-ms-request-id": "80207b66-ed73-4285-a2ca-a4c475c0db50" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/ab4fd87d-6d4e-4244-9f1f-290ffe7b818e?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/0ecc479c-388b-4b12-9de2-20dde74638fd?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "b52935773a8bd8fb53a32a5ad77fa84d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" ], - "x-ms-client-request-id": "9ec3e96bb059fb33bd434fc633de6698", + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "Content-Length": "23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 30 Sep 2021 06:23:04 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/0ecc479c-388b-4b12-9de2-20dde74638fd?api-version=2020-12-01", + "Retry-After": "10", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-ms-client-request-id": "b52935773a8bd8fb53a32a5ad77fa84d", + "x-ms-request-id": "bbb08833-2708-4773-8bcf-d1d29d663b22" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/0ecc479c-388b-4b12-9de2-20dde74638fd?api-version=2020-12-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "04cbee0d5a07811da7701e36d30754c2", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Content-Length": "0", - "Date": "Fri, 22 Jan 2021 19:44:28 GMT", + "Date": "Thu, 30 Sep 2021 06:23:05 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "9ec3e96bb059fb33bd434fc633de6698", - "x-ms-request-id": "71433fce-14c7-475d-a071-f7adda73d70b" + "x-ms-client-request-id": "04cbee0d5a07811da7701e36d30754c2", + "x-ms-request-id": "489d5e86-8e2f-4b9c-ac21-244e481bc94b" }, "ResponseBody": [] } ], "Variables": { - "AZURE_SYNAPSE_WORKSPACE_URL": "https://workspacechhamosynapse.dev.azuresynapse.net", + "AZURE_SYNAPSE_WORKSPACE_URL": "https://testsynapseworkspace.dev.azuresynapse.net", "RandomSeed": "320221192" } } \ No newline at end of file diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/TriggerClientLiveTests/TestSubscribeUnsubscribeAsync.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/TriggerClientLiveTests/TestSubscribeUnsubscribeAsync.json index 3f48ea0fb06c..c316e15d40f0 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/TriggerClientLiveTests/TestSubscribeUnsubscribeAsync.json +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/TriggerClientLiveTests/TestSubscribeUnsubscribeAsync.json @@ -1,18 +1,15 @@ { "Entries": [ { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger53047848?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/triggers/Trigger53047848?api-version=2020-12-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "76", "Content-Type": "application/json", - "traceparent": "00-6cd182046650b14ab5755670942f1286-eaa7bbf4a816ec45-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "traceparent": "00-45d3e9a82fe6c040b2cb04a8c95bd363-a0e4790d222d6c4e-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6c163f992a055b7dffd960ff170c593d", "x-ms-return-client-request-id": "true" }, @@ -34,37 +31,34 @@ "Location", "Retry-After" ], - "Content-Length": "435", + "Content-Length": "439", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:45:14 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/f9ad0bb1-be6e-4797-b5aa-27eb4fe17ed2?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:23:29 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/db6742d7-f941-46fb-aa16-157f2e2edf22?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "6c163f992a055b7dffd960ff170c593d", - "x-ms-request-id": "4d55ad0e-e0b2-41b8-85e6-a011d5837b76" + "x-ms-request-id": "91fa98f9-9ad3-4f21-a661-2cba2dac8806" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger53047848", - "recordId": 996523, + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/triggers/Trigger53047848", + "recordId": 2424648, "state": "Creating", - "created": "2021-01-22T19:45:15.06Z", - "changed": "2021-01-22T19:45:15.06Z", + "created": "2021-09-30T06:23:30.3133333Z", + "changed": "2021-09-30T06:23:30.3133333Z", "type": "Trigger", "name": "Trigger53047848", - "operationId": "f9ad0bb1-be6e-4797-b5aa-27eb4fe17ed2", - "artifactId": "CBA0FCB2-CA80-4C49-9AE4-DFF4A5C1FF24" + "operationId": "db6742d7-f941-46fb-aa16-157f2e2edf22", + "artifactId": "56C4F065-0B59-4A27-810D-B087B912FC4D" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/f9ad0bb1-be6e-4797-b5aa-27eb4fe17ed2?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/db6742d7-f941-46fb-aa16-157f2e2edf22?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5bb216bc0bf44e16c7750948b2f62e7b", "x-ms-return-client-request-id": "true" }, @@ -81,126 +75,46 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:45:14 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/f9ad0bb1-be6e-4797-b5aa-27eb4fe17ed2?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:23:29 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/db6742d7-f941-46fb-aa16-157f2e2edf22?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "5bb216bc0bf44e16c7750948b2f62e7b", - "x-ms-request-id": "d677e5df-afd3-42ee-b4d2-ed725a956737" + "x-ms-request-id": "dbbbbd71-5735-4aa7-9980-4e061ff3d066" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/f9ad0bb1-be6e-4797-b5aa-27eb4fe17ed2?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/db6742d7-f941-46fb-aa16-157f2e2edf22?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "19df9030e13358c9d5bd04cb9bd68c69", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:45:16 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/f9ad0bb1-be6e-4797-b5aa-27eb4fe17ed2?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "19df9030e13358c9d5bd04cb9bd68c69", - "x-ms-request-id": "67f3fa38-7c40-4bb6-8023-3bc5d9b2e245" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/f9ad0bb1-be6e-4797-b5aa-27eb4fe17ed2?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "0143cb45fd592348409472e93721a572", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Access-Control-Allow-Headers": [ - "Location", - "Retry-After" - ], - "Access-Control-Expose-Headers": [ - "Location", - "Retry-After" - ], - "Content-Length": "23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:45:17 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/f9ad0bb1-be6e-4797-b5aa-27eb4fe17ed2?api-version=2019-06-01-preview", - "Retry-After": "10", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "0143cb45fd592348409472e93721a572", - "x-ms-request-id": "cdd1156b-df8b-4ae0-98b8-0e9f1e203a36" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/f9ad0bb1-be6e-4797-b5aa-27eb4fe17ed2?api-version=2019-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "3e76130b7ab6da614c5a8636064ab2f0", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "397", + "Content-Length": "390", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:45:18 GMT", + "Date": "Thu, 30 Sep 2021 06:23:30 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "3e76130b7ab6da614c5a8636064ab2f0", - "x-ms-correlation-request-id": "4dd23a98-ad95-4550-bfd8-8976f323fc4c", - "x-ms-request-id": "7b102879-05f5-46d7-a915-651eed2d3ecd", + "x-ms-client-request-id": "19df9030e13358c9d5bd04cb9bd68c69", + "x-ms-correlation-request-id": "7af7d87b-4583-4c3f-8f1e-c3dfd3f2deec", + "x-ms-request-id": "e05a56df-34fe-455e-a92c-6e341d6f0af5", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger53047848", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/triggers/Trigger53047848", "name": "Trigger53047848", "type": "Microsoft.Synapse/workspaces/triggers", "properties": { @@ -210,21 +124,18 @@ }, "runtimeState": "Stopped" }, - "etag": "0402811a-0000-0800-0000-600b2b4d0000" + "etag": "2e005d81-0000-0100-0000-615557e30000" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger53047848/subscribeToEvents?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/triggers/Trigger53047848/subscribeToEvents?api-version=2020-12-01", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-467945092cbac0489248e40154028abe-2a63f6f2fedeb541-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "e702a0e92cb2332147bcd89f6fe020b4", + "traceparent": "00-bb519ca5ee86c244b457b6b12fd194ad-2aef640c27bd3e4a-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "0143cb45fd592348409472e93721a572", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -233,18 +144,15 @@ "Cache-Control": "no-cache", "Content-Length": "52", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:45:18 GMT", + "Date": "Thu, 30 Sep 2021 06:23:30 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "e702a0e92cb2332147bcd89f6fe020b4", - "x-ms-correlation-request-id": "2dc77e4c-4011-4a5f-b08e-43cc70639139", - "x-ms-request-id": "0512b6ed-ec19-4827-8545-266626e415b3", + "x-ms-client-request-id": "0143cb45fd592348409472e93721a572", + "x-ms-correlation-request-id": "e7726748-5455-40ae-8fbb-23718c969b2c", + "x-ms-request-id": "96793b4a-6c26-4da4-853c-967937f3fca5", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -253,17 +161,14 @@ } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger53047848/unsubscribeFromEvents?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/triggers/Trigger53047848/unsubscribeFromEvents?api-version=2020-12-01", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-bfad8931c19a47498c74cbba444c17ee-bce4b3b35fa9ff40-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "970081e1be1edfbff243f7faa1c26b6c", + "traceparent": "00-2fe2a0579f24af4f81c200cd667f8a93-08c89839ac56fe47-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "e702a0e92cb2332147bcd89f6fe020b4", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -272,18 +177,15 @@ "Cache-Control": "no-cache", "Content-Length": "53", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:45:18 GMT", + "Date": "Thu, 30 Sep 2021 06:23:31 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-HTTPAPI/2.0" - ], + "Server": "Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=15724800; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "970081e1be1edfbff243f7faa1c26b6c", - "x-ms-correlation-request-id": "170c76cc-57e7-48aa-85c5-dea81233ef70", - "x-ms-request-id": "daf09293-776d-4817-ac72-6157824f2bf0", + "x-ms-client-request-id": "e702a0e92cb2332147bcd89f6fe020b4", + "x-ms-correlation-request-id": "a2a638c4-399e-410a-90ce-9746032d5947", + "x-ms-request-id": "42cf4c7c-3954-4cc5-ace2-9fb13d63d6af", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -292,17 +194,14 @@ } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/triggers/Trigger53047848?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/triggers/Trigger53047848?api-version=2020-12-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-8b67b9d732a87f4d89a350b6626f8854-db5ff6043dbf9a42-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "edbde29f89df5995d2e0951d56b82aa6", + "traceparent": "00-12fe479687ca70499321416ecd1d9455-a586470fcfb2af4d-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "970081e1be1edfbff243f7faa1c26b6c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -310,36 +209,33 @@ "ResponseHeaders": { "Access-Control-Allow-Headers": "Location", "Access-Control-Expose-Headers": "Location", - "Content-Length": "370", + "Content-Length": "363", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:45:18 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/d1f1cb80-ff62-40a1-8199-b344e2b219fd?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:23:31 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/fc251e4d-8bf6-4963-a559-122fe12858ea?api-version=2020-12-01", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "edbde29f89df5995d2e0951d56b82aa6", - "x-ms-request-id": "49e97add-93a7-4f0b-8f2f-4c4434ff8928" + "x-ms-client-request-id": "970081e1be1edfbff243f7faa1c26b6c", + "x-ms-request-id": "fea89936-6f71-4489-8c5e-ae7ee1f763b7" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/triggers/Trigger53047848", + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace/triggers/Trigger53047848", "recordId": 0, "state": "Deleting", "created": "0001-01-01T00:00:00", "changed": "0001-01-01T00:00:00", "type": "Trigger", "name": "Trigger53047848", - "operationId": "d1f1cb80-ff62-40a1-8199-b344e2b219fd" + "operationId": "fc251e4d-8bf6-4963-a559-122fe12858ea" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/d1f1cb80-ff62-40a1-8199-b344e2b219fd?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/fc251e4d-8bf6-4963-a559-122fe12858ea?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "bf5bc1877d05af8c3cc5a1a995734534", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "edbde29f89df5995d2e0951d56b82aa6", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -355,28 +251,25 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:45:18 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/d1f1cb80-ff62-40a1-8199-b344e2b219fd?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:23:31 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/fc251e4d-8bf6-4963-a559-122fe12858ea?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "bf5bc1877d05af8c3cc5a1a995734534", - "x-ms-request-id": "9d3c7396-7f53-45b4-9305-6c4b38b2ce8f" + "x-ms-client-request-id": "edbde29f89df5995d2e0951d56b82aa6", + "x-ms-request-id": "4fc4a757-2d25-48b0-87d9-3ca7d657ce52" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/d1f1cb80-ff62-40a1-8199-b344e2b219fd?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/fc251e4d-8bf6-4963-a559-122fe12858ea?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "2e4bd60d175bf6427606fd7bdeae185b", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "a4c648fda8f3b66bf064aae6407668d0", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -392,28 +285,25 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:45:20 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/d1f1cb80-ff62-40a1-8199-b344e2b219fd?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:23:33 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/fc251e4d-8bf6-4963-a559-122fe12858ea?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "2e4bd60d175bf6427606fd7bdeae185b", - "x-ms-request-id": "e108e5a1-6741-426f-97bd-6dc70675d338" + "x-ms-client-request-id": "a4c648fda8f3b66bf064aae6407668d0", + "x-ms-request-id": "7173b53f-d490-42d0-b7bb-508fe3af4a85" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/d1f1cb80-ff62-40a1-8199-b344e2b219fd?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/fc251e4d-8bf6-4963-a559-122fe12858ea?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "9595c4786a5d7fa1bc16682d06c1217d", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "bf5bc1877d05af8c3cc5a1a995734534", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -429,45 +319,42 @@ ], "Content-Length": "23", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 19:45:21 GMT", - "Location": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/d1f1cb80-ff62-40a1-8199-b344e2b219fd?api-version=2019-06-01-preview", + "Date": "Thu, 30 Sep 2021 06:23:34 GMT", + "Location": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/fc251e4d-8bf6-4963-a559-122fe12858ea?api-version=2020-12-01", "Retry-After": "10", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "9595c4786a5d7fa1bc16682d06c1217d", - "x-ms-request-id": "9eadabf3-a50e-4e56-a9bc-18fe93f154b9" + "x-ms-client-request-id": "bf5bc1877d05af8c3cc5a1a995734534", + "x-ms-request-id": "9e1e25bf-914e-48f7-9948-dd13ab4f84b8" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/operationResults/d1f1cb80-ff62-40a1-8199-b344e2b219fd?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/operationResults/fc251e4d-8bf6-4963-a559-122fe12858ea?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], - "x-ms-client-request-id": "6ad9761e3a2a6f757e6448fe8010d08d", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "2e4bd60d175bf6427606fd7bdeae185b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Content-Length": "0", - "Date": "Fri, 22 Jan 2021 19:45:22 GMT", + "Date": "Thu, 30 Sep 2021 06:23:35 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ms-client-request-id": "6ad9761e3a2a6f757e6448fe8010d08d", - "x-ms-request-id": "70b5a39f-84e3-4e17-99a1-c7db93982780" + "x-ms-client-request-id": "2e4bd60d175bf6427606fd7bdeae185b", + "x-ms-request-id": "2061892d-9e47-4cf6-a378-98021134d378" }, "ResponseBody": [] } ], "Variables": { - "AZURE_SYNAPSE_WORKSPACE_URL": "https://workspacechhamosynapse.dev.azuresynapse.net", + "AZURE_SYNAPSE_WORKSPACE_URL": "https://testsynapseworkspace.dev.azuresynapse.net", "RandomSeed": "993774295" } } \ No newline at end of file diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/WorkspaceClientLiveTests/TestGetWorkspace.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/WorkspaceClientLiveTests/TestGetWorkspace.json index a2b5d3577837..60dd806f8a2c 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/WorkspaceClientLiveTests/TestGetWorkspace.json +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/WorkspaceClientLiveTests/TestGetWorkspace.json @@ -1,86 +1,68 @@ { "Entries": [ { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/workspace?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/workspace?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-64cfd066efe6b24fb571ac1b366e2b86-e1db7fb83d61d84a-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "traceparent": "00-12677c3bd3c21c4ab875a2dfc7b58711-905c1b9f93882047-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "44eeee0b5bca6598e4008ca262ff4813", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Content-Length": "1917", + "Content-Length": "1259", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 20:45:45 GMT", + "Date": "Thu, 30 Sep 2021 06:23:35 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "44eeee0b5bca6598e4008ca262ff4813", - "x-ms-request-id": "5734838a-be53-48e2-91fe-068052c9e139" + "x-ms-request-id": "890e77b4-43b9-4915-ae21-f1d0f15e6e8d" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse", - "location": "westus2", - "name": "workspacechhamosynapse", "type": "Microsoft.Synapse/workspaces", - "identity": { - "type": "SystemAssigned", - "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "principalId": "412137cd-bce6-42cd-952a-92a3ce9130ee" - }, - "tags": {}, "properties": { - "managedVirtualNetwork": "default", - "connectivityEndpoints": { - "web": "https://web.azuresynapse.net?workspace=%2fsubscriptions%2ffaa080af-c1d8-40ad-9cce-e1a450ca5b57%2fresourceGroups%2frg-chhamosynapse%2fproviders%2fMicrosoft.Synapse%2fworkspaces%2fworkspacechhamosynapse", - "dev": "https://workspacechhamosynapse.dev.azuresynapse.net", - "sqlOnDemand": "workspacechhamosynapse-ondemand.sql.azuresynapse.net", - "sql": "workspacechhamosynapse.sql.azuresynapse.net" + "encryption": { + "doubleEncryptionEnabled": false }, - "managedResourceGroupName": "synapseworkspace-managedrg-a037d34a-c198-49cf-8066-63c05b3777d8", "defaultDataLakeStorage": { - "accountUrl": "https://storagechhamosynapse.dfs.core.windows.net", - "filesystem": "filesystemchhamosynapse" + "accountUrl": "https://newzzyadlsgen2.dfs.core.windows.net", + "filesystem": "testfilesystem" }, - "sqlAdministratorLogin": "sqladminuser", - "privateEndpointConnections": [ - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/privateEndpointConnections/chamonsprivateend-5c717008-8f4c-4312-bd11-17a987cdcb90", - "properties": { - "privateEndpoint": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Network/privateEndpoints/chamonsprivateend" - }, - "privateLinkServiceConnectionState": { - "status": "Approved" - } - } - } - ], - "workspaceUID": "a1a14f2e-bdd9-46f2-b0fd-d6367a393cd2", + "provisioningState": "Succeeded", + "connectivityEndpoints": { + "web": "https://web.azuresynapse.net?workspace=%2fsubscriptions%2f051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3%2fresourceGroups%2fzzy-test-rg%2fproviders%2fMicrosoft.Synapse%2fworkspaces%2ftestsynapseworkspace", + "dev": "https://testsynapseworkspace.dev.azuresynapse.net", + "sqlOnDemand": "testsynapseworkspace-ondemand.sql.azuresynapse.net", + "sql": "testsynapseworkspace.sql.azuresynapse.net" + }, + "managedResourceGroupName": "workspacemanagedrg-cf1e0457-375a-4c2d-a9b4-51676e4fce7c", + "sqlAdministratorLogin": "zzy", + "privateEndpointConnections": [], + "workspaceUID": "55b6dcb5-2507-4063-ae78-9dfe279b4f89", "extraProperties": { "WorkspaceType": "Normal" - }, - "managedVirtualNetworkSettings": { - "preventDataExfiltration": false, - "allowedAadTenantIdsForLinking": [] - }, - "encryption": { - "doubleEncryptionEnabled": false - }, - "provisioningState": "Succeeded" + } + }, + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace", + "location": "eastus", + "name": "testsynapseworkspace", + "identity": { + "type": "SystemAssigned", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "principalId": "5c40eee1-1044-4ec5-9d56-bbbd73b93df0" + }, + "tags": { + "key1": "value2" } } } ], "Variables": { - "AZURE_SYNAPSE_WORKSPACE_URL": "https://workspacechhamosynapse.dev.azuresynapse.net", + "AZURE_SYNAPSE_WORKSPACE_URL": "https://testsynapseworkspace.dev.azuresynapse.net", "RandomSeed": "577662719" } } \ No newline at end of file diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/WorkspaceClientLiveTests/TestGetWorkspaceAsync.json b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/WorkspaceClientLiveTests/TestGetWorkspaceAsync.json index 8173078d45e0..d08ec0344420 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/WorkspaceClientLiveTests/TestGetWorkspaceAsync.json +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SessionRecords/WorkspaceClientLiveTests/TestGetWorkspaceAsync.json @@ -1,86 +1,68 @@ { "Entries": [ { - "RequestUri": "https://workspacechhamosynapse.dev.azuresynapse.net/workspace?api-version=2019-06-01-preview", + "RequestUri": "https://testsynapseworkspace.dev.azuresynapse.net/workspace?api-version=2020-12-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-d22f5a90b0cee644926c241b37998ae5-f8f2ece8839e574c-00", - "User-Agent": [ - "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210122.1", - "(.NET 5.0.0; Darwin 19.6.0 Darwin Kernel Version 19.6.0: Tue Nov 10 00:10:30 PST 2020; root:xnu-6153.141.10~1/RELEASE_X86_64)" - ], + "traceparent": "00-ea9b38e34630d34eb1e7e07c2772bcd6-29f1a1a481c91a40-00", + "User-Agent": "azsdk-net-Analytics.Synapse.Artifacts/1.0.0-alpha.20210929.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f909fc9fd262534a7820d7611f502237", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Content-Length": "1917", + "Content-Length": "1259", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 22 Jan 2021 20:45:46 GMT", + "Date": "Thu, 30 Sep 2021 06:23:35 GMT", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-ms-client-request-id": "f909fc9fd262534a7820d7611f502237", - "x-ms-request-id": "9616e59c-cb35-467f-8d49-55a6b2fced39" + "x-ms-request-id": "d788694d-634d-4848-870b-e32471875c60" }, "ResponseBody": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse", - "location": "westus2", - "name": "workspacechhamosynapse", "type": "Microsoft.Synapse/workspaces", - "identity": { - "type": "SystemAssigned", - "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "principalId": "412137cd-bce6-42cd-952a-92a3ce9130ee" - }, - "tags": {}, "properties": { - "managedVirtualNetwork": "default", - "connectivityEndpoints": { - "web": "https://web.azuresynapse.net?workspace=%2fsubscriptions%2ffaa080af-c1d8-40ad-9cce-e1a450ca5b57%2fresourceGroups%2frg-chhamosynapse%2fproviders%2fMicrosoft.Synapse%2fworkspaces%2fworkspacechhamosynapse", - "dev": "https://workspacechhamosynapse.dev.azuresynapse.net", - "sqlOnDemand": "workspacechhamosynapse-ondemand.sql.azuresynapse.net", - "sql": "workspacechhamosynapse.sql.azuresynapse.net" + "encryption": { + "doubleEncryptionEnabled": false }, - "managedResourceGroupName": "synapseworkspace-managedrg-a037d34a-c198-49cf-8066-63c05b3777d8", "defaultDataLakeStorage": { - "accountUrl": "https://storagechhamosynapse.dfs.core.windows.net", - "filesystem": "filesystemchhamosynapse" + "accountUrl": "https://newzzyadlsgen2.dfs.core.windows.net", + "filesystem": "testfilesystem" }, - "sqlAdministratorLogin": "sqladminuser", - "privateEndpointConnections": [ - { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Synapse/workspaces/workspacechhamosynapse/privateEndpointConnections/chamonsprivateend-5c717008-8f4c-4312-bd11-17a987cdcb90", - "properties": { - "privateEndpoint": { - "id": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chhamosynapse/providers/Microsoft.Network/privateEndpoints/chamonsprivateend" - }, - "privateLinkServiceConnectionState": { - "status": "Approved" - } - } - } - ], - "workspaceUID": "a1a14f2e-bdd9-46f2-b0fd-d6367a393cd2", + "provisioningState": "Succeeded", + "connectivityEndpoints": { + "web": "https://web.azuresynapse.net?workspace=%2fsubscriptions%2f051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3%2fresourceGroups%2fzzy-test-rg%2fproviders%2fMicrosoft.Synapse%2fworkspaces%2ftestsynapseworkspace", + "dev": "https://testsynapseworkspace.dev.azuresynapse.net", + "sqlOnDemand": "testsynapseworkspace-ondemand.sql.azuresynapse.net", + "sql": "testsynapseworkspace.sql.azuresynapse.net" + }, + "managedResourceGroupName": "workspacemanagedrg-cf1e0457-375a-4c2d-a9b4-51676e4fce7c", + "sqlAdministratorLogin": "zzy", + "privateEndpointConnections": [], + "workspaceUID": "55b6dcb5-2507-4063-ae78-9dfe279b4f89", "extraProperties": { "WorkspaceType": "Normal" - }, - "managedVirtualNetworkSettings": { - "preventDataExfiltration": false, - "allowedAadTenantIdsForLinking": [] - }, - "encryption": { - "doubleEncryptionEnabled": false - }, - "provisioningState": "Succeeded" + } + }, + "id": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Synapse/workspaces/testsynapseworkspace", + "location": "eastus", + "name": "testsynapseworkspace", + "identity": { + "type": "SystemAssigned", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "principalId": "5c40eee1-1044-4ec5-9d56-bbbd73b93df0" + }, + "tags": { + "key1": "value2" } } } ], "Variables": { - "AZURE_SYNAPSE_WORKSPACE_URL": "https://workspacechhamosynapse.dev.azuresynapse.net", + "AZURE_SYNAPSE_WORKSPACE_URL": "https://testsynapseworkspace.dev.azuresynapse.net", "RandomSeed": "1981318222" } } \ No newline at end of file diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SqlScriptClientLiveTests.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SqlScriptClientLiveTests.cs index c64e1197cb4a..8aa49bdc789a 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SqlScriptClientLiveTests.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/tests/SqlScriptClientLiveTests.cs @@ -41,8 +41,12 @@ public static async ValueTask CreateResource (SqlScriptClient { string scriptName = recording.GenerateId("SqlScript", 16); // The connection string does not need to point to a real server, as we are not executing here - SqlConnection connect = new SqlConnection (SqlConnectionType.SqlPool, "Server=tcp:nonexistant.sql.azuresynapse.net,1433;Database=nonexistant;User ID=user;Password=password;Encrypt=True;TrustServerCertificate=False;Connection Timeout=30;"); - SqlScript script = new SqlScript (new SqlScriptContent ("SELECT NULL LIMIT 0;", connect)); + SqlConnection connect = new SqlConnection + { + Type = SqlConnectionType.SqlPool, + Name = "Server=tcp:nonexistant.sql.azuresynapse.net,1433;Database=nonexistant;User ID=user;Password=password;Encrypt=True;TrustServerCertificate=False;Connection Timeout=30;" + }; + SqlScript script = new SqlScript (new SqlScriptContent("SELECT NULL LIMIT 0;") { CurrentConnection = connect }); SqlScriptCreateOrUpdateSqlScriptOperation createOperation = await client.StartCreateOrUpdateSqlScriptAsync (scriptName, new SqlScriptResource (scriptName, script)); return await createOperation.WaitForCompletionAsync(); }