@azure/arm-datafactory 17.0.1-alpha.20241218.1 → 18.0.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.
package/CHANGELOG.md CHANGED
@@ -1,15 +1,44 @@
1
1
  # Release History
2
-
3
- ## 17.0.1 (Unreleased)
4
-
2
+
3
+ ## 18.0.0 (2024-12-10)
4
+
5
5
  ### Features Added
6
6
 
7
- ### Breaking Changes
8
-
9
- ### Bugs Fixed
7
+ - Added Interface IcebergDataset
8
+ - Added Interface IcebergSink
9
+ - Added Interface IcebergWriteSettings
10
+ - Interface AzurePostgreSqlLinkedService has a new optional parameter commandTimeout
11
+ - Interface AzurePostgreSqlLinkedService has a new optional parameter database
12
+ - Interface AzurePostgreSqlLinkedService has a new optional parameter encoding
13
+ - Interface AzurePostgreSqlLinkedService has a new optional parameter port
14
+ - Interface AzurePostgreSqlLinkedService has a new optional parameter readBufferSize
15
+ - Interface AzurePostgreSqlLinkedService has a new optional parameter server
16
+ - Interface AzurePostgreSqlLinkedService has a new optional parameter sslMode
17
+ - Interface AzurePostgreSqlLinkedService has a new optional parameter timeout
18
+ - Interface AzurePostgreSqlLinkedService has a new optional parameter timezone
19
+ - Interface AzurePostgreSqlLinkedService has a new optional parameter trustServerCertificate
20
+ - Interface AzurePostgreSqlLinkedService has a new optional parameter username
21
+ - Interface MariaDBLinkedService has a new optional parameter sslMode
22
+ - Interface MariaDBLinkedService has a new optional parameter useSystemTrustStore
23
+ - Interface MySqlLinkedService has a new optional parameter allowZeroDateTime
24
+ - Interface MySqlLinkedService has a new optional parameter connectionTimeout
25
+ - Interface MySqlLinkedService has a new optional parameter convertZeroDateTime
26
+ - Interface MySqlLinkedService has a new optional parameter guidFormat
27
+ - Interface MySqlLinkedService has a new optional parameter sslCert
28
+ - Interface MySqlLinkedService has a new optional parameter sslKey
29
+ - Interface MySqlLinkedService has a new optional parameter treatTinyAsBoolean
30
+ - Interface SalesforceV2Source has a new optional parameter pageSize
31
+ - Interface ServiceNowV2Source has a new optional parameter pageSize
32
+ - Interface SnowflakeV2LinkedService has a new optional parameter host
33
+ - Type of parameter type of interface CopySink has a new parameter "IcebergSink"
34
+ - Type of parameter type of interface Dataset has a new parameter "IcebergSink"
35
+ - Type of parameter type of interface FormatWriteSettings has a new parameter "IcebergWriteSettings"
10
36
 
11
- ### Other Changes
37
+ ### Breaking Changes
12
38
 
39
+ - Interface PostgreSqlV2LinkedService has a new required parameter authenticationType
40
+
41
+
13
42
  ## 17.0.0 (2024-08-27)
14
43
 
15
44
  ### Features Added
