@azure/arm-datafactory 10.1.1-alpha.20220201.1 → 10.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -79,6 +79,10 @@ export type LinkedServiceUnion =
79
79
  | SapOpenHubLinkedService
80
80
  | RestServiceLinkedService
81
81
  | AmazonS3LinkedService
82
+ | TeamDeskLinkedService
83
+ | QuickbaseLinkedService
84
+ | SmartsheetLinkedService
85
+ | ZendeskLinkedService
82
86
  | AmazonRedshiftLinkedService
83
87
  | CustomDataSourceLinkedService
84
88
  | AzureSearchLinkedService
@@ -460,7 +464,8 @@ export type ExecutionActivityUnion =
460
464
  | DatabricksSparkJarActivity
461
465
  | DatabricksSparkPythonActivity
462
466
  | AzureFunctionActivity
463
- | ExecuteDataFlowActivity;
467
+ | ExecuteDataFlowActivity
468
+ | ScriptActivity;
464
469
  export type MultiplePipelineTriggerUnion =
465
470
  | MultiplePipelineTrigger
466
471
  | ScheduleTrigger
@@ -1274,6 +1279,10 @@ export interface LinkedService {
1274
1279
  | "SapOpenHub"
1275
1280
  | "RestService"
1276
1281
  | "AmazonS3"
1282
+ | "TeamDesk"
1283
+ | "Quickbase"
1284
+ | "Smartsheet"
1285
+ | "Zendesk"
1277
1286
  | "AmazonRedshift"
1278
1287
  | "CustomDataSource"
1279
1288
  | "AzureSearch"
@@ -1545,7 +1554,8 @@ export interface Activity {
1545
1554
  | "AzureFunctionActivity"
1546
1555
  | "WebHook"
1547
1556
  | "ExecuteDataFlow"
1548
- | "ExecuteWranglingDataflow";
1557
+ | "ExecuteWranglingDataflow"
1558
+ | "Script";
1549
1559
  /** Describes unknown properties. The value of an unknown property can be of "any" type. */
1550
1560
  [property: string]: any;
1551
1561
  /** Activity name. */
@@ -3502,6 +3512,38 @@ export interface PowerQuerySinkMapping {
3502
3512
  dataflowSinks?: PowerQuerySink[];
3503
3513
  }
3504
3514
 
3515
+ /** Script block of scripts. */
3516
+ export interface ScriptActivityScriptBlock {
3517
+ /** The query text. Type: string (or Expression with resultType string). */
3518
+ text: Record<string, unknown>;
3519
+ /** The type of the query. Type: string. */
3520
+ type: ScriptType;
3521
+ /** Array of script parameters. Type: array. */
3522
+ parameters?: ScriptActivityParameter[];
3523
+ }
3524
+
3525
+ /** Parameters of a script block. */
3526
+ export interface ScriptActivityParameter {
3527
+ /** The name of the parameter. Type: string (or Expression with resultType string). */
3528
+ name?: Record<string, unknown>;
3529
+ /** The type of the parameter. */
3530
+ type?: ScriptActivityParameterType;
3531
+ /** The value of the parameter. */
3532
+ value?: Record<string, unknown>;
3533
+ /** The direction of the parameter. */
3534
+ direction?: ScriptActivityParameterDirection;
3535
+ /** The size of the output direction parameter. */
3536
+ size?: number;
3537
+ }
3538
+
3539
+ /** Log settings of script activity. */
3540
+ export interface ScriptActivityTypePropertiesLogSettings {
3541
+ /** The destination of logs. Type: string. */
3542
+ logDestination: ScriptActivityLogDestination;
3543
+ /** Log location settings customer needs to provide when enabling log. */
3544
+ logLocationSettings?: LogLocationSettings;
3545
+ }
3546
+
3505
3547
  /** The workflow trigger recurrence. */
3506
3548
  export interface ScheduleTriggerRecurrence {
3507
3549
  /** Describes unknown properties. The value of an unknown property can be of "any" type. */
@@ -4877,6 +4919,64 @@ export type AmazonS3LinkedService = LinkedService & {
4877
4919
  encryptedCredential?: Record<string, unknown>;
4878
4920
  };
4879
4921
 
4922
+ /** Linked service for TeamDesk. */
4923
+ export type TeamDeskLinkedService = LinkedService & {
4924
+ /** Polymorphic discriminator, which specifies the different types this object can be */
4925
+ type: "TeamDesk";
4926
+ /** The authentication type to use. */
4927
+ authenticationType: TeamDeskAuthenticationType;
4928
+ /** The url to connect TeamDesk source. Type: string (or Expression with resultType string). */
4929
+ url: Record<string, unknown>;
4930
+ /** The username of the TeamDesk source. Type: string (or Expression with resultType string). */
4931
+ userName?: Record<string, unknown>;
4932
+ /** The password of the TeamDesk source. */
4933
+ password?: SecretBaseUnion;
4934
+ /** The api token for the TeamDesk source. */
4935
+ apiToken?: SecretBaseUnion;
4936
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
4937
+ encryptedCredential?: Record<string, unknown>;
4938
+ };
4939
+
4940
+ /** Linked service for Quickbase. */
4941
+ export type QuickbaseLinkedService = LinkedService & {
4942
+ /** Polymorphic discriminator, which specifies the different types this object can be */
4943
+ type: "Quickbase";
4944
+ /** The url to connect Quickbase source. Type: string (or Expression with resultType string). */
4945
+ url: Record<string, unknown>;
4946
+ /** The user token for the Quickbase source. */
4947
+ userToken: SecretBaseUnion;
4948
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
4949
+ encryptedCredential?: Record<string, unknown>;
4950
+ };
4951
+
4952
+ /** Linked service for Smartsheet. */
4953
+ export type SmartsheetLinkedService = LinkedService & {
4954
+ /** Polymorphic discriminator, which specifies the different types this object can be */
4955
+ type: "Smartsheet";
4956
+ /** The api token for the Smartsheet source. */
4957
+ apiToken: SecretBaseUnion;
4958
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
4959
+ encryptedCredential?: Record<string, unknown>;
4960
+ };
4961
+
4962
+ /** Linked service for Zendesk. */
4963
+ export type ZendeskLinkedService = LinkedService & {
4964
+ /** Polymorphic discriminator, which specifies the different types this object can be */
4965
+ type: "Zendesk";
4966
+ /** The authentication type to use. */
4967
+ authenticationType: ZendeskAuthenticationType;
4968
+ /** The url to connect Zendesk source. Type: string (or Expression with resultType string). */
4969
+ url: Record<string, unknown>;
4970
+ /** The username of the Zendesk source. Type: string (or Expression with resultType string). */
4971
+ userName?: Record<string, unknown>;
4972
+ /** The password of the Zendesk source. */
4973
+ password?: SecretBaseUnion;
4974
+ /** The api token for the Zendesk source. */
4975
+ apiToken?: SecretBaseUnion;
4976
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
4977
+ encryptedCredential?: Record<string, unknown>;
4978
+ };
4979
+
4880
4980
  /** Linked service for Amazon Redshift. */
4881
4981
  export type AmazonRedshiftLinkedService = LinkedService & {
4882
4982
  /** Polymorphic discriminator, which specifies the different types this object can be */
@@ -7045,7 +7145,8 @@ export type ExecutionActivity = Activity & {
7045
7145
  | "DatabricksSparkJar"
7046
7146
  | "DatabricksSparkPython"
7047
7147
  | "AzureFunctionActivity"
7048
- | "ExecuteDataFlow";
7148
+ | "ExecuteDataFlow"
7149
+ | "Script";
7049
7150
  /** Linked service reference. */
7050
7151
  linkedServiceName?: LinkedServiceReference;
7051
7152
  /** Activity policy. */
@@ -9630,6 +9731,16 @@ export type ExecuteDataFlowActivity = ExecutionActivity & {
9630
9731
  runConcurrently?: Record<string, unknown>;
9631
9732
  };
9632
9733
 
9734
+ /** Script activity type. */
9735
+ export type ScriptActivity = ExecutionActivity & {
9736
+ /** Polymorphic discriminator, which specifies the different types this object can be */
9737
+ type: "Script";
9738
+ /** Array of script blocks. Type: array. */
9739
+ scripts?: ScriptActivityScriptBlock[];
9740
+ /** Log settings of script activity. */
9741
+ logSettings?: ScriptActivityTypePropertiesLogSettings;
9742
+ };
9743
+
9633
9744
  /** Trigger that creates pipeline runs periodically, on schedule. */
9634
9745
  export type ScheduleTrigger = MultiplePipelineTrigger & {
9635
9746
  /** Polymorphic discriminator, which specifies the different types this object can be */
@@ -11052,6 +11163,38 @@ export enum KnownRestServiceAuthenticationType {
11052
11163
  */
11053
11164
  export type RestServiceAuthenticationType = string;
11054
11165
 
11166
+ /** Known values of {@link TeamDeskAuthenticationType} that the service accepts. */
11167
+ export enum KnownTeamDeskAuthenticationType {
11168
+ Basic = "Basic",
11169
+ Token = "Token"
11170
+ }
11171
+
11172
+ /**
11173
+ * Defines values for TeamDeskAuthenticationType. \
11174
+ * {@link KnownTeamDeskAuthenticationType} can be used interchangeably with TeamDeskAuthenticationType,
11175
+ * this enum contains the known values that the service supports.
11176
+ * ### Known values supported by the service
11177
+ * **Basic** \
11178
+ * **Token**
11179
+ */
11180
+ export type TeamDeskAuthenticationType = string;
11181
+
11182
+ /** Known values of {@link ZendeskAuthenticationType} that the service accepts. */
11183
+ export enum KnownZendeskAuthenticationType {
11184
+ Basic = "Basic",
11185
+ Token = "Token"
11186
+ }
11187
+
11188
+ /**
11189
+ * Defines values for ZendeskAuthenticationType. \
11190
+ * {@link KnownZendeskAuthenticationType} can be used interchangeably with ZendeskAuthenticationType,
11191
+ * this enum contains the known values that the service supports.
11192
+ * ### Known values supported by the service
11193
+ * **Basic** \
11194
+ * **Token**
11195
+ */
11196
+ export type ZendeskAuthenticationType = string;
11197
+
11055
11198
  /** Known values of {@link HttpAuthenticationType} that the service accepts. */
11056
11199
  export enum KnownHttpAuthenticationType {
11057
11200
  Basic = "Basic",
@@ -11616,6 +11759,92 @@ export enum KnownWebHookActivityMethod {
11616
11759
  */
11617
11760
  export type WebHookActivityMethod = string;
11618
11761
 
11762
+ /** Known values of {@link ScriptType} that the service accepts. */
11763
+ export enum KnownScriptType {
11764
+ Query = "Query",
11765
+ NonQuery = "NonQuery"
11766
+ }
11767
+
11768
+ /**
11769
+ * Defines values for ScriptType. \
11770
+ * {@link KnownScriptType} can be used interchangeably with ScriptType,
11771
+ * this enum contains the known values that the service supports.
11772
+ * ### Known values supported by the service
11773
+ * **Query** \
11774
+ * **NonQuery**
11775
+ */
11776
+ export type ScriptType = string;
11777
+
11778
+ /** Known values of {@link ScriptActivityParameterType} that the service accepts. */
11779
+ export enum KnownScriptActivityParameterType {
11780
+ Boolean = "Boolean",
11781
+ DateTime = "DateTime",
11782
+ DateTimeOffset = "DateTimeOffset",
11783
+ Decimal = "Decimal",
11784
+ Double = "Double",
11785
+ Guid = "Guid",
11786
+ Int16 = "Int16",
11787
+ Int32 = "Int32",
11788
+ Int64 = "Int64",
11789
+ Single = "Single",
11790
+ String = "String",
11791
+ Timespan = "Timespan"
11792
+ }
11793
+
11794
+ /**
11795
+ * Defines values for ScriptActivityParameterType. \
11796
+ * {@link KnownScriptActivityParameterType} can be used interchangeably with ScriptActivityParameterType,
11797
+ * this enum contains the known values that the service supports.
11798
+ * ### Known values supported by the service
11799
+ * **Boolean** \
11800
+ * **DateTime** \
11801
+ * **DateTimeOffset** \
11802
+ * **Decimal** \
11803
+ * **Double** \
11804
+ * **Guid** \
11805
+ * **Int16** \
11806
+ * **Int32** \
11807
+ * **Int64** \
11808
+ * **Single** \
11809
+ * **String** \
11810
+ * **Timespan**
11811
+ */
11812
+ export type ScriptActivityParameterType = string;
11813
+
11814
+ /** Known values of {@link ScriptActivityParameterDirection} that the service accepts. */
11815
+ export enum KnownScriptActivityParameterDirection {
11816
+ Input = "Input",
11817
+ Output = "Output",
11818
+ InputOutput = "InputOutput"
11819
+ }
11820
+
11821
+ /**
11822
+ * Defines values for ScriptActivityParameterDirection. \
11823
+ * {@link KnownScriptActivityParameterDirection} can be used interchangeably with ScriptActivityParameterDirection,
11824
+ * this enum contains the known values that the service supports.
11825
+ * ### Known values supported by the service
11826
+ * **Input** \
11827
+ * **Output** \
11828
+ * **InputOutput**
11829
+ */
11830
+ export type ScriptActivityParameterDirection = string;
11831
+
11832
+ /** Known values of {@link ScriptActivityLogDestination} that the service accepts. */
11833
+ export enum KnownScriptActivityLogDestination {
11834
+ ActivityOutput = "ActivityOutput",
11835
+ ExternalStore = "ExternalStore"
11836
+ }
11837
+
11838
+ /**
11839
+ * Defines values for ScriptActivityLogDestination. \
11840
+ * {@link KnownScriptActivityLogDestination} can be used interchangeably with ScriptActivityLogDestination,
11841
+ * this enum contains the known values that the service supports.
11842
+ * ### Known values supported by the service
11843
+ * **ActivityOutput** \
11844
+ * **ExternalStore**
11845
+ */
11846
+ export type ScriptActivityLogDestination = string;
11847
+
11619
11848
  /** Known values of {@link RecurrenceFrequency} that the service accepts. */
11620
11849
  export enum KnownRecurrenceFrequency {
11621
11850
  NotSpecified = "NotSpecified",
@@ -710,7 +710,7 @@ export const FactoryUpdateParameters: coreClient.CompositeMapper = {
710
710
  }
711
711
  },
712
712
  publicNetworkAccess: {
713
- serializedName: "publicNetworkAccess",
713
+ serializedName: "properties.publicNetworkAccess",
714
714
  type: {
715
715
  name: "String"
716
716
  }
@@ -6708,6 +6708,106 @@ export const PowerQuerySinkMapping: coreClient.CompositeMapper = {
6708
6708
  }
6709
6709
  };
6710
6710
 
6711
+ export const ScriptActivityScriptBlock: coreClient.CompositeMapper = {
6712
+ type: {
6713
+ name: "Composite",
6714
+ className: "ScriptActivityScriptBlock",
6715
+ modelProperties: {
6716
+ text: {
6717
+ serializedName: "text",
6718
+ required: true,
6719
+ type: {
6720
+ name: "Dictionary",
6721
+ value: { type: { name: "any" } }
6722
+ }
6723
+ },
6724
+ type: {
6725
+ serializedName: "type",
6726
+ required: true,
6727
+ type: {
6728
+ name: "String"
6729
+ }
6730
+ },
6731
+ parameters: {
6732
+ serializedName: "parameters",
6733
+ type: {
6734
+ name: "Sequence",
6735
+ element: {
6736
+ type: {
6737
+ name: "Composite",
6738
+ className: "ScriptActivityParameter"
6739
+ }
6740
+ }
6741
+ }
6742
+ }
6743
+ }
6744
+ }
6745
+ };
6746
+
6747
+ export const ScriptActivityParameter: coreClient.CompositeMapper = {
6748
+ type: {
6749
+ name: "Composite",
6750
+ className: "ScriptActivityParameter",
6751
+ modelProperties: {
6752
+ name: {
6753
+ serializedName: "name",
6754
+ type: {
6755
+ name: "Dictionary",
6756
+ value: { type: { name: "any" } }
6757
+ }
6758
+ },
6759
+ type: {
6760
+ serializedName: "type",
6761
+ type: {
6762
+ name: "String"
6763
+ }
6764
+ },
6765
+ value: {
6766
+ serializedName: "value",
6767
+ type: {
6768
+ name: "Dictionary",
6769
+ value: { type: { name: "any" } }
6770
+ }
6771
+ },
6772
+ direction: {
6773
+ serializedName: "direction",
6774
+ type: {
6775
+ name: "String"
6776
+ }
6777
+ },
6778
+ size: {
6779
+ serializedName: "size",
6780
+ type: {
6781
+ name: "Number"
6782
+ }
6783
+ }
6784
+ }
6785
+ }
6786
+ };
6787
+
6788
+ export const ScriptActivityTypePropertiesLogSettings: coreClient.CompositeMapper = {
6789
+ type: {
6790
+ name: "Composite",
6791
+ className: "ScriptActivityTypePropertiesLogSettings",
6792
+ modelProperties: {
6793
+ logDestination: {
6794
+ serializedName: "logDestination",
6795
+ required: true,
6796
+ type: {
6797
+ name: "String"
6798
+ }
6799
+ },
6800
+ logLocationSettings: {
6801
+ serializedName: "logLocationSettings",
6802
+ type: {
6803
+ name: "Composite",
6804
+ className: "LogLocationSettings"
6805
+ }
6806
+ }
6807
+ }
6808
+ }
6809
+ };
6810
+
6711
6811
  export const ScheduleTriggerRecurrence: coreClient.CompositeMapper = {
6712
6812
  type: {
6713
6813
  name: "Composite",
@@ -10873,6 +10973,184 @@ export const AmazonS3LinkedService: coreClient.CompositeMapper = {
10873
10973
  }
10874
10974
  };
10875
10975
 
10976
+ export const TeamDeskLinkedService: coreClient.CompositeMapper = {
10977
+ serializedName: "TeamDesk",
10978
+ type: {
10979
+ name: "Composite",
10980
+ className: "TeamDeskLinkedService",
10981
+ uberParent: "LinkedService",
10982
+ additionalProperties: { type: { name: "Object" } },
10983
+ polymorphicDiscriminator: LinkedService.type.polymorphicDiscriminator,
10984
+ modelProperties: {
10985
+ ...LinkedService.type.modelProperties,
10986
+ authenticationType: {
10987
+ serializedName: "typeProperties.authenticationType",
10988
+ required: true,
10989
+ type: {
10990
+ name: "String"
10991
+ }
10992
+ },
10993
+ url: {
10994
+ serializedName: "typeProperties.url",
10995
+ required: true,
10996
+ type: {
10997
+ name: "Dictionary",
10998
+ value: { type: { name: "any" } }
10999
+ }
11000
+ },
11001
+ userName: {
11002
+ serializedName: "typeProperties.userName",
11003
+ type: {
11004
+ name: "Dictionary",
11005
+ value: { type: { name: "any" } }
11006
+ }
11007
+ },
11008
+ password: {
11009
+ serializedName: "typeProperties.password",
11010
+ type: {
11011
+ name: "Composite",
11012
+ className: "SecretBase"
11013
+ }
11014
+ },
11015
+ apiToken: {
11016
+ serializedName: "typeProperties.apiToken",
11017
+ type: {
11018
+ name: "Composite",
11019
+ className: "SecretBase"
11020
+ }
11021
+ },
11022
+ encryptedCredential: {
11023
+ serializedName: "typeProperties.encryptedCredential",
11024
+ type: {
11025
+ name: "Dictionary",
11026
+ value: { type: { name: "any" } }
11027
+ }
11028
+ }
11029
+ }
11030
+ }
11031
+ };
11032
+
11033
+ export const QuickbaseLinkedService: coreClient.CompositeMapper = {
11034
+ serializedName: "Quickbase",
11035
+ type: {
11036
+ name: "Composite",
11037
+ className: "QuickbaseLinkedService",
11038
+ uberParent: "LinkedService",
11039
+ additionalProperties: { type: { name: "Object" } },
11040
+ polymorphicDiscriminator: LinkedService.type.polymorphicDiscriminator,
11041
+ modelProperties: {
11042
+ ...LinkedService.type.modelProperties,
11043
+ url: {
11044
+ serializedName: "typeProperties.url",
11045
+ required: true,
11046
+ type: {
11047
+ name: "Dictionary",
11048
+ value: { type: { name: "any" } }
11049
+ }
11050
+ },
11051
+ userToken: {
11052
+ serializedName: "typeProperties.userToken",
11053
+ type: {
11054
+ name: "Composite",
11055
+ className: "SecretBase"
11056
+ }
11057
+ },
11058
+ encryptedCredential: {
11059
+ serializedName: "typeProperties.encryptedCredential",
11060
+ type: {
11061
+ name: "Dictionary",
11062
+ value: { type: { name: "any" } }
11063
+ }
11064
+ }
11065
+ }
11066
+ }
11067
+ };
11068
+
11069
+ export const SmartsheetLinkedService: coreClient.CompositeMapper = {
11070
+ serializedName: "Smartsheet",
11071
+ type: {
11072
+ name: "Composite",
11073
+ className: "SmartsheetLinkedService",
11074
+ uberParent: "LinkedService",
11075
+ additionalProperties: { type: { name: "Object" } },
11076
+ polymorphicDiscriminator: LinkedService.type.polymorphicDiscriminator,
11077
+ modelProperties: {
11078
+ ...LinkedService.type.modelProperties,
11079
+ apiToken: {
11080
+ serializedName: "typeProperties.apiToken",
11081
+ type: {
11082
+ name: "Composite",
11083
+ className: "SecretBase"
11084
+ }
11085
+ },
11086
+ encryptedCredential: {
11087
+ serializedName: "typeProperties.encryptedCredential",
11088
+ type: {
11089
+ name: "Dictionary",
11090
+ value: { type: { name: "any" } }
11091
+ }
11092
+ }
11093
+ }
11094
+ }
11095
+ };
11096
+
11097
+ export const ZendeskLinkedService: coreClient.CompositeMapper = {
11098
+ serializedName: "Zendesk",
11099
+ type: {
11100
+ name: "Composite",
11101
+ className: "ZendeskLinkedService",
11102
+ uberParent: "LinkedService",
11103
+ additionalProperties: { type: { name: "Object" } },
11104
+ polymorphicDiscriminator: LinkedService.type.polymorphicDiscriminator,
11105
+ modelProperties: {
11106
+ ...LinkedService.type.modelProperties,
11107
+ authenticationType: {
11108
+ serializedName: "typeProperties.authenticationType",
11109
+ required: true,
11110
+ type: {
11111
+ name: "String"
11112
+ }
11113
+ },
11114
+ url: {
11115
+ serializedName: "typeProperties.url",
11116
+ required: true,
11117
+ type: {
11118
+ name: "Dictionary",
11119
+ value: { type: { name: "any" } }
11120
+ }
11121
+ },
11122
+ userName: {
11123
+ serializedName: "typeProperties.userName",
11124
+ type: {
11125
+ name: "Dictionary",
11126
+ value: { type: { name: "any" } }
11127
+ }
11128
+ },
11129
+ password: {
11130
+ serializedName: "typeProperties.password",
11131
+ type: {
11132
+ name: "Composite",
11133
+ className: "SecretBase"
11134
+ }
11135
+ },
11136
+ apiToken: {
11137
+ serializedName: "typeProperties.apiToken",
11138
+ type: {
11139
+ name: "Composite",
11140
+ className: "SecretBase"
11141
+ }
11142
+ },
11143
+ encryptedCredential: {
11144
+ serializedName: "typeProperties.encryptedCredential",
11145
+ type: {
11146
+ name: "Dictionary",
11147
+ value: { type: { name: "any" } }
11148
+ }
11149
+ }
11150
+ }
11151
+ }
11152
+ };
11153
+
10876
11154
  export const AmazonRedshiftLinkedService: coreClient.CompositeMapper = {
10877
11155
  serializedName: "AmazonRedshift",
10878
11156
  type: {
@@ -25115,6 +25393,39 @@ export const ExecuteDataFlowActivity: coreClient.CompositeMapper = {
25115
25393
  }
25116
25394
  };
25117
25395
 
25396
+ export const ScriptActivity: coreClient.CompositeMapper = {
25397
+ serializedName: "Script",
25398
+ type: {
25399
+ name: "Composite",
25400
+ className: "ScriptActivity",
25401
+ uberParent: "Activity",
25402
+ additionalProperties: { type: { name: "Object" } },
25403
+ polymorphicDiscriminator: Activity.type.polymorphicDiscriminator,
25404
+ modelProperties: {
25405
+ ...ExecutionActivity.type.modelProperties,
25406
+ scripts: {
25407
+ serializedName: "typeProperties.scripts",
25408
+ type: {
25409
+ name: "Sequence",
25410
+ element: {
25411
+ type: {
25412
+ name: "Composite",
25413
+ className: "ScriptActivityScriptBlock"
25414
+ }
25415
+ }
25416
+ }
25417
+ },
25418
+ logSettings: {
25419
+ serializedName: "typeProperties.logSettings",
25420
+ type: {
25421
+ name: "Composite",
25422
+ className: "ScriptActivityTypePropertiesLogSettings"
25423
+ }
25424
+ }
25425
+ }
25426
+ }
25427
+ };
25428
+
25118
25429
  export const ScheduleTrigger: coreClient.CompositeMapper = {
25119
25430
  serializedName: "ScheduleTrigger",
25120
25431
  type: {
@@ -27062,6 +27373,10 @@ export let discriminators = {
27062
27373
  "LinkedService.SapOpenHub": SapOpenHubLinkedService,
27063
27374
  "LinkedService.RestService": RestServiceLinkedService,
27064
27375
  "LinkedService.AmazonS3": AmazonS3LinkedService,
27376
+ "LinkedService.TeamDesk": TeamDeskLinkedService,
27377
+ "LinkedService.Quickbase": QuickbaseLinkedService,
27378
+ "LinkedService.Smartsheet": SmartsheetLinkedService,
27379
+ "LinkedService.Zendesk": ZendeskLinkedService,
27065
27380
  "LinkedService.AmazonRedshift": AmazonRedshiftLinkedService,
27066
27381
  "LinkedService.CustomDataSource": CustomDataSourceLinkedService,
27067
27382
  "LinkedService.AzureSearch": AzureSearchLinkedService,
@@ -27398,6 +27713,7 @@ export let discriminators = {
27398
27713
  "Activity.DatabricksSparkPython": DatabricksSparkPythonActivity,
27399
27714
  "Activity.AzureFunctionActivity": AzureFunctionActivity,
27400
27715
  "Activity.ExecuteDataFlow": ExecuteDataFlowActivity,
27716
+ "Activity.Script": ScriptActivity,
27401
27717
  "Trigger.ScheduleTrigger": ScheduleTrigger,
27402
27718
  "Trigger.BlobTrigger": BlobTrigger,
27403
27719
  "Trigger.BlobEventsTrigger": BlobEventsTrigger,
package/tsconfig.json CHANGED
@@ -9,11 +9,19 @@
9
9
  "esModuleInterop": true,
10
10
  "allowSyntheticDefaultImports": true,
11
11
  "forceConsistentCasingInFileNames": true,
12
- "lib": ["es6", "dom"],
12
+ "lib": [
13
+ "es6",
14
+ "dom"
15
+ ],
13
16
  "declaration": true,
14
17
  "outDir": "./dist-esm",
15
18
  "importHelpers": true
16
19
  },
17
- "include": ["./src/**/*.ts", "./test/**/*.ts"],
18
- "exclude": ["node_modules"]
19
- }
20
+ "include": [
21
+ "./src/**/*.ts",
22
+ "./test/**/*.ts"
23
+ ],
24
+ "exclude": [
25
+ "node_modules"
26
+ ]
27
+ }