Skip to content

Commit fed7b59

Browse files
author
SDK Automation
committed
Update from master
1 parent 053f541 commit fed7b59

23 files changed

+523
-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
*

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
*

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

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,12 @@ public class DataFlowSink extends Transformation {
3232
@JsonProperty(value = "schemaLinkedService")
3333
private LinkedServiceReference schemaLinkedService;
3434

35+
/**
36+
* Staging info for execute data flow activity.
37+
*/
38+
@JsonProperty(value = "staging")
39+
private DataFlowStagingInfo staging;
40+
3541
/**
3642
* Get dataset reference.
3743
*
@@ -92,4 +98,24 @@ public DataFlowSink withSchemaLinkedService(LinkedServiceReference schemaLinkedS
9298
return this;
9399
}
94100

101+
/**
102+
* Get staging info for execute data flow activity.
103+
*
104+
* @return the staging value
105+
*/
106+
public DataFlowStagingInfo staging() {
107+
return this.staging;
108+
}
109+
110+
/**
111+
* Set staging info for execute data flow activity.
112+
*
113+
* @param staging the staging value to set
114+
* @return the DataFlowSink object itself.
115+
*/
116+
public DataFlowSink withStaging(DataFlowStagingInfo staging) {
117+
this.staging = staging;
118+
return this;
119+
}
120+
95121
}

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

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,12 @@ public class DataFlowSource extends Transformation {
3232
@JsonProperty(value = "schemaLinkedService")
3333
private LinkedServiceReference schemaLinkedService;
3434

35+
/**
36+
* Staging info for execute data flow activity.
37+
*/
38+
@JsonProperty(value = "staging")
39+
private DataFlowStagingInfo staging;
40+
3541
/**
3642
* Get dataset reference.
3743
*
@@ -92,4 +98,24 @@ public DataFlowSource withSchemaLinkedService(LinkedServiceReference schemaLinke
9298
return this;
9399
}
94100

101+
/**
102+
* Get staging info for execute data flow activity.
103+
*
104+
* @return the staging value
105+
*/
106+
public DataFlowStagingInfo staging() {
107+
return this.staging;
108+
}
109+
110+
/**
111+
* Set staging info for execute data flow activity.
112+
*
113+
* @param staging the staging value to set
114+
* @return the DataFlowSource object itself.
115+
*/
116+
public DataFlowSource withStaging(DataFlowStagingInfo staging) {
117+
this.staging = staging;
118+
return this;
119+
}
120+
95121
}

0 commit comments

Comments
 (0)