google-apis-sqladmin_v1beta4 0.1.0 → 0.2.0
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 74776b4aad07d4d393ff13623832fcc47f98a5051282c0567f9a9bd0fe88faed
|
4
|
+
data.tar.gz: c83f443000d6db640182ec6cc5cfe0f409b308a62abbe9405441163250be566d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6d0ee6611ac1937ca76cffe730eb458adfe6c59ab3ed6dc0399a5d7ab6744220ca06a8db3f67f9fe0b33ae64289d961cbb9083ba88b72189e7aeb1fc6dcfe171
|
7
|
+
data.tar.gz: 5ae4ae3569e1c1444c0798d4903529d92a95292fe5cdaa56a34ec00eb9dd0d2f76d5f71cd9755e867bfa1b420b602ad56afd85f15d14d8ef0b7a1ac517b46340
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,10 @@
|
|
1
1
|
# Release history for google-apis-sqladmin_v1beta4
|
2
2
|
|
3
|
+
### v0.2.0 (2021-01-27)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20210119
|
6
|
+
* Regenerated using generator version 0.1.2
|
7
|
+
|
3
8
|
### v0.1.0 (2021-01-07)
|
4
9
|
|
5
10
|
* Regenerated using generator version 0.1.1
|
@@ -29,7 +29,7 @@ module Google
|
|
29
29
|
# This is NOT the gem version.
|
30
30
|
VERSION = 'V1beta4'
|
31
31
|
|
32
|
-
#
|
32
|
+
# See, edit, configure, and delete your Google Cloud Platform data
|
33
33
|
AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform'
|
34
34
|
|
35
35
|
# Manage your Google SQL Service instances
|
@@ -74,6 +74,11 @@ module Google
|
|
74
74
|
# @return [String]
|
75
75
|
attr_accessor :message
|
76
76
|
|
77
|
+
# The region name for REGION_UNREACHABLE warning.
|
78
|
+
# Corresponds to the JSON property `region`
|
79
|
+
# @return [String]
|
80
|
+
attr_accessor :region
|
81
|
+
|
77
82
|
def initialize(**args)
|
78
83
|
update!(**args)
|
79
84
|
end
|
@@ -82,6 +87,7 @@ module Google
|
|
82
87
|
def update!(**args)
|
83
88
|
@code = args[:code] if args.key?(:code)
|
84
89
|
@message = args[:message] if args.key?(:message)
|
90
|
+
@region = args[:region] if args.key?(:region)
|
85
91
|
end
|
86
92
|
end
|
87
93
|
|
@@ -291,7 +297,8 @@ module Google
|
|
291
297
|
# @return [String]
|
292
298
|
attr_accessor :status
|
293
299
|
|
294
|
-
# The type of this run; can be either "AUTOMATED" or "ON_DEMAND".
|
300
|
+
# The type of this run; can be either "AUTOMATED" or "ON_DEMAND". This field
|
301
|
+
# defaults to "ON_DEMAND" and is ignored, when specified for insert requests.
|
295
302
|
# Corresponds to the JSON property `type`
|
296
303
|
# @return [String]
|
297
304
|
attr_accessor :type
|
@@ -709,12 +716,12 @@ module Google
|
|
709
716
|
|
710
717
|
# The current serving state of the Cloud SQL instance. This can be one of the
|
711
718
|
# following. *SQL_INSTANCE_STATE_UNSPECIFIED*: The state of the instance is
|
712
|
-
# unknown. *RUNNABLE*: The instance has been stopped by owner.
|
713
|
-
#
|
714
|
-
#
|
715
|
-
#
|
716
|
-
#
|
717
|
-
#
|
719
|
+
# unknown. *RUNNABLE*: The instance is running, or has been stopped by owner. *
|
720
|
+
# SUSPENDED*: The instance is not available, for example due to problems with
|
721
|
+
# billing. for example due to problems with billing. *PENDING_DELETE*: The
|
722
|
+
# instance is being deleted. *PENDING_CREATE*: The instance is being created. *
|
723
|
+
# MAINTENANCE*: The instance is down for maintenance. *FAILED*: The instance
|
724
|
+
# creation failed.
|
718
725
|
# Corresponds to the JSON property `state`
|
719
726
|
# @return [String]
|
720
727
|
attr_accessor :state
|
@@ -2828,6 +2835,11 @@ module Google
|
|
2828
2835
|
class SslCertsCreateEphemeralRequest
|
2829
2836
|
include Google::Apis::Core::Hashable
|
2830
2837
|
|
2838
|
+
# Access token to include in the signed certificate.
|
2839
|
+
# Corresponds to the JSON property `access_token`
|
2840
|
+
# @return [String]
|
2841
|
+
attr_accessor :access_token
|
2842
|
+
|
2831
2843
|
# PEM encoded public key to include in the signed certificate.
|
2832
2844
|
# Corresponds to the JSON property `public_key`
|
2833
2845
|
# @return [String]
|
@@ -2839,6 +2851,7 @@ module Google
|
|
2839
2851
|
|
2840
2852
|
# Update properties of this object
|
2841
2853
|
def update!(**args)
|
2854
|
+
@access_token = args[:access_token] if args.key?(:access_token)
|
2842
2855
|
@public_key = args[:public_key] if args.key?(:public_key)
|
2843
2856
|
end
|
2844
2857
|
end
|
@@ -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.2.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.1.
|
22
|
+
GENERATOR_VERSION = "0.1.2"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20210119"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -487,6 +487,7 @@ module Google
|
|
487
487
|
class Representation < Google::Apis::Core::JsonRepresentation
|
488
488
|
property :code, as: 'code'
|
489
489
|
property :message, as: 'message'
|
490
|
+
property :region, as: 'region'
|
490
491
|
end
|
491
492
|
end
|
492
493
|
|
@@ -1215,6 +1216,7 @@ module Google
|
|
1215
1216
|
class SslCertsCreateEphemeralRequest
|
1216
1217
|
# @private
|
1217
1218
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1219
|
+
property :access_token, as: 'access_token'
|
1218
1220
|
property :public_key, as: 'public_key'
|
1219
1221
|
end
|
1220
1222
|
end
|
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.2.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: 2021-
|
11
|
+
date: 2021-02-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -52,7 +52,7 @@ licenses:
|
|
52
52
|
metadata:
|
53
53
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
54
54
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-sqladmin_v1beta4/CHANGELOG.md
|
55
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-sqladmin_v1beta4/v0.
|
55
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-sqladmin_v1beta4/v0.2.0
|
56
56
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-sqladmin_v1beta4
|
57
57
|
post_install_message:
|
58
58
|
rdoc_options: []
|
@@ -69,7 +69,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
69
69
|
- !ruby/object:Gem::Version
|
70
70
|
version: '0'
|
71
71
|
requirements: []
|
72
|
-
rubygems_version: 3.
|
72
|
+
rubygems_version: 3.2.6
|
73
73
|
signing_key:
|
74
74
|
specification_version: 4
|
75
75
|
summary: Simple REST client for Cloud SQL Admin API V1beta4
|