google-apis-gkehub_v1alpha 0.26.0 → 0.29.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: 232c9f76149741fb56a933c296b31f08365e8cba5cf099425c574565be0ef2c7
|
4
|
+
data.tar.gz: f3f341277a7ab0a1acbb70d7e00bf4e1f7f3252a8947febb784e9cc8af1a682a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cb07ca2bc0d1ffa96cd91d4961ed570b6ca174f132bc1bf7aee5ccbfb4ab3263828d91e4fd74ef181eb0c2dc4b4e11db5d0e4067015db53381ff5402543ecd59
|
7
|
+
data.tar.gz: de346d24ea5f6f10296f19bda564b95709df153576925583a0ae67983d070e718e4961591ff815689cfd22f531e6928e7b3b41d1e1674910a9be57c774f991b2
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,17 @@
|
|
1
1
|
# Release history for google-apis-gkehub_v1alpha
|
2
2
|
|
3
|
+
### v0.29.0 (2022-05-16)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20220505
|
6
|
+
|
7
|
+
### v0.28.0 (2022-05-08)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20220429
|
10
|
+
|
11
|
+
### v0.27.0 (2022-04-30)
|
12
|
+
|
13
|
+
* Regenerated from discovery document revision 20220422
|
14
|
+
|
3
15
|
### v0.26.0 (2022-04-16)
|
4
16
|
|
5
17
|
* Regenerated from discovery document revision 20220408
|
@@ -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::GkehubV1alpha::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::GkehubV1alpha::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::GkehubV1alpha::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::GkehubV1alpha::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::GkehubV1alpha::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::GkehubV1alpha::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::GkehubV1alpha::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
|
@@ -122,8 +245,8 @@ module Google
|
|
122
245
|
# "audit_log_configs": [ ` "log_type": "DATA_READ" `, ` "log_type": "DATA_WRITE"
|
123
246
|
# , "exempted_members": [ "user:aliya@example.com" ] ` ] ` ] ` For sampleservice,
|
124
247
|
# this policy enables DATA_READ, DATA_WRITE and ADMIN_READ logging. It also
|
125
|
-
# exempts jose@example.com from DATA_READ logging, and aliya@example.com
|
126
|
-
# DATA_WRITE logging.
|
248
|
+
# exempts `jose@example.com` from DATA_READ logging, and `aliya@example.com`
|
249
|
+
# from DATA_WRITE logging.
|
127
250
|
class AuditConfig
|
128
251
|
include Google::Apis::Core::Hashable
|
129
252
|
|
@@ -1881,6 +2004,12 @@ module Google
|
|
1881
2004
|
attr_accessor :deploy_cloud_console_proxy
|
1882
2005
|
alias_method :deploy_cloud_console_proxy?, :deploy_cloud_console_proxy
|
1883
2006
|
|
2007
|
+
# Enable access token.
|
2008
|
+
# Corresponds to the JSON property `enableAccessToken`
|
2009
|
+
# @return [Boolean]
|
2010
|
+
attr_accessor :enable_access_token
|
2011
|
+
alias_method :enable_access_token?, :enable_access_token
|
2012
|
+
|
1884
2013
|
# Output only. Encrypted OIDC Client secret
|
1885
2014
|
# Corresponds to the JSON property `encryptedClientSecret`
|
1886
2015
|
# NOTE: Values are automatically base64 encoded/decoded in the client library.
|
@@ -1939,6 +2068,7 @@ module Google
|
|
1939
2068
|
@client_id = args[:client_id] if args.key?(:client_id)
|
1940
2069
|
@client_secret = args[:client_secret] if args.key?(:client_secret)
|
1941
2070
|
@deploy_cloud_console_proxy = args[:deploy_cloud_console_proxy] if args.key?(:deploy_cloud_console_proxy)
|
2071
|
+
@enable_access_token = args[:enable_access_token] if args.key?(:enable_access_token)
|
1942
2072
|
@encrypted_client_secret = args[:encrypted_client_secret] if args.key?(:encrypted_client_secret)
|
1943
2073
|
@extra_params = args[:extra_params] if args.key?(:extra_params)
|
1944
2074
|
@group_prefix = args[:group_prefix] if args.key?(:group_prefix)
|
@@ -2131,7 +2261,8 @@ module Google
|
|
2131
2261
|
attr_accessor :fleets
|
2132
2262
|
|
2133
2263
|
# A token, which can be sent as `page_token` to retrieve the next page. If this
|
2134
|
-
# field is omitted, there are no subsequent pages.
|
2264
|
+
# field is omitted, there are no subsequent pages. The token is only valid for
|
2265
|
+
# 1h.
|
2135
2266
|
# Corresponds to the JSON property `nextPageToken`
|
2136
2267
|
# @return [String]
|
2137
2268
|
attr_accessor :next_page_token
|
@@ -2230,6 +2361,34 @@ module Google
|
|
2230
2361
|
end
|
2231
2362
|
end
|
2232
2363
|
|
2364
|
+
# LocalControllerState contains the state of the local controller deployed in
|
2365
|
+
# the cluster.
|
2366
|
+
class LocalControllerState
|
2367
|
+
include Google::Apis::Core::Hashable
|
2368
|
+
|
2369
|
+
# Description represents the human readable description of the current state of
|
2370
|
+
# the local PE controller
|
2371
|
+
# Corresponds to the JSON property `description`
|
2372
|
+
# @return [String]
|
2373
|
+
attr_accessor :description
|
2374
|
+
|
2375
|
+
# InstallationState represents the state of deployment of the local PE
|
2376
|
+
# controller in the cluster.
|
2377
|
+
# Corresponds to the JSON property `installationState`
|
2378
|
+
# @return [String]
|
2379
|
+
attr_accessor :installation_state
|
2380
|
+
|
2381
|
+
def initialize(**args)
|
2382
|
+
update!(**args)
|
2383
|
+
end
|
2384
|
+
|
2385
|
+
# Update properties of this object
|
2386
|
+
def update!(**args)
|
2387
|
+
@description = args[:description] if args.key?(:description)
|
2388
|
+
@installation_state = args[:installation_state] if args.key?(:installation_state)
|
2389
|
+
end
|
2390
|
+
end
|
2391
|
+
|
2233
2392
|
# A resource that represents Google Cloud Platform location.
|
2234
2393
|
class Location
|
2235
2394
|
include Google::Apis::Core::Hashable
|
@@ -2443,6 +2602,12 @@ module Google
|
|
2443
2602
|
# @return [Google::Apis::GkehubV1alpha::AnthosObservabilityMembershipSpec]
|
2444
2603
|
attr_accessor :anthosobservability
|
2445
2604
|
|
2605
|
+
# AnthosVMMembershipSpec contains the AnthosVM feature configuration for a
|
2606
|
+
# membership/cluster.
|
2607
|
+
# Corresponds to the JSON property `anthosvm`
|
2608
|
+
# @return [Google::Apis::GkehubV1alpha::AnthosVmMembershipSpec]
|
2609
|
+
attr_accessor :anthosvm
|
2610
|
+
|
2446
2611
|
# **Cloud Build**: Configurations for each Cloud Build enabled cluster.
|
2447
2612
|
# Corresponds to the JSON property `cloudbuild`
|
2448
2613
|
# @return [Google::Apis::GkehubV1alpha::CloudBuildMembershipSpec]
|
@@ -2483,6 +2648,7 @@ module Google
|
|
2483
2648
|
# Update properties of this object
|
2484
2649
|
def update!(**args)
|
2485
2650
|
@anthosobservability = args[:anthosobservability] if args.key?(:anthosobservability)
|
2651
|
+
@anthosvm = args[:anthosvm] if args.key?(:anthosvm)
|
2486
2652
|
@cloudbuild = args[:cloudbuild] if args.key?(:cloudbuild)
|
2487
2653
|
@configmanagement = args[:configmanagement] if args.key?(:configmanagement)
|
2488
2654
|
@identityservice = args[:identityservice] if args.key?(:identityservice)
|
@@ -2497,6 +2663,13 @@ module Google
|
|
2497
2663
|
class MembershipFeatureState
|
2498
2664
|
include Google::Apis::Core::Hashable
|
2499
2665
|
|
2666
|
+
# AnthosVMFeatureState contains the state of the AnthosVM feature. It represents
|
2667
|
+
# the actual state in the cluster, while the AnthosVMMembershipSpec represents
|
2668
|
+
# the desired state.
|
2669
|
+
# Corresponds to the JSON property `anthosvm`
|
2670
|
+
# @return [Google::Apis::GkehubV1alpha::AnthosVmMembershipState]
|
2671
|
+
attr_accessor :anthosvm
|
2672
|
+
|
2500
2673
|
# State for App Dev Exp Feature.
|
2501
2674
|
# Corresponds to the JSON property `appdevexperience`
|
2502
2675
|
# @return [Google::Apis::GkehubV1alpha::AppDevExperienceFeatureState]
|
@@ -2541,6 +2714,7 @@ module Google
|
|
2541
2714
|
|
2542
2715
|
# Update properties of this object
|
2543
2716
|
def update!(**args)
|
2717
|
+
@anthosvm = args[:anthosvm] if args.key?(:anthosvm)
|
2544
2718
|
@appdevexperience = args[:appdevexperience] if args.key?(:appdevexperience)
|
2545
2719
|
@configmanagement = args[:configmanagement] if args.key?(:configmanagement)
|
2546
2720
|
@identityservice = args[:identityservice] if args.key?(:identityservice)
|
@@ -2617,6 +2791,32 @@ module Google
|
|
2617
2791
|
end
|
2618
2792
|
end
|
2619
2793
|
|
2794
|
+
# MigrateSpec contains the migrate subfeature configuration.
|
2795
|
+
class MigrateSpec
|
2796
|
+
include Google::Apis::Core::Hashable
|
2797
|
+
|
2798
|
+
def initialize(**args)
|
2799
|
+
update!(**args)
|
2800
|
+
end
|
2801
|
+
|
2802
|
+
# Update properties of this object
|
2803
|
+
def update!(**args)
|
2804
|
+
end
|
2805
|
+
end
|
2806
|
+
|
2807
|
+
# MigrateState contains the state of Migrate subfeature
|
2808
|
+
class MigrateState
|
2809
|
+
include Google::Apis::Core::Hashable
|
2810
|
+
|
2811
|
+
def initialize(**args)
|
2812
|
+
update!(**args)
|
2813
|
+
end
|
2814
|
+
|
2815
|
+
# Update properties of this object
|
2816
|
+
def update!(**args)
|
2817
|
+
end
|
2818
|
+
end
|
2819
|
+
|
2620
2820
|
# MultiCloudCluster contains information specific to GKE Multi-Cloud clusters.
|
2621
2821
|
class MultiCloudCluster
|
2622
2822
|
include Google::Apis::Core::Hashable
|
@@ -3379,6 +3579,32 @@ module Google
|
|
3379
3579
|
end
|
3380
3580
|
end
|
3381
3581
|
|
3582
|
+
# ServiceMeshSpec contains the serviceMesh subfeature configuration.
|
3583
|
+
class ServiceMeshSpec
|
3584
|
+
include Google::Apis::Core::Hashable
|
3585
|
+
|
3586
|
+
def initialize(**args)
|
3587
|
+
update!(**args)
|
3588
|
+
end
|
3589
|
+
|
3590
|
+
# Update properties of this object
|
3591
|
+
def update!(**args)
|
3592
|
+
end
|
3593
|
+
end
|
3594
|
+
|
3595
|
+
# ServiceMeshState contains the state of Service Mesh subfeature
|
3596
|
+
class ServiceMeshState
|
3597
|
+
include Google::Apis::Core::Hashable
|
3598
|
+
|
3599
|
+
def initialize(**args)
|
3600
|
+
update!(**args)
|
3601
|
+
end
|
3602
|
+
|
3603
|
+
# Update properties of this object
|
3604
|
+
def update!(**args)
|
3605
|
+
end
|
3606
|
+
end
|
3607
|
+
|
3382
3608
|
# Structured and human-readable details for a status.
|
3383
3609
|
class ServiceMeshStatusDetails
|
3384
3610
|
include Google::Apis::Core::Hashable
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module GkehubV1alpha
|
18
18
|
# Version of the google-apis-gkehub_v1alpha gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.29.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
|
|
@@ -388,6 +412,12 @@ module Google
|
|
388
412
|
include Google::Apis::Core::JsonObjectSupport
|
389
413
|
end
|
390
414
|
|
415
|
+
class LocalControllerState
|
416
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
417
|
+
|
418
|
+
include Google::Apis::Core::JsonObjectSupport
|
419
|
+
end
|
420
|
+
|
391
421
|
class Location
|
392
422
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
393
423
|
|
@@ -436,6 +466,18 @@ module Google
|
|
436
466
|
include Google::Apis::Core::JsonObjectSupport
|
437
467
|
end
|
438
468
|
|
469
|
+
class MigrateSpec
|
470
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
471
|
+
|
472
|
+
include Google::Apis::Core::JsonObjectSupport
|
473
|
+
end
|
474
|
+
|
475
|
+
class MigrateState
|
476
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
477
|
+
|
478
|
+
include Google::Apis::Core::JsonObjectSupport
|
479
|
+
end
|
480
|
+
|
439
481
|
class MultiCloudCluster
|
440
482
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
441
483
|
|
@@ -556,6 +598,18 @@ module Google
|
|
556
598
|
include Google::Apis::Core::JsonObjectSupport
|
557
599
|
end
|
558
600
|
|
601
|
+
class ServiceMeshSpec
|
602
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
603
|
+
|
604
|
+
include Google::Apis::Core::JsonObjectSupport
|
605
|
+
end
|
606
|
+
|
607
|
+
class ServiceMeshState
|
608
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
609
|
+
|
610
|
+
include Google::Apis::Core::JsonObjectSupport
|
611
|
+
end
|
612
|
+
|
559
613
|
class ServiceMeshStatusDetails
|
560
614
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
561
615
|
|
@@ -615,6 +669,47 @@ module Google
|
|
615
669
|
end
|
616
670
|
end
|
617
671
|
|
672
|
+
class AnthosVmMembershipSpec
|
673
|
+
# @private
|
674
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
675
|
+
collection :subfeatures_spec, as: 'subfeaturesSpec', class: Google::Apis::GkehubV1alpha::AnthosVmSubFeatureSpec, decorator: Google::Apis::GkehubV1alpha::AnthosVmSubFeatureSpec::Representation
|
676
|
+
|
677
|
+
end
|
678
|
+
end
|
679
|
+
|
680
|
+
class AnthosVmMembershipState
|
681
|
+
# @private
|
682
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
683
|
+
property :local_controller_state, as: 'localControllerState', class: Google::Apis::GkehubV1alpha::LocalControllerState, decorator: Google::Apis::GkehubV1alpha::LocalControllerState::Representation
|
684
|
+
|
685
|
+
collection :subfeature_state, as: 'subfeatureState', class: Google::Apis::GkehubV1alpha::AnthosVmSubFeatureState, decorator: Google::Apis::GkehubV1alpha::AnthosVmSubFeatureState::Representation
|
686
|
+
|
687
|
+
end
|
688
|
+
end
|
689
|
+
|
690
|
+
class AnthosVmSubFeatureSpec
|
691
|
+
# @private
|
692
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
693
|
+
property :enabled, as: 'enabled'
|
694
|
+
property :migrate_spec, as: 'migrateSpec', class: Google::Apis::GkehubV1alpha::MigrateSpec, decorator: Google::Apis::GkehubV1alpha::MigrateSpec::Representation
|
695
|
+
|
696
|
+
property :service_mesh_spec, as: 'serviceMeshSpec', class: Google::Apis::GkehubV1alpha::ServiceMeshSpec, decorator: Google::Apis::GkehubV1alpha::ServiceMeshSpec::Representation
|
697
|
+
|
698
|
+
end
|
699
|
+
end
|
700
|
+
|
701
|
+
class AnthosVmSubFeatureState
|
702
|
+
# @private
|
703
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
704
|
+
property :description, as: 'description'
|
705
|
+
property :installation_state, as: 'installationState'
|
706
|
+
property :migrate_state, as: 'migrateState', class: Google::Apis::GkehubV1alpha::MigrateState, decorator: Google::Apis::GkehubV1alpha::MigrateState::Representation
|
707
|
+
|
708
|
+
property :service_mesh_state, as: 'serviceMeshState', class: Google::Apis::GkehubV1alpha::ServiceMeshState, decorator: Google::Apis::GkehubV1alpha::ServiceMeshState::Representation
|
709
|
+
|
710
|
+
end
|
711
|
+
end
|
712
|
+
|
618
713
|
class AppDevExperienceFeatureSpec
|
619
714
|
# @private
|
620
715
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1122,6 +1217,7 @@ module Google
|
|
1122
1217
|
property :client_id, as: 'clientId'
|
1123
1218
|
property :client_secret, as: 'clientSecret'
|
1124
1219
|
property :deploy_cloud_console_proxy, as: 'deployCloudConsoleProxy'
|
1220
|
+
property :enable_access_token, as: 'enableAccessToken'
|
1125
1221
|
property :encrypted_client_secret, :base64 => true, as: 'encryptedClientSecret'
|
1126
1222
|
property :extra_params, as: 'extraParams'
|
1127
1223
|
property :group_prefix, as: 'groupPrefix'
|
@@ -1215,6 +1311,14 @@ module Google
|
|
1215
1311
|
end
|
1216
1312
|
end
|
1217
1313
|
|
1314
|
+
class LocalControllerState
|
1315
|
+
# @private
|
1316
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1317
|
+
property :description, as: 'description'
|
1318
|
+
property :installation_state, as: 'installationState'
|
1319
|
+
end
|
1320
|
+
end
|
1321
|
+
|
1218
1322
|
class Location
|
1219
1323
|
# @private
|
1220
1324
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1270,6 +1374,8 @@ module Google
|
|
1270
1374
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1271
1375
|
property :anthosobservability, as: 'anthosobservability', class: Google::Apis::GkehubV1alpha::AnthosObservabilityMembershipSpec, decorator: Google::Apis::GkehubV1alpha::AnthosObservabilityMembershipSpec::Representation
|
1272
1376
|
|
1377
|
+
property :anthosvm, as: 'anthosvm', class: Google::Apis::GkehubV1alpha::AnthosVmMembershipSpec, decorator: Google::Apis::GkehubV1alpha::AnthosVmMembershipSpec::Representation
|
1378
|
+
|
1273
1379
|
property :cloudbuild, as: 'cloudbuild', class: Google::Apis::GkehubV1alpha::CloudBuildMembershipSpec, decorator: Google::Apis::GkehubV1alpha::CloudBuildMembershipSpec::Representation
|
1274
1380
|
|
1275
1381
|
property :configmanagement, as: 'configmanagement', class: Google::Apis::GkehubV1alpha::ConfigManagementMembershipSpec, decorator: Google::Apis::GkehubV1alpha::ConfigManagementMembershipSpec::Representation
|
@@ -1288,6 +1394,8 @@ module Google
|
|
1288
1394
|
class MembershipFeatureState
|
1289
1395
|
# @private
|
1290
1396
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1397
|
+
property :anthosvm, as: 'anthosvm', class: Google::Apis::GkehubV1alpha::AnthosVmMembershipState, decorator: Google::Apis::GkehubV1alpha::AnthosVmMembershipState::Representation
|
1398
|
+
|
1291
1399
|
property :appdevexperience, as: 'appdevexperience', class: Google::Apis::GkehubV1alpha::AppDevExperienceFeatureState, decorator: Google::Apis::GkehubV1alpha::AppDevExperienceFeatureState::Representation
|
1292
1400
|
|
1293
1401
|
property :configmanagement, as: 'configmanagement', class: Google::Apis::GkehubV1alpha::ConfigManagementMembershipState, decorator: Google::Apis::GkehubV1alpha::ConfigManagementMembershipState::Representation
|
@@ -1327,6 +1435,18 @@ module Google
|
|
1327
1435
|
end
|
1328
1436
|
end
|
1329
1437
|
|
1438
|
+
class MigrateSpec
|
1439
|
+
# @private
|
1440
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1441
|
+
end
|
1442
|
+
end
|
1443
|
+
|
1444
|
+
class MigrateState
|
1445
|
+
# @private
|
1446
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1447
|
+
end
|
1448
|
+
end
|
1449
|
+
|
1330
1450
|
class MultiCloudCluster
|
1331
1451
|
# @private
|
1332
1452
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1521,6 +1641,18 @@ module Google
|
|
1521
1641
|
end
|
1522
1642
|
end
|
1523
1643
|
|
1644
|
+
class ServiceMeshSpec
|
1645
|
+
# @private
|
1646
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1647
|
+
end
|
1648
|
+
end
|
1649
|
+
|
1650
|
+
class ServiceMeshState
|
1651
|
+
# @private
|
1652
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1653
|
+
end
|
1654
|
+
end
|
1655
|
+
|
1524
1656
|
class ServiceMeshStatusDetails
|
1525
1657
|
# @private
|
1526
1658
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -54,10 +54,14 @@ module Google
|
|
54
54
|
# @param [String] parent
|
55
55
|
# Required. The organization or project to list for Fleets under, in the format `
|
56
56
|
# organizations/*/locations/*` or `projects/*/locations/*`.
|
57
|
+
# @param [Fixnum] page_size
|
58
|
+
# Optional. The maximum number of fleets to return. The service may return fewer
|
59
|
+
# than this value. If unspecified, at most 200 fleets will be returned. The
|
60
|
+
# maximum value is 1000; values above 1000 will be coerced to 1000.
|
57
61
|
# @param [String] page_token
|
58
|
-
# A page token, received from a previous `ListFleets` call. Provide
|
59
|
-
# retrieve the subsequent page. When paginating, all other parameters
|
60
|
-
# to `ListFleets` must match the call that provided the page token.
|
62
|
+
# Optional. A page token, received from a previous `ListFleets` call. Provide
|
63
|
+
# this to retrieve the subsequent page. When paginating, all other parameters
|
64
|
+
# provided to `ListFleets` must match the call that provided the page token.
|
61
65
|
# @param [String] fields
|
62
66
|
# Selector specifying which fields to include in a partial response.
|
63
67
|
# @param [String] quota_user
|
@@ -75,11 +79,12 @@ module Google
|
|
75
79
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
76
80
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
77
81
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
78
|
-
def list_organization_location_fleets(parent, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
82
|
+
def list_organization_location_fleets(parent, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
79
83
|
command = make_simple_command(:get, 'v1alpha/{+parent}/fleets', options)
|
80
84
|
command.response_representation = Google::Apis::GkehubV1alpha::ListFleetsResponse::Representation
|
81
85
|
command.response_class = Google::Apis::GkehubV1alpha::ListFleetsResponse
|
82
86
|
command.params['parent'] = parent unless parent.nil?
|
87
|
+
command.query['pageSize'] = page_size unless page_size.nil?
|
83
88
|
command.query['pageToken'] = page_token unless page_token.nil?
|
84
89
|
command.query['fields'] = fields unless fields.nil?
|
85
90
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
@@ -290,8 +295,9 @@ module Google
|
|
290
295
|
# Gets the access control policy for a resource. Returns an empty policy if the
|
291
296
|
# resource exists and does not have a policy set.
|
292
297
|
# @param [String] resource
|
293
|
-
# REQUIRED: The resource for which the policy is being requested. See
|
294
|
-
#
|
298
|
+
# REQUIRED: The resource for which the policy is being requested. See [Resource
|
299
|
+
# names](https://cloud.google.com/apis/design/resource_names) for the
|
300
|
+
# appropriate value for this field.
|
295
301
|
# @param [Fixnum] options_requested_policy_version
|
296
302
|
# Optional. The maximum policy version that will be used to format the policy.
|
297
303
|
# Valid values are 0, 1, and 3. Requests specifying an invalid value will be
|
@@ -435,8 +441,9 @@ module Google
|
|
435
441
|
# existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `
|
436
442
|
# PERMISSION_DENIED` errors.
|
437
443
|
# @param [String] resource
|
438
|
-
# REQUIRED: The resource for which the policy is being specified. See
|
439
|
-
#
|
444
|
+
# REQUIRED: The resource for which the policy is being specified. See [Resource
|
445
|
+
# names](https://cloud.google.com/apis/design/resource_names) for the
|
446
|
+
# appropriate value for this field.
|
440
447
|
# @param [Google::Apis::GkehubV1alpha::SetIamPolicyRequest] set_iam_policy_request_object
|
441
448
|
# @param [String] fields
|
442
449
|
# Selector specifying which fields to include in a partial response.
|
@@ -473,8 +480,9 @@ module Google
|
|
473
480
|
# permission-aware UIs and command-line tools, not for authorization checking.
|
474
481
|
# This operation may "fail open" without warning.
|
475
482
|
# @param [String] resource
|
476
|
-
# REQUIRED: The resource for which the policy detail is being requested. See
|
477
|
-
#
|
483
|
+
# REQUIRED: The resource for which the policy detail is being requested. See [
|
484
|
+
# Resource names](https://cloud.google.com/apis/design/resource_names) for the
|
485
|
+
# appropriate value for this field.
|
478
486
|
# @param [Google::Apis::GkehubV1alpha::TestIamPermissionsRequest] test_iam_permissions_request_object
|
479
487
|
# @param [String] fields
|
480
488
|
# Selector specifying which fields to include in a partial response.
|
@@ -606,10 +614,14 @@ module Google
|
|
606
614
|
# @param [String] parent
|
607
615
|
# Required. The organization or project to list for Fleets under, in the format `
|
608
616
|
# organizations/*/locations/*` or `projects/*/locations/*`.
|
617
|
+
# @param [Fixnum] page_size
|
618
|
+
# Optional. The maximum number of fleets to return. The service may return fewer
|
619
|
+
# than this value. If unspecified, at most 200 fleets will be returned. The
|
620
|
+
# maximum value is 1000; values above 1000 will be coerced to 1000.
|
609
621
|
# @param [String] page_token
|
610
|
-
# A page token, received from a previous `ListFleets` call. Provide
|
611
|
-
# retrieve the subsequent page. When paginating, all other parameters
|
612
|
-
# to `ListFleets` must match the call that provided the page token.
|
622
|
+
# Optional. A page token, received from a previous `ListFleets` call. Provide
|
623
|
+
# this to retrieve the subsequent page. When paginating, all other parameters
|
624
|
+
# provided to `ListFleets` must match the call that provided the page token.
|
613
625
|
# @param [String] fields
|
614
626
|
# Selector specifying which fields to include in a partial response.
|
615
627
|
# @param [String] quota_user
|
@@ -627,11 +639,12 @@ module Google
|
|
627
639
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
628
640
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
629
641
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
630
|
-
def list_project_location_fleets(parent, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
642
|
+
def list_project_location_fleets(parent, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
631
643
|
command = make_simple_command(:get, 'v1alpha/{+parent}/fleets', options)
|
632
644
|
command.response_representation = Google::Apis::GkehubV1alpha::ListFleetsResponse::Representation
|
633
645
|
command.response_class = Google::Apis::GkehubV1alpha::ListFleetsResponse
|
634
646
|
command.params['parent'] = parent unless parent.nil?
|
647
|
+
command.query['pageSize'] = page_size unless page_size.nil?
|
635
648
|
command.query['pageToken'] = page_token unless page_token.nil?
|
636
649
|
command.query['fields'] = fields unless fields.nil?
|
637
650
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
@@ -873,8 +886,9 @@ module Google
|
|
873
886
|
# Gets the access control policy for a resource. Returns an empty policy if the
|
874
887
|
# resource exists and does not have a policy set.
|
875
888
|
# @param [String] resource
|
876
|
-
# REQUIRED: The resource for which the policy is being requested. See
|
877
|
-
#
|
889
|
+
# REQUIRED: The resource for which the policy is being requested. See [Resource
|
890
|
+
# names](https://cloud.google.com/apis/design/resource_names) for the
|
891
|
+
# appropriate value for this field.
|
878
892
|
# @param [Fixnum] options_requested_policy_version
|
879
893
|
# Optional. The maximum policy version that will be used to format the policy.
|
880
894
|
# Valid values are 0, 1, and 3. Requests specifying an invalid value will be
|
@@ -1068,8 +1082,9 @@ module Google
|
|
1068
1082
|
# existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `
|
1069
1083
|
# PERMISSION_DENIED` errors.
|
1070
1084
|
# @param [String] resource
|
1071
|
-
# REQUIRED: The resource for which the policy is being specified. See
|
1072
|
-
#
|
1085
|
+
# REQUIRED: The resource for which the policy is being specified. See [Resource
|
1086
|
+
# names](https://cloud.google.com/apis/design/resource_names) for the
|
1087
|
+
# appropriate value for this field.
|
1073
1088
|
# @param [Google::Apis::GkehubV1alpha::SetIamPolicyRequest] set_iam_policy_request_object
|
1074
1089
|
# @param [String] fields
|
1075
1090
|
# Selector specifying which fields to include in a partial response.
|
@@ -1106,8 +1121,9 @@ module Google
|
|
1106
1121
|
# permission-aware UIs and command-line tools, not for authorization checking.
|
1107
1122
|
# This operation may "fail open" without warning.
|
1108
1123
|
# @param [String] resource
|
1109
|
-
# REQUIRED: The resource for which the policy detail is being requested. See
|
1110
|
-
#
|
1124
|
+
# REQUIRED: The resource for which the policy detail is being requested. See [
|
1125
|
+
# Resource names](https://cloud.google.com/apis/design/resource_names) for the
|
1126
|
+
# appropriate value for this field.
|
1111
1127
|
# @param [Google::Apis::GkehubV1alpha::TestIamPermissionsRequest] test_iam_permissions_request_object
|
1112
1128
|
# @param [String] fields
|
1113
1129
|
# 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_v1alpha
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.29.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-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_v1alpha/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-gkehub_v1alpha/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-gkehub_v1alpha/v0.29.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-gkehub_v1alpha
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|