google-apis-alloydb_v1beta 0.6.0 → 0.8.0
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: eb959e3ae7bb3b4cab6b62efa7b3b9a642bad6662af9eb64c9300c2bb86e1559
|
4
|
+
data.tar.gz: 5fa8016ae568ad5befc3f8cf17a09709f2c7c1b38395d1f7c28b3e4e510bd85b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ecb1ddd47c12f0632c0f60901a18d6f5c6b799e045241074d46ee2d43eaa54c14fbd83acae1495872d76db5a54083a473ec15b4ed66588ceaed4757208bda096
|
7
|
+
data.tar.gz: 70aa3f7af2778a27349c5ee5e3a927bbc354ff7b7348ed5093c2033844d5172451d21d51b24e475c28b74a414381337667f8200fec4730ddfe078a81bfad585e
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,14 @@
|
|
1
1
|
# Release history for google-apis-alloydb_v1beta
|
2
2
|
|
3
|
+
### v0.8.0 (2024-03-03)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20240223
|
6
|
+
|
7
|
+
### v0.7.0 (2024-02-23)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20240216
|
10
|
+
* Regenerated using generator version 0.14.0
|
11
|
+
|
3
12
|
### v0.6.0 (2024-02-18)
|
4
13
|
|
5
14
|
* Regenerated from discovery document revision 20240207
|
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
|
|
@@ -479,8 +479,8 @@ module Google
|
|
479
479
|
|
480
480
|
# Required. The resource link for the VPC network in which cluster resources are
|
481
481
|
# created and from which they are accessible via Private IP. The network must
|
482
|
-
# belong to the same project as the cluster. It is specified in the form:
|
483
|
-
# projects/`project`/global/networks/`network_id
|
482
|
+
# belong to the same project as the cluster. It is specified in the form: `
|
483
|
+
# projects/`project`/global/networks/`network_id``. This is required to create a
|
484
484
|
# cluster. Deprecated, use network_config.network instead.
|
485
485
|
# Corresponds to the JSON property `network`
|
486
486
|
# @return [String]
|
@@ -498,6 +498,11 @@ module Google
|
|
498
498
|
# @return [Google::Apis::AlloydbV1beta::PrimaryConfig]
|
499
499
|
attr_accessor :primary_config
|
500
500
|
|
501
|
+
# PscConfig contains PSC related configuration at a cluster level.
|
502
|
+
# Corresponds to the JSON property `pscConfig`
|
503
|
+
# @return [Google::Apis::AlloydbV1beta::PscConfig]
|
504
|
+
attr_accessor :psc_config
|
505
|
+
|
501
506
|
# Output only. Reconciling (https://google.aip.dev/128#reconciliation). Set to
|
502
507
|
# true if the current state of Cluster does not match the user's intended state,
|
503
508
|
# and the service is actively updating the resource to reconcile them. This can
|
@@ -567,6 +572,7 @@ module Google
|
|
567
572
|
@network = args[:network] if args.key?(:network)
|
568
573
|
@network_config = args[:network_config] if args.key?(:network_config)
|
569
574
|
@primary_config = args[:primary_config] if args.key?(:primary_config)
|
575
|
+
@psc_config = args[:psc_config] if args.key?(:psc_config)
|
570
576
|
@reconciling = args[:reconciling] if args.key?(:reconciling)
|
571
577
|
@satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs)
|
572
578
|
@secondary_config = args[:secondary_config] if args.key?(:secondary_config)
|
@@ -606,6 +612,11 @@ module Google
|
|
606
612
|
# @return [Array<String>]
|
607
613
|
attr_accessor :pem_certificate_chain
|
608
614
|
|
615
|
+
# Output only. The DNS name to use with PSC for the Instance.
|
616
|
+
# Corresponds to the JSON property `pscDnsName`
|
617
|
+
# @return [String]
|
618
|
+
attr_accessor :psc_dns_name
|
619
|
+
|
609
620
|
# Output only. The public IP addresses for the Instance. This is available ONLY
|
610
621
|
# when enable_public_ip is set. This is the connection endpoint for an end-user
|
611
622
|
# application.
|
@@ -623,6 +634,7 @@ module Google
|
|
623
634
|
@ip_address = args[:ip_address] if args.key?(:ip_address)
|
624
635
|
@name = args[:name] if args.key?(:name)
|
625
636
|
@pem_certificate_chain = args[:pem_certificate_chain] if args.key?(:pem_certificate_chain)
|
637
|
+
@psc_dns_name = args[:psc_dns_name] if args.key?(:psc_dns_name)
|
626
638
|
@public_ip_address = args[:public_ip_address] if args.key?(:public_ip_address)
|
627
639
|
end
|
628
640
|
end
|
@@ -1188,6 +1200,11 @@ module Google
|
|
1188
1200
|
# @return [Array<Google::Apis::AlloydbV1beta::Node>]
|
1189
1201
|
attr_accessor :nodes
|
1190
1202
|
|
1203
|
+
# PscInstanceConfig contains PSC related configuration at an instance level.
|
1204
|
+
# Corresponds to the JSON property `pscInstanceConfig`
|
1205
|
+
# @return [Google::Apis::AlloydbV1beta::PscInstanceConfig]
|
1206
|
+
attr_accessor :psc_instance_config
|
1207
|
+
|
1191
1208
|
# Output only. The public IP addresses for the Instance. This is available ONLY
|
1192
1209
|
# when enable_public_ip is set. This is the connection endpoint for an end-user
|
1193
1210
|
# application.
|
@@ -1271,6 +1288,7 @@ module Google
|
|
1271
1288
|
@name = args[:name] if args.key?(:name)
|
1272
1289
|
@network_config = args[:network_config] if args.key?(:network_config)
|
1273
1290
|
@nodes = args[:nodes] if args.key?(:nodes)
|
1291
|
+
@psc_instance_config = args[:psc_instance_config] if args.key?(:psc_instance_config)
|
1274
1292
|
@public_ip_address = args[:public_ip_address] if args.key?(:public_ip_address)
|
1275
1293
|
@query_insights_config = args[:query_insights_config] if args.key?(:query_insights_config)
|
1276
1294
|
@read_pool_config = args[:read_pool_config] if args.key?(:read_pool_config)
|
@@ -1577,8 +1595,8 @@ module Google
|
|
1577
1595
|
|
1578
1596
|
# Optional. The resource link for the VPC network in which cluster resources are
|
1579
1597
|
# created and from which they are accessible via Private IP. The network must
|
1580
|
-
# belong to the same project as the cluster. It is specified in the form:
|
1581
|
-
# projects/`project_number`/global/networks/`network_id
|
1598
|
+
# belong to the same project as the cluster. It is specified in the form: `
|
1599
|
+
# projects/`project_number`/global/networks/`network_id``. This is required to
|
1582
1600
|
# create a cluster.
|
1583
1601
|
# Corresponds to the JSON property `network`
|
1584
1602
|
# @return [String]
|
@@ -1823,6 +1841,119 @@ module Google
|
|
1823
1841
|
end
|
1824
1842
|
end
|
1825
1843
|
|
1844
|
+
# PscConfig contains PSC related configuration at a cluster level.
|
1845
|
+
class PscConfig
|
1846
|
+
include Google::Apis::Core::Hashable
|
1847
|
+
|
1848
|
+
# Optional. Create an instance that allows connections from Private Service
|
1849
|
+
# Connect endpoints to the instance.
|
1850
|
+
# Corresponds to the JSON property `pscEnabled`
|
1851
|
+
# @return [Boolean]
|
1852
|
+
attr_accessor :psc_enabled
|
1853
|
+
alias_method :psc_enabled?, :psc_enabled
|
1854
|
+
|
1855
|
+
def initialize(**args)
|
1856
|
+
update!(**args)
|
1857
|
+
end
|
1858
|
+
|
1859
|
+
# Update properties of this object
|
1860
|
+
def update!(**args)
|
1861
|
+
@psc_enabled = args[:psc_enabled] if args.key?(:psc_enabled)
|
1862
|
+
end
|
1863
|
+
end
|
1864
|
+
|
1865
|
+
# PscInstanceConfig contains PSC related configuration at an instance level.
|
1866
|
+
class PscInstanceConfig
|
1867
|
+
include Google::Apis::Core::Hashable
|
1868
|
+
|
1869
|
+
# Optional. List of consumer networks that are allowed to create PSC endpoints
|
1870
|
+
# to service-attachments to this instance.
|
1871
|
+
# Corresponds to the JSON property `allowedConsumerNetworks`
|
1872
|
+
# @return [Array<String>]
|
1873
|
+
attr_accessor :allowed_consumer_networks
|
1874
|
+
|
1875
|
+
# Optional. List of consumer projects that are allowed to create PSC endpoints
|
1876
|
+
# to service-attachments to this instance.
|
1877
|
+
# Corresponds to the JSON property `allowedConsumerProjects`
|
1878
|
+
# @return [Array<String>]
|
1879
|
+
attr_accessor :allowed_consumer_projects
|
1880
|
+
|
1881
|
+
# Optional. List of service attachments that this instance has created endpoints
|
1882
|
+
# to connect with. Currently, only a single outgoing service attachment is
|
1883
|
+
# supported per instance.
|
1884
|
+
# Corresponds to the JSON property `outgoingServiceAttachmentLinks`
|
1885
|
+
# @return [Array<String>]
|
1886
|
+
attr_accessor :outgoing_service_attachment_links
|
1887
|
+
|
1888
|
+
# Optional. Whether PSC connectivity is enabled for this instance. This is
|
1889
|
+
# populated by referencing the value from the parent cluster.
|
1890
|
+
# Corresponds to the JSON property `pscEnabled`
|
1891
|
+
# @return [Boolean]
|
1892
|
+
attr_accessor :psc_enabled
|
1893
|
+
alias_method :psc_enabled?, :psc_enabled
|
1894
|
+
|
1895
|
+
# Optional. Configurations for setting up PSC interfaces attached to the
|
1896
|
+
# instance which are used for outbound connectivity. Only primary instances can
|
1897
|
+
# have PSC interface attached. All the VMs created for the primary instance will
|
1898
|
+
# share the same configurations. Currently we only support 0 or 1 PSC interface.
|
1899
|
+
# Corresponds to the JSON property `pscInterfaceConfigs`
|
1900
|
+
# @return [Array<Google::Apis::AlloydbV1beta::PscInterfaceConfig>]
|
1901
|
+
attr_accessor :psc_interface_configs
|
1902
|
+
|
1903
|
+
# Output only. The service attachment created when Private Service Connect (PSC)
|
1904
|
+
# is enabled for the instance. The name of the resource will be in the format of
|
1905
|
+
# `projects//regions//serviceAttachments/`
|
1906
|
+
# Corresponds to the JSON property `serviceAttachmentLink`
|
1907
|
+
# @return [String]
|
1908
|
+
attr_accessor :service_attachment_link
|
1909
|
+
|
1910
|
+
def initialize(**args)
|
1911
|
+
update!(**args)
|
1912
|
+
end
|
1913
|
+
|
1914
|
+
# Update properties of this object
|
1915
|
+
def update!(**args)
|
1916
|
+
@allowed_consumer_networks = args[:allowed_consumer_networks] if args.key?(:allowed_consumer_networks)
|
1917
|
+
@allowed_consumer_projects = args[:allowed_consumer_projects] if args.key?(:allowed_consumer_projects)
|
1918
|
+
@outgoing_service_attachment_links = args[:outgoing_service_attachment_links] if args.key?(:outgoing_service_attachment_links)
|
1919
|
+
@psc_enabled = args[:psc_enabled] if args.key?(:psc_enabled)
|
1920
|
+
@psc_interface_configs = args[:psc_interface_configs] if args.key?(:psc_interface_configs)
|
1921
|
+
@service_attachment_link = args[:service_attachment_link] if args.key?(:service_attachment_link)
|
1922
|
+
end
|
1923
|
+
end
|
1924
|
+
|
1925
|
+
# Configuration for setting up a PSC interface. This information needs to be
|
1926
|
+
# provided by the customer. PSC interfaces will be created and added to VMs via
|
1927
|
+
# SLM (adding a network interface will require recreating the VM). For HA
|
1928
|
+
# instances this will be done via LDTM.
|
1929
|
+
class PscInterfaceConfig
|
1930
|
+
include Google::Apis::Core::Hashable
|
1931
|
+
|
1932
|
+
# A list of endpoints in the consumer VPC the interface might initiate outbound
|
1933
|
+
# connections to. This list has to be provided when the PSC interface is created.
|
1934
|
+
# Corresponds to the JSON property `consumerEndpointIps`
|
1935
|
+
# @return [Array<String>]
|
1936
|
+
attr_accessor :consumer_endpoint_ips
|
1937
|
+
|
1938
|
+
# The NetworkAttachment resource created in the consumer VPC to which the PSC
|
1939
|
+
# interface will be linked, in the form of: `projects/$`CONSUMER_PROJECT`/
|
1940
|
+
# regions/$`REGION`/networkAttachments/$`NETWORK_ATTACHMENT_NAME``.
|
1941
|
+
# NetworkAttachment has to be provided when the PSC interface is created.
|
1942
|
+
# Corresponds to the JSON property `networkAttachment`
|
1943
|
+
# @return [String]
|
1944
|
+
attr_accessor :network_attachment
|
1945
|
+
|
1946
|
+
def initialize(**args)
|
1947
|
+
update!(**args)
|
1948
|
+
end
|
1949
|
+
|
1950
|
+
# Update properties of this object
|
1951
|
+
def update!(**args)
|
1952
|
+
@consumer_endpoint_ips = args[:consumer_endpoint_ips] if args.key?(:consumer_endpoint_ips)
|
1953
|
+
@network_attachment = args[:network_attachment] if args.key?(:network_attachment)
|
1954
|
+
end
|
1955
|
+
end
|
1956
|
+
|
1826
1957
|
# A backup's position in a quantity-based retention queue, of backups with the
|
1827
1958
|
# same source cluster and type, with length, retention, specified by the backup'
|
1828
1959
|
# s retention policy. Once the position is greater than the retention, the
|
@@ -2493,9 +2624,10 @@ module Google
|
|
2493
2624
|
# @return [String]
|
2494
2625
|
attr_accessor :provider_description
|
2495
2626
|
|
2496
|
-
# Required. The type of resource this ID is identifying. Ex
|
2497
|
-
#
|
2498
|
-
#
|
2627
|
+
# Required. The type of resource this ID is identifying. Ex redis.googleapis.com/
|
2628
|
+
# Instance, redis.googleapis.com/Cluster, alloydb.googleapis.com/Cluster,
|
2629
|
+
# alloydb.googleapis.com/Instance, spanner.googleapis.com/Instance REQUIRED
|
2630
|
+
# Please refer go/condor-common-datamodel
|
2499
2631
|
# Corresponds to the JSON property `resourceType`
|
2500
2632
|
# @return [String]
|
2501
2633
|
attr_accessor :resource_type
|
@@ -2556,6 +2688,11 @@ module Google
|
|
2556
2688
|
# @return [Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainCustomMetadataData]
|
2557
2689
|
attr_accessor :custom_metadata
|
2558
2690
|
|
2691
|
+
# Entitlements associated with the resource
|
2692
|
+
# Corresponds to the JSON property `entitlements`
|
2693
|
+
# @return [Array<Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainEntitlement>]
|
2694
|
+
attr_accessor :entitlements
|
2695
|
+
|
2559
2696
|
# The state that the instance is expected to be in. For example, an instance
|
2560
2697
|
# state can transition to UNHEALTHY due to wrong patch update, while the
|
2561
2698
|
# expected state will remain at the HEALTHY.
|
@@ -2627,6 +2764,7 @@ module Google
|
|
2627
2764
|
@creation_time = args[:creation_time] if args.key?(:creation_time)
|
2628
2765
|
@current_state = args[:current_state] if args.key?(:current_state)
|
2629
2766
|
@custom_metadata = args[:custom_metadata] if args.key?(:custom_metadata)
|
2767
|
+
@entitlements = args[:entitlements] if args.key?(:entitlements)
|
2630
2768
|
@expected_state = args[:expected_state] if args.key?(:expected_state)
|
2631
2769
|
@id = args[:id] if args.key?(:id)
|
2632
2770
|
@instance_type = args[:instance_type] if args.key?(:instance_type)
|
@@ -2644,7 +2782,7 @@ module Google
|
|
2644
2782
|
class StorageDatabasecenterPartnerapiV1mainDatabaseResourceRecommendationSignalData
|
2645
2783
|
include Google::Apis::Core::Hashable
|
2646
2784
|
|
2647
|
-
#
|
2785
|
+
# Optional. Any other additional metadata specific to recommendation
|
2648
2786
|
# Corresponds to the JSON property `additionalMetadata`
|
2649
2787
|
# @return [Hash<String,Object>]
|
2650
2788
|
attr_accessor :additional_metadata
|
@@ -2659,6 +2797,31 @@ module Google
|
|
2659
2797
|
# @return [String]
|
2660
2798
|
attr_accessor :recommendation_state
|
2661
2799
|
|
2800
|
+
# Required. Name of recommendation. Examples: organizations/1234/locations/us-
|
2801
|
+
# central1/recommenders/google.cloudsql.instance.PerformanceRecommender/
|
2802
|
+
# recommendations/9876
|
2803
|
+
# Corresponds to the JSON property `recommender`
|
2804
|
+
# @return [String]
|
2805
|
+
attr_accessor :recommender
|
2806
|
+
|
2807
|
+
# Required. ID of recommender. Examples: "google.cloudsql.instance.
|
2808
|
+
# PerformanceRecommender"
|
2809
|
+
# Corresponds to the JSON property `recommenderId`
|
2810
|
+
# @return [String]
|
2811
|
+
attr_accessor :recommender_id
|
2812
|
+
|
2813
|
+
# Required. Contains an identifier for a subtype of recommendations produced for
|
2814
|
+
# the same recommender. Subtype is a function of content and impact, meaning a
|
2815
|
+
# new subtype might be added when significant changes to `content` or `
|
2816
|
+
# primary_impact.category` are introduced. See the Recommenders section to see a
|
2817
|
+
# list of subtypes for a given Recommender. Examples: For recommender = "google.
|
2818
|
+
# cloudsql.instance.PerformanceRecommender", recommender_subtype can be "
|
2819
|
+
# MYSQL_HIGH_NUMBER_OF_OPEN_TABLES_BEST_PRACTICE"/"
|
2820
|
+
# POSTGRES_HIGH_TRANSACTION_ID_UTILIZATION_BEST_PRACTICE"
|
2821
|
+
# Corresponds to the JSON property `recommenderSubtype`
|
2822
|
+
# @return [String]
|
2823
|
+
attr_accessor :recommender_subtype
|
2824
|
+
|
2662
2825
|
# Required. Database resource name associated with the signal. Resource name to
|
2663
2826
|
# follow CAIS resource_name format as noted here go/condor-common-datamodel
|
2664
2827
|
# Corresponds to the JSON property `resourceName`
|
@@ -2680,11 +2843,40 @@ module Google
|
|
2680
2843
|
@additional_metadata = args[:additional_metadata] if args.key?(:additional_metadata)
|
2681
2844
|
@last_refresh_time = args[:last_refresh_time] if args.key?(:last_refresh_time)
|
2682
2845
|
@recommendation_state = args[:recommendation_state] if args.key?(:recommendation_state)
|
2846
|
+
@recommender = args[:recommender] if args.key?(:recommender)
|
2847
|
+
@recommender_id = args[:recommender_id] if args.key?(:recommender_id)
|
2848
|
+
@recommender_subtype = args[:recommender_subtype] if args.key?(:recommender_subtype)
|
2683
2849
|
@resource_name = args[:resource_name] if args.key?(:resource_name)
|
2684
2850
|
@signal_type = args[:signal_type] if args.key?(:signal_type)
|
2685
2851
|
end
|
2686
2852
|
end
|
2687
2853
|
|
2854
|
+
# Proto representing the access that a user has to a specific feature/service.
|
2855
|
+
# NextId: 3.
|
2856
|
+
class StorageDatabasecenterPartnerapiV1mainEntitlement
|
2857
|
+
include Google::Apis::Core::Hashable
|
2858
|
+
|
2859
|
+
# The current state of user's accessibility to a feature/benefit.
|
2860
|
+
# Corresponds to the JSON property `entitlementState`
|
2861
|
+
# @return [String]
|
2862
|
+
attr_accessor :entitlement_state
|
2863
|
+
|
2864
|
+
# An enum that represents the type of this entitlement.
|
2865
|
+
# Corresponds to the JSON property `type`
|
2866
|
+
# @return [String]
|
2867
|
+
attr_accessor :type
|
2868
|
+
|
2869
|
+
def initialize(**args)
|
2870
|
+
update!(**args)
|
2871
|
+
end
|
2872
|
+
|
2873
|
+
# Update properties of this object
|
2874
|
+
def update!(**args)
|
2875
|
+
@entitlement_state = args[:entitlement_state] if args.key?(:entitlement_state)
|
2876
|
+
@type = args[:type] if args.key?(:type)
|
2877
|
+
end
|
2878
|
+
end
|
2879
|
+
|
2688
2880
|
# An error that occurred during a backup creation operation.
|
2689
2881
|
class StorageDatabasecenterPartnerapiV1mainOperationError
|
2690
2882
|
include Google::Apis::Core::Hashable
|
@@ -2694,6 +2886,11 @@ module Google
|
|
2694
2886
|
# @return [String]
|
2695
2887
|
attr_accessor :code
|
2696
2888
|
|
2889
|
+
#
|
2890
|
+
# Corresponds to the JSON property `errorType`
|
2891
|
+
# @return [String]
|
2892
|
+
attr_accessor :error_type
|
2893
|
+
|
2697
2894
|
# Additional information about the error encountered. REQUIRED
|
2698
2895
|
# Corresponds to the JSON property `message`
|
2699
2896
|
# @return [String]
|
@@ -2706,6 +2903,7 @@ module Google
|
|
2706
2903
|
# Update properties of this object
|
2707
2904
|
def update!(**args)
|
2708
2905
|
@code = args[:code] if args.key?(:code)
|
2906
|
+
@error_type = args[:error_type] if args.key?(:error_type)
|
2709
2907
|
@message = args[:message] if args.key?(:message)
|
2710
2908
|
end
|
2711
2909
|
end
|
@@ -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.8.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 = "20240223"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -250,6 +250,24 @@ module Google
|
|
250
250
|
include Google::Apis::Core::JsonObjectSupport
|
251
251
|
end
|
252
252
|
|
253
|
+
class PscConfig
|
254
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
255
|
+
|
256
|
+
include Google::Apis::Core::JsonObjectSupport
|
257
|
+
end
|
258
|
+
|
259
|
+
class PscInstanceConfig
|
260
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
261
|
+
|
262
|
+
include Google::Apis::Core::JsonObjectSupport
|
263
|
+
end
|
264
|
+
|
265
|
+
class PscInterfaceConfig
|
266
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
267
|
+
|
268
|
+
include Google::Apis::Core::JsonObjectSupport
|
269
|
+
end
|
270
|
+
|
253
271
|
class QuantityBasedExpiry
|
254
272
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
255
273
|
|
@@ -370,6 +388,12 @@ module Google
|
|
370
388
|
include Google::Apis::Core::JsonObjectSupport
|
371
389
|
end
|
372
390
|
|
391
|
+
class StorageDatabasecenterPartnerapiV1mainEntitlement
|
392
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
393
|
+
|
394
|
+
include Google::Apis::Core::JsonObjectSupport
|
395
|
+
end
|
396
|
+
|
373
397
|
class StorageDatabasecenterPartnerapiV1mainOperationError
|
374
398
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
375
399
|
|
@@ -544,6 +568,8 @@ module Google
|
|
544
568
|
|
545
569
|
property :primary_config, as: 'primaryConfig', class: Google::Apis::AlloydbV1beta::PrimaryConfig, decorator: Google::Apis::AlloydbV1beta::PrimaryConfig::Representation
|
546
570
|
|
571
|
+
property :psc_config, as: 'pscConfig', class: Google::Apis::AlloydbV1beta::PscConfig, decorator: Google::Apis::AlloydbV1beta::PscConfig::Representation
|
572
|
+
|
547
573
|
property :reconciling, as: 'reconciling'
|
548
574
|
property :satisfies_pzs, as: 'satisfiesPzs'
|
549
575
|
property :secondary_config, as: 'secondaryConfig', class: Google::Apis::AlloydbV1beta::SecondaryConfig, decorator: Google::Apis::AlloydbV1beta::SecondaryConfig::Representation
|
@@ -563,6 +589,7 @@ module Google
|
|
563
589
|
property :ip_address, as: 'ipAddress'
|
564
590
|
property :name, as: 'name'
|
565
591
|
collection :pem_certificate_chain, as: 'pemCertificateChain'
|
592
|
+
property :psc_dns_name, as: 'pscDnsName'
|
566
593
|
property :public_ip_address, as: 'publicIpAddress'
|
567
594
|
end
|
568
595
|
end
|
@@ -707,6 +734,8 @@ module Google
|
|
707
734
|
|
708
735
|
collection :nodes, as: 'nodes', class: Google::Apis::AlloydbV1beta::Node, decorator: Google::Apis::AlloydbV1beta::Node::Representation
|
709
736
|
|
737
|
+
property :psc_instance_config, as: 'pscInstanceConfig', class: Google::Apis::AlloydbV1beta::PscInstanceConfig, decorator: Google::Apis::AlloydbV1beta::PscInstanceConfig::Representation
|
738
|
+
|
710
739
|
property :public_ip_address, as: 'publicIpAddress'
|
711
740
|
property :query_insights_config, as: 'queryInsightsConfig', class: Google::Apis::AlloydbV1beta::QueryInsightsInstanceConfig, decorator: Google::Apis::AlloydbV1beta::QueryInsightsInstanceConfig::Representation
|
712
741
|
|
@@ -874,6 +903,34 @@ module Google
|
|
874
903
|
end
|
875
904
|
end
|
876
905
|
|
906
|
+
class PscConfig
|
907
|
+
# @private
|
908
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
909
|
+
property :psc_enabled, as: 'pscEnabled'
|
910
|
+
end
|
911
|
+
end
|
912
|
+
|
913
|
+
class PscInstanceConfig
|
914
|
+
# @private
|
915
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
916
|
+
collection :allowed_consumer_networks, as: 'allowedConsumerNetworks'
|
917
|
+
collection :allowed_consumer_projects, as: 'allowedConsumerProjects'
|
918
|
+
collection :outgoing_service_attachment_links, as: 'outgoingServiceAttachmentLinks'
|
919
|
+
property :psc_enabled, as: 'pscEnabled'
|
920
|
+
collection :psc_interface_configs, as: 'pscInterfaceConfigs', class: Google::Apis::AlloydbV1beta::PscInterfaceConfig, decorator: Google::Apis::AlloydbV1beta::PscInterfaceConfig::Representation
|
921
|
+
|
922
|
+
property :service_attachment_link, as: 'serviceAttachmentLink'
|
923
|
+
end
|
924
|
+
end
|
925
|
+
|
926
|
+
class PscInterfaceConfig
|
927
|
+
# @private
|
928
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
929
|
+
collection :consumer_endpoint_ips, as: 'consumerEndpointIps'
|
930
|
+
property :network_attachment, as: 'networkAttachment'
|
931
|
+
end
|
932
|
+
end
|
933
|
+
|
877
934
|
class QuantityBasedExpiry
|
878
935
|
# @private
|
879
936
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1073,6 +1130,8 @@ module Google
|
|
1073
1130
|
property :current_state, as: 'currentState'
|
1074
1131
|
property :custom_metadata, as: 'customMetadata', class: Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainCustomMetadataData, decorator: Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainCustomMetadataData::Representation
|
1075
1132
|
|
1133
|
+
collection :entitlements, as: 'entitlements', class: Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainEntitlement, decorator: Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainEntitlement::Representation
|
1134
|
+
|
1076
1135
|
property :expected_state, as: 'expectedState'
|
1077
1136
|
property :id, as: 'id', class: Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainDatabaseResourceId, decorator: Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainDatabaseResourceId::Representation
|
1078
1137
|
|
@@ -1095,15 +1154,27 @@ module Google
|
|
1095
1154
|
hash :additional_metadata, as: 'additionalMetadata'
|
1096
1155
|
property :last_refresh_time, as: 'lastRefreshTime'
|
1097
1156
|
property :recommendation_state, as: 'recommendationState'
|
1157
|
+
property :recommender, as: 'recommender'
|
1158
|
+
property :recommender_id, as: 'recommenderId'
|
1159
|
+
property :recommender_subtype, as: 'recommenderSubtype'
|
1098
1160
|
property :resource_name, as: 'resourceName'
|
1099
1161
|
property :signal_type, as: 'signalType'
|
1100
1162
|
end
|
1101
1163
|
end
|
1102
1164
|
|
1165
|
+
class StorageDatabasecenterPartnerapiV1mainEntitlement
|
1166
|
+
# @private
|
1167
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1168
|
+
property :entitlement_state, as: 'entitlementState'
|
1169
|
+
property :type, as: 'type'
|
1170
|
+
end
|
1171
|
+
end
|
1172
|
+
|
1103
1173
|
class StorageDatabasecenterPartnerapiV1mainOperationError
|
1104
1174
|
# @private
|
1105
1175
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1106
1176
|
property :code, as: 'code'
|
1177
|
+
property :error_type, as: 'errorType'
|
1107
1178
|
property :message, as: 'message'
|
1108
1179
|
end
|
1109
1180
|
end
|
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.8.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-03-03 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.8.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
|