google-apis-sqladmin_v1beta4 0.70.0 → 0.72.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: 14dbf45cab48f97cbc19cb4a3706cf712c124d1718e156d3660a83e783e95800
|
4
|
+
data.tar.gz: 3518e863508019bb587cc104bae75a5952e26e72755ce9fdfcbccf3f213b88ab
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9c88f71073539ae519078f4e4b33e91be5cdec83e31be951f579ff04f7ee99f72a7375ff805b69682d299d9b52577c7b0665086d3b32a7e1cf914bfbf46802d2
|
7
|
+
data.tar.gz: be676052bf1522ebb242c551d1fa31974013dad9872868e21006a575f7dcff3bed42678a350cbe8e69c93b8247c28d82e7f22ceac6d72ef4878f951fa6af0119
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,14 @@
|
|
1
1
|
# Release history for google-apis-sqladmin_v1beta4
|
2
2
|
|
3
|
+
### v0.72.0 (2024-06-16)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20240607
|
6
|
+
|
7
|
+
### v0.71.0 (2024-05-26)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20240521
|
10
|
+
* Regenerated using generator version 0.15.0
|
11
|
+
|
3
12
|
### v0.70.0 (2024-05-05)
|
4
13
|
|
5
14
|
* 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.
|
547
|
-
# the specified
|
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
|
-
#
|
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
|
|
@@ -3545,6 +3604,14 @@ module Google
|
|
3545
3604
|
# @return [String]
|
3546
3605
|
attr_accessor :edition
|
3547
3606
|
|
3607
|
+
# Optional. By default, Cloud SQL instances have schema extraction disabled for
|
3608
|
+
# Dataplex. When this parameter is set to true, schema extraction for Dataplex
|
3609
|
+
# on Cloud SQL instances is activated.
|
3610
|
+
# Corresponds to the JSON property `enableDataplexIntegration`
|
3611
|
+
# @return [Boolean]
|
3612
|
+
attr_accessor :enable_dataplex_integration
|
3613
|
+
alias_method :enable_dataplex_integration?, :enable_dataplex_integration
|
3614
|
+
|
3548
3615
|
# Optional. When this parameter is set to true, Cloud SQL instances can connect
|
3549
3616
|
# to Vertex AI to pass requests for real-time predictions and insights to the AI.
|
3550
3617
|
# The default value is false. This applies only to Cloud SQL for PostgreSQL
|
@@ -3667,6 +3734,7 @@ module Google
|
|
3667
3734
|
@deletion_protection_enabled = args[:deletion_protection_enabled] if args.key?(:deletion_protection_enabled)
|
3668
3735
|
@deny_maintenance_periods = args[:deny_maintenance_periods] if args.key?(:deny_maintenance_periods)
|
3669
3736
|
@edition = args[:edition] if args.key?(:edition)
|
3737
|
+
@enable_dataplex_integration = args[:enable_dataplex_integration] if args.key?(:enable_dataplex_integration)
|
3670
3738
|
@enable_google_ml_integration = args[:enable_google_ml_integration] if args.key?(:enable_google_ml_integration)
|
3671
3739
|
@insights_config = args[:insights_config] if args.key?(:insights_config)
|
3672
3740
|
@ip_configuration = args[:ip_configuration] if args.key?(:ip_configuration)
|
@@ -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.72.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.15.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20240607"
|
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
|
|
@@ -1585,6 +1604,7 @@ module Google
|
|
1585
1604
|
collection :deny_maintenance_periods, as: 'denyMaintenancePeriods', class: Google::Apis::SqladminV1beta4::DenyMaintenancePeriod, decorator: Google::Apis::SqladminV1beta4::DenyMaintenancePeriod::Representation
|
1586
1605
|
|
1587
1606
|
property :edition, as: 'edition'
|
1607
|
+
property :enable_dataplex_integration, as: 'enableDataplexIntegration'
|
1588
1608
|
property :enable_google_ml_integration, as: 'enableGoogleMlIntegration'
|
1589
1609
|
property :insights_config, as: 'insightsConfig', class: Google::Apis::SqladminV1beta4::InsightsConfig, decorator: Google::Apis::SqladminV1beta4::InsightsConfig::Representation
|
1590
1610
|
|
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.
|
4
|
+
version: 0.72.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-
|
11
|
+
date: 2024-06-16 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.
|
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.
|
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.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-sqladmin_v1beta4/v0.72.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: []
|