@azure/arm-datafactory 14.0.0 → 14.1.0-alpha.20240315.1

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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,31 @@
1
1
  # Release History
2
2
 
3
+ ## 14.1.0 (2024-03-11)
4
+
5
+ **Features**
6
+
7
+ - Added Interface ExpressionV2
8
+ - Added Interface GoogleBigQueryV2LinkedService
9
+ - Added Interface GoogleBigQueryV2ObjectDataset
10
+ - Added Interface GoogleBigQueryV2Source
11
+ - Added Interface PostgreSqlV2LinkedService
12
+ - Added Interface PostgreSqlV2Source
13
+ - Added Interface PostgreSqlV2TableDataset
14
+ - Added Interface ServiceNowV2LinkedService
15
+ - Added Interface ServiceNowV2ObjectDataset
16
+ - Added Interface ServiceNowV2Source
17
+ - Added Type Alias ExpressionV2Type
18
+ - Added Type Alias GoogleBigQueryV2AuthenticationType
19
+ - Added Type Alias ServiceNowV2AuthenticationType
20
+ - Type of parameter type of interface CopySource has four new values "PostgreSqlV2Source" | "GoogleBigQueryV2Source" | "GreenplumSource" | "ServiceNowV2Source"
21
+ - Type of parameter type of interface Dataset has four new values "PostgreSqlV2Source" | "GoogleBigQueryV2Source" | "GreenplumSource" | "ServiceNowV2Source"
22
+ - Type of parameter type of interface LinkedService has three new values "PostgreSqlV2" | "GoogleBigQueryV2" | "ServiceNowV2"
23
+ - Type of parameter type of interface TabularSource has four new values "PostgreSqlV2Source" | "GoogleBigQueryV2Source" | "GreenplumSource" | "ServiceNowV2Source"
24
+ - Added Enum KnownExpressionV2Type
25
+ - Added Enum KnownGoogleBigQueryV2AuthenticationType
26
+ - Added Enum KnownServiceNowV2AuthenticationType
27
+
28
+
3
29
  ## 14.0.0 (2024-02-04)
4
30
 
5
31
  **Features**
package/dist/index.js CHANGED
@@ -650,6 +650,14 @@ exports.KnownGoogleBigQueryAuthenticationType = void 0;
650
650
  /** UserAuthentication */
651
651
  KnownGoogleBigQueryAuthenticationType["UserAuthentication"] = "UserAuthentication";
652
652
  })(exports.KnownGoogleBigQueryAuthenticationType || (exports.KnownGoogleBigQueryAuthenticationType = {}));
653
+ /** Known values of {@link GoogleBigQueryV2AuthenticationType} that the service accepts. */
654
+ exports.KnownGoogleBigQueryV2AuthenticationType = void 0;
655
+ (function (KnownGoogleBigQueryV2AuthenticationType) {
656
+ /** ServiceAuthentication */
657
+ KnownGoogleBigQueryV2AuthenticationType["ServiceAuthentication"] = "ServiceAuthentication";
658
+ /** UserAuthentication */
659
+ KnownGoogleBigQueryV2AuthenticationType["UserAuthentication"] = "UserAuthentication";
660
+ })(exports.KnownGoogleBigQueryV2AuthenticationType || (exports.KnownGoogleBigQueryV2AuthenticationType = {}));
653
661
  /** Known values of {@link HBaseAuthenticationType} that the service accepts. */
654
662
  exports.KnownHBaseAuthenticationType = void 0;
655
663
  (function (KnownHBaseAuthenticationType) {
@@ -776,6 +784,14 @@ exports.KnownSnowflakeAuthenticationType = void 0;
776
784
  /** AADServicePrincipal */
777
785
  KnownSnowflakeAuthenticationType["AADServicePrincipal"] = "AADServicePrincipal";
778
786
  })(exports.KnownSnowflakeAuthenticationType || (exports.KnownSnowflakeAuthenticationType = {}));
