google-apis-sqladmin_v1 0.62.0 → 0.64.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: c65130b3656615f844fd6705b4b085713d1644e03808d09143c04379e7849056
4
- data.tar.gz: 62201101688978717ba6ade220d4540ed4a9feb2ad7def004d59ae370856dda1
3
+ metadata.gz: 40ef27178af85273881ca7a13d0b4a7a64ff687657046dbb8f46264cf8c54e1b
4
+ data.tar.gz: 76a3d96931a2940a312979290a0176f517b51a39819e9166932168eca6048d79
5
5
  SHA512:
6
- metadata.gz: 9dc19b53a814d96248b1cbf6ba256c9169c149dcfc7503774755237c30f5c63b43070d008a333a3cd519d9549e855a038886ba67c5ed5305d5c35b86dde476e4
7
- data.tar.gz: 47a7399e6563b7b6ff75463bcdba6df7b45ce73acef17252a52f779262fc5910574f2b7339d1bf0687e2cc7cf6b4de5894a013799ccb615f1d5bc17d24453703
6
+ metadata.gz: 87f5644448cb91a797478bb3f6a2074acc3618782884d16a4e532e2e09a2923ce95a6eb66522404f873ef4bc3fa6e321d96fb1a5f4a499d1b01d843d8b7a4f98
7
+ data.tar.gz: e3ef28063be210499f8d8ef881c0b416ca41c5b6956afe58b76e9d09d0ff03fd73d13b8652773531953088b7fe74de6a593c1a92d8875f71e06a8dfdd6d7e9ed
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-sqladmin_v1
2
2
 
3
+ ### v0.64.0 (2024-08-25)
4
+
5
+ * Regenerated from discovery document revision 20240814
6
+
7
+ ### v0.63.0 (2024-08-04)
8
+
9
+ * Regenerated from discovery document revision 20240724
10
+ * Regenerated using generator version 0.15.1
11
+
3
12
  ### v0.62.0 (2024-07-25)
4
13
 
5
14
  * Regenerated from discovery document revision 20240711
@@ -403,6 +403,11 @@ module Google
403
403
  # @return [String]
404
404
  attr_accessor :location
405
405
 
406
+ # Output only. The maximum chargeable bytes for the backup.
407
+ # Corresponds to the JSON property `maxChargeableBytes`
408
+ # @return [Fixnum]
409
+ attr_accessor :max_chargeable_bytes
410
+
406
411
  # The URI of this resource.
407
412
  # Corresponds to the JSON property `selfLink`
408
413
  # @return [String]
@@ -457,6 +462,7 @@ module Google
457
462
  @instance = args[:instance] if args.key?(:instance)
458
463
  @kind = args[:kind] if args.key?(:kind)
459
464
  @location = args[:location] if args.key?(:location)
465
+ @max_chargeable_bytes = args[:max_chargeable_bytes] if args.key?(:max_chargeable_bytes)
460
466
  @self_link = args[:self_link] if args.key?(:self_link)
461
467
  @start_time = args[:start_time] if args.key?(:start_time)
462
468
  @status = args[:status] if args.key?(:status)
@@ -575,6 +581,14 @@ module Google
575
581
  # @return [String]
576
582
  attr_accessor :point_in_time
577
583
 
584
+ # Optional. Copy clone and point-in-time recovery clone of a regional instance
585
+ # in the specified zones. If not specified, clone to the same secondary zone as
586
+ # the source instance. This value cannot be the same as the preferred_zone field.
587
+ # This field applies to all DB types.
588
+ # Corresponds to the JSON property `preferredSecondaryZone`
589
+ # @return [String]
590
+ attr_accessor :preferred_secondary_zone
591
+
578
592
  # Optional. Copy clone and point-in-time recovery clone of an instance to the
579
593
  # specified zone. If no zone is specified, clone to the same primary zone as the
580
594
  # source instance. This field applies to all DB types.
@@ -595,6 +609,7 @@ module Google
595
609
  @kind = args[:kind] if args.key?(:kind)
596
610
  @pitr_timestamp_ms = args[:pitr_timestamp_ms] if args.key?(:pitr_timestamp_ms)
