google-apis-alloydb_v1alpha 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: bd2b7bf839ae3f3082a41d11a3bcbacd3d55050c26fd290f88e3a2ace5347868
|
|
4
|
+
data.tar.gz: a83c1df3cf2dd48d7b1a9ca13f07038d3175456c37b74fb10ef742a94f608f40
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3c5066dc5082fda784b5c2ec0f9722c13028fd3b0a887f216b04f205e50681d650ba77f12d9a46aaaf538244f61c2e8bfccfd7538f838547bf0fd1c22809816e
|
|
7
|
+
data.tar.gz: b8101cdde0be28deacb074ff4da78ea158a7dc929d6304823c324296fcab08c5475f5926d8410605592944ed0ca5e39d22739ceb6df6c8b34311ef87b1215a8e
|
data/CHANGELOG.md
CHANGED
|
@@ -3968,73 +3968,6 @@ module Google
|
|
|
3968
3968
|
end
|
|
3969
3969
|
end
|
|
3970
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
|
-
|
|
4038
3971
|
# Contains compliance information about a security standard indicating unmet
|
|
4039
3972
|
# recommendations.
|
|
4040
3973
|
class StorageDatabasecenterPartnerapiV1mainCompliance
|
|
@@ -4140,12 +4073,6 @@ module Google
|
|
|
4140
4073
|
# @return [Google::Apis::AlloydbV1alpha::StorageDatabasecenterPartnerapiV1mainBackupDrMetadata]
|
|
4141
4074
|
attr_accessor :backupdr_metadata
|
|
4142
4075
|
|
|
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
|
-
|
|
4149
4076
|
# Config based signal data. This is used to send signals to Condor which are
|
|
4150
4077
|
# based on the DB level configurations. These will be used to send signals for
|
|
4151
4078
|
# self managed databases.
|
|
@@ -4212,7 +4139,6 @@ module Google
|
|
|
4212
4139
|
# Update properties of this object
|
|
4213
4140
|
def update!(**args)
|
|
4214
4141
|
@backupdr_metadata = args[:backupdr_metadata] if args.key?(:backupdr_metadata)
|
|
4215
|
-
@bigquery_resource_metadata = args[:bigquery_resource_metadata] if args.key?(:bigquery_resource_metadata)
|
|
4216
4142
|
@config_based_signal_data = args[:config_based_signal_data] if args.key?(:config_based_signal_data)
|
|
4217
4143
|
@database_resource_signal_data = args[:database_resource_signal_data] if args.key?(:database_resource_signal_data)
|
|
4218
4144
|
@feed_timestamp = args[:feed_timestamp] if args.key?(:feed_timestamp)
|
|
@@ -4358,15 +4284,14 @@ module Google
|
|
|
4358
4284
|
attr_accessor :provider_description
|
|
4359
4285
|
|
|
4360
4286
|
# Required. The type of resource this ID is identifying. Ex go/keep-sorted start
|
|
4361
|
-
# alloydb.googleapis.com/Cluster, alloydb.googleapis.com/Instance,
|
|
4362
|
-
# googleapis.com/
|
|
4363
|
-
# googleapis.com/Instance
|
|
4364
|
-
# com/
|
|
4365
|
-
# oracledatabase.googleapis.com/
|
|
4366
|
-
# googleapis.com/
|
|
4367
|
-
# spanner.googleapis.com/
|
|
4368
|
-
#
|
|
4369
|
-
# common-datamodel
|
|
4287
|
+
# alloydb.googleapis.com/Cluster, alloydb.googleapis.com/Instance, bigtableadmin.
|
|
4288
|
+
# googleapis.com/Cluster, bigtableadmin.googleapis.com/Instance compute.
|
|
4289
|
+
# googleapis.com/Instance firestore.googleapis.com/Database, redis.googleapis.
|
|
4290
|
+
# com/Instance, redis.googleapis.com/Cluster, oracledatabase.googleapis.com/
|
|
4291
|
+
# CloudExadataInfrastructure oracledatabase.googleapis.com/CloudVmCluster
|
|
4292
|
+
# oracledatabase.googleapis.com/AutonomousDatabase spanner.googleapis.com/
|
|
4293
|
+
# Instance, spanner.googleapis.com/Database, sqladmin.googleapis.com/Instance,
|
|
4294
|
+
# go/keep-sorted end REQUIRED Please refer go/condor-common-datamodel
|
|
4370
4295
|
# Corresponds to the JSON property `resourceType`
|
|
4371
4296
|
# @return [String]
|
|
4372
4297
|
attr_accessor :resource_type
|
|
@@ -4816,12 +4741,24 @@ module Google
|
|
|
4816
4741
|
class StorageDatabasecenterPartnerapiV1mainMachineConfiguration
|
|
4817
4742
|
include Google::Apis::Core::Hashable
|
|
4818
4743
|
|
|
4744
|
+
# Optional. Baseline slots for BigQuery Reservations. Baseline slots are in
|
|
4745
|
+
# increments of 50.
|
|
4746
|
+
# Corresponds to the JSON property `baselineSlots`
|
|
4747
|
+
# @return [Fixnum]
|
|
4748
|
+
attr_accessor :baseline_slots
|
|
4749
|
+
|
|
4819
4750
|
# The number of CPUs. Deprecated. Use vcpu_count instead. TODO(b/342344482) add
|
|
4820
4751
|
# proto validations again after bug fix.
|
|
4821
4752
|
# Corresponds to the JSON property `cpuCount`
|
|
4822
4753
|
# @return [Fixnum]
|
|
4823
4754
|
attr_accessor :cpu_count
|
|
4824
4755
|
|
|
4756
|
+
# Optional. Max slots for BigQuery Reservations. Max slots are in increments of
|
|
4757
|
+
# 50.
|
|
4758
|
+
# Corresponds to the JSON property `maxReservationSlots`
|
|
4759
|
+
# @return [Fixnum]
|
|
4760
|
+
attr_accessor :max_reservation_slots
|
|
4761
|
+
|
|
4825
4762
|
# Memory size in bytes. TODO(b/342344482) add proto validations again after bug
|
|
4826
4763
|
# fix.
|
|
4827
4764
|
# Corresponds to the JSON property `memorySizeInBytes`
|
|
@@ -4845,7 +4782,9 @@ module Google
|
|
|
4845
4782
|
|
|
4846
4783
|
# Update properties of this object
|
|
4847
4784
|
def update!(**args)
|
|
4785
|
+
@baseline_slots = args[:baseline_slots] if args.key?(:baseline_slots)
|
|
4848
4786
|
@cpu_count = args[:cpu_count] if args.key?(:cpu_count)
|
|
4787
|
+
@max_reservation_slots = args[:max_reservation_slots] if args.key?(:max_reservation_slots)
|
|
4849
4788
|
@memory_size_in_bytes = args[:memory_size_in_bytes] if args.key?(:memory_size_in_bytes)
|
|
4850
4789
|
@shard_count = args[:shard_count] if args.key?(:shard_count)
|
|
4851
4790
|
@vcpu_count = args[:vcpu_count] if args.key?(:vcpu_count)
|
|
@@ -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.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
|
|
@@ -556,12 +556,6 @@ 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
|
-
|
|
565
559
|
class StorageDatabasecenterPartnerapiV1mainCompliance
|
|
566
560
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
567
561
|
|
|
@@ -1772,23 +1766,6 @@ module Google
|
|
|
1772
1766
|
end
|
|
1773
1767
|
end
|
|
1774
1768
|
|
|
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
|
-
|
|
1792
1769
|
class StorageDatabasecenterPartnerapiV1mainCompliance
|
|
1793
1770
|
# @private
|
|
1794
1771
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -1822,8 +1799,6 @@ module Google
|
|
|
1822
1799
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1823
1800
|
property :backupdr_metadata, as: 'backupdrMetadata', class: Google::Apis::AlloydbV1alpha::StorageDatabasecenterPartnerapiV1mainBackupDrMetadata, decorator: Google::Apis::AlloydbV1alpha::StorageDatabasecenterPartnerapiV1mainBackupDrMetadata::Representation
|
|
1824
1801
|
|
|
1825
|
-
property :bigquery_resource_metadata, as: 'bigqueryResourceMetadata', class: Google::Apis::AlloydbV1alpha::StorageDatabasecenterPartnerapiV1mainBigQueryResourceMetadata, decorator: Google::Apis::AlloydbV1alpha::StorageDatabasecenterPartnerapiV1mainBigQueryResourceMetadata::Representation
|
|
1826
|
-
|
|
1827
1802
|
property :config_based_signal_data, as: 'configBasedSignalData', class: Google::Apis::AlloydbV1alpha::StorageDatabasecenterPartnerapiV1mainConfigBasedSignalData, decorator: Google::Apis::AlloydbV1alpha::StorageDatabasecenterPartnerapiV1mainConfigBasedSignalData::Representation
|
|
1828
1803
|
|
|
1829
1804
|
property :database_resource_signal_data, as: 'databaseResourceSignalData', class: Google::Apis::AlloydbV1alpha::StorageDatabasecenterPartnerapiV1mainDatabaseResourceSignalData, decorator: Google::Apis::AlloydbV1alpha::StorageDatabasecenterPartnerapiV1mainDatabaseResourceSignalData::Representation
|
|
@@ -1984,7 +1959,9 @@ module Google
|
|
|
1984
1959
|
class StorageDatabasecenterPartnerapiV1mainMachineConfiguration
|
|
1985
1960
|
# @private
|
|
1986
1961
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1962
|
+
property :baseline_slots, :numeric_string => true, as: 'baselineSlots'
|
|
1987
1963
|
property :cpu_count, as: 'cpuCount'
|
|
1964
|
+
property :max_reservation_slots, :numeric_string => true, as: 'maxReservationSlots'
|
|
1988
1965
|
property :memory_size_in_bytes, :numeric_string => true, as: 'memorySizeInBytes'
|
|
1989
1966
|
property :shard_count, as: 'shardCount'
|
|
1990
1967
|
property :vcpu_count, as: 'vcpuCount'
|
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.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_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.44.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:
|