google-apis-alloydb_v1beta 0.42.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: fae2cd1c7f4318c8d94644f7f7173c6237c2acb33c4ebf0e7a3e7f73d81a8de5
4
- data.tar.gz: 79c1a79633cad403ca7914543edfadb652a9edf106849af0fe1df8a701c37864
3
+ metadata.gz: 96be34022447da7f56a9cd46f69a773f0df03791a04e16deeba40e293cbcd193
4
+ data.tar.gz: d4cb43759e5d173331956bf30c4f1b2693f550d6c998c08ef8d1477b299855e9
5
5
  SHA512:
6
- metadata.gz: 1f5b6a26fe872b03649734c9c4f55745e62df95b6638c1b168149798b32e385473ddad6d9143414ffd0007d35947f866e022e79fad80a40ba34f5b071dce9699
7
- data.tar.gz: 3e581c441d1baf49dcee1876b1ed1a8592e6bfe6a83e889bd7fc664964aff13c994d0ffc96f69b05c2deb5338a82257d863f0ffe8f6a79470bd277f851a83f1c
6
+ metadata.gz: 524a5e52708b3a5f64b0534a6a3f2c00e8ad1a92ff6f1008678f00ad5dea8eacdc7eb5b307959af3a0e2cc95df85eb25860c1cc3001ca3d328b332d869963057
7
+ data.tar.gz: e29c6d043ba0d331301db58f8f537fa34b028c3560e19ec07ccb2ad82c3fe0cc1feb7fd488f9390f7039e43f3544750664d17f43b7d6b565a1d687104ac3f977
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
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
+
3
7
  ### v0.42.0 (2025-11-16)
4
8
 
5
9
  * Regenerated from discovery document revision 20251106
@@ -2370,8 +2370,9 @@ module Google
2370
2370
  attr_accessor :operations
2371
2371
 
2372
2372
  # Unordered list. Unreachable resources. Populated when the request sets `
2373
- # ListOperationsRequest.return_partial_success` and reads across collections e.g.
2374
- # when attempting to list all resources across all supported locations.
2373
+ # ListOperationsRequest.return_partial_success` and reads across collections.
2374
+ # For example, when attempting to list all resources across all supported
2375
+ # locations.
2375
2376
  # Corresponds to the JSON property `unreachable`
2376
2377
  # @return [Array<String>]
2377
2378
  attr_accessor :unreachable
@@ -3933,6 +3934,73 @@ module Google
3933
3934
  end
3934
3935
  end
3935
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
+
3936
4004
  # Contains compliance information about a security standard indicating unmet
3937
4005
  # recommendations.
3938
4006
  class StorageDatabasecenterPartnerapiV1mainCompliance
@@ -4038,6 +4106,12 @@ module Google
4038
4106
  # @return [Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainBackupDrMetadata]
4039
4107
  attr_accessor :backupdr_metadata
4040
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
+
4041
4115
  # Config based signal data. This is used to send signals to Condor which are
4042
4116
  # based on the DB level configurations. These will be used to send signals for
4043
4117
  # self managed databases.
@@ -4104,6 +4178,7 @@ module Google
4104
4178
  # Update properties of this object
4105
4179
  def update!(**args)
4106
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)
4107
4182
  @config_based_signal_data = args[:config_based_signal_data] if args.key?(:config_based_signal_data)
4108
4183
  @database_resource_signal_data = args[:database_resource_signal_data] if args.key?(:database_resource_signal_data)
4109
4184
  @feed_timestamp = args[:feed_timestamp] if args.key?(:feed_timestamp)
@@ -4249,14 +4324,15 @@ module Google
4249
4324
  attr_accessor :provider_description
4250
4325
 
4251
4326
  # Required. The type of resource this ID is identifying. Ex go/keep-sorted start
4252
- # alloydb.googleapis.com/Cluster, alloydb.googleapis.com/Instance, bigtableadmin.
4253
- # googleapis.com/Cluster, bigtableadmin.googleapis.com/Instance compute.
4254
- # googleapis.com/Instance firestore.googleapis.com/Database, redis.googleapis.
4255
- # com/Instance, redis.googleapis.com/Cluster, oracledatabase.googleapis.com/
4256
- # CloudExadataInfrastructure oracledatabase.googleapis.com/CloudVmCluster
4257
- # oracledatabase.googleapis.com/AutonomousDatabase spanner.googleapis.com/
4258
- # Instance, spanner.googleapis.com/Database, sqladmin.googleapis.com/Instance,
4259
- # go/keep-sorted end REQUIRED Please refer go/condor-common-datamodel
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
4260
4336
  # Corresponds to the JSON property `resourceType`
4261
4337
  # @return [String]
4262
4338
  attr_accessor :resource_type
@@ -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.42.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 = "20251106"
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
 
@@ -1751,6 +1757,23 @@ module Google
1751
1757
  end
1752
1758
  end
1753
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
+
1754
1777
  class StorageDatabasecenterPartnerapiV1mainCompliance
1755
1778
  # @private
1756
1779
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1784,6 +1807,8 @@ module Google
1784
1807
  class Representation < Google::Apis::Core::JsonRepresentation
1785
1808
  property :backupdr_metadata, as: 'backupdrMetadata', class: Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainBackupDrMetadata, decorator: Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainBackupDrMetadata::Representation
1786
1809
 
1810
+ property :bigquery_resource_metadata, as: 'bigqueryResourceMetadata', class: Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainBigQueryResourceMetadata, decorator: Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainBigQueryResourceMetadata::Representation
1811
+
1787
1812
  property :config_based_signal_data, as: 'configBasedSignalData', class: Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainConfigBasedSignalData, decorator: Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainConfigBasedSignalData::Representation
1788
1813
 
1789
1814
  property :database_resource_signal_data, as: 'databaseResourceSignalData', class: Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainDatabaseResourceSignalData, decorator: Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainDatabaseResourceSignalData::Representation
@@ -1741,11 +1741,12 @@ module Google
1741
1741
  # The standard list page token.
1742
1742
  # @param [Boolean] return_partial_success
1743
1743
  # When set to `true`, operations that are reachable are returned as normal, and
1744
- # those that are unreachable are returned in the [ListOperationsResponse.
1745
- # unreachable] field. This can only be `true` when reading across collections e.
1746
- # g. when `parent` is set to `"projects/example/locations/-"`. This field is not
1747
- # by default supported and will result in an `UNIMPLEMENTED` error if set unless
1748
- # explicitly documented otherwise in service or product specific documentation.
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.
1749
1750
  # @param [String] fields
1750
1751
  # Selector specifying which fields to include in a partial response.
1751
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.42.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.42.0
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: