google-apis-sqladmin_v1 0.80.0 → 0.81.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: 04d767591e47688cf094361623509ed48f193d421edb5c5d270c2fa993fec71e
4
- data.tar.gz: 4d3454502cd3f145df52855d3b530fe46dc4c57ab52e9b5c780a1e80fd807da9
3
+ metadata.gz: 54684a18773dc12ec83470b7afb96f6d0826bc7c1b2818cda7eec9cc4123ef8b
4
+ data.tar.gz: 4ad2b6e8a09955608fdb8167318699fb8b73278863a9d168888aff6e43cddaa6
5
5
  SHA512:
6
- metadata.gz: '00419d793476adb8e001010d10f9c37a9b0234e8b07f6e88d5a024a77ac4f985a75983ce2e060a4831b3a2da1541f7290fc556eca5b1f08b1d3fa6ef5f61f215'
7
- data.tar.gz: ed67370a1367d1f9d2b57994067530972e0bf72e9dd894b7a96e207ad20294096cd423e4021cabfd3c20baa0f5e99e62f5549152b754f841b0ae4821688ce571
6
+ metadata.gz: 94a34e62d15dc8b5d58c39f79f668b25fd283fb0655a0b0ed7b3c9fd958da88c2df2714181ef2f5518f48a623eb9053bbd93ec4fa32769eeaaa2768f79f0d757
7
+ data.tar.gz: ad1bfc009fb9282ac193018acdecdbe09657c4ec98fa1c28dcfc7598293a5e94b77325b9d26d4ba2922735cc93b04f847b8ebbd5a06718de7ba37ea2b53bee36
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-sqladmin_v1
2
2
 
3
+ ### v0.81.0 (2025-06-08)
4
+
5
+ * Regenerated from discovery document revision 20250526
6
+
3
7
  ### v0.80.0 (2025-05-25)
4
8
 
5
9
  * Regenerated from discovery document revision 20250516
@@ -1280,6 +1280,12 @@ module Google
1280
1280
  # @return [Google::Apis::SqladminV1::SqlOutOfDiskReport]
1281
1281
  attr_accessor :out_of_disk_report
1282
1282
 
1283
+ # PITR related fields include enablement settings, archiving settings, and the
1284
+ # bucket name.
1285
+ # Corresponds to the JSON property `pitrFields`
1286
+ # @return [Google::Apis::SqladminV1::PitrFields]
1287
+ attr_accessor :pitr_fields
1288
+
1283
1289
  # Output only. DEPRECATED: please use write_endpoint instead.
1284
1290
  # Corresponds to the JSON property `primaryDnsName`
1285
1291
  # @return [String]
@@ -1453,6 +1459,7 @@ module Google
1453
1459
  @nodes = args[:nodes] if args.key?(:nodes)
1454
1460
  @on_premises_configuration = args[:on_premises_configuration] if args.key?(:on_premises_configuration)
1455
1461
  @out_of_disk_report = args[:out_of_disk_report] if args.key?(:out_of_disk_report)
1462
+ @pitr_fields = args[:pitr_fields] if args.key?(:pitr_fields)
1456
1463
  @primary_dns_name = args[:primary_dns_name] if args.key?(:primary_dns_name)
1457
1464
  @project = args[:project] if args.key?(:project)
1458
1465
  @psc_service_attachment_link = args[:psc_service_attachment_link] if args.key?(:psc_service_attachment_link)
@@ -4002,6 +4009,47 @@ module Google
4002
4009
  end
4003
4010
  end
4004
4011
 
