google-apis-alloydb_v1 0.44.0 → 0.46.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: 90104fa18aabb04a7b09cd30f169c933765610e590e091cd827f6469e446ab2c
|
4
|
+
data.tar.gz: 8ed2da03736df8a74a220c9d105cd2952c4fb916f502e94db7a224e65b83b82a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b17044bd8e4831d4f5509a876c508f822794f6a5fe8864fcb5f17bf17d91cdac130b90d3a6b3439bb669711dff9ca868c753da26f819c3fdb96e271c9e705543
|
7
|
+
data.tar.gz: 1d25acca06c377c1e5b0d5398e6eaf8ab1409501ad80d9c43703dc82f2d5a00b199396393ceb2519c85f0565fcf32897814c88f25514d197ca24114f24f176bb
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-alloydb_v1
|
2
2
|
|
3
|
+
### v0.46.0 (2025-09-28)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250910
|
6
|
+
|
7
|
+
### v0.45.0 (2025-09-14)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20250904
|
10
|
+
|
3
11
|
### v0.44.0 (2025-08-31)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20250820
|
@@ -780,6 +780,38 @@ module Google
|
|
780
780
|
end
|
781
781
|
end
|
782
782
|
|
783
|
+
# Configuration for Managed Connection Pool (MCP).
|
784
|
+
class ConnectionPoolConfig
|
785
|
+
include Google::Apis::Core::Hashable
|
786
|
+
|
787
|
+
# Optional. Whether to enable Managed Connection Pool (MCP).
|
788
|
+
# Corresponds to the JSON property `enabled`
|
789
|
+
# @return [Boolean]
|
790
|
+
attr_accessor :enabled
|
791
|
+
alias_method :enabled?, :enabled
|
792
|
+
|
793
|
+
# Optional. Connection Pool flags, as a list of "key": "value" pairs.
|
794
|
+
# Corresponds to the JSON property `flags`
|
795
|
+
# @return [Hash<String,String>]
|
796
|
+
attr_accessor :flags
|
797
|
+
|
798
|
+
# Output only. The number of running poolers per instance.
|
799
|
+
# Corresponds to the JSON property `poolerCount`
|
800
|
+
# @return [Fixnum]
|
801
|
+
attr_accessor :pooler_count
|
802
|
+
|
803
|
+
def initialize(**args)
|
804
|
+
update!(**args)
|
805
|
+
end
|
806
|
+
|
807
|
+
# Update properties of this object
|
808
|
+
def update!(**args)
|
809
|
+
@enabled = args[:enabled] if args.key?(:enabled)
|
810
|
+
@flags = args[:flags] if args.key?(:flags)
|
811
|
+
@pooler_count = args[:pooler_count] if args.key?(:pooler_count)
|
812
|
+
end
|
813
|
+
end
|
814
|
+
|
783
815
|
# ContinuousBackupConfig describes the continuous backups recovery
|
784
816
|
# configurations of a cluster.
|
785
817
|
class ContinuousBackupConfig
|
@@ -1515,6 +1547,11 @@ module Google
|
|
1515
1547
|
# @return [Google::Apis::AlloydbV1::ClientConnectionConfig]
|
1516
1548
|
attr_accessor :client_connection_config
|
1517
1549
|
|
1550
|
+
# Configuration for Managed Connection Pool (MCP).
|
1551
|
+
# Corresponds to the JSON property `connectionPoolConfig`
|
1552
|
+
# @return [Google::Apis::AlloydbV1::ConnectionPoolConfig]
|
1553
|
+
attr_accessor :connection_pool_config
|
1554
|
+
|
1518
1555
|
# Output only. Create time stamp
|
1519
1556
|
# Corresponds to the JSON property `createTime`
|
1520
1557
|
# @return [String]
|
@@ -1684,6 +1721,7 @@ module Google
|
|
1684
1721
|
@annotations = args[:annotations] if args.key?(:annotations)
|
1685
1722
|
@availability_type = args[:availability_type] if args.key?(:availability_type)
|
1686
1723
|
@client_connection_config = args[:client_connection_config] if args.key?(:client_connection_config)
|
1724
|
+
@connection_pool_config = args[:connection_pool_config] if args.key?(:connection_pool_config)
|
1687
1725
|
@create_time = args[:create_time] if args.key?(:create_time)
|
1688
1726
|
@database_flags = args[:database_flags] if args.key?(:database_flags)
|
1689
1727
|
@delete_time = args[:delete_time] if args.key?(:delete_time)
|
@@ -3492,7 +3530,7 @@ module Google
|
|
3492
3530
|
end
|
3493
3531
|
|
3494
3532
|
# DatabaseResourceFeed is the top level proto to be used to ingest different
|
3495
|
-
# database resource level events into Condor platform. Next ID:
|
3533
|
+
# database resource level events into Condor platform. Next ID: 13
|
3496
3534
|
class StorageDatabasecenterPartnerapiV1mainDatabaseResourceFeed
|
3497
3535
|
include Google::Apis::Core::Hashable
|
3498
3536
|
|
@@ -3509,6 +3547,13 @@ module Google
|
|
3509
3547
|
# @return [Google::Apis::AlloydbV1::StorageDatabasecenterPartnerapiV1mainConfigBasedSignalData]
|
3510
3548
|
attr_accessor :config_based_signal_data
|
3511
3549
|
|
3550
|
+
# Database resource signal data. This is used to send signals to Condor which
|
3551
|
+
# are based on the DB/Instance/Fleet level configurations. These will be used to
|
3552
|
+
# send signals for all inventory types. Next ID: 7
|
3553
|
+
# Corresponds to the JSON property `databaseResourceSignalData`
|
3554
|
+
# @return [Google::Apis::AlloydbV1::StorageDatabasecenterPartnerapiV1mainDatabaseResourceSignalData]
|
3555
|
+
attr_accessor :database_resource_signal_data
|
3556
|
+
|
3512
3557
|
# Required. Timestamp when feed is generated.
|
3513
3558
|
# Corresponds to the JSON property `feedTimestamp`
|
3514
3559
|
# @return [String]
|
@@ -3539,7 +3584,7 @@ module Google
|
|
3539
3584
|
# @return [Google::Apis::AlloydbV1::StorageDatabasecenterPartnerapiV1mainDatabaseResourceId]
|
3540
3585
|
attr_accessor :resource_id
|
3541
3586
|
|
3542
|
-
# Common model for database resource instance metadata. Next ID:
|
3587
|
+
# Common model for database resource instance metadata. Next ID: 27
|
3543
3588
|
# Corresponds to the JSON property `resourceMetadata`
|
3544
3589
|
# @return [Google::Apis::AlloydbV1::StorageDatabasecenterPartnerapiV1mainDatabaseResourceMetadata]
|
3545
3590
|
attr_accessor :resource_metadata
|
@@ -3562,6 +3607,7 @@ module Google
|
|
3562
3607
|
def update!(**args)
|
3563
3608
|
@backupdr_metadata = args[:backupdr_metadata] if args.key?(:backupdr_metadata)
|
3564
3609
|
@config_based_signal_data = args[:config_based_signal_data] if args.key?(:config_based_signal_data)
|
3610
|
+
@database_resource_signal_data = args[:database_resource_signal_data] if args.key?(:database_resource_signal_data)
|
3565
3611
|
@feed_timestamp = args[:feed_timestamp] if args.key?(:feed_timestamp)
|
3566
3612
|
@feed_type = args[:feed_type] if args.key?(:feed_type)
|
3567
3613
|
@observability_metric_data = args[:observability_metric_data] if args.key?(:observability_metric_data)
|
@@ -3736,7 +3782,7 @@ module Google
|
|
3736
3782
|
end
|
3737
3783
|
end
|
3738
3784
|
|
3739
|
-
# Common model for database resource instance metadata. Next ID:
|
3785
|
+
# Common model for database resource instance metadata. Next ID: 27
|
3740
3786
|
class StorageDatabasecenterPartnerapiV1mainDatabaseResourceMetadata
|
3741
3787
|
include Google::Apis::Core::Hashable
|
3742
3788
|
|
@@ -3880,6 +3926,12 @@ module Google
|
|
3880
3926
|
# @return [Google::Apis::AlloydbV1::StorageDatabasecenterPartnerapiV1mainUserLabels]
|
3881
3927
|
attr_accessor :user_label_set
|
3882
3928
|
|
3929
|
+
# The resource zone. This is only applicable for zonal resources and will be
|
3930
|
+
# empty for regional and multi-regional resources.
|
3931
|
+
# Corresponds to the JSON property `zone`
|
3932
|
+
# @return [String]
|
3933
|
+
attr_accessor :zone
|
3934
|
+
|
3883
3935
|
def initialize(**args)
|
3884
3936
|
update!(**args)
|
3885
3937
|
end
|
@@ -3910,6 +3962,7 @@ module Google
|
|
3910
3962
|
@tags_set = args[:tags_set] if args.key?(:tags_set)
|
3911
3963
|
@updation_time = args[:updation_time] if args.key?(:updation_time)
|
3912
3964
|
@user_label_set = args[:user_label_set] if args.key?(:user_label_set)
|
3965
|
+
@zone = args[:zone] if args.key?(:zone)
|
3913
3966
|
end
|
3914
3967
|
end
|
3915
3968
|
|
@@ -3986,6 +4039,58 @@ module Google
|
|
3986
4039
|
end
|
3987
4040
|
end
|
3988
4041
|
|
4042
|
+
# Database resource signal data. This is used to send signals to Condor which
|
4043
|
+
# are based on the DB/Instance/Fleet level configurations. These will be used to
|
4044
|
+
# send signals for all inventory types. Next ID: 7
|
4045
|
+
class StorageDatabasecenterPartnerapiV1mainDatabaseResourceSignalData
|
4046
|
+
include Google::Apis::Core::Hashable
|
4047
|
+
|
4048
|
+
# Required. Full Resource name of the source resource.
|
4049
|
+
# Corresponds to the JSON property `fullResourceName`
|
4050
|
+
# @return [String]
|
4051
|
+
attr_accessor :full_resource_name
|
4052
|
+
|
4053
|
+
# Required. Last time signal was refreshed
|
4054
|
+
# Corresponds to the JSON property `lastRefreshTime`
|
4055
|
+
# @return [String]
|
4056
|
+
attr_accessor :last_refresh_time
|
4057
|
+
|
4058
|
+
# DatabaseResourceId will serve as primary key for any resource ingestion event.
|
4059
|
+
# Corresponds to the JSON property `resourceId`
|
4060
|
+
# @return [Google::Apis::AlloydbV1::StorageDatabasecenterPartnerapiV1mainDatabaseResourceId]
|
4061
|
+
attr_accessor :resource_id
|
4062
|
+
|
4063
|
+
# Signal data for boolean signals.
|
4064
|
+
# Corresponds to the JSON property `signalBoolValue`
|
4065
|
+
# @return [Boolean]
|
4066
|
+
attr_accessor :signal_bool_value
|
4067
|
+
alias_method :signal_bool_value?, :signal_bool_value
|
4068
|
+
|
4069
|
+
# Required. Output only. Signal state of the signal
|
4070
|
+
# Corresponds to the JSON property `signalState`
|
4071
|
+
# @return [String]
|
4072
|
+
attr_accessor :signal_state
|
4073
|
+
|
4074
|
+
# Required. Signal type of the signal
|
4075
|
+
# Corresponds to the JSON property `signalType`
|
4076
|
+
# @return [String]
|
4077
|
+
attr_accessor :signal_type
|
4078
|
+
|
4079
|
+
def initialize(**args)
|
4080
|
+
update!(**args)
|
4081
|
+
end
|
4082
|
+
|
4083
|
+
# Update properties of this object
|
4084
|
+
def update!(**args)
|
4085
|
+
@full_resource_name = args[:full_resource_name] if args.key?(:full_resource_name)
|
4086
|
+
@last_refresh_time = args[:last_refresh_time] if args.key?(:last_refresh_time)
|
4087
|
+
@resource_id = args[:resource_id] if args.key?(:resource_id)
|
4088
|
+
@signal_bool_value = args[:signal_bool_value] if args.key?(:signal_bool_value)
|
4089
|
+
@signal_state = args[:signal_state] if args.key?(:signal_state)
|
4090
|
+
@signal_type = args[:signal_type] if args.key?(:signal_type)
|
4091
|
+
end
|
4092
|
+
end
|
4093
|
+
|
3989
4094
|
# Proto representing the access that a user has to a specific feature/service.
|
3990
4095
|
# NextId: 3.
|
3991
4096
|
class StorageDatabasecenterPartnerapiV1mainEntitlement
|
@@ -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.46.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 = "20250910"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -88,6 +88,12 @@ module Google
|
|
88
88
|
include Google::Apis::Core::JsonObjectSupport
|
89
89
|
end
|
90
90
|
|
91
|
+
class ConnectionPoolConfig
|
92
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
93
|
+
|
94
|
+
include Google::Apis::Core::JsonObjectSupport
|
95
|
+
end
|
96
|
+
|
91
97
|
class ContinuousBackupConfig
|
92
98
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
93
99
|
|
@@ -544,6 +550,12 @@ module Google
|
|
544
550
|
include Google::Apis::Core::JsonObjectSupport
|
545
551
|
end
|
546
552
|
|
553
|
+
class StorageDatabasecenterPartnerapiV1mainDatabaseResourceSignalData
|
554
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
555
|
+
|
556
|
+
include Google::Apis::Core::JsonObjectSupport
|
557
|
+
end
|
558
|
+
|
547
559
|
class StorageDatabasecenterPartnerapiV1mainEntitlement
|
548
560
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
549
561
|
|
@@ -855,6 +867,15 @@ module Google
|
|
855
867
|
end
|
856
868
|
end
|
857
869
|
|
870
|
+
class ConnectionPoolConfig
|
871
|
+
# @private
|
872
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
873
|
+
property :enabled, as: 'enabled'
|
874
|
+
hash :flags, as: 'flags'
|
875
|
+
property :pooler_count, as: 'poolerCount'
|
876
|
+
end
|
877
|
+
end
|
878
|
+
|
858
879
|
class ContinuousBackupConfig
|
859
880
|
# @private
|
860
881
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1050,6 +1071,8 @@ module Google
|
|
1050
1071
|
property :availability_type, as: 'availabilityType'
|
1051
1072
|
property :client_connection_config, as: 'clientConnectionConfig', class: Google::Apis::AlloydbV1::ClientConnectionConfig, decorator: Google::Apis::AlloydbV1::ClientConnectionConfig::Representation
|
1052
1073
|
|
1074
|
+
property :connection_pool_config, as: 'connectionPoolConfig', class: Google::Apis::AlloydbV1::ConnectionPoolConfig, decorator: Google::Apis::AlloydbV1::ConnectionPoolConfig::Representation
|
1075
|
+
|
1053
1076
|
property :create_time, as: 'createTime'
|
1054
1077
|
hash :database_flags, as: 'databaseFlags'
|
1055
1078
|
property :delete_time, as: 'deleteTime'
|
@@ -1576,6 +1599,8 @@ module Google
|
|
1576
1599
|
|
1577
1600
|
property :config_based_signal_data, as: 'configBasedSignalData', class: Google::Apis::AlloydbV1::StorageDatabasecenterPartnerapiV1mainConfigBasedSignalData, decorator: Google::Apis::AlloydbV1::StorageDatabasecenterPartnerapiV1mainConfigBasedSignalData::Representation
|
1578
1601
|
|
1602
|
+
property :database_resource_signal_data, as: 'databaseResourceSignalData', class: Google::Apis::AlloydbV1::StorageDatabasecenterPartnerapiV1mainDatabaseResourceSignalData, decorator: Google::Apis::AlloydbV1::StorageDatabasecenterPartnerapiV1mainDatabaseResourceSignalData::Representation
|
1603
|
+
|
1579
1604
|
property :feed_timestamp, as: 'feedTimestamp'
|
1580
1605
|
property :feed_type, as: 'feedType'
|
1581
1606
|
property :observability_metric_data, as: 'observabilityMetricData', class: Google::Apis::AlloydbV1::StorageDatabasecenterPartnerapiV1mainObservabilityMetricData, decorator: Google::Apis::AlloydbV1::StorageDatabasecenterPartnerapiV1mainObservabilityMetricData::Representation
|
@@ -1664,6 +1689,7 @@ module Google
|
|
1664
1689
|
property :updation_time, as: 'updationTime'
|
1665
1690
|
property :user_label_set, as: 'userLabelSet', class: Google::Apis::AlloydbV1::StorageDatabasecenterPartnerapiV1mainUserLabels, decorator: Google::Apis::AlloydbV1::StorageDatabasecenterPartnerapiV1mainUserLabels::Representation
|
1666
1691
|
|
1692
|
+
property :zone, as: 'zone'
|
1667
1693
|
end
|
1668
1694
|
end
|
1669
1695
|
|
@@ -1681,6 +1707,19 @@ module Google
|
|
1681
1707
|
end
|
1682
1708
|
end
|
1683
1709
|
|
1710
|
+
class StorageDatabasecenterPartnerapiV1mainDatabaseResourceSignalData
|
1711
|
+
# @private
|
1712
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1713
|
+
property :full_resource_name, as: 'fullResourceName'
|
1714
|
+
property :last_refresh_time, as: 'lastRefreshTime'
|
1715
|
+
property :resource_id, as: 'resourceId', class: Google::Apis::AlloydbV1::StorageDatabasecenterPartnerapiV1mainDatabaseResourceId, decorator: Google::Apis::AlloydbV1::StorageDatabasecenterPartnerapiV1mainDatabaseResourceId::Representation
|
1716
|
+
|
1717
|
+
property :signal_bool_value, as: 'signalBoolValue'
|
1718
|
+
property :signal_state, as: 'signalState'
|
1719
|
+
property :signal_type, as: 'signalType'
|
1720
|
+
end
|
1721
|
+
end
|
1722
|
+
|
1684
1723
|
class StorageDatabasecenterPartnerapiV1mainEntitlement
|
1685
1724
|
# @private
|
1686
1725
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -95,8 +95,8 @@ module Google
|
|
95
95
|
# @param [String] name
|
96
96
|
# The resource that owns the locations collection, if applicable.
|
97
97
|
# @param [Array<String>, String] extra_location_types
|
98
|
-
# Optional.
|
99
|
-
#
|
98
|
+
# Optional. Unless explicitly documented otherwise, don't use this unsupported
|
99
|
+
# field which is primarily intended for internal usage.
|
100
100
|
# @param [String] filter
|
101
101
|
# A filter to narrow down results to a preferred subset. The filtering language
|
102
102
|
# accepts strings like `"displayName=tokyo"`, and is documented in more detail
|
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.46.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.46.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:
|