Skip to content

Commit

Permalink
[AutoPR datafactory/resource-manager] [DataFactory]Support schema pro…
Browse files Browse the repository at this point in the history
…perty for dataset (#2833)

* Generated from c36d6d87e9a4ae714416dd7ece0528c86cc97514

Support schema property for dataset

* Generated from c36d6d87e9a4ae714416dd7ece0528c86cc97514

Support schema property for dataset
  • Loading branch information
AutorestCI authored Jan 15, 2019
1 parent a78afda commit 4922deb
Showing 1 changed file with 28 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,14 @@ public class DatasetInner {
@JsonProperty(value = "structure")
private Object structure;

/**
* Columns that define the physical type schema of the dataset. Type: array
* (or Expression with resultType array), itemType:
* DatasetSchemaDataElement.
*/
@JsonProperty(value = "schema")
private Object schema;

/**
* Linked service reference.
*/
Expand Down Expand Up @@ -184,6 +192,26 @@ public DatasetInner withStructure(Object structure) {
return this;
}

/**
* Get columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
*
* @return the schema value
*/
public Object schema() {
return this.schema;
}

/**
* Set columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
*
* @param schema the schema value to set
* @return the DatasetInner object itself.
*/
public DatasetInner withSchema(Object schema) {
this.schema = schema;
return this;
}

/**
* Get linked service reference.
*
Expand Down

0 comments on commit 4922deb

Please sign in to comment.