google-apis-alloydb_v1beta 0.7.0 → 0.9.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: c772c4bf62599e5f6e66588fb8911869ed986d9c8d67cd04f1211a2c01c65934
4
- data.tar.gz: ec3aeb154d4417bceafde35c771bf2ff8ad777c5d3f8a5f8741ef08f5a6cd304
3
+ metadata.gz: e78201f58217cd2fcac668f56f75028cf8ed2eedf3c62155b9e9663e884e8bf0
4
+ data.tar.gz: 31c45872b7556b7ce3890d3c3112e9a260f3bb268cc6ba135d1990b0c62a4e3c
5
5
  SHA512:
6
- metadata.gz: 6e3d365b5d8848c7f4156408d62a907e5c4b08eebd7485593506a7a684cbb01d317b1e14fb8c8636d7f23a0c8f47a606784269aca209d2510f54b3d12930f5f4
7
- data.tar.gz: b48ffe621fa81978e55a649d98d7acd75c84ffa71f3dafb3dfc0482a9d630e48153a90ff39d72374d88a67df2fb1f758926ba1fec54003e6872bbc3489313ab9
6
+ metadata.gz: c0d3bcb2ad216c5891d8a2ea6ced85af76816ecf3fbb5cefb1b9254790692fa2a5324fc673648af2f330574e4f1b266e4d786ad517313acb85e4c0daaef386d3
7
+ data.tar.gz: dc285c7aa8e15dd4b2e5191d2cd7ca1e70d59035b199a8896f2842e04f1020fa813e32af8ad7860d572073df3deb8c0f83b244f6ffddd6d4791d12080fb0b2c8
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-alloydb_v1beta
2
2
 
3
+ ### v0.9.0 (2024-03-10)
4
+
5
+ * Regenerated from discovery document revision 20240228
6
+
7
+ ### v0.8.0 (2024-03-03)
8
+
9
+ * Regenerated from discovery document revision 20240223
10
+
3
11
  ### v0.7.0 (2024-02-23)
4
12
 
5
13
  * Regenerated from discovery document revision 20240216
@@ -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`". This is required to create a
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)
@@ -1589,8 +1595,8 @@ module Google
1589
1595
 
1590
1596
  # Optional. The resource link for the VPC network in which cluster resources are
1591
1597
  # created and from which they are accessible via Private IP. The network must
1592
- # belong to the same project as the cluster. It is specified in the form: "
1593
- # projects/`project_number`/global/networks/`network_id`". This is required to
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
1594
1600
  # create a cluster.
1595
1601
  # Corresponds to the JSON property `network`
1596
1602
  # @return [String]
@@ -1835,6 +1841,27 @@ module Google
1835
1841
  end
1836
1842
  end
1837
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
+
1838
1865
  # PscInstanceConfig contains PSC related configuration at an instance level.
1839
1866
  class PscInstanceConfig
1840
1867
  include Google::Apis::Core::Hashable
@@ -1858,6 +1885,12 @@ module Google
1858
1885
  # @return [Array<String>]
1859
1886
  attr_accessor :outgoing_service_attachment_links
1860
1887
 
1888
+ # Output only. The DNS name of the instance for PSC connectivity. Name
1889
+ # convention: ...alloydb-psc.goog
1890
+ # Corresponds to the JSON property `pscDnsName`
1891
+ # @return [String]
1892
+ attr_accessor :psc_dns_name
1893
+
1861
1894
  # Optional. Whether PSC connectivity is enabled for this instance. This is
1862
1895
  # populated by referencing the value from the parent cluster.
1863
1896
  # Corresponds to the JSON property `pscEnabled`
@@ -1875,7 +1908,7 @@ module Google
1875
1908
 
1876
1909
  # Output only. The service attachment created when Private Service Connect (PSC)
1877
1910
  # is enabled for the instance. The name of the resource will be in the format of
1878
- # projects//regions//serviceAttachments/
1911
+ # `projects//regions//serviceAttachments/`
1879
1912
  # Corresponds to the JSON property `serviceAttachmentLink`
1880
1913
  # @return [String]
1881
1914
  attr_accessor :service_attachment_link
@@ -1889,6 +1922,7 @@ module Google
1889
1922
  @allowed_consumer_networks = args[:allowed_consumer_networks] if args.key?(:allowed_consumer_networks)
1890
1923
  @allowed_consumer_projects = args[:allowed_consumer_projects] if args.key?(:allowed_consumer_projects)
1891
1924
  @outgoing_service_attachment_links = args[:outgoing_service_attachment_links] if args.key?(:outgoing_service_attachment_links)
1925
+ @psc_dns_name = args[:psc_dns_name] if args.key?(:psc_dns_name)
1892
1926
  @psc_enabled = args[:psc_enabled] if args.key?(:psc_enabled)
1893
1927
  @psc_interface_configs = args[:psc_interface_configs] if args.key?(:psc_interface_configs)
