google-apis-gkehub_v1 0.36.0 → 0.37.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/google/apis/gkehub_v1/classes.rb +53 -218
- data/lib/google/apis/gkehub_v1/gem_version.rb +2 -2
- data/lib/google/apis/gkehub_v1/representations.rb +19 -131
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a01fab5814b5bc7708cabac32a832c203fe020f5f01ed6350a1989d1a14b9e72
|
4
|
+
data.tar.gz: 5ea68576466c3a6a5f19751d70347b383fa33c6a79c3e0716f335a6b6255848c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 562e5f381a428b6e58dc1d895defb57e46f85e37d2eda6368c092f0a3752ad19d8a88c5da942d2550f6ee0351ba67086763c6d67da8f0ffc1350aa513561db9c
|
7
|
+
data.tar.gz: c4faedab43b07c2980a58d01ca02afffc333da1d1a608764a9b19fa30fd408bd25e0cba1422046ef5369fe72fe27268fc77b8d025e9195c4ca51bc78cd276197
|
data/CHANGELOG.md
CHANGED
@@ -22,129 +22,6 @@ module Google
|
|
22
22
|
module Apis
|
23
23
|
module GkehubV1
|
24
24
|
|
25
|
-
# AnthosVMMembershipSpec contains the AnthosVM feature configuration for a
|
26
|
-
# membership/cluster.
|
27
|
-
class AnthosVmMembershipSpec
|
28
|
-
include Google::Apis::Core::Hashable
|
29
|
-
|
30
|
-
# List of configurations of the Anthos For VM subfeatures that are to be enabled
|
31
|
-
# Corresponds to the JSON property `subfeaturesSpec`
|
32
|
-
# @return [Array<Google::Apis::GkehubV1::AnthosVmSubFeatureSpec>]
|
33
|
-
attr_accessor :subfeatures_spec
|
34
|
-
|
35
|
-
def initialize(**args)
|
36
|
-
update!(**args)
|
37
|
-
end
|
38
|
-
|
39
|
-
# Update properties of this object
|
40
|
-
def update!(**args)
|
41
|
-
@subfeatures_spec = args[:subfeatures_spec] if args.key?(:subfeatures_spec)
|
42
|
-
end
|
43
|
-
end
|
44
|
-
|
45
|
-
# AnthosVMFeatureState contains the state of the AnthosVM feature. It represents
|
46
|
-
# the actual state in the cluster, while the AnthosVMMembershipSpec represents
|
47
|
-
# the desired state.
|
48
|
-
class AnthosVmMembershipState
|
49
|
-
include Google::Apis::Core::Hashable
|
50
|
-
|
51
|
-
# LocalControllerState contains the state of the local controller deployed in
|
52
|
-
# the cluster.
|
53
|
-
# Corresponds to the JSON property `localControllerState`
|
54
|
-
# @return [Google::Apis::GkehubV1::LocalControllerState]
|
55
|
-
attr_accessor :local_controller_state
|
56
|
-
|
57
|
-
# List of AnthosVM subfeature states
|
58
|
-
# Corresponds to the JSON property `subfeatureState`
|
59
|
-
# @return [Array<Google::Apis::GkehubV1::AnthosVmSubFeatureState>]
|
60
|
-
attr_accessor :subfeature_state
|
61
|
-
|
62
|
-
def initialize(**args)
|
63
|
-
update!(**args)
|
64
|
-
end
|
65
|
-
|
66
|
-
# Update properties of this object
|
67
|
-
def update!(**args)
|
68
|
-
@local_controller_state = args[:local_controller_state] if args.key?(:local_controller_state)
|
69
|
-
@subfeature_state = args[:subfeature_state] if args.key?(:subfeature_state)
|
70
|
-
end
|
71
|
-
end
|
72
|
-
|
73
|
-
# AnthosVMSubFeatureSpec contains the subfeature configuration for a membership/
|
74
|
-
# cluster.
|
75
|
-
class AnthosVmSubFeatureSpec
|
76
|
-
include Google::Apis::Core::Hashable
|
77
|
-
|
78
|
-
# Indicates whether the subfeature should be enabled on the cluster or not. If
|
79
|
-
# set to true, the subfeature's control plane and resources will be installed in
|
80
|
-
# the cluster. If set to false, the oneof spec if present will be ignored and
|
81
|
-
# nothing will be installed in the cluster.
|
82
|
-
# Corresponds to the JSON property `enabled`
|
83
|
-
# @return [Boolean]
|
84
|
-
attr_accessor :enabled
|
85
|
-
alias_method :enabled?, :enabled
|
86
|
-
|
87
|
-
# MigrateSpec contains the migrate subfeature configuration.
|
88
|
-
# Corresponds to the JSON property `migrateSpec`
|
89
|
-
# @return [Google::Apis::GkehubV1::MigrateSpec]
|
90
|
-
attr_accessor :migrate_spec
|
91
|
-
|
92
|
-
# ServiceMeshSpec contains the serviceMesh subfeature configuration.
|
93
|
-
# Corresponds to the JSON property `serviceMeshSpec`
|
94
|
-
# @return [Google::Apis::GkehubV1::ServiceMeshSpec]
|
95
|
-
attr_accessor :service_mesh_spec
|
96
|
-
|
97
|
-
def initialize(**args)
|
98
|
-
update!(**args)
|
99
|
-
end
|
100
|
-
|
101
|
-
# Update properties of this object
|
102
|
-
def update!(**args)
|
103
|
-
@enabled = args[:enabled] if args.key?(:enabled)
|
104
|
-
@migrate_spec = args[:migrate_spec] if args.key?(:migrate_spec)
|
105
|
-
@service_mesh_spec = args[:service_mesh_spec] if args.key?(:service_mesh_spec)
|
106
|
-
end
|
107
|
-
end
|
108
|
-
|
109
|
-
# AnthosVMSubFeatureState contains the state of the AnthosVM subfeatures.
|
110
|
-
class AnthosVmSubFeatureState
|
111
|
-
include Google::Apis::Core::Hashable
|
112
|
-
|
113
|
-
# Description represents human readable description of the subfeature state. If
|
114
|
-
# the deployment failed, this should also contain the reason for the failure.
|
115
|
-
# Corresponds to the JSON property `description`
|
116
|
-
# @return [String]
|
117
|
-
attr_accessor :description
|
118
|
-
|
119
|
-
# InstallationState represents the state of installation of the subfeature in
|
120
|
-
# the cluster.
|
121
|
-
# Corresponds to the JSON property `installationState`
|
122
|
-
# @return [String]
|
123
|
-
attr_accessor :installation_state
|
124
|
-
|
125
|
-
# MigrateState contains the state of Migrate subfeature
|
126
|
-
# Corresponds to the JSON property `migrateState`
|
127
|
-
# @return [Google::Apis::GkehubV1::MigrateState]
|
128
|
-
attr_accessor :migrate_state
|
129
|
-
|
130
|
-
# ServiceMeshState contains the state of Service Mesh subfeature
|
131
|
-
# Corresponds to the JSON property `serviceMeshState`
|
132
|
-
# @return [Google::Apis::GkehubV1::ServiceMeshState]
|
133
|
-
attr_accessor :service_mesh_state
|
134
|
-
|
135
|
-
def initialize(**args)
|
136
|
-
update!(**args)
|
137
|
-
end
|
138
|
-
|
139
|
-
# Update properties of this object
|
140
|
-
def update!(**args)
|
141
|
-
@description = args[:description] if args.key?(:description)
|
142
|
-
@installation_state = args[:installation_state] if args.key?(:installation_state)
|
143
|
-
@migrate_state = args[:migrate_state] if args.key?(:migrate_state)
|
144
|
-
@service_mesh_state = args[:service_mesh_state] if args.key?(:service_mesh_state)
|
145
|
-
end
|
146
|
-
end
|
147
|
-
|
148
25
|
# Spec for App Dev Experience Feature.
|
149
26
|
class AppDevExperienceFeatureSpec
|
150
27
|
include Google::Apis::Core::Hashable
|
@@ -1806,6 +1683,11 @@ module Google
|
|
1806
1683
|
class IdentityServiceAuthMethod
|
1807
1684
|
include Google::Apis::Core::Hashable
|
1808
1685
|
|
1686
|
+
# Configuration for the AzureAD Auth flow.
|
1687
|
+
# Corresponds to the JSON property `azureadConfig`
|
1688
|
+
# @return [Google::Apis::GkehubV1::IdentityServiceAzureAdConfig]
|
1689
|
+
attr_accessor :azuread_config
|
1690
|
+
|
1809
1691
|
# Configuration for the Google Plugin Auth flow.
|
1810
1692
|
# Corresponds to the JSON property `googleConfig`
|
1811
1693
|
# @return [Google::Apis::GkehubV1::IdentityServiceGoogleConfig]
|
@@ -1832,6 +1714,7 @@ module Google
|
|
1832
1714
|
|
1833
1715
|
# Update properties of this object
|
1834
1716
|
def update!(**args)
|
1717
|
+
@azuread_config = args[:azuread_config] if args.key?(:azuread_config)
|
1835
1718
|
@google_config = args[:google_config] if args.key?(:google_config)
|
1836
1719
|
@name = args[:name] if args.key?(:name)
|
1837
1720
|
@oidc_config = args[:oidc_config] if args.key?(:oidc_config)
|
@@ -1839,6 +1722,53 @@ module Google
|
|
1839
1722
|
end
|
1840
1723
|
end
|
1841
1724
|
|
1725
|
+
# Configuration for the AzureAD Auth flow.
|
1726
|
+
class IdentityServiceAzureAdConfig
|
1727
|
+
include Google::Apis::Core::Hashable
|
1728
|
+
|
1729
|
+
# ID for the registered client application that makes authentication requests to
|
1730
|
+
# the Azure AD identity provider.
|
1731
|
+
# Corresponds to the JSON property `clientId`
|
1732
|
+
# @return [String]
|
1733
|
+
attr_accessor :client_id
|
1734
|
+
|
1735
|
+
# Input only. Unencrypted AzureAD client secret will be passed to the GKE Hub
|
1736
|
+
# CLH.
|
1737
|
+
# Corresponds to the JSON property `clientSecret`
|
1738
|
+
# @return [String]
|
1739
|
+
attr_accessor :client_secret
|
1740
|
+
|
1741
|
+
# Output only. Encrypted AzureAD client secret.
|
1742
|
+
# Corresponds to the JSON property `encryptedClientSecret`
|
1743
|
+
# NOTE: Values are automatically base64 encoded/decoded in the client library.
|
1744
|
+
# @return [String]
|
1745
|
+
attr_accessor :encrypted_client_secret
|
1746
|
+
|
1747
|
+
# The redirect URL that kubectl uses for authorization.
|
1748
|
+
# Corresponds to the JSON property `kubectlRedirectUri`
|
1749
|
+
# @return [String]
|
1750
|
+
attr_accessor :kubectl_redirect_uri
|
1751
|
+
|
1752
|
+
# Kind of Azure AD account to be authenticated. Supported values are or for
|
1753
|
+
# accounts belonging to a specific tenant.
|
1754
|
+
# Corresponds to the JSON property `tenant`
|
1755
|
+
# @return [String]
|
1756
|
+
attr_accessor :tenant
|
1757
|
+
|
1758
|
+
def initialize(**args)
|
1759
|
+
update!(**args)
|
1760
|
+
end
|
1761
|
+
|
1762
|
+
# Update properties of this object
|
1763
|
+
def update!(**args)
|
1764
|
+
@client_id = args[:client_id] if args.key?(:client_id)
|
1765
|
+
@client_secret = args[:client_secret] if args.key?(:client_secret)
|
1766
|
+
@encrypted_client_secret = args[:encrypted_client_secret] if args.key?(:encrypted_client_secret)
|
1767
|
+
@kubectl_redirect_uri = args[:kubectl_redirect_uri] if args.key?(:kubectl_redirect_uri)
|
1768
|
+
@tenant = args[:tenant] if args.key?(:tenant)
|
1769
|
+
end
|
1770
|
+
end
|
1771
|
+
|
1842
1772
|
# Configuration for the Google Plugin Auth flow.
|
1843
1773
|
class IdentityServiceGoogleConfig
|
1844
1774
|
include Google::Apis::Core::Hashable
|
@@ -2239,34 +2169,6 @@ module Google
|
|
2239
2169
|
end
|
2240
2170
|
end
|
2241
2171
|
|
2242
|
-
# LocalControllerState contains the state of the local controller deployed in
|
2243
|
-
# the cluster.
|
2244
|
-
class LocalControllerState
|
2245
|
-
include Google::Apis::Core::Hashable
|
2246
|
-
|
2247
|
-
# Description represents the human readable description of the current state of
|
2248
|
-
# the local PE controller
|
2249
|
-
# Corresponds to the JSON property `description`
|
2250
|
-
# @return [String]
|
2251
|
-
attr_accessor :description
|
2252
|
-
|
2253
|
-
# InstallationState represents the state of deployment of the local PE
|
2254
|
-
# controller in the cluster.
|
2255
|
-
# Corresponds to the JSON property `installationState`
|
2256
|
-
# @return [String]
|
2257
|
-
attr_accessor :installation_state
|
2258
|
-
|
2259
|
-
def initialize(**args)
|
2260
|
-
update!(**args)
|
2261
|
-
end
|
2262
|
-
|
2263
|
-
# Update properties of this object
|
2264
|
-
def update!(**args)
|
2265
|
-
@description = args[:description] if args.key?(:description)
|
2266
|
-
@installation_state = args[:installation_state] if args.key?(:installation_state)
|
2267
|
-
end
|
2268
|
-
end
|
2269
|
-
|
2270
2172
|
# A resource that represents Google Cloud Platform location.
|
2271
2173
|
class Location
|
2272
2174
|
include Google::Apis::Core::Hashable
|
@@ -2481,12 +2383,6 @@ module Google
|
|
2481
2383
|
class MembershipFeatureSpec
|
2482
2384
|
include Google::Apis::Core::Hashable
|
2483
2385
|
|
2484
|
-
# AnthosVMMembershipSpec contains the AnthosVM feature configuration for a
|
2485
|
-
# membership/cluster.
|
2486
|
-
# Corresponds to the JSON property `anthosvm`
|
2487
|
-
# @return [Google::Apis::GkehubV1::AnthosVmMembershipSpec]
|
2488
|
-
attr_accessor :anthosvm
|
2489
|
-
|
2490
2386
|
# **Anthos Config Management**: Configuration for a single cluster. Intended to
|
2491
2387
|
# parallel the ConfigManagement CR.
|
2492
2388
|
# Corresponds to the JSON property `configmanagement`
|
@@ -2515,7 +2411,6 @@ module Google
|
|
2515
2411
|
|
2516
2412
|
# Update properties of this object
|
2517
2413
|
def update!(**args)
|
2518
|
-
@anthosvm = args[:anthosvm] if args.key?(:anthosvm)
|
2519
2414
|
@configmanagement = args[:configmanagement] if args.key?(:configmanagement)
|
2520
2415
|
@fleetobservability = args[:fleetobservability] if args.key?(:fleetobservability)
|
2521
2416
|
@identityservice = args[:identityservice] if args.key?(:identityservice)
|
@@ -2528,13 +2423,6 @@ module Google
|
|
2528
2423
|
class MembershipFeatureState
|
2529
2424
|
include Google::Apis::Core::Hashable
|
2530
2425
|
|
2531
|
-
# AnthosVMFeatureState contains the state of the AnthosVM feature. It represents
|
2532
|
-
# the actual state in the cluster, while the AnthosVMMembershipSpec represents
|
2533
|
-
# the desired state.
|
2534
|
-
# Corresponds to the JSON property `anthosvm`
|
2535
|
-
# @return [Google::Apis::GkehubV1::AnthosVmMembershipState]
|
2536
|
-
attr_accessor :anthosvm
|
2537
|
-
|
2538
2426
|
# State for App Dev Exp Feature.
|
2539
2427
|
# Corresponds to the JSON property `appdevexperience`
|
2540
2428
|
# @return [Google::Apis::GkehubV1::AppDevExperienceFeatureState]
|
@@ -2575,7 +2463,6 @@ module Google
|
|
2575
2463
|
|
2576
2464
|
# Update properties of this object
|
2577
2465
|
def update!(**args)
|
2578
|
-
@anthosvm = args[:anthosvm] if args.key?(:anthosvm)
|
2579
2466
|
@appdevexperience = args[:appdevexperience] if args.key?(:appdevexperience)
|
2580
2467
|
@configmanagement = args[:configmanagement] if args.key?(:configmanagement)
|
2581
2468
|
@fleetobservability = args[:fleetobservability] if args.key?(:fleetobservability)
|
@@ -2604,32 +2491,6 @@ module Google
|
|
2604
2491
|
end
|
2605
2492
|
end
|
2606
2493
|
|
2607
|
-
# MigrateSpec contains the migrate subfeature configuration.
|
2608
|
-
class MigrateSpec
|
2609
|
-
include Google::Apis::Core::Hashable
|
2610
|
-
|
2611
|
-
def initialize(**args)
|
2612
|
-
update!(**args)
|
2613
|
-
end
|
2614
|
-
|
2615
|
-
# Update properties of this object
|
2616
|
-
def update!(**args)
|
2617
|
-
end
|
2618
|
-
end
|
2619
|
-
|
2620
|
-
# MigrateState contains the state of Migrate subfeature
|
2621
|
-
class MigrateState
|
2622
|
-
include Google::Apis::Core::Hashable
|
2623
|
-
|
2624
|
-
def initialize(**args)
|
2625
|
-
update!(**args)
|
2626
|
-
end
|
2627
|
-
|
2628
|
-
# Update properties of this object
|
2629
|
-
def update!(**args)
|
2630
|
-
end
|
2631
|
-
end
|
2632
|
-
|
2633
2494
|
# MultiCloudCluster contains information specific to GKE Multi-Cloud clusters.
|
2634
2495
|
class MultiCloudCluster
|
2635
2496
|
include Google::Apis::Core::Hashable
|
@@ -3143,32 +3004,6 @@ module Google
|
|
3143
3004
|
end
|
3144
3005
|
end
|
3145
3006
|
|
3146
|
-
# ServiceMeshSpec contains the serviceMesh subfeature configuration.
|
3147
|
-
class ServiceMeshSpec
|
3148
|
-
include Google::Apis::Core::Hashable
|
3149
|
-
|
3150
|
-
def initialize(**args)
|
3151
|
-
update!(**args)
|
3152
|
-
end
|
3153
|
-
|
3154
|
-
# Update properties of this object
|
3155
|
-
def update!(**args)
|
3156
|
-
end
|
3157
|
-
end
|
3158
|
-
|
3159
|
-
# ServiceMeshState contains the state of Service Mesh subfeature
|
3160
|
-
class ServiceMeshState
|
3161
|
-
include Google::Apis::Core::Hashable
|
3162
|
-
|
3163
|
-
def initialize(**args)
|
3164
|
-
update!(**args)
|
3165
|
-
end
|
3166
|
-
|
3167
|
-
# Update properties of this object
|
3168
|
-
def update!(**args)
|
3169
|
-
end
|
3170
|
-
end
|
3171
|
-
|
3172
3007
|
# Structured and human-readable details for a status.
|
3173
3008
|
class ServiceMeshStatusDetails
|
3174
3009
|
include Google::Apis::Core::Hashable
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module GkehubV1
|
18
18
|
# Version of the google-apis-gkehub_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.37.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.11.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20221031"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -22,30 +22,6 @@ module Google
|
|
22
22
|
module Apis
|
23
23
|
module GkehubV1
|
24
24
|
|
25
|
-
class AnthosVmMembershipSpec
|
26
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
27
|
-
|
28
|
-
include Google::Apis::Core::JsonObjectSupport
|
29
|
-
end
|
30
|
-
|
31
|
-
class AnthosVmMembershipState
|
32
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
33
|
-
|
34
|
-
include Google::Apis::Core::JsonObjectSupport
|
35
|
-
end
|
36
|
-
|
37
|
-
class AnthosVmSubFeatureSpec
|
38
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
39
|
-
|
40
|
-
include Google::Apis::Core::JsonObjectSupport
|
41
|
-
end
|
42
|
-
|
43
|
-
class AnthosVmSubFeatureState
|
44
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
45
|
-
|
46
|
-
include Google::Apis::Core::JsonObjectSupport
|
47
|
-
end
|
48
|
-
|
49
25
|
class AppDevExperienceFeatureSpec
|
50
26
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
51
27
|
|
@@ -334,6 +310,12 @@ module Google
|
|
334
310
|
include Google::Apis::Core::JsonObjectSupport
|
335
311
|
end
|
336
312
|
|
313
|
+
class IdentityServiceAzureAdConfig
|
314
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
315
|
+
|
316
|
+
include Google::Apis::Core::JsonObjectSupport
|
317
|
+
end
|
318
|
+
|
337
319
|
class IdentityServiceGoogleConfig
|
338
320
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
339
321
|
|
@@ -394,12 +376,6 @@ module Google
|
|
394
376
|
include Google::Apis::Core::JsonObjectSupport
|
395
377
|
end
|
396
378
|
|
397
|
-
class LocalControllerState
|
398
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
399
|
-
|
400
|
-
include Google::Apis::Core::JsonObjectSupport
|
401
|
-
end
|
402
|
-
|
403
379
|
class Location
|
404
380
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
405
381
|
|
@@ -436,18 +412,6 @@ module Google
|
|
436
412
|
include Google::Apis::Core::JsonObjectSupport
|
437
413
|
end
|
438
414
|
|
439
|
-
class MigrateSpec
|
440
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
441
|
-
|
442
|
-
include Google::Apis::Core::JsonObjectSupport
|
443
|
-
end
|
444
|
-
|
445
|
-
class MigrateState
|
446
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
447
|
-
|
448
|
-
include Google::Apis::Core::JsonObjectSupport
|
449
|
-
end
|
450
|
-
|
451
415
|
class MultiCloudCluster
|
452
416
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
453
417
|
|
@@ -532,18 +496,6 @@ module Google
|
|
532
496
|
include Google::Apis::Core::JsonObjectSupport
|
533
497
|
end
|
534
498
|
|
535
|
-
class ServiceMeshSpec
|
536
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
537
|
-
|
538
|
-
include Google::Apis::Core::JsonObjectSupport
|
539
|
-
end
|
540
|
-
|
541
|
-
class ServiceMeshState
|
542
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
543
|
-
|
544
|
-
include Google::Apis::Core::JsonObjectSupport
|
545
|
-
end
|
546
|
-
|
547
499
|
class ServiceMeshStatusDetails
|
548
500
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
549
501
|
|
@@ -580,47 +532,6 @@ module Google
|
|
580
532
|
include Google::Apis::Core::JsonObjectSupport
|
581
533
|
end
|
582
534
|
|
583
|
-
class AnthosVmMembershipSpec
|
584
|
-
# @private
|
585
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
586
|
-
collection :subfeatures_spec, as: 'subfeaturesSpec', class: Google::Apis::GkehubV1::AnthosVmSubFeatureSpec, decorator: Google::Apis::GkehubV1::AnthosVmSubFeatureSpec::Representation
|
587
|
-
|
588
|
-
end
|
589
|
-
end
|
590
|
-
|
591
|
-
class AnthosVmMembershipState
|
592
|
-
# @private
|
593
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
594
|
-
property :local_controller_state, as: 'localControllerState', class: Google::Apis::GkehubV1::LocalControllerState, decorator: Google::Apis::GkehubV1::LocalControllerState::Representation
|
595
|
-
|
596
|
-
collection :subfeature_state, as: 'subfeatureState', class: Google::Apis::GkehubV1::AnthosVmSubFeatureState, decorator: Google::Apis::GkehubV1::AnthosVmSubFeatureState::Representation
|
597
|
-
|
598
|
-
end
|
599
|
-
end
|
600
|
-
|
601
|
-
class AnthosVmSubFeatureSpec
|
602
|
-
# @private
|
603
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
604
|
-
property :enabled, as: 'enabled'
|
605
|
-
property :migrate_spec, as: 'migrateSpec', class: Google::Apis::GkehubV1::MigrateSpec, decorator: Google::Apis::GkehubV1::MigrateSpec::Representation
|
606
|
-
|
607
|
-
property :service_mesh_spec, as: 'serviceMeshSpec', class: Google::Apis::GkehubV1::ServiceMeshSpec, decorator: Google::Apis::GkehubV1::ServiceMeshSpec::Representation
|
608
|
-
|
609
|
-
end
|
610
|
-
end
|
611
|
-
|
612
|
-
class AnthosVmSubFeatureState
|
613
|
-
# @private
|
614
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
615
|
-
property :description, as: 'description'
|
616
|
-
property :installation_state, as: 'installationState'
|
617
|
-
property :migrate_state, as: 'migrateState', class: Google::Apis::GkehubV1::MigrateState, decorator: Google::Apis::GkehubV1::MigrateState::Representation
|
618
|
-
|
619
|
-
property :service_mesh_state, as: 'serviceMeshState', class: Google::Apis::GkehubV1::ServiceMeshState, decorator: Google::Apis::GkehubV1::ServiceMeshState::Representation
|
620
|
-
|
621
|
-
end
|
622
|
-
end
|
623
|
-
|
624
535
|
class AppDevExperienceFeatureSpec
|
625
536
|
# @private
|
626
537
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1085,6 +996,8 @@ module Google
|
|
1085
996
|
class IdentityServiceAuthMethod
|
1086
997
|
# @private
|
1087
998
|
class Representation < Google::Apis::Core::JsonRepresentation
|
999
|
+
property :azuread_config, as: 'azureadConfig', class: Google::Apis::GkehubV1::IdentityServiceAzureAdConfig, decorator: Google::Apis::GkehubV1::IdentityServiceAzureAdConfig::Representation
|
1000
|
+
|
1088
1001
|
property :google_config, as: 'googleConfig', class: Google::Apis::GkehubV1::IdentityServiceGoogleConfig, decorator: Google::Apis::GkehubV1::IdentityServiceGoogleConfig::Representation
|
1089
1002
|
|
1090
1003
|
property :name, as: 'name'
|
@@ -1094,6 +1007,17 @@ module Google
|
|
1094
1007
|
end
|
1095
1008
|
end
|
1096
1009
|
|
1010
|
+
class IdentityServiceAzureAdConfig
|
1011
|
+
# @private
|
1012
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1013
|
+
property :client_id, as: 'clientId'
|
1014
|
+
property :client_secret, as: 'clientSecret'
|
1015
|
+
property :encrypted_client_secret, :base64 => true, as: 'encryptedClientSecret'
|
1016
|
+
property :kubectl_redirect_uri, as: 'kubectlRedirectUri'
|
1017
|
+
property :tenant, as: 'tenant'
|
1018
|
+
end
|
1019
|
+
end
|
1020
|
+
|
1097
1021
|
class IdentityServiceGoogleConfig
|
1098
1022
|
# @private
|
1099
1023
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1202,14 +1126,6 @@ module Google
|
|
1202
1126
|
end
|
1203
1127
|
end
|
1204
1128
|
|
1205
|
-
class LocalControllerState
|
1206
|
-
# @private
|
1207
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
1208
|
-
property :description, as: 'description'
|
1209
|
-
property :installation_state, as: 'installationState'
|
1210
|
-
end
|
1211
|
-
end
|
1212
|
-
|
1213
1129
|
class Location
|
1214
1130
|
# @private
|
1215
1131
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1265,8 +1181,6 @@ module Google
|
|
1265
1181
|
class MembershipFeatureSpec
|
1266
1182
|
# @private
|
1267
1183
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1268
|
-
property :anthosvm, as: 'anthosvm', class: Google::Apis::GkehubV1::AnthosVmMembershipSpec, decorator: Google::Apis::GkehubV1::AnthosVmMembershipSpec::Representation
|
1269
|
-
|
1270
1184
|
property :configmanagement, as: 'configmanagement', class: Google::Apis::GkehubV1::ConfigManagementMembershipSpec, decorator: Google::Apis::GkehubV1::ConfigManagementMembershipSpec::Representation
|
1271
1185
|
|
1272
1186
|
property :fleetobservability, as: 'fleetobservability', class: Google::Apis::GkehubV1::FleetObservabilityMembershipSpec, decorator: Google::Apis::GkehubV1::FleetObservabilityMembershipSpec::Representation
|
@@ -1281,8 +1195,6 @@ module Google
|
|
1281
1195
|
class MembershipFeatureState
|
1282
1196
|
# @private
|
1283
1197
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1284
|
-
property :anthosvm, as: 'anthosvm', class: Google::Apis::GkehubV1::AnthosVmMembershipState, decorator: Google::Apis::GkehubV1::AnthosVmMembershipState::Representation
|
1285
|
-
|
1286
1198
|
property :appdevexperience, as: 'appdevexperience', class: Google::Apis::GkehubV1::AppDevExperienceFeatureState, decorator: Google::Apis::GkehubV1::AppDevExperienceFeatureState::Representation
|
1287
1199
|
|
1288
1200
|
property :configmanagement, as: 'configmanagement', class: Google::Apis::GkehubV1::ConfigManagementMembershipState, decorator: Google::Apis::GkehubV1::ConfigManagementMembershipState::Representation
|
@@ -1305,18 +1217,6 @@ module Google
|
|
1305
1217
|
end
|
1306
1218
|
end
|
1307
1219
|
|
1308
|
-
class MigrateSpec
|
1309
|
-
# @private
|
1310
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
1311
|
-
end
|
1312
|
-
end
|
1313
|
-
|
1314
|
-
class MigrateState
|
1315
|
-
# @private
|
1316
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
1317
|
-
end
|
1318
|
-
end
|
1319
|
-
|
1320
1220
|
class MultiCloudCluster
|
1321
1221
|
# @private
|
1322
1222
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1446,18 +1346,6 @@ module Google
|
|
1446
1346
|
end
|
1447
1347
|
end
|
1448
1348
|
|
1449
|
-
class ServiceMeshSpec
|
1450
|
-
# @private
|
1451
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
1452
|
-
end
|
1453
|
-
end
|
1454
|
-
|
1455
|
-
class ServiceMeshState
|
1456
|
-
# @private
|
1457
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
1458
|
-
end
|
1459
|
-
end
|
1460
|
-
|
1461
1349
|
class ServiceMeshStatusDetails
|
1462
1350
|
# @private
|
1463
1351
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-gkehub_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.37.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-11-07 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_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-gkehub_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-gkehub_v1/v0.37.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-gkehub_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|