google-apis-gkehub_v1beta 0.23.0 → 0.26.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 867d866d01ce3536d027825a39b936a4be31ca454caca184a433aae04e5530d6
4
- data.tar.gz: ec54524bd8891a63ac63db22abad575353ff4e5f8276ca0722107fb90abb1056
3
+ metadata.gz: 32c92e2b91556b164b236fc2a5b94512441f9e87fde99680bfe0e6a869ed7522
4
+ data.tar.gz: 93baeeb91cf0fb8d3d5d385c34aab2019d6246199a6997233f40a439832e16df
5
5
  SHA512:
6
- metadata.gz: 73f047013760b9c550a96ff6239e06de04ba9839760ad34afe4ebab98390e798f6bdd0f55f116b4fc3ee84f86f7b4c28e57873b78c09a0048372df21a2e13ad9
7
- data.tar.gz: d52278061bb4dfed99a5050a679fde8d07f8344cf606779d705e88abd60d3fbb9e61423e862a865ecd60bf5e81eb5cb9d3e9946d555f1208f465380aefabe81f
6
+ metadata.gz: c20d85adf318c5fc0406e21d45ef1bd166e6b08b42280e2988e1671973e74af5f81cd385c3791f2e5f3759a6c2262151eda4c3b6d536e1be3f8cf3d75445a043
7
+ data.tar.gz: 783e7e3c00128f15eab5c9f8c2cf704068d7e3be4141a513d7c210a39b74842e33759b1a6e7b8bc43f80d221374e5dcc7fbb3a5b82a74aa149ff2b9dc0156e4c
data/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # Release history for google-apis-gkehub_v1beta
2
2
 
3
+ ### v0.26.0 (2022-06-05)
4
+
5
+ * Regenerated from discovery document revision 20220530
6
+ * Regenerated using generator version 0.5.0
7
+
8
+ ### v0.25.0 (2022-05-16)
9
+
10
+ * Regenerated from discovery document revision 20220505
11
+
12
+ ### v0.24.0 (2022-05-08)
13
+
14
+ * Regenerated from discovery document revision 20220429
15
+
3
16
  ### v0.23.0 (2022-04-16)
4
17
 
5
18
  * Regenerated from discovery document revision 20220408
@@ -77,6 +77,129 @@ module Google
77
77
  end
78
78
  end
79
79
 
80
+ # AnthosVMMembershipSpec contains the AnthosVM feature configuration for a
81
+ # membership/cluster.
82
+ class AnthosVmMembershipSpec
83
+ include Google::Apis::Core::Hashable
84
+
85
+ # List of configurations of the Anthos For VM subfeatures that are to be enabled
86
+ # Corresponds to the JSON property `subfeaturesSpec`
87
+ # @return [Array<Google::Apis::GkehubV1beta::AnthosVmSubFeatureSpec>]
88
+ attr_accessor :subfeatures_spec
89
+
90
+ def initialize(**args)
91
+ update!(**args)
92
+ end
93
+
94
+ # Update properties of this object
95
+ def update!(**args)
96
+ @subfeatures_spec = args[:subfeatures_spec] if args.key?(:subfeatures_spec)
97
+ end
98
+ end
99
+
100
+ # AnthosVMFeatureState contains the state of the AnthosVM feature. It represents
101
+ # the actual state in the cluster, while the AnthosVMMembershipSpec represents
102
+ # the desired state.
103
+ class AnthosVmMembershipState
104
+ include Google::Apis::Core::Hashable
105
+
106
+ # LocalControllerState contains the state of the local controller deployed in
107
+ # the cluster.
108
+ # Corresponds to the JSON property `localControllerState`
109
+ # @return [Google::Apis::GkehubV1beta::LocalControllerState]
110
+ attr_accessor :local_controller_state
111
+
112
+ # List of AnthosVM subfeature states
113
+ # Corresponds to the JSON property `subfeatureState`
114
+ # @return [Array<Google::Apis::GkehubV1beta::AnthosVmSubFeatureState>]
115
+ attr_accessor :subfeature_state
116
+
117
+ def initialize(**args)
118
+ update!(**args)
119
+ end
120
+
121
+ # Update properties of this object
122
+ def update!(**args)
123
+ @local_controller_state = args[:local_controller_state] if args.key?(:local_controller_state)
124
+ @subfeature_state = args[:subfeature_state] if args.key?(:subfeature_state)
125
+ end
126
+ end
127
+
128
+ # AnthosVMSubFeatureSpec contains the subfeature configuration for a membership/
129
+ # cluster.
130
+ class AnthosVmSubFeatureSpec
131
+ include Google::Apis::Core::Hashable
132
+
133
+ # Indicates whether the subfeature should be enabled on the cluster or not. If
134
+ # set to true, the subfeature's control plane and resources will be installed in
135
+ # the cluster. If set to false, the oneof spec if present will be ignored and
136
+ # nothing will be installed in the cluster.
137
+ # Corresponds to the JSON property `enabled`
138
+ # @return [Boolean]
139
+ attr_accessor :enabled
140
+ alias_method :enabled?, :enabled
141
+
142
+ # MigrateSpec contains the migrate subfeature configuration.
143
+ # Corresponds to the JSON property `migrateSpec`
144
+ # @return [Google::Apis::GkehubV1beta::MigrateSpec]
145
+ attr_accessor :migrate_spec
146
+
147
+ # ServiceMeshSpec contains the serviceMesh subfeature configuration.
148
+ # Corresponds to the JSON property `serviceMeshSpec`
149
+ # @return [Google::Apis::GkehubV1beta::ServiceMeshSpec]
150
+ attr_accessor :service_mesh_spec
151
+
152
+ def initialize(**args)
153
+ update!(**args)
154
+ end
155
+
156
+ # Update properties of this object
157
+ def update!(**args)
158
+ @enabled = args[:enabled] if args.key?(:enabled)
159
+ @migrate_spec = args[:migrate_spec] if args.key?(:migrate_spec)
160
+ @service_mesh_spec = args[:service_mesh_spec] if args.key?(:service_mesh_spec)
161
+ end
162
+ end
163
+
164
+ # AnthosVMSubFeatureState contains the state of the AnthosVM subfeatures.
165
+ class AnthosVmSubFeatureState
166
+ include Google::Apis::Core::Hashable
167
+
168
+ # Description represents human readable description of the subfeature state. If
169
+ # the deployment failed, this should also contain the reason for the failure.
170
+ # Corresponds to the JSON property `description`
171
+ # @return [String]
172
+ attr_accessor :description
173
+
174
+ # InstallationState represents the state of installation of the subfeature in
175
+ # the cluster.
176
+ # Corresponds to the JSON property `installationState`
177
+ # @return [String]
178
+ attr_accessor :installation_state
179
+
180
+ # MigrateState contains the state of Migrate subfeature
181
+ # Corresponds to the JSON property `migrateState`
182
+ # @return [Google::Apis::GkehubV1beta::MigrateState]
183
+ attr_accessor :migrate_state
184
+
185
+ # ServiceMeshState contains the state of Service Mesh subfeature
186
+ # Corresponds to the JSON property `serviceMeshState`
187
+ # @return [Google::Apis::GkehubV1beta::ServiceMeshState]
188
+ attr_accessor :service_mesh_state
189
+
190
+ def initialize(**args)
191
+ update!(**args)
192
+ end
193
+
194
+ # Update properties of this object
195
+ def update!(**args)
196
+ @description = args[:description] if args.key?(:description)
197
+ @installation_state = args[:installation_state] if args.key?(:installation_state)
198
+ @migrate_state = args[:migrate_state] if args.key?(:migrate_state)
199
+ @service_mesh_state = args[:service_mesh_state] if args.key?(:service_mesh_state)
200
+ end
201
+ end
202
+
80
203
  # Spec for App Dev Experience Feature.
81
204
  class AppDevExperienceFeatureSpec
82
205
  include Google::Apis::Core::Hashable
@@ -122,8 +245,8 @@ module Google
122
245
  # "audit_log_configs": [ ` "log_type": "DATA_READ" `, ` "log_type": "DATA_WRITE"
123
246
  # , "exempted_members": [ "user:aliya@example.com" ] ` ] ` ] ` For sampleservice,
124
247
  # this policy enables DATA_READ, DATA_WRITE and ADMIN_READ logging. It also
125
- # exempts jose@example.com from DATA_READ logging, and aliya@example.com from
126
- # DATA_WRITE logging.
248
+ # exempts `jose@example.com` from DATA_READ logging, and `aliya@example.com`
249
+ # from DATA_WRITE logging.
127
250
  class AuditConfig
128
251
  include Google::Apis::Core::Hashable
129
252
 
@@ -406,6 +529,11 @@ module Google
406
529
  # @return [Google::Apis::GkehubV1beta::ConfigManagementGitConfig]
407
530
  attr_accessor :git
408
531
 
532
+ # OCI repo configuration for a single cluster
533
+ # Corresponds to the JSON property `oci`
534
+ # @return [Google::Apis::GkehubV1beta::ConfigManagementOciConfig]
535
+ attr_accessor :oci
536
+
409
537
  # Set to true to enable the Config Sync admission webhook to prevent drifts. If
410
538
  # set to `false`, disables the Config Sync admission webhook and does not
411
539
  # prevent drifts.
@@ -428,6 +556,7 @@ module Google
428
556
  def update!(**args)
429
557
  @enabled = args[:enabled] if args.key?(:enabled)
430
558
  @git = args[:git] if args.key?(:git)
559
+ @oci = args[:oci] if args.key?(:oci)
431
560
  @prevent_drift = args[:prevent_drift] if args.key?(:prevent_drift)
432
561
  @source_format = args[:source_format] if args.key?(:source_format)
433
562
  end
@@ -963,6 +1092,52 @@ module Google
963
1092
  end
964
1093
  end
965
1094
 
1095
+ # OCI repo configuration for a single cluster
1096
+ class ConfigManagementOciConfig
1097
+ include Google::Apis::Core::Hashable
1098
+
1099
+ # The GCP Service Account Email used for auth when secret_type is
1100
+ # gcpServiceAccount.
1101
+ # Corresponds to the JSON property `gcpServiceAccountEmail`
1102
+ # @return [String]
1103
+ attr_accessor :gcp_service_account_email
1104
+
1105
+ # The absolute path of the directory that contains the local resources. Default:
1106
+ # the root directory of the image.
1107
+ # Corresponds to the JSON property `policyDir`
1108
+ # @return [String]
1109
+ attr_accessor :policy_dir
1110
+
1111
+ # Type of secret configured for access to the Git repo.
1112
+ # Corresponds to the JSON property `secretType`
1113
+ # @return [String]
1114
+ attr_accessor :secret_type
1115
+
1116
+ # The OCI image repository URL for the package to sync from. e.g. `LOCATION-
1117
+ # docker.pkg.dev/PROJECT_ID/REPOSITORY_NAME/PACKAGE_NAME`.
1118
+ # Corresponds to the JSON property `syncRepo`
1119
+ # @return [String]
1120
+ attr_accessor :sync_repo
1121
+
1122
+ # Period in seconds between consecutive syncs. Default: 15.
1123
+ # Corresponds to the JSON property `syncWaitSecs`
1124
+ # @return [Fixnum]
1125
+ attr_accessor :sync_wait_secs
1126
+
1127
+ def initialize(**args)
1128
+ update!(**args)
1129
+ end
1130
+
1131
+ # Update properties of this object
1132
+ def update!(**args)
1133
+ @gcp_service_account_email = args[:gcp_service_account_email] if args.key?(:gcp_service_account_email)
1134
+ @policy_dir = args[:policy_dir] if args.key?(:policy_dir)
1135
+ @secret_type = args[:secret_type] if args.key?(:secret_type)
1136
+ @sync_repo = args[:sync_repo] if args.key?(:sync_repo)
1137
+ @sync_wait_secs = args[:sync_wait_secs] if args.key?(:sync_wait_secs)
1138
+ end
1139
+ end
1140
+
966
1141
  # State information for an ACM's Operator
967
1142
  class ConfigManagementOperatorState
968
1143
  include Google::Apis::Core::Hashable
@@ -1023,6 +1198,13 @@ module Google
1023
1198
  attr_accessor :log_denies_enabled
1024
1199
  alias_method :log_denies_enabled?, :log_denies_enabled
1025
1200
 
1201
+ # PolicyControllerMonitoring specifies the backends Policy Controller should
1202
+ # export metrics to. For example, to specify metrics should be exported to Cloud
1203
+ # Monitoring and Prometheus, specify backends: ["cloudmonitoring", "prometheus"]
1204
+ # Corresponds to the JSON property `monitoring`
1205
+ # @return [Google::Apis::GkehubV1beta::ConfigManagementPolicyControllerMonitoring]
1206
+ attr_accessor :monitoring
1207
+
1026
1208
  # Enables the ability to use Constraint Templates that reference to objects
1027
1209
  # other than the object currently being evaluated.
1028
1210
  # Corresponds to the JSON property `referentialRulesEnabled`
@@ -1046,11 +1228,34 @@ module Google
1046
1228
  @enabled = args[:enabled] if args.key?(:enabled)
1047
1229
  @exemptable_namespaces = args[:exemptable_namespaces] if args.key?(:exemptable_namespaces)
1048
1230
  @log_denies_enabled = args[:log_denies_enabled] if args.key?(:log_denies_enabled)
1231
+ @monitoring = args[:monitoring] if args.key?(:monitoring)
1049
1232
  @referential_rules_enabled = args[:referential_rules_enabled] if args.key?(:referential_rules_enabled)
1050
1233
  @template_library_installed = args[:template_library_installed] if args.key?(:template_library_installed)
1051
1234
  end
1052
1235
  end
1053
1236
 
1237
+ # PolicyControllerMonitoring specifies the backends Policy Controller should
1238
+ # export metrics to. For example, to specify metrics should be exported to Cloud
1239
+ # Monitoring and Prometheus, specify backends: ["cloudmonitoring", "prometheus"]
1240
+ class ConfigManagementPolicyControllerMonitoring
1241
+ include Google::Apis::Core::Hashable
1242
+
1243
+ # Specifies the list of backends Policy Controller will export to. An empty list
1244
+ # would effectively disable metrics export.
1245
+ # Corresponds to the JSON property `backends`
1246
+ # @return [Array<String>]
1247
+ attr_accessor :backends
1248
+
1249
+ def initialize(**args)
1250
+ update!(**args)
1251
+ end
1252
+
1253
+ # Update properties of this object
1254
+ def update!(**args)
1255
+ @backends = args[:backends] if args.key?(:backends)
1256
+ end
1257
+ end
1258
+
1054
1259
  # State for PolicyControllerState.
1055
1260
  class ConfigManagementPolicyControllerState
1056
1261
  include Google::Apis::Core::Hashable
@@ -1701,6 +1906,34 @@ module Google
1701
1906
  end
1702
1907
  end
1703
1908
 
1909
+ # LocalControllerState contains the state of the local controller deployed in
1910
+ # the cluster.
1911
+ class LocalControllerState
1912
+ include Google::Apis::Core::Hashable
1913
+
1914
+ # Description represents the human readable description of the current state of
1915
+ # the local PE controller
1916
+ # Corresponds to the JSON property `description`
1917
+ # @return [String]
1918
+ attr_accessor :description
1919
+
1920
+ # InstallationState represents the state of deployment of the local PE
1921
+ # controller in the cluster.
1922
+ # Corresponds to the JSON property `installationState`
1923
+ # @return [String]
1924
+ attr_accessor :installation_state
1925
+
1926
+ def initialize(**args)
1927
+ update!(**args)
1928
+ end
1929
+
1930
+ # Update properties of this object
1931
+ def update!(**args)
1932
+ @description = args[:description] if args.key?(:description)
1933
+ @installation_state = args[:installation_state] if args.key?(:installation_state)
1934
+ end
1935
+ end
1936
+
1704
1937
  # A resource that represents Google Cloud Platform location.
1705
1938
  class Location
1706
1939
  include Google::Apis::Core::Hashable
@@ -1758,6 +1991,12 @@ module Google
1758
1991
  # @return [Google::Apis::GkehubV1beta::AnthosObservabilityMembershipSpec]
1759
1992
  attr_accessor :anthosobservability
1760
1993
 
1994
+ # AnthosVMMembershipSpec contains the AnthosVM feature configuration for a
1995
+ # membership/cluster.
1996
+ # Corresponds to the JSON property `anthosvm`
1997
+ # @return [Google::Apis::GkehubV1beta::AnthosVmMembershipSpec]
1998
+ attr_accessor :anthosvm
1999
+
1761
2000
  # **Cloud Build**: Configurations for each Cloud Build enabled cluster.
1762
2001
  # Corresponds to the JSON property `cloudbuild`
1763
2002
  # @return [Google::Apis::GkehubV1beta::MembershipSpec]
@@ -1792,6 +2031,7 @@ module Google
1792
2031
  # Update properties of this object
1793
2032
  def update!(**args)
1794
2033
  @anthosobservability = args[:anthosobservability] if args.key?(:anthosobservability)
2034
+ @anthosvm = args[:anthosvm] if args.key?(:anthosvm)
1795
2035
  @cloudbuild = args[:cloudbuild] if args.key?(:cloudbuild)
1796
2036
  @configmanagement = args[:configmanagement] if args.key?(:configmanagement)
1797
2037
  @identityservice = args[:identityservice] if args.key?(:identityservice)
@@ -1805,6 +2045,13 @@ module Google
1805
2045
  class MembershipFeatureState
1806
2046
  include Google::Apis::Core::Hashable
1807
2047
 
2048
+ # AnthosVMFeatureState contains the state of the AnthosVM feature. It represents
2049
+ # the actual state in the cluster, while the AnthosVMMembershipSpec represents
2050
+ # the desired state.
2051
+ # Corresponds to the JSON property `anthosvm`
2052
+ # @return [Google::Apis::GkehubV1beta::AnthosVmMembershipState]
2053
+ attr_accessor :anthosvm
2054
+
1808
2055
  # State for App Dev Exp Feature.
1809
2056
  # Corresponds to the JSON property `appdevexperience`
1810
2057
  # @return [Google::Apis::GkehubV1beta::AppDevExperienceFeatureState]
@@ -1849,6 +2096,7 @@ module Google
1849
2096
 
1850
2097
  # Update properties of this object
1851
2098
  def update!(**args)
2099
+ @anthosvm = args[:anthosvm] if args.key?(:anthosvm)
1852
2100
  @appdevexperience = args[:appdevexperience] if args.key?(:appdevexperience)
1853
2101
  @configmanagement = args[:configmanagement] if args.key?(:configmanagement)
1854
2102
  @identityservice = args[:identityservice] if args.key?(:identityservice)
@@ -1911,6 +2159,32 @@ module Google
1911
2159
  end
1912
2160
  end
1913
2161
 
