google-apis-alloydb_v1beta 0.43.0 → 0.44.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: 889abc7a363afb0374b63a5fc5ed056de1c4252037b837b7a95060e53df7508a
|
|
4
|
+
data.tar.gz: d9002c6d3f6a77ca898fd6bec96c92dbd5f52943649ff3976c629d20845a2dc3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a599ad169fa98446e64222ec0feff5f0f62bf5d6f5e3a8a072d094810059099361f00555b983bb23f61e07298e9372260e2256767bf32a027915b06862257300
|
|
7
|
+
data.tar.gz: 04b4d18ea5c0fe2506240a8bb0a75a7336386f834dc49e416f847a7bb9d4ae9b240fe5c1a70406389c760954510e8612c149f87d2a31bd12834d007d84e75c9b
|
data/CHANGELOG.md
CHANGED
|
@@ -3934,73 +3934,6 @@ module Google
|
|
|
3934
3934
|
end
|
|
3935
3935
|
end
|
|
3936
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
|
-
|
|
4004
3937
|
# Contains compliance information about a security standard indicating unmet
|
|
4005
3938
|
# recommendations.
|
|
4006
3939
|
class StorageDatabasecenterPartnerapiV1mainCompliance
|
|
@@ -4106,12 +4039,6 @@ module Google
|
|
|
4106
4039
|
# @return [Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainBackupDrMetadata]
|
|
4107
4040
|
attr_accessor :backupdr_metadata
|
|
4108
4041
|
|
|
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
|
-
|
|
4115
4042
|
# Config based signal data. This is used to send signals to Condor which are
|
|
4116
4043
|
# based on the DB level configurations. These will be used to send signals for
|
|
4117
4044
|
# self managed databases.
|
|
@@ -4178,7 +4105,6 @@ module Google
|
|
|
4178
4105
|
# Update properties of this object
|
|
4179
4106
|
def update!(**args)
|
|
4180
4107
|
@backupdr_metadata = args[:backupdr_metadata] if args.key?(:backupdr_metadata)
|
|
4181
|
-
@bigquery_resource_metadata = args[:bigquery_resource_metadata] if args.key?(:bigquery_resource_metadata)
|
|
4182
4108
|
@config_based_signal_data = args[:config_based_signal_data] if args.key?(:config_based_signal_data)
|
|
4183
4109
|
@database_resource_signal_data = args[:database_resource_signal_data] if args.key?(:database_resource_signal_data)
|
|
4184
4110
|
@feed_timestamp = args[:feed_timestamp] if args.key?(:feed_timestamp)
|
|
@@ -4324,15 +4250,14 @@ module Google
|
|
|
4324
4250
|
attr_accessor :provider_description
|
|
4325
4251
|
|
|
4326
4252
|
# Required. The type of resource this ID is identifying. Ex go/keep-sorted start
|
|
4327
|
-
# alloydb.googleapis.com/Cluster, alloydb.googleapis.com/Instance,
|
|
4328
|
-
# googleapis.com/
|
|
4329
|
-
# googleapis.com/Instance
|
|
4330
|
-
# com/
|
|
4331
|
-
# oracledatabase.googleapis.com/
|
|
4332
|
-
# googleapis.com/
|
|
4333
|
-
# spanner.googleapis.com/
|
|
4334
|
-
#
|
|
4335
|
-
# common-datamodel
|
|
4253
|
+
# alloydb.googleapis.com/Cluster, alloydb.googleapis.com/Instance, bigtableadmin.
|
|
4254
|
+
# googleapis.com/Cluster, bigtableadmin.googleapis.com/Instance compute.
|
|
4255
|
+
# googleapis.com/Instance firestore.googleapis.com/Database, redis.googleapis.
|
|
4256
|
+
# com/Instance, redis.googleapis.com/Cluster, oracledatabase.googleapis.com/
|
|
4257
|
+
# CloudExadataInfrastructure oracledatabase.googleapis.com/CloudVmCluster
|
|
4258
|
+
# oracledatabase.googleapis.com/AutonomousDatabase spanner.googleapis.com/
|
|
4259
|
+
# Instance, spanner.googleapis.com/Database, sqladmin.googleapis.com/Instance,
|
|
4260
|
+
# go/keep-sorted end REQUIRED Please refer go/condor-common-datamodel
|
|
4336
4261
|
# Corresponds to the JSON property `resourceType`
|
|
4337
4262
|
# @return [String]
|
|
4338
4263
|
attr_accessor :resource_type
|
|
@@ -4782,12 +4707,24 @@ module Google
|
|
|
4782
4707
|
class StorageDatabasecenterPartnerapiV1mainMachineConfiguration
|
|
4783
4708
|
include Google::Apis::Core::Hashable
|
|
4784
4709
|
|
|
4710
|
+
# Optional. Baseline slots for BigQuery Reservations. Baseline slots are in
|
|
4711
|
+
# increments of 50.
|
|
4712
|
+
# Corresponds to the JSON property `baselineSlots`
|
|
4713
|
+
# @return [Fixnum]
|
|
4714
|
+
attr_accessor :baseline_slots
|
|
4715
|
+
|
|
4785
4716
|
# The number of CPUs. Deprecated. Use vcpu_count instead. TODO(b/342344482) add
|
|
4786
4717
|
# proto validations again after bug fix.
|
|
4787
4718
|
# Corresponds to the JSON property `cpuCount`
|
|
4788
4719
|
# @return [Fixnum]
|
|
4789
4720
|
attr_accessor :cpu_count
|
|
4790
4721
|
|
|
4722
|
+
# Optional. Max slots for BigQuery Reservations. Max slots are in increments of
|
|
4723
|
+
# 50.
|
|
4724
|
+
# Corresponds to the JSON property `maxReservationSlots`
|
|
4725
|
+
# @return [Fixnum]
|
|
4726
|
+
attr_accessor :max_reservation_slots
|
|
4727
|
+
|
|
4791
4728
|
# Memory size in bytes. TODO(b/342344482) add proto validations again after bug
|
|
4792
4729
|
# fix.
|
|
4793
4730
|
# Corresponds to the JSON property `memorySizeInBytes`
|
|
@@ -4811,7 +4748,9 @@ module Google
|
|
|
4811
4748
|
|
|
4812
4749
|
# Update properties of this object
|
|
4813
4750
|
def update!(**args)
|
|
4751
|
+
@baseline_slots = args[:baseline_slots] if args.key?(:baseline_slots)
|
|
4814
4752
|
@cpu_count = args[:cpu_count] if args.key?(:cpu_count)
|
|
4753
|
+
@max_reservation_slots = args[:max_reservation_slots] if args.key?(:max_reservation_slots)
|
|
4815
4754
|
@memory_size_in_bytes = args[:memory_size_in_bytes] if args.key?(:memory_size_in_bytes)
|
|
4816
4755
|
@shard_count = args[:shard_count] if args.key?(:shard_count)
|
|
4817
4756
|
@vcpu_count = args[:vcpu_count] if args.key?(:vcpu_count)
|
|
@@ -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.44.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 = "20260108"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -550,12 +550,6 @@ 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
|
-
|
|
559
553
|
class StorageDatabasecenterPartnerapiV1mainCompliance
|
|
560
554
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
561
555
|
|
|
@@ -1757,23 +1751,6 @@ module Google
|
|
|
1757
1751
|
end
|
|
1758
1752
|
end
|
|
1759
1753
|
|
|
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
|
-
|
|
1777
1754
|
class StorageDatabasecenterPartnerapiV1mainCompliance
|
|
1778
1755
|
# @private
|
|
1779
1756
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -1807,8 +1784,6 @@ module Google
|
|
|
1807
1784
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1808
1785
|
property :backupdr_metadata, as: 'backupdrMetadata', class: Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainBackupDrMetadata, decorator: Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainBackupDrMetadata::Representation
|
|
1809
1786
|
|
|
1810
|
-
property :bigquery_resource_metadata, as: 'bigqueryResourceMetadata', class: Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainBigQueryResourceMetadata, decorator: Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainBigQueryResourceMetadata::Representation
|
|
1811
|
-
|
|
1812
1787
|
property :config_based_signal_data, as: 'configBasedSignalData', class: Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainConfigBasedSignalData, decorator: Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainConfigBasedSignalData::Representation
|
|
1813
1788
|
|
|
1814
1789
|
property :database_resource_signal_data, as: 'databaseResourceSignalData', class: Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainDatabaseResourceSignalData, decorator: Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainDatabaseResourceSignalData::Representation
|
|
@@ -1969,7 +1944,9 @@ module Google
|
|
|
1969
1944
|
class StorageDatabasecenterPartnerapiV1mainMachineConfiguration
|
|
1970
1945
|
# @private
|
|
1971
1946
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1947
|
+
property :baseline_slots, :numeric_string => true, as: 'baselineSlots'
|
|
1972
1948
|
property :cpu_count, as: 'cpuCount'
|
|
1949
|
+
property :max_reservation_slots, :numeric_string => true, as: 'maxReservationSlots'
|
|
1973
1950
|
property :memory_size_in_bytes, :numeric_string => true, as: 'memorySizeInBytes'
|
|
1974
1951
|
property :shard_count, as: 'shardCount'
|
|
1975
1952
|
property :vcpu_count, as: 'vcpuCount'
|
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.44.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.44.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:
|