787
+ /** Known values of {@link ServiceNowV2AuthenticationType} that the service accepts. */
788
+ exports.KnownServiceNowV2AuthenticationType = void 0;
789
+ (function (KnownServiceNowV2AuthenticationType) {
790
+ /** Basic */
791
+ KnownServiceNowV2AuthenticationType["Basic"] = "Basic";
792
+ /** OAuth2 */
793
+ KnownServiceNowV2AuthenticationType["OAuth2"] = "OAuth2";
794
+ })(exports.KnownServiceNowV2AuthenticationType || (exports.KnownServiceNowV2AuthenticationType = {}));
779
795
  /** Known values of {@link CassandraSourceReadConsistencyLevels} that the service accepts. */
780
796
  exports.KnownCassandraSourceReadConsistencyLevels = void 0;
781
797
  (function (KnownCassandraSourceReadConsistencyLevels) {
@@ -1028,6 +1044,18 @@ exports.KnownSalesforceV2SinkWriteBehavior = void 0;
1028
1044
  /** Upsert */
1029
1045
  KnownSalesforceV2SinkWriteBehavior["Upsert"] = "Upsert";
1030
1046
  })(exports.KnownSalesforceV2SinkWriteBehavior || (exports.KnownSalesforceV2SinkWriteBehavior = {}));
1047
+ /** Known values of {@link ExpressionV2Type} that the service accepts. */
1048
+ exports.KnownExpressionV2Type = void 0;
1049
+ (function (KnownExpressionV2Type) {
1050
+ /** Constant */
1051
+ KnownExpressionV2Type["Constant"] = "Constant";
1052
+ /** Field */
1053
+ KnownExpressionV2Type["Field"] = "Field";
1054
+ /** Unary */
1055
+ KnownExpressionV2Type["Unary"] = "Unary";
1056
+ /** Binary */
1057
+ KnownExpressionV2Type["Binary"] = "Binary";
1058
+ })(exports.KnownExpressionV2Type || (exports.KnownExpressionV2Type = {}));
1031
1059
  /** Known values of {@link RecurrenceFrequency} that the service accepts. */
1032
1060
  exports.KnownRecurrenceFrequency = void 0;
1033
1061
  (function (KnownRecurrenceFrequency) {
@@ -8571,6 +8599,44 @@ const SynapseSparkJobReference = {
8571
8599
  },
8572
8600
  },
8573
8601
  };
8602
+ const ExpressionV2 = {
8603
+ type: {
8604
+ name: "Composite",
8605
+ className: "ExpressionV2",
8606
+ modelProperties: {
8607
+ type: {
8608
+ serializedName: "type",
8609
+ type: {
8610
+ name: "String",
8611
+ },
8612
+ },
8613
+ value: {
8614
+ serializedName: "value",
8615
+ type: {
8616
+ name: "String",
8617
+ },
8618
+ },
8619
+ operator: {
8620
+ serializedName: "operator",
8621
+ type: {
8622
+ name: "String",
8623
+ },
8624
+ },
8625
+ operands: {
8626
+ serializedName: "operands",
8627
+ type: {
8628
+ name: "Sequence",
8629
+ element: {
8630
+ type: {
8631
+ name: "Composite",
8632
+ className: "ExpressionV2",
8633
+ },
8634
+ },
8635
+ },
8636
+ },
8637
+ },
8638
+ },
8639
+ };
8574
8640
  const ScheduleTriggerRecurrence = {
8575
8641
  type: {
8576
8642
  name: "Composite",
@@ -10786,6 +10852,117 @@ const PostgreSqlLinkedService = {
10786
10852
  } }),
10787
10853
  },
10788
10854
  };
