Skip to content

Commit ac7c6de

Browse files
feat(all): auto-regenerate discovery clients (#2793)
1 parent bd9630a commit ac7c6de

35 files changed

+2849
-913
lines changed

alloydb/v1alpha/alloydb-api.json

Lines changed: 49 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1517,7 +1517,7 @@
15171517
}
15181518
}
15191519
},
1520-
"revision": "20240828",
1520+
"revision": "20240909",
15211521
"rootUrl": "https://alloydb.googleapis.com/",
15221522
"schemas": {
15231523
"AuthorizedNetwork": {
@@ -2143,15 +2143,19 @@
21432143
"IN_PROGRESS",
21442144
"SUCCESS",
21452145
"FAILED",
2146-
"PARTIAL_SUCCESS"
2146+
"PARTIAL_SUCCESS",
2147+
"CANCEL_IN_PROGRESS",
2148+
"CANCELLED"
21472149
],
21482150
"enumDescriptions": [
21492151
"Unspecified status.",
21502152
"Not started.",
21512153
"In progress.",
21522154
"Operation succeeded.",
21532155
"Operation failed.",
2154-
"Operation partially succeeded."
2156+
"Operation partially succeeded.",
2157+
"Cancel is in progress.",
2158+
"Cancellation complete."
21552159
],
21562160
"type": "string"
21572161
}
@@ -2739,15 +2743,19 @@
27392743
"IN_PROGRESS",
27402744
"SUCCESS",
27412745
"FAILED",
2742-
"PARTIAL_SUCCESS"
2746+
"PARTIAL_SUCCESS",
2747+
"CANCEL_IN_PROGRESS",
2748+
"CANCELLED"
27432749
],
27442750
"enumDescriptions": [
27452751
"Unspecified status.",
27462752
"Not started.",
27472753
"In progress.",
27482754
"Operation succeeded.",
27492755
"Operation failed.",
2750-
"Operation partially succeeded."
2756+
"Operation partially succeeded.",
2757+
"Cancel is in progress.",
2758+
"Cancellation complete."
27512759
],
27522760
"type": "string"
27532761
}
@@ -3461,15 +3469,19 @@
34613469
"IN_PROGRESS",
34623470
"SUCCESS",
34633471
"FAILED",
3464-
"PARTIAL_SUCCESS"
3472+
"PARTIAL_SUCCESS",
3473+
"CANCEL_IN_PROGRESS",
3474+
"CANCELLED"
34653475
],
34663476
"enumDescriptions": [
34673477
"Unspecified status.",
34683478
"Not started.",
34693479
"In progress.",
34703480
"Operation succeeded.",
34713481
"Operation failed.",
3472-
"Operation partially succeeded."
3482+
"Operation partially succeeded.",
3483+
"Cancel is in progress.",
3484+
"Cancellation complete."
34733485
],
34743486
"type": "string"
34753487
}
@@ -4087,7 +4099,7 @@
40874099
"type": "object"
40884100
},
40894101
"StorageDatabasecenterPartnerapiV1mainDatabaseResourceMetadata": {
4090-
"description": "Common model for database resource instance metadata.",
4102+
"description": "Common model for database resource instance metadata. Next ID: 21",
40914103
"id": "StorageDatabasecenterPartnerapiV1mainDatabaseResourceMetadata",
40924104
"properties": {
40934105
"availabilityConfiguration": {
@@ -4226,6 +4238,10 @@
42264238
"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",
42274239
"type": "string"
42284240
},
4241+
"tagsSet": {
4242+
"$ref": "StorageDatabasecenterPartnerapiV1mainTags",
4243+
"description": "Optional. Tags associated with this resources."
4244+
},
42294245
"updationTime": {
42304246
"description": "The time at which the resource was updated and recorded at partner service.",
42314247
"format": "google-datetime",
@@ -4612,6 +4628,11 @@
46124628
"description": "Memory size in bytes. TODO(b/342344482, b/342346271) add proto validations again after bug fix.",
46134629
"format": "int64",
46144630
"type": "string"
4631+
},
4632+
"shardCount": {
4633+
"description": "Optional. Number of shards (if applicable).",
4634+
"format": "int32",
4635+
"type": "integer"
46154636
}
46164637
},
46174638
"type": "object"
@@ -4739,6 +4760,20 @@
47394760
},
47404761
"type": "object"
47414762
},
4763+
"StorageDatabasecenterPartnerapiV1mainTags": {
4764+
"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.",
4765+
"id": "StorageDatabasecenterPartnerapiV1mainTags",
4766+
"properties": {
4767+
"tags": {
4768+
"additionalProperties": {
4769+
"type": "string"
4770+
},
4771+
"description": "The Tag key/value mappings.",
4772+
"type": "object"
4773+
}
4774+
},
4775+
"type": "object"
4776+
},
47424777
"StorageDatabasecenterPartnerapiV1mainUserLabels": {
47434778
"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.",
47444779
"id": "StorageDatabasecenterPartnerapiV1mainUserLabels",
@@ -5124,15 +5159,19 @@
51245159
"IN_PROGRESS",
51255160
"SUCCESS",
51265161
"FAILED",
5127-
"PARTIAL_SUCCESS"
5162+
"PARTIAL_SUCCESS",
5163+
"CANCEL_IN_PROGRESS",
5164+
"CANCELLED"
51285165
],
51295166
"enumDescriptions": [
51305167
"Unspecified status.",
51315168
"Not started.",
51325169
"In progress.",
51335170
"Operation succeeded.",
51345171
"Operation failed.",
5135-
"Operation partially succeeded."
5172+
"Operation partially succeeded.",
5173+
"Cancel is in progress.",
5174+
"Cancellation complete."
51365175
],
51375176
"type": "string"
51385177
}

alloydb/v1alpha/alloydb-gen.go

Lines changed: 38 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)