-
Notifications
You must be signed in to change notification settings - Fork 4.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Dongwei Wang
committed
Feb 7, 2021
1 parent
cf38d94
commit 4e578fb
Showing
57 changed files
with
486 additions
and
177 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 14 additions & 0 deletions
14
sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Customization/Models/AvroFormat.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
// Copyright (c) Microsoft Corporation. All rights reserved. | ||
// Licensed under the MIT License. | ||
|
||
namespace Azure.Analytics.Synapse.Artifacts.Models | ||
{ | ||
public partial class AvroFormat : DatasetStorageFormat | ||
{ | ||
/// <summary> Initializes a new instance of AvroFormat. </summary> | ||
public AvroFormat() | ||
{ | ||
Type = "AvroFormat"; | ||
} | ||
} | ||
} |
12 changes: 12 additions & 0 deletions
12
sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Customization/Models/CopyBehaviorType.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
// Copyright (c) Microsoft Corporation. All rights reserved. | ||
// Licensed under the MIT License. | ||
|
||
using System; | ||
|
||
namespace Azure.Analytics.Synapse.Artifacts.Models | ||
{ | ||
/// <summary> All available types of copy behavior. </summary> | ||
public readonly partial struct CopyBehaviorType : IEquatable<CopyBehaviorType> | ||
{ | ||
} | ||
} |
18 changes: 18 additions & 0 deletions
18
sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Customization/Models/CopyTranslator.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
// Copyright (c) Microsoft Corporation. All rights reserved. | ||
// Licensed under the MIT License. | ||
|
||
using System.Collections.Generic; | ||
using Azure.Core; | ||
|
||
namespace Azure.Analytics.Synapse.Artifacts.Models | ||
{ | ||
/// <summary> A copy activity translator. </summary> | ||
public partial class CopyTranslator : IReadOnlyDictionary<string, object> | ||
{ | ||
public CopyTranslator() | ||
{ | ||
AdditionalProperties = new ChangeTrackingDictionary<string, object>(); | ||
Type = "CopyTranslator"; | ||
} | ||
} | ||
} |
13 changes: 13 additions & 0 deletions
13
...e.Analytics.Synapse.Artifacts/src/Customization/Models/DataFlowDebugPreviewDataRequest.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
// Copyright (c) Microsoft Corporation. All rights reserved. | ||
// Licensed under the MIT License. | ||
|
||
namespace Azure.Analytics.Synapse.Artifacts.Models | ||
{ | ||
/// <summary> Request body structure for data flow preview data. </summary> | ||
public partial class DataFlowDebugPreviewDataRequest | ||
{ | ||
public DataFlowDebugPreviewDataRequest() | ||
{ | ||
} | ||
} | ||
} |
14 changes: 14 additions & 0 deletions
14
.../Azure.Analytics.Synapse.Artifacts/src/Customization/Models/DataFlowDebugQueryResponse.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
// Copyright (c) Microsoft Corporation. All rights reserved. | ||
// Licensed under the MIT License. | ||
|
||
namespace Azure.Analytics.Synapse.Artifacts.Models | ||
{ | ||
/// <summary> Response body structure of data flow query for data preview, statistics or expression preview. </summary> | ||
public partial class DataFlowDebugQueryResponse | ||
{ | ||
/// <summary> Initializes a new instance of DataFlowDebugQueryResponse. </summary> | ||
public DataFlowDebugQueryResponse() | ||
{ | ||
} | ||
} | ||
} |
14 changes: 14 additions & 0 deletions
14
...Azure.Analytics.Synapse.Artifacts/src/Customization/Models/DataFlowDebugResultResponse.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
// Copyright (c) Microsoft Corporation. All rights reserved. | ||
// Licensed under the MIT License. | ||
|
||
namespace Azure.Analytics.Synapse.Artifacts.Models | ||
{ | ||
/// <summary> Response body structure of data flow result for data preview, statistics or expression preview. </summary> | ||
public partial class DataFlowDebugResultResponse | ||
{ | ||
/// <summary> Initializes a new instance of DataFlowDebugResultResponse. </summary> | ||
public DataFlowDebugResultResponse() | ||
{ | ||
} | ||
} | ||
} |
18 changes: 18 additions & 0 deletions
18
...re.Analytics.Synapse.Artifacts/src/Customization/Models/DataFlowDebugStatisticsRequest.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
// Copyright (c) Microsoft Corporation. All rights reserved. | ||
// Licensed under the MIT License. | ||
|
||
using System.Collections.Generic; | ||
using Azure.Core; | ||
|
||
namespace Azure.Analytics.Synapse.Artifacts.Models | ||
{ | ||
/// <summary> Request body structure for data flow statistics. </summary> | ||
public partial class DataFlowDebugStatisticsRequest | ||
{ | ||
/// <summary> Initializes a new instance of DataFlowDebugStatisticsRequest. </summary> | ||
public DataFlowDebugStatisticsRequest() | ||
{ | ||
Columns = new ChangeTrackingList<string>(); | ||
} | ||
} | ||
} |
14 changes: 14 additions & 0 deletions
14
sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Customization/Models/DatasetDataElement.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
// Copyright (c) Microsoft Corporation. All rights reserved. | ||
// Licensed under the MIT License. | ||
|
||
namespace Azure.Analytics.Synapse.Artifacts.Models | ||
{ | ||
/// <summary> Columns that define the structure of the dataset. </summary> | ||
public partial class DatasetDataElement | ||
{ | ||
/// <summary> Initializes a new instance of DatasetDataElement. </summary> | ||
public DatasetDataElement() | ||
{ | ||
} | ||
} | ||
} |
19 changes: 19 additions & 0 deletions
19
...se/Azure.Analytics.Synapse.Artifacts/src/Customization/Models/DatasetSchemaDataElement.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
// Copyright (c) Microsoft Corporation. All rights reserved. | ||
// Licensed under the MIT License. | ||
|
||
using System.Collections; | ||
using System.Collections.Generic; | ||
using Azure.Core; | ||
|
||
namespace Azure.Analytics.Synapse.Artifacts.Models | ||
{ | ||
/// <summary> Columns that define the physical type schema of the dataset. </summary> | ||
public partial class DatasetSchemaDataElement : IReadOnlyDictionary<string, object> | ||
{ | ||
/// <summary> Initializes a new instance of DatasetSchemaDataElement. </summary> | ||
public DatasetSchemaDataElement() | ||
{ | ||
AdditionalProperties = new ChangeTrackingDictionary<string, object>(); | ||
} | ||
} | ||
} |
20 changes: 20 additions & 0 deletions
20
...ynapse/Azure.Analytics.Synapse.Artifacts/src/Customization/Models/DatasetStorageFormat.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
// Copyright (c) Microsoft Corporation. All rights reserved. | ||
// Licensed under the MIT License. | ||
|
||
using System.Collections; | ||
using System.Collections.Generic; | ||
using Azure.Core; | ||
|
||
namespace Azure.Analytics.Synapse.Artifacts.Models | ||
{ | ||
/// <summary> The format definition of a storage. </summary> | ||
public partial class DatasetStorageFormat : IReadOnlyDictionary<string, object> | ||
{ | ||
/// <summary> Initializes a new instance of DatasetStorageFormat. </summary> | ||
public DatasetStorageFormat() | ||
{ | ||
AdditionalProperties = new ChangeTrackingDictionary<string, object>(); | ||
Type = "DatasetStorageFormat"; | ||
} | ||
} | ||
} |
14 changes: 14 additions & 0 deletions
14
...Analytics.Synapse.Artifacts/src/Customization/Models/EvaluateDataFlowExpressionRequest.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
// Copyright (c) Microsoft Corporation. All rights reserved. | ||
// Licensed under the MIT License. | ||
|
||
namespace Azure.Analytics.Synapse.Artifacts.Models | ||
{ | ||
/// <summary> Request body structure for data flow expression preview. </summary> | ||
public partial class EvaluateDataFlowExpressionRequest | ||
{ | ||
/// <summary> Initializes a new instance of EvaluateDataFlowExpressionRequest. </summary> | ||
public EvaluateDataFlowExpressionRequest() | ||
{ | ||
} | ||
} | ||
} |
14 changes: 14 additions & 0 deletions
14
...apse/Azure.Analytics.Synapse.Artifacts/src/Customization/Models/ExposureControlRequest.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
// Copyright (c) Microsoft Corporation. All rights reserved. | ||
// Licensed under the MIT License. | ||
|
||
namespace Azure.Analytics.Synapse.Artifacts.Models | ||
{ | ||
/// <summary> The exposure control request. </summary> | ||
public partial class ExposureControlRequest | ||
{ | ||
/// <summary> Initializes a new instance of ExposureControlRequest. </summary> | ||
public ExposureControlRequest() | ||
{ | ||
} | ||
} | ||
} |
14 changes: 14 additions & 0 deletions
14
...pse/Azure.Analytics.Synapse.Artifacts/src/Customization/Models/ExposureControlResponse.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
// Copyright (c) Microsoft Corporation. All rights reserved. | ||
// Licensed under the MIT License. | ||
|
||
namespace Azure.Analytics.Synapse.Artifacts.Models | ||
{ | ||
/// <summary> The exposure control response. </summary> | ||
public partial class ExposureControlResponse | ||
{ | ||
/// <summary> Initializes a new instance of ExposureControlResponse. </summary> | ||
public ExposureControlResponse() | ||
{ | ||
} | ||
} | ||
} |
14 changes: 14 additions & 0 deletions
14
...zure.Analytics.Synapse.Artifacts/src/Customization/Models/GetSsisObjectMetadataRequest.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
// Copyright (c) Microsoft Corporation. All rights reserved. | ||
// Licensed under the MIT License. | ||
|
||
namespace Azure.Analytics.Synapse.Artifacts.Models | ||
{ | ||
/// <summary> The request payload of get SSIS object metadata. </summary> | ||
public partial class GetSsisObjectMetadataRequest | ||
{ | ||
/// <summary> Initializes a new instance of GetSsisObjectMetadataRequest. </summary> | ||
public GetSsisObjectMetadataRequest() | ||
{ | ||
} | ||
} | ||
} |
15 changes: 15 additions & 0 deletions
15
sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Customization/Models/JsonFormat.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
// Copyright (c) Microsoft Corporation. All rights reserved. | ||
// Licensed under the MIT License. | ||
|
||
namespace Azure.Analytics.Synapse.Artifacts.Models | ||
{ | ||
/// <summary> The data stored in JSON format. </summary> | ||
public partial class JsonFormat : DatasetStorageFormat | ||
{ | ||
/// <summary> Initializes a new instance of JsonFormat. </summary> | ||
public JsonFormat() | ||
{ | ||
Type = "JsonFormat"; | ||
} | ||
} | ||
} |
12 changes: 12 additions & 0 deletions
12
...napse/Azure.Analytics.Synapse.Artifacts/src/Customization/Models/JsonFormatFilePattern.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
// Copyright (c) Microsoft Corporation. All rights reserved. | ||
// Licensed under the MIT License. | ||
|
||
using System; | ||
|
||
namespace Azure.Analytics.Synapse.Artifacts.Models | ||
{ | ||
/// <summary> JSON format file pattern. A property of JsonFormat. </summary> | ||
public readonly partial struct JsonFormatFilePattern : IEquatable<JsonFormatFilePattern> | ||
{ | ||
} | ||
} |
15 changes: 15 additions & 0 deletions
15
sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Customization/Models/OrcFormat.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
// Copyright (c) Microsoft Corporation. All rights reserved. | ||
// Licensed under the MIT License. | ||
|
||
namespace Azure.Analytics.Synapse.Artifacts.Models | ||
{ | ||
/// <summary> The data stored in Optimized Row Columnar (ORC) format. </summary> | ||
public partial class OrcFormat : DatasetStorageFormat | ||
{ | ||
/// <summary> Initializes a new instance of OrcFormat. </summary> | ||
public OrcFormat() | ||
{ | ||
Type = "OrcFormat"; | ||
} | ||
} | ||
} |
15 changes: 15 additions & 0 deletions
15
sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Customization/Models/ParquetFormat.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
// Copyright (c) Microsoft Corporation. All rights reserved. | ||
// Licensed under the MIT License. | ||
|
||
namespace Azure.Analytics.Synapse.Artifacts.Models | ||
{ | ||
/// <summary> The data stored in Parquet format. </summary> | ||
public partial class ParquetFormat : DatasetStorageFormat | ||
{ | ||
/// <summary> Initializes a new instance of ParquetFormat. </summary> | ||
public ParquetFormat() | ||
{ | ||
Type = "ParquetFormat"; | ||
} | ||
} | ||
} |
26 changes: 26 additions & 0 deletions
26
...se/Azure.Analytics.Synapse.Artifacts/src/Customization/Models/RerunTriggerListResponse.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
// Copyright (c) Microsoft Corporation. All rights reserved. | ||
// Licensed under the MIT License. | ||
|
||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
|
||
namespace Azure.Analytics.Synapse.Artifacts.Models | ||
{ | ||
/// <summary> A list of rerun triggers. </summary> | ||
public partial class RerunTriggerListResponse | ||
{ | ||
/// <summary> Initializes a new instance of RerunTriggerListResponse. </summary> | ||
/// <param name="value"> List of rerun triggers. </param> | ||
/// <exception cref="ArgumentNullException"> <paramref name="value"/> is null. </exception> | ||
public RerunTriggerListResponse(IEnumerable<RerunTriggerResource> value) | ||
{ | ||
if (value == null) | ||
{ | ||
throw new ArgumentNullException(nameof(value)); | ||
} | ||
|
||
Value = value.ToList(); | ||
} | ||
} | ||
} |
22 changes: 22 additions & 0 deletions
22
...s.Synapse.Artifacts/src/Customization/Models/RerunTumblingWindowTriggerActionParameter.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
// Copyright (c) Microsoft Corporation. All rights reserved. | ||
// Licensed under the MIT License. | ||
|
||
using System; | ||
|
||
namespace Azure.Analytics.Synapse.Artifacts.Models | ||
{ | ||
/// <summary> Rerun tumbling window trigger Parameters. </summary> | ||
public partial class RerunTumblingWindowTriggerActionParameters | ||
{ | ||
/// <summary> Initializes a new instance of RerunTumblingWindowTriggerActionParameters. </summary> | ||
/// <param name="startTime"> The start time for the time period for which restatement is initiated. Only UTC time is currently supported. </param> | ||
/// <param name="endTime"> The end time for the time period for which restatement is initiated. Only UTC time is currently supported. </param> | ||
/// <param name="maxConcurrency"> The max number of parallel time windows (ready for execution) for which a rerun is triggered. </param> | ||
public RerunTumblingWindowTriggerActionParameters(DateTimeOffset startTime, DateTimeOffset endTime, int maxConcurrency) | ||
{ | ||
StartTime = startTime; | ||
EndTime = endTime; | ||
MaxConcurrency = maxConcurrency; | ||
} | ||
} | ||
} |
14 changes: 14 additions & 0 deletions
14
....Analytics.Synapse.Artifacts/src/Customization/Models/SsisObjectMetadataStatusResponse.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
// Copyright (c) Microsoft Corporation. All rights reserved. | ||
// Licensed under the MIT License. | ||
|
||
namespace Azure.Analytics.Synapse.Artifacts.Models | ||
{ | ||
/// <summary> The status of the operation. </summary> | ||
public partial class SsisObjectMetadataStatusResponse | ||
{ | ||
/// <summary> Initializes a new instance of SsisObjectMetadataStatusResponse. </summary> | ||
public SsisObjectMetadataStatusResponse() | ||
{ | ||
} | ||
} | ||
} |
19 changes: 19 additions & 0 deletions
19
....Analytics.Synapse.Artifacts/src/Customization/Models/StartDataFlowDebugSessionRequest.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
// Copyright (c) Microsoft Corporation. All rights reserved. | ||
// Licensed under the MIT License. | ||
|
||
using System.Collections.Generic; | ||
using Azure.Core; | ||
|
||
namespace Azure.Analytics.Synapse.Artifacts.Models | ||
{ | ||
/// <summary> Request body structure for starting data flow debug session. </summary> | ||
public partial class StartDataFlowDebugSessionRequest | ||
{ | ||
/// <summary> Initializes a new instance of StartDataFlowDebugSessionRequest. </summary> | ||
public StartDataFlowDebugSessionRequest() | ||
{ | ||
Datasets = new ChangeTrackingList<DatasetResource>(); | ||
LinkedServices = new ChangeTrackingList<LinkedServiceResource>(); | ||
} | ||
} | ||
} |
14 changes: 14 additions & 0 deletions
14
...Analytics.Synapse.Artifacts/src/Customization/Models/StartDataFlowDebugSessionResponse.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
// Copyright (c) Microsoft Corporation. All rights reserved. | ||
// Licensed under the MIT License. | ||
|
||
namespace Azure.Analytics.Synapse.Artifacts.Models | ||
{ | ||
/// <summary> Response body structure for starting data flow debug session. </summary> | ||
public partial class StartDataFlowDebugSessionResponse | ||
{ | ||
/// <summary> Initializes a new instance of StartDataFlowDebugSessionResponse. </summary> | ||
public StartDataFlowDebugSessionResponse() | ||
{ | ||
} | ||
} | ||
} |
Oops, something went wrong.