google-apis-alloydb_v1alpha 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: 26438d9396cd6f2d21b5064caa1714275ad95bc67fd53557d48513deff885268
|
|
4
|
+
data.tar.gz: 120c1cf41ca7a5d88e1c63fdb2f2e3489d02695ff00217dd9b8c0cd200500fdf
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ccdf8b85c0f74e78f84805de79ea1485e8e568aa9a53bd66e7fb6d687c3d2f08861f3d71c84d1336dfcd03d8a49dec4009ad4c3f3106e13a169e565ddd753f86
|
|
7
|
+
data.tar.gz: 79aa8de86c381bee3d6122b6903711f36898e7406b778c46d093f4a7a00ad7e58e62f82e1af5fa99f1d6931da4c0180d44dea0354539367db8d282bce3c0ccc0
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-alloydb_v1alpha
|
|
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`
|
|
@@ -310,6 +318,7 @@ module Google
|
|
|
310
318
|
# Update properties of this object
|
|
311
319
|
def update!(**args)
|
|
312
320
|
@annotations = args[:annotations] if args.key?(:annotations)
|
|
321
|
+
@cluster_deleted = args[:cluster_deleted] if args.key?(:cluster_deleted)
|
|
313
322
|
@cluster_name = args[:cluster_name] if args.key?(:cluster_name)
|
|
314
323
|
@cluster_uid = args[:cluster_uid] if args.key?(:cluster_uid)
|
|
315
324
|
@create_completion_time = args[:create_completion_time] if args.key?(:create_completion_time)
|
|
@@ -2021,6 +2030,13 @@ module Google
|
|
|
2021
2030
|
# @return [Google::Apis::AlloydbV1alpha::MachineConfig]
|
|
2022
2031
|
attr_accessor :machine_config
|
|
2023
2032
|
|
|
2033
|
+
# Output only. Maintenance version of the instance, for example: POSTGRES_15.
|
|
2034
|
+
# 2025_07_15.04_00. Output only. Update this field via the parent cluster's
|
|
2035
|
+
# maintenance_version field(s).
|
|
2036
|
+
# Corresponds to the JSON property `maintenanceVersionName`
|
|
2037
|
+
# @return [String]
|
|
2038
|
+
attr_accessor :maintenance_version_name
|
|
2039
|
+
|
|
2024
2040
|
# Output only. The name of the instance resource with the format: * projects/`
|
|
2025
2041
|
# project`/locations/`region`/clusters/`cluster_id`/instances/`instance_id`
|
|
2026
2042
|
# where the cluster and instance ID segments should satisfy the regex expression
|
|
@@ -2149,6 +2165,7 @@ module Google
|
|
|
2149
2165
|
@ip_address = args[:ip_address] if args.key?(:ip_address)
|
|
2150
2166
|
@labels = args[:labels] if args.key?(:labels)
|
|
2151
2167
|
@machine_config = args[:machine_config] if args.key?(:machine_config)
|
|
2168
|
+
@maintenance_version_name = args[:maintenance_version_name] if args.key?(:maintenance_version_name)
|
|
2152
2169
|
@name = args[:name] if args.key?(:name)
|
|
2153
2170
|
@network_config = args[:network_config] if args.key?(:network_config)
|
|
2154
2171
|
@nodes = args[:nodes] if args.key?(:nodes)
|
|
@@ -2387,8 +2404,9 @@ module Google
|
|
|
2387
2404
|
attr_accessor :operations
|
|
2388
2405
|
|
|
2389
2406
|
# Unordered list. Unreachable resources. Populated when the request sets `
|
|
2390
|
-
# ListOperationsRequest.return_partial_success` and reads across collections
|
|
2391
|
-
# when attempting to list all resources across all supported
|
|
2407
|
+
# ListOperationsRequest.return_partial_success` and reads across collections.
|
|
2408
|
+
# For example, when attempting to list all resources across all supported
|
|
2409
|
+
# locations.
|
|
2392
2410
|
# Corresponds to the JSON property `unreachable`
|
|
2393
2411
|
# @return [Array<String>]
|
|
2394
2412
|
attr_accessor :unreachable
|
|
@@ -3950,6 +3968,73 @@ module Google
|
|
|
3950
3968
|
end
|
|
3951
3969
|
end
|
|
3952
3970
|
|
|
3971
|
+
# BigQueryResourceMetadata contains information about the BigQuery resource.
|
|
3972
|
+
# Next ID: 9
|
|
3973
|
+
class StorageDatabasecenterPartnerapiV1mainBigQueryResourceMetadata
|
|
3974
|
+
include Google::Apis::Core::Hashable
|
|
3975
|
+
|
|
3976
|
+
# The creation time of the resource, i.e. the time when resource is created and
|
|
3977
|
+
# recorded in partner service.
|
|
3978
|
+
# Corresponds to the JSON property `createTime`
|
|
3979
|
+
# @return [String]
|
|
3980
|
+
attr_accessor :create_time
|
|
3981
|
+
|
|
3982
|
+
# Required. Full resource name of this instance.
|
|
3983
|
+
# Corresponds to the JSON property `fullResourceName`
|
|
3984
|
+
# @return [String]
|
|
3985
|
+
attr_accessor :full_resource_name
|
|
3986
|
+
|
|
3987
|
+
# Required. location of the resource
|
|
3988
|
+
# Corresponds to the JSON property `location`
|
|
3989
|
+
# @return [String]
|
|
3990
|
+
attr_accessor :location
|
|
3991
|
+
|
|
3992
|
+
# Product specification for Condor resources.
|
|
3993
|
+
# Corresponds to the JSON property `product`
|
|
3994
|
+
# @return [Google::Apis::AlloydbV1alpha::StorageDatabasecenterProtoCommonProduct]
|
|
3995
|
+
attr_accessor :product
|
|
3996
|
+
|
|
3997
|
+
# Closest parent Cloud Resource Manager container of this resource. It must be
|
|
3998
|
+
# resource name of a Cloud Resource Manager project with the format of "/", such
|
|
3999
|
+
# as "projects/123". For GCP provided resources, number should be project number.
|
|
4000
|
+
# Corresponds to the JSON property `resourceContainer`
|
|
4001
|
+
# @return [String]
|
|
4002
|
+
attr_accessor :resource_container
|
|
4003
|
+
|
|
4004
|
+
# DatabaseResourceId will serve as primary key for any resource ingestion event.
|
|
4005
|
+
# Corresponds to the JSON property `resourceId`
|
|
4006
|
+
# @return [Google::Apis::AlloydbV1alpha::StorageDatabasecenterPartnerapiV1mainDatabaseResourceId]
|
|
4007
|
+
attr_accessor :resource_id
|
|
4008
|
+
|
|
4009
|
+
# The time at which the resource was updated and recorded at partner service.
|
|
4010
|
+
# Corresponds to the JSON property `updateTime`
|
|
4011
|
+
# @return [String]
|
|
4012
|
+
attr_accessor :update_time
|
|
4013
|
+
|
|
4014
|
+
# Message type for storing user labels. User labels are used to tag App Engine
|
|
4015
|
+
# resources, allowing users to search for resources matching a set of labels and
|
|
4016
|
+
# to aggregate usage data by labels.
|
|
4017
|
+
# Corresponds to the JSON property `userLabelSet`
|
|
4018
|
+
# @return [Google::Apis::AlloydbV1alpha::StorageDatabasecenterPartnerapiV1mainUserLabels]
|
|
4019
|
+
attr_accessor :user_label_set
|
|
4020
|
+
|
|
4021
|
+
def initialize(**args)
|
|
4022
|
+
update!(**args)
|
|
4023
|
+
end
|
|
4024
|
+
|
|
4025
|
+
# Update properties of this object
|
|
4026
|
+
def update!(**args)
|
|
4027
|
+
@create_time = args[:create_time] if args.key?(:create_time)
|
|
4028
|
+
@full_resource_name = args[:full_resource_name] if args.key?(:full_resource_name)
|
|
4029
|
+
@location = args[:location] if args.key?(:location)
|
|
4030
|
+
@product = args[:product] if args.key?(:product)
|
|
4031
|
+
@resource_container = args[:resource_container] if args.key?(:resource_container)
|
|
4032
|
+
@resource_id = args[:resource_id] if args.key?(:resource_id)
|
|
4033
|
+
@update_time = args[:update_time] if args.key?(:update_time)
|
|
4034
|
+
@user_label_set = args[:user_label_set] if args.key?(:user_label_set)
|
|
4035
|
+
end
|
|
4036
|
+
end
|
|
4037
|
+
|
|
3953
4038
|
# Contains compliance information about a security standard indicating unmet
|
|
3954
4039
|
# recommendations.
|
|
3955
4040
|
class StorageDatabasecenterPartnerapiV1mainCompliance
|
|
@@ -4055,6 +4140,12 @@ module Google
|
|
|
4055
4140
|
# @return [Google::Apis::AlloydbV1alpha::StorageDatabasecenterPartnerapiV1mainBackupDrMetadata]
|
|
4056
4141
|
attr_accessor :backupdr_metadata
|
|
4057
4142
|
|
|
4143
|
+
# BigQueryResourceMetadata contains information about the BigQuery resource.
|
|
4144
|
+
# Next ID: 9
|
|
4145
|
+
# Corresponds to the JSON property `bigqueryResourceMetadata`
|
|
4146
|
+
# @return [Google::Apis::AlloydbV1alpha::StorageDatabasecenterPartnerapiV1mainBigQueryResourceMetadata]
|
|
4147
|
+
attr_accessor :bigquery_resource_metadata
|
|
4148
|
+
|
|
4058
4149
|
# Config based signal data. This is used to send signals to Condor which are
|
|
4059
4150
|
# based on the DB level configurations. These will be used to send signals for
|
|
4060
4151
|
# self managed databases.
|
|
@@ -4099,7 +4190,7 @@ module Google
|
|
|
4099
4190
|
# @return [Google::Apis::AlloydbV1alpha::StorageDatabasecenterPartnerapiV1mainDatabaseResourceId]
|
|
4100
4191
|
attr_accessor :resource_id
|
|
4101
4192
|
|
|
4102
|
-
# Common model for database resource instance metadata. Next ID:
|
|
4193
|
+
# Common model for database resource instance metadata. Next ID: 30
|
|
4103
4194
|
# Corresponds to the JSON property `resourceMetadata`
|
|
4104
4195
|
# @return [Google::Apis::AlloydbV1alpha::StorageDatabasecenterPartnerapiV1mainDatabaseResourceMetadata]
|
|
4105
4196
|
attr_accessor :resource_metadata
|
|
@@ -4121,6 +4212,7 @@ module Google
|
|
|
4121
4212
|
# Update properties of this object
|
|
4122
4213
|
def update!(**args)
|
|
4123
4214
|
@backupdr_metadata = args[:backupdr_metadata] if args.key?(:backupdr_metadata)
|
|
4215
|
+
@bigquery_resource_metadata = args[:bigquery_resource_metadata] if args.key?(:bigquery_resource_metadata)
|
|
4124
4216
|
@config_based_signal_data = args[:config_based_signal_data] if args.key?(:config_based_signal_data)
|
|
4125
4217
|
@database_resource_signal_data = args[:database_resource_signal_data] if args.key?(:database_resource_signal_data)
|
|
4126
4218
|
@feed_timestamp = args[:feed_timestamp] if args.key?(:feed_timestamp)
|
|
@@ -4266,14 +4358,15 @@ module Google
|
|
|
4266
4358
|
attr_accessor :provider_description
|
|
4267
4359
|
|
|
4268
4360
|
# Required. The type of resource this ID is identifying. Ex go/keep-sorted start
|
|
4269
|
-
# alloydb.googleapis.com/Cluster, alloydb.googleapis.com/Instance,
|
|
4270
|
-
# googleapis.com/
|
|
4271
|
-
# googleapis.com/Instance
|
|
4272
|
-
# com/
|
|
4273
|
-
#
|
|
4274
|
-
#
|
|
4275
|
-
# Instance, spanner.googleapis.com/Database, sqladmin.
|
|
4276
|
-
# go/keep-sorted end REQUIRED Please refer go/condor-
|
|
4361
|
+
# alloydb.googleapis.com/Cluster, alloydb.googleapis.com/Instance, bigquery.
|
|
4362
|
+
# googleapis.com/Dataset, bigtableadmin.googleapis.com/Cluster, bigtableadmin.
|
|
4363
|
+
# googleapis.com/Instance compute.googleapis.com/Instance firestore.googleapis.
|
|
4364
|
+
# com/Database, redis.googleapis.com/Instance, redis.googleapis.com/Cluster,
|
|
4365
|
+
# oracledatabase.googleapis.com/CloudExadataInfrastructure oracledatabase.
|
|
4366
|
+
# googleapis.com/CloudVmCluster oracledatabase.googleapis.com/AutonomousDatabase
|
|
4367
|
+
# spanner.googleapis.com/Instance, spanner.googleapis.com/Database, sqladmin.
|
|
4368
|
+
# googleapis.com/Instance, go/keep-sorted end REQUIRED Please refer go/condor-
|
|
4369
|
+
# common-datamodel
|
|
4277
4370
|
# Corresponds to the JSON property `resourceType`
|
|
4278
4371
|
# @return [String]
|
|
4279
4372
|
attr_accessor :resource_type
|
|
@@ -4297,7 +4390,7 @@ module Google
|
|
|
4297
4390
|
end
|
|
4298
4391
|
end
|
|
4299
4392
|
|
|
4300
|
-
# Common model for database resource instance metadata. Next ID:
|
|
4393
|
+
# Common model for database resource instance metadata. Next ID: 30
|
|
4301
4394
|
class StorageDatabasecenterPartnerapiV1mainDatabaseResourceMetadata
|
|
4302
4395
|
include Google::Apis::Core::Hashable
|
|
4303
4396
|
|
|
@@ -4374,6 +4467,12 @@ module Google
|
|
|
4374
4467
|
# @return [String]
|
|
4375
4468
|
attr_accessor :instance_type
|
|
4376
4469
|
|
|
4470
|
+
# Optional. Whether deletion protection is enabled for this resource.
|
|
4471
|
+
# Corresponds to the JSON property `isDeletionProtectionEnabled`
|
|
4472
|
+
# @return [Boolean]
|
|
4473
|
+
attr_accessor :is_deletion_protection_enabled
|
|
4474
|
+
alias_method :is_deletion_protection_enabled?, :is_deletion_protection_enabled
|
|
4475
|
+
|
|
4377
4476
|
# The resource location. REQUIRED
|
|
4378
4477
|
# Corresponds to the JSON property `location`
|
|
4379
4478
|
# @return [String]
|
|
@@ -4471,6 +4570,7 @@ module Google
|
|
|
4471
4570
|
@gcbdr_configuration = args[:gcbdr_configuration] if args.key?(:gcbdr_configuration)
|
|
4472
4571
|
@id = args[:id] if args.key?(:id)
|
|
4473
4572
|
@instance_type = args[:instance_type] if args.key?(:instance_type)
|
|
4573
|
+
@is_deletion_protection_enabled = args[:is_deletion_protection_enabled] if args.key?(:is_deletion_protection_enabled)
|
|
4474
4574
|
@location = args[:location] if args.key?(:location)
|
|
4475
4575
|
@machine_configuration = args[:machine_configuration] if args.key?(:machine_configuration)
|
|
4476
4576
|
@maintenance_info = args[:maintenance_info] if args.key?(:maintenance_info)
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module AlloydbV1alpha
|
|
18
18
|
# Version of the google-apis-alloydb_v1alpha 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
|
|
@@ -556,6 +556,12 @@ module Google
|
|
|
556
556
|
include Google::Apis::Core::JsonObjectSupport
|
|
557
557
|
end
|
|
558
558
|
|
|
559
|
+
class StorageDatabasecenterPartnerapiV1mainBigQueryResourceMetadata
|
|
560
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
561
|
+
|
|
562
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
563
|
+
end
|
|
564
|
+
|
|
559
565
|
class StorageDatabasecenterPartnerapiV1mainCompliance
|
|
560
566
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
561
567
|
|
|
@@ -805,6 +811,7 @@ module Google
|
|
|
805
811
|
# @private
|
|
806
812
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
807
813
|
hash :annotations, as: 'annotations'
|
|
814
|
+
property :cluster_deleted, as: 'clusterDeleted'
|
|
808
815
|
property :cluster_name, as: 'clusterName'
|
|
809
816
|
property :cluster_uid, as: 'clusterUid'
|
|
810
817
|
property :create_completion_time, as: 'createCompletionTime'
|
|
@@ -1260,6 +1267,7 @@ module Google
|
|
|
1260
1267
|
hash :labels, as: 'labels'
|
|
1261
1268
|
property :machine_config, as: 'machineConfig', class: Google::Apis::AlloydbV1alpha::MachineConfig, decorator: Google::Apis::AlloydbV1alpha::MachineConfig::Representation
|
|
1262
1269
|
|
|
1270
|
+
property :maintenance_version_name, as: 'maintenanceVersionName'
|
|
1263
1271
|
property :name, as: 'name'
|
|
1264
1272
|
property :network_config, as: 'networkConfig', class: Google::Apis::AlloydbV1alpha::InstanceNetworkConfig, decorator: Google::Apis::AlloydbV1alpha::InstanceNetworkConfig::Representation
|
|
1265
1273
|
|
|
@@ -1764,6 +1772,23 @@ module Google
|
|
|
1764
1772
|
end
|
|
1765
1773
|
end
|
|
1766
1774
|
|
|
1775
|
+
class StorageDatabasecenterPartnerapiV1mainBigQueryResourceMetadata
|
|
1776
|
+
# @private
|
|
1777
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1778
|
+
property :create_time, as: 'createTime'
|
|
1779
|
+
property :full_resource_name, as: 'fullResourceName'
|
|
1780
|
+
property :location, as: 'location'
|
|
1781
|
+
property :product, as: 'product', class: Google::Apis::AlloydbV1alpha::StorageDatabasecenterProtoCommonProduct, decorator: Google::Apis::AlloydbV1alpha::StorageDatabasecenterProtoCommonProduct::Representation
|
|
1782
|
+
|
|
1783
|
+
property :resource_container, as: 'resourceContainer'
|
|
1784
|
+
property :resource_id, as: 'resourceId', class: Google::Apis::AlloydbV1alpha::StorageDatabasecenterPartnerapiV1mainDatabaseResourceId, decorator: Google::Apis::AlloydbV1alpha::StorageDatabasecenterPartnerapiV1mainDatabaseResourceId::Representation
|
|
1785
|
+
|
|
1786
|
+
property :update_time, as: 'updateTime'
|
|
1787
|
+
property :user_label_set, as: 'userLabelSet', class: Google::Apis::AlloydbV1alpha::StorageDatabasecenterPartnerapiV1mainUserLabels, decorator: Google::Apis::AlloydbV1alpha::StorageDatabasecenterPartnerapiV1mainUserLabels::Representation
|
|
1788
|
+
|
|
1789
|
+
end
|
|
1790
|
+
end
|
|
1791
|
+
|
|
1767
1792
|
class StorageDatabasecenterPartnerapiV1mainCompliance
|
|
1768
1793
|
# @private
|
|
1769
1794
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -1797,6 +1822,8 @@ module Google
|
|
|
1797
1822
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1798
1823
|
property :backupdr_metadata, as: 'backupdrMetadata', class: Google::Apis::AlloydbV1alpha::StorageDatabasecenterPartnerapiV1mainBackupDrMetadata, decorator: Google::Apis::AlloydbV1alpha::StorageDatabasecenterPartnerapiV1mainBackupDrMetadata::Representation
|
|
1799
1824
|
|
|
1825
|
+
property :bigquery_resource_metadata, as: 'bigqueryResourceMetadata', class: Google::Apis::AlloydbV1alpha::StorageDatabasecenterPartnerapiV1mainBigQueryResourceMetadata, decorator: Google::Apis::AlloydbV1alpha::StorageDatabasecenterPartnerapiV1mainBigQueryResourceMetadata::Representation
|
|
1826
|
+
|
|
1800
1827
|
property :config_based_signal_data, as: 'configBasedSignalData', class: Google::Apis::AlloydbV1alpha::StorageDatabasecenterPartnerapiV1mainConfigBasedSignalData, decorator: Google::Apis::AlloydbV1alpha::StorageDatabasecenterPartnerapiV1mainConfigBasedSignalData::Representation
|
|
1801
1828
|
|
|
1802
1829
|
property :database_resource_signal_data, as: 'databaseResourceSignalData', class: Google::Apis::AlloydbV1alpha::StorageDatabasecenterPartnerapiV1mainDatabaseResourceSignalData, decorator: Google::Apis::AlloydbV1alpha::StorageDatabasecenterPartnerapiV1mainDatabaseResourceSignalData::Representation
|
|
@@ -1873,6 +1900,7 @@ module Google
|
|
|
1873
1900
|
property :id, as: 'id', class: Google::Apis::AlloydbV1alpha::StorageDatabasecenterPartnerapiV1mainDatabaseResourceId, decorator: Google::Apis::AlloydbV1alpha::StorageDatabasecenterPartnerapiV1mainDatabaseResourceId::Representation
|
|
1874
1901
|
|
|
1875
1902
|
property :instance_type, as: 'instanceType'
|
|
1903
|
+
property :is_deletion_protection_enabled, as: 'isDeletionProtectionEnabled'
|
|
1876
1904
|
property :location, as: 'location'
|
|
1877
1905
|
property :machine_configuration, as: 'machineConfiguration', class: Google::Apis::AlloydbV1alpha::StorageDatabasecenterPartnerapiV1mainMachineConfiguration, decorator: Google::Apis::AlloydbV1alpha::StorageDatabasecenterPartnerapiV1mainMachineConfiguration::Representation
|
|
1878
1906
|
|
|
@@ -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, 'v1alpha/{+name}', options)
|
|
267
269
|
command.response_representation = Google::Apis::AlloydbV1alpha::Backup::Representation
|
|
268
270
|
command.response_class = Google::Apis::AlloydbV1alpha::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, 'v1alpha/{+parent}/backups', options)
|
|
306
311
|
command.response_representation = Google::Apis::AlloydbV1alpha::ListBackupsResponse::Representation
|
|
307
312
|
command.response_class = Google::Apis::AlloydbV1alpha::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)
|
|
@@ -1738,11 +1744,12 @@ module Google
|
|
|
1738
1744
|
# The standard list page token.
|
|
1739
1745
|
# @param [Boolean] return_partial_success
|
|
1740
1746
|
# When set to `true`, operations that are reachable are returned as normal, and
|
|
1741
|
-
# those that are unreachable are returned in the
|
|
1742
|
-
# unreachable
|
|
1743
|
-
#
|
|
1744
|
-
# by default
|
|
1745
|
-
# explicitly documented otherwise in service or product specific
|
|
1747
|
+
# those that are unreachable are returned in the ListOperationsResponse.
|
|
1748
|
+
# unreachable field. This can only be `true` when reading across collections.
|
|
1749
|
+
# For example, when `parent` is set to `"projects/example/locations/-"`. This
|
|
1750
|
+
# field is not supported by default and will result in an `UNIMPLEMENTED` error
|
|
1751
|
+
# if set unless explicitly documented otherwise in service or product specific
|
|
1752
|
+
# documentation.
|
|
1746
1753
|
# @param [String] fields
|
|
1747
1754
|
# Selector specifying which fields to include in a partial response.
|
|
1748
1755
|
# @param [String] quota_user
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-alloydb_v1alpha
|
|
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_v1alpha/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-alloydb_v1alpha/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-alloydb_v1alpha/v0.43.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-alloydb_v1alpha
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|