google-apis-sqladmin_v1beta4 0.70.0 → 0.71.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: 8d8097d51e85fa08338756f5a931908c99baa8b479f3ee3b5c6a8a66f2029294
4
- data.tar.gz: fc382412dc2647c136beaf2b5b599b71dfd1be32003a6545db8588385568ec8e
3
+ metadata.gz: 726ac1828dd3d32a5a303719f7ecba21f98e4d88e370613ad5f51f77beefb635
4
+ data.tar.gz: 68d1ac150279f2ef8f7fe6d13a2da4508b779bb64982d435e933a52c89d05b37
5
5
  SHA512:
6
- metadata.gz: e63641e232af0a4bd108e53a820db08d0a5b00c31f984b028a911ec70517470f83954b4535fb58db00ebdf3dbace4840c49f44e373e80753ea6c3c193b8adcb5
7
- data.tar.gz: 7a0183576b7ee8401cb1ac8cbc7ba1ea7809369597635c77f51fc6385307b2dcc52901bfc85191ceb8d26a892ccfb8236ca34ee64f0c597ac109cfec3166833c
6
+ metadata.gz: 52c4d6df5138f826c636c6888d040ab04c8fbd9a94c6c9268e6dd02fdcb78bc2cb8211431931b53db22a726dd9b8bacc9c8a15f56a834f555aa11ca28664261c
7
+ data.tar.gz: f557de5ad3170a5e61a75ed31eddf183a4113c873eff48c6377be62b6ecd683192a0f203373f5ccde3e542a2a79b43e6092efb9d48c0b78fd42db3a3deff57ea
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-sqladmin_v1beta4
2
2
 
3
+ ### v0.71.0 (2024-05-26)
4
+
5
+ * Regenerated from discovery document revision 20240521
6
+ * Regenerated using generator version 0.15.0
7
+
3
8
  ### v0.70.0 (2024-05-05)
4
9
 
5
10
  * Regenerated from discovery document revision 20240425
@@ -149,6 +149,38 @@ module Google
149
149
  end
150
150
  end
151
151
 
152
+ # An available database version. It can be a major or a minor version.
153
+ class AvailableDatabaseVersion
154
+ include Google::Apis::Core::Hashable
155
+
156
+ # The database version's display name.
157
+ # Corresponds to the JSON property `displayName`
158
+ # @return [String]
159
+ attr_accessor :display_name
160
+
161
+ # The version's major version name.
162
+ # Corresponds to the JSON property `majorVersion`
163
+ # @return [String]
164
+ attr_accessor :major_version
165
+
166
+ # The database version name. For MySQL 8.0, this string provides the database
167
+ # major and minor version.
168
+ # Corresponds to the JSON property `name`
169
+ # @return [String]
170
+ attr_accessor :name
171
+
172
+ def initialize(**args)
173
+ update!(**args)
174
+ end
175
+
176
+ # Update properties of this object
177
+ def update!(**args)
178
+ @display_name = args[:display_name] if args.key?(:display_name)
179
+ @major_version = args[:major_version] if args.key?(:major_version)
180
+ @name = args[:name] if args.key?(:name)
181
+ end
182
+ end
183
+
152
184
  # Database instance backup configuration.
153
185
  class BackupConfiguration
154
186
  include Google::Apis::Core::Hashable
@@ -543,8 +575,15 @@ module Google
543
575
  # @return [String]
544
576
  attr_accessor :point_in_time
545
577
 
546
- # Optional. (Point-in-time recovery for PostgreSQL only) Clone to an instance in
547
- # the specified zone. If no zone is specified, clone to the same zone as the
578
+ # Optional. Copy clone and point-in-time recovery clone of a regional instance
579
+ # in the specified zones. If not specified, clone to the same secondary zone as
580
+ # the source instance. This value cannot be the same as the preferred_zone field.
581
+ # Corresponds to the JSON property `preferredSecondaryZone`
582
+ # @return [String]
583
+ attr_accessor :preferred_secondary_zone
584
+
585
+ # Optional. Copy clone and point-in-time recovery clone of an instance to the
586
+ # specified zone. If no zone is specified, clone to the same primary zone as the
548
587
  # source instance.
549
588
  # Corresponds to the JSON property `preferredZone`
550
589
  # @return [String]
@@ -563,6 +602,7 @@ module Google
563
602
  @kind = args[:kind] if args.key?(:kind)
564
603
  @pitr_timestamp_ms = args[:pitr_timestamp_ms] if args.key?(:pitr_timestamp_ms)
565
604
  @point_in_time = args[:point_in_time] if args.key?(:point_in_time)
605
+ @preferred_secondary_zone = args[:preferred_secondary_zone] if args.key?(:preferred_secondary_zone)
566
606
  @preferred_zone = args[:preferred_zone] if args.key?(:preferred_zone)
567
607
  end
568
608
  end
@@ -942,7 +982,8 @@ module Google
942
982
  # @return [String]
943
983
  attr_accessor :root_password
944
984
 
945
- # The status indicating if instance satisfiesPzs. Reserved for future use.
985
+ # This status indicates whether the instance satisfies PZS. The status is
986
+ # reserved for future use.
946
987
  # Corresponds to the JSON property `satisfiesPzs`
947
988
  # @return [Boolean]
948
989
  attr_accessor :satisfies_pzs
@@ -997,6 +1038,11 @@ module Google
997
1038
  # @return [Array<String>]
998
1039
  attr_accessor :suspension_reason
999
1040
 
