Skip to content

Commit 68a04ad

Browse files
fix!: [google-cloud-alloydb] deprecated various PSC instance configuration fields (#13257)
- [ ] Regenerate this pull request now. BEGIN_COMMIT_OVERRIDE feat: add new PSC instance configuration setting and output the PSC DNS name feat: add new API to upgrade a cluster feat: add new API to execute SQL statements feat: add new cluster and instance level configurations to interact with Gemini feat: add support for Free Trials feat: add support to schedule maintenance feat: additional field to set tags on a backup or cluster feat: add more observability options on the Instance level feat: add new API to perform a promotion or switchover on secondary instances feat: add new CloudSQL backup resource feat: support for obtaining the public ip addresses of an instance and enabling outbound public ip feat: add optional field to keep extra roles on a user if it already exists docs: various typo fixes, correcting the formatting, and clarifications on the request_id and validate_only fields in API requests and on the page_size when listing the database fix!: deprecated various PSC instance configuration fields END_COMMIT_OVERRIDE PiperOrigin-RevId: 694626053 Source-Link: googleapis/googleapis@c72f219 Source-Link: googleapis/googleapis-gen@ba9e7c8 Copy-Tag: eyJwIjoicGFja2FnZXMvZ29vZ2xlLWNsb3VkLWFsbG95ZGIvLk93bEJvdC55YW1sIiwiaCI6ImJhOWU3Yzg3OTA2NjIzMjM2MGFjNjZkOWMyYzc0ZjI3ZTg2ZTdkNDQifQ== BEGIN_NESTED_COMMIT fix!: [google-cloud-alloydb] deprecated various PSC instance configuration fields feat: add new PSC instance configuration setting and output the PSC DNS name feat: add new API to upgrade a cluster feat: add new API to execute SQL statements feat: add new cluster and instance level configurations to interact with Gemini feat: add support for Free Trials feat: add support to schedule maintenance feat: additional field to set tags on a backup or cluster feat: add more observability options on the Instance level feat: add new API to perform a promotion or switchover on secondary instances feat: add new CloudSQL backup resource feat: support for obtaining the public ip addresses of an instance and enabling outbound public ip feat: add optional field to keep extra roles on a user if it already exists docs: various typo fixes, correcting the formatting, and clarifications on the request_id and validate_only fields in API requests and on the page_size when listing the database PiperOrigin-RevId: 694277265 Source-Link: googleapis/googleapis@f9f62cb Source-Link: googleapis/googleapis-gen@c94213d Copy-Tag: eyJwIjoicGFja2FnZXMvZ29vZ2xlLWNsb3VkLWFsbG95ZGIvLk93bEJvdC55YW1sIiwiaCI6ImM5NDIxM2RlOThjZmEzYmE1MTM5OTE4MDJhMTQyOTAxYTNkZWQxYzUifQ== END_NESTED_COMMIT --------- Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
1 parent 826abc1 commit 68a04ad

File tree

53 files changed

+20052
-7889
lines changed

Some content is hidden

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

53 files changed

+20052
-7889
lines changed

packages/google-cloud-alloydb/google/cloud/alloydb/gapic_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@
1313
# See the License for the specific language governing permissions and
1414
# limitations under the License.
1515
#
16-
__version__ = "0.3.16" # {x-release-please-version}
16+
__version__ = "0.0.0" # {x-release-please-version}

packages/google-cloud-alloydb/google/cloud/alloydb_v1/gapic_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@
1313
# See the License for the specific language governing permissions and
1414
# limitations under the License.
1515
#
16-
__version__ = "0.3.16" # {x-release-please-version}
16+
__version__ = "0.0.0" # {x-release-please-version}

packages/google-cloud-alloydb/google/cloud/alloydb_v1alpha/__init__.py

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@
1919

2020

2121
from .services.alloy_db_admin import AlloyDBAdminAsyncClient, AlloyDBAdminClient
22+
from .types.csql_resources import CloudSQLBackupRunSource
23+
from .types.data_model import SqlResult, SqlResultColumn, SqlResultRow, SqlResultValue
24+
from .types.gemini import GeminiClusterConfig, GeminiInstanceConfig
2225
from .types.resources import (
2326
AutomatedBackupPolicy,
2427
Backup,
@@ -35,8 +38,11 @@
3538
EncryptionInfo,
3639
Instance,
3740
InstanceView,
41+
MaintenanceSchedule,
42+
MaintenanceUpdatePolicy,
3843
MigrationSource,
3944
SslConfig,
45+
SubscriptionType,
4046
SupportedDatabaseFlag,
4147
User,
4248
UserPassword,
@@ -57,6 +63,9 @@
5763
DeleteClusterRequest,
5864
DeleteInstanceRequest,
5965
DeleteUserRequest,
66+
ExecuteSqlMetadata,
67+
ExecuteSqlRequest,
68+
ExecuteSqlResponse,
6069
FailoverInstanceRequest,
6170
GenerateClientCertificateRequest,
6271
GenerateClientCertificateResponse,
@@ -80,12 +89,17 @@
8089
ListUsersResponse,
8190
OperationMetadata,
8291
PromoteClusterRequest,
92+
PromoteClusterStatus,
8393
RestartInstanceRequest,
8494
RestoreClusterRequest,
95+
SwitchoverClusterRequest,
8596
UpdateBackupRequest,
8697
UpdateClusterRequest,
8798
UpdateInstanceRequest,
8899
UpdateUserRequest,
100+
UpgradeClusterRequest,
101+
UpgradeClusterResponse,
102+
UpgradeClusterStatus,
89103
)
90104

91105
__all__ = (
@@ -98,6 +112,7 @@
98112
"BatchCreateInstancesMetadata",
99113
"BatchCreateInstancesRequest",
100114
"BatchCreateInstancesResponse",
115+
"CloudSQLBackupRunSource",
101116
"Cluster",
102117
"ClusterView",
103118
"ConnectionInfo",
@@ -119,7 +134,12 @@
119134
"DeleteUserRequest",
120135
"EncryptionConfig",
121136
"EncryptionInfo",
137+
"ExecuteSqlMetadata",
138+
"ExecuteSqlRequest",
139+
"ExecuteSqlResponse",
122140
"FailoverInstanceRequest",
141+
"GeminiClusterConfig",
142+
"GeminiInstanceConfig",
123143
"GenerateClientCertificateRequest",
124144
"GenerateClientCertificateResponse",
125145
"GetBackupRequest",
@@ -142,17 +162,29 @@
142162
"ListSupportedDatabaseFlagsResponse",
143163
"ListUsersRequest",
144164
"ListUsersResponse",
165+
"MaintenanceSchedule",
166+
"MaintenanceUpdatePolicy",
145167
"MigrationSource",
146168
"OperationMetadata",
147169
"PromoteClusterRequest",
170+
"PromoteClusterStatus",
148171
"RestartInstanceRequest",
149172
"RestoreClusterRequest",
173+
"SqlResult",
174+
"SqlResultColumn",
175+
"SqlResultRow",
176+
"SqlResultValue",
150177
"SslConfig",
178+
"SubscriptionType",
151179
"SupportedDatabaseFlag",
180+
"SwitchoverClusterRequest",
152181
"UpdateBackupRequest",
153182
"UpdateClusterRequest",
154183
"UpdateInstanceRequest",
155184
"UpdateUserRequest",
185+
"UpgradeClusterRequest",
186+
"UpgradeClusterResponse",
187+
"UpgradeClusterStatus",
156188
"User",
157189
"UserPassword",
158190
)

packages/google-cloud-alloydb/google/cloud/alloydb_v1alpha/gapic_metadata.json

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,11 @@
6565
"delete_user"
6666
]
6767
},
68+
"ExecuteSql": {
69+
"methods": [
70+
"execute_sql"
71+
]
72+
},
6873
"FailoverInstance": {
6974
"methods": [
7075
"failover_instance"
@@ -150,6 +155,11 @@
150155
"restore_cluster"
151156
]
152157
},
158+
"SwitchoverCluster": {
159+
"methods": [
160+
"switchover_cluster"
161+
]
162+
},
153163
"UpdateBackup": {
154164
"methods": [
155165
"update_backup"
@@ -169,6 +179,11 @@
169179
"methods": [
170180
"update_user"
171181
]
182+
},
183+
"UpgradeCluster": {
184+
"methods": [
185+
"upgrade_cluster"
186+
]
172187
}
173188
}
174189
},
@@ -230,6 +245,11 @@
230245
"delete_user"
231246
]
232247
},
248+
"ExecuteSql": {
249+
"methods": [
250+
"execute_sql"
251+
]
252+
},
233253
"FailoverInstance": {
234254
"methods": [
235255
"failover_instance"
@@ -315,6 +335,11 @@
315335
"restore_cluster"
316336
]
317337
},
338+
"SwitchoverCluster": {
339+
"methods": [
340+
"switchover_cluster"
341+
]
342+
},
318343
"UpdateBackup": {
319344
"methods": [
320345
"update_backup"
@@ -334,6 +359,11 @@
334359
"methods": [
335360
"update_user"
336361
]
362+
},
363+
"UpgradeCluster": {
364+
"methods": [
365+
"upgrade_cluster"
366+
]
337367
}
338368
}
339369
},
@@ -395,6 +425,11 @@
395425
"delete_user"
396426
]
397427
},
428+
"ExecuteSql": {
429+
"methods": [
430+
"execute_sql"
431+
]
432+
},
398433
"FailoverInstance": {
399434
"methods": [
400435
"failover_instance"
@@ -480,6 +515,11 @@
480515
"restore_cluster"
481516
]
482517
},
518+
"SwitchoverCluster": {
519+
"methods": [
520+
"switchover_cluster"
521+
]
522+
},
483523
"UpdateBackup": {
484524
"methods": [
485525
"update_backup"
@@ -499,6 +539,11 @@
499539
"methods": [
500540
"update_user"
501541
]
542+
},
543+
"UpgradeCluster": {
544+
"methods": [
545+
"upgrade_cluster"
546+
]
502547
}
503548
}
504549
}

packages/google-cloud-alloydb/google/cloud/alloydb_v1alpha/gapic_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@
1313
# See the License for the specific language governing permissions and
1414
# limitations under the License.
1515
#
16-
__version__ = "0.3.16" # {x-release-please-version}
16+
__version__ = "0.0.0" # {x-release-please-version}

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy