google-apis-alloydb_v1beta 0.41.0 → 0.43.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 96be34022447da7f56a9cd46f69a773f0df03791a04e16deeba40e293cbcd193
|
|
4
|
+
data.tar.gz: d4cb43759e5d173331956bf30c4f1b2693f550d6c998c08ef8d1477b299855e9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 524a5e52708b3a5f64b0534a6a3f2c00e8ad1a92ff6f1008678f00ad5dea8eacdc7eb5b307959af3a0e2cc95df85eb25860c1cc3001ca3d328b332d869963057
|
|
7
|
+
data.tar.gz: e29c6d043ba0d331301db58f8f537fa34b028c3560e19ec07ccb2ad82c3fe0cc1feb7fd488f9390f7039e43f3544750664d17f43b7d6b565a1d687104ac3f977
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-alloydb_v1beta
|
|
2
2
|
|
|
3
|
+
### v0.43.0 (2025-12-14)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20251204
|
|
6
|
+
|
|
7
|
+
### v0.42.0 (2025-11-16)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20251106
|
|
10
|
+
|
|
3
11
|
### v0.41.0 (2025-11-02)
|
|
4
12
|
|
|
5
13
|
* Regenerated from discovery document revision 20251023
|
|
@@ -154,6 +154,14 @@ module Google
|
|
|
154
154
|
# @return [Hash<String,String>]
|
|
155
155
|
attr_accessor :annotations
|
|
156
156
|
|
|
157
|
+
# Output only. Set to true if the cluster corresponding to this backup is
|
|
158
|
+
# deleted. This field is only populated for when using the
|
|
159
|
+
# BACKUP_VIEW_CLUSTER_DELETED view.
|
|
160
|
+
# Corresponds to the JSON property `clusterDeleted`
|
|
161
|
+
# @return [Boolean]
|
|
162
|
+
attr_accessor :cluster_deleted
|
|
163
|
+
alias_method :cluster_deleted?, :cluster_deleted
|
|
164
|
+
|
|
157
165
|
# Required. The full resource name of the backup source cluster (e.g., projects/`
|
|
158
166
|
# project`/locations/`region`/clusters/`cluster_id`).
|
|
159
167
|
# Corresponds to the JSON property `clusterName`
|
|
@@ -304,6 +312,7 @@ module Google
|
|
|
304
312
|
# Update properties of this object
|
|
305
313
|
def update!(**args)
|
|
306
314
|
@annotations = args[:annotations] if args.key?(:annotations)
|
|
315
|
+
@cluster_deleted = args[:cluster_deleted] if args.key?(:cluster_deleted)
|
|
307
316
|
@cluster_name = args[:cluster_name] if args.key?(:cluster_name)
|
|
308
317
|
@cluster_uid = args[:cluster_uid] if args.key?(:cluster_uid)
|
|
309
318
|
@create_completion_time = args[:create_completion_time] if args.key?(:create_completion_time)
|
|
@@ -1994,6 +2003,13 @@ module Google
|
|
|
1994
2003
|
# @return [Google::Apis::AlloydbV1beta::MachineConfig]
|
|
1995
2004
|
attr_accessor :machine_config
|
|
1996
2005
|
|
|
2006
|
+
# Output only. Maintenance version of the instance, for example: POSTGRES_15.
|
|
2007
|
+
# 2025_07_15.04_00. Output only. Update this field via the parent cluster's
|
|
2008
|
+
# maintenance_version field(s).
|
|
2009
|
+
# Corresponds to the JSON property `maintenanceVersionName`
|
|
2010
|
+
# @return [String]
|
|
2011
|
+
attr_accessor :maintenance_version_name
|
|
2012
|
+
|
|
1997
2013
|
# Output only. The name of the instance resource with the format: * projects/`
|
|
1998
2014
|
# project`/locations/`region`/clusters/`cluster_id`/instances/`instance_id`
|
|
1999
2015
|
# where the cluster and instance ID segments should satisfy the regex expression
|
|
@@ -2116,6 +2132,7 @@ module Google
|
|
|
2116
2132
|
@ip_address = args[:ip_address] if args.key?(:ip_address)
|
|
2117
2133
|
@labels = args[:labels] if args.key?(:labels)
|
|
2118
2134
|
@machine_config = args[:machine_config] if args.key?(:machine_config)
|
|
2135
|
+
@maintenance_version_name = args[:maintenance_version_name] if args.key?(:maintenance_version_name)
|
|
2119
2136
|
@name = args[:name] if args.key?(:name)
|
|
2120
2137
|
@network_config = args[:network_config] if args.key?(:network_config)
|
|
2121
2138
|
@nodes = args[:nodes] if args.key?(:nodes)
|
|
@@ -2353,8 +2370,9 @@ module Google
|
|
|
2353
2370
|
attr_accessor :operations
|
|
2354
2371
|
|
|
2355
2372
|
# Unordered list. Unreachable resources. Populated when the request sets `
|
|
2356
|
-
# ListOperationsRequest.return_partial_success` and reads across collections
|
|
2357
|
-
# when attempting to list all resources across all supported
|
|
2373
|
+
# ListOperationsRequest.return_partial_success` and reads across collections.
|
|
2374
|
+
# For example, when attempting to list all resources across all supported
|
|
2375
|
+
# locations.
|
|
2358
2376
|
# Corresponds to the JSON property `unreachable`
|
|
2359
2377
|
# @return [Array<String>]
|
|
2360
2378
|
attr_accessor :unreachable
|
|
@@ -3916,6 +3934,73 @@ module Google
|
|
|
3916
3934
|
end
|
|
3917
3935
|
end
|
|
3918
3936
|
|
|
3937
|
+
# BigQueryResourceMetadata contains information about the BigQuery resource.
|
|
3938
|
+
# Next ID: 9
|
|
3939
|
+
class StorageDatabasecenterPartnerapiV1mainBigQueryResourceMetadata
|
|
3940
|
+
include Google::Apis::Core::Hashable
|
|
3941
|
+
|
|
3942
|
+
# The creation time of the resource, i.e. the time when resource is created and
|
|
3943
|
+
# recorded in partner service.
|
|
3944
|
+
# Corresponds to the JSON property `createTime`
|
|
3945
|
+
# @return [String]
|
|
3946
|
+
attr_accessor :create_time
|
|
3947
|
+
|
|
3948
|
+
# Required. Full resource name of this instance.
|
|
3949
|
+
# Corresponds to the JSON property `fullResourceName`
|
|
3950
|
+
# @return [String]
|
|
3951
|
+
attr_accessor :full_resource_name
|
|
3952
|
+
|
|
3953
|
+
# Required. location of the resource
|
|
3954
|
+
# Corresponds to the JSON property `location`
|
|
3955
|
+
# @return [String]
|
|
3956
|
+
attr_accessor :location
|
|
3957
|
+
|
|
3958
|
+
# Product specification for Condor resources.
|
|
3959
|
+
# Corresponds to the JSON property `product`
|
|
3960
|
+
# @return [Google::Apis::AlloydbV1beta::StorageDatabasecenterProtoCommonProduct]
|
|
3961
|
+
attr_accessor :product
|
|
3962
|
+
|
|
3963
|
+
# Closest parent Cloud Resource Manager container of this resource. It must be
|
|
3964
|
+
# resource name of a Cloud Resource Manager project with the format of "/", such
|
|
3965
|
+
# as "projects/123". For GCP provided resources, number should be project number.
|
|
3966
|
+
# Corresponds to the JSON property `resourceContainer`
|
|
3967
|
+
# @return [String]
|
|
3968
|
+
attr_accessor :resource_container
|
|
3969
|
+
|
|
3970
|
+
# DatabaseResourceId will serve as primary key for any resource ingestion event.
|
|
3971
|
+
# Corresponds to the JSON property `resourceId`
|
|
3972
|
+
# @return [Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainDatabaseResourceId]
|
|
3973
|
+
attr_accessor :resource_id
|
|
3974
|
+
|
|
3975
|
+
# The time at which the resource was updated and recorded at partner service.
|
|
3976
|
+
# Corresponds to the JSON property `updateTime`
|
|
3977
|
+
# @return [String]
|
|
3978
|
+
attr_accessor :update_time
|
|
3979
|
+
|
|
3980
|
+
# Message type for storing user labels. User labels are used to tag App Engine
|
|
3981
|
+
# resources, allowing users to search for resources matching a set of labels and
|
|
3982
|
+
# to aggregate usage data by labels.
|
|
3983
|
+
# Corresponds to the JSON property `userLabelSet`
|
|
3984
|
+
# @return [Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainUserLabels]
|
|
3985
|
+
attr_accessor :user_label_set
|
|
3986
|
+
|
|
3987
|
+
def initialize(**args)
|
|
3988
|
+
update!(**args)
|
|
3989
|
+
end
|
|
3990
|
+
|
|
3991
|
+
# Update properties of this object
|
|
3992
|
+
def update!(**args)
|
|
3993
|
+
@create_time = args[:create_time] if args.key?(:create_time)
|
|
3994
|
+
@full_resource_name = args[:full_resource_name] if args.key?(:full_resource_name)
|
|
3995
|
+
@location = args[:location] if args.key?(:location)
|
|
3996
|
+
@product = args[:product] if args.key?(:product)
|
|
3997
|
+
@resource_container = args[:resource_container] if args.key?(:resource_container)
|
|
3998
|
+
@resource_id = args[:resource_id] if args.key?(:resource_id)
|
|
3999
|
+
@update_time = args[:update_time] if args.key?(:update_time)
|
|
4000
|
+
@user_label_set = args[:user_label_set] if args.key?(:user_label_set)
|
|
4001
|
+
end
|
|
4002
|
+
end
|
|
4003
|
+
|
|
3919
4004
|
# Contains compliance information about a security standard indicating unmet
|
|
3920
4005
|
# recommendations.
|
|
3921
4006
|
class StorageDatabasecenterPartnerapiV1mainCompliance
|
|
@@ -4021,6 +4106,12 @@ module Google
|
|
|
4021
4106
|
# @return [Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainBackupDrMetadata]
|
|
4022
4107
|
attr_accessor :backupdr_metadata
|
|
4023
4108
|
|
|
4109
|
+
# BigQueryResourceMetadata contains information about the BigQuery resource.
|
|
4110
|
+
# Next ID: 9
|
|
4111
|
+
# Corresponds to the JSON property `bigqueryResourceMetadata`
|
|
4112
|
+
# @return [Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainBigQueryResourceMetadata]
|
|
4113
|
+
attr_accessor :bigquery_resource_metadata
|
|
4114
|
+
|
|
4024
4115
|
# Config based signal data. This is used to send signals to Condor which are
|
|
4025
4116
|
# based on the DB level configurations. These will be used to send signals for
|
|
4026
4117
|
# self managed databases.
|
|
@@ -4065,7 +4156,7 @@ module Google
|
|
|
4065
4156
|
# @return [Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainDatabaseResourceId]
|
|
4066
4157
|
attr_accessor :resource_id
|
|
4067
4158
|
|
|
4068
|
-
# Common model for database resource instance metadata. Next ID:
|
|
4159
|
+
# Common model for database resource instance metadata. Next ID: 30
|
|
4069
4160
|
# Corresponds to the JSON property `resourceMetadata`
|
|
4070
4161
|
# @return [Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainDatabaseResourceMetadata]
|
|
4071
4162
|
attr_accessor :resource_metadata
|
|
@@ -4087,6 +4178,7 @@ module Google
|
|
|
4087
4178
|
# Update properties of this object
|
|
4088
4179
|
def update!(**args)
|
|
4089
4180
|
@backupdr_metadata = args[:backupdr_metadata] if args.key?(:backupdr_metadata)
|
|
4181
|
+
@bigquery_resource_metadata = args[:bigquery_resource_metadata] if args.key?(:bigquery_resource_metadata)
|
|
4090
4182
|
@config_based_signal_data = args[:config_based_signal_data] if args.key?(:config_based_signal_data)
|
|
4091
4183
|
@database_resource_signal_data = args[:database_resource_signal_data] if args.key?(:database_resource_signal_data)
|
|
4092
4184
|
@feed_timestamp = args[:feed_timestamp] if args.key?(:feed_timestamp)
|
|
@@ -4232,14 +4324,15 @@ module Google
|
|
|
4232
4324
|
attr_accessor :provider_description
|
|
4233
4325
|
|
|
4234
4326
|
# Required. The type of resource this ID is identifying. Ex go/keep-sorted start
|
|
4235
|
-
# alloydb.googleapis.com/Cluster, alloydb.googleapis.com/Instance,
|
|
4236
|
-
# googleapis.com/
|
|
4237
|
-
# googleapis.com/Instance
|
|
4238
|
-
# com/
|
|
4239
|
-
#
|
|
4240
|
-
#
|
|
4241
|
-
# Instance, spanner.googleapis.com/Database, sqladmin.
|
|
4242
|
-
# go/keep-sorted end REQUIRED Please refer go/condor-
|
|
4327
|
+
# alloydb.googleapis.com/Cluster, alloydb.googleapis.com/Instance, bigquery.
|
|
4328
|
+
# googleapis.com/Dataset, bigtableadmin.googleapis.com/Cluster, bigtableadmin.
|
|
4329
|
+
# googleapis.com/Instance compute.googleapis.com/Instance firestore.googleapis.
|
|
4330
|
+
# com/Database, redis.googleapis.com/Instance, redis.googleapis.com/Cluster,
|
|
4331
|
+
# oracledatabase.googleapis.com/CloudExadataInfrastructure oracledatabase.
|
|
4332
|
+
# googleapis.com/CloudVmCluster oracledatabase.googleapis.com/AutonomousDatabase
|
|
4333
|
+
# spanner.googleapis.com/Instance, spanner.googleapis.com/Database, sqladmin.
|
|
4334
|
+
# googleapis.com/Instance, go/keep-sorted end REQUIRED Please refer go/condor-
|
|
4335
|
+
# common-datamodel
|
|
4243
4336
|
# Corresponds to the JSON property `resourceType`
|
|
4244
4337
|
# @return [String]
|
|
4245
4338
|
attr_accessor :resource_type
|
|
@@ -4263,7 +4356,7 @@ module Google
|
|
|
4263
4356
|
end
|
|
4264
4357
|
end
|
|
4265
4358
|
|
|
4266
|
-
# Common model for database resource instance metadata. Next ID:
|
|
4359
|
+
# Common model for database resource instance metadata. Next ID: 30
|
|
4267
4360
|
class StorageDatabasecenterPartnerapiV1mainDatabaseResourceMetadata
|
|
4268
4361
|
include Google::Apis::Core::Hashable
|
|
4269
4362
|
|
|
@@ -4340,6 +4433,12 @@ module Google
|
|
|
4340
4433
|
# @return [String]
|
|
4341
4434
|
attr_accessor :instance_type
|
|
4342
4435
|
|
|
4436
|
+
# Optional. Whether deletion protection is enabled for this resource.
|
|
4437
|
+
# Corresponds to the JSON property `isDeletionProtectionEnabled`
|
|
4438
|
+
# @return [Boolean]
|
|
4439
|
+
attr_accessor :is_deletion_protection_enabled
|
|
4440
|
+
alias_method :is_deletion_protection_enabled?, :is_deletion_protection_enabled
|
|
4441
|
+
|
|
4343
4442
|
# The resource location. REQUIRED
|
|
4344
4443
|
# Corresponds to the JSON property `location`
|
|
4345
4444
|
# @return [String]
|
|
@@ -4437,6 +4536,7 @@ module Google
|
|
|
4437
4536
|
@gcbdr_configuration = args[:gcbdr_configuration] if args.key?(:gcbdr_configuration)
|
|
4438
4537
|
@id = args[:id] if args.key?(:id)
|
|
4439
4538
|
@instance_type = args[:instance_type] if args.key?(:instance_type)
|
|
4539
|
+
@is_deletion_protection_enabled = args[:is_deletion_protection_enabled] if args.key?(:is_deletion_protection_enabled)
|
|
4440
4540
|
@location = args[:location] if args.key?(:location)
|
|
4441
4541
|
@machine_configuration = args[:machine_configuration] if args.key?(:machine_configuration)
|
|
4442
4542
|
@maintenance_info = args[:maintenance_info] if args.key?(:maintenance_info)
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module AlloydbV1beta
|
|
18
18
|
# Version of the google-apis-alloydb_v1beta gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.43.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20251204"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -550,6 +550,12 @@ module Google
|
|
|
550
550
|
include Google::Apis::Core::JsonObjectSupport
|
|
551
551
|
end
|
|
552
552
|
|
|
553
|
+
class StorageDatabasecenterPartnerapiV1mainBigQueryResourceMetadata
|
|
554
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
555
|
+
|
|
556
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
557
|
+
end
|
|
558
|
+
|
|
553
559
|
class StorageDatabasecenterPartnerapiV1mainCompliance
|
|
554
560
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
555
561
|
|
|
@@ -799,6 +805,7 @@ module Google
|
|
|
799
805
|
# @private
|
|
800
806
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
801
807
|
hash :annotations, as: 'annotations'
|
|
808
|
+
property :cluster_deleted, as: 'clusterDeleted'
|
|
802
809
|
property :cluster_name, as: 'clusterName'
|
|
803
810
|
property :cluster_uid, as: 'clusterUid'
|
|
804
811
|
property :create_completion_time, as: 'createCompletionTime'
|
|
@@ -1246,6 +1253,7 @@ module Google
|
|
|
1246
1253
|
hash :labels, as: 'labels'
|
|
1247
1254
|
property :machine_config, as: 'machineConfig', class: Google::Apis::AlloydbV1beta::MachineConfig, decorator: Google::Apis::AlloydbV1beta::MachineConfig::Representation
|
|
1248
1255
|
|
|
1256
|
+
property :maintenance_version_name, as: 'maintenanceVersionName'
|
|
1249
1257
|
property :name, as: 'name'
|
|
1250
1258
|
property :network_config, as: 'networkConfig', class: Google::Apis::AlloydbV1beta::InstanceNetworkConfig, decorator: Google::Apis::AlloydbV1beta::InstanceNetworkConfig::Representation
|
|
1251
1259
|
|
|
@@ -1749,6 +1757,23 @@ module Google
|
|
|
1749
1757
|
end
|
|
1750
1758
|
end
|
|
1751
1759
|
|
|
1760
|
+
class StorageDatabasecenterPartnerapiV1mainBigQueryResourceMetadata
|
|
1761
|
+
# @private
|
|
1762
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1763
|
+
property :create_time, as: 'createTime'
|
|
1764
|
+
property :full_resource_name, as: 'fullResourceName'
|
|
1765
|
+
property :location, as: 'location'
|
|
1766
|
+
property :product, as: 'product', class: Google::Apis::AlloydbV1beta::StorageDatabasecenterProtoCommonProduct, decorator: Google::Apis::AlloydbV1beta::StorageDatabasecenterProtoCommonProduct::Representation
|
|
1767
|
+
|
|
1768
|
+
property :resource_container, as: 'resourceContainer'
|
|
1769
|
+
property :resource_id, as: 'resourceId', class: Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainDatabaseResourceId, decorator: Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainDatabaseResourceId::Representation
|
|
1770
|
+
|
|
1771
|
+
property :update_time, as: 'updateTime'
|
|
1772
|
+
property :user_label_set, as: 'userLabelSet', class: Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainUserLabels, decorator: Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainUserLabels::Representation
|
|
1773
|
+
|
|
1774
|
+
end
|
|
1775
|
+
end
|
|
1776
|
+
|
|
1752
1777
|
class StorageDatabasecenterPartnerapiV1mainCompliance
|
|
1753
1778
|
# @private
|
|
1754
1779
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -1782,6 +1807,8 @@ module Google
|
|
|
1782
1807
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1783
1808
|
property :backupdr_metadata, as: 'backupdrMetadata', class: Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainBackupDrMetadata, decorator: Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainBackupDrMetadata::Representation
|
|
1784
1809
|
|
|
1810
|
+
property :bigquery_resource_metadata, as: 'bigqueryResourceMetadata', class: Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainBigQueryResourceMetadata, decorator: Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainBigQueryResourceMetadata::Representation
|
|
1811
|
+
|
|
1785
1812
|
property :config_based_signal_data, as: 'configBasedSignalData', class: Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainConfigBasedSignalData, decorator: Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainConfigBasedSignalData::Representation
|
|
1786
1813
|
|
|
1787
1814
|
property :database_resource_signal_data, as: 'databaseResourceSignalData', class: Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainDatabaseResourceSignalData, decorator: Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainDatabaseResourceSignalData::Representation
|
|
@@ -1858,6 +1885,7 @@ module Google
|
|
|
1858
1885
|
property :id, as: 'id', class: Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainDatabaseResourceId, decorator: Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainDatabaseResourceId::Representation
|
|
1859
1886
|
|
|
1860
1887
|
property :instance_type, as: 'instanceType'
|
|
1888
|
+
property :is_deletion_protection_enabled, as: 'isDeletionProtectionEnabled'
|
|
1861
1889
|
property :location, as: 'location'
|
|
1862
1890
|
property :machine_configuration, as: 'machineConfiguration', class: Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainMachineConfiguration, decorator: Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainMachineConfiguration::Representation
|
|
1863
1891
|
|
|
@@ -245,6 +245,8 @@ module Google
|
|
|
245
245
|
# Gets details of a single Backup.
|
|
246
246
|
# @param [String] name
|
|
247
247
|
# Required. Name of the resource
|
|
248
|
+
# @param [String] view
|
|
249
|
+
# Optional. The view of the backup to return.
|
|
248
250
|
# @param [String] fields
|
|
249
251
|
# Selector specifying which fields to include in a partial response.
|
|
250
252
|
# @param [String] quota_user
|
|
@@ -262,11 +264,12 @@ module Google
|
|
|
262
264
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
263
265
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
264
266
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
265
|
-
def get_project_location_backup(name, fields: nil, quota_user: nil, options: nil, &block)
|
|
267
|
+
def get_project_location_backup(name, view: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
266
268
|
command = make_simple_command(:get, 'v1beta/{+name}', options)
|
|
267
269
|
command.response_representation = Google::Apis::AlloydbV1beta::Backup::Representation
|
|
268
270
|
command.response_class = Google::Apis::AlloydbV1beta::Backup
|
|
269
271
|
command.params['name'] = name unless name.nil?
|
|
272
|
+
command.query['view'] = view unless view.nil?
|
|
270
273
|
command.query['fields'] = fields unless fields.nil?
|
|
271
274
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
272
275
|
execute_or_queue_command(command, &block)
|
|
@@ -284,6 +287,8 @@ module Google
|
|
|
284
287
|
# unspecified, server will pick an appropriate default.
|
|
285
288
|
# @param [String] page_token
|
|
286
289
|
# A token identifying a page of results the server should return.
|
|
290
|
+
# @param [String] view
|
|
291
|
+
# Optional. The view of the backup to return.
|
|
287
292
|
# @param [String] fields
|
|
288
293
|
# Selector specifying which fields to include in a partial response.
|
|
289
294
|
# @param [String] quota_user
|
|
@@ -301,7 +306,7 @@ module Google
|
|
|
301
306
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
302
307
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
303
308
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
304
|
-
def list_project_location_backups(parent, filter: nil, order_by: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
309
|
+
def list_project_location_backups(parent, filter: nil, order_by: nil, page_size: nil, page_token: nil, view: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
305
310
|
command = make_simple_command(:get, 'v1beta/{+parent}/backups', options)
|
|
306
311
|
command.response_representation = Google::Apis::AlloydbV1beta::ListBackupsResponse::Representation
|
|
307
312
|
command.response_class = Google::Apis::AlloydbV1beta::ListBackupsResponse
|
|
@@ -310,6 +315,7 @@ module Google
|
|
|
310
315
|
command.query['orderBy'] = order_by unless order_by.nil?
|
|
311
316
|
command.query['pageSize'] = page_size unless page_size.nil?
|
|
312
317
|
command.query['pageToken'] = page_token unless page_token.nil?
|
|
318
|
+
command.query['view'] = view unless view.nil?
|
|
313
319
|
command.query['fields'] = fields unless fields.nil?
|
|
314
320
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
315
321
|
execute_or_queue_command(command, &block)
|
|
@@ -1735,11 +1741,12 @@ module Google
|
|
|
1735
1741
|
# The standard list page token.
|
|
1736
1742
|
# @param [Boolean] return_partial_success
|
|
1737
1743
|
# When set to `true`, operations that are reachable are returned as normal, and
|
|
1738
|
-
# those that are unreachable are returned in the
|
|
1739
|
-
# unreachable
|
|
1740
|
-
#
|
|
1741
|
-
# by default
|
|
1742
|
-
# explicitly documented otherwise in service or product specific
|
|
1744
|
+
# those that are unreachable are returned in the ListOperationsResponse.
|
|
1745
|
+
# unreachable field. This can only be `true` when reading across collections.
|
|
1746
|
+
# For example, when `parent` is set to `"projects/example/locations/-"`. This
|
|
1747
|
+
# field is not supported by default and will result in an `UNIMPLEMENTED` error
|
|
1748
|
+
# if set unless explicitly documented otherwise in service or product specific
|
|
1749
|
+
# documentation.
|
|
1743
1750
|
# @param [String] fields
|
|
1744
1751
|
# Selector specifying which fields to include in a partial response.
|
|
1745
1752
|
# @param [String] quota_user
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-alloydb_v1beta
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.43.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
@@ -57,7 +57,7 @@ licenses:
|
|
|
57
57
|
metadata:
|
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-alloydb_v1beta/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-alloydb_v1beta/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-alloydb_v1beta/v0.43.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-alloydb_v1beta
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|