google-apis-gkehub_v1alpha2 0.4.0 → 0.8.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 +4 -4
- data/CHANGELOG.md +16 -0
- data/OVERVIEW.md +3 -3
- data/lib/google/apis/gkehub_v1alpha2.rb +3 -3
- data/lib/google/apis/gkehub_v1alpha2/classes.rb +10 -2
- data/lib/google/apis/gkehub_v1alpha2/gem_version.rb +3 -3
- data/lib/google/apis/gkehub_v1alpha2/representations.rb +1 -0
- data/lib/google/apis/gkehub_v1alpha2/service.rb +1 -1
- metadata +13 -13
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 784953aa9e75a74738ffa1968042a6452e8fa23d0e51765ca24a3be6e1869cf2
|
4
|
+
data.tar.gz: c23e0391df648f00db2c78c07ff61514d428e4e29db5437da7e11168769a5d79
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1ccfc9e09301a39899ca7e59d796811bf9c16248797b5896441d704179a0aaa2fbc76fce9ba1aea554506a5c84343e448cb9292e463336d3b6d1d0e69c69ae8f
|
7
|
+
data.tar.gz: 5ae015a0d0c0b5c94dae2c973707df3398ba563eb8b87e16539e371e0a6f70c4657f360fa1933e848e45137ae0777698a040f9cc6f98b8d3af5280842c78efac
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,21 @@
|
|
1
1
|
# Release history for google-apis-gkehub_v1alpha2
|
2
2
|
|
3
|
+
### v0.8.0 (2021-08-21)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20210813
|
6
|
+
|
7
|
+
### v0.7.0 (2021-08-04)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20210729
|
10
|
+
|
11
|
+
### v0.6.0 (2021-07-14)
|
12
|
+
|
13
|
+
* Regenerated from discovery document revision 20210709
|
14
|
+
|
15
|
+
### v0.5.0 (2021-06-29)
|
16
|
+
|
17
|
+
* Regenerated using generator version 0.4.0
|
18
|
+
|
3
19
|
### v0.4.0 (2021-06-24)
|
4
20
|
|
5
21
|
* Regenerated using generator version 0.3.0
|
data/OVERVIEW.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
|
-
# Simple REST client for version V1alpha2 of the GKE Hub
|
1
|
+
# Simple REST client for version V1alpha2 of the GKE Hub API
|
2
2
|
|
3
|
-
This is a simple client library for version V1alpha2 of the GKE Hub. It provides:
|
3
|
+
This is a simple client library for version V1alpha2 of the GKE Hub API. 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 Gkehub service in particular.)
|
67
67
|
|
68
|
-
For reference information on specific calls in the GKE Hub, see the {Google::Apis::GkehubV1alpha2::GKEHubService class reference docs}.
|
68
|
+
For reference information on specific calls in the GKE Hub API, see the {Google::Apis::GkehubV1alpha2::GKEHubService class reference docs}.
|
69
69
|
|
70
70
|
## Which client should I use?
|
71
71
|
|
@@ -19,17 +19,17 @@ require 'google/apis/gkehub_v1alpha2/gem_version.rb'
|
|
19
19
|
|
20
20
|
module Google
|
21
21
|
module Apis
|
22
|
-
# GKE Hub
|
22
|
+
# GKE Hub API
|
23
23
|
#
|
24
24
|
#
|
25
25
|
#
|
26
26
|
# @see https://cloud.google.com/anthos/multicluster-management/connect/registering-a-cluster
|
27
27
|
module GkehubV1alpha2
|
28
|
-
# Version of the GKE Hub this client connects to.
|
28
|
+
# Version of the GKE Hub API this client connects to.
|
29
29
|
# This is NOT the gem version.
|
30
30
|
VERSION = 'V1alpha2'
|
31
31
|
|
32
|
-
# See, edit, configure, and delete your Google Cloud
|
32
|
+
# See, edit, configure, and delete your Google Cloud data and see the email address for your Google Account.
|
33
33
|
AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform'
|
34
34
|
end
|
35
35
|
end
|
@@ -354,6 +354,13 @@ module Google
|
|
354
354
|
class GkeCluster
|
355
355
|
include Google::Apis::Core::Hashable
|
356
356
|
|
357
|
+
# Output only. If cluster_missing is set then it denotes that the GKE cluster no
|
358
|
+
# longer exists in the GKE Control Plane.
|
359
|
+
# Corresponds to the JSON property `clusterMissing`
|
360
|
+
# @return [Boolean]
|
361
|
+
attr_accessor :cluster_missing
|
362
|
+
alias_method :cluster_missing?, :cluster_missing
|
363
|
+
|
357
364
|
# Immutable. Self-link of the GCP resource for the GKE cluster. For example: //
|
358
365
|
# container.googleapis.com/projects/my-project/locations/us-west1-a/clusters/my-
|
359
366
|
# cluster Zonal clusters are also supported.
|
@@ -367,6 +374,7 @@ module Google
|
|
367
374
|
|
368
375
|
# Update properties of this object
|
369
376
|
def update!(**args)
|
377
|
+
@cluster_missing = args[:cluster_missing] if args.key?(:cluster_missing)
|
370
378
|
@resource_link = args[:resource_link] if args.key?(:resource_link)
|
371
379
|
end
|
372
380
|
end
|
@@ -1003,7 +1011,7 @@ module Google
|
|
1003
1011
|
# resourcemanager.organizationAdmin - members: - user:eve@example.com role:
|
1004
1012
|
# roles/resourcemanager.organizationViewer condition: title: expirable access
|
1005
1013
|
# description: Does not grant access after Sep 2020 expression: request.time <
|
1006
|
-
# timestamp('2020-10-01T00:00:00.000Z')
|
1014
|
+
# timestamp('2020-10-01T00:00:00.000Z') etag: BwWWja0YfJA= version: 3 For a
|
1007
1015
|
# description of IAM and its features, see the [IAM documentation](https://cloud.
|
1008
1016
|
# google.com/iam/docs/).
|
1009
1017
|
class Policy
|
@@ -1156,7 +1164,7 @@ module Google
|
|
1156
1164
|
# resourcemanager.organizationAdmin - members: - user:eve@example.com role:
|
1157
1165
|
# roles/resourcemanager.organizationViewer condition: title: expirable access
|
1158
1166
|
# description: Does not grant access after Sep 2020 expression: request.time <
|
1159
|
-
# timestamp('2020-10-01T00:00:00.000Z')
|
1167
|
+
# timestamp('2020-10-01T00:00:00.000Z') etag: BwWWja0YfJA= version: 3 For a
|
1160
1168
|
# description of IAM and its features, see the [IAM documentation](https://cloud.
|
1161
1169
|
# google.com/iam/docs/).
|
1162
1170
|
# Corresponds to the JSON property `policy`
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module GkehubV1alpha2
|
18
18
|
# Version of the google-apis-gkehub_v1alpha2 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.8.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.4.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20210813"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-gkehub_v1alpha2
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.8.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-08-23 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.4'
|
20
20
|
- - "<"
|
21
21
|
- !ruby/object:Gem::Version
|
22
22
|
version: 2.a
|
@@ -26,17 +26,17 @@ dependencies:
|
|
26
26
|
requirements:
|
27
27
|
- - ">="
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
version: '0.
|
29
|
+
version: '0.4'
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: 2.a
|
33
|
-
description: This is the simple REST client for GKE Hub V1alpha2. Simple REST
|
34
|
-
are Ruby client libraries that provide access to Google services via their
|
35
|
-
REST API endpoints. These libraries are generated and updated automatically
|
36
|
-
on the discovery documents published by the service, and they handle most
|
37
|
-
such as authentication, pagination, retry, timeouts, and logging. You can
|
38
|
-
client to access the GKE Hub, but note that some services may provide
|
39
|
-
modern client that is easier to use.
|
33
|
+
description: This is the simple REST client for GKE Hub API V1alpha2. Simple REST
|
34
|
+
clients are Ruby client libraries that provide access to Google services via their
|
35
|
+
HTTP REST API endpoints. These libraries are generated and updated automatically
|
36
|
+
based on the discovery documents published by the service, and they handle most
|
37
|
+
concerns such as authentication, pagination, retry, timeouts, and logging. You can
|
38
|
+
use this client to access the GKE Hub API, but note that some services may provide
|
39
|
+
a separate modern client that is easier to use.
|
40
40
|
email: googleapis-packages@google.com
|
41
41
|
executables: []
|
42
42
|
extensions: []
|
@@ -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/master/generated/google-apis-gkehub_v1alpha2/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-gkehub_v1alpha2/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-gkehub_v1alpha2/v0.8.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-gkehub_v1alpha2
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|
@@ -78,5 +78,5 @@ requirements: []
|
|
78
78
|
rubygems_version: 3.2.17
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
|
-
summary: Simple REST client for GKE Hub V1alpha2
|
81
|
+
summary: Simple REST client for GKE Hub API V1alpha2
|
82
82
|
test_files: []
|