2162
+ # MigrateSpec contains the migrate subfeature configuration.
2163
+ class MigrateSpec
2164
+ include Google::Apis::Core::Hashable
2165
+
2166
+ def initialize(**args)
2167
+ update!(**args)
2168
+ end
2169
+
2170
+ # Update properties of this object
2171
+ def update!(**args)
2172
+ end
2173
+ end
2174
+
2175
+ # MigrateState contains the state of Migrate subfeature
2176
+ class MigrateState
2177
+ include Google::Apis::Core::Hashable
2178
+
2179
+ def initialize(**args)
2180
+ update!(**args)
2181
+ end
2182
+
2183
+ # Update properties of this object
2184
+ def update!(**args)
2185
+ end
2186
+ end
2187
+
1914
2188
  # **Multi-cluster Ingress**: The configuration for the MultiClusterIngress
1915
2189
  # feature.
1916
2190
  class MultiClusterIngressFeatureSpec
@@ -2410,6 +2684,32 @@ module Google
2410
2684
  end
2411
2685
  end
2412
2686
 
2687
+ # ServiceMeshSpec contains the serviceMesh subfeature configuration.
2688
+ class ServiceMeshSpec
2689
+ include Google::Apis::Core::Hashable
2690
+
2691
+ def initialize(**args)
2692
+ update!(**args)
2693
+ end
2694
+
2695
+ # Update properties of this object
2696
+ def update!(**args)
2697
+ end
2698
+ end
2699
+
2700
+ # ServiceMeshState contains the state of Service Mesh subfeature
2701
+ class ServiceMeshState
2702
+ include Google::Apis::Core::Hashable
2703
+
2704
+ def initialize(**args)
2705
+ update!(**args)
2706
+ end
2707
+
2708
+ # Update properties of this object
2709
+ def update!(**args)
2710
+ end
2711
+ end
2712
+
2413
2713
  # Structured and human-readable details for a status.
2414
2714
  class ServiceMeshStatusDetails
2415
2715
  include Google::Apis::Core::Hashable
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module GkehubV1beta
18
18
  # Version of the google-apis-gkehub_v1beta gem
19
- GEM_VERSION = "0.23.0"
19
+ GEM_VERSION = "0.26.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.4.1"
22
+ GENERATOR_VERSION = "0.5.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220408"
25
+ REVISION = "20220530"
26
26
  end
27
27
  end
28
28
  end
@@ -34,6 +34,30 @@ 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
+
37
61
  class AppDevExperienceFeatureSpec
38
62
  class Representation < Google::Apis::Core::JsonRepresentation; end
39
63
 
@@ -190,6 +214,12 @@ module Google
190
214
  include Google::Apis::Core::JsonObjectSupport
191
215
  end
192
216
 
217
+ class ConfigManagementOciConfig
218
+ class Representation < Google::Apis::Core::JsonRepresentation; end
219
+
220
+ include Google::Apis::Core::JsonObjectSupport
221
+ end
222
+
193
223
  class ConfigManagementOperatorState
194
224
  class Representation < Google::Apis::Core::JsonRepresentation; end
195
225
 
@@ -202,6 +232,12 @@ module Google
202
232
  include Google::Apis::Core::JsonObjectSupport
203
233
  end
204
234
 
235
+ class ConfigManagementPolicyControllerMonitoring
236
+ class Representation < Google::Apis::Core::JsonRepresentation; end
237
+
238
+ include Google::Apis::Core::JsonObjectSupport
239
+ end
240
+
205
241
  class ConfigManagementPolicyControllerState
206
242
  class Representation < Google::Apis::Core::JsonRepresentation; end
207
243
 
@@ -304,6 +340,12 @@ module Google
304
340
  include Google::Apis::Core::JsonObjectSupport
305
341
  end
306
342
 
343
+ class LocalControllerState
344
+ class Representation < Google::Apis::Core::JsonRepresentation; end
345
+
346
+ include Google::Apis::Core::JsonObjectSupport
347
+ end
348
+
307
349
  class Location
308
350
  class Representation < Google::Apis::Core::JsonRepresentation; end
309
351
 
@@ -334,6 +376,18 @@ module Google
334
376
  include Google::Apis::Core::JsonObjectSupport
335
377
  end
336
378
 
379
+ class MigrateSpec
380
+ class Representation < Google::Apis::Core::JsonRepresentation; end
381
+
382
+ include Google::Apis::Core::JsonObjectSupport
383
+ end
384
+
385
+ class MigrateState
386
+ class Representation < Google::Apis::Core::JsonRepresentation; end
387
+
388
+ include Google::Apis::Core::JsonObjectSupport
389
+ end
390
+
337
391
  class MultiClusterIngressFeatureSpec
338
392
  class Representation < Google::Apis::Core::JsonRepresentation; end
339
393
 
@@ -412,6 +466,18 @@ module Google
412
466
  include Google::Apis::Core::JsonObjectSupport
413
467
  end
414
468
 
469
+ class ServiceMeshSpec
470
+ class Representation < Google::Apis::Core::JsonRepresentation; end
471
+
472
+ include Google::Apis::Core::JsonObjectSupport
473
+ end
474
+
475
+ class ServiceMeshState
476
+ class Representation < Google::Apis::Core::JsonRepresentation; end
477
+
478
+ include Google::Apis::Core::JsonObjectSupport
479
+ end
480
+
415
481
  class ServiceMeshStatusDetails
416
482
  class Representation < Google::Apis::Core::JsonRepresentation; end
417
483
 
@@ -459,6 +525,47 @@ module Google
459
525
  end
460
526
  end
461
527
 
528
+ class AnthosVmMembershipSpec
529
+ # @private
530
+ class Representation < Google::Apis::Core::JsonRepresentation
531
+ collection :subfeatures_spec, as: 'subfeaturesSpec', class: Google::Apis::GkehubV1beta::AnthosVmSubFeatureSpec, decorator: Google::Apis::GkehubV1beta::AnthosVmSubFeatureSpec::Representation
532
+
533
+ end
534
+ end
535
+
536
+ class AnthosVmMembershipState
537
+ # @private
538
+ class Representation < Google::Apis::Core::JsonRepresentation
539
+ property :local_controller_state, as: 'localControllerState', class: Google::Apis::GkehubV1beta::LocalControllerState, decorator: Google::Apis::GkehubV1beta::LocalControllerState::Representation
540
+
541
+ collection :subfeature_state, as: 'subfeatureState', class: Google::Apis::GkehubV1beta::AnthosVmSubFeatureState, decorator: Google::Apis::GkehubV1beta::AnthosVmSubFeatureState::Representation
542
+
543
+ end
544
+ end
545
+
546
+ class AnthosVmSubFeatureSpec
547
+ # @private
548
+ class Representation < Google::Apis::Core::JsonRepresentation
549
+ property :enabled, as: 'enabled'
550
+ property :migrate_spec, as: 'migrateSpec', class: Google::Apis::GkehubV1beta::MigrateSpec, decorator: Google::Apis::GkehubV1beta::MigrateSpec::Representation
551
+
552
+ property :service_mesh_spec, as: 'serviceMeshSpec', class: Google::Apis::GkehubV1beta::ServiceMeshSpec, decorator: Google::Apis::GkehubV1beta::ServiceMeshSpec::Representation
553
+
554
+ end
555
+ end
556
+
557
+ class AnthosVmSubFeatureState
558
+ # @private
559
+ class Representation < Google::Apis::Core::JsonRepresentation
560
+ property :description, as: 'description'
561
+ property :installation_state, as: 'installationState'
562
+ property :migrate_state, as: 'migrateState', class: Google::Apis::GkehubV1beta::MigrateState, decorator: Google::Apis::GkehubV1beta::MigrateState::Representation
563
+
564
+ property :service_mesh_state, as: 'serviceMeshState', class: Google::Apis::GkehubV1beta::ServiceMeshState, decorator: Google::Apis::GkehubV1beta::ServiceMeshState::Representation
565
+
566
+ end
567
+ end
568
+
462
569
  class AppDevExperienceFeatureSpec
463
570
  # @private
464
571
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -557,6 +664,8 @@ module Google
557
664
  property :enabled, as: 'enabled'
558
665
  property :git, as: 'git', class: Google::Apis::GkehubV1beta::ConfigManagementGitConfig, decorator: Google::Apis::GkehubV1beta::ConfigManagementGitConfig::Representation
559
666
 
667
+ property :oci, as: 'oci', class: Google::Apis::GkehubV1beta::ConfigManagementOciConfig, decorator: Google::Apis::GkehubV1beta::ConfigManagementOciConfig::Representation
668
+
560
669
  property :prevent_drift, as: 'preventDrift'
561
670
  property :source_format, as: 'sourceFormat'
562
671
  end
@@ -718,6 +827,17 @@ module Google
718
827
  end
719
828
  end
720
829
 
830
+ class ConfigManagementOciConfig
831
+ # @private
832
+ class Representation < Google::Apis::Core::JsonRepresentation
833
+ property :gcp_service_account_email, as: 'gcpServiceAccountEmail'
834
+ property :policy_dir, as: 'policyDir'
835
+ property :secret_type, as: 'secretType'
836
+ property :sync_repo, as: 'syncRepo'
837
+ property :sync_wait_secs, :numeric_string => true, as: 'syncWaitSecs'
838
+ end
839
+ end
840
+
721
841
  class ConfigManagementOperatorState
722
842
  # @private
723
843
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -735,11 +855,20 @@ module Google
735
855
  property :enabled, as: 'enabled'
736
856
  collection :exemptable_namespaces, as: 'exemptableNamespaces'
