google-apis-alloydb_v1beta 0.7.0 → 0.8.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: eb959e3ae7bb3b4cab6b62efa7b3b9a642bad6662af9eb64c9300c2bb86e1559
4
+ data.tar.gz: 5fa8016ae568ad5befc3f8cf17a09709f2c7c1b38395d1f7c28b3e4e510bd85b
5
5
  SHA512:
6
- metadata.gz: 6e3d365b5d8848c7f4156408d62a907e5c4b08eebd7485593506a7a684cbb01d317b1e14fb8c8636d7f23a0c8f47a606784269aca209d2510f54b3d12930f5f4
7
- data.tar.gz: b48ffe621fa81978e55a649d98d7acd75c84ffa71f3dafb3dfc0482a9d630e48153a90ff39d72374d88a67df2fb1f758926ba1fec54003e6872bbc3489313ab9
6
+ metadata.gz: ecb1ddd47c12f0632c0f60901a18d6f5c6b799e045241074d46ee2d43eaa54c14fbd83acae1495872d76db5a54083a473ec15b4ed66588ceaed4757208bda096
7
+ data.tar.gz: 70aa3f7af2778a27349c5ee5e3a927bbc354ff7b7348ed5093c2033844d5172451d21d51b24e475c28b74a414381337667f8200fec4730ddfe078a81bfad585e
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
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
+
3
7
  ### v0.7.0 (2024-02-23)
4
8
 
5
9
  * 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
@@ -1875,7 +1902,7 @@ module Google
1875
1902
 
1876
1903
  # Output only. The service attachment created when Private Service Connect (PSC)
1877
1904
  # is enabled for the instance. The name of the resource will be in the format of
1878
- # projects//regions//serviceAttachments/
1905
+ # `projects//regions//serviceAttachments/`
1879
1906
  # Corresponds to the JSON property `serviceAttachmentLink`
1880
1907
  # @return [String]
1881
1908
  attr_accessor :service_attachment_link
@@ -1909,8 +1936,8 @@ module Google
1909
1936
  attr_accessor :consumer_endpoint_ips
1910
1937
 
1911
1938
  # 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`".
1939
+ # interface will be linked, in the form of: `projects/$`CONSUMER_PROJECT`/
1940
+ # regions/$`REGION`/networkAttachments/$`NETWORK_ATTACHMENT_NAME``.
1914
1941
  # NetworkAttachment has to be provided when the PSC interface is created.
1915
1942
  # Corresponds to the JSON property `networkAttachment`
1916
1943
  # @return [String]
@@ -2755,7 +2782,7 @@ module Google
2755
2782
  class StorageDatabasecenterPartnerapiV1mainDatabaseResourceRecommendationSignalData
2756
2783
  include Google::Apis::Core::Hashable
2757
2784
 
2758
- # Required. Any other additional metadata specific to recommendation
2785
+ # Optional. Any other additional metadata specific to recommendation
2759
2786
  # Corresponds to the JSON property `additionalMetadata`
2760
2787
  # @return [Hash<String,Object>]
2761
2788
  attr_accessor :additional_metadata
@@ -2859,6 +2886,11 @@ module Google
2859
2886
  # @return [String]
2860
2887
  attr_accessor :code
2861
2888
 
2889
+ #
2890
+ # Corresponds to the JSON property `errorType`
2891
+ # @return [String]
2892
+ attr_accessor :error_type
2893
+
2862
2894
  # Additional information about the error encountered. REQUIRED
2863
2895
  # Corresponds to the JSON property `message`
2864
2896
  # @return [String]
@@ -2871,6 +2903,7 @@ module Google
2871
2903
  # Update properties of this object
2872
2904
  def update!(**args)
2873
2905
  @code = args[:code] if args.key?(:code)
2906
+ @error_type = args[:error_type] if args.key?(:error_type)
2874
2907
  @message = args[:message] if args.key?(:message)
2875
2908
  end
2876
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.7.0"
19
+ GEM_VERSION = "0.8.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 = "20240223"
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,6 +903,13 @@ 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
@@ -1159,6 +1174,7 @@ module Google
1159
1174
  # @private
1160
1175
  class Representation < Google::Apis::Core::JsonRepresentation
1161
1176
  property :code, as: 'code'
1177
+ property :error_type, as: 'errorType'
1162
1178
  property :message, as: 'message'
1163
1179
  end
1164
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.7.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-02-25 00:00:00.000000000 Z
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
@@ -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.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: []