597
611
  @point_in_time = args[:point_in_time] if args.key?(:point_in_time)
612
+ @preferred_secondary_zone = args[:preferred_secondary_zone] if args.key?(:preferred_secondary_zone)
598
613
  @preferred_zone = args[:preferred_zone] if args.key?(:preferred_zone)
599
614
  end
600
615
  end
@@ -980,6 +995,13 @@ module Google
980
995
  # @return [String]
981
996
  attr_accessor :root_password
982
997
 
998
+ # Output only. This status indicates whether the instance satisfies PZI. The
999
+ # status is reserved for future use.
1000
+ # Corresponds to the JSON property `satisfiesPzi`
1001
+ # @return [Boolean]
1002
+ attr_accessor :satisfies_pzi
1003
+ alias_method :satisfies_pzi?, :satisfies_pzi
1004
+
983
1005
  # This status indicates whether the instance satisfies PZS. The status is
984
1006
  # reserved for future use.
985
1007
  # Corresponds to the JSON property `satisfiesPzs`
@@ -1091,6 +1113,7 @@ module Google
1091
1113
  @replica_names = args[:replica_names] if args.key?(:replica_names)
1092
1114
  @replication_cluster = args[:replication_cluster] if args.key?(:replication_cluster)
1093
1115
  @root_password = args[:root_password] if args.key?(:root_password)
1116
+ @satisfies_pzi = args[:satisfies_pzi] if args.key?(:satisfies_pzi)
1094
1117
  @satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs)
1095
1118
  @scheduled_maintenance = args[:scheduled_maintenance] if args.key?(:scheduled_maintenance)
1096
1119
  @secondary_gce_zone = args[:secondary_gce_zone] if args.key?(:secondary_gce_zone)
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module SqladminV1
18
18
  # Version of the google-apis-sqladmin_v1 gem
19
- GEM_VERSION = "0.62.0"
19
+ GEM_VERSION = "0.64.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.15.0"
22
+ GENERATOR_VERSION = "0.15.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240711"
25
+ REVISION = "20240814"
26
26
  end
27
27
  end
28
28
  end
@@ -797,6 +797,7 @@ module Google
797
797
  property :instance, as: 'instance'
798
798
  property :kind, as: 'kind'
799
799
  property :location, as: 'location'
800
+ property :max_chargeable_bytes, :numeric_string => true, as: 'maxChargeableBytes'
800
801
  property :self_link, as: 'selfLink'
801
802
  property :start_time, as: 'startTime'
802
803
  property :status, as: 'status'
@@ -836,6 +837,7 @@ module Google
836
837
  property :kind, as: 'kind'
837
838
  property :pitr_timestamp_ms, :numeric_string => true, as: 'pitrTimestampMs'
838
839
  property :point_in_time, as: 'pointInTime'
840
+ property :preferred_secondary_zone, as: 'preferredSecondaryZone'
839
841
  property :preferred_zone, as: 'preferredZone'
840
842
  end
841
843
  end
@@ -932,6 +934,7 @@ module Google
932
934
  property :replication_cluster, as: 'replicationCluster', class: Google::Apis::SqladminV1::ReplicationCluster, decorator: Google::Apis::SqladminV1::ReplicationCluster::Representation
933
935
 
934
936
  property :root_password, as: 'rootPassword'
937
+ property :satisfies_pzi, as: 'satisfiesPzi'
935
938
  property :satisfies_pzs, as: 'satisfiesPzs'
936
939
  property :scheduled_maintenance, as: 'scheduledMaintenance', class: Google::Apis::SqladminV1::SqlScheduledMaintenance, decorator: Google::Apis::SqladminV1::SqlScheduledMaintenance::Representation
937
940
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-sqladmin_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.62.0
4
+ version: 0.64.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-07-25 00:00:00.000000000 Z
11
+ date: 2024-08-25 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-sqladmin_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-sqladmin_v1/v0.62.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-sqladmin_v1/v0.64.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-sqladmin_v1
63
63
  post_install_message:
64
64
  rdoc_options: []