1041
+ # Output only. All database versions that are available for upgrade.
1042
+ # Corresponds to the JSON property `upgradableDatabaseVersions`
1043
+ # @return [Array<Google::Apis::SqladminV1beta4::AvailableDatabaseVersion>]
1044
+ attr_accessor :upgradable_database_versions
1045
+
1000
1046
  # Output only. The dns name of the primary instance in a replication group.
1001
1047
  # Corresponds to the JSON property `writeEndpoint`
1002
1048
  # @return [String]
@@ -1050,6 +1096,7 @@ module Google
1050
1096
  @sql_network_architecture = args[:sql_network_architecture] if args.key?(:sql_network_architecture)
1051
1097
  @state = args[:state] if args.key?(:state)
1052
1098
  @suspension_reason = args[:suspension_reason] if args.key?(:suspension_reason)
1099
+ @upgradable_database_versions = args[:upgradable_database_versions] if args.key?(:upgradable_database_versions)
1053
1100
  @write_endpoint = args[:write_endpoint] if args.key?(:write_endpoint)
1054
1101
  end
1055
1102
 
@@ -3332,6 +3379,17 @@ module Google
3332
3379
  # @return [String]
3333
3380
  attr_accessor :failover_dr_replica_name
3334
3381
 
3382
+ # Output only. If set, it indicates this instance has a private service access (
3383
+ # PSA) dns endpoint that is pointing to the primary instance of the cluster. If
3384
+ # this instance is the primary, the dns should be pointing to this instance.
3385
+ # After Switchover or Replica failover, this DNS endpoint points to the promoted
3386
+ # instance. This is a read-only field, returned to the user as information. This
3387
+ # field can exist even if a standalone instance does not yet have a replica, or
3388
+ # had a DR replica that was deleted.
3389
+ # Corresponds to the JSON property `psaWriteEndpoint`
3390
+ # @return [String]
3391
+ attr_accessor :psa_write_endpoint
3392
+
3335
3393
  def initialize(**args)
3336
3394
  update!(**args)
3337
3395
  end
@@ -3340,6 +3398,7 @@ module Google
3340
3398
  def update!(**args)
3341
3399
  @dr_replica = args[:dr_replica] if args.key?(:dr_replica)
3342
3400
  @failover_dr_replica_name = args[:failover_dr_replica_name] if args.key?(:failover_dr_replica_name)
3401
+ @psa_write_endpoint = args[:psa_write_endpoint] if args.key?(:psa_write_endpoint)
3343
3402
  end
3344
3403
  end
3345
3404
 
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module SqladminV1beta4
18
18
  # Version of the google-apis-sqladmin_v1beta4 gem
19
- GEM_VERSION = "0.70.0"
19
+ GEM_VERSION = "0.71.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.14.0"
22
+ GENERATOR_VERSION = "0.15.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240425"
25
+ REVISION = "20240521"
26
26
  end
27
27
  end
28
28
  end
@@ -46,6 +46,12 @@ module Google
46
46
  include Google::Apis::Core::JsonObjectSupport
47
47
  end
48
48
 
49
+ class AvailableDatabaseVersion
50
+ class Representation < Google::Apis::Core::JsonRepresentation; end
51
+
52
+ include Google::Apis::Core::JsonObjectSupport
53
+ end
54
+
49
55
  class BackupConfiguration
50
56
  class Representation < Google::Apis::Core::JsonRepresentation; end
51
57
 
@@ -712,6 +718,15 @@ module Google
712
718
  end
713
719
  end
714
720
 
721
+ class AvailableDatabaseVersion
722
+ # @private
723
+ class Representation < Google::Apis::Core::JsonRepresentation
724
+ property :display_name, as: 'displayName'
725
+ property :major_version, as: 'majorVersion'
726
+ property :name, as: 'name'
727
+ end
728
+ end
729
+
715
730
  class BackupConfiguration
716
731
  # @private
717
732
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -809,6 +824,7 @@ module Google
809
824
  property :kind, as: 'kind'
810
825
  property :pitr_timestamp_ms, :numeric_string => true, as: 'pitrTimestampMs'
811
826
  property :point_in_time, as: 'pointInTime'
827
+ property :preferred_secondary_zone, as: 'preferredSecondaryZone'
812
828
  property :preferred_zone, as: 'preferredZone'
813
829
  end
814
830
  end
@@ -917,6 +933,8 @@ module Google
917
933
  property :sql_network_architecture, as: 'sqlNetworkArchitecture'
918
934
  property :state, as: 'state'
919
935
  collection :suspension_reason, as: 'suspensionReason'
936
+ collection :upgradable_database_versions, as: 'upgradableDatabaseVersions', class: Google::Apis::SqladminV1beta4::AvailableDatabaseVersion, decorator: Google::Apis::SqladminV1beta4::AvailableDatabaseVersion::Representation
937
+
920
938
  property :write_endpoint, as: 'writeEndpoint'
921
939
  end
922
940
 
@@ -1530,6 +1548,7 @@ module Google
1530
1548
  class Representation < Google::Apis::Core::JsonRepresentation
1531
1549
  property :dr_replica, as: 'drReplica'
1532
1550
  property :failover_dr_replica_name, as: 'failoverDrReplicaName'
1551
+ property :psa_write_endpoint, as: 'psaWriteEndpoint'
1533
1552
  end
1534
1553
  end
1535
1554
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-sqladmin_v1beta4
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.70.0
4
+ version: 0.71.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-05-05 00:00:00.000000000 Z
11
+ date: 2024-05-26 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.14.0
19
+ version: 0.15.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.14.0
29
+ version: 0.15.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-sqladmin_v1beta4/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-sqladmin_v1beta4/v0.70.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-sqladmin_v1beta4/v0.71.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-sqladmin_v1beta4
63
63
  post_install_message:
64
64
  rdoc_options: []