Skip to content

Commit 972ede2

Browse files
authoredJan 12, 2025··
feat(all): auto-regenerate discovery clients (#2958)
1 parent 473d170 commit 972ede2

15 files changed

+349
-153
lines changed
 

‎alloydb/v1beta/alloydb-api.json

+27-10
Original file line numberDiff line numberDiff line change
@@ -1570,7 +1570,7 @@
15701570
}
15711571
}
15721572
},
1573-
"revision": "20241204",
1573+
"revision": "20241228",
15741574
"rootUrl": "https://alloydb.googleapis.com/",
15751575
"schemas": {
15761576
"AuthorizedNetwork": {
@@ -3142,19 +3142,23 @@
31423142
"id": "Node",
31433143
"properties": {
31443144
"id": {
3145-
"description": "The identifier of the VM e.g. \"test-read-0601-407e52be-ms3l\".",
3145+
"description": "Output only. The identifier of the VM e.g. \"test-read-0601-407e52be-ms3l\".",
3146+
"readOnly": true,
31463147
"type": "string"
31473148
},
31483149
"ip": {
3149-
"description": "The private IP address of the VM e.g. \"10.57.0.34\".",
3150+
"description": "Output only. The private IP address of the VM e.g. \"10.57.0.34\".",
3151+
"readOnly": true,
31503152
"type": "string"
31513153
},
31523154
"state": {
3153-
"description": "Determined by state of the compute VM and postgres-service health. Compute VM state can have values listed in https://cloud.google.com/compute/docs/instances/instance-life-cycle and postgres-service health can have values: HEALTHY and UNHEALTHY.",
3155+
"description": "Output only. Determined by state of the compute VM and postgres-service health. Compute VM state can have values listed in https://cloud.google.com/compute/docs/instances/instance-life-cycle and postgres-service health can have values: HEALTHY and UNHEALTHY.",
3156+
"readOnly": true,
31543157
"type": "string"
31553158
},
31563159
"zoneId": {
3157-
"description": "The Compute Engine zone of the VM e.g. \"us-central1-b\".",
3160+
"description": "Output only. The Compute Engine zone of the VM e.g. \"us-central1-b\".",
3161+
"readOnly": true,
31583162
"type": "string"
31593163
}
31603164
},
@@ -4021,7 +4025,9 @@
40214025
"SIGNAL_TYPE_SUPERUSER_WRITING_TO_USER_TABLES",
40224026
"SIGNAL_TYPE_USER_GRANTED_ALL_PERMISSIONS",
40234027
"SIGNAL_TYPE_DATA_EXPORT_TO_EXTERNAL_CLOUD_STORAGE_BUCKET",
4024-
"SIGNAL_TYPE_DATA_EXPORT_TO_PUBLIC_CLOUD_STORAGE_BUCKET"
4028+
"SIGNAL_TYPE_DATA_EXPORT_TO_PUBLIC_CLOUD_STORAGE_BUCKET",
4029+
"SIGNAL_TYPE_WEAK_PASSWORD_HASH_ALGORITHM",
4030+
"SIGNAL_TYPE_NO_USER_PASSWORD_POLICY"
40254031
],
40264032
"enumDeprecated": [
40274033
false,
@@ -4102,6 +4108,8 @@
41024108
false,
41034109
false,
41044110
false,
4111+
false,
4112+
false,
41054113
false
41064114
],
41074115
"enumDescriptions": [
@@ -4183,7 +4191,9 @@
41834191
"Detects events where a Cloud SQL superuser (postgres for PostgreSQL servers or root for MySQL users) writes to non-system tables.",
41844192
"Detects events where a database user or role has been granted all privileges to a database, or to all tables, procedures, or functions in a schema.",
41854193
"Detects if database instance data exported to a Cloud Storage bucket outside of the organization.",
4186-
"Detects if database instance data exported to a Cloud Storage bucket that is owned by the organization and is publicly accessible."
4194+
"Detects if database instance data exported to a Cloud Storage bucket that is owned by the organization and is publicly accessible.",
4195+
"Detects if a database instance is using a weak password hash algorithm.",
4196+
"Detects if a database instance has no user password policy set."
41874197
],
41884198
"type": "string"
41894199
},
@@ -4554,7 +4564,9 @@
45544564
"SIGNAL_TYPE_SUPERUSER_WRITING_TO_USER_TABLES",
45554565
"SIGNAL_TYPE_USER_GRANTED_ALL_PERMISSIONS",
45564566
"SIGNAL_TYPE_DATA_EXPORT_TO_EXTERNAL_CLOUD_STORAGE_BUCKET",
4557-
"SIGNAL_TYPE_DATA_EXPORT_TO_PUBLIC_CLOUD_STORAGE_BUCKET"
4567+
"SIGNAL_TYPE_DATA_EXPORT_TO_PUBLIC_CLOUD_STORAGE_BUCKET",
4568+
"SIGNAL_TYPE_WEAK_PASSWORD_HASH_ALGORITHM",
4569+
"SIGNAL_TYPE_NO_USER_PASSWORD_POLICY"
45584570
],
45594571
"enumDeprecated": [
45604572
false,
@@ -4635,6 +4647,8 @@
46354647
false,
46364648
false,
46374649
false,
4650+
false,
4651+
false,
46384652
false
46394653
],
46404654
"enumDescriptions": [
@@ -4716,7 +4730,9 @@
47164730
"Detects events where a Cloud SQL superuser (postgres for PostgreSQL servers or root for MySQL users) writes to non-system tables.",
47174731
"Detects events where a database user or role has been granted all privileges to a database, or to all tables, procedures, or functions in a schema.",
47184732
"Detects if database instance data exported to a Cloud Storage bucket outside of the organization.",
4719-
"Detects if database instance data exported to a Cloud Storage bucket that is owned by the organization and is publicly accessible."
4733+
"Detects if database instance data exported to a Cloud Storage bucket that is owned by the organization and is publicly accessible.",
4734+
"Detects if a database instance is using a weak password hash algorithm.",
4735+
"Detects if a database instance has no user password policy set."
47204736
],
47214737
"type": "string"
47224738
}
@@ -4786,7 +4802,8 @@
47864802
"id": "StorageDatabasecenterPartnerapiV1mainMachineConfiguration",
47874803
"properties": {
47884804
"cpuCount": {
4789-
"description": "The number of CPUs. TODO(b/342344482, b/342346271) add proto validations again after bug fix.",
4805+
"deprecated": true,
4806+
"description": "The number of CPUs. Deprecated. Use vcpu_count instead. TODO(b/342344482, b/342346271) add proto validations again after bug fix.",
47904807
"format": "int32",
47914808
"type": "integer"
47924809
},

‎alloydb/v1beta/alloydb-gen.go

+16-7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎cloudkms/v1/cloudkms-api.json

+6-1
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,11 @@
9898
"description": "Regional Endpoint",
9999
"endpointUrl": "https://cloudkms.us-south1.rep.googleapis.com/",
100100
"location": "us-south1"
101+
},
102+
{
103+
"description": "Regional Endpoint",
104+
"endpointUrl": "https://cloudkms.us.rep.googleapis.com/",
105+
"location": "us"
101106
}
102107
],
103108
"fullyEncodeReservedExpansion": true,
@@ -2132,7 +2137,7 @@
21322137
}
21332138
}
21342139
},
2135-
"revision": "20241111",
2140+
"revision": "20250102",
21362141
"rootUrl": "https://cloudkms.googleapis.com/",
21372142
"schemas": {
21382143
"AsymmetricDecryptRequest": {

‎container/v1/container-api.json

+31-1
Original file line numberDiff line numberDiff line change
@@ -2540,7 +2540,7 @@
25402540
}
25412541
}
25422542
},
2543-
"revision": "20241203",
2543+
"revision": "20241228",
25442544
"rootUrl": "https://container.googleapis.com/",
25452545
"schemas": {
25462546
"AcceleratorConfig": {
@@ -3628,6 +3628,10 @@
36283628
"$ref": "DefaultSnatStatus",
36293629
"description": "The desired status of whether to disable default sNAT for this cluster."
36303630
},
3631+
"desiredDisableL4LbFirewallReconciliation": {
3632+
"description": "Enable/Disable L4 LB VPC firewall reconciliation for the cluster.",
3633+
"type": "boolean"
3634+
},
36313635
"desiredDnsConfig": {
36323636
"$ref": "DNSConfig",
36333637
"description": "DNSConfig contains clusterDNS config for this cluster."
@@ -5358,6 +5362,10 @@
53585362
"$ref": "DefaultSnatStatus",
53595363
"description": "Whether the cluster disables default in-node sNAT rules. In-node sNAT rules will be disabled when default_snat_status is disabled. When disabled is set to false, default IP masquerade rules will be applied to the nodes to prevent sNAT on cluster internal traffic."
53605364
},
5365+
"disableL4LbFirewallReconciliation": {
5366+
"description": "Disable L4 load balancer VPC firewalls to enable firewall policies.",
5367+
"type": "boolean"
5368+
},
53615369
"dnsConfig": {
53625370
"$ref": "DNSConfig",
53635371
"description": "DNSConfig contains clusterDNS config for this cluster."
@@ -8024,6 +8032,23 @@
80248032
"format": "google-datetime",
80258033
"type": "string"
80268034
},
8035+
"eventType": {
8036+
"description": "The type of the event.",
8037+
"enum": [
8038+
"EVENT_TYPE_UNSPECIFIED",
8039+
"END_OF_SUPPORT"
8040+
],
8041+
"enumDescriptions": [
8042+
"EVENT_TYPE_UNSPECIFIED indicates the event type is unspecified.",
8043+
"END_OF_SUPPORT indicates GKE version reaches end of support, check standard_support_end_time and extended_support_end_time for more details."
8044+
],
8045+
"type": "string"
8046+
},
8047+
"extendedSupportEndTime": {
8048+
"description": "The end of extended support timestamp.",
8049+
"format": "google-datetime",
8050+
"type": "string"
8051+
},
80278052
"operation": {
80288053
"description": "The operation associated with this upgrade.",
80298054
"type": "string"
@@ -8046,6 +8071,11 @@
80468071
],
80478072
"type": "string"
80488073
},
8074+
"standardSupportEndTime": {
8075+
"description": "The end of standard support timestamp.",
8076+
"format": "google-datetime",
8077+
"type": "string"
8078+
},
80498079
"startTime": {
80508080
"description": "The time when the operation was started.",
80518081
"format": "google-datetime",

‎container/v1/container-gen.go

+19
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎container/v1beta1/container-api.json

+31-1
Original file line numberDiff line numberDiff line change
@@ -2685,7 +2685,7 @@
26852685
}
26862686
}
26872687
},
2688-
"revision": "20241203",
2688+
"revision": "20241228",
26892689
"rootUrl": "https://container.googleapis.com/",
26902690
"schemas": {
26912691
"AcceleratorConfig": {
@@ -3944,6 +3944,10 @@
39443944
"$ref": "DefaultSnatStatus",
39453945
"description": "The desired status of whether to disable default sNAT for this cluster."
39463946
},
3947+
"desiredDisableL4LbFirewallReconciliation": {
3948+
"description": "Enable/Disable L4 LB VPC firewall reconciliation for the cluster.",
3949+
"type": "boolean"
3950+
},
39473951
"desiredDnsConfig": {
39483952
"$ref": "DNSConfig",
39493953
"description": "DNSConfig contains clusterDNS config for this cluster."
@@ -5962,6 +5966,10 @@
59625966
"$ref": "DefaultSnatStatus",
59635967
"description": "Whether the cluster disables default in-node sNAT rules. In-node sNAT rules will be disabled when default_snat_status is disabled. When disabled is set to false, default IP masquerade rules will be applied to the nodes to prevent sNAT on cluster internal traffic."
59645968
},
5969+
"disableL4LbFirewallReconciliation": {
5970+
"description": "Disable L4 load balancer VPC firewalls to enable firewall policies.",
5971+
"type": "boolean"
5972+
},
59655973
"dnsConfig": {
59665974
"$ref": "DNSConfig",
59675975
"description": "DNSConfig contains clusterDNS config for this cluster."
@@ -8899,6 +8907,23 @@
88998907
"format": "google-datetime",
89008908
"type": "string"
89018909
},
8910+
"eventType": {
8911+
"description": "The type of the event.",
8912+
"enum": [
8913+
"EVENT_TYPE_UNSPECIFIED",
8914+
"END_OF_SUPPORT"
8915+
],
8916+
"enumDescriptions": [
8917+
"EVENT_TYPE_UNSPECIFIED indicates the event type is unspecified.",
8918+
"END_OF_SUPPORT indicates GKE version reaches end of support, check standard_support_end_time and extended_support_end_time for more details."
8919+
],
8920+
"type": "string"
8921+
},
8922+
"extendedSupportEndTime": {
8923+
"description": "The end of extended support timestamp.",
8924+
"format": "google-datetime",
8925+
"type": "string"
8926+
},
89028927
"operation": {
89038928
"description": "The operation associated with this upgrade.",
89048929
"type": "string"
@@ -8921,6 +8946,11 @@
89218946
],
89228947
"type": "string"
89238948
},
8949+
"standardSupportEndTime": {
8950+
"description": "The end of standard support timestamp.",
8951+
"format": "google-datetime",
8952+
"type": "string"
8953+
},
89248954
"startTime": {
89258955
"description": "The time when the operation was started.",
89268956
"format": "google-datetime",

0 commit comments

Comments
 (0)
Please sign in to comment.