google-apis-sqladmin_v1 0.44.0 → 0.46.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: 81baeb7feccb658d1920882a158b79e38d5151a0230efd6e474ed89eec63cd32
|
4
|
+
data.tar.gz: 7502bc9d782c9f6447b8c902f9e9896a0adc3f459744b9de26890c71bd74a3dd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 12b5593d05d3b3853132e941f3e44d4e590db0be2c2382c3c99c77988184e70b8848aea643bfb13f5a9fd3debb456814141456dfb14d07be8bc94de98a3ef6ad
|
7
|
+
data.tar.gz: 43bf6b3fe7af14ceed454fffe3e37c91ae2260690b8e80a01b8669ad8dfcc1aad91bd86c256d6ad6319886872ddf65f6dad79238b64dff4c461bb1c95b75f532
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-sqladmin_v1
|
2
2
|
|
3
|
+
### v0.46.0 (2023-11-05)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20231029
|
6
|
+
|
7
|
+
### v0.45.0 (2023-10-22)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20231017
|
10
|
+
|
3
11
|
### v0.44.0 (2023-10-08)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20231004
|
@@ -1043,6 +1043,33 @@ module Google
|
|
1043
1043
|
end
|
1044
1044
|
end
|
1045
1045
|
|
1046
|
+
# This context is used to demote an existing standalone instance to be a Cloud
|
1047
|
+
# SQL read replica for an external database server.
|
1048
|
+
class DemoteContext
|
1049
|
+
include Google::Apis::Core::Hashable
|
1050
|
+
|
1051
|
+
# This is always `sql#demoteContext`.
|
1052
|
+
# Corresponds to the JSON property `kind`
|
1053
|
+
# @return [String]
|
1054
|
+
attr_accessor :kind
|
1055
|
+
|
1056
|
+
# Required. The name of the instance which acts as the on-premises primary
|
1057
|
+
# instance in the replication setup.
|
1058
|
+
# Corresponds to the JSON property `sourceRepresentativeInstanceName`
|
1059
|
+
# @return [String]
|
1060
|
+
attr_accessor :source_representative_instance_name
|
1061
|
+
|
1062
|
+
def initialize(**args)
|
1063
|
+
update!(**args)
|
1064
|
+
end
|
1065
|
+
|
1066
|
+
# Update properties of this object
|
1067
|
+
def update!(**args)
|
1068
|
+
@kind = args[:kind] if args.key?(:kind)
|
1069
|
+
@source_representative_instance_name = args[:source_representative_instance_name] if args.key?(:source_representative_instance_name)
|
1070
|
+
end
|
1071
|
+
end
|
1072
|
+
|
1046
1073
|
# Read-replica configuration for connecting to the on-premises primary instance.
|
1047
1074
|
class DemoteMasterConfiguration
|
1048
1075
|
include Google::Apis::Core::Hashable
|
@@ -1784,14 +1811,17 @@ module Google
|
|
1784
1811
|
attr_accessor :recovery_only
|
1785
1812
|
alias_method :recovery_only?, :recovery_only
|
1786
1813
|
|
1787
|
-
# Optional.
|
1788
|
-
#
|
1814
|
+
# Optional. The timestamp when the import should stop. This timestamp is in the [
|
1815
|
+
# RFC 3339](https://tools.ietf.org/html/rfc3339) format (for example, `2023-10-
|
1816
|
+
# 01T16:19:00.094`). This field is equivalent to the STOPAT keyword and applies
|
1817
|
+
# to Cloud SQL for SQL Server only.
|
1789
1818
|
# Corresponds to the JSON property `stopAt`
|
1790
1819
|
# @return [String]
|
1791
1820
|
attr_accessor :stop_at
|
1792
1821
|
|
1793
|
-
# Optional.
|
1794
|
-
# for SQL Server
|
1822
|
+
# Optional. The marked transaction where the import should stop. This field is
|
1823
|
+
# equivalent to the STOPATMARK keyword and applies to Cloud SQL for SQL Server
|
1824
|
+
# only.
|
1795
1825
|
# Corresponds to the JSON property `stopAtMark`
|
1796
1826
|
# @return [String]
|
1797
1827
|
attr_accessor :stop_at_mark
|
@@ -2030,6 +2060,27 @@ module Google
|
|
2030
2060
|
end
|
2031
2061
|
end
|
2032
2062
|
|
2063
|
+
# This request is used to demote an existing standalone instance to be a Cloud
|
2064
|
+
# SQL read replica for an external database server.
|
2065
|
+
class InstancesDemoteRequest
|
2066
|
+
include Google::Apis::Core::Hashable
|
2067
|
+
|
2068
|
+
# This context is used to demote an existing standalone instance to be a Cloud
|
2069
|
+
# SQL read replica for an external database server.
|
2070
|
+
# Corresponds to the JSON property `demoteContext`
|
2071
|
+
# @return [Google::Apis::SqladminV1::DemoteContext]
|
2072
|
+
attr_accessor :demote_context
|
2073
|
+
|
2074
|
+
def initialize(**args)
|
2075
|
+
update!(**args)
|
2076
|
+
end
|
2077
|
+
|
2078
|
+
# Update properties of this object
|
2079
|
+
def update!(**args)
|
2080
|
+
@demote_context = args[:demote_context] if args.key?(:demote_context)
|
2081
|
+
end
|
2082
|
+
end
|
2083
|
+
|
2033
2084
|
# Database instance export request.
|
2034
2085
|
class InstancesExportRequest
|
2035
2086
|
include Google::Apis::Core::Hashable
|
@@ -2279,33 +2330,31 @@ module Google
|
|
2279
2330
|
# @return [Google::Apis::SqladminV1::PscConfig]
|
2280
2331
|
attr_accessor :psc_config
|
2281
2332
|
|
2282
|
-
#
|
2283
|
-
#
|
2284
|
-
#
|
2285
|
-
#
|
2286
|
-
#
|
2287
|
-
#
|
2288
|
-
# flag
|
2289
|
-
# java/com/google/storage/speckle/boss/admin/actions/InstanceUpdateAction.java:
|
2290
|
-
# update_api_temp_fix)
|
2333
|
+
# Whether SSL/TLS connections over IP are enforced. If set to false, then allow
|
2334
|
+
# both non-SSL/non-TLS and SSL/TLS connections. For SSL/TLS connections, the
|
2335
|
+
# client certificate won't be verified. If set to true, then only allow
|
2336
|
+
# connections encrypted with SSL/TLS and with valid client certificates. If you
|
2337
|
+
# want to enforce SSL/TLS without enforcing the requirement for valid client
|
2338
|
+
# certificates, then use the `ssl_mode` flag instead of the legacy `require_ssl`
|
2339
|
+
# flag.
|
2291
2340
|
# Corresponds to the JSON property `requireSsl`
|
2292
2341
|
# @return [Boolean]
|
2293
2342
|
attr_accessor :require_ssl
|
2294
2343
|
alias_method :require_ssl?, :require_ssl
|
2295
2344
|
|
2296
|
-
# Specify how SSL/TLS
|
2297
|
-
# only
|
2298
|
-
# SSL/TLS in MySQL and SQL Server. But, for PostgreSQL,
|
2299
|
-
#
|
2300
|
-
#
|
2301
|
-
#
|
2302
|
-
# ENCRYPTED_ONLY
|
2303
|
-
# TRUSTED_CLIENT_CERTIFICATE_REQUIRED
|
2304
|
-
# ssl_mode` gets priority over the value of the legacy `require_ssl`.
|
2305
|
-
# example, for the pair `ssl_mode=ENCRYPTED_ONLY, require_ssl=false`, the `
|
2345
|
+
# Specify how SSL/TLS is enforced in database connections. This flag is
|
2346
|
+
# supported only for PostgreSQL. Use the legacy `require_ssl` flag for enforcing
|
2347
|
+
# SSL/TLS in MySQL and SQL Server. But, for PostgreSQL, use the `ssl_mode` flag
|
2348
|
+
# instead of the legacy `require_ssl` flag. To avoid the conflict between those
|
2349
|
+
# flags in PostgreSQL, only the following value pairs are valid: * `ssl_mode=
|
2350
|
+
# ALLOW_UNENCRYPTED_AND_ENCRYPTED` and `require_ssl=false` * `ssl_mode=
|
2351
|
+
# ENCRYPTED_ONLY` and `require_ssl=false` * `ssl_mode=
|
2352
|
+
# TRUSTED_CLIENT_CERTIFICATE_REQUIRED` and `require_ssl=true` Note that the
|
2353
|
+
# value of `ssl_mode` gets priority over the value of the legacy `require_ssl`.
|
2354
|
+
# For example, for the pair `ssl_mode=ENCRYPTED_ONLY, require_ssl=false`, the `
|
2306
2355
|
# ssl_mode=ENCRYPTED_ONLY` means "only accepts SSL connection", while the `
|
2307
2356
|
# require_ssl=false` means "both non-SSL and SSL connections are allowed". The
|
2308
|
-
# database
|
2357
|
+
# database respects `ssl_mode` in this case and only accepts SSL connections.
|
2309
2358
|
# Corresponds to the JSON property `sslMode`
|
2310
2359
|
# @return [String]
|
2311
2360
|
attr_accessor :ssl_mode
|
@@ -2919,13 +2968,6 @@ module Google
|
|
2919
2968
|
# @return [String]
|
2920
2969
|
attr_accessor :complexity
|
2921
2970
|
|
2922
|
-
# Disallow credentials that have been previously compromised by a public data
|
2923
|
-
# breach.
|
2924
|
-
# Corresponds to the JSON property `disallowCompromisedCredentials`
|
2925
|
-
# @return [Boolean]
|
2926
|
-
attr_accessor :disallow_compromised_credentials
|
2927
|
-
alias_method :disallow_compromised_credentials?, :disallow_compromised_credentials
|
2928
|
-
|
2929
2971
|
# Disallow username as a part of the password.
|
2930
2972
|
# Corresponds to the JSON property `disallowUsernameSubstring`
|
2931
2973
|
# @return [Boolean]
|
@@ -2961,7 +3003,6 @@ module Google
|
|
2961
3003
|
# Update properties of this object
|
2962
3004
|
def update!(**args)
|
2963
3005
|
@complexity = args[:complexity] if args.key?(:complexity)
|
2964
|
-
@disallow_compromised_credentials = args[:disallow_compromised_credentials] if args.key?(:disallow_compromised_credentials)
|
2965
3006
|
@disallow_username_substring = args[:disallow_username_substring] if args.key?(:disallow_username_substring)
|
2966
3007
|
@enable_password_policy = args[:enable_password_policy] if args.key?(:enable_password_policy)
|
2967
3008
|
@min_length = args[:min_length] if args.key?(:min_length)
|
@@ -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.
|
19
|
+
GEM_VERSION = "0.46.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.12.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20231029"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -130,6 +130,12 @@ module Google
|
|
130
130
|
include Google::Apis::Core::JsonObjectSupport
|
131
131
|
end
|
132
132
|
|
133
|
+
class DemoteContext
|
134
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
135
|
+
|
136
|
+
include Google::Apis::Core::JsonObjectSupport
|
137
|
+
end
|
138
|
+
|
133
139
|
class DemoteMasterConfiguration
|
134
140
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
135
141
|
|
@@ -280,6 +286,12 @@ module Google
|
|
280
286
|
include Google::Apis::Core::JsonObjectSupport
|
281
287
|
end
|
282
288
|
|
289
|
+
class InstancesDemoteRequest
|
290
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
291
|
+
|
292
|
+
include Google::Apis::Core::JsonObjectSupport
|
293
|
+
end
|
294
|
+
|
283
295
|
class InstancesExportRequest
|
284
296
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
285
297
|
|
@@ -868,6 +880,14 @@ module Google
|
|
868
880
|
end
|
869
881
|
end
|
870
882
|
|
883
|
+
class DemoteContext
|
884
|
+
# @private
|
885
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
886
|
+
property :kind, as: 'kind'
|
887
|
+
property :source_representative_instance_name, as: 'sourceRepresentativeInstanceName'
|
888
|
+
end
|
889
|
+
end
|
890
|
+
|
871
891
|
class DemoteMasterConfiguration
|
872
892
|
# @private
|
873
893
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1125,6 +1145,14 @@ module Google
|
|
1125
1145
|
end
|
1126
1146
|
end
|
1127
1147
|
|
1148
|
+
class InstancesDemoteRequest
|
1149
|
+
# @private
|
1150
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1151
|
+
property :demote_context, as: 'demoteContext', class: Google::Apis::SqladminV1::DemoteContext, decorator: Google::Apis::SqladminV1::DemoteContext::Representation
|
1152
|
+
|
1153
|
+
end
|
1154
|
+
end
|
1155
|
+
|
1128
1156
|
class InstancesExportRequest
|
1129
1157
|
# @private
|
1130
1158
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1368,7 +1396,6 @@ module Google
|
|
1368
1396
|
# @private
|
1369
1397
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1370
1398
|
property :complexity, as: 'complexity'
|
1371
|
-
property :disallow_compromised_credentials, as: 'disallowCompromisedCredentials'
|
1372
1399
|
property :disallow_username_substring, as: 'disallowUsernameSubstring'
|
1373
1400
|
property :enable_password_policy, as: 'enablePasswordPolicy'
|
1374
1401
|
property :min_length, as: 'minLength'
|
@@ -637,6 +637,43 @@ module Google
|
|
637
637
|
execute_or_queue_command(command, &block)
|
638
638
|
end
|
639
639
|
|
640
|
+
# Demotes an existing standalone instance to be a Cloud SQL read replica for an
|
641
|
+
# external database server.
|
642
|
+
# @param [String] project
|
643
|
+
# Required. ID of the project that contains the instance.
|
644
|
+
# @param [String] instance
|
645
|
+
# Required. Cloud SQL instance name.
|
646
|
+
# @param [Google::Apis::SqladminV1::InstancesDemoteRequest] instances_demote_request_object
|
647
|
+
# @param [String] fields
|
648
|
+
# Selector specifying which fields to include in a partial response.
|
649
|
+
# @param [String] quota_user
|
650
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
651
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
652
|
+
# @param [Google::Apis::RequestOptions] options
|
653
|
+
# Request-specific options
|
654
|
+
#
|
655
|
+
# @yield [result, err] Result & error if block supplied
|
656
|
+
# @yieldparam result [Google::Apis::SqladminV1::Operation] parsed result object
|
657
|
+
# @yieldparam err [StandardError] error object if request failed
|
658
|
+
#
|
659
|
+
# @return [Google::Apis::SqladminV1::Operation]
|
660
|
+
#
|
661
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
662
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
663
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
664
|
+
def demote_instance(project, instance, instances_demote_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
665
|
+
command = make_simple_command(:post, 'v1/projects/{project}/instances/{instance}/demote', options)
|
666
|
+
command.request_representation = Google::Apis::SqladminV1::InstancesDemoteRequest::Representation
|
667
|
+
command.request_object = instances_demote_request_object
|
668
|
+
command.response_representation = Google::Apis::SqladminV1::Operation::Representation
|
669
|
+
command.response_class = Google::Apis::SqladminV1::Operation
|
670
|
+
command.params['project'] = project unless project.nil?
|
671
|
+
command.params['instance'] = instance unless instance.nil?
|
672
|
+
command.query['fields'] = fields unless fields.nil?
|
673
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
674
|
+
execute_or_queue_command(command, &block)
|
675
|
+
end
|
676
|
+
|
640
677
|
# Demotes the stand-alone instance to be a Cloud SQL read replica for an
|
641
678
|
# external database server.
|
642
679
|
# @param [String] project
|
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.
|
4
|
+
version: 0.46.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: 2023-
|
11
|
+
date: 2023-11-05 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.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-sqladmin_v1/v0.46.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: []
|