Skip to content

Commit 2b6fa61

Browse files
feat(all): auto-regenerate discovery clients (#3118)
1 parent 1c0aadb commit 2b6fa61

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+4625
-2555
lines changed

alloydb/v1alpha/alloydb-api.json

Lines changed: 21 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1622,7 +1622,7 @@
16221622
}
16231623
}
16241624
},
1625-
"revision": "20250320",
1625+
"revision": "20250410",
16261626
"rootUrl": "https://alloydb.googleapis.com/",
16271627
"schemas": {
16281628
"AuthorizedNetwork": {
@@ -1699,6 +1699,12 @@
16991699
"readOnly": true,
17001700
"type": "string"
17011701
},
1702+
"createCompletionTime": {
1703+
"description": "Output only. Timestamp when the resource finished being created.",
1704+
"format": "google-datetime",
1705+
"readOnly": true,
1706+
"type": "string"
1707+
},
17021708
"createTime": {
17031709
"description": "Output only. Create time stamp",
17041710
"format": "google-datetime",
@@ -2051,7 +2057,8 @@
20512057
},
20522058
"geminiConfig": {
20532059
"$ref": "GeminiClusterConfig",
2054-
"description": "Optional. Configuration parameters related to the Gemini in Databases add-on."
2060+
"deprecated": true,
2061+
"description": "Optional. Deprecated and unused. This field will be removed in the near future."
20552062
},
20562063
"initialUser": {
20572064
"$ref": "UserPassword",
@@ -2330,7 +2337,7 @@
23302337
"type": "string"
23312338
},
23322339
"enable": {
2333-
"description": "Optional. Deprecated; Prefer 'enabled' as this will be removed soon. TODO(b/394996708) move to reserved once the field is removed from the gcloud client.",
2340+
"description": "Optional. Deprecated; Prefer 'enabled' as this will be removed soon.",
23342341
"type": "boolean"
23352342
},
23362343
"enabled": {
@@ -2672,23 +2679,25 @@
26722679
"type": "object"
26732680
},
26742681
"GeminiClusterConfig": {
2675-
"description": "Cluster level configuration parameters related to the Gemini in Databases add-on.",
2682+
"description": "Deprecated and unused. This field will be removed in the near future.",
26762683
"id": "GeminiClusterConfig",
26772684
"properties": {
26782685
"entitled": {
2679-
"description": "Output only. Whether the Gemini in Databases add-on is enabled for the cluster. It will be true only if the add-on has been enabled for the billing account corresponding to the cluster. Its status is toggled from the Admin Control Center (ACC) and cannot be toggled using AlloyDB's APIs.",
2686+
"deprecated": true,
2687+
"description": "Output only. Deprecated and unused. This field will be removed in the near future.",
26802688
"readOnly": true,
26812689
"type": "boolean"
26822690
}
26832691
},
26842692
"type": "object"
26852693
},
26862694
"GeminiInstanceConfig": {
2687-
"description": "Instance level configuration parameters related to the Gemini in Databases add-on.",
2695+
"description": "Deprecated and unused. This field will be removed in the near future.",
26882696
"id": "GeminiInstanceConfig",
26892697
"properties": {
26902698
"entitled": {
2691-
"description": "Output only. Whether the Gemini in Databases add-on is enabled for the instance. It will be true only if the add-on has been enabled for the billing account corresponding to the instance. Its status is toggled from the Admin Control Center (ACC) and cannot be toggled using AlloyDB's APIs.",
2699+
"deprecated": true,
2700+
"description": "Output only. Deprecated and unused. This field will be removed in the near future.",
26922701
"readOnly": true,
26932702
"type": "boolean"
26942703
}
@@ -2921,7 +2930,8 @@
29212930
},
29222931
"geminiConfig": {
29232932
"$ref": "GeminiInstanceConfig",
2924-
"description": "Optional. Configuration parameters related to the Gemini in Databases add-on."
2933+
"deprecated": true,
2934+
"description": "Optional. Deprecated and unused. This field will be removed in the near future."
29252935
},
29262936
"instanceType": {
29272937
"description": "Required. The type of the instance. Specified at creation time.",
@@ -3627,7 +3637,7 @@
36273637
"type": "string"
36283638
},
36293639
"consumerNetworkStatus": {
3630-
"description": "Output only. The status of the service connection policy.",
3640+
"description": "Output only. The status of the service connection policy. Possible values: \"STATE_UNSPECIFIED\" - Default state, when Connection Map is created initially. \"VALID\" - Set when policy and map configuration is valid, and their matching can lead to allowing creation of PSC Connections subject to other constraints like connections limit. \"CONNECTION_POLICY_MISSING\" - No Service Connection Policy found for this network and Service Class \"POLICY_LIMIT_REACHED\" - Service Connection Policy limit reached for this network and Service Class \"CONSUMER_INSTANCE_PROJECT_NOT_ALLOWLISTED\" - The consumer instance project is not in AllowedGoogleProducersResourceHierarchyLevels of the matching ServiceConnectionPolicy.",
36313641
"readOnly": true,
36323642
"type": "string"
36333643
},
@@ -3641,7 +3651,7 @@
36413651
"type": "string"
36423652
},
36433653
"status": {
3644-
"description": "Output only. The status of the PSC service automation connection.",
3654+
"description": "Output only. The status of the PSC service automation connection. Possible values: \"STATE_UNSPECIFIED\" - An invalid state as the default case. \"ACTIVE\" - The connection has been created successfully. \"FAILED\" - The connection is not functional since some resources on the connection fail to be created. \"CREATING\" - The connection is being created. \"DELETING\" - The connection is being deleted. \"CREATE_REPAIRING\" - The connection is being repaired to complete creation. \"DELETE_REPAIRING\" - The connection is being repaired to complete deletion.",
36453655
"readOnly": true,
36463656
"type": "string"
36473657
}
@@ -3815,7 +3825,7 @@
38153825
"type": "object"
38163826
},
38173827
"RestoreClusterRequest": {
3818-
"description": "Message for restoring a Cluster from a backup or another cluster at a given point in time.",
3828+
"description": "Message for restoring a Cluster from a backup or another cluster at a given point in time. NEXT_ID: 11",
38193829
"id": "RestoreClusterRequest",
38203830
"properties": {
38213831
"backupSource": {

alloydb/v1alpha/alloydb-gen.go

Lines changed: 33 additions & 20 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

alloydb/v1beta/alloydb-api.json

Lines changed: 21 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1619,7 +1619,7 @@
16191619
}
16201620
}
16211621
},
1622-
"revision": "20250320",
1622+
"revision": "20250410",
16231623
"rootUrl": "https://alloydb.googleapis.com/",
16241624
"schemas": {
16251625
"AuthorizedNetwork": {
@@ -1696,6 +1696,12 @@
16961696
"readOnly": true,
16971697
"type": "string"
16981698
},
1699+
"createCompletionTime": {
1700+
"description": "Output only. Timestamp when the resource finished being created.",
1701+
"format": "google-datetime",
1702+
"readOnly": true,
1703+
"type": "string"
1704+
},
16991705
"createTime": {
17001706
"description": "Output only. Create time stamp",
17011707
"format": "google-datetime",
@@ -2037,7 +2043,8 @@
20372043
},
20382044
"geminiConfig": {
20392045
"$ref": "GeminiClusterConfig",
2040-
"description": "Optional. Configuration parameters related to the Gemini in Databases add-on."
2046+
"deprecated": true,
2047+
"description": "Optional. Deprecated and unused. This field will be removed in the near future."
20412048
},
20422049
"initialUser": {
20432050
"$ref": "UserPassword",
@@ -2311,7 +2318,7 @@
23112318
"type": "string"
23122319
},
23132320
"enable": {
2314-
"description": "Optional. Deprecated; Prefer 'enabled' as this will be removed soon. TODO(b/394996708) move to reserved once the field is removed from the gcloud client.",
2321+
"description": "Optional. Deprecated; Prefer 'enabled' as this will be removed soon.",
23152322
"type": "boolean"
23162323
},
23172324
"enabled": {
@@ -2653,23 +2660,25 @@
26532660
"type": "object"
26542661
},
26552662
"GeminiClusterConfig": {
2656-
"description": "Cluster level configuration parameters related to the Gemini in Databases add-on.",
2663+
"description": "Deprecated and unused. This field will be removed in the near future.",
26572664
"id": "GeminiClusterConfig",
26582665
"properties": {
26592666
"entitled": {
2660-
"description": "Output only. Whether the Gemini in Databases add-on is enabled for the cluster. It will be true only if the add-on has been enabled for the billing account corresponding to the cluster. Its status is toggled from the Admin Control Center (ACC) and cannot be toggled using AlloyDB's APIs.",
2667+
"deprecated": true,
2668+
"description": "Output only. Deprecated and unused. This field will be removed in the near future.",
26612669
"readOnly": true,
26622670
"type": "boolean"
26632671
}
26642672
},
26652673
"type": "object"
26662674
},
26672675
"GeminiInstanceConfig": {
2668-
"description": "Instance level configuration parameters related to the Gemini in Databases add-on.",
2676+
"description": "Deprecated and unused. This field will be removed in the near future.",
26692677
"id": "GeminiInstanceConfig",
26702678
"properties": {
26712679
"entitled": {
2672-
"description": "Output only. Whether the Gemini in Databases add-on is enabled for the instance. It will be true only if the add-on has been enabled for the billing account corresponding to the instance. Its status is toggled from the Admin Control Center (ACC) and cannot be toggled using AlloyDB's APIs.",
2680+
"deprecated": true,
2681+
"description": "Output only. Deprecated and unused. This field will be removed in the near future.",
26732682
"readOnly": true,
26742683
"type": "boolean"
26752684
}
@@ -2902,7 +2911,8 @@
29022911
},
29032912
"geminiConfig": {
29042913
"$ref": "GeminiInstanceConfig",
2905-
"description": "Optional. Configuration parameters related to the Gemini in Databases add-on."
2914+
"deprecated": true,
2915+
"description": "Optional. Deprecated and unused. This field will be removed in the near future."
29062916
},
29072917
"instanceType": {
29082918
"description": "Required. The type of the instance. Specified at creation time.",
@@ -3603,7 +3613,7 @@
36033613
"type": "string"
36043614
},
36053615
"consumerNetworkStatus": {
3606-
"description": "Output only. The status of the service connection policy.",
3616+
"description": "Output only. The status of the service connection policy. Possible values: \"STATE_UNSPECIFIED\" - Default state, when Connection Map is created initially. \"VALID\" - Set when policy and map configuration is valid, and their matching can lead to allowing creation of PSC Connections subject to other constraints like connections limit. \"CONNECTION_POLICY_MISSING\" - No Service Connection Policy found for this network and Service Class \"POLICY_LIMIT_REACHED\" - Service Connection Policy limit reached for this network and Service Class \"CONSUMER_INSTANCE_PROJECT_NOT_ALLOWLISTED\" - The consumer instance project is not in AllowedGoogleProducersResourceHierarchyLevels of the matching ServiceConnectionPolicy.",
36073617
"readOnly": true,
36083618
"type": "string"
36093619
},
@@ -3617,7 +3627,7 @@
36173627
"type": "string"
36183628
},
36193629
"status": {
3620-
"description": "Output only. The status of the PSC service automation connection.",
3630+
"description": "Output only. The status of the PSC service automation connection. Possible values: \"STATE_UNSPECIFIED\" - An invalid state as the default case. \"ACTIVE\" - The connection has been created successfully. \"FAILED\" - The connection is not functional since some resources on the connection fail to be created. \"CREATING\" - The connection is being created. \"DELETING\" - The connection is being deleted. \"CREATE_REPAIRING\" - The connection is being repaired to complete creation. \"DELETE_REPAIRING\" - The connection is being repaired to complete deletion.",
36213631
"readOnly": true,
36223632
"type": "string"
36233633
}
@@ -3791,7 +3801,7 @@
37913801
"type": "object"
37923802
},
37933803
"RestoreClusterRequest": {
3794-
"description": "Message for restoring a Cluster from a backup or another cluster at a given point in time.",
3804+
"description": "Message for restoring a Cluster from a backup or another cluster at a given point in time. NEXT_ID: 11",
37953805
"id": "RestoreClusterRequest",
37963806
"properties": {
37973807
"backupSource": {

0 commit comments

Comments
 (0)