package/README.md CHANGED
@@ -44,7 +44,6 @@ npm install @azure/identity
44
44
  ```
45
45
 
46
46
  You will also need to **register a new AAD application and grant access to Azure DataFactoryManagement** by assigning the suitable role to your service principal (note: roles such as `"Owner"` will not grant the necessary permissions).
47
- Set the values of the client ID, tenant ID, and client secret of the AAD application as environment variables: `AZURE_CLIENT_ID`, `AZURE_TENANT_ID`, `AZURE_CLIENT_SECRET`.
48
47
 
49
48
  For more information about how to create an Azure AD Application check out [this guide](https://learn.microsoft.com/azure/active-directory/develop/howto-create-service-principal-portal).
50
49
 
package/dist/index.js CHANGED
@@ -11664,6 +11664,41 @@ const MySqlLinkedService = {
11664
11664
  type: {
11665
11665
  name: "String",
11666
11666
  },
11667
+ }, allowZeroDateTime: {
11668
+ serializedName: "typeProperties.allowZeroDateTime",
11669
+ type: {
11670
+ name: "any",
11671
+ },
11672
+ }, connectionTimeout: {
11673
+ serializedName: "typeProperties.connectionTimeout",
11674
+ type: {
11675
+ name: "any",
11676
+ },
11677
+ }, convertZeroDateTime: {
11678
+ serializedName: "typeProperties.convertZeroDateTime",
11679
+ type: {
11680
+ name: "any",
11681
+ },
11682
+ }, guidFormat: {
11683
+ serializedName: "typeProperties.guidFormat",
11684
+ type: {
11685
+ name: "any",
11686
+ },
11687
+ }, sslCert: {
11688
+ serializedName: "typeProperties.sslCert",
11689
+ type: {
11690
+ name: "any",
11691
+ },
11692
+ }, sslKey: {
11693
+ serializedName: "typeProperties.sslKey",
11694
+ type: {
11695
+ name: "any",
11696
+ },
11697
+ }, treatTinyAsBoolean: {
11698
+ serializedName: "typeProperties.treatTinyAsBoolean",
11699
+ type: {
11700
+ name: "any",
11701
+ },
11667
11702
  } }),
11668
11703
  },
11669
11704
  };
@@ -11726,6 +11761,12 @@ const PostgreSqlV2LinkedService = {
11726
11761
  type: {
11727
11762
  name: "any",
11728
11763
  },
11764
+ }, authenticationType: {
11765
+ serializedName: "typeProperties.authenticationType",
11766
+ required: true,
11767
+ type: {
11768
+ name: "any",
11769
+ },
11729
11770
  }, sslMode: {
11730
11771
  serializedName: "typeProperties.sslMode",
11731
11772
  required: true,
@@ -13889,6 +13930,61 @@ const AzurePostgreSqlLinkedService = {
13889
13930
  type: {
13890
13931
  name: "any",
13891
13932
  },
13933
+ }, server: {
13934
+ serializedName: "typeProperties.server",
13935
+ type: {
13936
+ name: "any",
13937
+ },
13938
+ }, port: {
13939
+ serializedName: "typeProperties.port",
13940
+ type: {
13941
+ name: "any",
13942
+ },
13943
+ }, username: {
13944
+ serializedName: "typeProperties.username",
13945
+ type: {
13946
+ name: "any",
13947
+ },
13948
+ }, database: {
13949
+ serializedName: "typeProperties.database",
13950
+ type: {
13951
+ name: "any",
13952
+ },
13953
+ }, sslMode: {
13954
+ serializedName: "typeProperties.sslMode",
13955
+ type: {
13956
+ name: "any",
13957
+ },
13958
+ }, timeout: {
13959
+ serializedName: "typeProperties.timeout",
13960
+ type: {
13961
+ name: "any",
13962
+ },
13963
+ }, commandTimeout: {
13964
+ serializedName: "typeProperties.commandTimeout",
13965
+ type: {
13966
+ name: "any",
13967
+ },
13968
+ }, trustServerCertificate: {
13969
+ serializedName: "typeProperties.trustServerCertificate",
13970
+ type: {
13971
+ name: "any",
13972
+ },
13973
+ }, readBufferSize: {
13974
+ serializedName: "typeProperties.readBufferSize",
13975
+ type: {
13976
+ name: "any",
13977
+ },
13978
+ }, timezone: {
13979
+ serializedName: "typeProperties.timezone",
13980
+ type: {
13981
+ name: "any",
13982
+ },
13983
+ }, encoding: {
13984
+ serializedName: "typeProperties.encoding",
13985
+ type: {
13986
+ name: "any",
13987
+ },
13892
13988
  }, password: {
13893
13989
  serializedName: "typeProperties.password",
13894
13990
  type: {
@@ -14640,6 +14736,16 @@ const MariaDBLinkedService = {
14640
14736
  type: {
14641
14737
  name: "any",
14642
14738
  },
14739
+ }, sslMode: {
14740
+ serializedName: "typeProperties.sslMode",
14741
+ type: {
14742
+ name: "any",
14743
+ },
14744
+ }, useSystemTrustStore: {
14745
+ serializedName: "typeProperties.useSystemTrustStore",
14746
+ type: {
14747
+ name: "any",
14748
+ },
14643
14749
  }, password: {
14644
14750
  serializedName: "typeProperties.password",
14645
14751
  type: {
@@ -16408,6 +16514,11 @@ const SnowflakeV2LinkedService = {
16408
16514
  name: "Composite",
16409
16515
  className: "SecretBase",
16410
16516
  },
16517
+ }, host: {
16518
+ serializedName: "typeProperties.host",
16519
+ type: {
16520
+ name: "any",
16521
+ },
16411
16522
  }, encryptedCredential: {
16412
16523
  serializedName: "typeProperties.encryptedCredential",
16413
16524
  type: {
@@ -17075,6 +17186,23 @@ const BinaryDataset = {
17075
17186
  } }),
17076
17187
  },
17077
17188
  };
17189
+ const IcebergDataset = {
17190
+ serializedName: "Iceberg",
17191
+ type: {
17192
+ name: "Composite",
17193
+ className: "IcebergDataset",
17194
+ uberParent: "Dataset",
17195
+ additionalProperties: { type: { name: "Object" } },
17196
+ polymorphicDiscriminator: Dataset.type.polymorphicDiscriminator,
17197
+ modelProperties: Object.assign(Object.assign({}, Dataset.type.modelProperties), { location: {
17198
+ serializedName: "typeProperties.location",
17199
+ type: {
17200
+ name: "Composite",
17201
+ className: "DatasetLocation",
17202
+ },
17203
+ } }),
17204
+ },
17205
+ };
17078
17206
  const AzureBlobDataset = {
17079
17207
  serializedName: "AzureBlob",
17080
17208
  type: {
@@ -21698,6 +21826,17 @@ const JsonWriteSettings = {
21698
21826
  } }),
21699
21827
  },
21700
21828
  };
21829
+ const IcebergWriteSettings = {
21830
+ serializedName: "IcebergWriteSettings",
21831
+ type: {
21832
+ name: "Composite",
21833
+ className: "IcebergWriteSettings",
21834
+ uberParent: "FormatWriteSettings",
21835
+ additionalProperties: { type: { name: "Object" } },
21836
+ polymorphicDiscriminator: FormatWriteSettings.type.polymorphicDiscriminator,
21837
+ modelProperties: Object.assign({}, FormatWriteSettings.type.modelProperties),
21838
+ },
21839
+ };
21701
21840
  const AvroSource = {
21702
21841
  serializedName: "AvroSource",
21703
21842
  type: {
@@ -23081,6 +23220,29 @@ const BinarySink = {
23081
23220
  } }),
23082
23221
  },
23083
23222
  };
23223
+ const IcebergSink = {
23224
+ serializedName: "IcebergSink",
23225
+ type: {
23226
+ name: "Composite",
23227
+ className: "IcebergSink",
23228
+ uberParent: "CopySink",
23229
+ additionalProperties: { type: { name: "Object" } },
23230
+ polymorphicDiscriminator: CopySink.type.polymorphicDiscriminator,
23231
+ modelProperties: Object.assign(Object.assign({}, CopySink.type.modelProperties), { storeSettings: {
23232
+ serializedName: "storeSettings",
23233
+ type: {
23234
+ name: "Composite",
23235
+ className: "StoreWriteSettings",
23236
+ },
23237
+ }, formatSettings: {
23238
+ serializedName: "formatSettings",
23239
+ type: {
23240
+ name: "Composite",
23241
+ className: "IcebergWriteSettings",
23242
+ },
23243
+ } }),
23244
+ },
23245
+ };
23084
23246
  const BlobSink = {
23085
23247
  serializedName: "BlobSink",
23086
23248
  type: {
@@ -27498,6 +27660,11 @@ const SalesforceV2Source = {
27498
27660
  type: {
27499
27661
  name: "any",
27500
27662
  },
27663
+ }, pageSize: {
27664
+ serializedName: "pageSize",
27665
+ type: {
27666
+ name: "any",
27667
+ },
27501
27668
  } }),
27502
27669
  },
27503
27670
  };
@@ -27515,6 +27682,11 @@ const ServiceNowV2Source = {
27515
27682
  name: "Composite",
27516
27683
  className: "ExpressionV2",
27517
27684
  },
27685
+ }, pageSize: {
27686
+ serializedName: "pageSize",
27687
+ type: {
27688
+ name: "any",
27689
+ },
27518
27690
  } }),
27519
27691
  },
27520
27692
  };
@@ -27744,6 +27916,7 @@ let discriminators = {
27744
27916
  "Dataset.Xml": XmlDataset,
27745
27917
  "Dataset.Orc": OrcDataset,
27746
27918
  "Dataset.Binary": BinaryDataset,
27919
+ "Dataset.Iceberg": IcebergDataset,
27747
27920
  "Dataset.AzureBlob": AzureBlobDataset,
27748
27921
  "Dataset.AzureTable": AzureTableDataset,
27749
27922
  "Dataset.AzureSqlTable": AzureSqlTableDataset,
@@ -27915,6 +28088,7 @@ let discriminators = {
27915
28088
  "FormatWriteSettings.ParquetWriteSettings": ParquetWriteSettings,
27916
28089
  "FormatWriteSettings.DelimitedTextWriteSettings": DelimitedTextWriteSettings,
27917
28090
  "FormatWriteSettings.JsonWriteSettings": JsonWriteSettings,
28091
+ "FormatWriteSettings.IcebergWriteSettings": IcebergWriteSettings,
27918
28092
  "CopySource.AvroSource": AvroSource,
27919
28093
  "CopySource.ExcelSource": ExcelSource,
27920
28094
  "CopySource.ParquetSource": ParquetSource,
@@ -27969,6 +28143,7 @@ let discriminators = {
27969
28143
  "CopySink.AvroSink": AvroSink,
27970
28144
  "CopySink.ParquetSink": ParquetSink,
27971
28145
  "CopySink.BinarySink": BinarySink,
28146
+ "CopySink.IcebergSink": IcebergSink,
27972
28147
  "CopySink.BlobSink": BlobSink,
27973
28148
  "CopySink.FileSystemSink": FileSystemSink,
27974
28149
  "CopySink.DocumentDbCollectionSink": DocumentDbCollectionSink,
@@ -28463,6 +28638,9 @@ var Mappers = /*#__PURE__*/Object.freeze({
28463
28638
  HubspotLinkedService: HubspotLinkedService,
28464
28639
  HubspotObjectDataset: HubspotObjectDataset,
28465
28640
  HubspotSource: HubspotSource,
28641
+ IcebergDataset: IcebergDataset,
28642
+ IcebergSink: IcebergSink,
28643
+ IcebergWriteSettings: IcebergWriteSettings,
28466
28644
  IfConditionActivity: IfConditionActivity,
28467
28645
  ImpalaLinkedService: ImpalaLinkedService,
28468
28646
  ImpalaObjectDataset: ImpalaObjectDataset,
@@ -35366,7 +35544,7 @@ class DataFactoryManagementClient extends coreClient__namespace.ServiceClient {
35366
35544
  requestContentType: "application/json; charset=utf-8",
35367
35545
  credential: credentials,
35368
35546
  };
35369
- const packageDetails = `azsdk-js-arm-datafactory/17.0.1`;
35547
+ const packageDetails = `azsdk-js-arm-datafactory/18.0.0`;
35370
35548
  const userAgentPrefix = options.userAgentOptions && options.userAgentOptions.userAgentPrefix
35371
35549
  ? `${options.userAgentOptions.userAgentPrefix} ${packageDetails}`
35372
35550
  : `${packageDetails}`;