4012
+ # PITR related fields include enablement settings, archiving settings, and the
4013
+ # bucket name.
4014
+ class PitrFields
4015
+ include Google::Apis::Core::Hashable
4016
+
4017
+ # The enablement setting for PITR for MySQL.
4018
+ # Corresponds to the JSON property `enableBinLog`
4019
+ # @return [Boolean]
4020
+ attr_accessor :enable_bin_log
4021
+ alias_method :enable_bin_log?, :enable_bin_log
4022
+
4023
+ # The enablement setting for PITR for PostgreSQL.
4024
+ # Corresponds to the JSON property `replicationLogArchivingEnabled`
4025
+ # @return [Boolean]
4026
+ attr_accessor :replication_log_archiving_enabled
4027
+ alias_method :replication_log_archiving_enabled?, :replication_log_archiving_enabled
4028
+
4029
+ # The enablement setting for PITR for SQL Server.
4030
+ # Corresponds to the JSON property `sqlserverPitrEnabled`
4031
+ # @return [Boolean]
4032
+ attr_accessor :sqlserver_pitr_enabled
4033
+ alias_method :sqlserver_pitr_enabled?, :sqlserver_pitr_enabled
4034
+
4035
+ # The number of transaction log days to retain for PITR
4036
+ # Corresponds to the JSON property `transactionLogRetentionDays`
4037
+ # @return [Fixnum]
4038
+ attr_accessor :transaction_log_retention_days
4039
+
4040
+ def initialize(**args)
4041
+ update!(**args)
4042
+ end
4043
+
4044
+ # Update properties of this object
4045
+ def update!(**args)
4046
+ @enable_bin_log = args[:enable_bin_log] if args.key?(:enable_bin_log)
4047
+ @replication_log_archiving_enabled = args[:replication_log_archiving_enabled] if args.key?(:replication_log_archiving_enabled)
4048
+ @sqlserver_pitr_enabled = args[:sqlserver_pitr_enabled] if args.key?(:sqlserver_pitr_enabled)
4049
+ @transaction_log_retention_days = args[:transaction_log_retention_days] if args.key?(:transaction_log_retention_days)
4050
+ end
4051
+ end
4052
+
4005
4053
  # Read-only password status.
4006
4054
  class PasswordStatus
4007
4055
  include Google::Apis::Core::Hashable
@@ -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.80.0"
19
+ GEM_VERSION = "0.81.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.18.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20250516"
25
+ REVISION = "20250526"
26
26
  end
27
27
  end
28
28
  end
@@ -532,6 +532,12 @@ module Google
532
532
  include Google::Apis::Core::JsonObjectSupport
533
533
  end
534
534
 
535
+ class PitrFields
536
+ class Representation < Google::Apis::Core::JsonRepresentation; end
537
+
538
+ include Google::Apis::Core::JsonObjectSupport
539
+ end
540
+
535
541
  class PasswordStatus
536
542
  class Representation < Google::Apis::Core::JsonRepresentation; end
537
543
 
@@ -1109,6 +1115,8 @@ module Google
1109
1115
 
1110
1116
  property :out_of_disk_report, as: 'outOfDiskReport', class: Google::Apis::SqladminV1::SqlOutOfDiskReport, decorator: Google::Apis::SqladminV1::SqlOutOfDiskReport::Representation
1111
1117
 
1118
+ property :pitr_fields, as: 'pitrFields', class: Google::Apis::SqladminV1::PitrFields, decorator: Google::Apis::SqladminV1::PitrFields::Representation
1119
+
1112
1120
  property :primary_dns_name, as: 'primaryDnsName'
1113
1121
  property :project, as: 'project'
1114
1122
  property :psc_service_attachment_link, as: 'pscServiceAttachmentLink'
@@ -1815,6 +1823,16 @@ module Google
1815
1823
  end
1816
1824
  end
1817
1825
 
1826
+ class PitrFields
1827
+ # @private
1828
+ class Representation < Google::Apis::Core::JsonRepresentation
1829
+ property :enable_bin_log, as: 'enableBinLog'
1830
+ property :replication_log_archiving_enabled, as: 'replicationLogArchivingEnabled'
1831
+ property :sqlserver_pitr_enabled, as: 'sqlserverPitrEnabled'
1832
+ property :transaction_log_retention_days, as: 'transactionLogRetentionDays'
1833
+ end
1834
+ end
1835
+
1818
1836
  class PasswordStatus
1819
1837
  # @private
1820
1838
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-sqladmin_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.80.0
4
+ version: 0.81.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
@@ -57,7 +57,7 @@ licenses:
57
57
  metadata:
58
58
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
59
59
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-sqladmin_v1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-sqladmin_v1/v0.80.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-sqladmin_v1/v0.81.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-sqladmin_v1
62
62
  rdoc_options: []
63
63
  require_paths: