google-apis-gkehub_v1beta 0.24.0 → 0.25.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: 87680abc7ac92c7e6e68d1458bc8c7b68be9a7b0562f2107a597e9c53ada524b
|
4
|
+
data.tar.gz: 7d66419ee857f399e4e4dd53a6809c7fce0b9ab2a21cfbe55a1055ae6aefaa8b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c4c203b7cf0c845ec514cba60d118e1f69cf7d5918a91ff631829ed60a1258685e85fe3ec314687e0b968d0c96bc5af162048c699518f4f484a039e9ca7e1ed7
|
7
|
+
data.tar.gz: 0ce42fd7743d525a9f2967c2f38918d37e44b5b0d60076fdd25acfdf7059531b6db7167cc27f69f9dac2a4ffefa42e09381efe86f2f42d891fedfc15e22af2bd
|
data/CHANGELOG.md
CHANGED
@@ -77,6 +77,129 @@ module Google
|
|
77
77
|
end
|
78
78
|
end
|
79
79
|
|
80
|
+
# AnthosVMMembershipSpec contains the AnthosVM feature configuration for a
|
81
|
+
# membership/cluster.
|
82
|
+
class AnthosVmMembershipSpec
|
83
|
+
include Google::Apis::Core::Hashable
|
84
|
+
|
85
|
+
# List of configurations of the Anthos For VM subfeatures that are to be enabled
|
86
|
+
# Corresponds to the JSON property `subfeaturesSpec`
|
87
|
+
# @return [Array<Google::Apis::GkehubV1beta::AnthosVmSubFeatureSpec>]
|
88
|
+
attr_accessor :subfeatures_spec
|
89
|
+
|
90
|
+
def initialize(**args)
|
91
|
+
update!(**args)
|
92
|
+
end
|
93
|
+
|
94
|
+
# Update properties of this object
|
95
|
+
def update!(**args)
|
96
|
+
@subfeatures_spec = args[:subfeatures_spec] if args.key?(:subfeatures_spec)
|
97
|
+
end
|
98
|
+
end
|
99
|
+
|
100
|
+
# AnthosVMFeatureState contains the state of the AnthosVM feature. It represents
|
101
|
+
# the actual state in the cluster, while the AnthosVMMembershipSpec represents
|
102
|
+
# the desired state.
|
103
|
+
class AnthosVmMembershipState
|
104
|
+
include Google::Apis::Core::Hashable
|
105
|
+
|
106
|
+
# LocalControllerState contains the state of the local controller deployed in
|
107
|
+
# the cluster.
|
108
|
+
# Corresponds to the JSON property `localControllerState`
|
109
|
+
# @return [Google::Apis::GkehubV1beta::LocalControllerState]
|
110
|
+
attr_accessor :local_controller_state
|
111
|
+
|
112
|
+
# List of AnthosVM subfeature states
|
113
|
+
# Corresponds to the JSON property `subfeatureState`
|
114
|
+
# @return [Array<Google::Apis::GkehubV1beta::AnthosVmSubFeatureState>]
|
115
|
+
attr_accessor :subfeature_state
|
116
|
+
|
117
|
+
def initialize(**args)
|
118
|
+
update!(**args)
|
119
|
+
end
|
120
|
+
|
121
|
+
# Update properties of this object
|
122
|
+
def update!(**args)
|
123
|
+
@local_controller_state = args[:local_controller_state] if args.key?(:local_controller_state)
|
124
|
+
@subfeature_state = args[:subfeature_state] if args.key?(:subfeature_state)
|
125
|
+
end
|
126
|
+
end
|
127
|
+
|
128
|
+
# AnthosVMSubFeatureSpec contains the subfeature configuration for a membership/
|
129
|
+
# cluster.
|
130
|
+
class AnthosVmSubFeatureSpec
|
131
|
+
include Google::Apis::Core::Hashable
|
132
|
+
|
133
|
+
# Indicates whether the subfeature should be enabled on the cluster or not. If
|
134
|
+
# set to true, the subfeature's control plane and resources will be installed in
|
135
|
+
# the cluster. If set to false, the oneof spec if present will be ignored and
|
136
|
+
# nothing will be installed in the cluster.
|
137
|
+
# Corresponds to the JSON property `enabled`
|
138
|
+
# @return [Boolean]
|
139
|
+
attr_accessor :enabled
|
140
|
+
alias_method :enabled?, :enabled
|
141
|
+
|
142
|
+
# MigrateSpec contains the migrate subfeature configuration.
|
143
|
+
# Corresponds to the JSON property `migrateSpec`
|
144
|
+
# @return [Google::Apis::GkehubV1beta::MigrateSpec]
|
145
|
+
attr_accessor :migrate_spec
|
146
|
+
|
147
|
+
# ServiceMeshSpec contains the serviceMesh subfeature configuration.
|
148
|
+
# Corresponds to the JSON property `serviceMeshSpec`
|
149
|
+
# @return [Google::Apis::GkehubV1beta::ServiceMeshSpec]
|
150
|
+
attr_accessor :service_mesh_spec
|
151
|
+
|
152
|
+
def initialize(**args)
|
153
|
+
update!(**args)
|
154
|
+
end
|
155
|
+
|
156
|
+
# Update properties of this object
|
157
|
+
def update!(**args)
|
158
|
+
@enabled = args[:enabled] if args.key?(:enabled)
|
159
|
+
@migrate_spec = args[:migrate_spec] if args.key?(:migrate_spec)
|
160
|
+
@service_mesh_spec = args[:service_mesh_spec] if args.key?(:service_mesh_spec)
|
161
|
+
end
|
162
|
+
end
|
163
|
+
|
164
|
+
# AnthosVMSubFeatureState contains the state of the AnthosVM subfeatures.
|
165
|
+
class AnthosVmSubFeatureState
|
166
|
+
include Google::Apis::Core::Hashable
|
167
|
+
|
168
|
+
# Description represents human readable description of the subfeature state. If
|
169
|
+
# the deployment failed, this should also contain the reason for the failure.
|
170
|
+
# Corresponds to the JSON property `description`
|
171
|
+
# @return [String]
|
172
|
+
attr_accessor :description
|
173
|
+
|
174
|
+
# InstallationState represents the state of installation of the subfeature in
|
175
|
+
# the cluster.
|
176
|
+
# Corresponds to the JSON property `installationState`
|
177
|
+
# @return [String]
|
178
|
+
attr_accessor :installation_state
|
179
|
+
|
180
|
+
# MigrateState contains the state of Migrate subfeature
|
181
|
+
# Corresponds to the JSON property `migrateState`
|
182
|
+
# @return [Google::Apis::GkehubV1beta::MigrateState]
|
183
|
+
attr_accessor :migrate_state
|
184
|
+
|
185
|
+
# ServiceMeshState contains the state of Service Mesh subfeature
|
186
|
+
# Corresponds to the JSON property `serviceMeshState`
|
187
|
+
# @return [Google::Apis::GkehubV1beta::ServiceMeshState]
|
188
|
+
attr_accessor :service_mesh_state
|
189
|
+
|
190
|
+
def initialize(**args)
|
191
|
+
update!(**args)
|
192
|
+
end
|
193
|
+
|
194
|
+
# Update properties of this object
|
195
|
+
def update!(**args)
|
196
|
+
@description = args[:description] if args.key?(:description)
|
197
|
+
@installation_state = args[:installation_state] if args.key?(:installation_state)
|
198
|
+
@migrate_state = args[:migrate_state] if args.key?(:migrate_state)
|
199
|
+
@service_mesh_state = args[:service_mesh_state] if args.key?(:service_mesh_state)
|
200
|
+
end
|
201
|
+
end
|
202
|
+
|
80
203
|
# Spec for App Dev Experience Feature.
|
81
204
|
class AppDevExperienceFeatureSpec
|
82
205
|
include Google::Apis::Core::Hashable
|
@@ -1701,6 +1824,34 @@ module Google
|
|
1701
1824
|
end
|
1702
1825
|
end
|
1703
1826
|
|
1827
|
+
# LocalControllerState contains the state of the local controller deployed in
|
1828
|
+
# the cluster.
|
1829
|
+
class LocalControllerState
|
1830
|
+
include Google::Apis::Core::Hashable
|
1831
|
+
|
1832
|
+
# Description represents the human readable description of the current state of
|
1833
|
+
# the local PE controller
|
1834
|
+
# Corresponds to the JSON property `description`
|
1835
|
+
# @return [String]
|
1836
|
+
attr_accessor :description
|
1837
|
+
|
1838
|
+
# InstallationState represents the state of deployment of the local PE
|
1839
|
+
# controller in the cluster.
|
1840
|
+
# Corresponds to the JSON property `installationState`
|
1841
|
+
# @return [String]
|
1842
|
+
attr_accessor :installation_state
|
1843
|
+
|
1844
|
+
def initialize(**args)
|
1845
|
+
update!(**args)
|
1846
|
+
end
|
1847
|
+
|
1848
|
+
# Update properties of this object
|
1849
|
+
def update!(**args)
|
1850
|
+
@description = args[:description] if args.key?(:description)
|
1851
|
+
@installation_state = args[:installation_state] if args.key?(:installation_state)
|
1852
|
+
end
|
1853
|
+
end
|
1854
|
+
|
1704
1855
|
# A resource that represents Google Cloud Platform location.
|
1705
1856
|
class Location
|
1706
1857
|
include Google::Apis::Core::Hashable
|
@@ -1758,6 +1909,12 @@ module Google
|
|
1758
1909
|
# @return [Google::Apis::GkehubV1beta::AnthosObservabilityMembershipSpec]
|
1759
1910
|
attr_accessor :anthosobservability
|
1760
1911
|
|
1912
|
+
# AnthosVMMembershipSpec contains the AnthosVM feature configuration for a
|
1913
|
+
# membership/cluster.
|
1914
|
+
# Corresponds to the JSON property `anthosvm`
|
1915
|
+
# @return [Google::Apis::GkehubV1beta::AnthosVmMembershipSpec]
|
1916
|
+
attr_accessor :anthosvm
|
1917
|
+
|
1761
1918
|
# **Cloud Build**: Configurations for each Cloud Build enabled cluster.
|
1762
1919
|
# Corresponds to the JSON property `cloudbuild`
|
1763
1920
|
# @return [Google::Apis::GkehubV1beta::MembershipSpec]
|
@@ -1792,6 +1949,7 @@ module Google
|
|
1792
1949
|
# Update properties of this object
|
1793
1950
|
def update!(**args)
|
1794
1951
|
@anthosobservability = args[:anthosobservability] if args.key?(:anthosobservability)
|
1952
|
+
@anthosvm = args[:anthosvm] if args.key?(:anthosvm)
|
1795
1953
|
@cloudbuild = args[:cloudbuild] if args.key?(:cloudbuild)
|
1796
1954
|
@configmanagement = args[:configmanagement] if args.key?(:configmanagement)
|
1797
1955
|
@identityservice = args[:identityservice] if args.key?(:identityservice)
|
@@ -1805,6 +1963,13 @@ module Google
|
|
1805
1963
|
class MembershipFeatureState
|
1806
1964
|
include Google::Apis::Core::Hashable
|
1807
1965
|
|
1966
|
+
# AnthosVMFeatureState contains the state of the AnthosVM feature. It represents
|
1967
|
+
# the actual state in the cluster, while the AnthosVMMembershipSpec represents
|
1968
|
+
# the desired state.
|
1969
|
+
# Corresponds to the JSON property `anthosvm`
|
1970
|
+
# @return [Google::Apis::GkehubV1beta::AnthosVmMembershipState]
|
1971
|
+
attr_accessor :anthosvm
|
1972
|
+
|
1808
1973
|
# State for App Dev Exp Feature.
|
1809
1974
|
# Corresponds to the JSON property `appdevexperience`
|
1810
1975
|
# @return [Google::Apis::GkehubV1beta::AppDevExperienceFeatureState]
|
@@ -1849,6 +2014,7 @@ module Google
|
|
1849
2014
|
|
1850
2015
|
# Update properties of this object
|
1851
2016
|
def update!(**args)
|
2017
|
+
@anthosvm = args[:anthosvm] if args.key?(:anthosvm)
|
1852
2018
|
@appdevexperience = args[:appdevexperience] if args.key?(:appdevexperience)
|
1853
2019
|
@configmanagement = args[:configmanagement] if args.key?(:configmanagement)
|
1854
2020
|
@identityservice = args[:identityservice] if args.key?(:identityservice)
|
@@ -1911,6 +2077,32 @@ module Google
|
|
1911
2077
|
end
|
1912
2078
|
end
|
1913
2079
|
|
2080
|
+
# MigrateSpec contains the migrate subfeature configuration.
|
2081
|
+
class MigrateSpec
|
2082
|
+
include Google::Apis::Core::Hashable
|
2083
|
+
|
2084
|
+
def initialize(**args)
|
2085
|
+
update!(**args)
|
2086
|
+
end
|
2087
|
+
|
2088
|
+
# Update properties of this object
|
2089
|
+
def update!(**args)
|
2090
|
+
end
|
2091
|
+
end
|
2092
|
+
|
2093
|
+
# MigrateState contains the state of Migrate subfeature
|
2094
|
+
class MigrateState
|
2095
|
+
include Google::Apis::Core::Hashable
|
2096
|
+
|
2097
|
+
def initialize(**args)
|
2098
|
+
update!(**args)
|
2099
|
+
end
|
2100
|
+
|
2101
|
+
# Update properties of this object
|
2102
|
+
def update!(**args)
|
2103
|
+
end
|
2104
|
+
end
|
2105
|
+
|
1914
2106
|
# **Multi-cluster Ingress**: The configuration for the MultiClusterIngress
|
1915
2107
|
# feature.
|
1916
2108
|
class MultiClusterIngressFeatureSpec
|
@@ -2410,6 +2602,32 @@ module Google
|
|
2410
2602
|
end
|
2411
2603
|
end
|
2412
2604
|
|
2605
|
+
# ServiceMeshSpec contains the serviceMesh subfeature configuration.
|
2606
|
+
class ServiceMeshSpec
|
2607
|
+
include Google::Apis::Core::Hashable
|
2608
|
+
|
2609
|
+
def initialize(**args)
|
2610
|
+
update!(**args)
|
2611
|
+
end
|
2612
|
+
|
2613
|
+
# Update properties of this object
|
2614
|
+
def update!(**args)
|
2615
|
+
end
|
2616
|
+
end
|
2617
|
+
|
2618
|
+
# ServiceMeshState contains the state of Service Mesh subfeature
|
2619
|
+
class ServiceMeshState
|
2620
|
+
include Google::Apis::Core::Hashable
|
2621
|
+
|
2622
|
+
def initialize(**args)
|
2623
|
+
update!(**args)
|
2624
|
+
end
|
2625
|
+
|
2626
|
+
# Update properties of this object
|
2627
|
+
def update!(**args)
|
2628
|
+
end
|
2629
|
+
end
|
2630
|
+
|
2413
2631
|
# Structured and human-readable details for a status.
|
2414
2632
|
class ServiceMeshStatusDetails
|
2415
2633
|
include Google::Apis::Core::Hashable
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module GkehubV1beta
|
18
18
|
# Version of the google-apis-gkehub_v1beta gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.25.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.4.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20220505"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -34,6 +34,30 @@ module Google
|
|
34
34
|
include Google::Apis::Core::JsonObjectSupport
|
35
35
|
end
|
36
36
|
|
37
|
+
class AnthosVmMembershipSpec
|
38
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
39
|
+
|
40
|
+
include Google::Apis::Core::JsonObjectSupport
|
41
|
+
end
|
42
|
+
|
43
|
+
class AnthosVmMembershipState
|
44
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
45
|
+
|
46
|
+
include Google::Apis::Core::JsonObjectSupport
|
47
|
+
end
|
48
|
+
|
49
|
+
class AnthosVmSubFeatureSpec
|
50
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
51
|
+
|
52
|
+
include Google::Apis::Core::JsonObjectSupport
|
53
|
+
end
|
54
|
+
|
55
|
+
class AnthosVmSubFeatureState
|
56
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
57
|
+
|
58
|
+
include Google::Apis::Core::JsonObjectSupport
|
59
|
+
end
|
60
|
+
|
37
61
|
class AppDevExperienceFeatureSpec
|
38
62
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
39
63
|
|
@@ -304,6 +328,12 @@ module Google
|
|
304
328
|
include Google::Apis::Core::JsonObjectSupport
|
305
329
|
end
|
306
330
|
|
331
|
+
class LocalControllerState
|
332
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
333
|
+
|
334
|
+
include Google::Apis::Core::JsonObjectSupport
|
335
|
+
end
|
336
|
+
|
307
337
|
class Location
|
308
338
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
309
339
|
|
@@ -334,6 +364,18 @@ module Google
|
|
334
364
|
include Google::Apis::Core::JsonObjectSupport
|
335
365
|
end
|
336
366
|
|
367
|
+
class MigrateSpec
|
368
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
369
|
+
|
370
|
+
include Google::Apis::Core::JsonObjectSupport
|
371
|
+
end
|
372
|
+
|
373
|
+
class MigrateState
|
374
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
375
|
+
|
376
|
+
include Google::Apis::Core::JsonObjectSupport
|
377
|
+
end
|
378
|
+
|
337
379
|
class MultiClusterIngressFeatureSpec
|
338
380
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
339
381
|
|
@@ -412,6 +454,18 @@ module Google
|
|
412
454
|
include Google::Apis::Core::JsonObjectSupport
|
413
455
|
end
|
414
456
|
|
457
|
+
class ServiceMeshSpec
|
458
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
459
|
+
|
460
|
+
include Google::Apis::Core::JsonObjectSupport
|
461
|
+
end
|
462
|
+
|
463
|
+
class ServiceMeshState
|
464
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
465
|
+
|
466
|
+
include Google::Apis::Core::JsonObjectSupport
|
467
|
+
end
|
468
|
+
|
415
469
|
class ServiceMeshStatusDetails
|
416
470
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
417
471
|
|
@@ -459,6 +513,47 @@ module Google
|
|
459
513
|
end
|
460
514
|
end
|
461
515
|
|
516
|
+
class AnthosVmMembershipSpec
|
517
|
+
# @private
|
518
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
519
|
+
collection :subfeatures_spec, as: 'subfeaturesSpec', class: Google::Apis::GkehubV1beta::AnthosVmSubFeatureSpec, decorator: Google::Apis::GkehubV1beta::AnthosVmSubFeatureSpec::Representation
|
520
|
+
|
521
|
+
end
|
522
|
+
end
|
523
|
+
|
524
|
+
class AnthosVmMembershipState
|
525
|
+
# @private
|
526
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
527
|
+
property :local_controller_state, as: 'localControllerState', class: Google::Apis::GkehubV1beta::LocalControllerState, decorator: Google::Apis::GkehubV1beta::LocalControllerState::Representation
|
528
|
+
|
529
|
+
collection :subfeature_state, as: 'subfeatureState', class: Google::Apis::GkehubV1beta::AnthosVmSubFeatureState, decorator: Google::Apis::GkehubV1beta::AnthosVmSubFeatureState::Representation
|
530
|
+
|
531
|
+
end
|
532
|
+
end
|
533
|
+
|
534
|
+
class AnthosVmSubFeatureSpec
|
535
|
+
# @private
|
536
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
537
|
+
property :enabled, as: 'enabled'
|
538
|
+
property :migrate_spec, as: 'migrateSpec', class: Google::Apis::GkehubV1beta::MigrateSpec, decorator: Google::Apis::GkehubV1beta::MigrateSpec::Representation
|
539
|
+
|
540
|
+
property :service_mesh_spec, as: 'serviceMeshSpec', class: Google::Apis::GkehubV1beta::ServiceMeshSpec, decorator: Google::Apis::GkehubV1beta::ServiceMeshSpec::Representation
|
541
|
+
|
542
|
+
end
|
543
|
+
end
|
544
|
+
|
545
|
+
class AnthosVmSubFeatureState
|
546
|
+
# @private
|
547
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
548
|
+
property :description, as: 'description'
|
549
|
+
property :installation_state, as: 'installationState'
|
550
|
+
property :migrate_state, as: 'migrateState', class: Google::Apis::GkehubV1beta::MigrateState, decorator: Google::Apis::GkehubV1beta::MigrateState::Representation
|
551
|
+
|
552
|
+
property :service_mesh_state, as: 'serviceMeshState', class: Google::Apis::GkehubV1beta::ServiceMeshState, decorator: Google::Apis::GkehubV1beta::ServiceMeshState::Representation
|
553
|
+
|
554
|
+
end
|
555
|
+
end
|
556
|
+
|
462
557
|
class AppDevExperienceFeatureSpec
|
463
558
|
# @private
|
464
559
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -918,6 +1013,14 @@ module Google
|
|
918
1013
|
end
|
919
1014
|
end
|
920
1015
|
|
1016
|
+
class LocalControllerState
|
1017
|
+
# @private
|
1018
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1019
|
+
property :description, as: 'description'
|
1020
|
+
property :installation_state, as: 'installationState'
|
1021
|
+
end
|
1022
|
+
end
|
1023
|
+
|
921
1024
|
class Location
|
922
1025
|
# @private
|
923
1026
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -934,6 +1037,8 @@ module Google
|
|
934
1037
|
class Representation < Google::Apis::Core::JsonRepresentation
|
935
1038
|
property :anthosobservability, as: 'anthosobservability', class: Google::Apis::GkehubV1beta::AnthosObservabilityMembershipSpec, decorator: Google::Apis::GkehubV1beta::AnthosObservabilityMembershipSpec::Representation
|
936
1039
|
|
1040
|
+
property :anthosvm, as: 'anthosvm', class: Google::Apis::GkehubV1beta::AnthosVmMembershipSpec, decorator: Google::Apis::GkehubV1beta::AnthosVmMembershipSpec::Representation
|
1041
|
+
|
937
1042
|
property :cloudbuild, as: 'cloudbuild', class: Google::Apis::GkehubV1beta::MembershipSpec, decorator: Google::Apis::GkehubV1beta::MembershipSpec::Representation
|
938
1043
|
|
939
1044
|
property :configmanagement, as: 'configmanagement', class: Google::Apis::GkehubV1beta::ConfigManagementMembershipSpec, decorator: Google::Apis::GkehubV1beta::ConfigManagementMembershipSpec::Representation
|
@@ -950,6 +1055,8 @@ module Google
|
|
950
1055
|
class MembershipFeatureState
|
951
1056
|
# @private
|
952
1057
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1058
|
+
property :anthosvm, as: 'anthosvm', class: Google::Apis::GkehubV1beta::AnthosVmMembershipState, decorator: Google::Apis::GkehubV1beta::AnthosVmMembershipState::Representation
|
1059
|
+
|
953
1060
|
property :appdevexperience, as: 'appdevexperience', class: Google::Apis::GkehubV1beta::AppDevExperienceFeatureState, decorator: Google::Apis::GkehubV1beta::AppDevExperienceFeatureState::Representation
|
954
1061
|
|
955
1062
|
property :configmanagement, as: 'configmanagement', class: Google::Apis::GkehubV1beta::ConfigManagementMembershipState, decorator: Google::Apis::GkehubV1beta::ConfigManagementMembershipState::Representation
|
@@ -983,6 +1090,18 @@ module Google
|
|
983
1090
|
end
|
984
1091
|
end
|
985
1092
|
|
1093
|
+
class MigrateSpec
|
1094
|
+
# @private
|
1095
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1096
|
+
end
|
1097
|
+
end
|
1098
|
+
|
1099
|
+
class MigrateState
|
1100
|
+
# @private
|
1101
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1102
|
+
end
|
1103
|
+
end
|
1104
|
+
|
986
1105
|
class MultiClusterIngressFeatureSpec
|
987
1106
|
# @private
|
988
1107
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1109,6 +1228,18 @@ module Google
|
|
1109
1228
|
end
|
1110
1229
|
end
|
1111
1230
|
|
1231
|
+
class ServiceMeshSpec
|
1232
|
+
# @private
|
1233
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1234
|
+
end
|
1235
|
+
end
|
1236
|
+
|
1237
|
+
class ServiceMeshState
|
1238
|
+
# @private
|
1239
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1240
|
+
end
|
1241
|
+
end
|
1242
|
+
|
1112
1243
|
class ServiceMeshStatusDetails
|
1113
1244
|
# @private
|
1114
1245
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -253,8 +253,9 @@ module Google
|
|
253
253
|
# Gets the access control policy for a resource. Returns an empty policy if the
|
254
254
|
# resource exists and does not have a policy set.
|
255
255
|
# @param [String] resource
|
256
|
-
# REQUIRED: The resource for which the policy is being requested. See
|
257
|
-
#
|
256
|
+
# REQUIRED: The resource for which the policy is being requested. See [Resource
|
257
|
+
# names](https://cloud.google.com/apis/design/resource_names) for the
|
258
|
+
# appropriate value for this field.
|
258
259
|
# @param [Fixnum] options_requested_policy_version
|
259
260
|
# Optional. The maximum policy version that will be used to format the policy.
|
260
261
|
# Valid values are 0, 1, and 3. Requests specifying an invalid value will be
|
@@ -398,8 +399,9 @@ module Google
|
|
398
399
|
# existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `
|
399
400
|
# PERMISSION_DENIED` errors.
|
400
401
|
# @param [String] resource
|
401
|
-
# REQUIRED: The resource for which the policy is being specified. See
|
402
|
-
#
|
402
|
+
# REQUIRED: The resource for which the policy is being specified. See [Resource
|
403
|
+
# names](https://cloud.google.com/apis/design/resource_names) for the
|
404
|
+
# appropriate value for this field.
|
403
405
|
# @param [Google::Apis::GkehubV1beta::SetIamPolicyRequest] set_iam_policy_request_object
|
404
406
|
# @param [String] fields
|
405
407
|
# Selector specifying which fields to include in a partial response.
|
@@ -436,8 +438,9 @@ module Google
|
|
436
438
|
# permission-aware UIs and command-line tools, not for authorization checking.
|
437
439
|
# This operation may "fail open" without warning.
|
438
440
|
# @param [String] resource
|
439
|
-
# REQUIRED: The resource for which the policy detail is being requested. See
|
440
|
-
#
|
441
|
+
# REQUIRED: The resource for which the policy detail is being requested. See [
|
442
|
+
# Resource names](https://cloud.google.com/apis/design/resource_names) for the
|
443
|
+
# appropriate value for this field.
|
441
444
|
# @param [Google::Apis::GkehubV1beta::TestIamPermissionsRequest] test_iam_permissions_request_object
|
442
445
|
# @param [String] fields
|
443
446
|
# Selector specifying which fields to include in a partial response.
|
@@ -471,8 +474,9 @@ module Google
|
|
471
474
|
# Gets the access control policy for a resource. Returns an empty policy if the
|
472
475
|
# resource exists and does not have a policy set.
|
473
476
|
# @param [String] resource
|
474
|
-
# REQUIRED: The resource for which the policy is being requested. See
|
475
|
-
#
|
477
|
+
# REQUIRED: The resource for which the policy is being requested. See [Resource
|
478
|
+
# names](https://cloud.google.com/apis/design/resource_names) for the
|
479
|
+
# appropriate value for this field.
|
476
480
|
# @param [Fixnum] options_requested_policy_version
|
477
481
|
# Optional. The maximum policy version that will be used to format the policy.
|
478
482
|
# Valid values are 0, 1, and 3. Requests specifying an invalid value will be
|
@@ -516,8 +520,9 @@ module Google
|
|
516
520
|
# existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `
|
517
521
|
# PERMISSION_DENIED` errors.
|
518
522
|
# @param [String] resource
|
519
|
-
# REQUIRED: The resource for which the policy is being specified. See
|
520
|
-
#
|
523
|
+
# REQUIRED: The resource for which the policy is being specified. See [Resource
|
524
|
+
# names](https://cloud.google.com/apis/design/resource_names) for the
|
525
|
+
# appropriate value for this field.
|
521
526
|
# @param [Google::Apis::GkehubV1beta::SetIamPolicyRequest] set_iam_policy_request_object
|
522
527
|
# @param [String] fields
|
523
528
|
# Selector specifying which fields to include in a partial response.
|
@@ -554,8 +559,9 @@ module Google
|
|
554
559
|
# permission-aware UIs and command-line tools, not for authorization checking.
|
555
560
|
# This operation may "fail open" without warning.
|
556
561
|
# @param [String] resource
|
557
|
-
# REQUIRED: The resource for which the policy detail is being requested. See
|
558
|
-
#
|
562
|
+
# REQUIRED: The resource for which the policy detail is being requested. See [
|
563
|
+
# Resource names](https://cloud.google.com/apis/design/resource_names) for the
|
564
|
+
# appropriate value for this field.
|
559
565
|
# @param [Google::Apis::GkehubV1beta::TestIamPermissionsRequest] test_iam_permissions_request_object
|
560
566
|
# @param [String] fields
|
561
567
|
# 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_v1beta
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.25.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-05-
|
11
|
+
date: 2022-05-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -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_v1beta/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-gkehub_v1beta/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-gkehub_v1beta/v0.25.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-gkehub_v1beta
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|