10855
+ const PostgreSqlV2LinkedService = {
10856
+ serializedName: "PostgreSqlV2",
10857
+ type: {
10858
+ name: "Composite",
10859
+ className: "PostgreSqlV2LinkedService",
10860
+ uberParent: "LinkedService",
10861
+ additionalProperties: { type: { name: "Object" } },
10862
+ polymorphicDiscriminator: LinkedService.type.polymorphicDiscriminator,
10863
+ modelProperties: Object.assign(Object.assign({}, LinkedService.type.modelProperties), { server: {
10864
+ serializedName: "typeProperties.server",
10865
+ required: true,
10866
+ type: {
10867
+ name: "any",
10868
+ },
10869
+ }, port: {
10870
+ serializedName: "typeProperties.port",
10871
+ type: {
10872
+ name: "any",
10873
+ },
10874
+ }, username: {
10875
+ serializedName: "typeProperties.username",
10876
+ required: true,
10877
+ type: {
10878
+ name: "any",
10879
+ },
10880
+ }, database: {
10881
+ serializedName: "typeProperties.database",
10882
+ required: true,
10883
+ type: {
10884
+ name: "any",
10885
+ },
10886
+ }, sslMode: {
10887
+ serializedName: "typeProperties.sslMode",
10888
+ required: true,
10889
+ type: {
10890
+ name: "any",
10891
+ },
10892
+ }, schema: {
10893
+ serializedName: "typeProperties.schema",
10894
+ type: {
10895
+ name: "any",
10896
+ },
10897
+ }, pooling: {
10898
+ serializedName: "typeProperties.pooling",
10899
+ type: {
10900
+ name: "any",
10901
+ },
10902
+ }, connectionTimeout: {
10903
+ serializedName: "typeProperties.connectionTimeout",
10904
+ type: {
10905
+ name: "any",
10906
+ },
10907
+ }, commandTimeout: {
10908
+ serializedName: "typeProperties.commandTimeout",
10909
+ type: {
10910
+ name: "any",
10911
+ },
10912
+ }, trustServerCertificate: {
10913
+ serializedName: "typeProperties.trustServerCertificate",
10914
+ type: {
10915
+ name: "any",
10916
+ },
10917
+ }, sslCertificate: {
10918
+ serializedName: "typeProperties.sslCertificate",
10919
+ type: {
10920
+ name: "any",
10921
+ },
10922
+ }, sslKey: {
10923
+ serializedName: "typeProperties.sslKey",
10924
+ type: {
10925
+ name: "any",
10926
+ },
10927
+ }, sslPassword: {
10928
+ serializedName: "typeProperties.sslPassword",
10929
+ type: {
10930
+ name: "any",
10931
+ },
10932
+ }, readBufferSize: {
10933
+ serializedName: "typeProperties.readBufferSize",
10934
+ type: {
10935
+ name: "any",
10936
+ },
10937
+ }, logParameters: {
10938
+ serializedName: "typeProperties.logParameters",
10939
+ type: {
10940
+ name: "any",
10941
+ },
10942
+ }, timezone: {
10943
+ serializedName: "typeProperties.timezone",
10944
+ type: {
10945
+ name: "any",
10946
+ },
10947
+ }, encoding: {
10948
+ serializedName: "typeProperties.encoding",
10949
+ type: {
10950
+ name: "any",
10951
+ },
10952
+ }, password: {
10953
+ serializedName: "typeProperties.password",
10954
+ type: {
10955
+ name: "Composite",
10956
+ className: "AzureKeyVaultSecretReference",
10957
+ },
10958
+ }, encryptedCredential: {
10959
+ serializedName: "typeProperties.encryptedCredential",
10960
+ type: {
10961
+ name: "String",
10962
+ },
10963
+ } }),
10964
+ },
10965
+ };
10789
10966
  const SybaseLinkedService = {
10790
10967
  serializedName: "Sybase",
10791
10968
  type: {
@@ -13098,6 +13275,57 @@ const GoogleBigQueryLinkedService = {
13098
13275
  } }),
13099
13276
  },
13100
13277
  };
