google-apis-sqladmin_v1beta4 0.91.0 → 0.92.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: c87af8740afd85edd9be7e9b96f56ed90a29ffcc8cc378d85a8bf4b22ca9bafe
|
4
|
+
data.tar.gz: f487b4a6492fe4fb10e9ef900e53f602398ad0f773ad29c1affbe4f15eb71d87
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 94c29701f761b19145b6751ec2abdb7ab470dbace10678644ca2c2a47325859f071e3573094895ea27863ebfffa8d82062c379f93f8efce815d5a187e7afb1f8
|
7
|
+
data.tar.gz: b4ebe5f9dc490d5ad8b9547f25adedf0aab1f9276b8f3498fc60a1f28696273ee4369ce296fe3b3399d3b1d097da446a5ca937b61a7c4ae5e4431392e8f3dcf3
|
data/CHANGELOG.md
CHANGED
@@ -1880,8 +1880,9 @@ module Google
|
|
1880
1880
|
# @return [String]
|
1881
1881
|
attr_accessor :database
|
1882
1882
|
|
1883
|
-
# Optional. Controls how the API should respond when the SQL execution result
|
1884
|
-
#
|
1883
|
+
# Optional. Controls how the API should respond when the SQL execution result is
|
1884
|
+
# incomplete due to the size limit or another error. The default mode is to
|
1885
|
+
# throw an error.
|
1885
1886
|
# Corresponds to the JSON property `partialResultMode`
|
1886
1887
|
# @return [String]
|
1887
1888
|
attr_accessor :partial_result_mode
|
@@ -4602,7 +4603,8 @@ module Google
|
|
4602
4603
|
# @return [String]
|
4603
4604
|
attr_accessor :message
|
4604
4605
|
|
4605
|
-
# Set to true if the SQL execution's result is truncated due to size limits
|
4606
|
+
# Set to true if the SQL execution's result is truncated due to size limits or
|
4607
|
+
# an error retrieving results.
|
4606
4608
|
# Corresponds to the JSON property `partialResult`
|
4607
4609
|
# @return [Boolean]
|
4608
4610
|
attr_accessor :partial_result
|
@@ -4613,6 +4615,16 @@ module Google
|
|
4613
4615
|
# @return [Array<Google::Apis::SqladminV1beta4::Row>]
|
4614
4616
|
attr_accessor :rows
|
4615
4617
|
|
4618
|
+
# The `Status` type defines a logical error model that is suitable for different
|
4619
|
+
# programming environments, including REST APIs and RPC APIs. It is used by [
|
4620
|
+
# gRPC](https://github.com/grpc). Each `Status` message contains three pieces of
|
4621
|
+
# data: error code, error message, and error details. You can find out more
|
4622
|
+
# about this error model and how to work with it in the [API Design Guide](https:
|
4623
|
+
# //cloud.google.com/apis/design/errors).
|
4624
|
+
# Corresponds to the JSON property `status`
|
4625
|
+
# @return [Google::Apis::SqladminV1beta4::Status]
|
4626
|
+
attr_accessor :status
|
4627
|
+
|
4616
4628
|
def initialize(**args)
|
4617
4629
|
update!(**args)
|
4618
4630
|
end
|
@@ -4623,6 +4635,7 @@ module Google
|
|
4623
4635
|
@message = args[:message] if args.key?(:message)
|
4624
4636
|
@partial_result = args[:partial_result] if args.key?(:partial_result)
|
4625
4637
|
@rows = args[:rows] if args.key?(:rows)
|
4638
|
+
@status = args[:status] if args.key?(:status)
|
4626
4639
|
end
|
4627
4640
|
end
|
4628
4641
|
|
@@ -4961,6 +4974,14 @@ module Google
|
|
4961
4974
|
# @return [Array<String>]
|
4962
4975
|
attr_accessor :authorized_gae_applications
|
4963
4976
|
|
4977
|
+
# Optional. Cloud SQL for MySQL auto-upgrade configuration. When this parameter
|
4978
|
+
# is set to true, auto-upgrade is enabled for MySQL 8.0 minor versions. The
|
4979
|
+
# MySQL version must be 8.0.35 or higher.
|
4980
|
+
# Corresponds to the JSON property `autoUpgradeEnabled`
|
4981
|
+
# @return [Boolean]
|
4982
|
+
attr_accessor :auto_upgrade_enabled
|
4983
|
+
alias_method :auto_upgrade_enabled?, :auto_upgrade_enabled
|
4984
|
+
|
4964
4985
|
# Availability type. Potential values: * `ZONAL`: The instance serves data from
|
4965
4986
|
# only one zone. Outages in that zone affect data accessibility. * `REGIONAL`:
|
4966
4987
|
# The instance can serve data from more than one zone in a region (it is highly
|
@@ -5202,6 +5223,7 @@ module Google
|
|
5202
5223
|
@active_directory_config = args[:active_directory_config] if args.key?(:active_directory_config)
|
5203
5224
|
@advanced_machine_features = args[:advanced_machine_features] if args.key?(:advanced_machine_features)
|
5204
5225
|
@authorized_gae_applications = args[:authorized_gae_applications] if args.key?(:authorized_gae_applications)
|
5226
|
+
@auto_upgrade_enabled = args[:auto_upgrade_enabled] if args.key?(:auto_upgrade_enabled)
|
5205
5227
|
@availability_type = args[:availability_type] if args.key?(:availability_type)
|
5206
5228
|
@backup_configuration = args[:backup_configuration] if args.key?(:backup_configuration)
|
5207
5229
|
@collation = args[:collation] if args.key?(:collation)
|
@@ -5367,6 +5389,16 @@ module Google
|
|
5367
5389
|
# @return [Array<Google::Apis::SqladminV1beta4::QueryResult>]
|
5368
5390
|
attr_accessor :results
|
5369
5391
|
|
5392
|
+
# The `Status` type defines a logical error model that is suitable for different
|
5393
|
+
# programming environments, including REST APIs and RPC APIs. It is used by [
|
5394
|
+
# gRPC](https://github.com/grpc). Each `Status` message contains three pieces of
|
5395
|
+
# data: error code, error message, and error details. You can find out more
|
5396
|
+
# about this error model and how to work with it in the [API Design Guide](https:
|
5397
|
+
# //cloud.google.com/apis/design/errors).
|
5398
|
+
# Corresponds to the JSON property `status`
|
5399
|
+
# @return [Google::Apis::SqladminV1beta4::Status]
|
5400
|
+
attr_accessor :status
|
5401
|
+
|
5370
5402
|
def initialize(**args)
|
5371
5403
|
update!(**args)
|
5372
5404
|
end
|
@@ -5376,6 +5408,7 @@ module Google
|
|
5376
5408
|
@messages = args[:messages] if args.key?(:messages)
|
5377
5409
|
@metadata = args[:metadata] if args.key?(:metadata)
|
5378
5410
|
@results = args[:results] if args.key?(:results)
|
5411
|
+
@status = args[:status] if args.key?(:status)
|
5379
5412
|
end
|
5380
5413
|
end
|
5381
5414
|
|
@@ -6019,6 +6052,45 @@ module Google
|
|
6019
6052
|
end
|
6020
6053
|
end
|
6021
6054
|
|
6055
|
+
# The `Status` type defines a logical error model that is suitable for different
|
6056
|
+
# programming environments, including REST APIs and RPC APIs. It is used by [
|
6057
|
+
# gRPC](https://github.com/grpc). Each `Status` message contains three pieces of
|
6058
|
+
# data: error code, error message, and error details. You can find out more
|
6059
|
+
# about this error model and how to work with it in the [API Design Guide](https:
|
6060
|
+
# //cloud.google.com/apis/design/errors).
|
6061
|
+
class Status
|
6062
|
+
include Google::Apis::Core::Hashable
|
6063
|
+
|
6064
|
+
# The status code, which should be an enum value of google.rpc.Code.
|
6065
|
+
# Corresponds to the JSON property `code`
|
6066
|
+
# @return [Fixnum]
|
6067
|
+
attr_accessor :code
|
6068
|
+
|
6069
|
+
# A list of messages that carry the error details. There is a common set of
|
6070
|
+
# message types for APIs to use.
|
6071
|
+
# Corresponds to the JSON property `details`
|
6072
|
+
# @return [Array<Hash<String,Object>>]
|
6073
|
+
attr_accessor :details
|
6074
|
+
|
6075
|
+
# A developer-facing error message, which should be in English. Any user-facing
|
6076
|
+
# error message should be localized and sent in the google.rpc.Status.details
|
6077
|
+
# field, or localized by the client.
|
6078
|
+
# Corresponds to the JSON property `message`
|
6079
|
+
# @return [String]
|
6080
|
+
attr_accessor :message
|
6081
|
+
|
6082
|
+
def initialize(**args)
|
6083
|
+
update!(**args)
|
6084
|
+
end
|
6085
|
+
|
6086
|
+
# Update properties of this object
|
6087
|
+
def update!(**args)
|
6088
|
+
@code = args[:code] if args.key?(:code)
|
6089
|
+
@details = args[:details] if args.key?(:details)
|
6090
|
+
@message = args[:message] if args.key?(:message)
|
6091
|
+
end
|
6092
|
+
end
|
6093
|
+
|
6022
6094
|
# Initial sync flags for certain Cloud SQL APIs. Currently used for the MySQL
|
6023
6095
|
# external server initial dump.
|
6024
6096
|
class SyncFlags
|
@@ -6189,6 +6261,12 @@ module Google
|
|
6189
6261
|
# @return [String]
|
6190
6262
|
attr_accessor :host
|
6191
6263
|
|
6264
|
+
# Optional. The full email for an IAM user. For normal database users, this will
|
6265
|
+
# not be filled. Only applicable to MySQL database users.
|
6266
|
+
# Corresponds to the JSON property `iamEmail`
|
6267
|
+
# @return [String]
|
6268
|
+
attr_accessor :iam_email
|
6269
|
+
|
6192
6270
|
# Indicates if a group is active or inactive for IAM database authentication.
|
6193
6271
|
# Corresponds to the JSON property `iamStatus`
|
6194
6272
|
# @return [String]
|
@@ -6248,6 +6326,7 @@ module Google
|
|
6248
6326
|
@dual_password_type = args[:dual_password_type] if args.key?(:dual_password_type)
|
6249
6327
|
@etag = args[:etag] if args.key?(:etag)
|
6250
6328
|
@host = args[:host] if args.key?(:host)
|
6329
|
+
@iam_email = args[:iam_email] if args.key?(:iam_email)
|
6251
6330
|
@iam_status = args[:iam_status] if args.key?(:iam_status)
|
6252
6331
|
@instance = args[:instance] if args.key?(:instance)
|
6253
6332
|
@kind = args[:kind] if args.key?(:kind)
|
@@ -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.92.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 = "
|
25
|
+
REVISION = "20251006"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -832,6 +832,12 @@ module Google
|
|
832
832
|
include Google::Apis::Core::JsonObjectSupport
|
833
833
|
end
|
834
834
|
|
835
|
+
class Status
|
836
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
837
|
+
|
838
|
+
include Google::Apis::Core::JsonObjectSupport
|
839
|
+
end
|
840
|
+
|
835
841
|
class SyncFlags
|
836
842
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
837
843
|
|
@@ -2060,6 +2066,8 @@ module Google
|
|
2060
2066
|
property :partial_result, as: 'partialResult'
|
2061
2067
|
collection :rows, as: 'rows', class: Google::Apis::SqladminV1beta4::Row, decorator: Google::Apis::SqladminV1beta4::Row::Representation
|
2062
2068
|
|
2069
|
+
property :status, as: 'status', class: Google::Apis::SqladminV1beta4::Status, decorator: Google::Apis::SqladminV1beta4::Status::Representation
|
2070
|
+
|
2063
2071
|
end
|
2064
2072
|
end
|
2065
2073
|
|
@@ -2155,6 +2163,7 @@ module Google
|
|
2155
2163
|
property :advanced_machine_features, as: 'advancedMachineFeatures', class: Google::Apis::SqladminV1beta4::AdvancedMachineFeatures, decorator: Google::Apis::SqladminV1beta4::AdvancedMachineFeatures::Representation
|
2156
2164
|
|
2157
2165
|
collection :authorized_gae_applications, as: 'authorizedGaeApplications'
|
2166
|
+
property :auto_upgrade_enabled, as: 'autoUpgradeEnabled'
|
2158
2167
|
property :availability_type, as: 'availabilityType'
|
2159
2168
|
property :backup_configuration, as: 'backupConfiguration', class: Google::Apis::SqladminV1beta4::BackupConfiguration, decorator: Google::Apis::SqladminV1beta4::BackupConfiguration::Representation
|
2160
2169
|
|
@@ -2245,6 +2254,8 @@ module Google
|
|
2245
2254
|
|
2246
2255
|
collection :results, as: 'results', class: Google::Apis::SqladminV1beta4::QueryResult, decorator: Google::Apis::SqladminV1beta4::QueryResult::Representation
|
2247
2256
|
|
2257
|
+
property :status, as: 'status', class: Google::Apis::SqladminV1beta4::Status, decorator: Google::Apis::SqladminV1beta4::Status::Representation
|
2258
|
+
|
2248
2259
|
end
|
2249
2260
|
end
|
2250
2261
|
|
@@ -2438,6 +2449,15 @@ module Google
|
|
2438
2449
|
end
|
2439
2450
|
end
|
2440
2451
|
|
2452
|
+
class Status
|
2453
|
+
# @private
|
2454
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2455
|
+
property :code, as: 'code'
|
2456
|
+
collection :details, as: 'details'
|
2457
|
+
property :message, as: 'message'
|
2458
|
+
end
|
2459
|
+
end
|
2460
|
+
|
2441
2461
|
class SyncFlags
|
2442
2462
|
# @private
|
2443
2463
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2488,6 +2508,7 @@ module Google
|
|
2488
2508
|
property :dual_password_type, as: 'dualPasswordType'
|
2489
2509
|
property :etag, as: 'etag'
|
2490
2510
|
property :host, as: 'host'
|
2511
|
+
property :iam_email, as: 'iamEmail'
|
2491
2512
|
property :iam_status, as: 'iamStatus'
|
2492
2513
|
property :instance, as: 'instance'
|
2493
2514
|
property :kind, as: 'kind'
|
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.92.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.92.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:
|