1894
1928
  @service_attachment_link = args[:service_attachment_link] if args.key?(:service_attachment_link)
@@ -1909,8 +1943,8 @@ module Google
1909
1943
  attr_accessor :consumer_endpoint_ips
1910
1944
 
1911
1945
  # 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`".
1946
+ # interface will be linked, in the form of: `projects/$`CONSUMER_PROJECT`/
1947
+ # regions/$`REGION`/networkAttachments/$`NETWORK_ATTACHMENT_NAME``.
1914
1948
  # NetworkAttachment has to be provided when the PSC interface is created.
1915
1949
  # Corresponds to the JSON property `networkAttachment`
1916
1950
  # @return [String]
@@ -2755,7 +2789,7 @@ module Google
2755
2789
  class StorageDatabasecenterPartnerapiV1mainDatabaseResourceRecommendationSignalData
2756
2790
  include Google::Apis::Core::Hashable
2757
2791
 
2758
- # Required. Any other additional metadata specific to recommendation
2792
+ # Optional. Any other additional metadata specific to recommendation
2759
2793
  # Corresponds to the JSON property `additionalMetadata`
2760
2794
  # @return [Hash<String,Object>]
2761
2795
  attr_accessor :additional_metadata
@@ -2859,6 +2893,11 @@ module Google
2859
2893
  # @return [String]
2860
2894
  attr_accessor :code
2861
2895
 
2896
+ #
2897
+ # Corresponds to the JSON property `errorType`
2898
+ # @return [String]
2899
+ attr_accessor :error_type
2900
+
2862
2901
  # Additional information about the error encountered. REQUIRED
2863
2902
  # Corresponds to the JSON property `message`
2864
2903
  # @return [String]
@@ -2871,6 +2910,7 @@ module Google
2871
2910
  # Update properties of this object
2872
2911
  def update!(**args)
2873
2912
  @code = args[:code] if args.key?(:code)
2913
+ @error_type = args[:error_type] if args.key?(:error_type)
2874
2914
  @message = args[:message] if args.key?(:message)
2875
2915
  end
2876
2916
  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.7.0"
19
+ GEM_VERSION = "0.9.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.14.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240216"
25
+ REVISION = "20240228"
26
26
  end
27
27
  end
28
28
  end
@@ -250,6 +250,12 @@ 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
+
253
259
  class PscInstanceConfig
254
260
  class Representation < Google::Apis::Core::JsonRepresentation; end
255
261
 
@@ -562,6 +568,8 @@ module Google
562
568
 
563
569
  property :primary_config, as: 'primaryConfig', class: Google::Apis::AlloydbV1beta::PrimaryConfig, decorator: Google::Apis::AlloydbV1beta::PrimaryConfig::Representation
564
570
 
571
+ property :psc_config, as: 'pscConfig', class: Google::Apis::AlloydbV1beta::PscConfig, decorator: Google::Apis::AlloydbV1beta::PscConfig::Representation
572
+
565
573
  property :reconciling, as: 'reconciling'
566
574
  property :satisfies_pzs, as: 'satisfiesPzs'
567
575
  property :secondary_config, as: 'secondaryConfig', class: Google::Apis::AlloydbV1beta::SecondaryConfig, decorator: Google::Apis::AlloydbV1beta::SecondaryConfig::Representation
@@ -895,12 +903,20 @@ module Google
895
903
  end
896
904
  end
897
905
 
906
+ class PscConfig
907
+ # @private
908
+ class Representation < Google::Apis::Core::JsonRepresentation
909
+ property :psc_enabled, as: 'pscEnabled'
910
+ end
911
+ end
912
+
898
913
  class PscInstanceConfig
899
914
  # @private
900
915
  class Representation < Google::Apis::Core::JsonRepresentation
901
916
  collection :allowed_consumer_networks, as: 'allowedConsumerNetworks'
902
917
  collection :allowed_consumer_projects, as: 'allowedConsumerProjects'
903
918
  collection :outgoing_service_attachment_links, as: 'outgoingServiceAttachmentLinks'
919
+ property :psc_dns_name, as: 'pscDnsName'
904
920
  property :psc_enabled, as: 'pscEnabled'
905
921
  collection :psc_interface_configs, as: 'pscInterfaceConfigs', class: Google::Apis::AlloydbV1beta::PscInterfaceConfig, decorator: Google::Apis::AlloydbV1beta::PscInterfaceConfig::Representation
906
922
 
@@ -1159,6 +1175,7 @@ module Google
1159
1175
  # @private
1160
1176
  class Representation < Google::Apis::Core::JsonRepresentation
1161
1177
  property :code, as: 'code'
1178
+ property :error_type, as: 'errorType'
1162
1179
  property :message, as: 'message'
1163
1180
  end
1164
1181
  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.7.0
4
+ version: 0.9.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-02-25 00:00:00.000000000 Z
11
+ date: 2024-03-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -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.7.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-alloydb_v1beta/v0.9.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: []