google-apis-gkehub_v1beta 0.33.0 → 0.35.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 +9 -0
- data/lib/google/apis/gkehub_v1beta/classes.rb +194 -227
- data/lib/google/apis/gkehub_v1beta/gem_version.rb +3 -3
- data/lib/google/apis/gkehub_v1beta/representations.rb +98 -125
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3773f599e5b2ed32ecae6680ed6c4635e64cda056a9a3ce3aeced4deb66fb1dc
|
4
|
+
data.tar.gz: '0954cd6cebf5aab313aa9eecd4b7bfcd400aabd44db0134086219312c2579560'
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f605bd96b7c7fef5aa3272ac8a270038a427ff6a2e492b1c44a676c4de7054f2c1665cae202989f8b99b69d1b9fbd187bff1320c653e4813c08ccabe08ac8c65
|
7
|
+
data.tar.gz: bb078e1ac41aa15c269c84f99108217a90807e36f139716dae1f2aa8abec32e76b94bff2400ac15557ee5d2e1a07117b08978e1bd0776061442b56d6f769ab58
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,14 @@
|
|
1
1
|
# Release history for google-apis-gkehub_v1beta
|
2
2
|
|
3
|
+
### v0.35.0 (2022-11-06)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20221031
|
6
|
+
|
7
|
+
### v0.34.0 (2022-10-30)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20221018
|
10
|
+
* Regenerated using generator version 0.11.0
|
11
|
+
|
3
12
|
### v0.33.0 (2022-09-21)
|
4
13
|
|
5
14
|
* Regenerated using generator version 0.10.0
|
@@ -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
|
@@ -405,6 +282,11 @@ module Google
|
|
405
282
|
# @return [Google::Apis::GkehubV1beta::AppDevExperienceFeatureSpec]
|
406
283
|
attr_accessor :appdevexperience
|
407
284
|
|
285
|
+
# **Fleet Observability**: The Hub-wide input for the FleetObservability feature.
|
286
|
+
# Corresponds to the JSON property `fleetobservability`
|
287
|
+
# @return [Google::Apis::GkehubV1beta::FleetObservabilityFeatureSpec]
|
288
|
+
attr_accessor :fleetobservability
|
289
|
+
|
408
290
|
# **Multi-cluster Ingress**: The configuration for the MultiClusterIngress
|
409
291
|
# feature.
|
410
292
|
# Corresponds to the JSON property `multiclusteringress`
|
@@ -419,6 +301,7 @@ module Google
|
|
419
301
|
def update!(**args)
|
420
302
|
@anthosobservability = args[:anthosobservability] if args.key?(:anthosobservability)
|
421
303
|
@appdevexperience = args[:appdevexperience] if args.key?(:appdevexperience)
|
304
|
+
@fleetobservability = args[:fleetobservability] if args.key?(:fleetobservability)
|
422
305
|
@multiclusteringress = args[:multiclusteringress] if args.key?(:multiclusteringress)
|
423
306
|
end
|
424
307
|
end
|
@@ -432,6 +315,12 @@ module Google
|
|
432
315
|
# @return [Google::Apis::GkehubV1beta::AppDevExperienceFeatureState]
|
433
316
|
attr_accessor :appdevexperience
|
434
317
|
|
318
|
+
# **FleetObservability**: An empty state left as an example Hub-wide Feature
|
319
|
+
# state.
|
320
|
+
# Corresponds to the JSON property `fleetobservability`
|
321
|
+
# @return [Google::Apis::GkehubV1beta::FleetObservabilityFeatureState]
|
322
|
+
attr_accessor :fleetobservability
|
323
|
+
|
435
324
|
# FeatureState describes the high-level state of a Feature. It may be used to
|
436
325
|
# describe a Feature's state at the environ-level, or per-membershop, depending
|
437
326
|
# on the context.
|
@@ -446,6 +335,7 @@ module Google
|
|
446
335
|
# Update properties of this object
|
447
336
|
def update!(**args)
|
448
337
|
@appdevexperience = args[:appdevexperience] if args.key?(:appdevexperience)
|
338
|
+
@fleetobservability = args[:fleetobservability] if args.key?(:fleetobservability)
|
449
339
|
@state = args[:state] if args.key?(:state)
|
450
340
|
end
|
451
341
|
end
|
@@ -1544,6 +1434,29 @@ module Google
|
|
1544
1434
|
# @return [Google::Apis::GkehubV1beta::FeatureResourceState]
|
1545
1435
|
attr_accessor :resource_state
|
1546
1436
|
|
1437
|
+
# Optional. Scope-specific configuration for this Feature. If this Feature does
|
1438
|
+
# not support any per-Scope configuration, this field may be unused. The keys
|
1439
|
+
# indicate which Scope the configuration is for, in the form: `projects/`p`/
|
1440
|
+
# locations/global/scopes/`s`` Where `p` is the project, `s` is a valid Scope in
|
1441
|
+
# this project. `p` WILL match the Feature's project. `p` will always be
|
1442
|
+
# returned as the project number, but the project ID is also accepted during
|
1443
|
+
# input. If the same Scope is specified in the map twice (using the project ID
|
1444
|
+
# form, and the project number form), exactly ONE of the entries will be saved,
|
1445
|
+
# with no guarantees as to which. For this reason, it is recommended the same
|
1446
|
+
# format be used for all entries when mutating a Feature.
|
1447
|
+
# Corresponds to the JSON property `scopeSpecs`
|
1448
|
+
# @return [Hash<String,Google::Apis::GkehubV1beta::ScopeFeatureSpec>]
|
1449
|
+
attr_accessor :scope_specs
|
1450
|
+
|
1451
|
+
# Output only. Scope-specific Feature status. If this Feature does report any
|
1452
|
+
# per-Scope status, this field may be unused. The keys indicate which Scope the
|
1453
|
+
# state is for, in the form: `projects/`p`/locations/global/scopes/`s`` Where `p`
|
1454
|
+
# is the project, `s` is a valid Scope in this project. `p` WILL match the
|
1455
|
+
# Feature's project.
|
1456
|
+
# Corresponds to the JSON property `scopeStates`
|
1457
|
+
# @return [Hash<String,Google::Apis::GkehubV1beta::ScopeFeatureState>]
|
1458
|
+
attr_accessor :scope_states
|
1459
|
+
|
1547
1460
|
# CommonFeatureSpec contains Hub-wide configuration information
|
1548
1461
|
# Corresponds to the JSON property `spec`
|
1549
1462
|
# @return [Google::Apis::GkehubV1beta::CommonFeatureSpec]
|
@@ -1572,6 +1485,8 @@ module Google
|
|
1572
1485
|
@membership_states = args[:membership_states] if args.key?(:membership_states)
|
1573
1486
|
@name = args[:name] if args.key?(:name)
|
1574
1487
|
@resource_state = args[:resource_state] if args.key?(:resource_state)
|
1488
|
+
@scope_specs = args[:scope_specs] if args.key?(:scope_specs)
|
1489
|
+
@scope_states = args[:scope_states] if args.key?(:scope_states)
|
1575
1490
|
@spec = args[:spec] if args.key?(:spec)
|
1576
1491
|
@state = args[:state] if args.key?(:state)
|
1577
1492
|
@update_time = args[:update_time] if args.key?(:update_time)
|
@@ -1632,6 +1547,61 @@ module Google
|
|
1632
1547
|
end
|
1633
1548
|
end
|
1634
1549
|
|
1550
|
+
# **Fleet Observability**: The Hub-wide input for the FleetObservability feature.
|
1551
|
+
class FleetObservabilityFeatureSpec
|
1552
|
+
include Google::Apis::Core::Hashable
|
1553
|
+
|
1554
|
+
def initialize(**args)
|
1555
|
+
update!(**args)
|
1556
|
+
end
|
1557
|
+
|
1558
|
+
# Update properties of this object
|
1559
|
+
def update!(**args)
|
1560
|
+
end
|
1561
|
+
end
|
1562
|
+
|
1563
|
+
# **FleetObservability**: An empty state left as an example Hub-wide Feature
|
1564
|
+
# state.
|
1565
|
+
class FleetObservabilityFeatureState
|
1566
|
+
include Google::Apis::Core::Hashable
|
1567
|
+
|
1568
|
+
def initialize(**args)
|
1569
|
+
update!(**args)
|
1570
|
+
end
|
1571
|
+
|
1572
|
+
# Update properties of this object
|
1573
|
+
def update!(**args)
|
1574
|
+
end
|
1575
|
+
end
|
1576
|
+
|
1577
|
+
# **FleetObservability**: The membership-specific input for FleetObservability
|
1578
|
+
# feature.
|
1579
|
+
class FleetObservabilityMembershipSpec
|
1580
|
+
include Google::Apis::Core::Hashable
|
1581
|
+
|
1582
|
+
def initialize(**args)
|
1583
|
+
update!(**args)
|
1584
|
+
end
|
1585
|
+
|
1586
|
+
# Update properties of this object
|
1587
|
+
def update!(**args)
|
1588
|
+
end
|
1589
|
+
end
|
1590
|
+
|
1591
|
+
# **FleetObservability**: An empty state left as an example membership-specific
|
1592
|
+
# Feature state.
|
1593
|
+
class FleetObservabilityMembershipState
|
1594
|
+
include Google::Apis::Core::Hashable
|
1595
|
+
|
1596
|
+
def initialize(**args)
|
1597
|
+
update!(**args)
|
1598
|
+
end
|
1599
|
+
|
1600
|
+
# Update properties of this object
|
1601
|
+
def update!(**args)
|
1602
|
+
end
|
1603
|
+
end
|
1604
|
+
|
1635
1605
|
# The `Status` type defines a logical error model that is suitable for different
|
1636
1606
|
# programming environments, including REST APIs and RPC APIs. It is used by [
|
1637
1607
|
# gRPC](https://github.com/grpc). Each `Status` message contains three pieces of
|
@@ -1676,6 +1646,11 @@ module Google
|
|
1676
1646
|
class IdentityServiceAuthMethod
|
1677
1647
|
include Google::Apis::Core::Hashable
|
1678
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
|
+
|
1679
1654
|
# Configuration for the Google Plugin Auth flow.
|
1680
1655
|
# Corresponds to the JSON property `googleConfig`
|
1681
1656
|
# @return [Google::Apis::GkehubV1beta::IdentityServiceGoogleConfig]
|
@@ -1702,6 +1677,7 @@ module Google
|
|
1702
1677
|
|
1703
1678
|
# Update properties of this object
|
1704
1679
|
def update!(**args)
|
1680
|
+
@azuread_config = args[:azuread_config] if args.key?(:azuread_config)
|
1705
1681
|
@google_config = args[:google_config] if args.key?(:google_config)
|
1706
1682
|
@name = args[:name] if args.key?(:name)
|
1707
1683
|
@oidc_config = args[:oidc_config] if args.key?(:oidc_config)
|
@@ -1709,6 +1685,53 @@ module Google
|
|
1709
1685
|
end
|
1710
1686
|
end
|
1711
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
|
+
|
1712
1735
|
# Configuration for the Google Plugin Auth flow.
|
1713
1736
|
class IdentityServiceGoogleConfig
|
1714
1737
|
include Google::Apis::Core::Hashable
|
@@ -1965,34 +1988,6 @@ module Google
|
|
1965
1988
|
end
|
1966
1989
|
end
|
1967
1990
|
|
1968
|
-
# LocalControllerState contains the state of the local controller deployed in
|
1969
|
-
# the cluster.
|
1970
|
-
class LocalControllerState
|
1971
|
-
include Google::Apis::Core::Hashable
|
1972
|
-
|
1973
|
-
# Description represents the human readable description of the current state of
|
1974
|
-
# the local PE controller
|
1975
|
-
# Corresponds to the JSON property `description`
|
1976
|
-
# @return [String]
|
1977
|
-
attr_accessor :description
|
1978
|
-
|
1979
|
-
# InstallationState represents the state of deployment of the local PE
|
1980
|
-
# controller in the cluster.
|
1981
|
-
# Corresponds to the JSON property `installationState`
|
1982
|
-
# @return [String]
|
1983
|
-
attr_accessor :installation_state
|
1984
|
-
|
1985
|
-
def initialize(**args)
|
1986
|
-
update!(**args)
|
1987
|
-
end
|
1988
|
-
|
1989
|
-
# Update properties of this object
|
1990
|
-
def update!(**args)
|
1991
|
-
@description = args[:description] if args.key?(:description)
|
1992
|
-
@installation_state = args[:installation_state] if args.key?(:installation_state)
|
1993
|
-
end
|
1994
|
-
end
|
1995
|
-
|
1996
1991
|
# A resource that represents Google Cloud Platform location.
|
1997
1992
|
class Location
|
1998
1993
|
include Google::Apis::Core::Hashable
|
@@ -2050,12 +2045,6 @@ module Google
|
|
2050
2045
|
# @return [Google::Apis::GkehubV1beta::AnthosObservabilityMembershipSpec]
|
2051
2046
|
attr_accessor :anthosobservability
|
2052
2047
|
|
2053
|
-
# AnthosVMMembershipSpec contains the AnthosVM feature configuration for a
|
2054
|
-
# membership/cluster.
|
2055
|
-
# Corresponds to the JSON property `anthosvm`
|
2056
|
-
# @return [Google::Apis::GkehubV1beta::AnthosVmMembershipSpec]
|
2057
|
-
attr_accessor :anthosvm
|
2058
|
-
|
2059
2048
|
# **Cloud Build**: Configurations for each Cloud Build enabled cluster.
|
2060
2049
|
# Corresponds to the JSON property `cloudbuild`
|
2061
2050
|
# @return [Google::Apis::GkehubV1beta::MembershipSpec]
|
@@ -2067,6 +2056,12 @@ module Google
|
|
2067
2056
|
# @return [Google::Apis::GkehubV1beta::ConfigManagementMembershipSpec]
|
2068
2057
|
attr_accessor :configmanagement
|
2069
2058
|
|
2059
|
+
# **FleetObservability**: The membership-specific input for FleetObservability
|
2060
|
+
# feature.
|
2061
|
+
# Corresponds to the JSON property `fleetobservability`
|
2062
|
+
# @return [Google::Apis::GkehubV1beta::FleetObservabilityMembershipSpec]
|
2063
|
+
attr_accessor :fleetobservability
|
2064
|
+
|
2070
2065
|
# **Anthos Identity Service**: Configuration for a single Membership.
|
2071
2066
|
# Corresponds to the JSON property `identityservice`
|
2072
2067
|
# @return [Google::Apis::GkehubV1beta::IdentityServiceMembershipSpec]
|
@@ -2090,9 +2085,9 @@ module Google
|
|
2090
2085
|
# Update properties of this object
|
2091
2086
|
def update!(**args)
|
2092
2087
|
@anthosobservability = args[:anthosobservability] if args.key?(:anthosobservability)
|
2093
|
-
@anthosvm = args[:anthosvm] if args.key?(:anthosvm)
|
2094
2088
|
@cloudbuild = args[:cloudbuild] if args.key?(:cloudbuild)
|
2095
2089
|
@configmanagement = args[:configmanagement] if args.key?(:configmanagement)
|
2090
|
+
@fleetobservability = args[:fleetobservability] if args.key?(:fleetobservability)
|
2096
2091
|
@identityservice = args[:identityservice] if args.key?(:identityservice)
|
2097
2092
|
@mesh = args[:mesh] if args.key?(:mesh)
|
2098
2093
|
@policycontroller = args[:policycontroller] if args.key?(:policycontroller)
|
@@ -2104,13 +2099,6 @@ module Google
|
|
2104
2099
|
class MembershipFeatureState
|
2105
2100
|
include Google::Apis::Core::Hashable
|
2106
2101
|
|
2107
|
-
# AnthosVMFeatureState contains the state of the AnthosVM feature. It represents
|
2108
|
-
# the actual state in the cluster, while the AnthosVMMembershipSpec represents
|
2109
|
-
# the desired state.
|
2110
|
-
# Corresponds to the JSON property `anthosvm`
|
2111
|
-
# @return [Google::Apis::GkehubV1beta::AnthosVmMembershipState]
|
2112
|
-
attr_accessor :anthosvm
|
2113
|
-
|
2114
2102
|
# State for App Dev Exp Feature.
|
2115
2103
|
# Corresponds to the JSON property `appdevexperience`
|
2116
2104
|
# @return [Google::Apis::GkehubV1beta::AppDevExperienceFeatureState]
|
@@ -2121,6 +2109,12 @@ module Google
|
|
2121
2109
|
# @return [Google::Apis::GkehubV1beta::ConfigManagementMembershipState]
|
2122
2110
|
attr_accessor :configmanagement
|
2123
2111
|
|
2112
|
+
# **FleetObservability**: An empty state left as an example membership-specific
|
2113
|
+
# Feature state.
|
2114
|
+
# Corresponds to the JSON property `fleetobservability`
|
2115
|
+
# @return [Google::Apis::GkehubV1beta::FleetObservabilityMembershipState]
|
2116
|
+
attr_accessor :fleetobservability
|
2117
|
+
|
2124
2118
|
# **Anthos Identity Service**: State for a single Membership.
|
2125
2119
|
# Corresponds to the JSON property `identityservice`
|
2126
2120
|
# @return [Google::Apis::GkehubV1beta::IdentityServiceMembershipState]
|
@@ -2155,9 +2149,9 @@ module Google
|
|
2155
2149
|
|
2156
2150
|
# Update properties of this object
|
2157
2151
|
def update!(**args)
|
2158
|
-
@anthosvm = args[:anthosvm] if args.key?(:anthosvm)
|
2159
2152
|
@appdevexperience = args[:appdevexperience] if args.key?(:appdevexperience)
|
2160
2153
|
@configmanagement = args[:configmanagement] if args.key?(:configmanagement)
|
2154
|
+
@fleetobservability = args[:fleetobservability] if args.key?(:fleetobservability)
|
2161
2155
|
@identityservice = args[:identityservice] if args.key?(:identityservice)
|
2162
2156
|
@metering = args[:metering] if args.key?(:metering)
|
2163
2157
|
@policycontroller = args[:policycontroller] if args.key?(:policycontroller)
|
@@ -2218,32 +2212,6 @@ module Google
|
|
2218
2212
|
end
|
2219
2213
|
end
|
2220
2214
|
|
2221
|
-
# MigrateSpec contains the migrate subfeature configuration.
|
2222
|
-
class MigrateSpec
|
2223
|
-
include Google::Apis::Core::Hashable
|
2224
|
-
|
2225
|
-
def initialize(**args)
|
2226
|
-
update!(**args)
|
2227
|
-
end
|
2228
|
-
|
2229
|
-
# Update properties of this object
|
2230
|
-
def update!(**args)
|
2231
|
-
end
|
2232
|
-
end
|
2233
|
-
|
2234
|
-
# MigrateState contains the state of Migrate subfeature
|
2235
|
-
class MigrateState
|
2236
|
-
include Google::Apis::Core::Hashable
|
2237
|
-
|
2238
|
-
def initialize(**args)
|
2239
|
-
update!(**args)
|
2240
|
-
end
|
2241
|
-
|
2242
|
-
# Update properties of this object
|
2243
|
-
def update!(**args)
|
2244
|
-
end
|
2245
|
-
end
|
2246
|
-
|
2247
2215
|
# **Multi-cluster Ingress**: The configuration for the MultiClusterIngress
|
2248
2216
|
# feature.
|
2249
2217
|
class MultiClusterIngressFeatureSpec
|
@@ -2590,14 +2558,6 @@ module Google
|
|
2590
2558
|
class PolicyControllerMembershipState
|
2591
2559
|
include Google::Apis::Core::Hashable
|
2592
2560
|
|
2593
|
-
# The user-defined name for the cluster used by ClusterSelectors to group
|
2594
|
-
# clusters together. This should match Membership's membership_name, unless the
|
2595
|
-
# user installed PC on the cluster manually prior to enabling the PC hub feature.
|
2596
|
-
# Unique within a Policy Controller installation.
|
2597
|
-
# Corresponds to the JSON property `clusterName`
|
2598
|
-
# @return [String]
|
2599
|
-
attr_accessor :cluster_name
|
2600
|
-
|
2601
2561
|
# Currently these include (also serving as map keys): 1. "admission" 2. "audit"
|
2602
2562
|
# 3. "mutation" 4. "constraint template library"
|
2603
2563
|
# Corresponds to the JSON property `componentStates`
|
@@ -2616,7 +2576,6 @@ module Google
|
|
2616
2576
|
|
2617
2577
|
# Update properties of this object
|
2618
2578
|
def update!(**args)
|
2619
|
-
@cluster_name = args[:cluster_name] if args.key?(:cluster_name)
|
2620
2579
|
@component_states = args[:component_states] if args.key?(:component_states)
|
2621
2580
|
@state = args[:state] if args.key?(:state)
|
2622
2581
|
end
|
@@ -2689,6 +2648,40 @@ module Google
|
|
2689
2648
|
end
|
2690
2649
|
end
|
2691
2650
|
|
2651
|
+
# ScopeFeatureSpec contains feature specs for a fleet scope.
|
2652
|
+
class ScopeFeatureSpec
|
2653
|
+
include Google::Apis::Core::Hashable
|
2654
|
+
|
2655
|
+
def initialize(**args)
|
2656
|
+
update!(**args)
|
2657
|
+
end
|
2658
|
+
|
2659
|
+
# Update properties of this object
|
2660
|
+
def update!(**args)
|
2661
|
+
end
|
2662
|
+
end
|
2663
|
+
|
2664
|
+
# ScopeFeatureState contains Scope-wide Feature status information.
|
2665
|
+
class ScopeFeatureState
|
2666
|
+
include Google::Apis::Core::Hashable
|
2667
|
+
|
2668
|
+
# FeatureState describes the high-level state of a Feature. It may be used to
|
2669
|
+
# describe a Feature's state at the environ-level, or per-membershop, depending
|
2670
|
+
# on the context.
|
2671
|
+
# Corresponds to the JSON property `state`
|
2672
|
+
# @return [Google::Apis::GkehubV1beta::FeatureState]
|
2673
|
+
attr_accessor :state
|
2674
|
+
|
2675
|
+
def initialize(**args)
|
2676
|
+
update!(**args)
|
2677
|
+
end
|
2678
|
+
|
2679
|
+
# Update properties of this object
|
2680
|
+
def update!(**args)
|
2681
|
+
@state = args[:state] if args.key?(:state)
|
2682
|
+
end
|
2683
|
+
end
|
2684
|
+
|
2692
2685
|
# Status of control plane management.
|
2693
2686
|
class ServiceMeshControlPlaneManagement
|
2694
2687
|
include Google::Apis::Core::Hashable
|
@@ -2790,32 +2783,6 @@ module Google
|
|
2790
2783
|
end
|
2791
2784
|
end
|
2792
2785
|
|
2793
|
-
# ServiceMeshSpec contains the serviceMesh subfeature configuration.
|
2794
|
-
class ServiceMeshSpec
|
2795
|
-
include Google::Apis::Core::Hashable
|
2796
|
-
|
2797
|
-
def initialize(**args)
|
2798
|
-
update!(**args)
|
2799
|
-
end
|
2800
|
-
|
2801
|
-
# Update properties of this object
|
2802
|
-
def update!(**args)
|
2803
|
-
end
|
2804
|
-
end
|
2805
|
-
|
2806
|
-
# ServiceMeshState contains the state of Service Mesh subfeature
|
2807
|
-
class ServiceMeshState
|
2808
|
-
include Google::Apis::Core::Hashable
|
2809
|
-
|
2810
|
-
def initialize(**args)
|
2811
|
-
update!(**args)
|
2812
|
-
end
|
2813
|
-
|
2814
|
-
# Update properties of this object
|
2815
|
-
def update!(**args)
|
2816
|
-
end
|
2817
|
-
end
|
2818
|
-
|
2819
2786
|
# Structured and human-readable details for a status.
|
2820
2787
|
class ServiceMeshStatusDetails
|
2821
2788
|
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.35.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
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
|
@@ -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
|
|
@@ -292,103 +268,115 @@ module Google
|
|
292
268
|
include Google::Apis::Core::JsonObjectSupport
|
293
269
|
end
|
294
270
|
|
295
|
-
class
|
271
|
+
class FleetObservabilityFeatureSpec
|
296
272
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
297
273
|
|
298
274
|
include Google::Apis::Core::JsonObjectSupport
|
299
275
|
end
|
300
276
|
|
301
|
-
class
|
277
|
+
class FleetObservabilityFeatureState
|
302
278
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
303
279
|
|
304
280
|
include Google::Apis::Core::JsonObjectSupport
|
305
281
|
end
|
306
282
|
|
307
|
-
class
|
283
|
+
class FleetObservabilityMembershipSpec
|
308
284
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
309
285
|
|
310
286
|
include Google::Apis::Core::JsonObjectSupport
|
311
287
|
end
|
312
288
|
|
313
|
-
class
|
289
|
+
class FleetObservabilityMembershipState
|
314
290
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
315
291
|
|
316
292
|
include Google::Apis::Core::JsonObjectSupport
|
317
293
|
end
|
318
294
|
|
319
|
-
class
|
295
|
+
class GoogleRpcStatus
|
320
296
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
321
297
|
|
322
298
|
include Google::Apis::Core::JsonObjectSupport
|
323
299
|
end
|
324
300
|
|
325
|
-
class
|
301
|
+
class IdentityServiceAuthMethod
|
326
302
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
327
303
|
|
328
304
|
include Google::Apis::Core::JsonObjectSupport
|
329
305
|
end
|
330
306
|
|
331
|
-
class
|
307
|
+
class IdentityServiceAzureAdConfig
|
332
308
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
333
309
|
|
334
310
|
include Google::Apis::Core::JsonObjectSupport
|
335
311
|
end
|
336
312
|
|
337
|
-
class
|
313
|
+
class IdentityServiceGoogleConfig
|
338
314
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
339
315
|
|
340
316
|
include Google::Apis::Core::JsonObjectSupport
|
341
317
|
end
|
342
318
|
|
343
|
-
class
|
319
|
+
class IdentityServiceMembershipSpec
|
344
320
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
345
321
|
|
346
322
|
include Google::Apis::Core::JsonObjectSupport
|
347
323
|
end
|
348
324
|
|
349
|
-
class
|
325
|
+
class IdentityServiceMembershipState
|
350
326
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
351
327
|
|
352
328
|
include Google::Apis::Core::JsonObjectSupport
|
353
329
|
end
|
354
330
|
|
355
|
-
class
|
331
|
+
class IdentityServiceOidcConfig
|
356
332
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
357
333
|
|
358
334
|
include Google::Apis::Core::JsonObjectSupport
|
359
335
|
end
|
360
336
|
|
361
|
-
class
|
337
|
+
class ListFeaturesResponse
|
362
338
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
363
339
|
|
364
340
|
include Google::Apis::Core::JsonObjectSupport
|
365
341
|
end
|
366
342
|
|
367
|
-
class
|
343
|
+
class ListLocationsResponse
|
368
344
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
369
345
|
|
370
346
|
include Google::Apis::Core::JsonObjectSupport
|
371
347
|
end
|
372
348
|
|
373
|
-
class
|
349
|
+
class ListOperationsResponse
|
374
350
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
375
351
|
|
376
352
|
include Google::Apis::Core::JsonObjectSupport
|
377
353
|
end
|
378
354
|
|
379
|
-
class
|
355
|
+
class Location
|
356
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
357
|
+
|
358
|
+
include Google::Apis::Core::JsonObjectSupport
|
359
|
+
end
|
360
|
+
|
361
|
+
class MembershipFeatureSpec
|
362
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
363
|
+
|
364
|
+
include Google::Apis::Core::JsonObjectSupport
|
365
|
+
end
|
366
|
+
|
367
|
+
class MembershipFeatureState
|
380
368
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
381
369
|
|
382
370
|
include Google::Apis::Core::JsonObjectSupport
|
383
371
|
end
|
384
372
|
|
385
|
-
class
|
373
|
+
class MembershipSpec
|
386
374
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
387
375
|
|
388
376
|
include Google::Apis::Core::JsonObjectSupport
|
389
377
|
end
|
390
378
|
|
391
|
-
class
|
379
|
+
class MeteringMembershipState
|
392
380
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
393
381
|
|
394
382
|
include Google::Apis::Core::JsonObjectSupport
|
@@ -454,37 +442,37 @@ module Google
|
|
454
442
|
include Google::Apis::Core::JsonObjectSupport
|
455
443
|
end
|
456
444
|
|
457
|
-
class
|
445
|
+
class ScopeFeatureSpec
|
458
446
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
459
447
|
|
460
448
|
include Google::Apis::Core::JsonObjectSupport
|
461
449
|
end
|
462
450
|
|
463
|
-
class
|
451
|
+
class ScopeFeatureState
|
464
452
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
465
453
|
|
466
454
|
include Google::Apis::Core::JsonObjectSupport
|
467
455
|
end
|
468
456
|
|
469
|
-
class
|
457
|
+
class ServiceMeshControlPlaneManagement
|
470
458
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
471
459
|
|
472
460
|
include Google::Apis::Core::JsonObjectSupport
|
473
461
|
end
|
474
462
|
|
475
|
-
class
|
463
|
+
class ServiceMeshDataPlaneManagement
|
476
464
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
477
465
|
|
478
466
|
include Google::Apis::Core::JsonObjectSupport
|
479
467
|
end
|
480
468
|
|
481
|
-
class
|
469
|
+
class ServiceMeshMembershipSpec
|
482
470
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
483
471
|
|
484
472
|
include Google::Apis::Core::JsonObjectSupport
|
485
473
|
end
|
486
474
|
|
487
|
-
class
|
475
|
+
class ServiceMeshMembershipState
|
488
476
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
489
477
|
|
490
478
|
include Google::Apis::Core::JsonObjectSupport
|
@@ -537,47 +525,6 @@ module Google
|
|
537
525
|
end
|
538
526
|
end
|
539
527
|
|
540
|
-
class AnthosVmMembershipSpec
|
541
|
-
# @private
|
542
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
543
|
-
collection :subfeatures_spec, as: 'subfeaturesSpec', class: Google::Apis::GkehubV1beta::AnthosVmSubFeatureSpec, decorator: Google::Apis::GkehubV1beta::AnthosVmSubFeatureSpec::Representation
|
544
|
-
|
545
|
-
end
|
546
|
-
end
|
547
|
-
|
548
|
-
class AnthosVmMembershipState
|
549
|
-
# @private
|
550
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
551
|
-
property :local_controller_state, as: 'localControllerState', class: Google::Apis::GkehubV1beta::LocalControllerState, decorator: Google::Apis::GkehubV1beta::LocalControllerState::Representation
|
552
|
-
|
553
|
-
collection :subfeature_state, as: 'subfeatureState', class: Google::Apis::GkehubV1beta::AnthosVmSubFeatureState, decorator: Google::Apis::GkehubV1beta::AnthosVmSubFeatureState::Representation
|
554
|
-
|
555
|
-
end
|
556
|
-
end
|
557
|
-
|
558
|
-
class AnthosVmSubFeatureSpec
|
559
|
-
# @private
|
560
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
561
|
-
property :enabled, as: 'enabled'
|
562
|
-
property :migrate_spec, as: 'migrateSpec', class: Google::Apis::GkehubV1beta::MigrateSpec, decorator: Google::Apis::GkehubV1beta::MigrateSpec::Representation
|
563
|
-
|
564
|
-
property :service_mesh_spec, as: 'serviceMeshSpec', class: Google::Apis::GkehubV1beta::ServiceMeshSpec, decorator: Google::Apis::GkehubV1beta::ServiceMeshSpec::Representation
|
565
|
-
|
566
|
-
end
|
567
|
-
end
|
568
|
-
|
569
|
-
class AnthosVmSubFeatureState
|
570
|
-
# @private
|
571
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
572
|
-
property :description, as: 'description'
|
573
|
-
property :installation_state, as: 'installationState'
|
574
|
-
property :migrate_state, as: 'migrateState', class: Google::Apis::GkehubV1beta::MigrateState, decorator: Google::Apis::GkehubV1beta::MigrateState::Representation
|
575
|
-
|
576
|
-
property :service_mesh_state, as: 'serviceMeshState', class: Google::Apis::GkehubV1beta::ServiceMeshState, decorator: Google::Apis::GkehubV1beta::ServiceMeshState::Representation
|
577
|
-
|
578
|
-
end
|
579
|
-
end
|
580
|
-
|
581
528
|
class AppDevExperienceFeatureSpec
|
582
529
|
# @private
|
583
530
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -632,6 +579,8 @@ module Google
|
|
632
579
|
|
633
580
|
property :appdevexperience, as: 'appdevexperience', class: Google::Apis::GkehubV1beta::AppDevExperienceFeatureSpec, decorator: Google::Apis::GkehubV1beta::AppDevExperienceFeatureSpec::Representation
|
634
581
|
|
582
|
+
property :fleetobservability, as: 'fleetobservability', class: Google::Apis::GkehubV1beta::FleetObservabilityFeatureSpec, decorator: Google::Apis::GkehubV1beta::FleetObservabilityFeatureSpec::Representation
|
583
|
+
|
635
584
|
property :multiclusteringress, as: 'multiclusteringress', class: Google::Apis::GkehubV1beta::MultiClusterIngressFeatureSpec, decorator: Google::Apis::GkehubV1beta::MultiClusterIngressFeatureSpec::Representation
|
636
585
|
|
637
586
|
end
|
@@ -642,6 +591,8 @@ module Google
|
|
642
591
|
class Representation < Google::Apis::Core::JsonRepresentation
|
643
592
|
property :appdevexperience, as: 'appdevexperience', class: Google::Apis::GkehubV1beta::AppDevExperienceFeatureState, decorator: Google::Apis::GkehubV1beta::AppDevExperienceFeatureState::Representation
|
644
593
|
|
594
|
+
property :fleetobservability, as: 'fleetobservability', class: Google::Apis::GkehubV1beta::FleetObservabilityFeatureState, decorator: Google::Apis::GkehubV1beta::FleetObservabilityFeatureState::Representation
|
595
|
+
|
645
596
|
property :state, as: 'state', class: Google::Apis::GkehubV1beta::FeatureState, decorator: Google::Apis::GkehubV1beta::FeatureState::Representation
|
646
597
|
|
647
598
|
end
|
@@ -954,6 +905,10 @@ module Google
|
|
954
905
|
property :name, as: 'name'
|
955
906
|
property :resource_state, as: 'resourceState', class: Google::Apis::GkehubV1beta::FeatureResourceState, decorator: Google::Apis::GkehubV1beta::FeatureResourceState::Representation
|
956
907
|
|
908
|
+
hash :scope_specs, as: 'scopeSpecs', class: Google::Apis::GkehubV1beta::ScopeFeatureSpec, decorator: Google::Apis::GkehubV1beta::ScopeFeatureSpec::Representation
|
909
|
+
|
910
|
+
hash :scope_states, as: 'scopeStates', class: Google::Apis::GkehubV1beta::ScopeFeatureState, decorator: Google::Apis::GkehubV1beta::ScopeFeatureState::Representation
|
911
|
+
|
957
912
|
property :spec, as: 'spec', class: Google::Apis::GkehubV1beta::CommonFeatureSpec, decorator: Google::Apis::GkehubV1beta::CommonFeatureSpec::Representation
|
958
913
|
|
959
914
|
property :state, as: 'state', class: Google::Apis::GkehubV1beta::CommonFeatureState, decorator: Google::Apis::GkehubV1beta::CommonFeatureState::Representation
|
@@ -978,6 +933,30 @@ module Google
|
|
978
933
|
end
|
979
934
|
end
|
980
935
|
|
936
|
+
class FleetObservabilityFeatureSpec
|
937
|
+
# @private
|
938
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
939
|
+
end
|
940
|
+
end
|
941
|
+
|
942
|
+
class FleetObservabilityFeatureState
|
943
|
+
# @private
|
944
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
945
|
+
end
|
946
|
+
end
|
947
|
+
|
948
|
+
class FleetObservabilityMembershipSpec
|
949
|
+
# @private
|
950
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
951
|
+
end
|
952
|
+
end
|
953
|
+
|
954
|
+
class FleetObservabilityMembershipState
|
955
|
+
# @private
|
956
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
957
|
+
end
|
958
|
+
end
|
959
|
+
|
981
960
|
class GoogleRpcStatus
|
982
961
|
# @private
|
983
962
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -990,6 +969,8 @@ module Google
|
|
990
969
|
class IdentityServiceAuthMethod
|
991
970
|
# @private
|
992
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
|
+
|
993
974
|
property :google_config, as: 'googleConfig', class: Google::Apis::GkehubV1beta::IdentityServiceGoogleConfig, decorator: Google::Apis::GkehubV1beta::IdentityServiceGoogleConfig::Representation
|
994
975
|
|
995
976
|
property :name, as: 'name'
|
@@ -999,6 +980,17 @@ module Google
|
|
999
980
|
end
|
1000
981
|
end
|
1001
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
|
+
|
1002
994
|
class IdentityServiceGoogleConfig
|
1003
995
|
# @private
|
1004
996
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1072,14 +1064,6 @@ module Google
|
|
1072
1064
|
end
|
1073
1065
|
end
|
1074
1066
|
|
1075
|
-
class LocalControllerState
|
1076
|
-
# @private
|
1077
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
1078
|
-
property :description, as: 'description'
|
1079
|
-
property :installation_state, as: 'installationState'
|
1080
|
-
end
|
1081
|
-
end
|
1082
|
-
|
1083
1067
|
class Location
|
1084
1068
|
# @private
|
1085
1069
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1096,12 +1080,12 @@ module Google
|
|
1096
1080
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1097
1081
|
property :anthosobservability, as: 'anthosobservability', class: Google::Apis::GkehubV1beta::AnthosObservabilityMembershipSpec, decorator: Google::Apis::GkehubV1beta::AnthosObservabilityMembershipSpec::Representation
|
1098
1082
|
|
1099
|
-
property :anthosvm, as: 'anthosvm', class: Google::Apis::GkehubV1beta::AnthosVmMembershipSpec, decorator: Google::Apis::GkehubV1beta::AnthosVmMembershipSpec::Representation
|
1100
|
-
|
1101
1083
|
property :cloudbuild, as: 'cloudbuild', class: Google::Apis::GkehubV1beta::MembershipSpec, decorator: Google::Apis::GkehubV1beta::MembershipSpec::Representation
|
1102
1084
|
|
1103
1085
|
property :configmanagement, as: 'configmanagement', class: Google::Apis::GkehubV1beta::ConfigManagementMembershipSpec, decorator: Google::Apis::GkehubV1beta::ConfigManagementMembershipSpec::Representation
|
1104
1086
|
|
1087
|
+
property :fleetobservability, as: 'fleetobservability', class: Google::Apis::GkehubV1beta::FleetObservabilityMembershipSpec, decorator: Google::Apis::GkehubV1beta::FleetObservabilityMembershipSpec::Representation
|
1088
|
+
|
1105
1089
|
property :identityservice, as: 'identityservice', class: Google::Apis::GkehubV1beta::IdentityServiceMembershipSpec, decorator: Google::Apis::GkehubV1beta::IdentityServiceMembershipSpec::Representation
|
1106
1090
|
|
1107
1091
|
property :mesh, as: 'mesh', class: Google::Apis::GkehubV1beta::ServiceMeshMembershipSpec, decorator: Google::Apis::GkehubV1beta::ServiceMeshMembershipSpec::Representation
|
@@ -1114,12 +1098,12 @@ module Google
|
|
1114
1098
|
class MembershipFeatureState
|
1115
1099
|
# @private
|
1116
1100
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1117
|
-
property :anthosvm, as: 'anthosvm', class: Google::Apis::GkehubV1beta::AnthosVmMembershipState, decorator: Google::Apis::GkehubV1beta::AnthosVmMembershipState::Representation
|
1118
|
-
|
1119
1101
|
property :appdevexperience, as: 'appdevexperience', class: Google::Apis::GkehubV1beta::AppDevExperienceFeatureState, decorator: Google::Apis::GkehubV1beta::AppDevExperienceFeatureState::Representation
|
1120
1102
|
|
1121
1103
|
property :configmanagement, as: 'configmanagement', class: Google::Apis::GkehubV1beta::ConfigManagementMembershipState, decorator: Google::Apis::GkehubV1beta::ConfigManagementMembershipState::Representation
|
1122
1104
|
|
1105
|
+
property :fleetobservability, as: 'fleetobservability', class: Google::Apis::GkehubV1beta::FleetObservabilityMembershipState, decorator: Google::Apis::GkehubV1beta::FleetObservabilityMembershipState::Representation
|
1106
|
+
|
1123
1107
|
property :identityservice, as: 'identityservice', class: Google::Apis::GkehubV1beta::IdentityServiceMembershipState, decorator: Google::Apis::GkehubV1beta::IdentityServiceMembershipState::Representation
|
1124
1108
|
|
1125
1109
|
property :metering, as: 'metering', class: Google::Apis::GkehubV1beta::MeteringMembershipState, decorator: Google::Apis::GkehubV1beta::MeteringMembershipState::Representation
|
@@ -1149,18 +1133,6 @@ module Google
|
|
1149
1133
|
end
|
1150
1134
|
end
|
1151
1135
|
|
1152
|
-
class MigrateSpec
|
1153
|
-
# @private
|
1154
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
1155
|
-
end
|
1156
|
-
end
|
1157
|
-
|
1158
|
-
class MigrateState
|
1159
|
-
# @private
|
1160
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
1161
|
-
end
|
1162
|
-
end
|
1163
|
-
|
1164
1136
|
class MultiClusterIngressFeatureSpec
|
1165
1137
|
# @private
|
1166
1138
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1234,7 +1206,6 @@ module Google
|
|
1234
1206
|
class PolicyControllerMembershipState
|
1235
1207
|
# @private
|
1236
1208
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1237
|
-
property :cluster_name, as: 'clusterName'
|
1238
1209
|
hash :component_states, as: 'componentStates', class: Google::Apis::GkehubV1beta::PolicyControllerOnClusterState, decorator: Google::Apis::GkehubV1beta::PolicyControllerOnClusterState::Representation
|
1239
1210
|
|
1240
1211
|
property :state, as: 'state'
|
@@ -1263,6 +1234,20 @@ module Google
|
|
1263
1234
|
end
|
1264
1235
|
end
|
1265
1236
|
|
1237
|
+
class ScopeFeatureSpec
|
1238
|
+
# @private
|
1239
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1240
|
+
end
|
1241
|
+
end
|
1242
|
+
|
1243
|
+
class ScopeFeatureState
|
1244
|
+
# @private
|
1245
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1246
|
+
property :state, as: 'state', class: Google::Apis::GkehubV1beta::FeatureState, decorator: Google::Apis::GkehubV1beta::FeatureState::Representation
|
1247
|
+
|
1248
|
+
end
|
1249
|
+
end
|
1250
|
+
|
1266
1251
|
class ServiceMeshControlPlaneManagement
|
1267
1252
|
# @private
|
1268
1253
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1299,18 +1284,6 @@ module Google
|
|
1299
1284
|
end
|
1300
1285
|
end
|
1301
1286
|
|
1302
|
-
class ServiceMeshSpec
|
1303
|
-
# @private
|
1304
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
1305
|
-
end
|
1306
|
-
end
|
1307
|
-
|
1308
|
-
class ServiceMeshState
|
1309
|
-
# @private
|
1310
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
1311
|
-
end
|
1312
|
-
end
|
1313
|
-
|
1314
1287
|
class ServiceMeshStatusDetails
|
1315
1288
|
# @private
|
1316
1289
|
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.35.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
|
@@ -16,7 +16,7 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 0.9.
|
19
|
+
version: 0.9.1
|
20
20
|
- - "<"
|
21
21
|
- !ruby/object:Gem::Version
|
22
22
|
version: 2.a
|
@@ -26,7 +26,7 @@ dependencies:
|
|
26
26
|
requirements:
|
27
27
|
- - ">="
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
version: 0.9.
|
29
|
+
version: 0.9.1
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: 2.a
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-gkehub_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.35.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: []
|