google-apis-alloydb_v1alpha 0.1.0 → 0.2.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: 6743e4819d841b7fcb6b58b1197a721b519eabc95d1e925b3c25e8e692f3c206
4
- data.tar.gz: c1dbb1c2e99ce060a11dd5cc23868b6d021ce67cb2e8bbe8436a44598f7fe77d
3
+ metadata.gz: aabfed48d464bee1111594ce47b9a6b417129935ab20141e86a306ca4b837a6d
4
+ data.tar.gz: e257877c2401eb8a17f231716bd83afb5987c72977c1be4ec36e7e17eec331c5
5
5
  SHA512:
6
- metadata.gz: 66c7fc3df0645d305c51d98a88f91d5710417dbe6c821efa8f089438a0897a84b1fecc8a9adab441033db66d54d5270a14bcd02e50439d9c5da290c2cf308084
7
- data.tar.gz: 526e1ec389eefe18227392d837a886863adeacbf272e120c02e5d0b795f955ee9964b150c7f181d33f17943e6f0b3a3b892ef702a9ee189286a48e58b505ae0e
6
+ metadata.gz: eeff2b9e40573467b8974f3a1ff0400ead05737be06330cce54d69dd12117d8ec9f8d09cc80d9312d4b9256016b51816232fe7c68afbe59524107379421b1916
7
+ data.tar.gz: 9be3b7cb8483c04c45c23152aebc959d26f1355c924c570ab506dd40e04d3a1b1402da53f3da053ec0188a7229e8cc19bf73765a37e9fd571fbae60359aafe52
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-alloydb_v1alpha
2
2
 
3
+ ### v0.2.0 (2023-11-19)
4
+
5
+ * Regenerated from discovery document revision 20231109
6
+
3
7
  ### v0.1.0 (2023-10-29)
4
8
 
5
9
  * Regenerated from discovery document revision 20231011
@@ -492,6 +492,11 @@ module Google
492
492
  # @return [Google::Apis::AlloydbV1alpha::PrimaryConfig]
493
493
  attr_accessor :primary_config
494
494
 
495
+ # PscConfig contains PSC related configuration at a cluster level. NEXT ID: 2
496
+ # Corresponds to the JSON property `pscConfig`
497
+ # @return [Google::Apis::AlloydbV1alpha::PscConfig]
498
+ attr_accessor :psc_config
499
+
495
500
  # Output only. Reconciling (https://google.aip.dev/128#reconciliation). Set to
496
501
  # true if the current state of Cluster does not match the user's intended state,
497
502
  # and the service is actively updating the resource to reconcile them. This can
@@ -561,6 +566,7 @@ module Google
561
566
  @network = args[:network] if args.key?(:network)
562
567
  @network_config = args[:network_config] if args.key?(:network_config)
563
568
  @primary_config = args[:primary_config] if args.key?(:primary_config)
569
+ @psc_config = args[:psc_config] if args.key?(:psc_config)
564
570
  @reconciling = args[:reconciling] if args.key?(:reconciling)
565
571
  @satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs)
566
572
  @secondary_config = args[:secondary_config] if args.key?(:secondary_config)
@@ -1521,7 +1527,7 @@ module Google
1521
1527
  # @return [String]
1522
1528
  attr_accessor :allocated_ip_range
1523
1529
 
1524
- # Required. The resource link for the VPC network in which cluster resources are
1530
+ # Optional. The resource link for the VPC network in which cluster resources are
1525
1531
  # created and from which they are accessible via Private IP. The network must
1526
1532
  # belong to the same project as the cluster. It is specified in the form: "
1527
1533
  # projects/`project_number`/global/networks/`network_id`". This is required to
@@ -1769,6 +1775,27 @@ module Google
1769
1775
  end
1770
1776
  end
1771
1777
 
1778
+ # PscConfig contains PSC related configuration at a cluster level. NEXT ID: 2
1779
+ class PscConfig
1780
+ include Google::Apis::Core::Hashable
1781
+
1782
+ # Optional. Create an instance that allows connections from Private Service
1783
+ # Connect endpoints to the instance.
1784
+ # Corresponds to the JSON property `pscEnabled`
1785
+ # @return [Boolean]
1786
+ attr_accessor :psc_enabled
1787
+ alias_method :psc_enabled?, :psc_enabled
1788
+
1789
+ def initialize(**args)
1790
+ update!(**args)
1791
+ end
1792
+
1793
+ # Update properties of this object
1794
+ def update!(**args)
1795
+ @psc_enabled = args[:psc_enabled] if args.key?(:psc_enabled)
1796
+ end
1797
+ end
1798
+
1772
1799
  # A backup's position in a quantity-based retention queue, of backups with the
1773
1800
  # same source cluster and type, with length, retention, specified by the backup'
1774
1801
  # s retention policy. Once the position is greater than the retention, the
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module AlloydbV1alpha
18
18
  # Version of the google-apis-alloydb_v1alpha gem
19
- GEM_VERSION = "0.1.0"
19
+ GEM_VERSION = "0.2.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.12.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20231011"
25
+ REVISION = "20231109"
26
26
  end
27
27
  end
28
28
  end
@@ -244,6 +244,12 @@ module Google
244
244
  include Google::Apis::Core::JsonObjectSupport
245
245
  end
246
246
 
247
+ class PscConfig
248
+ class Representation < Google::Apis::Core::JsonRepresentation; end
249
+
250
+ include Google::Apis::Core::JsonObjectSupport
251
+ end
252
+
247
253
  class QuantityBasedExpiry
248
254
  class Representation < Google::Apis::Core::JsonRepresentation; end
249
255
 
@@ -519,6 +525,8 @@ module Google
519
525
 
520
526
  property :primary_config, as: 'primaryConfig', class: Google::Apis::AlloydbV1alpha::PrimaryConfig, decorator: Google::Apis::AlloydbV1alpha::PrimaryConfig::Representation
521
527
 
528
+ property :psc_config, as: 'pscConfig', class: Google::Apis::AlloydbV1alpha::PscConfig, decorator: Google::Apis::AlloydbV1alpha::PscConfig::Representation
529
+
522
530
  property :reconciling, as: 'reconciling'
523
531
  property :satisfies_pzs, as: 'satisfiesPzs'
524
532
  property :secondary_config, as: 'secondaryConfig', class: Google::Apis::AlloydbV1alpha::SecondaryConfig, decorator: Google::Apis::AlloydbV1alpha::SecondaryConfig::Representation
@@ -836,6 +844,13 @@ module Google
836
844
  end
837
845
  end
838
846
 
847
+ class PscConfig
848
+ # @private
849
+ class Representation < Google::Apis::Core::JsonRepresentation
850
+ property :psc_enabled, as: 'pscEnabled'
851
+ end
852
+ end
853
+
839
854
  class QuantityBasedExpiry
840
855
  # @private
841
856
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-alloydb_v1alpha
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.2.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: 2023-10-29 00:00:00.000000000 Z
11
+ date: 2023-11-19 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_v1alpha/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-alloydb_v1alpha/v0.1.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-alloydb_v1alpha/v0.2.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-alloydb_v1alpha
63
63
  post_install_message:
64
64
  rdoc_options: []