Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(all): auto-regenerate discovery clients #2259

Merged
merged 1 commit into from
Nov 12, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
23 changes: 16 additions & 7 deletions alloydb/v1/alloydb-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -1489,7 +1489,7 @@
}
}
},
"revision": "20231025",
"revision": "20231031",
"rootUrl": "https://alloydb.googleapis.com/",
"schemas": {
"AutomatedBackupPolicy": {
Expand Down Expand Up @@ -1566,17 +1566,20 @@
"enum": [
"DATABASE_VERSION_UNSPECIFIED",
"POSTGRES_13",
"POSTGRES_14"
"POSTGRES_14",
"POSTGRES_15"
],
"enumDeprecated": [
false,
true,
false,
false
],
"enumDescriptions": [
"This is an unknown database version.",
"DEPRECATED - The database version is Postgres 13.",
"The database version is Postgres 14."
"The database version is Postgres 14.",
"The database version is Postgres 15."
],
"readOnly": true,
"type": "string"
Expand Down Expand Up @@ -1814,17 +1817,20 @@
"enum": [
"DATABASE_VERSION_UNSPECIFIED",
"POSTGRES_13",
"POSTGRES_14"
"POSTGRES_14",
"POSTGRES_15"
],
"enumDeprecated": [
false,
true,
false,
false
],
"enumDescriptions": [
"This is an unknown database version.",
"DEPRECATED - The database version is Postgres 13.",
"The database version is Postgres 14."
"The database version is Postgres 14.",
"The database version is Postgres 15."
],
"type": "string"
},
Expand Down Expand Up @@ -3691,17 +3697,20 @@
"enum": [
"DATABASE_VERSION_UNSPECIFIED",
"POSTGRES_13",
"POSTGRES_14"
"POSTGRES_14",
"POSTGRES_15"
],
"enumDeprecated": [
false,
true,
false,
false
],
"enumDescriptions": [
"This is an unknown database version.",
"DEPRECATED - The database version is Postgres 13.",
"The database version is Postgres 14."
"The database version is Postgres 14.",
"The database version is Postgres 15."
],
"type": "string"
},
Expand Down
3 changes: 3 additions & 0 deletions alloydb/v1/alloydb-gen.go

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

