google-apis-gkehub_v1alpha 0.40.0 → 0.41.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/google/apis/gkehub_v1alpha/classes.rb +194 -227
- data/lib/google/apis/gkehub_v1alpha/gem_version.rb +2 -2
- data/lib/google/apis/gkehub_v1alpha/representations.rb +102 -129
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 775e150dce62acf47ddaef32531b240e3c4700ac3bfa07bf673d4e4367ea521c
|
4
|
+
data.tar.gz: 888cc7489a35f184864d0dcce829cf386ae66e398dd06bef7565d88f90529954
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 80bba1e6ef121859a64297fce63506df52bbaa15ffe75bbb25b165a70c95e88e01cfff2b5cfb01c14d3b78f69a6e28c84e9e38f09a234bb1e26663252f9e378d
|
7
|
+
data.tar.gz: 733a8e8d64abe36c311305987de7fabe0ff1bb3c995670bed8fd2adc6853280a44311fc3f9dcbfac6487c1d5b1a5fb55e5fd70d03468e32250b150805f004a40
|
data/CHANGELOG.md
CHANGED
@@ -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::GkehubV1alpha::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::GkehubV1alpha::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::GkehubV1alpha::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::GkehubV1alpha::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::GkehubV1alpha::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::GkehubV1alpha::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::GkehubV1alpha::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
|
@@ -533,6 +410,11 @@ module Google
|
|
533
410
|
# @return [Google::Apis::GkehubV1alpha::CloudAuditLoggingFeatureSpec]
|
534
411
|
attr_accessor :cloudauditlogging
|
535
412
|
|
413
|
+
# **Fleet Observability**: The Hub-wide input for the FleetObservability feature.
|
414
|
+
# Corresponds to the JSON property `fleetobservability`
|
415
|
+
# @return [Google::Apis::GkehubV1alpha::FleetObservabilityFeatureSpec]
|
416
|
+
attr_accessor :fleetobservability
|
417
|
+
|
536
418
|
# **Multi-cluster Ingress**: The configuration for the MultiClusterIngress
|
537
419
|
# feature.
|
538
420
|
# Corresponds to the JSON property `multiclusteringress`
|
@@ -554,6 +436,7 @@ module Google
|
|
554
436
|
@anthosobservability = args[:anthosobservability] if args.key?(:anthosobservability)
|
555
437
|
@appdevexperience = args[:appdevexperience] if args.key?(:appdevexperience)
|
556
438
|
@cloudauditlogging = args[:cloudauditlogging] if args.key?(:cloudauditlogging)
|
439
|
+
@fleetobservability = args[:fleetobservability] if args.key?(:fleetobservability)
|
557
440
|
@multiclusteringress = args[:multiclusteringress] if args.key?(:multiclusteringress)
|
558
441
|
@workloadcertificate = args[:workloadcertificate] if args.key?(:workloadcertificate)
|
559
442
|
end
|
@@ -568,6 +451,12 @@ module Google
|
|
568
451
|
# @return [Google::Apis::GkehubV1alpha::AppDevExperienceFeatureState]
|
569
452
|
attr_accessor :appdevexperience
|
570
453
|
|
454
|
+
# **FleetObservability**: An empty state left as an example Hub-wide Feature
|
455
|
+
# state.
|
456
|
+
# Corresponds to the JSON property `fleetobservability`
|
457
|
+
# @return [Google::Apis::GkehubV1alpha::FleetObservabilityFeatureState]
|
458
|
+
attr_accessor :fleetobservability
|
459
|
+
|
571
460
|
# **Service Mesh**: State for the whole Hub, as analyzed by the Service Mesh Hub
|
572
461
|
# Controller.
|
573
462
|
# Corresponds to the JSON property `servicemesh`
|
@@ -588,6 +477,7 @@ module Google
|
|
588
477
|
# Update properties of this object
|
589
478
|
def update!(**args)
|
590
479
|
@appdevexperience = args[:appdevexperience] if args.key?(:appdevexperience)
|
480
|
+
@fleetobservability = args[:fleetobservability] if args.key?(:fleetobservability)
|
591
481
|
@servicemesh = args[:servicemesh] if args.key?(:servicemesh)
|
592
482
|
@state = args[:state] if args.key?(:state)
|
593
483
|
end
|
@@ -1735,6 +1625,29 @@ module Google
|
|
1735
1625
|
# @return [Google::Apis::GkehubV1alpha::FeatureResourceState]
|
1736
1626
|
attr_accessor :resource_state
|
1737
1627
|
|
1628
|
+
# Optional. Scope-specific configuration for this Feature. If this Feature does
|
1629
|
+
# not support any per-Scope configuration, this field may be unused. The keys
|
1630
|
+
# indicate which Scope the configuration is for, in the form: `projects/`p`/
|
1631
|
+
# locations/global/scopes/`s`` Where `p` is the project, `s` is a valid Scope in
|
1632
|
+
# this project. `p` WILL match the Feature's project. `p` will always be
|
1633
|
+
# returned as the project number, but the project ID is also accepted during
|
1634
|
+
# input. If the same Scope is specified in the map twice (using the project ID
|
1635
|
+
# form, and the project number form), exactly ONE of the entries will be saved,
|
1636
|
+
# with no guarantees as to which. For this reason, it is recommended the same
|
1637
|
+
# format be used for all entries when mutating a Feature.
|
1638
|
+
# Corresponds to the JSON property `scopeSpecs`
|
1639
|
+
# @return [Hash<String,Google::Apis::GkehubV1alpha::ScopeFeatureSpec>]
|
1640
|
+
attr_accessor :scope_specs
|
1641
|
+
|
1642
|
+
# Output only. Scope-specific Feature status. If this Feature does report any
|
1643
|
+
# per-Scope status, this field may be unused. The keys indicate which Scope the
|
1644
|
+
# state is for, in the form: `projects/`p`/locations/global/scopes/`s`` Where `p`
|
1645
|
+
# is the project, `s` is a valid Scope in this project. `p` WILL match the
|
1646
|
+
# Feature's project.
|
1647
|
+
# Corresponds to the JSON property `scopeStates`
|
1648
|
+
# @return [Hash<String,Google::Apis::GkehubV1alpha::ScopeFeatureState>]
|
1649
|
+
attr_accessor :scope_states
|
1650
|
+
|
1738
1651
|
# CommonFeatureSpec contains Hub-wide configuration information
|
1739
1652
|
# Corresponds to the JSON property `spec`
|
1740
1653
|
# @return [Google::Apis::GkehubV1alpha::CommonFeatureSpec]
|
@@ -1763,6 +1676,8 @@ module Google
|
|
1763
1676
|
@membership_states = args[:membership_states] if args.key?(:membership_states)
|
1764
1677
|
@name = args[:name] if args.key?(:name)
|
1765
1678
|
@resource_state = args[:resource_state] if args.key?(:resource_state)
|
1679
|
+
@scope_specs = args[:scope_specs] if args.key?(:scope_specs)
|
1680
|
+
@scope_states = args[:scope_states] if args.key?(:scope_states)
|
1766
1681
|
@spec = args[:spec] if args.key?(:spec)
|
1767
1682
|
@state = args[:state] if args.key?(:state)
|
1768
1683
|
@update_time = args[:update_time] if args.key?(:update_time)
|
@@ -1931,6 +1846,61 @@ module Google
|
|
1931
1846
|
end
|
1932
1847
|
end
|
1933
1848
|
|
1849
|
+
# **Fleet Observability**: The Hub-wide input for the FleetObservability feature.
|
1850
|
+
class FleetObservabilityFeatureSpec
|
1851
|
+
include Google::Apis::Core::Hashable
|
1852
|
+
|
1853
|
+
def initialize(**args)
|
1854
|
+
update!(**args)
|
1855
|
+
end
|
1856
|
+
|
1857
|
+
# Update properties of this object
|
1858
|
+
def update!(**args)
|
1859
|
+
end
|
1860
|
+
end
|
1861
|
+
|
1862
|
+
# **FleetObservability**: An empty state left as an example Hub-wide Feature
|
1863
|
+
# state.
|
1864
|
+
class FleetObservabilityFeatureState
|
1865
|
+
include Google::Apis::Core::Hashable
|
1866
|
+
|
1867
|
+
def initialize(**args)
|
1868
|
+
update!(**args)
|
1869
|
+
end
|
1870
|
+
|
1871
|
+
# Update properties of this object
|
1872
|
+
def update!(**args)
|
1873
|
+
end
|
1874
|
+
end
|
1875
|
+
|
1876
|
+
# **FleetObservability**: The membership-specific input for FleetObservability
|
1877
|
+
# feature.
|
1878
|
+
class FleetObservabilityMembershipSpec
|
1879
|
+
include Google::Apis::Core::Hashable
|
1880
|
+
|
1881
|
+
def initialize(**args)
|
1882
|
+
update!(**args)
|
1883
|
+
end
|
1884
|
+
|
1885
|
+
# Update properties of this object
|
1886
|
+
def update!(**args)
|
1887
|
+
end
|
1888
|
+
end
|
1889
|
+
|
1890
|
+
# **FleetObservability**: An empty state left as an example membership-specific
|
1891
|
+
# Feature state.
|
1892
|
+
class FleetObservabilityMembershipState
|
1893
|
+
include Google::Apis::Core::Hashable
|
1894
|
+
|
1895
|
+
def initialize(**args)
|
1896
|
+
update!(**args)
|
1897
|
+
end
|
1898
|
+
|
1899
|
+
# Update properties of this object
|
1900
|
+
def update!(**args)
|
1901
|
+
end
|
1902
|
+
end
|
1903
|
+
|
1934
1904
|
# GenerateConnectManifestResponse contains manifest information for installing/
|
1935
1905
|
# upgrading a Connect agent.
|
1936
1906
|
class GenerateConnectManifestResponse
|
@@ -2025,6 +1995,11 @@ module Google
|
|
2025
1995
|
class IdentityServiceAuthMethod
|
2026
1996
|
include Google::Apis::Core::Hashable
|
2027
1997
|
|
1998
|
+
# Configuration for the AzureAD Auth flow.
|
1999
|
+
# Corresponds to the JSON property `azureadConfig`
|
2000
|
+
# @return [Google::Apis::GkehubV1alpha::IdentityServiceAzureAdConfig]
|
2001
|
+
attr_accessor :azuread_config
|
2002
|
+
|
2028
2003
|
# Configuration for the Google Plugin Auth flow.
|
2029
2004
|
# Corresponds to the JSON property `googleConfig`
|
2030
2005
|
# @return [Google::Apis::GkehubV1alpha::IdentityServiceGoogleConfig]
|
@@ -2051,6 +2026,7 @@ module Google
|
|
2051
2026
|
|
2052
2027
|
# Update properties of this object
|
2053
2028
|
def update!(**args)
|
2029
|
+
@azuread_config = args[:azuread_config] if args.key?(:azuread_config)
|
2054
2030
|
@google_config = args[:google_config] if args.key?(:google_config)
|
2055
2031
|
@name = args[:name] if args.key?(:name)
|
2056
2032
|
@oidc_config = args[:oidc_config] if args.key?(:oidc_config)
|
@@ -2058,6 +2034,53 @@ module Google
|
|
2058
2034
|
end
|
2059
2035
|
end
|
2060
2036
|
|
2037
|
+
# Configuration for the AzureAD Auth flow.
|
2038
|
+
class IdentityServiceAzureAdConfig
|
2039
|
+
include Google::Apis::Core::Hashable
|
2040
|
+
|
2041
|
+
# ID for the registered client application that makes authentication requests to
|
2042
|
+
# the Azure AD identity provider.
|
2043
|
+
# Corresponds to the JSON property `clientId`
|
2044
|
+
# @return [String]
|
2045
|
+
attr_accessor :client_id
|
2046
|
+
|
2047
|
+
# Input only. Unencrypted AzureAD client secret will be passed to the GKE Hub
|
2048
|
+
# CLH.
|
2049
|
+
# Corresponds to the JSON property `clientSecret`
|
2050
|
+
# @return [String]
|
2051
|
+
attr_accessor :client_secret
|
2052
|
+
|
2053
|
+
# Output only. Encrypted AzureAD client secret.
|
2054
|
+
# Corresponds to the JSON property `encryptedClientSecret`
|
2055
|
+
# NOTE: Values are automatically base64 encoded/decoded in the client library.
|
2056
|
+
# @return [String]
|
2057
|
+
attr_accessor :encrypted_client_secret
|
2058
|
+
|
2059
|
+
# The redirect URL that kubectl uses for authorization.
|
2060
|
+
# Corresponds to the JSON property `kubectlRedirectUri`
|
2061
|
+
# @return [String]
|
2062
|
+
attr_accessor :kubectl_redirect_uri
|
2063
|
+
|
2064
|
+
# Kind of Azure AD account to be authenticated. Supported values are or for
|
2065
|
+
# accounts belonging to a specific tenant.
|
2066
|
+
# Corresponds to the JSON property `tenant`
|
2067
|
+
# @return [String]
|
2068
|
+
attr_accessor :tenant
|
2069
|
+
|
2070
|
+
def initialize(**args)
|
2071
|
+
update!(**args)
|
2072
|
+
end
|
2073
|
+
|
2074
|
+
# Update properties of this object
|
2075
|
+
def update!(**args)
|
2076
|
+
@client_id = args[:client_id] if args.key?(:client_id)
|
2077
|
+
@client_secret = args[:client_secret] if args.key?(:client_secret)
|
2078
|
+
@encrypted_client_secret = args[:encrypted_client_secret] if args.key?(:encrypted_client_secret)
|
2079
|
+
@kubectl_redirect_uri = args[:kubectl_redirect_uri] if args.key?(:kubectl_redirect_uri)
|
2080
|
+
@tenant = args[:tenant] if args.key?(:tenant)
|
2081
|
+
end
|
2082
|
+
end
|
2083
|
+
|
2061
2084
|
# Configuration for the Google Plugin Auth flow.
|
2062
2085
|
class IdentityServiceGoogleConfig
|
2063
2086
|
include Google::Apis::Core::Hashable
|
@@ -2518,34 +2541,6 @@ module Google
|
|
2518
2541
|
end
|
2519
2542
|
end
|
2520
2543
|
|
2521
|
-
# LocalControllerState contains the state of the local controller deployed in
|
2522
|
-
# the cluster.
|
2523
|
-
class LocalControllerState
|
2524
|
-
include Google::Apis::Core::Hashable
|
2525
|
-
|
2526
|
-
# Description represents the human readable description of the current state of
|
2527
|
-
# the local PE controller
|
2528
|
-
# Corresponds to the JSON property `description`
|
2529
|
-
# @return [String]
|
2530
|
-
attr_accessor :description
|
2531
|
-
|
2532
|
-
# InstallationState represents the state of deployment of the local PE
|
2533
|
-
# controller in the cluster.
|
2534
|
-
# Corresponds to the JSON property `installationState`
|
2535
|
-
# @return [String]
|
2536
|
-
attr_accessor :installation_state
|
2537
|
-
|
2538
|
-
def initialize(**args)
|
2539
|
-
update!(**args)
|
2540
|
-
end
|
2541
|
-
|
2542
|
-
# Update properties of this object
|
2543
|
-
def update!(**args)
|
2544
|
-
@description = args[:description] if args.key?(:description)
|
2545
|
-
@installation_state = args[:installation_state] if args.key?(:installation_state)
|
2546
|
-
end
|
2547
|
-
end
|
2548
|
-
|
2549
2544
|
# A resource that represents Google Cloud Platform location.
|
2550
2545
|
class Location
|
2551
2546
|
include Google::Apis::Core::Hashable
|
@@ -2765,12 +2760,6 @@ module Google
|
|
2765
2760
|
# @return [Google::Apis::GkehubV1alpha::AnthosObservabilityMembershipSpec]
|
2766
2761
|
attr_accessor :anthosobservability
|
2767
2762
|
|
2768
|
-
# AnthosVMMembershipSpec contains the AnthosVM feature configuration for a
|
2769
|
-
# membership/cluster.
|
2770
|
-
# Corresponds to the JSON property `anthosvm`
|
2771
|
-
# @return [Google::Apis::GkehubV1alpha::AnthosVmMembershipSpec]
|
2772
|
-
attr_accessor :anthosvm
|
2773
|
-
|
2774
2763
|
# **Cloud Build**: Configurations for each Cloud Build enabled cluster.
|
2775
2764
|
# Corresponds to the JSON property `cloudbuild`
|
2776
2765
|
# @return [Google::Apis::GkehubV1alpha::CloudBuildMembershipSpec]
|
@@ -2782,6 +2771,12 @@ module Google
|
|
2782
2771
|
# @return [Google::Apis::GkehubV1alpha::ConfigManagementMembershipSpec]
|
2783
2772
|
attr_accessor :configmanagement
|
2784
2773
|
|
2774
|
+
# **FleetObservability**: The membership-specific input for FleetObservability
|
2775
|
+
# feature.
|
2776
|
+
# Corresponds to the JSON property `fleetobservability`
|
2777
|
+
# @return [Google::Apis::GkehubV1alpha::FleetObservabilityMembershipSpec]
|
2778
|
+
attr_accessor :fleetobservability
|
2779
|
+
|
2785
2780
|
# **Anthos Identity Service**: Configuration for a single Membership.
|
2786
2781
|
# Corresponds to the JSON property `identityservice`
|
2787
2782
|
# @return [Google::Apis::GkehubV1alpha::IdentityServiceMembershipSpec]
|
@@ -2811,9 +2806,9 @@ module Google
|
|
2811
2806
|
# Update properties of this object
|
2812
2807
|
def update!(**args)
|
2813
2808
|
@anthosobservability = args[:anthosobservability] if args.key?(:anthosobservability)
|
2814
|
-
@anthosvm = args[:anthosvm] if args.key?(:anthosvm)
|
2815
2809
|
@cloudbuild = args[:cloudbuild] if args.key?(:cloudbuild)
|
2816
2810
|
@configmanagement = args[:configmanagement] if args.key?(:configmanagement)
|
2811
|
+
@fleetobservability = args[:fleetobservability] if args.key?(:fleetobservability)
|
2817
2812
|
@identityservice = args[:identityservice] if args.key?(:identityservice)
|
2818
2813
|
@mesh = args[:mesh] if args.key?(:mesh)
|
2819
2814
|
@policycontroller = args[:policycontroller] if args.key?(:policycontroller)
|
@@ -2826,13 +2821,6 @@ module Google
|
|
2826
2821
|
class MembershipFeatureState
|
2827
2822
|
include Google::Apis::Core::Hashable
|
2828
2823
|
|
2829
|
-
# AnthosVMFeatureState contains the state of the AnthosVM feature. It represents
|
2830
|
-
# the actual state in the cluster, while the AnthosVMMembershipSpec represents
|
2831
|
-
# the desired state.
|
2832
|
-
# Corresponds to the JSON property `anthosvm`
|
2833
|
-
# @return [Google::Apis::GkehubV1alpha::AnthosVmMembershipState]
|
2834
|
-
attr_accessor :anthosvm
|
2835
|
-
|
2836
2824
|
# State for App Dev Exp Feature.
|
2837
2825
|
# Corresponds to the JSON property `appdevexperience`
|
2838
2826
|
# @return [Google::Apis::GkehubV1alpha::AppDevExperienceFeatureState]
|
@@ -2843,6 +2831,12 @@ module Google
|
|
2843
2831
|
# @return [Google::Apis::GkehubV1alpha::ConfigManagementMembershipState]
|
2844
2832
|
attr_accessor :configmanagement
|
2845
2833
|
|
2834
|
+
# **FleetObservability**: An empty state left as an example membership-specific
|
2835
|
+
# Feature state.
|
2836
|
+
# Corresponds to the JSON property `fleetobservability`
|
2837
|
+
# @return [Google::Apis::GkehubV1alpha::FleetObservabilityMembershipState]
|
2838
|
+
attr_accessor :fleetobservability
|
2839
|
+
|
2846
2840
|
# **Anthos Identity Service**: State for a single Membership.
|
2847
2841
|
# Corresponds to the JSON property `identityservice`
|
2848
2842
|
# @return [Google::Apis::GkehubV1alpha::IdentityServiceMembershipState]
|
@@ -2877,9 +2871,9 @@ module Google
|
|
2877
2871
|
|
2878
2872
|
# Update properties of this object
|
2879
2873
|
def update!(**args)
|
2880
|
-
@anthosvm = args[:anthosvm] if args.key?(:anthosvm)
|
2881
2874
|
@appdevexperience = args[:appdevexperience] if args.key?(:appdevexperience)
|
2882
2875
|
@configmanagement = args[:configmanagement] if args.key?(:configmanagement)
|
2876
|
+
@fleetobservability = args[:fleetobservability] if args.key?(:fleetobservability)
|
2883
2877
|
@identityservice = args[:identityservice] if args.key?(:identityservice)
|
2884
2878
|
@metering = args[:metering] if args.key?(:metering)
|
2885
2879
|
@policycontroller = args[:policycontroller] if args.key?(:policycontroller)
|
@@ -2954,32 +2948,6 @@ module Google
|
|
2954
2948
|
end
|
2955
2949
|
end
|
2956
2950
|
|
2957
|
-
# MigrateSpec contains the migrate subfeature configuration.
|
2958
|
-
class MigrateSpec
|
2959
|
-
include Google::Apis::Core::Hashable
|
2960
|
-
|
2961
|
-
def initialize(**args)
|
2962
|
-
update!(**args)
|
2963
|
-
end
|
2964
|
-
|
2965
|
-
# Update properties of this object
|
2966
|
-
def update!(**args)
|
2967
|
-
end
|
2968
|
-
end
|
2969
|
-
|
2970
|
-
# MigrateState contains the state of Migrate subfeature
|
2971
|
-
class MigrateState
|
2972
|
-
include Google::Apis::Core::Hashable
|
2973
|
-
|
2974
|
-
def initialize(**args)
|
2975
|
-
update!(**args)
|
2976
|
-
end
|
2977
|
-
|
2978
|
-
# Update properties of this object
|
2979
|
-
def update!(**args)
|
2980
|
-
end
|
2981
|
-
end
|
2982
|
-
|
2983
2951
|
# MultiCloudCluster contains information specific to GKE Multi-Cloud clusters.
|
2984
2952
|
class MultiCloudCluster
|
2985
2953
|
include Google::Apis::Core::Hashable
|
@@ -3400,14 +3368,6 @@ module Google
|
|
3400
3368
|
class PolicyControllerMembershipState
|
3401
3369
|
include Google::Apis::Core::Hashable
|
3402
3370
|
|
3403
|
-
# The user-defined name for the cluster used by ClusterSelectors to group
|
3404
|
-
# clusters together. This should match Membership's membership_name, unless the
|
3405
|
-
# user installed PC on the cluster manually prior to enabling the PC hub feature.
|
3406
|
-
# Unique within a Policy Controller installation.
|
3407
|
-
# Corresponds to the JSON property `clusterName`
|
3408
|
-
# @return [String]
|
3409
|
-
attr_accessor :cluster_name
|
3410
|
-
|
3411
3371
|
# Currently these include (also serving as map keys): 1. "admission" 2. "audit"
|
3412
3372
|
# 3. "mutation" 4. "constraint template library"
|
3413
3373
|
# Corresponds to the JSON property `componentStates`
|
@@ -3426,7 +3386,6 @@ module Google
|
|
3426
3386
|
|
3427
3387
|
# Update properties of this object
|
3428
3388
|
def update!(**args)
|
3429
|
-
@cluster_name = args[:cluster_name] if args.key?(:cluster_name)
|
3430
3389
|
@component_states = args[:component_states] if args.key?(:component_states)
|
3431
3390
|
@state = args[:state] if args.key?(:state)
|
3432
3391
|
end
|
@@ -3566,6 +3525,40 @@ module Google
|
|
3566
3525
|
end
|
3567
3526
|
end
|
3568
3527
|
|
3528
|
+
# ScopeFeatureSpec contains feature specs for a fleet scope.
|
3529
|
+
class ScopeFeatureSpec
|
3530
|
+
include Google::Apis::Core::Hashable
|
3531
|
+
|
3532
|
+
def initialize(**args)
|
3533
|
+
update!(**args)
|
3534
|
+
end
|
3535
|
+
|
3536
|
+
# Update properties of this object
|
3537
|
+
def update!(**args)
|
3538
|
+
end
|
3539
|
+
end
|
3540
|
+
|
3541
|
+
# ScopeFeatureState contains Scope-wide Feature status information.
|
3542
|
+
class ScopeFeatureState
|
3543
|
+
include Google::Apis::Core::Hashable
|
3544
|
+
|
3545
|
+
# FeatureState describes the high-level state of a Feature. It may be used to
|
3546
|
+
# describe a Feature's state at the environ-level, or per-membershop, depending
|
3547
|
+
# on the context.
|
3548
|
+
# Corresponds to the JSON property `state`
|
3549
|
+
# @return [Google::Apis::GkehubV1alpha::FeatureState]
|
3550
|
+
attr_accessor :state
|
3551
|
+
|
3552
|
+
def initialize(**args)
|
3553
|
+
update!(**args)
|
3554
|
+
end
|
3555
|
+
|
3556
|
+
# Update properties of this object
|
3557
|
+
def update!(**args)
|
3558
|
+
@state = args[:state] if args.key?(:state)
|
3559
|
+
end
|
3560
|
+
end
|
3561
|
+
|
3569
3562
|
# AnalysisMessage is a single message produced by an analyzer, and it used to
|
3570
3563
|
# communicate to the end user about the state of their Service Mesh
|
3571
3564
|
# configuration.
|
@@ -3789,32 +3782,6 @@ module Google
|
|
3789
3782
|
end
|
3790
3783
|
end
|
3791
3784
|
|
3792
|
-
# ServiceMeshSpec contains the serviceMesh subfeature configuration.
|
3793
|
-
class ServiceMeshSpec
|
3794
|
-
include Google::Apis::Core::Hashable
|
3795
|
-
|
3796
|
-
def initialize(**args)
|
3797
|
-
update!(**args)
|
3798
|
-
end
|
3799
|
-
|
3800
|
-
# Update properties of this object
|
3801
|
-
def update!(**args)
|
3802
|
-
end
|
3803
|
-
end
|
3804
|
-
|
3805
|
-
# ServiceMeshState contains the state of Service Mesh subfeature
|
3806
|
-
class ServiceMeshState
|
3807
|
-
include Google::Apis::Core::Hashable
|
3808
|
-
|
3809
|
-
def initialize(**args)
|
3810
|
-
update!(**args)
|
3811
|
-
end
|
3812
|
-
|
3813
|
-
# Update properties of this object
|
3814
|
-
def update!(**args)
|
3815
|
-
end
|
3816
|
-
end
|
3817
|
-
|
3818
3785
|
# Structured and human-readable details for a status.
|
3819
3786
|
class ServiceMeshStatusDetails
|
3820
3787
|
include Google::Apis::Core::Hashable
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module GkehubV1alpha
|
18
18
|
# Version of the google-apis-gkehub_v1alpha gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.41.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.11.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20221031"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -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
|
|
@@ -346,6 +322,30 @@ module Google
|
|
346
322
|
include Google::Apis::Core::JsonObjectSupport
|
347
323
|
end
|
348
324
|
|
325
|
+
class FleetObservabilityFeatureSpec
|
326
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
327
|
+
|
328
|
+
include Google::Apis::Core::JsonObjectSupport
|
329
|
+
end
|
330
|
+
|
331
|
+
class FleetObservabilityFeatureState
|
332
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
333
|
+
|
334
|
+
include Google::Apis::Core::JsonObjectSupport
|
335
|
+
end
|
336
|
+
|
337
|
+
class FleetObservabilityMembershipSpec
|
338
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
339
|
+
|
340
|
+
include Google::Apis::Core::JsonObjectSupport
|
341
|
+
end
|
342
|
+
|
343
|
+
class FleetObservabilityMembershipState
|
344
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
345
|
+
|
346
|
+
include Google::Apis::Core::JsonObjectSupport
|
347
|
+
end
|
348
|
+
|
349
349
|
class GenerateConnectManifestResponse
|
350
350
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
351
351
|
|
@@ -370,6 +370,12 @@ module Google
|
|
370
370
|
include Google::Apis::Core::JsonObjectSupport
|
371
371
|
end
|
372
372
|
|
373
|
+
class IdentityServiceAzureAdConfig
|
374
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
375
|
+
|
376
|
+
include Google::Apis::Core::JsonObjectSupport
|
377
|
+
end
|
378
|
+
|
373
379
|
class IdentityServiceGoogleConfig
|
374
380
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
375
381
|
|
@@ -442,12 +448,6 @@ module Google
|
|
442
448
|
include Google::Apis::Core::JsonObjectSupport
|
443
449
|
end
|
444
450
|
|
445
|
-
class LocalControllerState
|
446
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
447
|
-
|
448
|
-
include Google::Apis::Core::JsonObjectSupport
|
449
|
-
end
|
450
|
-
|
451
451
|
class Location
|
452
452
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
453
453
|
|
@@ -496,18 +496,6 @@ module Google
|
|
496
496
|
include Google::Apis::Core::JsonObjectSupport
|
497
497
|
end
|
498
498
|
|
499
|
-
class MigrateSpec
|
500
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
501
|
-
|
502
|
-
include Google::Apis::Core::JsonObjectSupport
|
503
|
-
end
|
504
|
-
|
505
|
-
class MigrateState
|
506
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
507
|
-
|
508
|
-
include Google::Apis::Core::JsonObjectSupport
|
509
|
-
end
|
510
|
-
|
511
499
|
class MultiCloudCluster
|
512
500
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
513
501
|
|
@@ -592,55 +580,55 @@ module Google
|
|
592
580
|
include Google::Apis::Core::JsonObjectSupport
|
593
581
|
end
|
594
582
|
|
595
|
-
class
|
583
|
+
class ScopeFeatureSpec
|
596
584
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
597
585
|
|
598
586
|
include Google::Apis::Core::JsonObjectSupport
|
599
587
|
end
|
600
588
|
|
601
|
-
class
|
589
|
+
class ScopeFeatureState
|
602
590
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
603
591
|
|
604
592
|
include Google::Apis::Core::JsonObjectSupport
|
605
593
|
end
|
606
594
|
|
607
|
-
class
|
595
|
+
class ServiceMeshAnalysisMessage
|
608
596
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
609
597
|
|
610
598
|
include Google::Apis::Core::JsonObjectSupport
|
611
599
|
end
|
612
600
|
|
613
|
-
class
|
601
|
+
class ServiceMeshAnalysisMessageBase
|
614
602
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
615
603
|
|
616
604
|
include Google::Apis::Core::JsonObjectSupport
|
617
605
|
end
|
618
606
|
|
619
|
-
class
|
607
|
+
class ServiceMeshControlPlaneManagement
|
620
608
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
621
609
|
|
622
610
|
include Google::Apis::Core::JsonObjectSupport
|
623
611
|
end
|
624
612
|
|
625
|
-
class
|
613
|
+
class ServiceMeshDataPlaneManagement
|
626
614
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
627
615
|
|
628
616
|
include Google::Apis::Core::JsonObjectSupport
|
629
617
|
end
|
630
618
|
|
631
|
-
class
|
619
|
+
class ServiceMeshFeatureState
|
632
620
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
633
621
|
|
634
622
|
include Google::Apis::Core::JsonObjectSupport
|
635
623
|
end
|
636
624
|
|
637
|
-
class
|
625
|
+
class ServiceMeshMembershipSpec
|
638
626
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
639
627
|
|
640
628
|
include Google::Apis::Core::JsonObjectSupport
|
641
629
|
end
|
642
630
|
|
643
|
-
class
|
631
|
+
class ServiceMeshMembershipState
|
644
632
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
645
633
|
|
646
634
|
include Google::Apis::Core::JsonObjectSupport
|
@@ -723,47 +711,6 @@ module Google
|
|
723
711
|
end
|
724
712
|
end
|
725
713
|
|
726
|
-
class AnthosVmMembershipSpec
|
727
|
-
# @private
|
728
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
729
|
-
collection :subfeatures_spec, as: 'subfeaturesSpec', class: Google::Apis::GkehubV1alpha::AnthosVmSubFeatureSpec, decorator: Google::Apis::GkehubV1alpha::AnthosVmSubFeatureSpec::Representation
|
730
|
-
|
731
|
-
end
|
732
|
-
end
|
733
|
-
|
734
|
-
class AnthosVmMembershipState
|
735
|
-
# @private
|
736
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
737
|
-
property :local_controller_state, as: 'localControllerState', class: Google::Apis::GkehubV1alpha::LocalControllerState, decorator: Google::Apis::GkehubV1alpha::LocalControllerState::Representation
|
738
|
-
|
739
|
-
collection :subfeature_state, as: 'subfeatureState', class: Google::Apis::GkehubV1alpha::AnthosVmSubFeatureState, decorator: Google::Apis::GkehubV1alpha::AnthosVmSubFeatureState::Representation
|
740
|
-
|
741
|
-
end
|
742
|
-
end
|
743
|
-
|
744
|
-
class AnthosVmSubFeatureSpec
|
745
|
-
# @private
|
746
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
747
|
-
property :enabled, as: 'enabled'
|
748
|
-
property :migrate_spec, as: 'migrateSpec', class: Google::Apis::GkehubV1alpha::MigrateSpec, decorator: Google::Apis::GkehubV1alpha::MigrateSpec::Representation
|
749
|
-
|
750
|
-
property :service_mesh_spec, as: 'serviceMeshSpec', class: Google::Apis::GkehubV1alpha::ServiceMeshSpec, decorator: Google::Apis::GkehubV1alpha::ServiceMeshSpec::Representation
|
751
|
-
|
752
|
-
end
|
753
|
-
end
|
754
|
-
|
755
|
-
class AnthosVmSubFeatureState
|
756
|
-
# @private
|
757
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
758
|
-
property :description, as: 'description'
|
759
|
-
property :installation_state, as: 'installationState'
|
760
|
-
property :migrate_state, as: 'migrateState', class: Google::Apis::GkehubV1alpha::MigrateState, decorator: Google::Apis::GkehubV1alpha::MigrateState::Representation
|
761
|
-
|
762
|
-
property :service_mesh_state, as: 'serviceMeshState', class: Google::Apis::GkehubV1alpha::ServiceMeshState, decorator: Google::Apis::GkehubV1alpha::ServiceMeshState::Representation
|
763
|
-
|
764
|
-
end
|
765
|
-
end
|
766
|
-
|
767
714
|
class AppDevExperienceFeatureSpec
|
768
715
|
# @private
|
769
716
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -852,6 +799,8 @@ module Google
|
|
852
799
|
|
853
800
|
property :cloudauditlogging, as: 'cloudauditlogging', class: Google::Apis::GkehubV1alpha::CloudAuditLoggingFeatureSpec, decorator: Google::Apis::GkehubV1alpha::CloudAuditLoggingFeatureSpec::Representation
|
854
801
|
|
802
|
+
property :fleetobservability, as: 'fleetobservability', class: Google::Apis::GkehubV1alpha::FleetObservabilityFeatureSpec, decorator: Google::Apis::GkehubV1alpha::FleetObservabilityFeatureSpec::Representation
|
803
|
+
|
855
804
|
property :multiclusteringress, as: 'multiclusteringress', class: Google::Apis::GkehubV1alpha::MultiClusterIngressFeatureSpec, decorator: Google::Apis::GkehubV1alpha::MultiClusterIngressFeatureSpec::Representation
|
856
805
|
|
857
806
|
property :workloadcertificate, as: 'workloadcertificate', class: Google::Apis::GkehubV1alpha::FeatureSpec, decorator: Google::Apis::GkehubV1alpha::FeatureSpec::Representation
|
@@ -864,6 +813,8 @@ module Google
|
|
864
813
|
class Representation < Google::Apis::Core::JsonRepresentation
|
865
814
|
property :appdevexperience, as: 'appdevexperience', class: Google::Apis::GkehubV1alpha::AppDevExperienceFeatureState, decorator: Google::Apis::GkehubV1alpha::AppDevExperienceFeatureState::Representation
|
866
815
|
|
816
|
+
property :fleetobservability, as: 'fleetobservability', class: Google::Apis::GkehubV1alpha::FleetObservabilityFeatureState, decorator: Google::Apis::GkehubV1alpha::FleetObservabilityFeatureState::Representation
|
817
|
+
|
867
818
|
property :servicemesh, as: 'servicemesh', class: Google::Apis::GkehubV1alpha::ServiceMeshFeatureState, decorator: Google::Apis::GkehubV1alpha::ServiceMeshFeatureState::Representation
|
868
819
|
|
869
820
|
property :state, as: 'state', class: Google::Apis::GkehubV1alpha::FeatureState, decorator: Google::Apis::GkehubV1alpha::FeatureState::Representation
|
@@ -1194,6 +1145,10 @@ module Google
|
|
1194
1145
|
property :name, as: 'name'
|
1195
1146
|
property :resource_state, as: 'resourceState', class: Google::Apis::GkehubV1alpha::FeatureResourceState, decorator: Google::Apis::GkehubV1alpha::FeatureResourceState::Representation
|
1196
1147
|
|
1148
|
+
hash :scope_specs, as: 'scopeSpecs', class: Google::Apis::GkehubV1alpha::ScopeFeatureSpec, decorator: Google::Apis::GkehubV1alpha::ScopeFeatureSpec::Representation
|
1149
|
+
|
1150
|
+
hash :scope_states, as: 'scopeStates', class: Google::Apis::GkehubV1alpha::ScopeFeatureState, decorator: Google::Apis::GkehubV1alpha::ScopeFeatureState::Representation
|
1151
|
+
|
1197
1152
|
property :spec, as: 'spec', class: Google::Apis::GkehubV1alpha::CommonFeatureSpec, decorator: Google::Apis::GkehubV1alpha::CommonFeatureSpec::Representation
|
1198
1153
|
|
1199
1154
|
property :state, as: 'state', class: Google::Apis::GkehubV1alpha::CommonFeatureState, decorator: Google::Apis::GkehubV1alpha::CommonFeatureState::Representation
|
@@ -1248,6 +1203,30 @@ module Google
|
|
1248
1203
|
end
|
1249
1204
|
end
|
1250
1205
|
|
1206
|
+
class FleetObservabilityFeatureSpec
|
1207
|
+
# @private
|
1208
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1209
|
+
end
|
1210
|
+
end
|
1211
|
+
|
1212
|
+
class FleetObservabilityFeatureState
|
1213
|
+
# @private
|
1214
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1215
|
+
end
|
1216
|
+
end
|
1217
|
+
|
1218
|
+
class FleetObservabilityMembershipSpec
|
1219
|
+
# @private
|
1220
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1221
|
+
end
|
1222
|
+
end
|
1223
|
+
|
1224
|
+
class FleetObservabilityMembershipState
|
1225
|
+
# @private
|
1226
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1227
|
+
end
|
1228
|
+
end
|
1229
|
+
|
1251
1230
|
class GenerateConnectManifestResponse
|
1252
1231
|
# @private
|
1253
1232
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1276,6 +1255,8 @@ module Google
|
|
1276
1255
|
class IdentityServiceAuthMethod
|
1277
1256
|
# @private
|
1278
1257
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1258
|
+
property :azuread_config, as: 'azureadConfig', class: Google::Apis::GkehubV1alpha::IdentityServiceAzureAdConfig, decorator: Google::Apis::GkehubV1alpha::IdentityServiceAzureAdConfig::Representation
|
1259
|
+
|
1279
1260
|
property :google_config, as: 'googleConfig', class: Google::Apis::GkehubV1alpha::IdentityServiceGoogleConfig, decorator: Google::Apis::GkehubV1alpha::IdentityServiceGoogleConfig::Representation
|
1280
1261
|
|
1281
1262
|
property :name, as: 'name'
|
@@ -1285,6 +1266,17 @@ module Google
|
|
1285
1266
|
end
|
1286
1267
|
end
|
1287
1268
|
|
1269
|
+
class IdentityServiceAzureAdConfig
|
1270
|
+
# @private
|
1271
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1272
|
+
property :client_id, as: 'clientId'
|
1273
|
+
property :client_secret, as: 'clientSecret'
|
1274
|
+
property :encrypted_client_secret, :base64 => true, as: 'encryptedClientSecret'
|
1275
|
+
property :kubectl_redirect_uri, as: 'kubectlRedirectUri'
|
1276
|
+
property :tenant, as: 'tenant'
|
1277
|
+
end
|
1278
|
+
end
|
1279
|
+
|
1288
1280
|
class IdentityServiceGoogleConfig
|
1289
1281
|
# @private
|
1290
1282
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1412,14 +1404,6 @@ module Google
|
|
1412
1404
|
end
|
1413
1405
|
end
|
1414
1406
|
|
1415
|
-
class LocalControllerState
|
1416
|
-
# @private
|
1417
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
1418
|
-
property :description, as: 'description'
|
1419
|
-
property :installation_state, as: 'installationState'
|
1420
|
-
end
|
1421
|
-
end
|
1422
|
-
|
1423
1407
|
class Location
|
1424
1408
|
# @private
|
1425
1409
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1477,12 +1461,12 @@ module Google
|
|
1477
1461
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1478
1462
|
property :anthosobservability, as: 'anthosobservability', class: Google::Apis::GkehubV1alpha::AnthosObservabilityMembershipSpec, decorator: Google::Apis::GkehubV1alpha::AnthosObservabilityMembershipSpec::Representation
|
1479
1463
|
|
1480
|
-
property :anthosvm, as: 'anthosvm', class: Google::Apis::GkehubV1alpha::AnthosVmMembershipSpec, decorator: Google::Apis::GkehubV1alpha::AnthosVmMembershipSpec::Representation
|
1481
|
-
|
1482
1464
|
property :cloudbuild, as: 'cloudbuild', class: Google::Apis::GkehubV1alpha::CloudBuildMembershipSpec, decorator: Google::Apis::GkehubV1alpha::CloudBuildMembershipSpec::Representation
|
1483
1465
|
|
1484
1466
|
property :configmanagement, as: 'configmanagement', class: Google::Apis::GkehubV1alpha::ConfigManagementMembershipSpec, decorator: Google::Apis::GkehubV1alpha::ConfigManagementMembershipSpec::Representation
|
1485
1467
|
|
1468
|
+
property :fleetobservability, as: 'fleetobservability', class: Google::Apis::GkehubV1alpha::FleetObservabilityMembershipSpec, decorator: Google::Apis::GkehubV1alpha::FleetObservabilityMembershipSpec::Representation
|
1469
|
+
|
1486
1470
|
property :identityservice, as: 'identityservice', class: Google::Apis::GkehubV1alpha::IdentityServiceMembershipSpec, decorator: Google::Apis::GkehubV1alpha::IdentityServiceMembershipSpec::Representation
|
1487
1471
|
|
1488
1472
|
property :mesh, as: 'mesh', class: Google::Apis::GkehubV1alpha::ServiceMeshMembershipSpec, decorator: Google::Apis::GkehubV1alpha::ServiceMeshMembershipSpec::Representation
|
@@ -1497,12 +1481,12 @@ module Google
|
|
1497
1481
|
class MembershipFeatureState
|
1498
1482
|
# @private
|
1499
1483
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1500
|
-
property :anthosvm, as: 'anthosvm', class: Google::Apis::GkehubV1alpha::AnthosVmMembershipState, decorator: Google::Apis::GkehubV1alpha::AnthosVmMembershipState::Representation
|
1501
|
-
|
1502
1484
|
property :appdevexperience, as: 'appdevexperience', class: Google::Apis::GkehubV1alpha::AppDevExperienceFeatureState, decorator: Google::Apis::GkehubV1alpha::AppDevExperienceFeatureState::Representation
|
1503
1485
|
|
1504
1486
|
property :configmanagement, as: 'configmanagement', class: Google::Apis::GkehubV1alpha::ConfigManagementMembershipState, decorator: Google::Apis::GkehubV1alpha::ConfigManagementMembershipState::Representation
|
1505
1487
|
|
1488
|
+
property :fleetobservability, as: 'fleetobservability', class: Google::Apis::GkehubV1alpha::FleetObservabilityMembershipState, decorator: Google::Apis::GkehubV1alpha::FleetObservabilityMembershipState::Representation
|
1489
|
+
|
1506
1490
|
property :identityservice, as: 'identityservice', class: Google::Apis::GkehubV1alpha::IdentityServiceMembershipState, decorator: Google::Apis::GkehubV1alpha::IdentityServiceMembershipState::Representation
|
1507
1491
|
|
1508
1492
|
property :metering, as: 'metering', class: Google::Apis::GkehubV1alpha::MeteringMembershipState, decorator: Google::Apis::GkehubV1alpha::MeteringMembershipState::Representation
|
@@ -1538,18 +1522,6 @@ module Google
|
|
1538
1522
|
end
|
1539
1523
|
end
|
1540
1524
|
|
1541
|
-
class MigrateSpec
|
1542
|
-
# @private
|
1543
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
1544
|
-
end
|
1545
|
-
end
|
1546
|
-
|
1547
|
-
class MigrateState
|
1548
|
-
# @private
|
1549
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
1550
|
-
end
|
1551
|
-
end
|
1552
|
-
|
1553
1525
|
class MultiCloudCluster
|
1554
1526
|
# @private
|
1555
1527
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1641,7 +1613,6 @@ module Google
|
|
1641
1613
|
class PolicyControllerMembershipState
|
1642
1614
|
# @private
|
1643
1615
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1644
|
-
property :cluster_name, as: 'clusterName'
|
1645
1616
|
hash :component_states, as: 'componentStates', class: Google::Apis::GkehubV1alpha::PolicyControllerOnClusterState, decorator: Google::Apis::GkehubV1alpha::PolicyControllerOnClusterState::Representation
|
1646
1617
|
|
1647
1618
|
property :state, as: 'state'
|
@@ -1687,6 +1658,20 @@ module Google
|
|
1687
1658
|
end
|
1688
1659
|
end
|
1689
1660
|
|
1661
|
+
class ScopeFeatureSpec
|
1662
|
+
# @private
|
1663
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1664
|
+
end
|
1665
|
+
end
|
1666
|
+
|
1667
|
+
class ScopeFeatureState
|
1668
|
+
# @private
|
1669
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1670
|
+
property :state, as: 'state', class: Google::Apis::GkehubV1alpha::FeatureState, decorator: Google::Apis::GkehubV1alpha::FeatureState::Representation
|
1671
|
+
|
1672
|
+
end
|
1673
|
+
end
|
1674
|
+
|
1690
1675
|
class ServiceMeshAnalysisMessage
|
1691
1676
|
# @private
|
1692
1677
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1756,18 +1741,6 @@ module Google
|
|
1756
1741
|
end
|
1757
1742
|
end
|
1758
1743
|
|
1759
|
-
class ServiceMeshSpec
|
1760
|
-
# @private
|
1761
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
1762
|
-
end
|
1763
|
-
end
|
1764
|
-
|
1765
|
-
class ServiceMeshState
|
1766
|
-
# @private
|
1767
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
1768
|
-
end
|
1769
|
-
end
|
1770
|
-
|
1771
1744
|
class ServiceMeshStatusDetails
|
1772
1745
|
# @private
|
1773
1746
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-gkehub_v1alpha
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.41.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-
|
11
|
+
date: 2022-11-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-gkehub_v1alpha/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-gkehub_v1alpha/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-gkehub_v1alpha/v0.41.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-gkehub_v1alpha
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|