Skip to content

Commit b9fbc81

Browse files
author
SDK Automation
committed
Generated from 31471f498080cc9fb9436c355930e91a89d0a3ba
[DataFactory] Rollback source sink level staging
1 parent 1d70b0f commit b9fbc81

File tree

49 files changed

+3809
-205
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+3809
-205
lines changed

sdk/datafactory/mgmt-v2018_06_01/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@
1111
<parent>
1212
<groupId>com.microsoft.azure</groupId>
1313
<artifactId>azure-arm-parent</artifactId>
14-
<version>1.3.2</version>
15-
<relativePath>../../parents/azure-arm-parent/pom.xml</relativePath>
14+
<version>1.1.0</version>
15+
<relativePath>../../../pom.management.xml</relativePath>
1616
</parent>
1717
<artifactId>azure-mgmt-datafactory</artifactId>
18-
<version>1.0.0-beta-3</version>
18+
<version>1.0.0-beta</version>
1919
<packaging>jar</packaging>
2020
<name>Microsoft Azure SDK for DataFactory Management</name>
2121
<description>This package contains Microsoft DataFactory Management SDK.</description>

sdk/datafactory/mgmt-v2018_06_01/src/main/java/com/microsoft/azure/management/datafactory/v2018_06_01/AzureBlobFSLinkedService.java

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,15 @@ public class AzureBlobFSLinkedService extends LinkedServiceInner {
5757
@JsonProperty(value = "typeProperties.tenant")
5858
private Object tenant;
5959

60+
/**
61+
* Indicates the azure cloud type of the service principle auth. Allowed
62+
* values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany.
63+
* Default value is the data factory regions’ cloud type. Type: string (or
64+
* Expression with resultType string).
65+
*/
66+
@JsonProperty(value = "typeProperties.azureCloudType")
67+
private Object azureCloudType;
68+
6069
/**
6170
* The encrypted credential used for authentication. Credentials are
6271
* encrypted using the integration runtime credential manager. Type: string
@@ -165,6 +174,26 @@ public AzureBlobFSLinkedService withTenant(Object tenant) {
165174
return this;
166175
}
167176

177+
/**
178+
* Get 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).
179+
*
180+
* @return the azureCloudType value
181+
*/
182+
public Object azureCloudType() {
183+
return this.azureCloudType;
184+
}
185+
186+
/**
187+
* 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).
188+
*
189+
* @param azureCloudType the azureCloudType value to set
190+
* @return the AzureBlobFSLinkedService object itself.
191+
*/
192+
public AzureBlobFSLinkedService withAzureCloudType(Object azureCloudType) {
193+
this.azureCloudType = azureCloudType;
194+
return this;
195+
}
196+
168197
/**
169198
* Get the encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).
170199
*

sdk/datafactory/mgmt-v2018_06_01/src/main/java/com/microsoft/azure/management/datafactory/v2018_06_01/AzureBlobStorageLinkedService.java

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,15 @@ public class AzureBlobStorageLinkedService extends LinkedServiceInner {
7777
@JsonProperty(value = "typeProperties.tenant")
7878
private Object tenant;
7979

80+
/**
81+
* Indicates the azure cloud type of the service principle auth. Allowed
82+
* values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany.
83+
* Default value is the data factory regions’ cloud type. Type: string (or
84+
* Expression with resultType string).
85+
*/
86+
@JsonProperty(value = "typeProperties.azureCloudType")
87+
private Object azureCloudType;
88+
8089
/**
8190
* The encrypted credential used for authentication. Credentials are
8291
* encrypted using the integration runtime credential manager. Type: string
@@ -245,6 +254,26 @@ public AzureBlobStorageLinkedService withTenant(Object tenant) {
245254
return this;
246255
}
247256

257+
/**
258+
* Get 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).
259+
*
260+
* @return the azureCloudType value
261+
*/
262+
public Object azureCloudType() {
263+
return this.azureCloudType;
264+
}
265+
266+
/**
267+
* 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).
268+
*
269+
* @param azureCloudType the azureCloudType value to set
270+
* @return the AzureBlobStorageLinkedService object itself.
271+
*/
272+
public AzureBlobStorageLinkedService withAzureCloudType(Object azureCloudType) {
273+
this.azureCloudType = azureCloudType;
274+
return this;
275+
}
276+
248277
/**
249278
* Get the encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).
250279
*

sdk/datafactory/mgmt-v2018_06_01/src/main/java/com/microsoft/azure/management/datafactory/v2018_06_01/AzureDataLakeStoreLinkedService.java

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,15 @@ public class AzureDataLakeStoreLinkedService extends LinkedServiceInner {
4949
@JsonProperty(value = "typeProperties.tenant")
5050
private Object tenant;
5151

52+
/**
53+
* Indicates the azure cloud type of the service principle auth. Allowed
54+
* values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany.
55+
* Default value is the data factory regions’ cloud type. Type: string (or
56+
* Expression with resultType string).
57+
*/
58+
@JsonProperty(value = "typeProperties.azureCloudType")
59+
private Object azureCloudType;
60+
5261
/**
5362
* Data Lake Store account name. Type: string (or Expression with
5463
* resultType string).
@@ -158,6 +167,26 @@ public AzureDataLakeStoreLinkedService withTenant(Object tenant) {
158167
return this;
159168
}
160169

170+
/**
171+
* Get 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).
172+
*
173+
* @return the azureCloudType value
174+
*/
175+
public Object azureCloudType() {
176+
return this.azureCloudType;
177+
}
178+
179+
/**
180+
* 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).
181+
*
182+
* @param azureCloudType the azureCloudType value to set
183+
* @return the AzureDataLakeStoreLinkedService object itself.
184+
*/
185+
public AzureDataLakeStoreLinkedService withAzureCloudType(Object azureCloudType) {
186+
this.azureCloudType = azureCloudType;
187+
return this;
188+
}
189+
161190
/**
162191
* Get data Lake Store account name. Type: string (or Expression with resultType string).
163192
*

sdk/datafactory/mgmt-v2018_06_01/src/main/java/com/microsoft/azure/management/datafactory/v2018_06_01/AzureFileStorageLinkedService.java

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,13 @@ public class AzureFileStorageLinkedService extends LinkedServiceInner {
7676
@JsonProperty(value = "typeProperties.fileShare")
7777
private Object fileShare;
7878

79+
/**
80+
* The azure file share snapshot version. Type: string (or Expression with
81+
* resultType string).
82+
*/
83+
@JsonProperty(value = "typeProperties.snapshot")
84+
private Object snapshot;
85+
7986
/**
8087
* The encrypted credential used for authentication. Credentials are
8188
* encrypted using the integration runtime credential manager. Type: string
@@ -244,6 +251,26 @@ public AzureFileStorageLinkedService withFileShare(Object fileShare) {
244251
return this;
245252
}
246253

254+
/**
255+
* Get the azure file share snapshot version. Type: string (or Expression with resultType string).
256+
*
257+
* @return the snapshot value
258+
*/
259+
public Object snapshot() {
260+
return this.snapshot;
261+
}
262+
263+
/**
264+
* Set the azure file share snapshot version. Type: string (or Expression with resultType string).
265+
*
266+
* @param snapshot the snapshot value to set
267+
* @return the AzureFileStorageLinkedService object itself.
268+
*/
269+
public AzureFileStorageLinkedService withSnapshot(Object snapshot) {
270+
this.snapshot = snapshot;
271+
return this;
272+
}
273+
247274
/**
248275
* Get the encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).
249276
*
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
/**
2+
* Copyright (c) Microsoft Corporation. All rights reserved.
3+
* Licensed under the MIT License. See License.txt in the project root for
4+
* license information.
5+
*
6+
* Code generated by Microsoft (R) AutoRest Code Generator.
7+
*/
8+
9+
package com.microsoft.azure.management.datafactory.v2018_06_01;
10+
11+
import com.fasterxml.jackson.annotation.JsonTypeInfo;
12+
import com.fasterxml.jackson.annotation.JsonTypeName;
13+
14+
/**
15+
* Azure File Storage write settings.
16+
*/
17+
@JsonTypeInfo(use = JsonTypeInfo.Id.NAME, include = JsonTypeInfo.As.PROPERTY, property = "type", defaultImpl = AzureFileStorageWriteSettings.class)
18+
@JsonTypeName("AzureFileStorageWriteSettings")
19+
public class AzureFileStorageWriteSettings extends StoreWriteSettings {
20+
}

sdk/datafactory/mgmt-v2018_06_01/src/main/java/com/microsoft/azure/management/datafactory/v2018_06_01/AzureSqlDWLinkedService.java

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,15 @@ public class AzureSqlDWLinkedService extends LinkedServiceInner {
5656
@JsonProperty(value = "typeProperties.tenant")
5757
private Object tenant;
5858

59+
/**
60+
* Indicates the azure cloud type of the service principle auth. Allowed
61+
* values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany.
62+
* Default value is the data factory regions’ cloud type. Type: string (or
63+
* Expression with resultType string).
64+
*/
65+
@JsonProperty(value = "typeProperties.azureCloudType")
66+
private Object azureCloudType;
67+
5968
/**
6069
* The encrypted credential used for authentication. Credentials are
6170
* encrypted using the integration runtime credential manager. Type: string
@@ -164,6 +173,26 @@ public AzureSqlDWLinkedService withTenant(Object tenant) {
164173
return this;
165174
}
166175

176+
/**
177+
* Get 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).
178+
*
179+
* @return the azureCloudType value
180+
*/
181+
public Object azureCloudType() {
182+
return this.azureCloudType;
183+
}
184+
185+
/**
186+
* 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).
187+
*
188+
* @param azureCloudType the azureCloudType value to set
189+
* @return the AzureSqlDWLinkedService object itself.
190+
*/
191+
public AzureSqlDWLinkedService withAzureCloudType(Object azureCloudType) {
192+
this.azureCloudType = azureCloudType;
193+
return this;
194+
}
195+
167196
/**
168197
* Get the encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).
169198
*

sdk/datafactory/mgmt-v2018_06_01/src/main/java/com/microsoft/azure/management/datafactory/v2018_06_01/AzureSqlDatabaseLinkedService.java

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,15 @@ public class AzureSqlDatabaseLinkedService extends LinkedServiceInner {
5555
@JsonProperty(value = "typeProperties.tenant")
5656
private Object tenant;
5757

58+
/**
59+
* Indicates the azure cloud type of the service principle auth. Allowed
60+
* values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany.
61+
* Default value is the data factory regions’ cloud type. Type: string (or
62+
* Expression with resultType string).
63+
*/
64+
@JsonProperty(value = "typeProperties.azureCloudType")
65+
private Object azureCloudType;
66+
5867
/**
5968
* The encrypted credential used for authentication. Credentials are
6069
* encrypted using the integration runtime credential manager. Type: string
@@ -163,6 +172,26 @@ public AzureSqlDatabaseLinkedService withTenant(Object tenant) {
163172
return this;
164173
}
165174

175+
/**
176+
* Get 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).
177+
*
178+
* @return the azureCloudType value
179+
*/
180+
public Object azureCloudType() {
181+
return this.azureCloudType;
182+
}
183+
184+
/**
185+
* 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).
186+
*
187+
* @param azureCloudType the azureCloudType value to set
188+
* @return the AzureSqlDatabaseLinkedService object itself.
189+
*/
190+
public AzureSqlDatabaseLinkedService withAzureCloudType(Object azureCloudType) {
191+
this.azureCloudType = azureCloudType;
192+
return this;
193+
}
194+
166195
/**
167196
* Get the encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).
168197
*

sdk/datafactory/mgmt-v2018_06_01/src/main/java/com/microsoft/azure/management/datafactory/v2018_06_01/AzureSqlMILinkedService.java

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,15 @@ public class AzureSqlMILinkedService extends LinkedServiceInner {
5555
@JsonProperty(value = "typeProperties.tenant")
5656
private Object tenant;
5757

58+
/**
59+
* Indicates the azure cloud type of the service principle auth. Allowed
60+
* values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany.
61+
* Default value is the data factory regions’ cloud type. Type: string (or
62+
* Expression with resultType string).
63+
*/
64+
@JsonProperty(value = "typeProperties.azureCloudType")
65+
private Object azureCloudType;
66+
5867
/**
5968
* The encrypted credential used for authentication. Credentials are
6069
* encrypted using the integration runtime credential manager. Type: string
@@ -163,6 +172,26 @@ public AzureSqlMILinkedService withTenant(Object tenant) {
163172
return this;
164173
}
165174

175+
/**
176+
* Get 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).
177+
*
178+
* @return the azureCloudType value
179+
*/
180+
public Object azureCloudType() {
181+
return this.azureCloudType;
182+
}
183+
184+
/**
185+
* 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).
186+
*
187+
* @param azureCloudType the azureCloudType value to set
188+
* @return the AzureSqlMILinkedService object itself.
189+
*/
190+
public AzureSqlMILinkedService withAzureCloudType(Object azureCloudType) {
191+
this.azureCloudType = azureCloudType;
192+
return this;
193+
}
194+
166195
/**
167196
* Get the encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).
168197
*
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
/**
2+
* Copyright (c) Microsoft Corporation. All rights reserved.
3+
* Licensed under the MIT License. See License.txt in the project root for
4+
* license information.
5+
*
6+
* Code generated by Microsoft (R) AutoRest Code Generator.
7+
*/
8+
9+
package com.microsoft.azure.management.datafactory.v2018_06_01;
10+
11+
import com.fasterxml.jackson.annotation.JsonProperty;
12+
13+
/**
14+
* The connection state of a managed private endpoint.
15+
*/
16+
public class ConnectionStateProperties {
17+
/**
18+
* The actions required on the managed private endpoint.
19+
*/
20+
@JsonProperty(value = "actionsRequired", access = JsonProperty.Access.WRITE_ONLY)
21+
private String actionsRequired;
22+
23+
/**
24+
* The managed private endpoint description.
25+
*/
26+
@JsonProperty(value = "description", access = JsonProperty.Access.WRITE_ONLY)
27+
private String description;
28+
29+
/**
30+
* The approval status.
31+
*/
32+
@JsonProperty(value = "status", access = JsonProperty.Access.WRITE_ONLY)
33+
private String status;
34+
35+
/**
36+
* Get the actions required on the managed private endpoint.
37+
*
38+
* @return the actionsRequired value
39+
*/
40+
public String actionsRequired() {
41+
return this.actionsRequired;
42+
}
43+
44+
/**
45+
* Get the managed private endpoint description.
46+
*
47+
* @return the description value
48+
*/
49+
public String description() {
50+
return this.description;
51+
}
52+
53+
/**
54+
* Get the approval status.
55+
*
56+
* @return the status value
57+
*/
58+
public String status() {
59+
return this.status;
60+
}
61+
62+
}

0 commit comments

Comments
 (0)