google-apis-alloydb_v1alpha 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: 5d47c4f240ca243e95c823e864453389214890bb63a8ec40f87600b9caa9f0fd
4
- data.tar.gz: a8d47b4b6c73e5024e457f383a8f34ca607cd70e9036e7224046223a2e84f2d5
3
+ metadata.gz: 26438d9396cd6f2d21b5064caa1714275ad95bc67fd53557d48513deff885268
4
+ data.tar.gz: 120c1cf41ca7a5d88e1c63fdb2f2e3489d02695ff00217dd9b8c0cd200500fdf
5
5
  SHA512:
6
- metadata.gz: c54e876a274100339fd7466fb0d894cd8a837b58f210b349b546e1594209905af711e94220cf7a9e69b5ba8dea7d0bbb5646d24ca53e2806210d046c361344d3
7
- data.tar.gz: 3292a58c7dbadb627bfdeae2aa9e27b3c89a16a1a928563599158cb8234c159ee2bdc993a392f7c2b32d73ec11ce86f1146b9908451fd17918721447653bf298
6
+ metadata.gz: ccdf8b85c0f74e78f84805de79ea1485e8e568aa9a53bd66e7fb6d687c3d2f08861f3d71c84d1336dfcd03d8a49dec4009ad4c3f3106e13a169e565ddd753f86
7
+ data.tar.gz: 79aa8de86c381bee3d6122b6903711f36898e7406b778c46d093f4a7a00ad7e58e62f82e1af5fa99f1d6931da4c0180d44dea0354539367db8d282bce3c0ccc0
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
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
+
3
7
  ### v0.42.0 (2025-11-16)
4
8
 
5
9
  * Regenerated from discovery document revision 20251106
@@ -2404,8 +2404,9 @@ module Google
2404
2404
  attr_accessor :operations
2405
2405
 
2406
2406
  # Unordered list. Unreachable resources. Populated when the request sets `
2407
- # ListOperationsRequest.return_partial_success` and reads across collections e.g.
2408
- # when attempting to list all resources across all supported locations.
2407
+ # ListOperationsRequest.return_partial_success` and reads across collections.
2408
+ # For example, when attempting to list all resources across all supported
2409
+ # locations.
2409
2410
  # Corresponds to the JSON property `unreachable`
2410
2411
  # @return [Array<String>]
2411
2412
  attr_accessor :unreachable
@@ -3967,6 +3968,73 @@ module Google
3967
3968
  end
3968
3969
  end
3969
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
+
3970
4038
  # Contains compliance information about a security standard indicating unmet
3971
4039
  # recommendations.
3972
4040
  class StorageDatabasecenterPartnerapiV1mainCompliance
@@ -4072,6 +4140,12 @@ module Google
4072
4140
  # @return [Google::Apis::AlloydbV1alpha::StorageDatabasecenterPartnerapiV1mainBackupDrMetadata]
4073
4141
  attr_accessor :backupdr_metadata
4074
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
+
4075
4149
  # Config based signal data. This is used to send signals to Condor which are
4076
4150
  # based on the DB level configurations. These will be used to send signals for
4077
4151
  # self managed databases.
@@ -4138,6 +4212,7 @@ module Google
4138
4212
  # Update properties of this object
4139
4213
  def update!(**args)
4140
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)
4141
4216
  @config_based_signal_data = args[:config_based_signal_data] if args.key?(:config_based_signal_data)
4142
4217
  @database_resource_signal_data = args[:database_resource_signal_data] if args.key?(:database_resource_signal_data)
4143
4218
  @feed_timestamp = args[:feed_timestamp] if args.key?(:feed_timestamp)
@@ -4283,14 +4358,15 @@ module Google
4283
4358
  attr_accessor :provider_description
4284
4359
 
4285
4360
  # Required. The type of resource this ID is identifying. Ex go/keep-sorted start
4286
- # alloydb.googleapis.com/Cluster, alloydb.googleapis.com/Instance, bigtableadmin.
4287
- # googleapis.com/Cluster, bigtableadmin.googleapis.com/Instance compute.
4288
- # googleapis.com/Instance firestore.googleapis.com/Database, redis.googleapis.
4289
- # com/Instance, redis.googleapis.com/Cluster, oracledatabase.googleapis.com/
4290
- # CloudExadataInfrastructure oracledatabase.googleapis.com/CloudVmCluster
4291
- # oracledatabase.googleapis.com/AutonomousDatabase spanner.googleapis.com/
4292
- # Instance, spanner.googleapis.com/Database, sqladmin.googleapis.com/Instance,
4293
- # go/keep-sorted end REQUIRED Please refer go/condor-common-datamodel
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
4294
4370
  # Corresponds to the JSON property `resourceType`
4295
4371
  # @return [String]
4296
4372
  attr_accessor :resource_type
@@ -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.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
@@ -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
 
@@ -1766,6 +1772,23 @@ module Google
1766
1772
  end
1767
1773
  end
1768
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
+
1769
1792
  class StorageDatabasecenterPartnerapiV1mainCompliance
1770
1793
  # @private
1771
1794
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1799,6 +1822,8 @@ module Google
1799
1822
  class Representation < Google::Apis::Core::JsonRepresentation
1800
1823
  property :backupdr_metadata, as: 'backupdrMetadata', class: Google::Apis::AlloydbV1alpha::StorageDatabasecenterPartnerapiV1mainBackupDrMetadata, decorator: Google::Apis::AlloydbV1alpha::StorageDatabasecenterPartnerapiV1mainBackupDrMetadata::Representation
1801
1824
 
1825
+ property :bigquery_resource_metadata, as: 'bigqueryResourceMetadata', class: Google::Apis::AlloydbV1alpha::StorageDatabasecenterPartnerapiV1mainBigQueryResourceMetadata, decorator: Google::Apis::AlloydbV1alpha::StorageDatabasecenterPartnerapiV1mainBigQueryResourceMetadata::Representation
1826
+
1802
1827
  property :config_based_signal_data, as: 'configBasedSignalData', class: Google::Apis::AlloydbV1alpha::StorageDatabasecenterPartnerapiV1mainConfigBasedSignalData, decorator: Google::Apis::AlloydbV1alpha::StorageDatabasecenterPartnerapiV1mainConfigBasedSignalData::Representation
1803
1828
 
1804
1829
  property :database_resource_signal_data, as: 'databaseResourceSignalData', class: Google::Apis::AlloydbV1alpha::StorageDatabasecenterPartnerapiV1mainDatabaseResourceSignalData, decorator: Google::Apis::AlloydbV1alpha::StorageDatabasecenterPartnerapiV1mainDatabaseResourceSignalData::Representation
@@ -1744,11 +1744,12 @@ module Google
1744
1744
  # The standard list page token.
1745
1745
  # @param [Boolean] return_partial_success
1746
1746
  # When set to `true`, operations that are reachable are returned as normal, and
1747
- # those that are unreachable are returned in the [ListOperationsResponse.
1748
- # unreachable] field. This can only be `true` when reading across collections e.
1749
- # g. when `parent` is set to `"projects/example/locations/-"`. This field is not
1750
- # by default supported and will result in an `UNIMPLEMENTED` error if set unless
1751
- # explicitly documented otherwise in service or product specific documentation.
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.
1752
1753
  # @param [String] fields
1753
1754
  # Selector specifying which fields to include in a partial response.
1754
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.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_v1alpha/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-alloydb_v1alpha/v0.42.0
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: