-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Generated from 814795cce5766e56d08e877d7f359c2d6380a8be (#4676)
update example
- Loading branch information
1 parent
c43628a
commit 511ea63
Showing
10 changed files
with
271 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
21 changes: 21 additions & 0 deletions
21
...rc/main/java/com/microsoft/azure/management/datafactory/v2018_06_01/SapBwCubeDataset.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
/** | ||
* Copyright (c) Microsoft Corporation. All rights reserved. | ||
* Licensed under the MIT License. See License.txt in the project root for | ||
* license information. | ||
* | ||
* Code generated by Microsoft (R) AutoRest Code Generator. | ||
*/ | ||
|
||
package com.microsoft.azure.management.datafactory.v2018_06_01; | ||
|
||
import com.fasterxml.jackson.annotation.JsonTypeInfo; | ||
import com.fasterxml.jackson.annotation.JsonTypeName; | ||
import com.microsoft.azure.management.datafactory.v2018_06_01.implementation.DatasetInner; | ||
|
||
/** | ||
* The SAP BW cube dataset. | ||
*/ | ||
@JsonTypeInfo(use = JsonTypeInfo.Id.NAME, include = JsonTypeInfo.As.PROPERTY, property = "type") | ||
@JsonTypeName("SapBwCube") | ||
public class SapBwCubeDataset extends DatasetInner { | ||
} |
47 changes: 47 additions & 0 deletions
47
..._01/src/main/java/com/microsoft/azure/management/datafactory/v2018_06_01/SapBwSource.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
/** | ||
* Copyright (c) Microsoft Corporation. All rights reserved. | ||
* Licensed under the MIT License. See License.txt in the project root for | ||
* license information. | ||
* | ||
* Code generated by Microsoft (R) AutoRest Code Generator. | ||
*/ | ||
|
||
package com.microsoft.azure.management.datafactory.v2018_06_01; | ||
|
||
import com.fasterxml.jackson.annotation.JsonProperty; | ||
import com.fasterxml.jackson.annotation.JsonTypeInfo; | ||
import com.fasterxml.jackson.annotation.JsonTypeName; | ||
|
||
/** | ||
* A copy activity source for SapBW server via MDX. | ||
*/ | ||
@JsonTypeInfo(use = JsonTypeInfo.Id.NAME, include = JsonTypeInfo.As.PROPERTY, property = "type") | ||
@JsonTypeName("SapBwSource") | ||
public class SapBwSource extends CopySource { | ||
/** | ||
* MDX query. Type: string (or Expression with resultType string). | ||
*/ | ||
@JsonProperty(value = "query") | ||
private Object query; | ||
|
||
/** | ||
* Get mDX query. Type: string (or Expression with resultType string). | ||
* | ||
* @return the query value | ||
*/ | ||
public Object query() { | ||
return this.query; | ||
} | ||
|
||
/** | ||
* Set mDX query. Type: string (or Expression with resultType string). | ||
* | ||
* @param query the query value to set | ||
* @return the SapBwSource object itself. | ||
*/ | ||
public SapBwSource withQuery(Object query) { | ||
this.query = query; | ||
return this; | ||
} | ||
|
||
} |
51 changes: 51 additions & 0 deletions
51
.../main/java/com/microsoft/azure/management/datafactory/v2018_06_01/SybaseTableDataset.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
/** | ||
* Copyright (c) Microsoft Corporation. All rights reserved. | ||
* Licensed under the MIT License. See License.txt in the project root for | ||
* license information. | ||
* | ||
* Code generated by Microsoft (R) AutoRest Code Generator. | ||
*/ | ||
|
||
package com.microsoft.azure.management.datafactory.v2018_06_01; | ||
|
||
import com.fasterxml.jackson.annotation.JsonProperty; | ||
import com.fasterxml.jackson.annotation.JsonTypeInfo; | ||
import com.fasterxml.jackson.annotation.JsonTypeName; | ||
import com.microsoft.rest.serializer.JsonFlatten; | ||
import com.microsoft.azure.management.datafactory.v2018_06_01.implementation.DatasetInner; | ||
|
||
/** | ||
* The Sybase table dataset. | ||
*/ | ||
@JsonTypeInfo(use = JsonTypeInfo.Id.NAME, include = JsonTypeInfo.As.PROPERTY, property = "type") | ||
@JsonTypeName("SybaseTable") | ||
@JsonFlatten | ||
public class SybaseTableDataset extends DatasetInner { | ||
/** | ||
* The Sybase table name. Type: string (or Expression with resultType | ||
* string). | ||
*/ | ||
@JsonProperty(value = "typeProperties.tableName") | ||
private Object tableName; | ||
|
||
/** | ||
* Get the Sybase table name. Type: string (or Expression with resultType string). | ||
* | ||
* @return the tableName value | ||
*/ | ||
public Object tableName() { | ||
return this.tableName; | ||
} | ||
|
||
/** | ||
* Set the Sybase table name. Type: string (or Expression with resultType string). | ||
* | ||
* @param tableName the tableName value to set | ||
* @return the SybaseTableDataset object itself. | ||
*/ | ||
public SybaseTableDataset withTableName(Object tableName) { | ||
this.tableName = tableName; | ||
return this; | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.