Skip to content

Commit

Permalink
feat(all): auto-regenerate discovery clients (#2395)
Browse files Browse the repository at this point in the history
  • Loading branch information
yoshi-automation committed Feb 4, 2024
1 parent 140fb54 commit 169ead6
Show file tree
Hide file tree
Showing 28 changed files with 551 additions and 87 deletions.
45 changes: 44 additions & 1 deletion bigquerydatatransfer/v1/bigquerydatatransfer-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -343,6 +343,35 @@
"https://www.googleapis.com/auth/cloud-platform",
"https://www.googleapis.com/auth/cloud-platform.read-only"
]
},
"unenrollDataSources": {
"description": "Unenroll data sources in a user project. This allows users to remove transfer configurations for these data sources. They will no longer appear in the ListDataSources RPC and will also no longer appear in the [BigQuery UI](https://console.cloud.google.com/bigquery).",
"flatPath": "v1/projects/{projectsId}/locations/{locationsId}:unenrollDataSources",
"httpMethod": "POST",
"id": "bigquerydatatransfer.projects.locations.unenrollDataSources",
"parameterOrder": [
"name"
],
"parameters": {
"name": {
"description": "The name of the project resource in the form: `projects/{project_id}`",
"location": "path",
"pattern": "^projects/[^/]+/locations/[^/]+$",
"required": true,
"type": "string"
}
},
"path": "v1/{+name}:unenrollDataSources",
"request": {
"$ref": "UnenrollDataSourcesRequest"
},
"response": {
"$ref": "Empty"
},
"scopes": [
"https://www.googleapis.com/auth/bigquery",
"https://www.googleapis.com/auth/cloud-platform"
]
}
},
"resources": {
Expand Down Expand Up @@ -1342,7 +1371,7 @@
}
}
},
"revision": "20230827",
"revision": "20240130",
"rootUrl": "https://bigquerydatatransfer.googleapis.com/",
"schemas": {
"CheckValidCredsRequest": {
Expand Down Expand Up @@ -2125,6 +2154,20 @@
},
"type": "object"
},
"UnenrollDataSourcesRequest": {
"description": "A request to unenroll a set of data sources so they are no longer visible in the BigQuery UI's `Transfer` tab.",
"id": "UnenrollDataSourcesRequest",
"properties": {
"dataSourceIds": {
"description": "Data sources that are unenrolled. It is required to provide at least one data source id.",
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"UserInfo": {
"description": "Information about a user.",
"id": "UserInfo",
Expand Down
179 changes: 179 additions & 0 deletions bigquerydatatransfer/v1/bigquerydatatransfer-gen.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions domains/v1/domains-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -848,7 +848,7 @@
}
}
},
"revision": "20240103",
"revision": "20240125",
"rootUrl": "https://domains.googleapis.com/",
"schemas": {
"AuditConfig": {
Expand Down Expand Up @@ -926,7 +926,7 @@
"type": "array"
},
"role": {
"description": "Role that is assigned to the list of `members`, or principals. For example, `roles/viewer`, `roles/editor`, or `roles/owner`.",
"description": "Role that is assigned to the list of `members`, or principals. For example, `roles/viewer`, `roles/editor`, or `roles/owner`. For an overview of the IAM roles and permissions, see the [IAM documentation](https://cloud.google.com/iam/docs/roles-overview). For a list of the available pre-defined roles, see [here](https://cloud.google.com/iam/docs/understanding-roles).",
"type": "string"
}
},
Expand Down
6 changes: 5 additions & 1 deletion domains/v1/domains-gen.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions domains/v1alpha2/domains-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -848,7 +848,7 @@
}
}
},
"revision": "20240103",
"revision": "20240125",
"rootUrl": "https://domains.googleapis.com/",
"schemas": {
"AuditConfig": {
Expand Down Expand Up @@ -926,7 +926,7 @@
"type": "array"
},
"role": {
"description": "Role that is assigned to the list of `members`, or principals. For example, `roles/viewer`, `roles/editor`, or `roles/owner`.",
"description": "Role that is assigned to the list of `members`, or principals. For example, `roles/viewer`, `roles/editor`, or `roles/owner`. For an overview of the IAM roles and permissions, see the [IAM documentation](https://cloud.google.com/iam/docs/roles-overview). For a list of the available pre-defined roles, see [here](https://cloud.google.com/iam/docs/understanding-roles).",
"type": "string"
}
},
Expand Down
6 changes: 5 additions & 1 deletion domains/v1alpha2/domains-gen.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions domains/v1beta1/domains-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -848,7 +848,7 @@
}
}
},
"revision": "20240103",
"revision": "20240125",
"rootUrl": "https://domains.googleapis.com/",
"schemas": {
"AuditConfig": {
Expand Down Expand Up @@ -926,7 +926,7 @@
"type": "array"
},
"role": {
"description": "Role that is assigned to the list of `members`, or principals. For example, `roles/viewer`, `roles/editor`, or `roles/owner`.",
"description": "Role that is assigned to the list of `members`, or principals. For example, `roles/viewer`, `roles/editor`, or `roles/owner`. For an overview of the IAM roles and permissions, see the [IAM documentation](https://cloud.google.com/iam/docs/roles-overview). For a list of the available pre-defined roles, see [here](https://cloud.google.com/iam/docs/understanding-roles).",
"type": "string"
}
},
Expand Down
6 changes: 5 additions & 1 deletion domains/v1beta1/domains-gen.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 169ead6

Please sign in to comment.