13278
+ const GoogleBigQueryV2LinkedService = {
13279
+ serializedName: "GoogleBigQueryV2",
13280
+ type: {
13281
+ name: "Composite",
13282
+ className: "GoogleBigQueryV2LinkedService",
13283
+ uberParent: "LinkedService",
13284
+ additionalProperties: { type: { name: "Object" } },
13285
+ polymorphicDiscriminator: LinkedService.type.polymorphicDiscriminator,
13286
+ modelProperties: Object.assign(Object.assign({}, LinkedService.type.modelProperties), { projectId: {
13287
+ serializedName: "typeProperties.projectId",
13288
+ required: true,
13289
+ type: {
13290
+ name: "any",
13291
+ },
13292
+ }, authenticationType: {
13293
+ serializedName: "typeProperties.authenticationType",
13294
+ required: true,
13295
+ type: {
13296
+ name: "String",
13297
+ },
13298
+ }, clientId: {
13299
+ serializedName: "typeProperties.clientId",
13300
+ type: {
13301
+ name: "any",
13302
+ },
13303
+ }, clientSecret: {
13304
+ serializedName: "typeProperties.clientSecret",
13305
+ type: {
13306
+ name: "Composite",
13307
+ className: "SecretBase",
13308
+ },
13309
+ }, refreshToken: {
13310
+ serializedName: "typeProperties.refreshToken",
13311
+ type: {
13312
+ name: "Composite",
13313
+ className: "SecretBase",
13314
+ },
13315
+ }, keyFileContent: {
13316
+ serializedName: "typeProperties.keyFileContent",
13317
+ type: {
13318
+ name: "Composite",
13319
+ className: "SecretBase",
13320
+ },
13321
+ }, encryptedCredential: {
13322
+ serializedName: "typeProperties.encryptedCredential",
13323
+ type: {
13324
+ name: "String",
13325
+ },
13326
+ } }),
13327
+ },
13328
+ };
13101
13329
  const GreenplumLinkedService = {
13102
13330
  serializedName: "Greenplum",
13103
13331
  type: {
@@ -15572,6 +15800,61 @@ const WarehouseLinkedService = {
15572
15800
  } }),
15573
15801
  },
15574
15802
  };
15803
+ const ServiceNowV2LinkedService = {
15804
+ serializedName: "ServiceNowV2",
15805
+ type: {
15806
+ name: "Composite",
15807
+ className: "ServiceNowV2LinkedService",
15808
+ uberParent: "LinkedService",
15809
+ additionalProperties: { type: { name: "Object" } },
15810
+ polymorphicDiscriminator: LinkedService.type.polymorphicDiscriminator,
15811
+ modelProperties: Object.assign(Object.assign({}, LinkedService.type.modelProperties), { endpoint: {
15812
+ serializedName: "typeProperties.endpoint",
15813
+ required: true,
15814
+ type: {
15815
+ name: "any",
15816
+ },
15817
+ }, authenticationType: {
15818
+ serializedName: "typeProperties.authenticationType",
15819
+ required: true,
15820
+ type: {
15821
+ name: "String",
15822
+ },
15823
+ }, username: {
15824
+ serializedName: "typeProperties.username",
15825
+ type: {
15826
+ name: "any",
15827
+ },
15828
+ }, password: {
15829
+ serializedName: "typeProperties.password",
15830
+ type: {
15831
+ name: "Composite",
15832
+ className: "SecretBase",
15833
+ },
15834
+ }, clientId: {
15835
+ serializedName: "typeProperties.clientId",
15836
+ type: {
15837
+ name: "any",
15838
+ },
15839
+ }, clientSecret: {
15840
+ serializedName: "typeProperties.clientSecret",
15841
+ type: {
15842
+ name: "Composite",
15843
+ className: "SecretBase",
15844
+ },
15845
+ }, grantType: {
15846
+ serializedName: "typeProperties.grantType",
15847
+ type: {
15848
+ name: "any",
15849
+ },
15850
+ }, encryptedCredential: {
15851
+ serializedName: "typeProperties.encryptedCredential",
15852
+ type: {
15853
+ name: "String",
15854
+ },
15855
+ } }),
15856
+ },
15857
+ };
15575
15858
  const AmazonS3Dataset = {
15576
15859
  serializedName: "AmazonS3Object",
15577
15860
  type: {
@@ -16608,6 +16891,27 @@ const PostgreSqlTableDataset = {
16608
16891
  } }),