8 changes: 5 additions & 3 deletions artifactregistry/v1/artifactregistry-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -1713,7 +1713,7 @@
}
}
},
"revision": "20231102",
"revision": "20231108",
"rootUrl": "https://artifactregistry.googleapis.com/",
"schemas": {
"AptArtifact": {
Expand Down Expand Up @@ -2150,12 +2150,14 @@
"enum": [
"REPOSITORY_BASE_UNSPECIFIED",
"DEBIAN",
"UBUNTU"
"UBUNTU",
"DEBIAN_SNAPSHOT"
],
"enumDescriptions": [
"Unspecified repository base.",
"Debian.",
"Ubuntu LTS/Pro."
"Ubuntu LTS/Pro.",
"Archived Debian."
],
"type": "string"
},
Expand Down
1 change: 1 addition & 0 deletions artifactregistry/v1/artifactregistry-gen.go

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

23 changes: 19 additions & 4 deletions clouddeploy/v1/clouddeploy-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -1794,7 +1794,7 @@
}
}
},
"revision": "20231027",
"revision": "20231101",
"rootUrl": "https://clouddeploy.googleapis.com/",
"schemas": {
"AbandonReleaseRequest": {
Expand Down Expand Up @@ -4249,7 +4249,23 @@
"type": "string"
},
"release": {
"description": "The name of the `Release`.",
"description": "The name of the release.",
"type": "string"
},
"releaseRenderState": {
"description": "The state of the release render.",
"enum": [
"RENDER_STATE_UNSPECIFIED",
"SUCCEEDED",
"FAILED",
"IN_PROGRESS"
],
"enumDescriptions": [
"The render state is unspecified.",
"All rendering operations have completed successfully.",
"All rendering operations have completed, and one or more have failed.",
"Rendering has started and is not complete."
],
"type": "string"
}
},
Expand Down Expand Up @@ -4890,7 +4906,7 @@
"type": "string"
},
"rolloutUpdateType": {
"description": "Output only. The type of the rollout update.",
"description": "The type of the rollout update.",
"enum": [
"ROLLOUT_UPDATE_TYPE_UNSPECIFIED",
"PENDING",
Expand Down Expand Up @@ -4923,7 +4939,6 @@
"Rollout requires advance to the next phase.",
"Rollout has been advanced."
],
"readOnly": true,
"type": "string"
},
"targetId": {
Expand Down
14 changes: 12 additions & 2 deletions clouddeploy/v1/clouddeploy-gen.go

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

54 changes: 53 additions & 1 deletion datamigration/v1/datamigration-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -1311,6 +1311,34 @@
"https://www.googleapis.com/auth/cloud-platform"
]
},
"demoteDestination": {
"description": "Demotes the destination database to become a read replica of the source. This is applicable for the following migrations: 1. MySQL to Cloud SQL (for MySQL) 2. PostgreSQL to Cloud SQL (for PostgreSQL) 3. PostgreSQL to AlloyDB.",
"flatPath": "v1/projects/{projectsId}/locations/{locationsId}/migrationJobs/{migrationJobsId}:demoteDestination",
"httpMethod": "POST",
"id": "datamigration.projects.locations.migrationJobs.demoteDestination",
"parameterOrder": [
"name"
],
"parameters": {
"name": {
"description": "Name of the migration job resource to demote its destination.",
"location": "path",
"pattern": "^projects/[^/]+/locations/[^/]+/migrationJobs/[^/]+$",
"required": true,
"type": "string"
}
},
"path": "v1/{+name}:demoteDestination",
"request": {
"$ref": "DemoteDestinationRequest"
},
"response": {
"$ref": "Operation"
},
"scopes": [
"https://www.googleapis.com/auth/cloud-platform"
]
},
"generateSshScript": {
"description": "Generate a SSH configuration script to configure the reverse SSH connectivity.",
"flatPath": "v1/projects/{projectsId}/locations/{locationsId}/migrationJobs/{migrationJobsId}:generateSshScript",
Expand Down Expand Up @@ -2097,7 +2125,7 @@
}
}
},
"revision": "20231031",
"revision": "20231106",
"rootUrl": "https://datamigration.googleapis.com/",
"schemas": {
"AlloyDbConnectionProfile": {
Expand Down Expand Up @@ -2478,6 +2506,15 @@
"MYSQL_5_6",
"MYSQL_5_7",
"MYSQL_8_0",
"MYSQL_8_0_18",
"MYSQL_8_0_26",
"MYSQL_8_0_27",
"MYSQL_8_0_28",
"MYSQL_8_0_30",
"MYSQL_8_0_31",
"MYSQL_8_0_32",
"MYSQL_8_0_33",
"MYSQL_8_0_34",
"POSTGRES_9_6",
"POSTGRES_11",
"POSTGRES_10",
Expand All @@ -2491,6 +2528,15 @@
"MySQL 5.6.",
"MySQL 5.7.",
"MySQL 8.0.",
"The database major version is MySQL 8.0 and the minor version is 18.",
"The database major version is MySQL 8.0 and the minor version is 26.",
"The database major version is MySQL 8.0 and the minor version is 27.",
"The database major version is MySQL 8.0 and the minor version is 28.",
"The database major version is MySQL 8.0 and the minor version is 30.",
"The database major version is MySQL 8.0 and the minor version is 31.",
"The database major version is MySQL 8.0 and the minor version is 32.",
"The database major version is MySQL 8.0 and the minor version is 33.",
"The database major version is MySQL 8.0 and the minor version is 34.",
"PostgreSQL 9.6.",
"PostgreSQL 11.",
"PostgreSQL 10.",
Expand Down Expand Up @@ -3180,6 +3226,12 @@
},
"type": "object"
},
"DemoteDestinationRequest": {
"description": "Request message for 'DemoteDestination' request.",
"id": "DemoteDestinationRequest",
"properties": {},
"type": "object"
},
"DescribeConversionWorkspaceRevisionsResponse": {
"description": "Response message for 'DescribeConversionWorkspaceRevisions' request.",
"id": "DescribeConversionWorkspaceRevisionsResponse",
Expand Down