google-apis-gkehub_v1beta 0.34.0 → 0.36.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 +4 -4
- data/CHANGELOG.md +8 -0
- data/lib/google/apis/gkehub_v1beta/classes.rb +61 -219
- data/lib/google/apis/gkehub_v1beta/gem_version.rb +2 -2
- data/lib/google/apis/gkehub_v1beta/representations.rb +20 -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: 352b8974288818a736c8d654e5f6c8d5acdccf4b4207e70effc0e307146347d7
|
4
|
+
data.tar.gz: 2b526c6c4d86a051517d694ec36e6fb1bc1f51431cdbaadb517f8a8902cc3855
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8f381fd0686dd7a7ea9eda3c4ba8319cfb159611879d356318475c3618704e39074e73fd93463bfbbb95481ac1618eb804ffb50096fd243ac65eefd8fb0a9352
|
7
|
+
data.tar.gz: 03ee185fef76b64166296e0b43ad5e367aaaef8d1b550f2abac5e60f361ad3c2cd1aa2f872057316f99d2bdc74e3bf1de96f009bd83dfdfa702ec387ac2df30d
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-gkehub_v1beta
|
2
2
|
|
3
|
+
### v0.36.0 (2022-12-13)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20221207
|
6
|
+
|
7
|
+
### v0.35.0 (2022-11-06)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20221031
|
10
|
+
|
3
11
|
### v0.34.0 (2022-10-30)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20221018
|
@@ -76,129 +76,6 @@ module Google
|
|
76
76
|
end
|
77
77
|
end
|
78
78
|
|
79
|
-
# AnthosVMMembershipSpec contains the AnthosVM feature configuration for a
|
80
|
-
# membership/cluster.
|
81
|
-
class AnthosVmMembershipSpec
|
82
|
-
include Google::Apis::Core::Hashable
|
83
|
-
|
84
|
-
# List of configurations of the Anthos For VM subfeatures that are to be enabled
|
85
|
-
# Corresponds to the JSON property `subfeaturesSpec`
|
86
|
-
# @return [Array<Google::Apis::GkehubV1beta::AnthosVmSubFeatureSpec>]
|
87
|
-
attr_accessor :subfeatures_spec
|
88
|
-
|
89
|
-
def initialize(**args)
|
90
|
-
update!(**args)
|
91
|
-
end
|
92
|
-
|
93
|
-
# Update properties of this object
|
94
|
-
def update!(**args)
|
95
|
-
@subfeatures_spec = args[:subfeatures_spec] if args.key?(:subfeatures_spec)
|
96
|
-
end
|
97
|
-
end
|
98
|
-
|
99
|
-
# AnthosVMFeatureState contains the state of the AnthosVM feature. It represents
|
100
|
-
# the actual state in the cluster, while the AnthosVMMembershipSpec represents
|
101
|
-
# the desired state.
|
102
|
-
class AnthosVmMembershipState
|
103
|
-
include Google::Apis::Core::Hashable
|
104
|
-
|
105
|
-
# LocalControllerState contains the state of the local controller deployed in
|
106
|
-
# the cluster.
|
107
|
-
# Corresponds to the JSON property `localControllerState`
|
108
|
-
# @return [Google::Apis::GkehubV1beta::LocalControllerState]
|
109
|
-
attr_accessor :local_controller_state
|
110
|
-
|
111
|
-
# List of AnthosVM subfeature states
|
112
|
-
# Corresponds to the JSON property `subfeatureState`
|
113
|
-
# @return [Array<Google::Apis::GkehubV1beta::AnthosVmSubFeatureState>]
|
114
|
-
attr_accessor :subfeature_state
|
115
|
-
|
116
|
-
def initialize(**args)
|
117
|
-
update!(**args)
|
118
|
-
end
|
119
|
-
|
120
|
-
# Update properties of this object
|
121
|
-
def update!(**args)
|
122
|
-
@local_controller_state = args[:local_controller_state] if args.key?(:local_controller_state)
|
123
|
-
@subfeature_state = args[:subfeature_state] if args.key?(:subfeature_state)
|
124
|
-
end
|
125
|
-
end
|
126
|
-
|
127
|
-
# AnthosVMSubFeatureSpec contains the subfeature configuration for a membership/
|
128
|
-
# cluster.
|
129
|
-
class AnthosVmSubFeatureSpec
|
130
|
-
include Google::Apis::Core::Hashable
|
131
|
-
|
132
|
-
# Indicates whether the subfeature should be enabled on the cluster or not. If
|
133
|
-
# set to true, the subfeature's control plane and resources will be installed in
|
134
|
-
# the cluster. If set to false, the oneof spec if present will be ignored and
|
135
|
-
# nothing will be installed in the cluster.
|
136
|
-
# Corresponds to the JSON property `enabled`
|
137
|
-
# @return [Boolean]
|
138
|
-
attr_accessor :enabled
|
139
|
-
alias_method :enabled?, :enabled
|
140
|
-
|
141
|
-
# MigrateSpec contains the migrate subfeature configuration.
|
142
|
-
# Corresponds to the JSON property `migrateSpec`
|
143
|
-
# @return [Google::Apis::GkehubV1beta::MigrateSpec]
|
144
|
-
attr_accessor :migrate_spec
|
145
|
-
|
146
|
-
# ServiceMeshSpec contains the serviceMesh subfeature configuration.
|
147
|
-
# Corresponds to the JSON property `serviceMeshSpec`
|
148
|
-
# @return [Google::Apis::GkehubV1beta::ServiceMeshSpec]
|
149
|
-
attr_accessor :service_mesh_spec
|
150
|
-
|
151
|
-
def initialize(**args)
|
152
|
-
update!(**args)
|
153
|
-
end
|
154
|
-
|
155
|
-
# Update properties of this object
|
156
|
-
def update!(**args)
|
157
|
-
@enabled = args[:enabled] if args.key?(:enabled)
|
158
|
-
@migrate_spec = args[:migrate_spec] if args.key?(:migrate_spec)
|
159
|
-
@service_mesh_spec = args[:service_mesh_spec] if args.key?(:service_mesh_spec)
|
160
|
-
end
|
161
|
-
end
|
162
|
-
|
163
|
-
# AnthosVMSubFeatureState contains the state of the AnthosVM subfeatures.
|
164
|
-
class AnthosVmSubFeatureState
|
165
|
-
include Google::Apis::Core::Hashable
|
166
|
-
|
167
|
-
# Description represents human readable description of the subfeature state. If
|
168
|
-
# the deployment failed, this should also contain the reason for the failure.
|
169
|
-
# Corresponds to the JSON property `description`
|
170
|
-
# @return [String]
|
171
|
-
attr_accessor :description
|
172
|
-
|
173
|
-
# InstallationState represents the state of installation of the subfeature in
|
174
|
-
# the cluster.
|
175
|
-
# Corresponds to the JSON property `installationState`
|
176
|
-
# @return [String]
|
177
|
-
attr_accessor :installation_state
|
178
|
-
|
179
|
-
# MigrateState contains the state of Migrate subfeature
|
180
|
-
# Corresponds to the JSON property `migrateState`
|
181
|
-
# @return [Google::Apis::GkehubV1beta::MigrateState]
|
182
|
-
attr_accessor :migrate_state
|
183
|
-
|
184
|
-
# ServiceMeshState contains the state of Service Mesh subfeature
|
185
|
-
# Corresponds to the JSON property `serviceMeshState`
|
186
|
-
# @return [Google::Apis::GkehubV1beta::ServiceMeshState]
|
187
|
-
attr_accessor :service_mesh_state
|
188
|
-
|
189
|
-
def initialize(**args)
|
190
|
-
update!(**args)
|
191
|
-
end
|
192
|
-
|
193
|
-
# Update properties of this object
|
194
|
-
def update!(**args)
|
195
|
-
@description = args[:description] if args.key?(:description)
|
196
|
-
@installation_state = args[:installation_state] if args.key?(:installation_state)
|
197
|
-
@migrate_state = args[:migrate_state] if args.key?(:migrate_state)
|
198
|
-
@service_mesh_state = args[:service_mesh_state] if args.key?(:service_mesh_state)
|
199
|
-
end
|
200
|
-
end
|
201
|
-
|
202
79
|
# Spec for App Dev Experience Feature.
|
203
80
|
class AppDevExperienceFeatureSpec
|
204
81
|
include Google::Apis::Core::Hashable
|
@@ -532,7 +409,7 @@ module Google
|
|
532
409
|
include Google::Apis::Core::Hashable
|
533
410
|
|
534
411
|
# Set to true to allow the vertical scaling. Defaults to false which disallows
|
535
|
-
# vertical scaling.
|
412
|
+
# vertical scaling. This field is deprecated.
|
536
413
|
# Corresponds to the JSON property `allowVerticalScale`
|
537
414
|
# @return [Boolean]
|
538
415
|
attr_accessor :allow_vertical_scale
|
@@ -1769,6 +1646,11 @@ module Google
|
|
1769
1646
|
class IdentityServiceAuthMethod
|
1770
1647
|
include Google::Apis::Core::Hashable
|
1771
1648
|
|
1649
|
+
# Configuration for the AzureAD Auth flow.
|
1650
|
+
# Corresponds to the JSON property `azureadConfig`
|
1651
|
+
# @return [Google::Apis::GkehubV1beta::IdentityServiceAzureAdConfig]
|
1652
|
+
attr_accessor :azuread_config
|
1653
|
+
|
1772
1654
|
# Configuration for the Google Plugin Auth flow.
|
1773
1655
|
# Corresponds to the JSON property `googleConfig`
|
1774
1656
|
# @return [Google::Apis::GkehubV1beta::IdentityServiceGoogleConfig]
|
@@ -1795,6 +1677,7 @@ module Google
|
|
1795
1677
|
|
1796
1678
|
# Update properties of this object
|
1797
1679
|
def update!(**args)
|
1680
|
+
@azuread_config = args[:azuread_config] if args.key?(:azuread_config)
|
1798
1681
|
@google_config = args[:google_config] if args.key?(:google_config)
|
1799
1682
|
@name = args[:name] if args.key?(:name)
|
1800
1683
|
@oidc_config = args[:oidc_config] if args.key?(:oidc_config)
|
@@ -1802,6 +1685,53 @@ module Google
|
|
1802
1685
|
end
|
1803
1686
|
end
|
1804
1687
|
|
1688
|
+
# Configuration for the AzureAD Auth flow.
|
1689
|
+
class IdentityServiceAzureAdConfig
|
1690
|
+
include Google::Apis::Core::Hashable
|
1691
|
+
|
1692
|
+
# ID for the registered client application that makes authentication requests to
|
1693
|
+
# the Azure AD identity provider.
|
1694
|
+
# Corresponds to the JSON property `clientId`
|
1695
|
+
# @return [String]
|
1696
|
+
attr_accessor :client_id
|
1697
|
+
|
1698
|
+
# Input only. Unencrypted AzureAD client secret will be passed to the GKE Hub
|
1699
|
+
# CLH.
|
1700
|
+
# Corresponds to the JSON property `clientSecret`
|
1701
|
+
# @return [String]
|
1702
|
+
attr_accessor :client_secret
|
1703
|
+
|
1704
|
+
# Output only. Encrypted AzureAD client secret.
|
1705
|
+
# Corresponds to the JSON property `encryptedClientSecret`
|
1706
|
+
# NOTE: Values are automatically base64 encoded/decoded in the client library.
|
1707
|
+
# @return [String]
|
1708
|
+
attr_accessor :encrypted_client_secret
|
1709
|
+
|
1710
|
+
# The redirect URL that kubectl uses for authorization.
|
1711
|
+
# Corresponds to the JSON property `kubectlRedirectUri`
|
1712
|
+
# @return [String]
|
1713
|
+
attr_accessor :kubectl_redirect_uri
|
1714
|
+
|
1715
|
+
# Kind of Azure AD account to be authenticated. Supported values are or for
|
1716
|
+
# accounts belonging to a specific tenant.
|
1717
|
+
# Corresponds to the JSON property `tenant`
|
1718
|
+
# @return [String]
|
1719
|
+
attr_accessor :tenant
|
1720
|
+
|
1721
|
+
def initialize(**args)
|
1722
|
+
update!(**args)
|
1723
|
+
end
|
1724
|
+
|
1725
|
+
# Update properties of this object
|
1726
|
+
def update!(**args)
|
1727
|
+
@client_id = args[:client_id] if args.key?(:client_id)
|
1728
|
+
@client_secret = args[:client_secret] if args.key?(:client_secret)
|
1729
|
+
@encrypted_client_secret = args[:encrypted_client_secret] if args.key?(:encrypted_client_secret)
|
1730
|
+
@kubectl_redirect_uri = args[:kubectl_redirect_uri] if args.key?(:kubectl_redirect_uri)
|
1731
|
+
@tenant = args[:tenant] if args.key?(:tenant)
|
1732
|
+
end
|
1733
|
+
end
|
1734
|
+
|
1805
1735
|
# Configuration for the Google Plugin Auth flow.
|
1806
1736
|
class IdentityServiceGoogleConfig
|
1807
1737
|
include Google::Apis::Core::Hashable
|
@@ -2058,34 +1988,6 @@ module Google
|
|
2058
1988
|
end
|
2059
1989
|
end
|
2060
1990
|
|
2061
|
-
# LocalControllerState contains the state of the local controller deployed in
|
2062
|
-
# the cluster.
|
2063
|
-
class LocalControllerState
|
2064
|
-
include Google::Apis::Core::Hashable
|
2065
|
-
|
2066
|
-
# Description represents the human readable description of the current state of
|
2067
|
-
# the local PE controller
|
2068
|
-
# Corresponds to the JSON property `description`
|
2069
|
-
# @return [String]
|
2070
|
-
attr_accessor :description
|
2071
|
-
|
2072
|
-
# InstallationState represents the state of deployment of the local PE
|
2073
|
-
# controller in the cluster.
|
2074
|
-
# Corresponds to the JSON property `installationState`
|
2075
|
-
# @return [String]
|
2076
|
-
attr_accessor :installation_state
|
2077
|
-
|
2078
|
-
def initialize(**args)
|
2079
|
-
update!(**args)
|
2080
|
-
end
|
2081
|
-
|
2082
|
-
# Update properties of this object
|
2083
|
-
def update!(**args)
|
2084
|
-
@description = args[:description] if args.key?(:description)
|
2085
|
-
@installation_state = args[:installation_state] if args.key?(:installation_state)
|
2086
|
-
end
|
2087
|
-
end
|
2088
|
-
|
2089
1991
|
# A resource that represents Google Cloud Platform location.
|
2090
1992
|
class Location
|
2091
1993
|
include Google::Apis::Core::Hashable
|
@@ -2143,12 +2045,6 @@ module Google
|
|
2143
2045
|
# @return [Google::Apis::GkehubV1beta::AnthosObservabilityMembershipSpec]
|
2144
2046
|
attr_accessor :anthosobservability
|
2145
2047
|
|
2146
|
-
# AnthosVMMembershipSpec contains the AnthosVM feature configuration for a
|
2147
|
-
# membership/cluster.
|
2148
|
-
# Corresponds to the JSON property `anthosvm`
|
2149
|
-
# @return [Google::Apis::GkehubV1beta::AnthosVmMembershipSpec]
|
2150
|
-
attr_accessor :anthosvm
|
2151
|
-
|
2152
2048
|
# **Cloud Build**: Configurations for each Cloud Build enabled cluster.
|
2153
2049
|
# Corresponds to the JSON property `cloudbuild`
|
2154
2050
|
# @return [Google::Apis::GkehubV1beta::MembershipSpec]
|
@@ -2160,6 +2056,12 @@ module Google
|
|
2160
2056
|
# @return [Google::Apis::GkehubV1beta::ConfigManagementMembershipSpec]
|
2161
2057
|
attr_accessor :configmanagement
|
2162
2058
|
|
2059
|
+
# True if value of `feature_spec` was inherited from a fleet-level default.
|
2060
|
+
# Corresponds to the JSON property `fleetInherited`
|
2061
|
+
# @return [Boolean]
|
2062
|
+
attr_accessor :fleet_inherited
|
2063
|
+
alias_method :fleet_inherited?, :fleet_inherited
|
2064
|
+
|
2163
2065
|
# **FleetObservability**: The membership-specific input for FleetObservability
|
2164
2066
|
# feature.
|
2165
2067
|
# Corresponds to the JSON property `fleetobservability`
|
@@ -2189,9 +2091,9 @@ module Google
|
|
2189
2091
|
# Update properties of this object
|
2190
2092
|
def update!(**args)
|
2191
2093
|
@anthosobservability = args[:anthosobservability] if args.key?(:anthosobservability)
|
2192
|
-
@anthosvm = args[:anthosvm] if args.key?(:anthosvm)
|
2193
2094
|
@cloudbuild = args[:cloudbuild] if args.key?(:cloudbuild)
|
2194
2095
|
@configmanagement = args[:configmanagement] if args.key?(:configmanagement)
|
2096
|
+
@fleet_inherited = args[:fleet_inherited] if args.key?(:fleet_inherited)
|
2195
2097
|
@fleetobservability = args[:fleetobservability] if args.key?(:fleetobservability)
|
2196
2098
|
@identityservice = args[:identityservice] if args.key?(:identityservice)
|
2197
2099
|
@mesh = args[:mesh] if args.key?(:mesh)
|
@@ -2204,13 +2106,6 @@ module Google
|
|
2204
2106
|
class MembershipFeatureState
|
2205
2107
|
include Google::Apis::Core::Hashable
|
2206
2108
|
|
2207
|
-
# AnthosVMFeatureState contains the state of the AnthosVM feature. It represents
|
2208
|
-
# the actual state in the cluster, while the AnthosVMMembershipSpec represents
|
2209
|
-
# the desired state.
|
2210
|
-
# Corresponds to the JSON property `anthosvm`
|
2211
|
-
# @return [Google::Apis::GkehubV1beta::AnthosVmMembershipState]
|
2212
|
-
attr_accessor :anthosvm
|
2213
|
-
|
2214
2109
|
# State for App Dev Exp Feature.
|
2215
2110
|
# Corresponds to the JSON property `appdevexperience`
|
2216
2111
|
# @return [Google::Apis::GkehubV1beta::AppDevExperienceFeatureState]
|
@@ -2261,7 +2156,6 @@ module Google
|
|
2261
2156
|
|
2262
2157
|
# Update properties of this object
|
2263
2158
|
def update!(**args)
|
2264
|
-
@anthosvm = args[:anthosvm] if args.key?(:anthosvm)
|
2265
2159
|
@appdevexperience = args[:appdevexperience] if args.key?(:appdevexperience)
|
2266
2160
|
@configmanagement = args[:configmanagement] if args.key?(:configmanagement)
|
2267
2161
|
@fleetobservability = args[:fleetobservability] if args.key?(:fleetobservability)
|
@@ -2325,32 +2219,6 @@ module Google
|
|
2325
2219
|
end
|
2326
2220
|
end
|
2327
2221
|
|
2328
|
-
# MigrateSpec contains the migrate subfeature configuration.
|
2329
|
-
class MigrateSpec
|
2330
|
-
include Google::Apis::Core::Hashable
|
2331
|
-
|
2332
|
-
def initialize(**args)
|
2333
|
-
update!(**args)
|
2334
|
-
end
|
2335
|
-
|
2336
|
-
# Update properties of this object
|
2337
|
-
def update!(**args)
|
2338
|
-
end
|
2339
|
-
end
|
2340
|
-
|
2341
|
-
# MigrateState contains the state of Migrate subfeature
|
2342
|
-
class MigrateState
|
2343
|
-
include Google::Apis::Core::Hashable
|
2344
|
-
|
2345
|
-
def initialize(**args)
|
2346
|
-
update!(**args)
|
2347
|
-
end
|
2348
|
-
|
2349
|
-
# Update properties of this object
|
2350
|
-
def update!(**args)
|
2351
|
-
end
|
2352
|
-
end
|
2353
|
-
|
2354
2222
|
# **Multi-cluster Ingress**: The configuration for the MultiClusterIngress
|
2355
2223
|
# feature.
|
2356
2224
|
class MultiClusterIngressFeatureSpec
|
@@ -2922,32 +2790,6 @@ module Google
|
|
2922
2790
|
end
|
2923
2791
|
end
|
2924
2792
|
|
2925
|
-
# ServiceMeshSpec contains the serviceMesh subfeature configuration.
|
2926
|
-
class ServiceMeshSpec
|
2927
|
-
include Google::Apis::Core::Hashable
|
2928
|
-
|
2929
|
-
def initialize(**args)
|
2930
|
-
update!(**args)
|
2931
|
-
end
|
2932
|
-
|
2933
|
-
# Update properties of this object
|
2934
|
-
def update!(**args)
|
2935
|
-
end
|
2936
|
-
end
|
2937
|
-
|
2938
|
-
# ServiceMeshState contains the state of Service Mesh subfeature
|
2939
|
-
class ServiceMeshState
|
2940
|
-
include Google::Apis::Core::Hashable
|
2941
|
-
|
2942
|
-
def initialize(**args)
|
2943
|
-
update!(**args)
|
2944
|
-
end
|
2945
|
-
|
2946
|
-
# Update properties of this object
|
2947
|
-
def update!(**args)
|
2948
|
-
end
|
2949
|
-
end
|
2950
|
-
|
2951
2793
|
# Structured and human-readable details for a status.
|
2952
2794
|
class ServiceMeshStatusDetails
|
2953
2795
|
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.36.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 = "20221207"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -34,30 +34,6 @@ 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
|
-
|
61
37
|
class AppDevExperienceFeatureSpec
|
62
38
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
63
39
|
|
@@ -328,6 +304,12 @@ module Google
|
|
328
304
|
include Google::Apis::Core::JsonObjectSupport
|
329
305
|
end
|
330
306
|
|
307
|
+
class IdentityServiceAzureAdConfig
|
308
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
309
|
+
|
310
|
+
include Google::Apis::Core::JsonObjectSupport
|
311
|
+
end
|
312
|
+
|
331
313
|
class IdentityServiceGoogleConfig
|
332
314
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
333
315
|
|
@@ -370,12 +352,6 @@ module Google
|
|
370
352
|
include Google::Apis::Core::JsonObjectSupport
|
371
353
|
end
|
372
354
|
|
373
|
-
class LocalControllerState
|
374
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
375
|
-
|
376
|
-
include Google::Apis::Core::JsonObjectSupport
|
377
|
-
end
|
378
|
-
|
379
355
|
class Location
|
380
356
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
381
357
|
|
@@ -406,18 +382,6 @@ module Google
|
|
406
382
|
include Google::Apis::Core::JsonObjectSupport
|
407
383
|
end
|
408
384
|
|
409
|
-
class MigrateSpec
|
410
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
411
|
-
|
412
|
-
include Google::Apis::Core::JsonObjectSupport
|
413
|
-
end
|
414
|
-
|
415
|
-
class MigrateState
|
416
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
417
|
-
|
418
|
-
include Google::Apis::Core::JsonObjectSupport
|
419
|
-
end
|
420
|
-
|
421
385
|
class MultiClusterIngressFeatureSpec
|
422
386
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
423
387
|
|
@@ -514,18 +478,6 @@ module Google
|
|
514
478
|
include Google::Apis::Core::JsonObjectSupport
|
515
479
|
end
|
516
480
|
|
517
|
-
class ServiceMeshSpec
|
518
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
519
|
-
|
520
|
-
include Google::Apis::Core::JsonObjectSupport
|
521
|
-
end
|
522
|
-
|
523
|
-
class ServiceMeshState
|
524
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
525
|
-
|
526
|
-
include Google::Apis::Core::JsonObjectSupport
|
527
|
-
end
|
528
|
-
|
529
481
|
class ServiceMeshStatusDetails
|
530
482
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
531
483
|
|
@@ -573,47 +525,6 @@ module Google
|
|
573
525
|
end
|
574
526
|
end
|
575
527
|
|
576
|
-
class AnthosVmMembershipSpec
|
577
|
-
# @private
|
578
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
579
|
-
collection :subfeatures_spec, as: 'subfeaturesSpec', class: Google::Apis::GkehubV1beta::AnthosVmSubFeatureSpec, decorator: Google::Apis::GkehubV1beta::AnthosVmSubFeatureSpec::Representation
|
580
|
-
|
581
|
-
end
|
582
|
-
end
|
583
|
-
|
584
|
-
class AnthosVmMembershipState
|
585
|
-
# @private
|
586
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
587
|
-
property :local_controller_state, as: 'localControllerState', class: Google::Apis::GkehubV1beta::LocalControllerState, decorator: Google::Apis::GkehubV1beta::LocalControllerState::Representation
|
588
|
-
|
589
|
-
collection :subfeature_state, as: 'subfeatureState', class: Google::Apis::GkehubV1beta::AnthosVmSubFeatureState, decorator: Google::Apis::GkehubV1beta::AnthosVmSubFeatureState::Representation
|
590
|
-
|
591
|
-
end
|
592
|
-
end
|
593
|
-
|
594
|
-
class AnthosVmSubFeatureSpec
|
595
|
-
# @private
|
596
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
597
|
-
property :enabled, as: 'enabled'
|
598
|
-
property :migrate_spec, as: 'migrateSpec', class: Google::Apis::GkehubV1beta::MigrateSpec, decorator: Google::Apis::GkehubV1beta::MigrateSpec::Representation
|
599
|
-
|
600
|
-
property :service_mesh_spec, as: 'serviceMeshSpec', class: Google::Apis::GkehubV1beta::ServiceMeshSpec, decorator: Google::Apis::GkehubV1beta::ServiceMeshSpec::Representation
|
601
|
-
|
602
|
-
end
|
603
|
-
end
|
604
|
-
|
605
|
-
class AnthosVmSubFeatureState
|
606
|
-
# @private
|
607
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
608
|
-
property :description, as: 'description'
|
609
|
-
property :installation_state, as: 'installationState'
|
610
|
-
property :migrate_state, as: 'migrateState', class: Google::Apis::GkehubV1beta::MigrateState, decorator: Google::Apis::GkehubV1beta::MigrateState::Representation
|
611
|
-
|
612
|
-
property :service_mesh_state, as: 'serviceMeshState', class: Google::Apis::GkehubV1beta::ServiceMeshState, decorator: Google::Apis::GkehubV1beta::ServiceMeshState::Representation
|
613
|
-
|
614
|
-
end
|
615
|
-
end
|
616
|
-
|
617
528
|
class AppDevExperienceFeatureSpec
|
618
529
|
# @private
|
619
530
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1058,6 +969,8 @@ module Google
|
|
1058
969
|
class IdentityServiceAuthMethod
|
1059
970
|
# @private
|
1060
971
|
class Representation < Google::Apis::Core::JsonRepresentation
|
972
|
+
property :azuread_config, as: 'azureadConfig', class: Google::Apis::GkehubV1beta::IdentityServiceAzureAdConfig, decorator: Google::Apis::GkehubV1beta::IdentityServiceAzureAdConfig::Representation
|
973
|
+
|
1061
974
|
property :google_config, as: 'googleConfig', class: Google::Apis::GkehubV1beta::IdentityServiceGoogleConfig, decorator: Google::Apis::GkehubV1beta::IdentityServiceGoogleConfig::Representation
|
1062
975
|
|
1063
976
|
property :name, as: 'name'
|
@@ -1067,6 +980,17 @@ module Google
|
|
1067
980
|
end
|
1068
981
|
end
|
1069
982
|
|
983
|
+
class IdentityServiceAzureAdConfig
|
984
|
+
# @private
|
985
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
986
|
+
property :client_id, as: 'clientId'
|
987
|
+
property :client_secret, as: 'clientSecret'
|
988
|
+
property :encrypted_client_secret, :base64 => true, as: 'encryptedClientSecret'
|
989
|
+
property :kubectl_redirect_uri, as: 'kubectlRedirectUri'
|
990
|
+
property :tenant, as: 'tenant'
|
991
|
+
end
|
992
|
+
end
|
993
|
+
|
1070
994
|
class IdentityServiceGoogleConfig
|
1071
995
|
# @private
|
1072
996
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1140,14 +1064,6 @@ module Google
|
|
1140
1064
|
end
|
1141
1065
|
end
|
1142
1066
|
|
1143
|
-
class LocalControllerState
|
1144
|
-
# @private
|
1145
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
1146
|
-
property :description, as: 'description'
|
1147
|
-
property :installation_state, as: 'installationState'
|
1148
|
-
end
|
1149
|
-
end
|
1150
|
-
|
1151
1067
|
class Location
|
1152
1068
|
# @private
|
1153
1069
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1164,12 +1080,11 @@ module Google
|
|
1164
1080
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1165
1081
|
property :anthosobservability, as: 'anthosobservability', class: Google::Apis::GkehubV1beta::AnthosObservabilityMembershipSpec, decorator: Google::Apis::GkehubV1beta::AnthosObservabilityMembershipSpec::Representation
|
1166
1082
|
|
1167
|
-
property :anthosvm, as: 'anthosvm', class: Google::Apis::GkehubV1beta::AnthosVmMembershipSpec, decorator: Google::Apis::GkehubV1beta::AnthosVmMembershipSpec::Representation
|
1168
|
-
|
1169
1083
|
property :cloudbuild, as: 'cloudbuild', class: Google::Apis::GkehubV1beta::MembershipSpec, decorator: Google::Apis::GkehubV1beta::MembershipSpec::Representation
|
1170
1084
|
|
1171
1085
|
property :configmanagement, as: 'configmanagement', class: Google::Apis::GkehubV1beta::ConfigManagementMembershipSpec, decorator: Google::Apis::GkehubV1beta::ConfigManagementMembershipSpec::Representation
|
1172
1086
|
|
1087
|
+
property :fleet_inherited, as: 'fleetInherited'
|
1173
1088
|
property :fleetobservability, as: 'fleetobservability', class: Google::Apis::GkehubV1beta::FleetObservabilityMembershipSpec, decorator: Google::Apis::GkehubV1beta::FleetObservabilityMembershipSpec::Representation
|
1174
1089
|
|
1175
1090
|
property :identityservice, as: 'identityservice', class: Google::Apis::GkehubV1beta::IdentityServiceMembershipSpec, decorator: Google::Apis::GkehubV1beta::IdentityServiceMembershipSpec::Representation
|
@@ -1184,8 +1099,6 @@ module Google
|
|
1184
1099
|
class MembershipFeatureState
|
1185
1100
|
# @private
|
1186
1101
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1187
|
-
property :anthosvm, as: 'anthosvm', class: Google::Apis::GkehubV1beta::AnthosVmMembershipState, decorator: Google::Apis::GkehubV1beta::AnthosVmMembershipState::Representation
|
1188
|
-
|
1189
1102
|
property :appdevexperience, as: 'appdevexperience', class: Google::Apis::GkehubV1beta::AppDevExperienceFeatureState, decorator: Google::Apis::GkehubV1beta::AppDevExperienceFeatureState::Representation
|
1190
1103
|
|
1191
1104
|
property :configmanagement, as: 'configmanagement', class: Google::Apis::GkehubV1beta::ConfigManagementMembershipState, decorator: Google::Apis::GkehubV1beta::ConfigManagementMembershipState::Representation
|
@@ -1221,18 +1134,6 @@ module Google
|
|
1221
1134
|
end
|
1222
1135
|
end
|
1223
1136
|
|
1224
|
-
class MigrateSpec
|
1225
|
-
# @private
|
1226
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
1227
|
-
end
|
1228
|
-
end
|
1229
|
-
|
1230
|
-
class MigrateState
|
1231
|
-
# @private
|
1232
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
1233
|
-
end
|
1234
|
-
end
|
1235
|
-
|
1236
1137
|
class MultiClusterIngressFeatureSpec
|
1237
1138
|
# @private
|
1238
1139
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1384,18 +1285,6 @@ module Google
|
|
1384
1285
|
end
|
1385
1286
|
end
|
1386
1287
|
|
1387
|
-
class ServiceMeshSpec
|
1388
|
-
# @private
|
1389
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
1390
|
-
end
|
1391
|
-
end
|
1392
|
-
|
1393
|
-
class ServiceMeshState
|
1394
|
-
# @private
|
1395
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
1396
|
-
end
|
1397
|
-
end
|
1398
|
-
|
1399
1288
|
class ServiceMeshStatusDetails
|
1400
1289
|
# @private
|
1401
1290
|
class Representation < Google::Apis::Core::JsonRepresentation
|
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.36.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:
|
11
|
+
date: 2023-01-04 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.36.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: []
|