google-apis-alloydb_v1beta 0.5.0 → 0.7.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 +4 -4
- data/CHANGELOG.md +10 -0
- data/OVERVIEW.md +2 -2
- data/lib/google/apis/alloydb_v1beta/classes.rb +219 -3
- data/lib/google/apis/alloydb_v1beta/gem_version.rb +3 -3
- data/lib/google/apis/alloydb_v1beta/representations.rb +74 -0
- metadata +7 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c772c4bf62599e5f6e66588fb8911869ed986d9c8d67cd04f1211a2c01c65934
|
4
|
+
data.tar.gz: ec3aeb154d4417bceafde35c771bf2ff8ad777c5d3f8a5f8741ef08f5a6cd304
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6e3d365b5d8848c7f4156408d62a907e5c4b08eebd7485593506a7a684cbb01d317b1e14fb8c8636d7f23a0c8f47a606784269aca209d2510f54b3d12930f5f4
|
7
|
+
data.tar.gz: b48ffe621fa81978e55a649d98d7acd75c84ffa71f3dafb3dfc0482a9d630e48153a90ff39d72374d88a67df2fb1f758926ba1fec54003e6872bbc3489313ab9
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,15 @@
|
|
1
1
|
# Release history for google-apis-alloydb_v1beta
|
2
2
|
|
3
|
+
### v0.7.0 (2024-02-23)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20240216
|
6
|
+
* Regenerated using generator version 0.14.0
|
7
|
+
|
8
|
+
### v0.6.0 (2024-02-18)
|
9
|
+
|
10
|
+
* Regenerated from discovery document revision 20240207
|
11
|
+
* Regenerated using generator version 0.13.1
|
12
|
+
|
3
13
|
### v0.5.0 (2024-01-23)
|
4
14
|
|
5
15
|
* Regenerated from discovery document revision 20240103
|
data/OVERVIEW.md
CHANGED
@@ -83,9 +83,9 @@ The [product documentation](https://cloud.google.com/alloydb/) may provide guida
|
|
83
83
|
|
84
84
|
## Supported Ruby versions
|
85
85
|
|
86
|
-
This library is supported on Ruby 2.
|
86
|
+
This library is supported on Ruby 2.7+.
|
87
87
|
|
88
|
-
Google provides official support for Ruby versions that are actively supported by Ruby Core -- that is, Ruby versions that are either in normal maintenance or in security maintenance, and not end of life.
|
88
|
+
Google provides official support for Ruby versions that are actively supported by Ruby Core -- that is, Ruby versions that are either in normal maintenance or in security maintenance, and not end of life. Older versions of Ruby _may_ still work, but are unsupported and not recommended. See https://www.ruby-lang.org/en/downloads/branches/ for details about the Ruby support schedule.
|
89
89
|
|
90
90
|
## License
|
91
91
|
|
@@ -606,6 +606,11 @@ module Google
|
|
606
606
|
# @return [Array<String>]
|
607
607
|
attr_accessor :pem_certificate_chain
|
608
608
|
|
609
|
+
# Output only. The DNS name to use with PSC for the Instance.
|
610
|
+
# Corresponds to the JSON property `pscDnsName`
|
611
|
+
# @return [String]
|
612
|
+
attr_accessor :psc_dns_name
|
613
|
+
|
609
614
|
# Output only. The public IP addresses for the Instance. This is available ONLY
|
610
615
|
# when enable_public_ip is set. This is the connection endpoint for an end-user
|
611
616
|
# application.
|
@@ -623,6 +628,7 @@ module Google
|
|
623
628
|
@ip_address = args[:ip_address] if args.key?(:ip_address)
|
624
629
|
@name = args[:name] if args.key?(:name)
|
625
630
|
@pem_certificate_chain = args[:pem_certificate_chain] if args.key?(:pem_certificate_chain)
|
631
|
+
@psc_dns_name = args[:psc_dns_name] if args.key?(:psc_dns_name)
|
626
632
|
@public_ip_address = args[:public_ip_address] if args.key?(:public_ip_address)
|
627
633
|
end
|
628
634
|
end
|
@@ -1188,6 +1194,11 @@ module Google
|
|
1188
1194
|
# @return [Array<Google::Apis::AlloydbV1beta::Node>]
|
1189
1195
|
attr_accessor :nodes
|
1190
1196
|
|
1197
|
+
# PscInstanceConfig contains PSC related configuration at an instance level.
|
1198
|
+
# Corresponds to the JSON property `pscInstanceConfig`
|
1199
|
+
# @return [Google::Apis::AlloydbV1beta::PscInstanceConfig]
|
1200
|
+
attr_accessor :psc_instance_config
|
1201
|
+
|
1191
1202
|
# Output only. The public IP addresses for the Instance. This is available ONLY
|
1192
1203
|
# when enable_public_ip is set. This is the connection endpoint for an end-user
|
1193
1204
|
# application.
|
@@ -1271,6 +1282,7 @@ module Google
|
|
1271
1282
|
@name = args[:name] if args.key?(:name)
|
1272
1283
|
@network_config = args[:network_config] if args.key?(:network_config)
|
1273
1284
|
@nodes = args[:nodes] if args.key?(:nodes)
|
1285
|
+
@psc_instance_config = args[:psc_instance_config] if args.key?(:psc_instance_config)
|
1274
1286
|
@public_ip_address = args[:public_ip_address] if args.key?(:public_ip_address)
|
1275
1287
|
@query_insights_config = args[:query_insights_config] if args.key?(:query_insights_config)
|
1276
1288
|
@read_pool_config = args[:read_pool_config] if args.key?(:read_pool_config)
|
@@ -1823,6 +1835,98 @@ module Google
|
|
1823
1835
|
end
|
1824
1836
|
end
|
1825
1837
|
|
1838
|
+
# PscInstanceConfig contains PSC related configuration at an instance level.
|
1839
|
+
class PscInstanceConfig
|
1840
|
+
include Google::Apis::Core::Hashable
|
1841
|
+
|
1842
|
+
# Optional. List of consumer networks that are allowed to create PSC endpoints
|
1843
|
+
# to service-attachments to this instance.
|
1844
|
+
# Corresponds to the JSON property `allowedConsumerNetworks`
|
1845
|
+
# @return [Array<String>]
|
1846
|
+
attr_accessor :allowed_consumer_networks
|
1847
|
+
|
1848
|
+
# Optional. List of consumer projects that are allowed to create PSC endpoints
|
1849
|
+
# to service-attachments to this instance.
|
1850
|
+
# Corresponds to the JSON property `allowedConsumerProjects`
|
1851
|
+
# @return [Array<String>]
|
1852
|
+
attr_accessor :allowed_consumer_projects
|
1853
|
+
|
1854
|
+
# Optional. List of service attachments that this instance has created endpoints
|
1855
|
+
# to connect with. Currently, only a single outgoing service attachment is
|
1856
|
+
# supported per instance.
|
1857
|
+
# Corresponds to the JSON property `outgoingServiceAttachmentLinks`
|
1858
|
+
# @return [Array<String>]
|
1859
|
+
attr_accessor :outgoing_service_attachment_links
|
1860
|
+
|
1861
|
+
# Optional. Whether PSC connectivity is enabled for this instance. This is
|
1862
|
+
# populated by referencing the value from the parent cluster.
|
1863
|
+
# Corresponds to the JSON property `pscEnabled`
|
1864
|
+
# @return [Boolean]
|
1865
|
+
attr_accessor :psc_enabled
|
1866
|
+
alias_method :psc_enabled?, :psc_enabled
|
1867
|
+
|
1868
|
+
# Optional. Configurations for setting up PSC interfaces attached to the
|
1869
|
+
# instance which are used for outbound connectivity. Only primary instances can
|
1870
|
+
# have PSC interface attached. All the VMs created for the primary instance will
|
1871
|
+
# share the same configurations. Currently we only support 0 or 1 PSC interface.
|
1872
|
+
# Corresponds to the JSON property `pscInterfaceConfigs`
|
1873
|
+
# @return [Array<Google::Apis::AlloydbV1beta::PscInterfaceConfig>]
|
1874
|
+
attr_accessor :psc_interface_configs
|
1875
|
+
|
1876
|
+
# Output only. The service attachment created when Private Service Connect (PSC)
|
1877
|
+
# is enabled for the instance. The name of the resource will be in the format of
|
1878
|
+
# projects//regions//serviceAttachments/
|
1879
|
+
# Corresponds to the JSON property `serviceAttachmentLink`
|
1880
|
+
# @return [String]
|
1881
|
+
attr_accessor :service_attachment_link
|
1882
|
+
|
1883
|
+
def initialize(**args)
|
1884
|
+
update!(**args)
|
1885
|
+
end
|
1886
|
+
|
1887
|
+
# Update properties of this object
|
1888
|
+
def update!(**args)
|
1889
|
+
@allowed_consumer_networks = args[:allowed_consumer_networks] if args.key?(:allowed_consumer_networks)
|
1890
|
+
@allowed_consumer_projects = args[:allowed_consumer_projects] if args.key?(:allowed_consumer_projects)
|
1891
|
+
@outgoing_service_attachment_links = args[:outgoing_service_attachment_links] if args.key?(:outgoing_service_attachment_links)
|
1892
|
+
@psc_enabled = args[:psc_enabled] if args.key?(:psc_enabled)
|
1893
|
+
@psc_interface_configs = args[:psc_interface_configs] if args.key?(:psc_interface_configs)
|
1894
|
+
@service_attachment_link = args[:service_attachment_link] if args.key?(:service_attachment_link)
|
1895
|
+
end
|
1896
|
+
end
|
1897
|
+
|
1898
|
+
# Configuration for setting up a PSC interface. This information needs to be
|
1899
|
+
# provided by the customer. PSC interfaces will be created and added to VMs via
|
1900
|
+
# SLM (adding a network interface will require recreating the VM). For HA
|
1901
|
+
# instances this will be done via LDTM.
|
1902
|
+
class PscInterfaceConfig
|
1903
|
+
include Google::Apis::Core::Hashable
|
1904
|
+
|
1905
|
+
# A list of endpoints in the consumer VPC the interface might initiate outbound
|
1906
|
+
# connections to. This list has to be provided when the PSC interface is created.
|
1907
|
+
# Corresponds to the JSON property `consumerEndpointIps`
|
1908
|
+
# @return [Array<String>]
|
1909
|
+
attr_accessor :consumer_endpoint_ips
|
1910
|
+
|
1911
|
+
# The NetworkAttachment resource created in the consumer VPC to which the PSC
|
1912
|
+
# interface will be linked, in the form of: "projects/$`CONSUMER_PROJECT`/
|
1913
|
+
# regions/$`REGION`/networkAttachments/$`NETWORK_ATTACHMENT_NAME`".
|
1914
|
+
# NetworkAttachment has to be provided when the PSC interface is created.
|
1915
|
+
# Corresponds to the JSON property `networkAttachment`
|
1916
|
+
# @return [String]
|
1917
|
+
attr_accessor :network_attachment
|
1918
|
+
|
1919
|
+
def initialize(**args)
|
1920
|
+
update!(**args)
|
1921
|
+
end
|
1922
|
+
|
1923
|
+
# Update properties of this object
|
1924
|
+
def update!(**args)
|
1925
|
+
@consumer_endpoint_ips = args[:consumer_endpoint_ips] if args.key?(:consumer_endpoint_ips)
|
1926
|
+
@network_attachment = args[:network_attachment] if args.key?(:network_attachment)
|
1927
|
+
end
|
1928
|
+
end
|
1929
|
+
|
1826
1930
|
# A backup's position in a quantity-based retention queue, of backups with the
|
1827
1931
|
# same source cluster and type, with length, retention, specified by the backup'
|
1828
1932
|
# s retention policy. Once the position is greater than the retention, the
|
@@ -2339,6 +2443,11 @@ module Google
|
|
2339
2443
|
# @return [String]
|
2340
2444
|
attr_accessor :feed_type
|
2341
2445
|
|
2446
|
+
# Common model for database resource recommendation signal data.
|
2447
|
+
# Corresponds to the JSON property `recommendationSignalData`
|
2448
|
+
# @return [Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainDatabaseResourceRecommendationSignalData]
|
2449
|
+
attr_accessor :recommendation_signal_data
|
2450
|
+
|
2342
2451
|
# Common model for database resource health signal data.
|
2343
2452
|
# Corresponds to the JSON property `resourceHealthSignalData`
|
2344
2453
|
# @return [Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainDatabaseResourceHealthSignalData]
|
@@ -2362,6 +2471,7 @@ module Google
|
|
2362
2471
|
def update!(**args)
|
2363
2472
|
@feed_timestamp = args[:feed_timestamp] if args.key?(:feed_timestamp)
|
2364
2473
|
@feed_type = args[:feed_type] if args.key?(:feed_type)
|
2474
|
+
@recommendation_signal_data = args[:recommendation_signal_data] if args.key?(:recommendation_signal_data)
|
2365
2475
|
@resource_health_signal_data = args[:resource_health_signal_data] if args.key?(:resource_health_signal_data)
|
2366
2476
|
@resource_id = args[:resource_id] if args.key?(:resource_id)
|
2367
2477
|
@resource_metadata = args[:resource_metadata] if args.key?(:resource_metadata)
|
@@ -2487,9 +2597,10 @@ module Google
|
|
2487
2597
|
# @return [String]
|
2488
2598
|
attr_accessor :provider_description
|
2489
2599
|
|
2490
|
-
# Required. The type of resource this ID is identifying. Ex
|
2491
|
-
#
|
2492
|
-
#
|
2600
|
+
# Required. The type of resource this ID is identifying. Ex redis.googleapis.com/
|
2601
|
+
# Instance, redis.googleapis.com/Cluster, alloydb.googleapis.com/Cluster,
|
2602
|
+
# alloydb.googleapis.com/Instance, spanner.googleapis.com/Instance REQUIRED
|
2603
|
+
# Please refer go/condor-common-datamodel
|
2493
2604
|
# Corresponds to the JSON property `resourceType`
|
2494
2605
|
# @return [String]
|
2495
2606
|
attr_accessor :resource_type
|
@@ -2550,6 +2661,11 @@ module Google
|
|
2550
2661
|
# @return [Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainCustomMetadataData]
|
2551
2662
|
attr_accessor :custom_metadata
|
2552
2663
|
|
2664
|
+
# Entitlements associated with the resource
|
2665
|
+
# Corresponds to the JSON property `entitlements`
|
2666
|
+
# @return [Array<Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainEntitlement>]
|
2667
|
+
attr_accessor :entitlements
|
2668
|
+
|
2553
2669
|
# The state that the instance is expected to be in. For example, an instance
|
2554
2670
|
# state can transition to UNHEALTHY due to wrong patch update, while the
|
2555
2671
|
# expected state will remain at the HEALTHY.
|
@@ -2621,6 +2737,7 @@ module Google
|
|
2621
2737
|
@creation_time = args[:creation_time] if args.key?(:creation_time)
|
2622
2738
|
@current_state = args[:current_state] if args.key?(:current_state)
|
2623
2739
|
@custom_metadata = args[:custom_metadata] if args.key?(:custom_metadata)
|
2740
|
+
@entitlements = args[:entitlements] if args.key?(:entitlements)
|
2624
2741
|
@expected_state = args[:expected_state] if args.key?(:expected_state)
|
2625
2742
|
@id = args[:id] if args.key?(:id)
|
2626
2743
|
@instance_type = args[:instance_type] if args.key?(:instance_type)
|
@@ -2634,6 +2751,105 @@ module Google
|
|
2634
2751
|
end
|
2635
2752
|
end
|
2636
2753
|
|
2754
|
+
# Common model for database resource recommendation signal data.
|
2755
|
+
class StorageDatabasecenterPartnerapiV1mainDatabaseResourceRecommendationSignalData
|
2756
|
+
include Google::Apis::Core::Hashable
|
2757
|
+
|
2758
|
+
# Required. Any other additional metadata specific to recommendation
|
2759
|
+
# Corresponds to the JSON property `additionalMetadata`
|
2760
|
+
# @return [Hash<String,Object>]
|
2761
|
+
attr_accessor :additional_metadata
|
2762
|
+
|
2763
|
+
# Required. last time recommendationw as refreshed
|
2764
|
+
# Corresponds to the JSON property `lastRefreshTime`
|
2765
|
+
# @return [String]
|
2766
|
+
attr_accessor :last_refresh_time
|
2767
|
+
|
2768
|
+
# Required. Recommendation state
|
2769
|
+
# Corresponds to the JSON property `recommendationState`
|
2770
|
+
# @return [String]
|
2771
|
+
attr_accessor :recommendation_state
|
2772
|
+
|
2773
|
+
# Required. Name of recommendation. Examples: organizations/1234/locations/us-
|
2774
|
+
# central1/recommenders/google.cloudsql.instance.PerformanceRecommender/
|
2775
|
+
# recommendations/9876
|
2776
|
+
# Corresponds to the JSON property `recommender`
|
2777
|
+
# @return [String]
|
2778
|
+
attr_accessor :recommender
|
2779
|
+
|
2780
|
+
# Required. ID of recommender. Examples: "google.cloudsql.instance.
|
2781
|
+
# PerformanceRecommender"
|
2782
|
+
# Corresponds to the JSON property `recommenderId`
|
2783
|
+
# @return [String]
|
2784
|
+
attr_accessor :recommender_id
|
2785
|
+
|
2786
|
+
# Required. Contains an identifier for a subtype of recommendations produced for
|
2787
|
+
# the same recommender. Subtype is a function of content and impact, meaning a
|
2788
|
+
# new subtype might be added when significant changes to `content` or `
|
2789
|
+
# primary_impact.category` are introduced. See the Recommenders section to see a
|
2790
|
+
# list of subtypes for a given Recommender. Examples: For recommender = "google.
|
2791
|
+
# cloudsql.instance.PerformanceRecommender", recommender_subtype can be "
|
2792
|
+
# MYSQL_HIGH_NUMBER_OF_OPEN_TABLES_BEST_PRACTICE"/"
|
2793
|
+
# POSTGRES_HIGH_TRANSACTION_ID_UTILIZATION_BEST_PRACTICE"
|
2794
|
+
# Corresponds to the JSON property `recommenderSubtype`
|
2795
|
+
# @return [String]
|
2796
|
+
attr_accessor :recommender_subtype
|
2797
|
+
|
2798
|
+
# Required. Database resource name associated with the signal. Resource name to
|
2799
|
+
# follow CAIS resource_name format as noted here go/condor-common-datamodel
|
2800
|
+
# Corresponds to the JSON property `resourceName`
|
2801
|
+
# @return [String]
|
2802
|
+
attr_accessor :resource_name
|
2803
|
+
|
2804
|
+
# Required. Type of signal, for example, `SIGNAL_TYPE_IDLE`, `
|
2805
|
+
# SIGNAL_TYPE_HIGH_NUMBER_OF_TABLES`, etc.
|
2806
|
+
# Corresponds to the JSON property `signalType`
|
2807
|
+
# @return [String]
|
2808
|
+
attr_accessor :signal_type
|
2809
|
+
|
2810
|
+
def initialize(**args)
|
2811
|
+
update!(**args)
|
2812
|
+
end
|
2813
|
+
|
2814
|
+
# Update properties of this object
|
2815
|
+
def update!(**args)
|
2816
|
+
@additional_metadata = args[:additional_metadata] if args.key?(:additional_metadata)
|
2817
|
+
@last_refresh_time = args[:last_refresh_time] if args.key?(:last_refresh_time)
|
2818
|
+
@recommendation_state = args[:recommendation_state] if args.key?(:recommendation_state)
|
2819
|
+
@recommender = args[:recommender] if args.key?(:recommender)
|
2820
|
+
@recommender_id = args[:recommender_id] if args.key?(:recommender_id)
|
2821
|
+
@recommender_subtype = args[:recommender_subtype] if args.key?(:recommender_subtype)
|
2822
|
+
@resource_name = args[:resource_name] if args.key?(:resource_name)
|
2823
|
+
@signal_type = args[:signal_type] if args.key?(:signal_type)
|
2824
|
+
end
|
2825
|
+
end
|
2826
|
+
|
2827
|
+
# Proto representing the access that a user has to a specific feature/service.
|
2828
|
+
# NextId: 3.
|
2829
|
+
class StorageDatabasecenterPartnerapiV1mainEntitlement
|
2830
|
+
include Google::Apis::Core::Hashable
|
2831
|
+
|
2832
|
+
# The current state of user's accessibility to a feature/benefit.
|
2833
|
+
# Corresponds to the JSON property `entitlementState`
|
2834
|
+
# @return [String]
|
2835
|
+
attr_accessor :entitlement_state
|
2836
|
+
|
2837
|
+
# An enum that represents the type of this entitlement.
|
2838
|
+
# Corresponds to the JSON property `type`
|
2839
|
+
# @return [String]
|
2840
|
+
attr_accessor :type
|
2841
|
+
|
2842
|
+
def initialize(**args)
|
2843
|
+
update!(**args)
|
2844
|
+
end
|
2845
|
+
|
2846
|
+
# Update properties of this object
|
2847
|
+
def update!(**args)
|
2848
|
+
@entitlement_state = args[:entitlement_state] if args.key?(:entitlement_state)
|
2849
|
+
@type = args[:type] if args.key?(:type)
|
2850
|
+
end
|
2851
|
+
end
|
2852
|
+
|
2637
2853
|
# An error that occurred during a backup creation operation.
|
2638
2854
|
class StorageDatabasecenterPartnerapiV1mainOperationError
|
2639
2855
|
include Google::Apis::Core::Hashable
|
@@ -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.
|
19
|
+
GEM_VERSION = "0.7.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.14.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20240216"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -250,6 +250,18 @@ module Google
|
|
250
250
|
include Google::Apis::Core::JsonObjectSupport
|
251
251
|
end
|
252
252
|
|
253
|
+
class PscInstanceConfig
|
254
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
255
|
+
|
256
|
+
include Google::Apis::Core::JsonObjectSupport
|
257
|
+
end
|
258
|
+
|
259
|
+
class PscInterfaceConfig
|
260
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
261
|
+
|
262
|
+
include Google::Apis::Core::JsonObjectSupport
|
263
|
+
end
|
264
|
+
|
253
265
|
class QuantityBasedExpiry
|
254
266
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
255
267
|
|
@@ -364,6 +376,18 @@ module Google
|
|
364
376
|
include Google::Apis::Core::JsonObjectSupport
|
365
377
|
end
|
366
378
|
|
379
|
+
class StorageDatabasecenterPartnerapiV1mainDatabaseResourceRecommendationSignalData
|
380
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
381
|
+
|
382
|
+
include Google::Apis::Core::JsonObjectSupport
|
383
|
+
end
|
384
|
+
|
385
|
+
class StorageDatabasecenterPartnerapiV1mainEntitlement
|
386
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
387
|
+
|
388
|
+
include Google::Apis::Core::JsonObjectSupport
|
389
|
+
end
|
390
|
+
|
367
391
|
class StorageDatabasecenterPartnerapiV1mainOperationError
|
368
392
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
369
393
|
|
@@ -557,6 +581,7 @@ module Google
|
|
557
581
|
property :ip_address, as: 'ipAddress'
|
558
582
|
property :name, as: 'name'
|
559
583
|
collection :pem_certificate_chain, as: 'pemCertificateChain'
|
584
|
+
property :psc_dns_name, as: 'pscDnsName'
|
560
585
|
property :public_ip_address, as: 'publicIpAddress'
|
561
586
|
end
|
562
587
|
end
|
@@ -701,6 +726,8 @@ module Google
|
|
701
726
|
|
702
727
|
collection :nodes, as: 'nodes', class: Google::Apis::AlloydbV1beta::Node, decorator: Google::Apis::AlloydbV1beta::Node::Representation
|
703
728
|
|
729
|
+
property :psc_instance_config, as: 'pscInstanceConfig', class: Google::Apis::AlloydbV1beta::PscInstanceConfig, decorator: Google::Apis::AlloydbV1beta::PscInstanceConfig::Representation
|
730
|
+
|
704
731
|
property :public_ip_address, as: 'publicIpAddress'
|
705
732
|
property :query_insights_config, as: 'queryInsightsConfig', class: Google::Apis::AlloydbV1beta::QueryInsightsInstanceConfig, decorator: Google::Apis::AlloydbV1beta::QueryInsightsInstanceConfig::Representation
|
706
733
|
|
@@ -868,6 +895,27 @@ module Google
|
|
868
895
|
end
|
869
896
|
end
|
870
897
|
|
898
|
+
class PscInstanceConfig
|
899
|
+
# @private
|
900
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
901
|
+
collection :allowed_consumer_networks, as: 'allowedConsumerNetworks'
|
902
|
+
collection :allowed_consumer_projects, as: 'allowedConsumerProjects'
|
903
|
+
collection :outgoing_service_attachment_links, as: 'outgoingServiceAttachmentLinks'
|
904
|
+
property :psc_enabled, as: 'pscEnabled'
|
905
|
+
collection :psc_interface_configs, as: 'pscInterfaceConfigs', class: Google::Apis::AlloydbV1beta::PscInterfaceConfig, decorator: Google::Apis::AlloydbV1beta::PscInterfaceConfig::Representation
|
906
|
+
|
907
|
+
property :service_attachment_link, as: 'serviceAttachmentLink'
|
908
|
+
end
|
909
|
+
end
|
910
|
+
|
911
|
+
class PscInterfaceConfig
|
912
|
+
# @private
|
913
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
914
|
+
collection :consumer_endpoint_ips, as: 'consumerEndpointIps'
|
915
|
+
property :network_attachment, as: 'networkAttachment'
|
916
|
+
end
|
917
|
+
end
|
918
|
+
|
871
919
|
class QuantityBasedExpiry
|
872
920
|
# @private
|
873
921
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1013,6 +1061,8 @@ module Google
|
|
1013
1061
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1014
1062
|
property :feed_timestamp, as: 'feedTimestamp'
|
1015
1063
|
property :feed_type, as: 'feedType'
|
1064
|
+
property :recommendation_signal_data, as: 'recommendationSignalData', class: Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainDatabaseResourceRecommendationSignalData, decorator: Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainDatabaseResourceRecommendationSignalData::Representation
|
1065
|
+
|
1016
1066
|
property :resource_health_signal_data, as: 'resourceHealthSignalData', class: Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainDatabaseResourceHealthSignalData, decorator: Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainDatabaseResourceHealthSignalData::Representation
|
1017
1067
|
|
1018
1068
|
property :resource_id, as: 'resourceId', class: Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainDatabaseResourceId, decorator: Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainDatabaseResourceId::Representation
|
@@ -1065,6 +1115,8 @@ module Google
|
|
1065
1115
|
property :current_state, as: 'currentState'
|
1066
1116
|
property :custom_metadata, as: 'customMetadata', class: Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainCustomMetadataData, decorator: Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainCustomMetadataData::Representation
|
1067
1117
|
|
1118
|
+
collection :entitlements, as: 'entitlements', class: Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainEntitlement, decorator: Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainEntitlement::Representation
|
1119
|
+
|
1068
1120
|
property :expected_state, as: 'expectedState'
|
1069
1121
|
property :id, as: 'id', class: Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainDatabaseResourceId, decorator: Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainDatabaseResourceId::Representation
|
1070
1122
|
|
@@ -1081,6 +1133,28 @@ module Google
|
|
1081
1133
|
end
|
1082
1134
|
end
|
1083
1135
|
|
1136
|
+
class StorageDatabasecenterPartnerapiV1mainDatabaseResourceRecommendationSignalData
|
1137
|
+
# @private
|
1138
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1139
|
+
hash :additional_metadata, as: 'additionalMetadata'
|
1140
|
+
property :last_refresh_time, as: 'lastRefreshTime'
|
1141
|
+
property :recommendation_state, as: 'recommendationState'
|
1142
|
+
property :recommender, as: 'recommender'
|
1143
|
+
property :recommender_id, as: 'recommenderId'
|
1144
|
+
property :recommender_subtype, as: 'recommenderSubtype'
|
1145
|
+
property :resource_name, as: 'resourceName'
|
1146
|
+
property :signal_type, as: 'signalType'
|
1147
|
+
end
|
1148
|
+
end
|
1149
|
+
|
1150
|
+
class StorageDatabasecenterPartnerapiV1mainEntitlement
|
1151
|
+
# @private
|
1152
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1153
|
+
property :entitlement_state, as: 'entitlementState'
|
1154
|
+
property :type, as: 'type'
|
1155
|
+
end
|
1156
|
+
end
|
1157
|
+
|
1084
1158
|
class StorageDatabasecenterPartnerapiV1mainOperationError
|
1085
1159
|
# @private
|
1086
1160
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-alloydb_v1beta
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.7.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-02-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -16,7 +16,7 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 0.
|
19
|
+
version: 0.14.0
|
20
20
|
- - "<"
|
21
21
|
- !ruby/object:Gem::Version
|
22
22
|
version: 2.a
|
@@ -26,7 +26,7 @@ dependencies:
|
|
26
26
|
requirements:
|
27
27
|
- - ">="
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
version: 0.
|
29
|
+
version: 0.14.0
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: 2.a
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-alloydb_v1beta/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-alloydb_v1beta/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-alloydb_v1beta/v0.7.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-alloydb_v1beta
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|
@@ -68,14 +68,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
68
68
|
requirements:
|
69
69
|
- - ">="
|
70
70
|
- !ruby/object:Gem::Version
|
71
|
-
version: '2.
|
71
|
+
version: '2.7'
|
72
72
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
73
73
|
requirements:
|
74
74
|
- - ">="
|
75
75
|
- !ruby/object:Gem::Version
|
76
76
|
version: '0'
|
77
77
|
requirements: []
|
78
|
-
rubygems_version: 3.5.
|
78
|
+
rubygems_version: 3.5.6
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for AlloyDB API V1beta
|