16609
16892
  },
16610
16893
  };
16894
+ const PostgreSqlV2TableDataset = {
16895
+ serializedName: "PostgreSqlV2Table",
16896
+ type: {
16897
+ name: "Composite",
16898
+ className: "PostgreSqlV2TableDataset",
16899
+ uberParent: "Dataset",
16900
+ additionalProperties: { type: { name: "Object" } },
16901
+ polymorphicDiscriminator: Dataset.type.polymorphicDiscriminator,
16902
+ modelProperties: Object.assign(Object.assign({}, Dataset.type.modelProperties), { table: {
16903
+ serializedName: "typeProperties.table",
16904
+ type: {
16905
+ name: "any",
16906
+ },
16907
+ }, schemaTypePropertiesSchema: {
16908
+ serializedName: "typeProperties.schema",
16909
+ type: {
16910
+ name: "any",
16911
+ },
16912
+ } }),
16913
+ },
16914
+ };
16611
16915
  const MicrosoftAccessTableDataset = {
16612
16916
  serializedName: "MicrosoftAccessTable",
16613
16917
  type: {
@@ -17114,6 +17418,27 @@ const GoogleBigQueryObjectDataset = {
17114
17418
  } }),
17115
17419
  },
17116
17420
  };
17421
+ const GoogleBigQueryV2ObjectDataset = {
17422
+ serializedName: "GoogleBigQueryV2Object",
17423
+ type: {
17424
+ name: "Composite",
17425
+ className: "GoogleBigQueryV2ObjectDataset",
17426
+ uberParent: "Dataset",
17427
+ additionalProperties: { type: { name: "Object" } },
17428
+ polymorphicDiscriminator: Dataset.type.polymorphicDiscriminator,
17429
+ modelProperties: Object.assign(Object.assign({}, Dataset.type.modelProperties), { table: {
17430
+ serializedName: "typeProperties.table",
17431
+ type: {
17432
+ name: "any",
17433
+ },
17434
+ }, dataset: {
17435
+ serializedName: "typeProperties.dataset",
17436
+ type: {
17437
+ name: "any",
17438
+ },
17439
+ } }),
17440
+ },
17441
+ };
17117
17442
  const GreenplumTableDataset = {
17118
17443
  serializedName: "GreenplumTable",
17119
17444
  type: {
@@ -17801,6 +18126,22 @@ const WarehouseTableDataset = {
17801
18126
  } }),
17802
18127
  },
17803
18128
  };
18129
+ const ServiceNowV2ObjectDataset = {
18130
+ serializedName: "ServiceNowV2Object",
18131
+ type: {
18132
+ name: "Composite",
18133
+ className: "ServiceNowV2ObjectDataset",
18134
+ uberParent: "Dataset",
18135
+ additionalProperties: { type: { name: "Object" } },
18136
+ polymorphicDiscriminator: Dataset.type.polymorphicDiscriminator,
18137
+ modelProperties: Object.assign(Object.assign({}, Dataset.type.modelProperties), { tableName: {
18138
+ serializedName: "typeProperties.tableName",
18139
+ type: {
18140
+ name: "any",
18141
+ },
18142
+ } }),
18143
+ },
18144
+ };
17804
18145
  const ControlActivity = {
17805
18146
  serializedName: "Container",
17806
18147
  type: {
@@ -24640,6 +24981,22 @@ const PostgreSqlSource = {
24640
24981
  } }),
24641
24982
  },
24642
24983
  };
24984
+ const PostgreSqlV2Source = {
24985
+ serializedName: "PostgreSqlV2Source",
24986
+ type: {
24987
+ name: "Composite",
24988
+ className: "PostgreSqlV2Source",
24989
+ uberParent: "TabularSource",
24990
+ additionalProperties: { type: { name: "Object" } },
24991
+ polymorphicDiscriminator: TabularSource.type.polymorphicDiscriminator,
24992
+ modelProperties: Object.assign(Object.assign({}, TabularSource.type.modelProperties), { query: {
24993
+ serializedName: "query",
24994
+ type: {
24995
+ name: "any",
24996
+ },
24997
+ } }),
24998
+ },
24999
+ };
24643
25000
  const SybaseSource = {
24644
25001
  serializedName: "SybaseSource",
24645
25002
  type: {
@@ -25334,6 +25691,22 @@ const GoogleBigQuerySource = {
25334
25691
  } }),
