Skip to content

Commit

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

The following keys were added:
- schemas.Repository.properties.createTime.description
- schemas.Repository.properties.createTime.format
- schemas.Repository.properties.createTime.readOnly
- schemas.Repository.properties.createTime.type
  • Loading branch information
yoshi-automation authored and sofisl committed Feb 8, 2024
1 parent 38e7737 commit 3b30605
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
8 changes: 7 additions & 1 deletion discovery/dataform-v1beta1.json
Original file line number Diff line number Diff line change
Expand Up @@ -2103,7 +2103,7 @@
}
}
},
"revision": "20240127",
"revision": "20240203",
"rootUrl": "https://dataform.googleapis.com/",
"schemas": {
"Assertion": {
Expand Down Expand Up @@ -3480,6 +3480,12 @@
"description": "Represents a Dataform Git repository.",
"id": "Repository",
"properties": {
"createTime": {
"description": "Output only. The timestamp of when the repository was created.",
"format": "google-datetime",
"readOnly": true,
"type": "string"
},
"displayName": {
"description": "Optional. The repository's user-friendly name.",
"type": "string"
Expand Down
4 changes: 4 additions & 0 deletions src/apis/dataform/v1beta1.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1152,6 +1152,10 @@ export namespace dataform_v1beta1 {
* Represents a Dataform Git repository.
*/
export interface Schema$Repository {
/**
* Output only. The timestamp of when the repository was created.
*/
createTime?: string | null;
/**
* Optional. The repository's user-friendly name.
*/
Expand Down

0 comments on commit 3b30605

Please sign in to comment.