google-apis-sqladmin_v1 0.32.0 → 0.33.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/OVERVIEW.md +3 -3
- data/lib/google/apis/sqladmin_v1/classes.rb +59 -0
- data/lib/google/apis/sqladmin_v1/gem_version.rb +2 -2
- data/lib/google/apis/sqladmin_v1/representations.rb +19 -0
- data/lib/google/apis/sqladmin_v1/service.rb +1 -1
- data/lib/google/apis/sqladmin_v1.rb +2 -2
- metadata +6 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b6217e98dd60c7eadb079e56f159fdf837a918546071accc4a3ba81c2c4f0402
|
4
|
+
data.tar.gz: 3af80e7b2c1e1b83ccb745eddd4ea3be33907c26e0dc115413edc29054503936
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a55d48b204fb7eca325612eb9e210da4dce35bf962e53225a79456288b2cf90ed7b4e4ab82abce4cd9abe88427d1d0f35497b9263a516aaac6b0de135cb29720
|
7
|
+
data.tar.gz: b17f6b366644f98ec73fcec2057b1f6c3c9c3260ea3d426e60a829ccd20d3abaaf98ac9aa6c0ca2e8b38fec4e47201ac42bfb70fd8f3e7ee78b7680ea452a210
|
data/CHANGELOG.md
CHANGED
data/OVERVIEW.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
|
-
# Simple REST client for version V1 of the
|
1
|
+
# Simple REST client for version V1 of the sqladmin API (prod)
|
2
2
|
|
3
|
-
This is a simple client library for version V1 of the
|
3
|
+
This is a simple client library for version V1 of the sqladmin API (prod). It provides:
|
4
4
|
|
5
5
|
* A client object that connects to the HTTP/JSON REST endpoint for the service.
|
6
6
|
* Ruby objects for data structures related to the service.
|
@@ -65,7 +65,7 @@ More detailed descriptions of the Google simple REST clients are available in tw
|
|
65
65
|
|
66
66
|
(Note: the above documents are written for the simple REST clients in general, and their examples may not reflect the Sqladmin service in particular.)
|
67
67
|
|
68
|
-
For reference information on specific calls in the
|
68
|
+
For reference information on specific calls in the sqladmin API (prod), see the {Google::Apis::SqladminV1::SQLAdminService class reference docs}.
|
69
69
|
|
70
70
|
## Which client should I use?
|
71
71
|
|
@@ -2557,6 +2557,65 @@ module Google
|
|
2557
2557
|
end
|
2558
2558
|
end
|
2559
2559
|
|
2560
|
+
# Represents the metadata of the long-running operation.
|
2561
|
+
class OperationMetadata
|
2562
|
+
include Google::Apis::Core::Hashable
|
2563
|
+
|
2564
|
+
# Output only. API version used to start the operation.
|
2565
|
+
# Corresponds to the JSON property `apiVersion`
|
2566
|
+
# @return [String]
|
2567
|
+
attr_accessor :api_version
|
2568
|
+
|
2569
|
+
# Output only. Identifies whether the user has requested cancellation of the
|
2570
|
+
# operation. Operations that have been cancelled successfully have Operation.
|
2571
|
+
# error value with a google.rpc.Status.code of 1, corresponding to `Code.
|
2572
|
+
# CANCELLED`.
|
2573
|
+
# Corresponds to the JSON property `cancelRequested`
|
2574
|
+
# @return [Boolean]
|
2575
|
+
attr_accessor :cancel_requested
|
2576
|
+
alias_method :cancel_requested?, :cancel_requested
|
2577
|
+
|
2578
|
+
# Output only. The time the operation was created.
|
2579
|
+
# Corresponds to the JSON property `createTime`
|
2580
|
+
# @return [String]
|
2581
|
+
attr_accessor :create_time
|
2582
|
+
|
2583
|
+
# Output only. The time the operation finished running.
|
2584
|
+
# Corresponds to the JSON property `endTime`
|
2585
|
+
# @return [String]
|
2586
|
+
attr_accessor :end_time
|
2587
|
+
|
2588
|
+
# Output only. Human-readable status of the operation, if any.
|
2589
|
+
# Corresponds to the JSON property `statusDetail`
|
2590
|
+
# @return [String]
|
2591
|
+
attr_accessor :status_detail
|
2592
|
+
|
2593
|
+
# Output only. Server-defined resource path for the target of the operation.
|
2594
|
+
# Corresponds to the JSON property `target`
|
2595
|
+
# @return [String]
|
2596
|
+
attr_accessor :target
|
2597
|
+
|
2598
|
+
# Output only. Name of the verb executed by the operation.
|
2599
|
+
# Corresponds to the JSON property `verb`
|
2600
|
+
# @return [String]
|
2601
|
+
attr_accessor :verb
|
2602
|
+
|
2603
|
+
def initialize(**args)
|
2604
|
+
update!(**args)
|
2605
|
+
end
|
2606
|
+
|
2607
|
+
# Update properties of this object
|
2608
|
+
def update!(**args)
|
2609
|
+
@api_version = args[:api_version] if args.key?(:api_version)
|
2610
|
+
@cancel_requested = args[:cancel_requested] if args.key?(:cancel_requested)
|
2611
|
+
@create_time = args[:create_time] if args.key?(:create_time)
|
2612
|
+
@end_time = args[:end_time] if args.key?(:end_time)
|
2613
|
+
@status_detail = args[:status_detail] if args.key?(:status_detail)
|
2614
|
+
@target = args[:target] if args.key?(:target)
|
2615
|
+
@verb = args[:verb] if args.key?(:verb)
|
2616
|
+
end
|
2617
|
+
end
|
2618
|
+
|
2560
2619
|
# Operations list response.
|
2561
2620
|
class OperationsListResponse
|
2562
2621
|
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.
|
19
|
+
GEM_VERSION = "0.33.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 = "20230226"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -364,6 +364,12 @@ module Google
|
|
364
364
|
include Google::Apis::Core::JsonObjectSupport
|
365
365
|
end
|
366
366
|
|
367
|
+
class OperationMetadata
|
368
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
369
|
+
|
370
|
+
include Google::Apis::Core::JsonObjectSupport
|
371
|
+
end
|
372
|
+
|
367
373
|
class OperationsListResponse
|
368
374
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
369
375
|
|
@@ -1213,6 +1219,19 @@ module Google
|
|
1213
1219
|
end
|
1214
1220
|
end
|
1215
1221
|
|
1222
|
+
class OperationMetadata
|
1223
|
+
# @private
|
1224
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1225
|
+
property :api_version, as: 'apiVersion'
|
1226
|
+
property :cancel_requested, as: 'cancelRequested'
|
1227
|
+
property :create_time, as: 'createTime'
|
1228
|
+
property :end_time, as: 'endTime'
|
1229
|
+
property :status_detail, as: 'statusDetail'
|
1230
|
+
property :target, as: 'target'
|
1231
|
+
property :verb, as: 'verb'
|
1232
|
+
end
|
1233
|
+
end
|
1234
|
+
|
1216
1235
|
class OperationsListResponse
|
1217
1236
|
# @private
|
1218
1237
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -19,13 +19,13 @@ require 'google/apis/sqladmin_v1/gem_version.rb'
|
|
19
19
|
|
20
20
|
module Google
|
21
21
|
module Apis
|
22
|
-
#
|
22
|
+
# sqladmin API (prod)
|
23
23
|
#
|
24
24
|
# API for Cloud SQL database instance management
|
25
25
|
#
|
26
26
|
# @see https://developers.google.com/cloud-sql/
|
27
27
|
module SqladminV1
|
28
|
-
# Version of the
|
28
|
+
# Version of the sqladmin API (prod) this client connects to.
|
29
29
|
# This is NOT the gem version.
|
30
30
|
VERSION = 'V1'
|
31
31
|
|
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.33.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-03-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -30,12 +30,12 @@ dependencies:
|
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: 2.a
|
33
|
-
description: This is the simple REST client for
|
33
|
+
description: This is the simple REST client for sqladmin API (prod) V1. Simple REST
|
34
34
|
clients are Ruby client libraries that provide access to Google services via their
|
35
35
|
HTTP REST API endpoints. These libraries are generated and updated automatically
|
36
36
|
based on the discovery documents published by the service, and they handle most
|
37
37
|
concerns such as authentication, pagination, retry, timeouts, and logging. You can
|
38
|
-
use this client to access the
|
38
|
+
use this client to access the sqladmin API (prod), but note that some services may
|
39
39
|
provide a separate modern client that is easier to use.
|
40
40
|
email: googleapis-packages@google.com
|
41
41
|
executables: []
|
@@ -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.33.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: []
|
@@ -78,5 +78,5 @@ requirements: []
|
|
78
78
|
rubygems_version: 3.4.2
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
|
-
summary: Simple REST client for
|
81
|
+
summary: Simple REST client for sqladmin API (prod) V1
|
82
82
|
test_files: []
|