25335
25692
  },
25336
25693
  };
25694
+ const GoogleBigQueryV2Source = {
25695
+ serializedName: "GoogleBigQueryV2Source",
25696
+ type: {
25697
+ name: "Composite",
25698
+ className: "GoogleBigQueryV2Source",
25699
+ uberParent: "TabularSource",
25700
+ additionalProperties: { type: { name: "Object" } },
25701
+ polymorphicDiscriminator: TabularSource.type.polymorphicDiscriminator,
25702
+ modelProperties: Object.assign(Object.assign({}, TabularSource.type.modelProperties), { query: {
25703
+ serializedName: "query",
25704
+ type: {
25705
+ name: "any",
25706
+ },
25707
+ } }),
25708
+ },
25709
+ };
25337
25710
  const GreenplumSource = {
25338
25711
  serializedName: "GreenplumSource",
25339
25712
  type: {
@@ -25867,6 +26240,23 @@ const SalesforceV2Source = {
25867
26240
  } }),
25868
26241
  },
25869
26242
  };
26243
+ const ServiceNowV2Source = {
26244
+ serializedName: "ServiceNowV2Source",
26245
+ type: {
26246
+ name: "Composite",
26247
+ className: "ServiceNowV2Source",
26248
+ uberParent: "TabularSource",
26249
+ additionalProperties: { type: { name: "Object" } },
26250
+ polymorphicDiscriminator: TabularSource.type.polymorphicDiscriminator,
26251
+ modelProperties: Object.assign(Object.assign({}, TabularSource.type.modelProperties), { expression: {
26252
+ serializedName: "expression",
26253
+ type: {
26254
+ name: "Composite",
26255
+ className: "ExpressionV2",
26256
+ },
26257
+ } }),
26258
+ },
26259
+ };
25870
26260
  const TumblingWindowTriggerDependencyReference = {
25871
26261
  serializedName: "TumblingWindowTriggerDependencyReference",
25872
26262
  type: {
@@ -25988,6 +26378,7 @@ let discriminators = {
25988
26378
  "LinkedService.AzureMySql": AzureMySqlLinkedService,
25989
26379
  "LinkedService.MySql": MySqlLinkedService,
25990
26380
  "LinkedService.PostgreSql": PostgreSqlLinkedService,
26381
+ "LinkedService.PostgreSqlV2": PostgreSqlV2LinkedService,
25991
26382
  "LinkedService.Sybase": SybaseLinkedService,
25992
26383
  "LinkedService.Db2": Db2LinkedService,
25993
26384
  "LinkedService.Teradata": TeradataLinkedService,
@@ -26039,6 +26430,7 @@ let discriminators = {
26039
26430
  "LinkedService.Drill": DrillLinkedService,
26040
26431
  "LinkedService.Eloqua": EloquaLinkedService,
26041
26432
  "LinkedService.GoogleBigQuery": GoogleBigQueryLinkedService,
26433
+ "LinkedService.GoogleBigQueryV2": GoogleBigQueryV2LinkedService,
26042
26434
  "LinkedService.Greenplum": GreenplumLinkedService,
26043
26435
  "LinkedService.HBase": HBaseLinkedService,
26044
26436
  "LinkedService.Hive": HiveLinkedService,
@@ -26081,6 +26473,7 @@ let discriminators = {
26081
26473
  "LinkedService.SalesforceV2": SalesforceV2LinkedService,
26082
26474
  "LinkedService.SalesforceServiceCloudV2": SalesforceServiceCloudV2LinkedService,
26083
26475
  "LinkedService.Warehouse": WarehouseLinkedService,
26476
+ "LinkedService.ServiceNowV2": ServiceNowV2LinkedService,
26084
26477
  "Dataset.AmazonS3Object": AmazonS3Dataset,
26085
26478
  "Dataset.Avro": AvroDataset,
26086
26479
  "Dataset.Excel": ExcelDataset,
@@ -26122,6 +26515,7 @@ let discriminators = {
26122
26515
  "Dataset.OdbcTable": OdbcTableDataset,
26123
26516
  "Dataset.MySqlTable": MySqlTableDataset,
26124
26517
  "Dataset.PostgreSqlTable": PostgreSqlTableDataset,
26518
+ "Dataset.PostgreSqlV2Table": PostgreSqlV2TableDataset,
26125
26519
  "Dataset.MicrosoftAccessTable": MicrosoftAccessTableDataset,
26126
26520
  "Dataset.SalesforceObject": SalesforceObjectDataset,
26127
26521
  "Dataset.SalesforceServiceCloudObject": SalesforceServiceCloudObjectDataset,
@@ -26146,6 +26540,7 @@ let discriminators = {
26146
26540
  "Dataset.DrillTable": DrillTableDataset,
26147
26541
  "Dataset.EloquaObject": EloquaObjectDataset,
26148
26542
  "Dataset.GoogleBigQueryObject": GoogleBigQueryObjectDataset,
26543
+ "Dataset.GoogleBigQueryV2Object": GoogleBigQueryV2ObjectDataset,
26149
26544
  "Dataset.GreenplumTable": GreenplumTableDataset,
26150
26545
  "Dataset.HBaseObject": HBaseObjectDataset,
26151
26546
  "Dataset.HiveObject": HiveObjectDataset,
@@ -26182,6 +26577,7 @@ let discriminators = {
26182
26577
  "Dataset.SalesforceV2Object": SalesforceV2ObjectDataset,
26183
26578
  "Dataset.SalesforceServiceCloudV2Object": SalesforceServiceCloudV2ObjectDataset,
26184
26579
  "Dataset.WarehouseTable": WarehouseTableDataset,
26580
+ "Dataset.ServiceNowV2Object": ServiceNowV2ObjectDataset,
26185
26581
  "Activity.Container": ControlActivity,
26186
26582
  "Activity.Execution": ExecutionActivity,
26187
26583
  "Activity.ExecuteWranglingDataflow": ExecuteWranglingDataflowActivity,
@@ -26397,6 +26793,7 @@ let discriminators = {
26397
26793
  "TabularSource.OdbcSource": OdbcSource,
26398
26794
  "TabularSource.MySqlSource": MySqlSource,
26399
26795
  "TabularSource.PostgreSqlSource": PostgreSqlSource,
26796
+ "TabularSource.PostgreSqlV2Source": PostgreSqlV2Source,
26400
26797
  "TabularSource.SybaseSource": SybaseSource,
26401
26798
  "TabularSource.SapBwSource": SapBwSource,
26402
26799
  "TabularSource.SalesforceSource": SalesforceSource,
@@ -26422,6 +26819,7 @@ let discriminators = {
26422
26819
  "TabularSource.DrillSource": DrillSource,
26423
26820
  "TabularSource.EloquaSource": EloquaSource,
26424
26821
  "TabularSource.GoogleBigQuerySource": GoogleBigQuerySource,
26822
+ "TabularSource.GoogleBigQueryV2Source": GoogleBigQueryV2Source,
26425
26823
  "TabularSource.GreenplumSource": GreenplumSource,
26426
26824
  "TabularSource.HBaseSource": HBaseSource,
26427
26825
  "TabularSource.HiveSource": HiveSource,
@@ -26452,6 +26850,7 @@ let discriminators = {
26452
26850
  "TabularSource.AmazonRedshiftSource": AmazonRedshiftSource,
26453
26851
  "TabularSource.WarehouseSource": WarehouseSource,
26454
26852
  "TabularSource.SalesforceV2Source": SalesforceV2Source,
26853
+ "TabularSource.ServiceNowV2Source": ServiceNowV2Source,
26455
26854
  "TriggerDependencyReference.TumblingWindowTriggerDependencyReference": TumblingWindowTriggerDependencyReference,
26456
26855
  };
26457
26856
 
@@ -26721,6 +27120,7 @@ var Mappers = /*#__PURE__*/Object.freeze({
26721
27120
  ExposureControlRequest: ExposureControlRequest,
26722
27121
  ExposureControlResponse: ExposureControlResponse,
26723
27122
  Expression: Expression,
27123
+ ExpressionV2: ExpressionV2,
26724
27124
  Factory: Factory,
26725
27125
  FactoryGitHubConfiguration: FactoryGitHubConfiguration,
26726
27126
  FactoryIdentity: FactoryIdentity,
@@ -26760,6 +27160,9 @@ var Mappers = /*#__PURE__*/Object.freeze({
26760
27160
  GoogleBigQueryLinkedService: GoogleBigQueryLinkedService,
26761
27161
  GoogleBigQueryObjectDataset: GoogleBigQueryObjectDataset,
26762
27162
  GoogleBigQuerySource: GoogleBigQuerySource,
27163
+ GoogleBigQueryV2LinkedService: GoogleBigQueryV2LinkedService,
27164
+ GoogleBigQueryV2ObjectDataset: GoogleBigQueryV2ObjectDataset,
27165
+ GoogleBigQueryV2Source: GoogleBigQueryV2Source,
26763
27166
  GoogleCloudStorageLinkedService: GoogleCloudStorageLinkedService,
26764
27167
  GoogleCloudStorageLocation: GoogleCloudStorageLocation,
26765
27168
  GoogleCloudStorageReadSettings: GoogleCloudStorageReadSettings,
@@ -26983,6 +27386,9 @@ var Mappers = /*#__PURE__*/Object.freeze({
26983
27386
  PostgreSqlLinkedService: PostgreSqlLinkedService,
26984
27387
  PostgreSqlSource: PostgreSqlSource,
26985
27388
  PostgreSqlTableDataset: PostgreSqlTableDataset,
27389
+ PostgreSqlV2LinkedService: PostgreSqlV2LinkedService,
27390
+ PostgreSqlV2Source: PostgreSqlV2Source,
27391
+ PostgreSqlV2TableDataset: PostgreSqlV2TableDataset,
26986
27392
  PowerQuerySink: PowerQuerySink,
26987
27393
  PowerQuerySinkMapping: PowerQuerySinkMapping,
26988
27394
  PowerQuerySource: PowerQuerySource,
@@ -27084,6 +27490,9 @@ var Mappers = /*#__PURE__*/Object.freeze({
27084
27490
  ServiceNowLinkedService: ServiceNowLinkedService,
27085
27491
  ServiceNowObjectDataset: ServiceNowObjectDataset,
27086
27492
  ServiceNowSource: ServiceNowSource,
27493
+ ServiceNowV2LinkedService: ServiceNowV2LinkedService,
27494
+ ServiceNowV2ObjectDataset: ServiceNowV2ObjectDataset,
27495
+ ServiceNowV2Source: ServiceNowV2Source,
27087
27496
  ServicePrincipalCredential: ServicePrincipalCredential,
27088
27497
  SetVariableActivity: SetVariableActivity,
27089
27498
  SftpLocation: SftpLocation,
@@ -33688,7 +34097,7 @@ class DataFactoryManagementClient extends coreClient__namespace.ServiceClient {
33688
34097
  requestContentType: "application/json; charset=utf-8",
33689
34098
  credential: credentials,
33690
34099
  };
33691
- const packageDetails = `azsdk-js-arm-datafactory/14.0.0`;
34100
+ const packageDetails = `azsdk-js-arm-datafactory/14.1.0`;
33692
34101
  const userAgentPrefix = options.userAgentOptions && options.userAgentOptions.userAgentPrefix
33693
34102
  ? `${options.userAgentOptions.userAgentPrefix} ${packageDetails}`
33694
34103
  : `${packageDetails}`;