Skip to content

Commit

Permalink
feat(datastream): update the API
Browse files Browse the repository at this point in the history
#### datastream:v1alpha1

The following keys were added:
- schemas.OracleDropLargeObjects.description
- schemas.OracleDropLargeObjects.id
- schemas.OracleDropLargeObjects.type
- schemas.OracleSourceConfig.properties.dropLargeObjects.$ref
- schemas.OracleSourceConfig.properties.dropLargeObjects.description

#### datastream:v1

The following keys were added:
- schemas.OracleDropLargeObjects.description
- schemas.OracleDropLargeObjects.id
- schemas.OracleDropLargeObjects.type
- schemas.OracleSourceConfig.properties.dropLargeObjects.$ref
- schemas.OracleSourceConfig.properties.dropLargeObjects.description
  • Loading branch information
yoshi-automation authored and sofisl committed Apr 1, 2022
1 parent a5da831 commit 58847ee
Show file tree
Hide file tree
Showing 4 changed files with 38 additions and 2 deletions.
12 changes: 11 additions & 1 deletion discovery/datastream-v1.json
Original file line number Diff line number Diff line change
Expand Up @@ -1217,7 +1217,7 @@
}
}
},
"revision": "20220302",
"revision": "20220316",
"rootUrl": "https://datastream.googleapis.com/",
"schemas": {
"AvroFileFormat": {
Expand Down Expand Up @@ -2110,6 +2110,12 @@
},
"type": "object"
},
"OracleDropLargeObjects": {
"description": "Configuration to drop large object values.",
"id": "OracleDropLargeObjects",
"properties": {},
"type": "object"
},
"OracleObjectIdentifier": {
"description": "Oracle data source object identifier.",
"id": "OracleObjectIdentifier",
Expand Down Expand Up @@ -2196,6 +2202,10 @@
"description": "Oracle data source configuration",
"id": "OracleSourceConfig",
"properties": {
"dropLargeObjects": {
"$ref": "OracleDropLargeObjects",
"description": "Drop large object values."
},
"excludeObjects": {
"$ref": "OracleRdbms",
"description": "Oracle objects to exclude from the stream."
Expand Down
12 changes: 11 additions & 1 deletion discovery/datastream-v1alpha1.json
Original file line number Diff line number Diff line change
Expand Up @@ -1196,7 +1196,7 @@
}
}
},
"revision": "20220117",
"revision": "20220316",
"rootUrl": "https://datastream.googleapis.com/",
"schemas": {
"AvroFileFormat": {
Expand Down Expand Up @@ -2115,6 +2115,12 @@
},
"type": "object"
},
"OracleDropLargeObjects": {
"description": "Configuration to drop large object values.",
"id": "OracleDropLargeObjects",
"properties": {},
"type": "object"
},
"OracleObjectIdentifier": {
"description": "Oracle data source object identifier.",
"id": "OracleObjectIdentifier",
Expand Down Expand Up @@ -2205,6 +2211,10 @@
"$ref": "OracleRdbms",
"description": "Oracle objects to include in the stream."
},
"dropLargeObjects": {
"$ref": "OracleDropLargeObjects",
"description": "Drop large object values."
},
"rejectlist": {
"$ref": "OracleRdbms",
"description": "Oracle objects to exclude from the stream."
Expand Down
8 changes: 8 additions & 0 deletions src/apis/datastream/v1.ts
Original file line number Diff line number Diff line change
Expand Up @@ -789,6 +789,10 @@ export namespace datastream_v1 {
*/
scale?: number | null;
}
/**
* Configuration to drop large object values.
*/
export interface Schema$OracleDropLargeObjects {}
/**
* Oracle data source object identifier.
*/
Expand Down Expand Up @@ -857,6 +861,10 @@ export namespace datastream_v1 {
* Oracle data source configuration
*/
export interface Schema$OracleSourceConfig {
/**
* Drop large object values.
*/
dropLargeObjects?: Schema$OracleDropLargeObjects;
/**
* Oracle objects to exclude from the stream.
*/
Expand Down
8 changes: 8 additions & 0 deletions src/apis/datastream/v1alpha1.ts
Original file line number Diff line number Diff line change
Expand Up @@ -790,6 +790,10 @@ export namespace datastream_v1alpha1 {
*/
scale?: number | null;
}
/**
* Configuration to drop large object values.
*/
export interface Schema$OracleDropLargeObjects {}
/**
* Oracle data source object identifier.
*/
Expand Down Expand Up @@ -862,6 +866,10 @@ export namespace datastream_v1alpha1 {
* Oracle objects to include in the stream.
*/
allowlist?: Schema$OracleRdbms;
/**
* Drop large object values.
*/
dropLargeObjects?: Schema$OracleDropLargeObjects;
/**
* Oracle objects to exclude from the stream.
*/
Expand Down

0 comments on commit 58847ee

Please sign in to comment.