google-apis-gkehub_v1alpha2 0.19.0 → 0.22.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: c03e00661d4703d4348307c4966657d83a2a0d0aff4ba84ea69d2681be61f31e
|
4
|
+
data.tar.gz: '046213690aab7664d22d70aea899e6abd16712c704147c4ec201fa3fb258afd8'
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f5f9d33ad720856f1ea2e62930c5efcca3af97206b4f2b45b14b871ce2126be5c1f9b9ea57b7bf4b67de2389ce27c021ac788aef05dc652b6dddf09abf81cc9d
|
7
|
+
data.tar.gz: 0be2c491eeb74500359784fc830f7038fa21cec48d91f91592e3c3a4e8b7323eb399b7225a77bf34231355dedd3f5b8d4b626e70cfd12a389f00929567fad4de
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,19 @@
|
|
1
1
|
# Release history for google-apis-gkehub_v1alpha2
|
2
2
|
|
3
|
+
### v0.22.0 (2022-07-02)
|
4
|
+
|
5
|
+
* Regenerated using generator version 0.8.0
|
6
|
+
|
7
|
+
### v0.21.0 (2022-06-19)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20220613
|
10
|
+
* Regenerated using generator version 0.7.0
|
11
|
+
|
12
|
+
### v0.20.0 (2022-06-05)
|
13
|
+
|
14
|
+
* Regenerated from discovery document revision 20220530
|
15
|
+
* Regenerated using generator version 0.5.0
|
16
|
+
|
3
17
|
### v0.19.0 (2022-05-16)
|
4
18
|
|
5
19
|
* Regenerated from discovery document revision 20220505
|
@@ -22,6 +22,27 @@ module Google
|
|
22
22
|
module Apis
|
23
23
|
module GkehubV1alpha2
|
24
24
|
|
25
|
+
# ApplianceCluster contains information specific to GDC Edge Appliance Clusters.
|
26
|
+
class ApplianceCluster
|
27
|
+
include Google::Apis::Core::Hashable
|
28
|
+
|
29
|
+
# Immutable. Self-link of the GCP resource for the Appliance Cluster. For
|
30
|
+
# example: //transferappliance.googleapis.com/projects/my-project/locations/us-
|
31
|
+
# west1-a/appliances/my-appliance
|
32
|
+
# Corresponds to the JSON property `resourceLink`
|
33
|
+
# @return [String]
|
34
|
+
attr_accessor :resource_link
|
35
|
+
|
36
|
+
def initialize(**args)
|
37
|
+
update!(**args)
|
38
|
+
end
|
39
|
+
|
40
|
+
# Update properties of this object
|
41
|
+
def update!(**args)
|
42
|
+
@resource_link = args[:resource_link] if args.key?(:resource_link)
|
43
|
+
end
|
44
|
+
end
|
45
|
+
|
25
46
|
# Specifies the audit configuration for a service. The configuration determines
|
26
47
|
# which permission types are logged, and what identities, if any, are exempted
|
27
48
|
# from logging. An AuditConfig must have one or more AuditLogConfigs. If there
|
@@ -836,6 +857,11 @@ module Google
|
|
836
857
|
class MembershipEndpoint
|
837
858
|
include Google::Apis::Core::Hashable
|
838
859
|
|
860
|
+
# ApplianceCluster contains information specific to GDC Edge Appliance Clusters.
|
861
|
+
# Corresponds to the JSON property `applianceCluster`
|
862
|
+
# @return [Google::Apis::GkehubV1alpha2::ApplianceCluster]
|
863
|
+
attr_accessor :appliance_cluster
|
864
|
+
|
839
865
|
# EdgeCluster contains information specific to Google Edge Clusters.
|
840
866
|
# Corresponds to the JSON property `edgeCluster`
|
841
867
|
# @return [Google::Apis::GkehubV1alpha2::EdgeCluster]
|
@@ -876,6 +902,7 @@ module Google
|
|
876
902
|
|
877
903
|
# Update properties of this object
|
878
904
|
def update!(**args)
|
905
|
+
@appliance_cluster = args[:appliance_cluster] if args.key?(:appliance_cluster)
|
879
906
|
@edge_cluster = args[:edge_cluster] if args.key?(:edge_cluster)
|
880
907
|
@gke_cluster = args[:gke_cluster] if args.key?(:gke_cluster)
|
881
908
|
@kubernetes_metadata = args[:kubernetes_metadata] if args.key?(:kubernetes_metadata)
|
@@ -951,6 +978,11 @@ module Google
|
|
951
978
|
attr_accessor :cluster_missing
|
952
979
|
alias_method :cluster_missing?, :cluster_missing
|
953
980
|
|
981
|
+
# Immutable. The on prem cluster's type.
|
982
|
+
# Corresponds to the JSON property `clusterType`
|
983
|
+
# @return [String]
|
984
|
+
attr_accessor :cluster_type
|
985
|
+
|
954
986
|
# Immutable. Self-link of the GCP resource for the GKE On-Prem cluster. For
|
955
987
|
# example: //gkeonprem.googleapis.com/projects/my-project/locations/us-west1-a/
|
956
988
|
# vmwareClusters/my-cluster //gkeonprem.googleapis.com/projects/my-project/
|
@@ -967,6 +999,7 @@ module Google
|
|
967
999
|
def update!(**args)
|
968
1000
|
@admin_cluster = args[:admin_cluster] if args.key?(:admin_cluster)
|
969
1001
|
@cluster_missing = args[:cluster_missing] if args.key?(:cluster_missing)
|
1002
|
+
@cluster_type = args[:cluster_type] if args.key?(:cluster_type)
|
970
1003
|
@resource_link = args[:resource_link] if args.key?(:resource_link)
|
971
1004
|
end
|
972
1005
|
end
|
@@ -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.22.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.8.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20220613"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -22,6 +22,12 @@ module Google
|
|
22
22
|
module Apis
|
23
23
|
module GkehubV1alpha2
|
24
24
|
|
25
|
+
class ApplianceCluster
|
26
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
27
|
+
|
28
|
+
include Google::Apis::Core::JsonObjectSupport
|
29
|
+
end
|
30
|
+
|
25
31
|
class AuditConfig
|
26
32
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
27
33
|
|
@@ -226,6 +232,13 @@ module Google
|
|
226
232
|
include Google::Apis::Core::JsonObjectSupport
|
227
233
|
end
|
228
234
|
|
235
|
+
class ApplianceCluster
|
236
|
+
# @private
|
237
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
238
|
+
property :resource_link, as: 'resourceLink'
|
239
|
+
end
|
240
|
+
end
|
241
|
+
|
229
242
|
class AuditConfig
|
230
243
|
# @private
|
231
244
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -429,6 +442,8 @@ module Google
|
|
429
442
|
class MembershipEndpoint
|
430
443
|
# @private
|
431
444
|
class Representation < Google::Apis::Core::JsonRepresentation
|
445
|
+
property :appliance_cluster, as: 'applianceCluster', class: Google::Apis::GkehubV1alpha2::ApplianceCluster, decorator: Google::Apis::GkehubV1alpha2::ApplianceCluster::Representation
|
446
|
+
|
432
447
|
property :edge_cluster, as: 'edgeCluster', class: Google::Apis::GkehubV1alpha2::EdgeCluster, decorator: Google::Apis::GkehubV1alpha2::EdgeCluster::Representation
|
433
448
|
|
434
449
|
property :gke_cluster, as: 'gkeCluster', class: Google::Apis::GkehubV1alpha2::GkeCluster, decorator: Google::Apis::GkehubV1alpha2::GkeCluster::Representation
|
@@ -464,6 +479,7 @@ module Google
|
|
464
479
|
class Representation < Google::Apis::Core::JsonRepresentation
|
465
480
|
property :admin_cluster, as: 'adminCluster'
|
466
481
|
property :cluster_missing, as: 'clusterMissing'
|
482
|
+
property :cluster_type, as: 'clusterType'
|
467
483
|
property :resource_link, as: 'resourceLink'
|
468
484
|
end
|
469
485
|
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.22.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: 2022-
|
11
|
+
date: 2022-07-04 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.7'
|
20
20
|
- - "<"
|
21
21
|
- !ruby/object:Gem::Version
|
22
22
|
version: 2.a
|
@@ -26,7 +26,7 @@ dependencies:
|
|
26
26
|
requirements:
|
27
27
|
- - ">="
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
version: '0.
|
29
|
+
version: '0.7'
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: 2.a
|
@@ -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-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.22.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-gkehub_v1alpha2
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
75
|
- !ruby/object:Gem::Version
|
76
76
|
version: '0'
|
77
77
|
requirements: []
|
78
|
-
rubygems_version: 3.3.
|
78
|
+
rubygems_version: 3.3.14
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for GKE Hub API V1alpha2
|