google-apis-sqladmin_v1beta4 0.84.0 → 0.86.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 91dd34417f81985d0c02aaa303e9a99acd675627c3413b26db711d76498665b5
|
4
|
+
data.tar.gz: f402572f51204677057e7221294d4ee387034a9409c234c0c174301d1ead68bd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e7aab2f6e5a1c1e162757e6e8f39959d4d3d6ef993a3e26a42faf4baa37d0a6312bdf83870187be05ef024d12b48a9149b2ab8849b016cbab47f123d7c773b72
|
7
|
+
data.tar.gz: 97915d78b71175e5015d4c4b98f57500dfde02b94fb9c8734a4b7171d229f02d0c9674cdb60df486058c60f9a762384ba6100f52f257b244c16fc617e629cac1
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,14 @@
|
|
1
1
|
# Release history for google-apis-sqladmin_v1beta4
|
2
2
|
|
3
|
+
### v0.86.0 (2025-06-01)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250526
|
6
|
+
* Regenerated using generator version 0.18.0
|
7
|
+
|
8
|
+
### v0.85.0 (2025-05-21)
|
9
|
+
|
10
|
+
* Regenerated from discovery document revision 20250516
|
11
|
+
|
3
12
|
### v0.84.0 (2025-05-18)
|
4
13
|
|
5
14
|
* Regenerated from discovery document revision 20250508
|
@@ -1127,6 +1127,12 @@ module Google
|
|
1127
1127
|
# @return [String]
|
1128
1128
|
attr_accessor :backend_type
|
1129
1129
|
|
1130
|
+
# Clears private network settings when the instance is restored.
|
1131
|
+
# Corresponds to the JSON property `clearNetwork`
|
1132
|
+
# @return [Boolean]
|
1133
|
+
attr_accessor :clear_network
|
1134
|
+
alias_method :clear_network?, :clear_network
|
1135
|
+
|
1130
1136
|
# Connection name of the Cloud SQL instance used in connection strings.
|
1131
1137
|
# Corresponds to the JSON property `connectionName`
|
1132
1138
|
# @return [String]
|
@@ -1273,6 +1279,12 @@ module Google
|
|
1273
1279
|
# @return [Google::Apis::SqladminV1beta4::SqlOutOfDiskReport]
|
1274
1280
|
attr_accessor :out_of_disk_report
|
1275
1281
|
|
1282
|
+
# PITR related fields include enablement settings, archiving settings, and the
|
1283
|
+
# bucket name.
|
1284
|
+
# Corresponds to the JSON property `pitrFields`
|
1285
|
+
# @return [Google::Apis::SqladminV1beta4::PitrFields]
|
1286
|
+
attr_accessor :pitr_fields
|
1287
|
+
|
1276
1288
|
# Output only. DEPRECATED: please use write_endpoint instead.
|
1277
1289
|
# Corresponds to the JSON property `primaryDnsName`
|
1278
1290
|
# @return [String]
|
@@ -1418,6 +1430,7 @@ module Google
|
|
1418
1430
|
def update!(**args)
|
1419
1431
|
@available_maintenance_versions = args[:available_maintenance_versions] if args.key?(:available_maintenance_versions)
|
1420
1432
|
@backend_type = args[:backend_type] if args.key?(:backend_type)
|
1433
|
+
@clear_network = args[:clear_network] if args.key?(:clear_network)
|
1421
1434
|
@connection_name = args[:connection_name] if args.key?(:connection_name)
|
1422
1435
|
@create_time = args[:create_time] if args.key?(:create_time)
|
1423
1436
|
@current_disk_size = args[:current_disk_size] if args.key?(:current_disk_size)
|
@@ -1444,6 +1457,7 @@ module Google
|
|
1444
1457
|
@nodes = args[:nodes] if args.key?(:nodes)
|
1445
1458
|
@on_premises_configuration = args[:on_premises_configuration] if args.key?(:on_premises_configuration)
|
1446
1459
|
@out_of_disk_report = args[:out_of_disk_report] if args.key?(:out_of_disk_report)
|
1460
|
+
@pitr_fields = args[:pitr_fields] if args.key?(:pitr_fields)
|
1447
1461
|
@primary_dns_name = args[:primary_dns_name] if args.key?(:primary_dns_name)
|
1448
1462
|
@project = args[:project] if args.key?(:project)
|
1449
1463
|
@psc_service_attachment_link = args[:psc_service_attachment_link] if args.key?(:psc_service_attachment_link)
|
@@ -3996,6 +4010,47 @@ module Google
|
|
3996
4010
|
end
|
3997
4011
|
end
|
3998
4012
|
|
4013
|
+
# PITR related fields include enablement settings, archiving settings, and the
|
4014
|
+
# bucket name.
|
4015
|
+
class PitrFields
|
4016
|
+
include Google::Apis::Core::Hashable
|
4017
|
+
|
4018
|
+
# The enablement setting for PITR for MySQL.
|
4019
|
+
# Corresponds to the JSON property `enableBinLog`
|
4020
|
+
# @return [Boolean]
|
4021
|
+
attr_accessor :enable_bin_log
|
4022
|
+
alias_method :enable_bin_log?, :enable_bin_log
|
4023
|
+
|
4024
|
+
# The enablement setting for PITR for PostgreSQL.
|
4025
|
+
# Corresponds to the JSON property `replicationLogArchivingEnabled`
|
4026
|
+
# @return [Boolean]
|
4027
|
+
attr_accessor :replication_log_archiving_enabled
|
4028
|
+
alias_method :replication_log_archiving_enabled?, :replication_log_archiving_enabled
|
4029
|
+
|
4030
|
+
# The enablement setting for PITR for SQL Server.
|
4031
|
+
# Corresponds to the JSON property `sqlserverPitrEnabled`
|
4032
|
+
# @return [Boolean]
|
4033
|
+
attr_accessor :sqlserver_pitr_enabled
|
4034
|
+
alias_method :sqlserver_pitr_enabled?, :sqlserver_pitr_enabled
|
4035
|
+
|
4036
|
+
# The number of transaction log days to retain for PITR
|
4037
|
+
# Corresponds to the JSON property `transactionLogRetentionDays`
|
4038
|
+
# @return [Fixnum]
|
4039
|
+
attr_accessor :transaction_log_retention_days
|
4040
|
+
|
4041
|
+
def initialize(**args)
|
4042
|
+
update!(**args)
|
4043
|
+
end
|
4044
|
+
|
4045
|
+
# Update properties of this object
|
4046
|
+
def update!(**args)
|
4047
|
+
@enable_bin_log = args[:enable_bin_log] if args.key?(:enable_bin_log)
|
4048
|
+
@replication_log_archiving_enabled = args[:replication_log_archiving_enabled] if args.key?(:replication_log_archiving_enabled)
|
4049
|
+
@sqlserver_pitr_enabled = args[:sqlserver_pitr_enabled] if args.key?(:sqlserver_pitr_enabled)
|
4050
|
+
@transaction_log_retention_days = args[:transaction_log_retention_days] if args.key?(:transaction_log_retention_days)
|
4051
|
+
end
|
4052
|
+
end
|
4053
|
+
|
3999
4054
|
# Read-only password status.
|
4000
4055
|
class PasswordStatus
|
4001
4056
|
include Google::Apis::Core::Hashable
|
@@ -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.
|
19
|
+
GEM_VERSION = "0.86.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.18.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
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
|
|
@@ -1073,6 +1079,7 @@ module Google
|
|
1073
1079
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1074
1080
|
collection :available_maintenance_versions, as: 'availableMaintenanceVersions'
|
1075
1081
|
property :backend_type, as: 'backendType'
|
1082
|
+
property :clear_network, as: 'clearNetwork'
|
1076
1083
|
property :connection_name, as: 'connectionName'
|
1077
1084
|
property :create_time, as: 'createTime'
|
1078
1085
|
property :current_disk_size, :numeric_string => true, as: 'currentDiskSize'
|
@@ -1108,6 +1115,8 @@ module Google
|
|
1108
1115
|
|
1109
1116
|
property :out_of_disk_report, as: 'outOfDiskReport', class: Google::Apis::SqladminV1beta4::SqlOutOfDiskReport, decorator: Google::Apis::SqladminV1beta4::SqlOutOfDiskReport::Representation
|
1110
1117
|
|
1118
|
+
property :pitr_fields, as: 'pitrFields', class: Google::Apis::SqladminV1beta4::PitrFields, decorator: Google::Apis::SqladminV1beta4::PitrFields::Representation
|
1119
|
+
|
1111
1120
|
property :primary_dns_name, as: 'primaryDnsName'
|
1112
1121
|
property :project, as: 'project'
|
1113
1122
|
property :psc_service_attachment_link, as: 'pscServiceAttachmentLink'
|
@@ -1814,6 +1823,16 @@ module Google
|
|
1814
1823
|
end
|
1815
1824
|
end
|
1816
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
|
+
|
1817
1836
|
class PasswordStatus
|
1818
1837
|
# @private
|
1819
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_v1beta4
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.86.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_v1beta4/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-sqladmin_v1beta4/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-sqladmin_v1beta4/v0.86.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-sqladmin_v1beta4
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|
@@ -73,7 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
73
73
|
- !ruby/object:Gem::Version
|
74
74
|
version: '0'
|
75
75
|
requirements: []
|
76
|
-
rubygems_version: 3.6.
|
76
|
+
rubygems_version: 3.6.9
|
77
77
|
specification_version: 4
|
78
78
|
summary: Simple REST client for Cloud SQL Admin API V1beta4
|
79
79
|
test_files: []
|