737
857
  property :log_denies_enabled, as: 'logDeniesEnabled'
858
+ property :monitoring, as: 'monitoring', class: Google::Apis::GkehubV1beta::ConfigManagementPolicyControllerMonitoring, decorator: Google::Apis::GkehubV1beta::ConfigManagementPolicyControllerMonitoring::Representation
859
+
738
860
  property :referential_rules_enabled, as: 'referentialRulesEnabled'
739
861
  property :template_library_installed, as: 'templateLibraryInstalled'
740
862
  end
741
863
  end
742
864
 
865
+ class ConfigManagementPolicyControllerMonitoring
866
+ # @private
867
+ class Representation < Google::Apis::Core::JsonRepresentation
868
+ collection :backends, as: 'backends'
869
+ end
870
+ end
871
+
743
872
  class ConfigManagementPolicyControllerState
744
873
  # @private
745
874
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -918,6 +1047,14 @@ module Google
918
1047
  end
919
1048
  end
920
1049
 
1050
+ class LocalControllerState
1051
+ # @private
1052
+ class Representation < Google::Apis::Core::JsonRepresentation
1053
+ property :description, as: 'description'
1054
+ property :installation_state, as: 'installationState'
1055
+ end
1056
+ end
1057
+
921
1058
  class Location
922
1059
  # @private
923
1060
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -934,6 +1071,8 @@ module Google
934
1071
  class Representation < Google::Apis::Core::JsonRepresentation
935
1072
  property :anthosobservability, as: 'anthosobservability', class: Google::Apis::GkehubV1beta::AnthosObservabilityMembershipSpec, decorator: Google::Apis::GkehubV1beta::AnthosObservabilityMembershipSpec::Representation
936
1073
 
1074
+ property :anthosvm, as: 'anthosvm', class: Google::Apis::GkehubV1beta::AnthosVmMembershipSpec, decorator: Google::Apis::GkehubV1beta::AnthosVmMembershipSpec::Representation
1075
+
937
1076
  property :cloudbuild, as: 'cloudbuild', class: Google::Apis::GkehubV1beta::MembershipSpec, decorator: Google::Apis::GkehubV1beta::MembershipSpec::Representation
938
1077
 
939
1078
  property :configmanagement, as: 'configmanagement', class: Google::Apis::GkehubV1beta::ConfigManagementMembershipSpec, decorator: Google::Apis::GkehubV1beta::ConfigManagementMembershipSpec::Representation
@@ -950,6 +1089,8 @@ module Google
950
1089
  class MembershipFeatureState
951
1090
  # @private
952
1091
  class Representation < Google::Apis::Core::JsonRepresentation
1092
+ property :anthosvm, as: 'anthosvm', class: Google::Apis::GkehubV1beta::AnthosVmMembershipState, decorator: Google::Apis::GkehubV1beta::AnthosVmMembershipState::Representation
1093
+
953
1094
  property :appdevexperience, as: 'appdevexperience', class: Google::Apis::GkehubV1beta::AppDevExperienceFeatureState, decorator: Google::Apis::GkehubV1beta::AppDevExperienceFeatureState::Representation
954
1095
 
955
1096
  property :configmanagement, as: 'configmanagement', class: Google::Apis::GkehubV1beta::ConfigManagementMembershipState, decorator: Google::Apis::GkehubV1beta::ConfigManagementMembershipState::Representation
@@ -983,6 +1124,18 @@ module Google
983
1124
  end
984
1125
  end
985
1126
 
1127
+ class MigrateSpec
1128
+ # @private
1129
+ class Representation < Google::Apis::Core::JsonRepresentation
1130
+ end
1131
+ end
1132
+
1133
+ class MigrateState
1134
+ # @private
1135
+ class Representation < Google::Apis::Core::JsonRepresentation
1136
+ end
1137
+ end
1138
+
986
1139
  class MultiClusterIngressFeatureSpec
987
1140
  # @private
988
1141
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1109,6 +1262,18 @@ module Google
1109
1262
  end
1110
1263
  end
1111
1264
 
1265
+ class ServiceMeshSpec
1266
+ # @private
1267
+ class Representation < Google::Apis::Core::JsonRepresentation
1268
+ end
1269
+ end
1270
+
1271
+ class ServiceMeshState
1272
+ # @private
1273
+ class Representation < Google::Apis::Core::JsonRepresentation
1274
+ end
1275
+ end
1276
+
1112
1277
  class ServiceMeshStatusDetails
1113
1278
  # @private
1114
1279
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -253,8 +253,9 @@ module Google
253
253
  # Gets the access control policy for a resource. Returns an empty policy if the
254
254
  # resource exists and does not have a policy set.
255
255
  # @param [String] resource
