google-apis-gkehub_v1 0.35.0 → 0.37.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_v1/classes.rb +194 -218
- data/lib/google/apis/gkehub_v1/gem_version.rb +3 -3
- data/lib/google/apis/gkehub_v1/representations.rb +99 -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: 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
@@ -1,5 +1,14 @@
|
|
1
1
|
# Release history for google-apis-gkehub_v1
|
2
2
|
|
3
|
+
### v0.37.0 (2022-11-06)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20221031
|
6
|
+
|
7
|
+
### v0.36.0 (2022-10-30)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20221018
|
10
|
+
* Regenerated using generator version 0.11.0
|
11
|
+
|
3
12
|
### v0.35.0 (2022-09-20)
|
4
13
|
|
5
14
|
* Regenerated using generator version 0.10.0
|
@@ -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
|
@@ -421,6 +298,11 @@ module Google
|
|
421
298
|
# @return [Google::Apis::GkehubV1::AppDevExperienceFeatureSpec]
|
422
299
|
attr_accessor :appdevexperience
|
423
300
|
|
301
|
+
# **Fleet Observability**: The Hub-wide input for the FleetObservability feature.
|
302
|
+
# Corresponds to the JSON property `fleetobservability`
|
303
|
+
# @return [Google::Apis::GkehubV1::FleetObservabilityFeatureSpec]
|
304
|
+
attr_accessor :fleetobservability
|
305
|
+
|
424
306
|
# **Multi-cluster Ingress**: The configuration for the MultiClusterIngress
|
425
307
|
# feature.
|
426
308
|
# Corresponds to the JSON property `multiclusteringress`
|
@@ -434,6 +316,7 @@ module Google
|
|
434
316
|
# Update properties of this object
|
435
317
|
def update!(**args)
|
436
318
|
@appdevexperience = args[:appdevexperience] if args.key?(:appdevexperience)
|
319
|
+
@fleetobservability = args[:fleetobservability] if args.key?(:fleetobservability)
|
437
320
|
@multiclusteringress = args[:multiclusteringress] if args.key?(:multiclusteringress)
|
438
321
|
end
|
439
322
|
end
|
@@ -447,6 +330,12 @@ module Google
|
|
447
330
|
# @return [Google::Apis::GkehubV1::AppDevExperienceFeatureState]
|
448
331
|
attr_accessor :appdevexperience
|
449
332
|
|
333
|
+
# **FleetObservability**: An empty state left as an example Hub-wide Feature
|
334
|
+
# state.
|
335
|
+
# Corresponds to the JSON property `fleetobservability`
|
336
|
+
# @return [Google::Apis::GkehubV1::FleetObservabilityFeatureState]
|
337
|
+
attr_accessor :fleetobservability
|
338
|
+
|
450
339
|
# FeatureState describes the high-level state of a Feature. It may be used to
|
451
340
|
# describe a Feature's state at the environ-level, or per-membershop, depending
|
452
341
|
# on the context.
|
@@ -461,6 +350,7 @@ module Google
|
|
461
350
|
# Update properties of this object
|
462
351
|
def update!(**args)
|
463
352
|
@appdevexperience = args[:appdevexperience] if args.key?(:appdevexperience)
|
353
|
+
@fleetobservability = args[:fleetobservability] if args.key?(:fleetobservability)
|
464
354
|
@state = args[:state] if args.key?(:state)
|
465
355
|
end
|
466
356
|
end
|
@@ -1531,6 +1421,29 @@ module Google
|
|
1531
1421
|
# @return [Google::Apis::GkehubV1::FeatureResourceState]
|
1532
1422
|
attr_accessor :resource_state
|
1533
1423
|
|
1424
|
+
# Optional. Scope-specific configuration for this Feature. If this Feature does
|
1425
|
+
# not support any per-Scope configuration, this field may be unused. The keys
|
1426
|
+
# indicate which Scope the configuration is for, in the form: `projects/`p`/
|
1427
|
+
# locations/global/scopes/`s`` Where `p` is the project, `s` is a valid Scope in
|
1428
|
+
# this project. `p` WILL match the Feature's project. `p` will always be
|
1429
|
+
# returned as the project number, but the project ID is also accepted during
|
1430
|
+
# input. If the same Scope is specified in the map twice (using the project ID
|
1431
|
+
# form, and the project number form), exactly ONE of the entries will be saved,
|
1432
|
+
# with no guarantees as to which. For this reason, it is recommended the same
|
1433
|
+
# format be used for all entries when mutating a Feature.
|
1434
|
+
# Corresponds to the JSON property `scopeSpecs`
|
1435
|
+
# @return [Hash<String,Google::Apis::GkehubV1::ScopeFeatureSpec>]
|
1436
|
+
attr_accessor :scope_specs
|
1437
|
+
|
1438
|
+
# Output only. Scope-specific Feature status. If this Feature does report any
|
1439
|
+
# per-Scope status, this field may be unused. The keys indicate which Scope the
|
1440
|
+
# state is for, in the form: `projects/`p`/locations/global/scopes/`s`` Where `p`
|
1441
|
+
# is the project, `s` is a valid Scope in this project. `p` WILL match the
|
1442
|
+
# Feature's project.
|
1443
|
+
# Corresponds to the JSON property `scopeStates`
|
1444
|
+
# @return [Hash<String,Google::Apis::GkehubV1::ScopeFeatureState>]
|
1445
|
+
attr_accessor :scope_states
|
1446
|
+
|
1534
1447
|
# CommonFeatureSpec contains Hub-wide configuration information
|
1535
1448
|
# Corresponds to the JSON property `spec`
|
1536
1449
|
# @return [Google::Apis::GkehubV1::CommonFeatureSpec]
|
@@ -1559,6 +1472,8 @@ module Google
|
|
1559
1472
|
@membership_states = args[:membership_states] if args.key?(:membership_states)
|
1560
1473
|
@name = args[:name] if args.key?(:name)
|
1561
1474
|
@resource_state = args[:resource_state] if args.key?(:resource_state)
|
1475
|
+
@scope_specs = args[:scope_specs] if args.key?(:scope_specs)
|
1476
|
+
@scope_states = args[:scope_states] if args.key?(:scope_states)
|
1562
1477
|
@spec = args[:spec] if args.key?(:spec)
|
1563
1478
|
@state = args[:state] if args.key?(:state)
|
1564
1479
|
@update_time = args[:update_time] if args.key?(:update_time)
|
@@ -1619,6 +1534,61 @@ module Google
|
|
1619
1534
|
end
|
1620
1535
|
end
|
1621
1536
|
|
1537
|
+
# **Fleet Observability**: The Hub-wide input for the FleetObservability feature.
|
1538
|
+
class FleetObservabilityFeatureSpec
|
1539
|
+
include Google::Apis::Core::Hashable
|
1540
|
+
|
1541
|
+
def initialize(**args)
|
1542
|
+
update!(**args)
|
1543
|
+
end
|
1544
|
+
|
1545
|
+
# Update properties of this object
|
1546
|
+
def update!(**args)
|
1547
|
+
end
|
1548
|
+
end
|
1549
|
+
|
1550
|
+
# **FleetObservability**: An empty state left as an example Hub-wide Feature
|
1551
|
+
# state.
|
1552
|
+
class FleetObservabilityFeatureState
|
1553
|
+
include Google::Apis::Core::Hashable
|
1554
|
+
|
1555
|
+
def initialize(**args)
|
1556
|
+
update!(**args)
|
1557
|
+
end
|
1558
|
+
|
1559
|
+
# Update properties of this object
|
1560
|
+
def update!(**args)
|
1561
|
+
end
|
1562
|
+
end
|
1563
|
+
|
1564
|
+
# **FleetObservability**: The membership-specific input for FleetObservability
|
1565
|
+
# feature.
|
1566
|
+
class FleetObservabilityMembershipSpec
|
1567
|
+
include Google::Apis::Core::Hashable
|
1568
|
+
|
1569
|
+
def initialize(**args)
|
1570
|
+
update!(**args)
|
1571
|
+
end
|
1572
|
+
|
1573
|
+
# Update properties of this object
|
1574
|
+
def update!(**args)
|
1575
|
+
end
|
1576
|
+
end
|
1577
|
+
|
1578
|
+
# **FleetObservability**: An empty state left as an example membership-specific
|
1579
|
+
# Feature state.
|
1580
|
+
class FleetObservabilityMembershipState
|
1581
|
+
include Google::Apis::Core::Hashable
|
1582
|
+
|
1583
|
+
def initialize(**args)
|
1584
|
+
update!(**args)
|
1585
|
+
end
|
1586
|
+
|
1587
|
+
# Update properties of this object
|
1588
|
+
def update!(**args)
|
1589
|
+
end
|
1590
|
+
end
|
1591
|
+
|
1622
1592
|
# GenerateConnectManifestResponse contains manifest information for installing/
|
1623
1593
|
# upgrading a Connect agent.
|
1624
1594
|
class GenerateConnectManifestResponse
|
@@ -1713,6 +1683,11 @@ module Google
|
|
1713
1683
|
class IdentityServiceAuthMethod
|
1714
1684
|
include Google::Apis::Core::Hashable
|
1715
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
|
+
|
1716
1691
|
# Configuration for the Google Plugin Auth flow.
|
1717
1692
|
# Corresponds to the JSON property `googleConfig`
|
1718
1693
|
# @return [Google::Apis::GkehubV1::IdentityServiceGoogleConfig]
|
@@ -1739,6 +1714,7 @@ module Google
|
|
1739
1714
|
|
1740
1715
|
# Update properties of this object
|
1741
1716
|
def update!(**args)
|
1717
|
+
@azuread_config = args[:azuread_config] if args.key?(:azuread_config)
|
1742
1718
|
@google_config = args[:google_config] if args.key?(:google_config)
|
1743
1719
|
@name = args[:name] if args.key?(:name)
|
1744
1720
|
@oidc_config = args[:oidc_config] if args.key?(:oidc_config)
|
@@ -1746,6 +1722,53 @@ module Google
|
|
1746
1722
|
end
|
1747
1723
|
end
|
1748
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
|
+
|
1749
1772
|
# Configuration for the Google Plugin Auth flow.
|
1750
1773
|
class IdentityServiceGoogleConfig
|
1751
1774
|
include Google::Apis::Core::Hashable
|
@@ -2146,34 +2169,6 @@ module Google
|
|
2146
2169
|
end
|
2147
2170
|
end
|
2148
2171
|
|
2149
|
-
# LocalControllerState contains the state of the local controller deployed in
|
2150
|
-
# the cluster.
|
2151
|
-
class LocalControllerState
|
2152
|
-
include Google::Apis::Core::Hashable
|
2153
|
-
|
2154
|
-
# Description represents the human readable description of the current state of
|
2155
|
-
# the local PE controller
|
2156
|
-
# Corresponds to the JSON property `description`
|
2157
|
-
# @return [String]
|
2158
|
-
attr_accessor :description
|
2159
|
-
|
2160
|
-
# InstallationState represents the state of deployment of the local PE
|
2161
|
-
# controller in the cluster.
|
2162
|
-
# Corresponds to the JSON property `installationState`
|
2163
|
-
# @return [String]
|
2164
|
-
attr_accessor :installation_state
|
2165
|
-
|
2166
|
-
def initialize(**args)
|
2167
|
-
update!(**args)
|
2168
|
-
end
|
2169
|
-
|
2170
|
-
# Update properties of this object
|
2171
|
-
def update!(**args)
|
2172
|
-
@description = args[:description] if args.key?(:description)
|
2173
|
-
@installation_state = args[:installation_state] if args.key?(:installation_state)
|
2174
|
-
end
|
2175
|
-
end
|
2176
|
-
|
2177
2172
|
# A resource that represents Google Cloud Platform location.
|
2178
2173
|
class Location
|
2179
2174
|
include Google::Apis::Core::Hashable
|
@@ -2388,18 +2383,18 @@ module Google
|
|
2388
2383
|
class MembershipFeatureSpec
|
2389
2384
|
include Google::Apis::Core::Hashable
|
2390
2385
|
|
2391
|
-
# AnthosVMMembershipSpec contains the AnthosVM feature configuration for a
|
2392
|
-
# membership/cluster.
|
2393
|
-
# Corresponds to the JSON property `anthosvm`
|
2394
|
-
# @return [Google::Apis::GkehubV1::AnthosVmMembershipSpec]
|
2395
|
-
attr_accessor :anthosvm
|
2396
|
-
|
2397
2386
|
# **Anthos Config Management**: Configuration for a single cluster. Intended to
|
2398
2387
|
# parallel the ConfigManagement CR.
|
2399
2388
|
# Corresponds to the JSON property `configmanagement`
|
2400
2389
|
# @return [Google::Apis::GkehubV1::ConfigManagementMembershipSpec]
|
2401
2390
|
attr_accessor :configmanagement
|
2402
2391
|
|
2392
|
+
# **FleetObservability**: The membership-specific input for FleetObservability
|
2393
|
+
# feature.
|
2394
|
+
# Corresponds to the JSON property `fleetobservability`
|
2395
|
+
# @return [Google::Apis::GkehubV1::FleetObservabilityMembershipSpec]
|
2396
|
+
attr_accessor :fleetobservability
|
2397
|
+
|
2403
2398
|
# **Anthos Identity Service**: Configuration for a single Membership.
|
2404
2399
|
# Corresponds to the JSON property `identityservice`
|
2405
2400
|
# @return [Google::Apis::GkehubV1::IdentityServiceMembershipSpec]
|
@@ -2416,8 +2411,8 @@ module Google
|
|
2416
2411
|
|
2417
2412
|
# Update properties of this object
|
2418
2413
|
def update!(**args)
|
2419
|
-
@anthosvm = args[:anthosvm] if args.key?(:anthosvm)
|
2420
2414
|
@configmanagement = args[:configmanagement] if args.key?(:configmanagement)
|
2415
|
+
@fleetobservability = args[:fleetobservability] if args.key?(:fleetobservability)
|
2421
2416
|
@identityservice = args[:identityservice] if args.key?(:identityservice)
|
2422
2417
|
@mesh = args[:mesh] if args.key?(:mesh)
|
2423
2418
|
end
|
@@ -2428,13 +2423,6 @@ module Google
|
|
2428
2423
|
class MembershipFeatureState
|
2429
2424
|
include Google::Apis::Core::Hashable
|
2430
2425
|
|
2431
|
-
# AnthosVMFeatureState contains the state of the AnthosVM feature. It represents
|
2432
|
-
# the actual state in the cluster, while the AnthosVMMembershipSpec represents
|
2433
|
-
# the desired state.
|
2434
|
-
# Corresponds to the JSON property `anthosvm`
|
2435
|
-
# @return [Google::Apis::GkehubV1::AnthosVmMembershipState]
|
2436
|
-
attr_accessor :anthosvm
|
2437
|
-
|
2438
2426
|
# State for App Dev Exp Feature.
|
2439
2427
|
# Corresponds to the JSON property `appdevexperience`
|
2440
2428
|
# @return [Google::Apis::GkehubV1::AppDevExperienceFeatureState]
|
@@ -2445,6 +2433,12 @@ module Google
|
|
2445
2433
|
# @return [Google::Apis::GkehubV1::ConfigManagementMembershipState]
|
2446
2434
|
attr_accessor :configmanagement
|
2447
2435
|
|
2436
|
+
# **FleetObservability**: An empty state left as an example membership-specific
|
2437
|
+
# Feature state.
|
2438
|
+
# Corresponds to the JSON property `fleetobservability`
|
2439
|
+
# @return [Google::Apis::GkehubV1::FleetObservabilityMembershipState]
|
2440
|
+
attr_accessor :fleetobservability
|
2441
|
+
|
2448
2442
|
# **Anthos Identity Service**: State for a single Membership.
|
2449
2443
|
# Corresponds to the JSON property `identityservice`
|
2450
2444
|
# @return [Google::Apis::GkehubV1::IdentityServiceMembershipState]
|
@@ -2469,9 +2463,9 @@ module Google
|
|
2469
2463
|
|
2470
2464
|
# Update properties of this object
|
2471
2465
|
def update!(**args)
|
2472
|
-
@anthosvm = args[:anthosvm] if args.key?(:anthosvm)
|
2473
2466
|
@appdevexperience = args[:appdevexperience] if args.key?(:appdevexperience)
|
2474
2467
|
@configmanagement = args[:configmanagement] if args.key?(:configmanagement)
|
2468
|
+
@fleetobservability = args[:fleetobservability] if args.key?(:fleetobservability)
|
2475
2469
|
@identityservice = args[:identityservice] if args.key?(:identityservice)
|
2476
2470
|
@servicemesh = args[:servicemesh] if args.key?(:servicemesh)
|
2477
2471
|
@state = args[:state] if args.key?(:state)
|
@@ -2497,32 +2491,6 @@ module Google
|
|
2497
2491
|
end
|
2498
2492
|
end
|
2499
2493
|
|
2500
|
-
# MigrateSpec contains the migrate subfeature configuration.
|
2501
|
-
class MigrateSpec
|
2502
|
-
include Google::Apis::Core::Hashable
|
2503
|
-
|
2504
|
-
def initialize(**args)
|
2505
|
-
update!(**args)
|
2506
|
-
end
|
2507
|
-
|
2508
|
-
# Update properties of this object
|
2509
|
-
def update!(**args)
|
2510
|
-
end
|
2511
|
-
end
|
2512
|
-
|
2513
|
-
# MigrateState contains the state of Migrate subfeature
|
2514
|
-
class MigrateState
|
2515
|
-
include Google::Apis::Core::Hashable
|
2516
|
-
|
2517
|
-
def initialize(**args)
|
2518
|
-
update!(**args)
|
2519
|
-
end
|
2520
|
-
|
2521
|
-
# Update properties of this object
|
2522
|
-
def update!(**args)
|
2523
|
-
end
|
2524
|
-
end
|
2525
|
-
|
2526
2494
|
# MultiCloudCluster contains information specific to GKE Multi-Cloud clusters.
|
2527
2495
|
class MultiCloudCluster
|
2528
2496
|
include Google::Apis::Core::Hashable
|
@@ -2901,6 +2869,40 @@ module Google
|
|
2901
2869
|
end
|
2902
2870
|
end
|
2903
2871
|
|
2872
|
+
# ScopeFeatureSpec contains feature specs for a fleet scope.
|
2873
|
+
class ScopeFeatureSpec
|
2874
|
+
include Google::Apis::Core::Hashable
|
2875
|
+
|
2876
|
+
def initialize(**args)
|
2877
|
+
update!(**args)
|
2878
|
+
end
|
2879
|
+
|
2880
|
+
# Update properties of this object
|
2881
|
+
def update!(**args)
|
2882
|
+
end
|
2883
|
+
end
|
2884
|
+
|
2885
|
+
# ScopeFeatureState contains Scope-wide Feature status information.
|
2886
|
+
class ScopeFeatureState
|
2887
|
+
include Google::Apis::Core::Hashable
|
2888
|
+
|
2889
|
+
# FeatureState describes the high-level state of a Feature. It may be used to
|
2890
|
+
# describe a Feature's state at the environ-level, or per-membershop, depending
|
2891
|
+
# on the context.
|
2892
|
+
# Corresponds to the JSON property `state`
|
2893
|
+
# @return [Google::Apis::GkehubV1::FeatureState]
|
2894
|
+
attr_accessor :state
|
2895
|
+
|
2896
|
+
def initialize(**args)
|
2897
|
+
update!(**args)
|
2898
|
+
end
|
2899
|
+
|
2900
|
+
# Update properties of this object
|
2901
|
+
def update!(**args)
|
2902
|
+
@state = args[:state] if args.key?(:state)
|
2903
|
+
end
|
2904
|
+
end
|
2905
|
+
|
2904
2906
|
# Status of control plane management.
|
2905
2907
|
class ServiceMeshControlPlaneManagement
|
2906
2908
|
include Google::Apis::Core::Hashable
|
@@ -3002,32 +3004,6 @@ module Google
|
|
3002
3004
|
end
|
3003
3005
|
end
|
3004
3006
|
|
3005
|
-
# ServiceMeshSpec contains the serviceMesh subfeature configuration.
|
3006
|
-
class ServiceMeshSpec
|
3007
|
-
include Google::Apis::Core::Hashable
|
3008
|
-
|
3009
|
-
def initialize(**args)
|
3010
|
-
update!(**args)
|
3011
|
-
end
|
3012
|
-
|
3013
|
-
# Update properties of this object
|
3014
|
-
def update!(**args)
|
3015
|
-
end
|
3016
|
-
end
|
3017
|
-
|
3018
|
-
# ServiceMeshState contains the state of Service Mesh subfeature
|
3019
|
-
class ServiceMeshState
|
3020
|
-
include Google::Apis::Core::Hashable
|
3021
|
-
|
3022
|
-
def initialize(**args)
|
3023
|
-
update!(**args)
|
3024
|
-
end
|
3025
|
-
|
3026
|
-
# Update properties of this object
|
3027
|
-
def update!(**args)
|
3028
|
-
end
|
3029
|
-
end
|
3030
|
-
|
3031
3007
|
# Structured and human-readable details for a status.
|
3032
3008
|
class ServiceMeshStatusDetails
|
3033
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
|
-
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
|
@@ -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
|
|
@@ -286,6 +262,30 @@ module Google
|
|
286
262
|
include Google::Apis::Core::JsonObjectSupport
|
287
263
|
end
|
288
264
|
|
265
|
+
class FleetObservabilityFeatureSpec
|
266
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
267
|
+
|
268
|
+
include Google::Apis::Core::JsonObjectSupport
|
269
|
+
end
|
270
|
+
|
271
|
+
class FleetObservabilityFeatureState
|
272
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
273
|
+
|
274
|
+
include Google::Apis::Core::JsonObjectSupport
|
275
|
+
end
|
276
|
+
|
277
|
+
class FleetObservabilityMembershipSpec
|
278
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
279
|
+
|
280
|
+
include Google::Apis::Core::JsonObjectSupport
|
281
|
+
end
|
282
|
+
|
283
|
+
class FleetObservabilityMembershipState
|
284
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
285
|
+
|
286
|
+
include Google::Apis::Core::JsonObjectSupport
|
287
|
+
end
|
288
|
+
|
289
289
|
class GenerateConnectManifestResponse
|
290
290
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
291
291
|
|
@@ -310,6 +310,12 @@ module Google
|
|
310
310
|
include Google::Apis::Core::JsonObjectSupport
|
311
311
|
end
|
312
312
|
|
313
|
+
class IdentityServiceAzureAdConfig
|
314
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
315
|
+
|
316
|
+
include Google::Apis::Core::JsonObjectSupport
|
317
|
+
end
|
318
|
+
|
313
319
|
class IdentityServiceGoogleConfig
|
314
320
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
315
321
|
|
@@ -370,12 +376,6 @@ module Google
|
|
370
376
|
include Google::Apis::Core::JsonObjectSupport
|
371
377
|
end
|
372
378
|
|
373
|
-
class LocalControllerState
|
374
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
375
|
-
|
376
|
-
include Google::Apis::Core::JsonObjectSupport
|
377
|
-
end
|
378
|
-
|
379
379
|
class Location
|
380
380
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
381
381
|
|
@@ -412,18 +412,6 @@ module Google
|
|
412
412
|
include Google::Apis::Core::JsonObjectSupport
|
413
413
|
end
|
414
414
|
|
415
|
-
class MigrateSpec
|
416
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
417
|
-
|
418
|
-
include Google::Apis::Core::JsonObjectSupport
|
419
|
-
end
|
420
|
-
|
421
|
-
class MigrateState
|
422
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
423
|
-
|
424
|
-
include Google::Apis::Core::JsonObjectSupport
|
425
|
-
end
|
426
|
-
|
427
415
|
class MultiCloudCluster
|
428
416
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
429
417
|
|
@@ -472,37 +460,37 @@ module Google
|
|
472
460
|
include Google::Apis::Core::JsonObjectSupport
|
473
461
|
end
|
474
462
|
|
475
|
-
class
|
463
|
+
class ScopeFeatureSpec
|
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 ScopeFeatureState
|
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 ServiceMeshControlPlaneManagement
|
488
476
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
489
477
|
|
490
478
|
include Google::Apis::Core::JsonObjectSupport
|
491
479
|
end
|
492
480
|
|
493
|
-
class
|
481
|
+
class ServiceMeshDataPlaneManagement
|
494
482
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
495
483
|
|
496
484
|
include Google::Apis::Core::JsonObjectSupport
|
497
485
|
end
|
498
486
|
|
499
|
-
class
|
487
|
+
class ServiceMeshMembershipSpec
|
500
488
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
501
489
|
|
502
490
|
include Google::Apis::Core::JsonObjectSupport
|
503
491
|
end
|
504
492
|
|
505
|
-
class
|
493
|
+
class ServiceMeshMembershipState
|
506
494
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
507
495
|
|
508
496
|
include Google::Apis::Core::JsonObjectSupport
|
@@ -544,47 +532,6 @@ module Google
|
|
544
532
|
include Google::Apis::Core::JsonObjectSupport
|
545
533
|
end
|
546
534
|
|
547
|
-
class AnthosVmMembershipSpec
|
548
|
-
# @private
|
549
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
550
|
-
collection :subfeatures_spec, as: 'subfeaturesSpec', class: Google::Apis::GkehubV1::AnthosVmSubFeatureSpec, decorator: Google::Apis::GkehubV1::AnthosVmSubFeatureSpec::Representation
|
551
|
-
|
552
|
-
end
|
553
|
-
end
|
554
|
-
|
555
|
-
class AnthosVmMembershipState
|
556
|
-
# @private
|
557
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
558
|
-
property :local_controller_state, as: 'localControllerState', class: Google::Apis::GkehubV1::LocalControllerState, decorator: Google::Apis::GkehubV1::LocalControllerState::Representation
|
559
|
-
|
560
|
-
collection :subfeature_state, as: 'subfeatureState', class: Google::Apis::GkehubV1::AnthosVmSubFeatureState, decorator: Google::Apis::GkehubV1::AnthosVmSubFeatureState::Representation
|
561
|
-
|
562
|
-
end
|
563
|
-
end
|
564
|
-
|
565
|
-
class AnthosVmSubFeatureSpec
|
566
|
-
# @private
|
567
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
568
|
-
property :enabled, as: 'enabled'
|
569
|
-
property :migrate_spec, as: 'migrateSpec', class: Google::Apis::GkehubV1::MigrateSpec, decorator: Google::Apis::GkehubV1::MigrateSpec::Representation
|
570
|
-
|
571
|
-
property :service_mesh_spec, as: 'serviceMeshSpec', class: Google::Apis::GkehubV1::ServiceMeshSpec, decorator: Google::Apis::GkehubV1::ServiceMeshSpec::Representation
|
572
|
-
|
573
|
-
end
|
574
|
-
end
|
575
|
-
|
576
|
-
class AnthosVmSubFeatureState
|
577
|
-
# @private
|
578
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
579
|
-
property :description, as: 'description'
|
580
|
-
property :installation_state, as: 'installationState'
|
581
|
-
property :migrate_state, as: 'migrateState', class: Google::Apis::GkehubV1::MigrateState, decorator: Google::Apis::GkehubV1::MigrateState::Representation
|
582
|
-
|
583
|
-
property :service_mesh_state, as: 'serviceMeshState', class: Google::Apis::GkehubV1::ServiceMeshState, decorator: Google::Apis::GkehubV1::ServiceMeshState::Representation
|
584
|
-
|
585
|
-
end
|
586
|
-
end
|
587
|
-
|
588
535
|
class AppDevExperienceFeatureSpec
|
589
536
|
# @private
|
590
537
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -654,6 +601,8 @@ module Google
|
|
654
601
|
class Representation < Google::Apis::Core::JsonRepresentation
|
655
602
|
property :appdevexperience, as: 'appdevexperience', class: Google::Apis::GkehubV1::AppDevExperienceFeatureSpec, decorator: Google::Apis::GkehubV1::AppDevExperienceFeatureSpec::Representation
|
656
603
|
|
604
|
+
property :fleetobservability, as: 'fleetobservability', class: Google::Apis::GkehubV1::FleetObservabilityFeatureSpec, decorator: Google::Apis::GkehubV1::FleetObservabilityFeatureSpec::Representation
|
605
|
+
|
657
606
|
property :multiclusteringress, as: 'multiclusteringress', class: Google::Apis::GkehubV1::MultiClusterIngressFeatureSpec, decorator: Google::Apis::GkehubV1::MultiClusterIngressFeatureSpec::Representation
|
658
607
|
|
659
608
|
end
|
@@ -664,6 +613,8 @@ module Google
|
|
664
613
|
class Representation < Google::Apis::Core::JsonRepresentation
|
665
614
|
property :appdevexperience, as: 'appdevexperience', class: Google::Apis::GkehubV1::AppDevExperienceFeatureState, decorator: Google::Apis::GkehubV1::AppDevExperienceFeatureState::Representation
|
666
615
|
|
616
|
+
property :fleetobservability, as: 'fleetobservability', class: Google::Apis::GkehubV1::FleetObservabilityFeatureState, decorator: Google::Apis::GkehubV1::FleetObservabilityFeatureState::Representation
|
617
|
+
|
667
618
|
property :state, as: 'state', class: Google::Apis::GkehubV1::FeatureState, decorator: Google::Apis::GkehubV1::FeatureState::Representation
|
668
619
|
|
669
620
|
end
|
@@ -965,6 +916,10 @@ module Google
|
|
965
916
|
property :name, as: 'name'
|
966
917
|
property :resource_state, as: 'resourceState', class: Google::Apis::GkehubV1::FeatureResourceState, decorator: Google::Apis::GkehubV1::FeatureResourceState::Representation
|
967
918
|
|
919
|
+
hash :scope_specs, as: 'scopeSpecs', class: Google::Apis::GkehubV1::ScopeFeatureSpec, decorator: Google::Apis::GkehubV1::ScopeFeatureSpec::Representation
|
920
|
+
|
921
|
+
hash :scope_states, as: 'scopeStates', class: Google::Apis::GkehubV1::ScopeFeatureState, decorator: Google::Apis::GkehubV1::ScopeFeatureState::Representation
|
922
|
+
|
968
923
|
property :spec, as: 'spec', class: Google::Apis::GkehubV1::CommonFeatureSpec, decorator: Google::Apis::GkehubV1::CommonFeatureSpec::Representation
|
969
924
|
|
970
925
|
property :state, as: 'state', class: Google::Apis::GkehubV1::CommonFeatureState, decorator: Google::Apis::GkehubV1::CommonFeatureState::Representation
|
@@ -989,6 +944,30 @@ module Google
|
|
989
944
|
end
|
990
945
|
end
|
991
946
|
|
947
|
+
class FleetObservabilityFeatureSpec
|
948
|
+
# @private
|
949
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
950
|
+
end
|
951
|
+
end
|
952
|
+
|
953
|
+
class FleetObservabilityFeatureState
|
954
|
+
# @private
|
955
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
956
|
+
end
|
957
|
+
end
|
958
|
+
|
959
|
+
class FleetObservabilityMembershipSpec
|
960
|
+
# @private
|
961
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
962
|
+
end
|
963
|
+
end
|
964
|
+
|
965
|
+
class FleetObservabilityMembershipState
|
966
|
+
# @private
|
967
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
968
|
+
end
|
969
|
+
end
|
970
|
+
|
992
971
|
class GenerateConnectManifestResponse
|
993
972
|
# @private
|
994
973
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1017,6 +996,8 @@ module Google
|
|
1017
996
|
class IdentityServiceAuthMethod
|
1018
997
|
# @private
|
1019
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
|
+
|
1020
1001
|
property :google_config, as: 'googleConfig', class: Google::Apis::GkehubV1::IdentityServiceGoogleConfig, decorator: Google::Apis::GkehubV1::IdentityServiceGoogleConfig::Representation
|
1021
1002
|
|
1022
1003
|
property :name, as: 'name'
|
@@ -1026,6 +1007,17 @@ module Google
|
|
1026
1007
|
end
|
1027
1008
|
end
|
1028
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
|
+
|
1029
1021
|
class IdentityServiceGoogleConfig
|
1030
1022
|
# @private
|
1031
1023
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1134,14 +1126,6 @@ module Google
|
|
1134
1126
|
end
|
1135
1127
|
end
|
1136
1128
|
|
1137
|
-
class LocalControllerState
|
1138
|
-
# @private
|
1139
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
1140
|
-
property :description, as: 'description'
|
1141
|
-
property :installation_state, as: 'installationState'
|
1142
|
-
end
|
1143
|
-
end
|
1144
|
-
|
1145
1129
|
class Location
|
1146
1130
|
# @private
|
1147
1131
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1197,10 +1181,10 @@ module Google
|
|
1197
1181
|
class MembershipFeatureSpec
|
1198
1182
|
# @private
|
1199
1183
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1200
|
-
property :anthosvm, as: 'anthosvm', class: Google::Apis::GkehubV1::AnthosVmMembershipSpec, decorator: Google::Apis::GkehubV1::AnthosVmMembershipSpec::Representation
|
1201
|
-
|
1202
1184
|
property :configmanagement, as: 'configmanagement', class: Google::Apis::GkehubV1::ConfigManagementMembershipSpec, decorator: Google::Apis::GkehubV1::ConfigManagementMembershipSpec::Representation
|
1203
1185
|
|
1186
|
+
property :fleetobservability, as: 'fleetobservability', class: Google::Apis::GkehubV1::FleetObservabilityMembershipSpec, decorator: Google::Apis::GkehubV1::FleetObservabilityMembershipSpec::Representation
|
1187
|
+
|
1204
1188
|
property :identityservice, as: 'identityservice', class: Google::Apis::GkehubV1::IdentityServiceMembershipSpec, decorator: Google::Apis::GkehubV1::IdentityServiceMembershipSpec::Representation
|
1205
1189
|
|
1206
1190
|
property :mesh, as: 'mesh', class: Google::Apis::GkehubV1::ServiceMeshMembershipSpec, decorator: Google::Apis::GkehubV1::ServiceMeshMembershipSpec::Representation
|
@@ -1211,12 +1195,12 @@ module Google
|
|
1211
1195
|
class MembershipFeatureState
|
1212
1196
|
# @private
|
1213
1197
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1214
|
-
property :anthosvm, as: 'anthosvm', class: Google::Apis::GkehubV1::AnthosVmMembershipState, decorator: Google::Apis::GkehubV1::AnthosVmMembershipState::Representation
|
1215
|
-
|
1216
1198
|
property :appdevexperience, as: 'appdevexperience', class: Google::Apis::GkehubV1::AppDevExperienceFeatureState, decorator: Google::Apis::GkehubV1::AppDevExperienceFeatureState::Representation
|
1217
1199
|
|
1218
1200
|
property :configmanagement, as: 'configmanagement', class: Google::Apis::GkehubV1::ConfigManagementMembershipState, decorator: Google::Apis::GkehubV1::ConfigManagementMembershipState::Representation
|
1219
1201
|
|
1202
|
+
property :fleetobservability, as: 'fleetobservability', class: Google::Apis::GkehubV1::FleetObservabilityMembershipState, decorator: Google::Apis::GkehubV1::FleetObservabilityMembershipState::Representation
|
1203
|
+
|
1220
1204
|
property :identityservice, as: 'identityservice', class: Google::Apis::GkehubV1::IdentityServiceMembershipState, decorator: Google::Apis::GkehubV1::IdentityServiceMembershipState::Representation
|
1221
1205
|
|
1222
1206
|
property :servicemesh, as: 'servicemesh', class: Google::Apis::GkehubV1::ServiceMeshMembershipState, decorator: Google::Apis::GkehubV1::ServiceMeshMembershipState::Representation
|
@@ -1233,18 +1217,6 @@ module Google
|
|
1233
1217
|
end
|
1234
1218
|
end
|
1235
1219
|
|
1236
|
-
class MigrateSpec
|
1237
|
-
# @private
|
1238
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
1239
|
-
end
|
1240
|
-
end
|
1241
|
-
|
1242
|
-
class MigrateState
|
1243
|
-
# @private
|
1244
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
1245
|
-
end
|
1246
|
-
end
|
1247
|
-
|
1248
1220
|
class MultiCloudCluster
|
1249
1221
|
# @private
|
1250
1222
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1324,6 +1296,20 @@ module Google
|
|
1324
1296
|
end
|
1325
1297
|
end
|
1326
1298
|
|
1299
|
+
class ScopeFeatureSpec
|
1300
|
+
# @private
|
1301
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1302
|
+
end
|
1303
|
+
end
|
1304
|
+
|
1305
|
+
class ScopeFeatureState
|
1306
|
+
# @private
|
1307
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1308
|
+
property :state, as: 'state', class: Google::Apis::GkehubV1::FeatureState, decorator: Google::Apis::GkehubV1::FeatureState::Representation
|
1309
|
+
|
1310
|
+
end
|
1311
|
+
end
|
1312
|
+
|
1327
1313
|
class ServiceMeshControlPlaneManagement
|
1328
1314
|
# @private
|
1329
1315
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1360,18 +1346,6 @@ module Google
|
|
1360
1346
|
end
|
1361
1347
|
end
|
1362
1348
|
|
1363
|
-
class ServiceMeshSpec
|
1364
|
-
# @private
|
1365
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
1366
|
-
end
|
1367
|
-
end
|
1368
|
-
|
1369
|
-
class ServiceMeshState
|
1370
|
-
# @private
|
1371
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
1372
|
-
end
|
1373
|
-
end
|
1374
|
-
|
1375
1349
|
class ServiceMeshStatusDetails
|
1376
1350
|
# @private
|
1377
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
|
@@ -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_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: []
|