google-apis-alloydb_v1 0.51.0 → 0.52.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: 542c128090ee362543ac1da239d4b462b2a562a36b364fd8fd7424917cc593df
|
|
4
|
+
data.tar.gz: ea3bf9f911f2410ec31484bf12ccd857d5789e931eda85c1fe2a8839bae462ba
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6c6ba70c08262bf8d12f3dbf6cb1151570b5899c99c03834f4ec57df03a739ce5b4c8392cc8f3251f02349c4062390692c93813e19da0067c4f06e65d58af944
|
|
7
|
+
data.tar.gz: 01a239873ffcba98af7559d8f6ae7756d5ea34189824823f248d1812f8502315a5f7abd8d26b06bc2650a7aa19c5a664430773cfb885bf0ec7f6db43b06f58d7
|
data/CHANGELOG.md
CHANGED
|
@@ -3619,73 +3619,6 @@ module Google
|
|
|
3619
3619
|
end
|
|
3620
3620
|
end
|
|
3621
3621
|
|
|
3622
|
-
# BigQueryResourceMetadata contains information about the BigQuery resource.
|
|
3623
|
-
# Next ID: 9
|
|
3624
|
-
class StorageDatabasecenterPartnerapiV1mainBigQueryResourceMetadata
|
|
3625
|
-
include Google::Apis::Core::Hashable
|
|
3626
|
-
|
|
3627
|
-
# The creation time of the resource, i.e. the time when resource is created and
|
|
3628
|
-
# recorded in partner service.
|
|
3629
|
-
# Corresponds to the JSON property `createTime`
|
|
3630
|
-
# @return [String]
|
|
3631
|
-
attr_accessor :create_time
|
|
3632
|
-
|
|
3633
|
-
# Required. Full resource name of this instance.
|
|
3634
|
-
# Corresponds to the JSON property `fullResourceName`
|
|
3635
|
-
# @return [String]
|
|
3636
|
-
attr_accessor :full_resource_name
|
|
3637
|
-
|
|
3638
|
-
# Required. location of the resource
|
|
3639
|
-
# Corresponds to the JSON property `location`
|
|
3640
|
-
# @return [String]
|
|
3641
|
-
attr_accessor :location
|
|
3642
|
-
|
|
3643
|
-
# Product specification for Condor resources.
|
|
3644
|
-
# Corresponds to the JSON property `product`
|
|
3645
|
-
# @return [Google::Apis::AlloydbV1::StorageDatabasecenterProtoCommonProduct]
|
|
3646
|
-
attr_accessor :product
|
|
3647
|
-
|
|
3648
|
-
# Closest parent Cloud Resource Manager container of this resource. It must be
|
|
3649
|
-
# resource name of a Cloud Resource Manager project with the format of "/", such
|
|
3650
|
-
# as "projects/123". For GCP provided resources, number should be project number.
|
|
3651
|
-
# Corresponds to the JSON property `resourceContainer`
|
|
3652
|
-
# @return [String]
|
|
3653
|
-
attr_accessor :resource_container
|
|
3654
|
-
|
|
3655
|
-
# DatabaseResourceId will serve as primary key for any resource ingestion event.
|
|
3656
|
-
# Corresponds to the JSON property `resourceId`
|
|
3657
|
-
# @return [Google::Apis::AlloydbV1::StorageDatabasecenterPartnerapiV1mainDatabaseResourceId]
|
|
3658
|
-
attr_accessor :resource_id
|
|
3659
|
-
|
|
3660
|
-
# The time at which the resource was updated and recorded at partner service.
|
|
3661
|
-
# Corresponds to the JSON property `updateTime`
|
|
3662
|
-
# @return [String]
|
|
3663
|
-
attr_accessor :update_time
|
|
3664
|
-
|
|
3665
|
-
# Message type for storing user labels. User labels are used to tag App Engine
|
|
3666
|
-
# resources, allowing users to search for resources matching a set of labels and
|
|
3667
|
-
# to aggregate usage data by labels.
|
|
3668
|
-
# Corresponds to the JSON property `userLabelSet`
|
|
3669
|
-
# @return [Google::Apis::AlloydbV1::StorageDatabasecenterPartnerapiV1mainUserLabels]
|
|
3670
|
-
attr_accessor :user_label_set
|
|
3671
|
-
|
|
3672
|
-
def initialize(**args)
|
|
3673
|
-
update!(**args)
|
|
3674
|
-
end
|
|
3675
|
-
|
|
3676
|
-
# Update properties of this object
|
|
3677
|
-
def update!(**args)
|
|
3678
|
-
@create_time = args[:create_time] if args.key?(:create_time)
|
|
3679
|
-
@full_resource_name = args[:full_resource_name] if args.key?(:full_resource_name)
|
|
3680
|
-
@location = args[:location] if args.key?(:location)
|
|
3681
|
-
@product = args[:product] if args.key?(:product)
|
|
3682
|
-
@resource_container = args[:resource_container] if args.key?(:resource_container)
|
|
3683
|
-
@resource_id = args[:resource_id] if args.key?(:resource_id)
|
|
3684
|
-
@update_time = args[:update_time] if args.key?(:update_time)
|
|
3685
|
-
@user_label_set = args[:user_label_set] if args.key?(:user_label_set)
|
|
3686
|
-
end
|
|
3687
|
-
end
|
|
3688
|
-
|
|
3689
3622
|
# Contains compliance information about a security standard indicating unmet
|
|
3690
3623
|
# recommendations.
|
|
3691
3624
|
class StorageDatabasecenterPartnerapiV1mainCompliance
|
|
@@ -3791,12 +3724,6 @@ module Google
|
|
|
3791
3724
|
# @return [Google::Apis::AlloydbV1::StorageDatabasecenterPartnerapiV1mainBackupDrMetadata]
|
|
3792
3725
|
attr_accessor :backupdr_metadata
|
|
3793
3726
|
|
|
3794
|
-
# BigQueryResourceMetadata contains information about the BigQuery resource.
|
|
3795
|
-
# Next ID: 9
|
|
3796
|
-
# Corresponds to the JSON property `bigqueryResourceMetadata`
|
|
3797
|
-
# @return [Google::Apis::AlloydbV1::StorageDatabasecenterPartnerapiV1mainBigQueryResourceMetadata]
|
|
3798
|
-
attr_accessor :bigquery_resource_metadata
|
|
3799
|
-
|
|
3800
3727
|
# Config based signal data. This is used to send signals to Condor which are
|
|
3801
3728
|
# based on the DB level configurations. These will be used to send signals for
|
|
3802
3729
|
# self managed databases.
|
|
@@ -3863,7 +3790,6 @@ module Google
|
|
|
3863
3790
|
# Update properties of this object
|
|
3864
3791
|
def update!(**args)
|
|
3865
3792
|
@backupdr_metadata = args[:backupdr_metadata] if args.key?(:backupdr_metadata)
|
|
3866
|
-
@bigquery_resource_metadata = args[:bigquery_resource_metadata] if args.key?(:bigquery_resource_metadata)
|
|
3867
3793
|
@config_based_signal_data = args[:config_based_signal_data] if args.key?(:config_based_signal_data)
|
|
3868
3794
|
@database_resource_signal_data = args[:database_resource_signal_data] if args.key?(:database_resource_signal_data)
|
|
3869
3795
|
@feed_timestamp = args[:feed_timestamp] if args.key?(:feed_timestamp)
|
|
@@ -4009,15 +3935,14 @@ module Google
|
|
|
4009
3935
|
attr_accessor :provider_description
|
|
4010
3936
|
|
|
4011
3937
|
# Required. The type of resource this ID is identifying. Ex go/keep-sorted start
|
|
4012
|
-
# alloydb.googleapis.com/Cluster, alloydb.googleapis.com/Instance,
|
|
4013
|
-
# googleapis.com/
|
|
4014
|
-
# googleapis.com/Instance
|
|
4015
|
-
# com/
|
|
4016
|
-
# oracledatabase.googleapis.com/
|
|
4017
|
-
# googleapis.com/
|
|
4018
|
-
# spanner.googleapis.com/
|
|
4019
|
-
#
|
|
4020
|
-
# common-datamodel
|
|
3938
|
+
# alloydb.googleapis.com/Cluster, alloydb.googleapis.com/Instance, bigtableadmin.
|
|
3939
|
+
# googleapis.com/Cluster, bigtableadmin.googleapis.com/Instance compute.
|
|
3940
|
+
# googleapis.com/Instance firestore.googleapis.com/Database, redis.googleapis.
|
|
3941
|
+
# com/Instance, redis.googleapis.com/Cluster, oracledatabase.googleapis.com/
|
|
3942
|
+
# CloudExadataInfrastructure oracledatabase.googleapis.com/CloudVmCluster
|
|
3943
|
+
# oracledatabase.googleapis.com/AutonomousDatabase spanner.googleapis.com/
|
|
3944
|
+
# Instance, spanner.googleapis.com/Database, sqladmin.googleapis.com/Instance,
|
|
3945
|
+
# go/keep-sorted end REQUIRED Please refer go/condor-common-datamodel
|
|
4021
3946
|
# Corresponds to the JSON property `resourceType`
|
|
4022
3947
|
# @return [String]
|
|
4023
3948
|
attr_accessor :resource_type
|
|
@@ -4467,12 +4392,24 @@ module Google
|
|
|
4467
4392
|
class StorageDatabasecenterPartnerapiV1mainMachineConfiguration
|
|
4468
4393
|
include Google::Apis::Core::Hashable
|
|
4469
4394
|
|
|
4395
|
+
# Optional. Baseline slots for BigQuery Reservations. Baseline slots are in
|
|
4396
|
+
# increments of 50.
|
|
4397
|
+
# Corresponds to the JSON property `baselineSlots`
|
|
4398
|
+
# @return [Fixnum]
|
|
4399
|
+
attr_accessor :baseline_slots
|
|
4400
|
+
|
|
4470
4401
|
# The number of CPUs. Deprecated. Use vcpu_count instead. TODO(b/342344482) add
|
|
4471
4402
|
# proto validations again after bug fix.
|
|
4472
4403
|
# Corresponds to the JSON property `cpuCount`
|
|
4473
4404
|
# @return [Fixnum]
|
|
4474
4405
|
attr_accessor :cpu_count
|
|
4475
4406
|
|
|
4407
|
+
# Optional. Max slots for BigQuery Reservations. Max slots are in increments of
|
|
4408
|
+
# 50.
|
|
4409
|
+
# Corresponds to the JSON property `maxReservationSlots`
|
|
4410
|
+
# @return [Fixnum]
|
|
4411
|
+
attr_accessor :max_reservation_slots
|
|
4412
|
+
|
|
4476
4413
|
# Memory size in bytes. TODO(b/342344482) add proto validations again after bug
|
|
4477
4414
|
# fix.
|
|
4478
4415
|
# Corresponds to the JSON property `memorySizeInBytes`
|
|
@@ -4496,7 +4433,9 @@ module Google
|
|
|
4496
4433
|
|
|
4497
4434
|
# Update properties of this object
|
|
4498
4435
|
def update!(**args)
|
|
4436
|
+
@baseline_slots = args[:baseline_slots] if args.key?(:baseline_slots)
|
|
4499
4437
|
@cpu_count = args[:cpu_count] if args.key?(:cpu_count)
|
|
4438
|
+
@max_reservation_slots = args[:max_reservation_slots] if args.key?(:max_reservation_slots)
|
|
4500
4439
|
@memory_size_in_bytes = args[:memory_size_in_bytes] if args.key?(:memory_size_in_bytes)
|
|
4501
4440
|
@shard_count = args[:shard_count] if args.key?(:shard_count)
|
|
4502
4441
|
@vcpu_count = args[:vcpu_count] if args.key?(:vcpu_count)
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module AlloydbV1
|
|
18
18
|
# Version of the google-apis-alloydb_v1 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.52.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
|
|
@@ -526,12 +526,6 @@ module Google
|
|
|
526
526
|
include Google::Apis::Core::JsonObjectSupport
|
|
527
527
|
end
|
|
528
528
|
|
|
529
|
-
class StorageDatabasecenterPartnerapiV1mainBigQueryResourceMetadata
|
|
530
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
531
|
-
|
|
532
|
-
include Google::Apis::Core::JsonObjectSupport
|
|
533
|
-
end
|
|
534
|
-
|
|
535
529
|
class StorageDatabasecenterPartnerapiV1mainCompliance
|
|
536
530
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
537
531
|
|
|
@@ -1660,23 +1654,6 @@ module Google
|
|
|
1660
1654
|
end
|
|
1661
1655
|
end
|
|
1662
1656
|
|
|
1663
|
-
class StorageDatabasecenterPartnerapiV1mainBigQueryResourceMetadata
|
|
1664
|
-
# @private
|
|
1665
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1666
|
-
property :create_time, as: 'createTime'
|
|
1667
|
-
property :full_resource_name, as: 'fullResourceName'
|
|
1668
|
-
property :location, as: 'location'
|
|
1669
|
-
property :product, as: 'product', class: Google::Apis::AlloydbV1::StorageDatabasecenterProtoCommonProduct, decorator: Google::Apis::AlloydbV1::StorageDatabasecenterProtoCommonProduct::Representation
|
|
1670
|
-
|
|
1671
|
-
property :resource_container, as: 'resourceContainer'
|
|
1672
|
-
property :resource_id, as: 'resourceId', class: Google::Apis::AlloydbV1::StorageDatabasecenterPartnerapiV1mainDatabaseResourceId, decorator: Google::Apis::AlloydbV1::StorageDatabasecenterPartnerapiV1mainDatabaseResourceId::Representation
|
|
1673
|
-
|
|
1674
|
-
property :update_time, as: 'updateTime'
|
|
1675
|
-
property :user_label_set, as: 'userLabelSet', class: Google::Apis::AlloydbV1::StorageDatabasecenterPartnerapiV1mainUserLabels, decorator: Google::Apis::AlloydbV1::StorageDatabasecenterPartnerapiV1mainUserLabels::Representation
|
|
1676
|
-
|
|
1677
|
-
end
|
|
1678
|
-
end
|
|
1679
|
-
|
|
1680
1657
|
class StorageDatabasecenterPartnerapiV1mainCompliance
|
|
1681
1658
|
# @private
|
|
1682
1659
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -1710,8 +1687,6 @@ module Google
|
|
|
1710
1687
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1711
1688
|
property :backupdr_metadata, as: 'backupdrMetadata', class: Google::Apis::AlloydbV1::StorageDatabasecenterPartnerapiV1mainBackupDrMetadata, decorator: Google::Apis::AlloydbV1::StorageDatabasecenterPartnerapiV1mainBackupDrMetadata::Representation
|
|
1712
1689
|
|
|
1713
|
-
property :bigquery_resource_metadata, as: 'bigqueryResourceMetadata', class: Google::Apis::AlloydbV1::StorageDatabasecenterPartnerapiV1mainBigQueryResourceMetadata, decorator: Google::Apis::AlloydbV1::StorageDatabasecenterPartnerapiV1mainBigQueryResourceMetadata::Representation
|
|
1714
|
-
|
|
1715
1690
|
property :config_based_signal_data, as: 'configBasedSignalData', class: Google::Apis::AlloydbV1::StorageDatabasecenterPartnerapiV1mainConfigBasedSignalData, decorator: Google::Apis::AlloydbV1::StorageDatabasecenterPartnerapiV1mainConfigBasedSignalData::Representation
|
|
1716
1691
|
|
|
1717
1692
|
property :database_resource_signal_data, as: 'databaseResourceSignalData', class: Google::Apis::AlloydbV1::StorageDatabasecenterPartnerapiV1mainDatabaseResourceSignalData, decorator: Google::Apis::AlloydbV1::StorageDatabasecenterPartnerapiV1mainDatabaseResourceSignalData::Representation
|
|
@@ -1872,7 +1847,9 @@ module Google
|
|
|
1872
1847
|
class StorageDatabasecenterPartnerapiV1mainMachineConfiguration
|
|
1873
1848
|
# @private
|
|
1874
1849
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1850
|
+
property :baseline_slots, :numeric_string => true, as: 'baselineSlots'
|
|
1875
1851
|
property :cpu_count, as: 'cpuCount'
|
|
1852
|
+
property :max_reservation_slots, :numeric_string => true, as: 'maxReservationSlots'
|
|
1876
1853
|
property :memory_size_in_bytes, :numeric_string => true, as: 'memorySizeInBytes'
|
|
1877
1854
|
property :shard_count, as: 'shardCount'
|
|
1878
1855
|
property :vcpu_count, as: 'vcpuCount'
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-alloydb_v1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.52.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_v1/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-alloydb_v1/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-alloydb_v1/v0.52.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-alloydb_v1
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|