Skip to content

Commit 34102ae

Browse files
feat(all): auto-regenerate discovery clients (#2796)
1 parent d0e0dc3 commit 34102ae

File tree

4 files changed

+121
-49
lines changed

4 files changed

+121
-49
lines changed

‎alloydb/v1beta/alloydb-api.json

Lines changed: 49 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1514,7 +1514,7 @@
15141514
}
15151515
}
15161516
},
1517-
"revision": "20240828",
1517+
"revision": "20240909",
15181518
"rootUrl": "https://alloydb.googleapis.com/",
15191519
"schemas": {
15201520
"AuthorizedNetwork": {
@@ -2124,15 +2124,19 @@
21242124
"IN_PROGRESS",
21252125
"SUCCESS",
21262126
"FAILED",
2127-
"PARTIAL_SUCCESS"
2127+
"PARTIAL_SUCCESS",
2128+
"CANCEL_IN_PROGRESS",
2129+
"CANCELLED"
21282130
],
21292131
"enumDescriptions": [
21302132
"Unspecified status.",
21312133
"Not started.",
21322134
"In progress.",
21332135
"Operation succeeded.",
21342136
"Operation failed.",
2135-
"Operation partially succeeded."
2137+
"Operation partially succeeded.",
2138+
"Cancel is in progress.",
2139+
"Cancellation complete."
21362140
],
21372141
"type": "string"
21382142
}
@@ -2715,15 +2719,19 @@
27152719
"IN_PROGRESS",
27162720
"SUCCESS",
27172721
"FAILED",
2718-
"PARTIAL_SUCCESS"
2722+
"PARTIAL_SUCCESS",
2723+
"CANCEL_IN_PROGRESS",
2724+
"CANCELLED"
27192725
],
27202726
"enumDescriptions": [
27212727
"Unspecified status.",
27222728
"Not started.",
27232729
"In progress.",
27242730
"Operation succeeded.",
27252731
"Operation failed.",
2726-
"Operation partially succeeded."
2732+
"Operation partially succeeded.",
2733+
"Cancel is in progress.",
2734+
"Cancellation complete."
27272735
],
27282736
"type": "string"
27292737
}
@@ -3437,15 +3445,19 @@
34373445
"IN_PROGRESS",
34383446
"SUCCESS",
34393447
"FAILED",
3440-
"PARTIAL_SUCCESS"
3448+
"PARTIAL_SUCCESS",
3449+
"CANCEL_IN_PROGRESS",
3450+
"CANCELLED"
34413451
],
34423452
"enumDescriptions": [
34433453
"Unspecified status.",
34443454
"Not started.",
34453455
"In progress.",
34463456
"Operation succeeded.",
34473457
"Operation failed.",
3448-
"Operation partially succeeded."
3458+
"Operation partially succeeded.",
3459+
"Cancel is in progress.",
3460+
"Cancellation complete."
34493461
],
34503462
"type": "string"
34513463
}
@@ -4063,7 +4075,7 @@
40634075
"type": "object"
40644076
},
40654077
"StorageDatabasecenterPartnerapiV1mainDatabaseResourceMetadata": {
4066-
"description": "Common model for database resource instance metadata.",
4078+
"description": "Common model for database resource instance metadata. Next ID: 21",
40674079
"id": "StorageDatabasecenterPartnerapiV1mainDatabaseResourceMetadata",
40684080
"properties": {
40694081
"availabilityConfiguration": {
@@ -4202,6 +4214,10 @@
42024214
"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",
42034215
"type": "string"
42044216
},
4217+
"tagsSet": {
4218+
"$ref": "StorageDatabasecenterPartnerapiV1mainTags",
4219+
"description": "Optional. Tags associated with this resources."
4220+
},
42054221
"updationTime": {
42064222
"description": "The time at which the resource was updated and recorded at partner service.",
42074223
"format": "google-datetime",
@@ -4588,6 +4604,11 @@
45884604
"description": "Memory size in bytes. TODO(b/342344482, b/342346271) add proto validations again after bug fix.",
45894605
"format": "int64",
45904606
"type": "string"
4607+
},
4608+
"shardCount": {
4609+
"description": "Optional. Number of shards (if applicable).",
4610+
"format": "int32",
4611+
"type": "integer"
45914612
}
45924613
},
45934614
"type": "object"
@@ -4715,6 +4736,20 @@
47154736
},
47164737
"type": "object"
47174738
},
4739+
"StorageDatabasecenterPartnerapiV1mainTags": {
4740+
"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.",
4741+
"id": "StorageDatabasecenterPartnerapiV1mainTags",
4742+
"properties": {
4743+
"tags": {
4744+
"additionalProperties": {
4745+
"type": "string"
4746+
},
4747+
"description": "The Tag key/value mappings.",
4748+
"type": "object"
4749+
}
4750+
},
4751+
"type": "object"
4752+
},
47184753
"StorageDatabasecenterPartnerapiV1mainUserLabels": {
47194754
"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.",
47204755
"id": "StorageDatabasecenterPartnerapiV1mainUserLabels",
@@ -5100,15 +5135,19 @@
51005135
"IN_PROGRESS",
51015136
"SUCCESS",
51025137
"FAILED",
5103-
"PARTIAL_SUCCESS"
5138+
"PARTIAL_SUCCESS",
5139+
"CANCEL_IN_PROGRESS",
5140+
"CANCELLED"
51045141
],
51055142
"enumDescriptions": [
51065143
"Unspecified status.",
51075144
"Not started.",
51085145
"In progress.",
51095146
"Operation succeeded.",
51105147
"Operation failed.",
5111-
"Operation partially succeeded."
5148+
"Operation partially succeeded.",
5149+
"Cancel is in progress.",
5150+
"Cancellation complete."
51125151
],
51135152
"type": "string"
51145153
}

