google-apis-gkehub_v1beta1 0.18.0 → 0.21.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: 4d8c79504a79a9f2a21b3b6d2c7f25f6efd277d136ca2aae0537100aae847306
|
4
|
+
data.tar.gz: b6a8fc0f2ae1ceb705307ea0922e07dee09d511f9129b4c4f313be3d2fe4d621
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b10128c13329da1e8acecce5eb18706c6dd0ea9c802e76fdca393aaacd2210ac70cbd1873f8e48056afa089e64a0ee62c5fac22007473e76181336ed3f263c8f
|
7
|
+
data.tar.gz: e9abecd948a97b5cbbd588531ad17e67f5be9d192c15d16436874258f2fe43c77bec2f0836224fd4f3b9974613655bee9628709b7babb6242c95d562e526f737
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,19 @@
|
|
1
1
|
# Release history for google-apis-gkehub_v1beta1
|
2
2
|
|
3
|
+
### v0.21.0 (2022-06-19)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20220613
|
6
|
+
* Regenerated using generator version 0.7.0
|
7
|
+
|
8
|
+
### v0.20.0 (2022-06-06)
|
9
|
+
|
10
|
+
* Regenerated from discovery document revision 20220530
|
11
|
+
* Regenerated using generator version 0.5.0
|
12
|
+
|
13
|
+
### v0.19.0 (2022-05-16)
|
14
|
+
|
15
|
+
* Regenerated from discovery document revision 20220505
|
16
|
+
|
3
17
|
### v0.18.0 (2022-05-08)
|
4
18
|
|
5
19
|
* Regenerated from discovery document revision 20220429
|
@@ -22,6 +22,27 @@ module Google
|
|
22
22
|
module Apis
|
23
23
|
module GkehubV1beta1
|
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
|
@@ -822,6 +843,11 @@ module Google
|
|
822
843
|
class MembershipEndpoint
|
823
844
|
include Google::Apis::Core::Hashable
|
824
845
|
|
846
|
+
# ApplianceCluster contains information specific to GDC Edge Appliance Clusters.
|
847
|
+
# Corresponds to the JSON property `applianceCluster`
|
848
|
+
# @return [Google::Apis::GkehubV1beta1::ApplianceCluster]
|
849
|
+
attr_accessor :appliance_cluster
|
850
|
+
|
825
851
|
# EdgeCluster contains information specific to Google Edge Clusters.
|
826
852
|
# Corresponds to the JSON property `edgeCluster`
|
827
853
|
# @return [Google::Apis::GkehubV1beta1::EdgeCluster]
|
@@ -861,6 +887,7 @@ module Google
|
|
861
887
|
|
862
888
|
# Update properties of this object
|
863
889
|
def update!(**args)
|
890
|
+
@appliance_cluster = args[:appliance_cluster] if args.key?(:appliance_cluster)
|
864
891
|
@edge_cluster = args[:edge_cluster] if args.key?(:edge_cluster)
|
865
892
|
@gke_cluster = args[:gke_cluster] if args.key?(:gke_cluster)
|
866
893
|
@kubernetes_metadata = args[:kubernetes_metadata] if args.key?(:kubernetes_metadata)
|
@@ -948,6 +975,11 @@ module Google
|
|
948
975
|
attr_accessor :cluster_missing
|
949
976
|
alias_method :cluster_missing?, :cluster_missing
|
950
977
|
|
978
|
+
# Immutable. The on prem cluster's type.
|
979
|
+
# Corresponds to the JSON property `clusterType`
|
980
|
+
# @return [String]
|
981
|
+
attr_accessor :cluster_type
|
982
|
+
|
951
983
|
# Immutable. Self-link of the GCP resource for the GKE On-Prem cluster. For
|
952
984
|
# example: //gkeonprem.googleapis.com/projects/my-project/locations/us-west1-a/
|
953
985
|
# vmwareClusters/my-cluster //gkeonprem.googleapis.com/projects/my-project/
|
@@ -964,6 +996,7 @@ module Google
|
|
964
996
|
def update!(**args)
|
965
997
|
@admin_cluster = args[:admin_cluster] if args.key?(:admin_cluster)
|
966
998
|
@cluster_missing = args[:cluster_missing] if args.key?(:cluster_missing)
|
999
|
+
@cluster_type = args[:cluster_type] if args.key?(:cluster_type)
|
967
1000
|
@resource_link = args[:resource_link] if args.key?(:resource_link)
|
968
1001
|
end
|
969
1002
|
end
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module GkehubV1beta1
|
18
18
|
# Version of the google-apis-gkehub_v1beta1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.21.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.7.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 GkehubV1beta1
|
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
|
@@ -423,6 +436,8 @@ module Google
|
|
423
436
|
class MembershipEndpoint
|
424
437
|
# @private
|
425
438
|
class Representation < Google::Apis::Core::JsonRepresentation
|
439
|
+
property :appliance_cluster, as: 'applianceCluster', class: Google::Apis::GkehubV1beta1::ApplianceCluster, decorator: Google::Apis::GkehubV1beta1::ApplianceCluster::Representation
|
440
|
+
|
426
441
|
property :edge_cluster, as: 'edgeCluster', class: Google::Apis::GkehubV1beta1::EdgeCluster, decorator: Google::Apis::GkehubV1beta1::EdgeCluster::Representation
|
427
442
|
|
428
443
|
property :gke_cluster, as: 'gkeCluster', class: Google::Apis::GkehubV1beta1::GkeCluster, decorator: Google::Apis::GkehubV1beta1::GkeCluster::Representation
|
@@ -460,6 +475,7 @@ module Google
|
|
460
475
|
class Representation < Google::Apis::Core::JsonRepresentation
|
461
476
|
property :admin_cluster, as: 'adminCluster'
|
462
477
|
property :cluster_missing, as: 'clusterMissing'
|
478
|
+
property :cluster_type, as: 'clusterType'
|
463
479
|
property :resource_link, as: 'resourceLink'
|
464
480
|
end
|
465
481
|
end
|
@@ -370,8 +370,9 @@ module Google
|
|
370
370
|
# Gets the access control policy for a resource. Returns an empty policy if the
|
371
371
|
# resource exists and does not have a policy set.
|
372
372
|
# @param [String] resource
|
373
|
-
# REQUIRED: The resource for which the policy is being requested. See
|
374
|
-
#
|
373
|
+
# REQUIRED: The resource for which the policy is being requested. See [Resource
|
374
|
+
# names](https://cloud.google.com/apis/design/resource_names) for the
|
375
|
+
# appropriate value for this field.
|
375
376
|
# @param [Fixnum] options_requested_policy_version
|
376
377
|
# Optional. The maximum policy version that will be used to format the policy.
|
377
378
|
# Valid values are 0, 1, and 3. Requests specifying an invalid value will be
|
@@ -517,8 +518,9 @@ module Google
|
|
517
518
|
# existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `
|
518
519
|
# PERMISSION_DENIED` errors.
|
519
520
|
# @param [String] resource
|
520
|
-
# REQUIRED: The resource for which the policy is being specified. See
|
521
|
-
#
|
521
|
+
# REQUIRED: The resource for which the policy is being specified. See [Resource
|
522
|
+
# names](https://cloud.google.com/apis/design/resource_names) for the
|
523
|
+
# appropriate value for this field.
|
522
524
|
# @param [Google::Apis::GkehubV1beta1::SetIamPolicyRequest] set_iam_policy_request_object
|
523
525
|
# @param [String] fields
|
524
526
|
# Selector specifying which fields to include in a partial response.
|
@@ -555,8 +557,9 @@ module Google
|
|
555
557
|
# permission-aware UIs and command-line tools, not for authorization checking.
|
556
558
|
# This operation may "fail open" without warning.
|
557
559
|
# @param [String] resource
|
558
|
-
# REQUIRED: The resource for which the policy detail is being requested. See
|
559
|
-
#
|
560
|
+
# REQUIRED: The resource for which the policy detail is being requested. See [
|
561
|
+
# Resource names](https://cloud.google.com/apis/design/resource_names) for the
|
562
|
+
# appropriate value for this field.
|
560
563
|
# @param [Google::Apis::GkehubV1beta1::TestIamPermissionsRequest] test_iam_permissions_request_object
|
561
564
|
# @param [String] fields
|
562
565
|
# Selector specifying which fields to include in a partial response.
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-gkehub_v1beta1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.21.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-06-20 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.6'
|
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.6'
|
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_v1beta1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-gkehub_v1beta1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-gkehub_v1beta1/v0.21.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-gkehub_v1beta1
|
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 V1beta1
|