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 #2793

Merged
merged 1 commit into from
Sep 21, 2024
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
59 changes: 49 additions & 10 deletions alloydb/v1alpha/alloydb-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -1517,7 +1517,7 @@
}
}
},
"revision": "20240828",
"revision": "20240909",
"rootUrl": "https://alloydb.googleapis.com/",
"schemas": {
"AuthorizedNetwork": {
Expand Down Expand Up @@ -2143,15 +2143,19 @@
"IN_PROGRESS",
"SUCCESS",
"FAILED",
"PARTIAL_SUCCESS"
"PARTIAL_SUCCESS",
"CANCEL_IN_PROGRESS",
"CANCELLED"
],
"enumDescriptions": [
"Unspecified status.",
"Not started.",
"In progress.",
"Operation succeeded.",
"Operation failed.",
"Operation partially succeeded."
"Operation partially succeeded.",
"Cancel is in progress.",
"Cancellation complete."
],
"type": "string"
}
Expand Down Expand Up @@ -2739,15 +2743,19 @@
"IN_PROGRESS",
"SUCCESS",
"FAILED",
"PARTIAL_SUCCESS"
"PARTIAL_SUCCESS",
"CANCEL_IN_PROGRESS",
"CANCELLED"
],
"enumDescriptions": [
"Unspecified status.",
"Not started.",
"In progress.",
"Operation succeeded.",
"Operation failed.",
"Operation partially succeeded."
"Operation partially succeeded.",
"Cancel is in progress.",
"Cancellation complete."
],
"type": "string"
}
Expand Down Expand Up @@ -3461,15 +3469,19 @@
"IN_PROGRESS",
"SUCCESS",
"FAILED",
"PARTIAL_SUCCESS"
"PARTIAL_SUCCESS",
"CANCEL_IN_PROGRESS",
"CANCELLED"
],
"enumDescriptions": [
"Unspecified status.",
"Not started.",
"In progress.",
"Operation succeeded.",
"Operation failed.",
"Operation partially succeeded."
"Operation partially succeeded.",
"Cancel is in progress.",
"Cancellation complete."
],
"type": "string"
}
Expand Down Expand Up @@ -4087,7 +4099,7 @@
"type": "object"
},
"StorageDatabasecenterPartnerapiV1mainDatabaseResourceMetadata": {
"description": "Common model for database resource instance metadata.",
"description": "Common model for database resource instance metadata. Next ID: 21",
"id": "StorageDatabasecenterPartnerapiV1mainDatabaseResourceMetadata",
"properties": {
"availabilityConfiguration": {
Expand Down Expand Up @@ -4226,6 +4238,10 @@
"description": "Required. Different from DatabaseResourceId.unique_id, a resource name can be reused over time. That is, after a resource named \"ABC\" is deleted, the name \"ABC\" can be used to to create a new resource within the same source. Resource name to follow CAIS resource_name format as noted here go/condor-common-datamodel",
"type": "string"
},
"tagsSet": {
"$ref": "StorageDatabasecenterPartnerapiV1mainTags",
"description": "Optional. Tags associated with this resources."
},
"updationTime": {
"description": "The time at which the resource was updated and recorded at partner service.",
"format": "google-datetime",
Expand Down Expand Up @@ -4612,6 +4628,11 @@
"description": "Memory size in bytes. TODO(b/342344482, b/342346271) add proto validations again after bug fix.",
"format": "int64",
"type": "string"
},
"shardCount": {
"description": "Optional. Number of shards (if applicable).",
"format": "int32",
"type": "integer"
}
},
"type": "object"
Expand Down Expand Up @@ -4739,6 +4760,20 @@
},
"type": "object"
},
"StorageDatabasecenterPartnerapiV1mainTags": {
"description": "Message type for storing tags. Tags provide a way to create annotations for resources, and in some cases conditionally allow or deny policies based on whether a resource has a specific tag.",
"id": "StorageDatabasecenterPartnerapiV1mainTags",
"properties": {
"tags": {
"additionalProperties": {
"type": "string"
},
"description": "The Tag key/value mappings.",
"type": "object"
}
},
"type": "object"
},
"StorageDatabasecenterPartnerapiV1mainUserLabels": {
"description": "Message type for storing user labels. User labels are used to tag App Engine resources, allowing users to search for resources matching a set of labels and to aggregate usage data by labels.",
"id": "StorageDatabasecenterPartnerapiV1mainUserLabels",
Expand Down Expand Up @@ -5124,15 +5159,19 @@
"IN_PROGRESS",
"SUCCESS",
"FAILED",
"PARTIAL_SUCCESS"
"PARTIAL_SUCCESS",
"CANCEL_IN_PROGRESS",
"CANCELLED"
],
"enumDescriptions": [
"Unspecified status.",
"Not started.",
"In progress.",
"Operation succeeded.",
"Operation failed.",
"Operation partially succeeded."
"Operation partially succeeded.",
"Cancel is in progress.",
"Cancellation complete."
],
"type": "string"
}
Expand Down
39 changes: 38 additions & 1 deletion alloydb/v1alpha/alloydb-gen.go

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

Loading