256
- # REQUIRED: The resource for which the policy is being requested. See the
257
- # operation documentation for the appropriate value for this field.
256
+ # REQUIRED: The resource for which the policy is being requested. See [Resource
257
+ # names](https://cloud.google.com/apis/design/resource_names) for the
258
+ # appropriate value for this field.
258
259
  # @param [Fixnum] options_requested_policy_version
259
260
  # Optional. The maximum policy version that will be used to format the policy.
260
261
  # Valid values are 0, 1, and 3. Requests specifying an invalid value will be
@@ -398,8 +399,9 @@ module Google
398
399
  # existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `
399
400
  # PERMISSION_DENIED` errors.
400
401
  # @param [String] resource
401
- # REQUIRED: The resource for which the policy is being specified. See the
402
- # operation documentation for the appropriate value for this field.
402
+ # REQUIRED: The resource for which the policy is being specified. See [Resource
403
+ # names](https://cloud.google.com/apis/design/resource_names) for the
404
+ # appropriate value for this field.
403
405
  # @param [Google::Apis::GkehubV1beta::SetIamPolicyRequest] set_iam_policy_request_object
404
406
  # @param [String] fields
405
407
  # Selector specifying which fields to include in a partial response.
@@ -436,8 +438,9 @@ module Google
436
438
  # permission-aware UIs and command-line tools, not for authorization checking.
437
439
  # This operation may "fail open" without warning.
438
440
  # @param [String] resource
439
- # REQUIRED: The resource for which the policy detail is being requested. See the
440
- # operation documentation for the appropriate value for this field.
441
+ # REQUIRED: The resource for which the policy detail is being requested. See [
442
+ # Resource names](https://cloud.google.com/apis/design/resource_names) for the
443
+ # appropriate value for this field.
441
444
  # @param [Google::Apis::GkehubV1beta::TestIamPermissionsRequest] test_iam_permissions_request_object
442
445
  # @param [String] fields
443
446
  # Selector specifying which fields to include in a partial response.
@@ -471,8 +474,9 @@ module Google
471
474
  # Gets the access control policy for a resource. Returns an empty policy if the
472
475
  # resource exists and does not have a policy set.
473
476
  # @param [String] resource
474
- # REQUIRED: The resource for which the policy is being requested. See the
475
- # operation documentation for the appropriate value for this field.
477
+ # REQUIRED: The resource for which the policy is being requested. See [Resource
478
+ # names](https://cloud.google.com/apis/design/resource_names) for the
479
+ # appropriate value for this field.
476
480
  # @param [Fixnum] options_requested_policy_version
477
481
  # Optional. The maximum policy version that will be used to format the policy.
478
482
  # Valid values are 0, 1, and 3. Requests specifying an invalid value will be
@@ -516,8 +520,9 @@ module Google
516
520
  # existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `
517
521
  # PERMISSION_DENIED` errors.
518
522
  # @param [String] resource
519
- # REQUIRED: The resource for which the policy is being specified. See the
520
- # operation documentation for the appropriate value for this field.
523
+ # REQUIRED: The resource for which the policy is being specified. See [Resource
524
+ # names](https://cloud.google.com/apis/design/resource_names) for the
525
+ # appropriate value for this field.
521
526
  # @param [Google::Apis::GkehubV1beta::SetIamPolicyRequest] set_iam_policy_request_object
522
527
  # @param [String] fields
523
528
  # Selector specifying which fields to include in a partial response.
@@ -554,8 +559,9 @@ module Google
554
559
  # permission-aware UIs and command-line tools, not for authorization checking.
555
560
  # This operation may "fail open" without warning.
556
561
  # @param [String] resource
557
- # REQUIRED: The resource for which the policy detail is being requested. See the
558
- # operation documentation for the appropriate value for this field.
562
+ # REQUIRED: The resource for which the policy detail is being requested. See [
563
+ # Resource names](https://cloud.google.com/apis/design/resource_names) for the
564
+ # appropriate value for this field.
559
565
  # @param [Google::Apis::GkehubV1beta::TestIamPermissionsRequest] test_iam_permissions_request_object
560
566
  # @param [String] fields
561
567
  # Selector specifying which fields to include in a partial response.
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-gkehub_v1beta
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.23.0
4
+ version: 0.26.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-04-18 00:00:00.000000000 Z
11
+ date: 2022-06-13 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.4'
19
+ version: '0.5'
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.4'
29
+ version: '0.5'
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: 2.a
@@ -58,7 +58,7 @@ licenses:
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
60
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-gkehub_v1beta/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-gkehub_v1beta/v0.23.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-gkehub_v1beta/v0.26.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-gkehub_v1beta
63
63
  post_install_message:
64
64
  rdoc_options: []
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
75
75
  - !ruby/object:Gem::Version
76
76
  version: '0'
77
77
  requirements: []
78
- rubygems_version: 3.3.5
78
+ rubygems_version: 3.3.14
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for GKE Hub API V1beta