‎alloydb/v1beta/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.

‎redis/v1/redis-api.json

Lines changed: 17 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -849,7 +849,7 @@
849849
}
850850
}
851851
},
852-
"revision": "20240904",
852+
"revision": "20240918",
853853
"rootUrl": "https://redis.googleapis.com/",
854854
"schemas": {
855855
"AOFConfig": {
@@ -1131,7 +1131,7 @@
11311131
"REDIS_STANDARD_SMALL"
11321132
],
11331133
"enumDescriptions": [
1134-
"",
1134+
"Node type unspecified",
11351135
"Redis shared core nano node_type.",
11361136
"Redis highmem medium node_type.",
11371137
"Redis highmem xlarge node_type.",
@@ -1157,7 +1157,7 @@
11571157
"type": "array"
11581158
},
11591159
"pscConnections": {
1160-
"description": "Output only. PSC connections for discovery of the cluster topology and accessing the cluster.",
1160+
"description": "Output only. The list of PSC connections that are auto-created through service connectivity automation.",
11611161
"items": {
11621162
"$ref": "PscConnection"
11631163
},
@@ -1273,12 +1273,6 @@
12731273
"readOnly": true,
12741274
"type": "string"
12751275
},
1276-
"scheduleDeadlineTime": {
1277-
"description": "Output only. The deadline that the maintenance schedule start time can not go beyond, including reschedule.",
1278-
"format": "google-datetime",
1279-
"readOnly": true,
1280-
"type": "string"
1281-
},
12821276
"startTime": {
12831277
"description": "Output only. The start time of any upcoming scheduled maintenance for this instance.",
12841278
"format": "google-datetime",
@@ -1347,11 +1341,6 @@
13471341
],
13481342
"type": "string"
13491343
},
1350-
"duration": {
1351-
"description": "Duration of the time window.",
1352-
"format": "google-duration",
1353-
"type": "string"
1354-
},
13551344
"startTime": {
13561345
"$ref": "TimeOfDay",
13571346
"description": "Start time of the window in UTC."
@@ -3186,6 +3175,11 @@
31863175
"description": "Memory size in bytes. TODO(b/342344482, b/342346271) add proto validations again after bug fix.",
31873176
"format": "int64",
31883177
"type": "string"
3178+
},
3179+
"shardCount": {
3180+
"description": "Optional. Number of shards (if applicable).",
3181+
"format": "int32",
3182+
"type": "integer"
31893183
}
31903184
},
31913185
"type": "object"
@@ -3674,27 +3668,27 @@
36743668
"id": "PscConnection",
36753669
"properties": {
36763670
"address": {
3677-
"description": "Output only. The IP allocated on the consumer network for the PSC forwarding rule.",
3678-
"readOnly": true,
3671+
"description": "Required. The IP allocated on the consumer network for the PSC forwarding rule.",
36793672
"type": "string"
36803673
},
36813674
"forwardingRule": {
3682-
"description": "Output only. The URI of the consumer side forwarding rule. Example: projects/{projectNumOrId}/regions/us-east1/forwardingRules/{resourceId}.",
3683-
"readOnly": true,
3675+
"description": "Required. The URI of the consumer side forwarding rule. Example: projects/{projectNumOrId}/regions/us-east1/forwardingRules/{resourceId}.",
36843676
"type": "string"
36853677
},
36863678
"network": {
3687-
"description": "The consumer network where the IP address resides, in the form of projects/{project_id}/global/networks/{network_id}.",
3679+
"description": "Required. The consumer network where the IP address resides, in the form of projects/{project_id}/global/networks/{network_id}.",
36883680
"type": "string"
36893681
},
36903682
"projectId": {
3691-
"description": "Output only. The consumer project_id where the forwarding rule is created from.",
3692-
"readOnly": true,
3683+
"description": "Optional. Project ID of the consumer project where the forwarding rule is created in.",
36933684
"type": "string"
36943685
},
36953686
"pscConnectionId": {
3696-
"description": "Output only. The PSC connection id of the forwarding rule connected to the service attachment.",
3697-
"readOnly": true,
3687+
"description": "Optional. The PSC connection id of the forwarding rule connected to the service attachment.",
3688+
"type": "string"
3689+
},
3690+
"serviceAttachment": {
3691+
"description": "Required. The service attachment which is the target of the PSC connection, in the form of projects/{project-id}/regions/{region}/serviceAttachments/{service-attachment-id}.",
36983692
"type": "string"
36993693
}
37003694
},

0 commit comments

Comments
 (0)