google-apis-gkehub_v1beta 0.22.0 → 0.25.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: '051289223e3a56b1f480acc9ddf6c0776be151a3b9c672fcfbbb99c74618d447'
4
- data.tar.gz: 21ccc091250e70ce9dad39b9c84b4dfdeed6246b93c32c1825c1c14f28bd581e
3
+ metadata.gz: 87680abc7ac92c7e6e68d1458bc8c7b68be9a7b0562f2107a597e9c53ada524b
4
+ data.tar.gz: 7d66419ee857f399e4e4dd53a6809c7fce0b9ab2a21cfbe55a1055ae6aefaa8b
5
5
  SHA512:
6
- metadata.gz: 725c0def344ad668acb80f46bc4027b098d6506bfff14cbe7bddac430a18fa59f9e260d74722d305471ccbdce71b01cb99e2faabf089939c29c12b67591f7840
7
- data.tar.gz: 78a99a59a488fcf69a6ae20303e5bc1d300eb6531a380e009b6b4dcc617dc9d0f3148ff7dea3730769b3aa610da9ea33405357328ad4d68d6500d825c60a1ca3
6
+ metadata.gz: c4c203b7cf0c845ec514cba60d118e1f69cf7d5918a91ff631829ed60a1258685e85fe3ec314687e0b968d0c96bc5af162048c699518f4f484a039e9ca7e1ed7
7
+ data.tar.gz: 0ce42fd7743d525a9f2967c2f38918d37e44b5b0d60076fdd25acfdf7059531b6db7167cc27f69f9dac2a4ffefa42e09381efe86f2f42d891fedfc15e22af2bd
data/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # Release history for google-apis-gkehub_v1beta
2
2
 
3
+ ### v0.25.0 (2022-05-16)
4
+
5
+ * Regenerated from discovery document revision 20220505
6
+
7
+ ### v0.24.0 (2022-05-08)
8
+
9
+ * Regenerated from discovery document revision 20220429
10
+
11
+ ### v0.23.0 (2022-04-16)
12
+
13
+ * Regenerated from discovery document revision 20220408
14
+
3
15
  ### v0.22.0 (2022-04-09)
4
16
 
5
17
  * Regenerated from discovery document revision 20220401
@@ -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
 
@@ -203,7 +326,7 @@ module Google
203
326
  # @return [Google::Apis::GkehubV1beta::Expr]
204
327
  attr_accessor :condition
205
328
 
206
- # Specifies the principals requesting access for a Cloud Platform resource. `
329
+ # Specifies the principals requesting access for a Google Cloud resource. `
207
330
  # members` can have the following values: * `allUsers`: A special identifier
208
331
  # that represents anyone who is on the internet; with or without a Google
209
332
  # account. * `allAuthenticatedUsers`: A special identifier that represents
@@ -1701,6 +1824,34 @@ module Google
1701
1824
  end
1702
1825
  end
1703
1826
 
1827
+ # LocalControllerState contains the state of the local controller deployed in
1828
+ # the cluster.
1829
+ class LocalControllerState
1830
+ include Google::Apis::Core::Hashable
1831
+
1832
+ # Description represents the human readable description of the current state of
1833
+ # the local PE controller
1834
+ # Corresponds to the JSON property `description`
1835
+ # @return [String]
1836
+ attr_accessor :description
1837
+
1838
+ # InstallationState represents the state of deployment of the local PE
1839
+ # controller in the cluster.
1840
+ # Corresponds to the JSON property `installationState`
1841
+ # @return [String]
1842
+ attr_accessor :installation_state
1843
+
1844
+ def initialize(**args)
1845
+ update!(**args)
1846
+ end
1847
+
1848
+ # Update properties of this object
1849
+ def update!(**args)
1850
+ @description = args[:description] if args.key?(:description)
1851
+ @installation_state = args[:installation_state] if args.key?(:installation_state)
1852
+ end
1853
+ end
1854
+
1704
1855
  # A resource that represents Google Cloud Platform location.
1705
1856
  class Location
1706
1857
  include Google::Apis::Core::Hashable
@@ -1758,6 +1909,12 @@ module Google
1758
1909
  # @return [Google::Apis::GkehubV1beta::AnthosObservabilityMembershipSpec]
1759
1910
  attr_accessor :anthosobservability
1760
1911
 
1912
+ # AnthosVMMembershipSpec contains the AnthosVM feature configuration for a
1913
+ # membership/cluster.
1914
+ # Corresponds to the JSON property `anthosvm`
1915
+ # @return [Google::Apis::GkehubV1beta::AnthosVmMembershipSpec]
1916
+ attr_accessor :anthosvm
1917
+
1761
1918
  # **Cloud Build**: Configurations for each Cloud Build enabled cluster.
1762
1919
  # Corresponds to the JSON property `cloudbuild`
1763
1920
  # @return [Google::Apis::GkehubV1beta::MembershipSpec]
@@ -1774,6 +1931,11 @@ module Google
1774
1931
  # @return [Google::Apis::GkehubV1beta::IdentityServiceMembershipSpec]
1775
1932
  attr_accessor :identityservice
1776
1933
 
1934
+ # **Service Mesh**: Spec for a single Membership for the servicemesh feature
1935
+ # Corresponds to the JSON property `mesh`
1936
+ # @return [Google::Apis::GkehubV1beta::ServiceMeshMembershipSpec]
1937
+ attr_accessor :mesh
1938
+
1777
1939
  # **Policy Controller**: Configuration for a single cluster. Intended to
1778
1940
  # parallel the PolicyController CR.
1779
1941
  # Corresponds to the JSON property `policycontroller`
@@ -1787,9 +1949,11 @@ module Google
1787
1949
  # Update properties of this object
1788
1950
  def update!(**args)
1789
1951
  @anthosobservability = args[:anthosobservability] if args.key?(:anthosobservability)
1952
+ @anthosvm = args[:anthosvm] if args.key?(:anthosvm)
1790
1953
  @cloudbuild = args[:cloudbuild] if args.key?(:cloudbuild)
1791
1954
  @configmanagement = args[:configmanagement] if args.key?(:configmanagement)
1792
1955
  @identityservice = args[:identityservice] if args.key?(:identityservice)
1956
+ @mesh = args[:mesh] if args.key?(:mesh)
1793
1957
  @policycontroller = args[:policycontroller] if args.key?(:policycontroller)
1794
1958
  end
1795
1959
  end
@@ -1799,6 +1963,13 @@ module Google
1799
1963
  class MembershipFeatureState
1800
1964
  include Google::Apis::Core::Hashable
1801
1965
 
1966
+ # AnthosVMFeatureState contains the state of the AnthosVM feature. It represents
1967
+ # the actual state in the cluster, while the AnthosVMMembershipSpec represents
1968
+ # the desired state.
1969
+ # Corresponds to the JSON property `anthosvm`
1970
+ # @return [Google::Apis::GkehubV1beta::AnthosVmMembershipState]
1971
+ attr_accessor :anthosvm
1972
+
1802
1973
  # State for App Dev Exp Feature.
1803
1974
  # Corresponds to the JSON property `appdevexperience`
1804
1975
  # @return [Google::Apis::GkehubV1beta::AppDevExperienceFeatureState]
@@ -1824,6 +1995,12 @@ module Google
1824
1995
  # @return [Google::Apis::GkehubV1beta::PolicyControllerMembershipState]
1825
1996
  attr_accessor :policycontroller
1826
1997
 
1998
+ # **Service Mesh**: State for a single Membership, as analyzed by the Service
1999
+ # Mesh Hub Controller.
2000
+ # Corresponds to the JSON property `servicemesh`
2001
+ # @return [Google::Apis::GkehubV1beta::ServiceMeshMembershipState]
2002
+ attr_accessor :servicemesh
2003
+
1827
2004
  # FeatureState describes the high-level state of a Feature. It may be used to
1828
2005
  # describe a Feature's state at the environ-level, or per-membershop, depending
1829
2006
  # on the context.
@@ -1837,11 +2014,13 @@ module Google
1837
2014
 
1838
2015
  # Update properties of this object
1839
2016
  def update!(**args)
2017
+ @anthosvm = args[:anthosvm] if args.key?(:anthosvm)
1840
2018
  @appdevexperience = args[:appdevexperience] if args.key?(:appdevexperience)
1841
2019
  @configmanagement = args[:configmanagement] if args.key?(:configmanagement)
1842
2020
  @identityservice = args[:identityservice] if args.key?(:identityservice)
1843
2021
  @metering = args[:metering] if args.key?(:metering)
1844
2022
  @policycontroller = args[:policycontroller] if args.key?(:policycontroller)
2023
+ @servicemesh = args[:servicemesh] if args.key?(:servicemesh)
1845
2024
  @state = args[:state] if args.key?(:state)
1846
2025
  end
1847
2026
  end
@@ -1898,6 +2077,32 @@ module Google
1898
2077
  end
1899
2078
  end
1900
2079
 
2080
+ # MigrateSpec contains the migrate subfeature configuration.
2081
+ class MigrateSpec
2082
+ include Google::Apis::Core::Hashable
2083
+
2084
+ def initialize(**args)
2085
+ update!(**args)
2086
+ end
2087
+
2088
+ # Update properties of this object
2089
+ def update!(**args)
2090
+ end
2091
+ end
2092
+
2093
+ # MigrateState contains the state of Migrate subfeature
2094
+ class MigrateState
2095
+ include Google::Apis::Core::Hashable
2096
+
2097
+ def initialize(**args)
2098
+ update!(**args)
2099
+ end
2100
+
2101
+ # Update properties of this object
2102
+ def update!(**args)
2103
+ end
2104
+ end
2105
+
1901
2106
  # **Multi-cluster Ingress**: The configuration for the MultiClusterIngress
1902
2107
  # feature.
1903
2108
  class MultiClusterIngressFeatureSpec
@@ -2333,6 +2538,121 @@ module Google
2333
2538
  end
2334
2539
  end
2335
2540
 
2541
+ # Status of control plane management.
2542
+ class ServiceMeshControlPlaneManagement
2543
+ include Google::Apis::Core::Hashable
2544
+
2545
+ # Explanation of state.
2546
+ # Corresponds to the JSON property `details`
2547
+ # @return [Array<Google::Apis::GkehubV1beta::ServiceMeshStatusDetails>]
2548
+ attr_accessor :details
2549
+
2550
+ # LifecycleState of control plane management.
2551
+ # Corresponds to the JSON property `state`
2552
+ # @return [String]
2553
+ attr_accessor :state
2554
+
2555
+ def initialize(**args)
2556
+ update!(**args)
2557
+ end
2558
+
2559
+ # Update properties of this object
2560
+ def update!(**args)
2561
+ @details = args[:details] if args.key?(:details)
2562
+ @state = args[:state] if args.key?(:state)
2563
+ end
2564
+ end
2565
+
2566
+ # **Service Mesh**: Spec for a single Membership for the servicemesh feature
2567
+ class ServiceMeshMembershipSpec
2568
+ include Google::Apis::Core::Hashable
2569
+
2570
+ # Enables automatic control plane management.
2571
+ # Corresponds to the JSON property `controlPlane`
2572
+ # @return [String]
2573
+ attr_accessor :control_plane
2574
+
2575
+ def initialize(**args)
2576
+ update!(**args)
2577
+ end
2578
+
2579
+ # Update properties of this object
2580
+ def update!(**args)
2581
+ @control_plane = args[:control_plane] if args.key?(:control_plane)
2582
+ end
2583
+ end
2584
+
2585
+ # **Service Mesh**: State for a single Membership, as analyzed by the Service
2586
+ # Mesh Hub Controller.
2587
+ class ServiceMeshMembershipState
2588
+ include Google::Apis::Core::Hashable
2589
+
2590
+ # Status of control plane management.
2591
+ # Corresponds to the JSON property `controlPlaneManagement`
2592
+ # @return [Google::Apis::GkehubV1beta::ServiceMeshControlPlaneManagement]
2593
+ attr_accessor :control_plane_management
2594
+
2595
+ def initialize(**args)
2596
+ update!(**args)
2597
+ end
2598
+
2599
+ # Update properties of this object
2600
+ def update!(**args)
2601
+ @control_plane_management = args[:control_plane_management] if args.key?(:control_plane_management)
2602
+ end
2603
+ end
2604
+
2605
+ # ServiceMeshSpec contains the serviceMesh subfeature configuration.
2606
+ class ServiceMeshSpec
2607
+ include Google::Apis::Core::Hashable
2608
+
2609
+ def initialize(**args)
2610
+ update!(**args)
2611
+ end
2612
+
2613
+ # Update properties of this object
2614
+ def update!(**args)
2615
+ end
2616
+ end
2617
+
2618
+ # ServiceMeshState contains the state of Service Mesh subfeature
2619
+ class ServiceMeshState
2620
+ include Google::Apis::Core::Hashable
2621
+
2622
+ def initialize(**args)
2623
+ update!(**args)
2624
+ end
2625
+
2626
+ # Update properties of this object
2627
+ def update!(**args)
2628
+ end
2629
+ end
2630
+
2631
+ # Structured and human-readable details for a status.
2632
+ class ServiceMeshStatusDetails
2633
+ include Google::Apis::Core::Hashable
2634
+
2635
+ # A machine-readable code that further describes a broad status.
2636
+ # Corresponds to the JSON property `code`
2637
+ # @return [String]
2638
+ attr_accessor :code
2639
+
2640
+ # Human-readable explanation of code.
2641
+ # Corresponds to the JSON property `details`
2642
+ # @return [String]
2643
+ attr_accessor :details
2644
+
2645
+ def initialize(**args)
2646
+ update!(**args)
2647
+ end
2648
+
2649
+ # Update properties of this object
2650
+ def update!(**args)
2651
+ @code = args[:code] if args.key?(:code)
2652
+ @details = args[:details] if args.key?(:details)
2653
+ end
2654
+ end
2655
+
2336
2656
  # Request message for `SetIamPolicy` method.
2337
2657
  class SetIamPolicyRequest
2338
2658
  include Google::Apis::Core::Hashable
@@ -2416,7 +2736,7 @@ module Google
2416
2736
  include Google::Apis::Core::Hashable
2417
2737
 
2418
2738
  # The set of permissions to check for the `resource`. Permissions with wildcards
2419
- # (such as '*' or 'storage.*') are not allowed. For more information see [IAM
2739
+ # (such as `*` or `storage.*`) are not allowed. For more information see [IAM
2420
2740
  # Overview](https://cloud.google.com/iam/docs/overview#permissions).
2421
2741
  # Corresponds to the JSON property `permissions`
2422
2742
  # @return [Array<String>]
@@ -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.22.0"
19
+ GEM_VERSION = "0.25.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.4.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220401"
25
+ REVISION = "20220505"
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
 
@@ -304,6 +328,12 @@ module Google
304
328
  include Google::Apis::Core::JsonObjectSupport
305
329
  end
306
330
 
331
+ class LocalControllerState
332
+ class Representation < Google::Apis::Core::JsonRepresentation; end
333
+
334
+ include Google::Apis::Core::JsonObjectSupport
335
+ end
336
+
307
337
  class Location
308
338
  class Representation < Google::Apis::Core::JsonRepresentation; end
309
339
 
@@ -334,6 +364,18 @@ module Google
334
364
  include Google::Apis::Core::JsonObjectSupport
335
365
  end
336
366
 
367
+ class MigrateSpec
368
+ class Representation < Google::Apis::Core::JsonRepresentation; end
369
+
370
+ include Google::Apis::Core::JsonObjectSupport
371
+ end
372
+
373
+ class MigrateState
374
+ class Representation < Google::Apis::Core::JsonRepresentation; end
375
+
376
+ include Google::Apis::Core::JsonObjectSupport
377
+ end
378
+
337
379
  class MultiClusterIngressFeatureSpec
338
380
  class Representation < Google::Apis::Core::JsonRepresentation; end
339
381
 
@@ -394,6 +436,42 @@ module Google
394
436
  include Google::Apis::Core::JsonObjectSupport
395
437
  end
396
438
 
439
+ class ServiceMeshControlPlaneManagement
440
+ class Representation < Google::Apis::Core::JsonRepresentation; end
441
+
442
+ include Google::Apis::Core::JsonObjectSupport
443
+ end
444
+
445
+ class ServiceMeshMembershipSpec
446
+ class Representation < Google::Apis::Core::JsonRepresentation; end
447
+
448
+ include Google::Apis::Core::JsonObjectSupport
449
+ end
450
+
451
+ class ServiceMeshMembershipState
452
+ class Representation < Google::Apis::Core::JsonRepresentation; end
453
+
454
+ include Google::Apis::Core::JsonObjectSupport
455
+ end
456
+
457
+ class ServiceMeshSpec
458
+ class Representation < Google::Apis::Core::JsonRepresentation; end
459
+
460
+ include Google::Apis::Core::JsonObjectSupport
461
+ end
462
+
463
+ class ServiceMeshState
464
+ class Representation < Google::Apis::Core::JsonRepresentation; end
465
+
466
+ include Google::Apis::Core::JsonObjectSupport
467
+ end
468
+
469
+ class ServiceMeshStatusDetails
470
+ class Representation < Google::Apis::Core::JsonRepresentation; end
471
+
472
+ include Google::Apis::Core::JsonObjectSupport
473
+ end
474
+
397
475
  class SetIamPolicyRequest
398
476
  class Representation < Google::Apis::Core::JsonRepresentation; end
399
477
 
@@ -435,6 +513,47 @@ module Google
435
513
  end
436
514
  end
437
515
 
516
+ class AnthosVmMembershipSpec
517
+ # @private
518
+ class Representation < Google::Apis::Core::JsonRepresentation
519
+ collection :subfeatures_spec, as: 'subfeaturesSpec', class: Google::Apis::GkehubV1beta::AnthosVmSubFeatureSpec, decorator: Google::Apis::GkehubV1beta::AnthosVmSubFeatureSpec::Representation
520
+
521
+ end
522
+ end
523
+
524
+ class AnthosVmMembershipState
525
+ # @private
526
+ class Representation < Google::Apis::Core::JsonRepresentation
527
+ property :local_controller_state, as: 'localControllerState', class: Google::Apis::GkehubV1beta::LocalControllerState, decorator: Google::Apis::GkehubV1beta::LocalControllerState::Representation
528
+
529
+ collection :subfeature_state, as: 'subfeatureState', class: Google::Apis::GkehubV1beta::AnthosVmSubFeatureState, decorator: Google::Apis::GkehubV1beta::AnthosVmSubFeatureState::Representation
530
+
531
+ end
532
+ end
533
+
534
+ class AnthosVmSubFeatureSpec
535
+ # @private
536
+ class Representation < Google::Apis::Core::JsonRepresentation
537
+ property :enabled, as: 'enabled'
538
+ property :migrate_spec, as: 'migrateSpec', class: Google::Apis::GkehubV1beta::MigrateSpec, decorator: Google::Apis::GkehubV1beta::MigrateSpec::Representation
539
+
540
+ property :service_mesh_spec, as: 'serviceMeshSpec', class: Google::Apis::GkehubV1beta::ServiceMeshSpec, decorator: Google::Apis::GkehubV1beta::ServiceMeshSpec::Representation
541
+
542
+ end
543
+ end
544
+
545
+ class AnthosVmSubFeatureState
546
+ # @private
547
+ class Representation < Google::Apis::Core::JsonRepresentation
548
+ property :description, as: 'description'
549
+ property :installation_state, as: 'installationState'
550
+ property :migrate_state, as: 'migrateState', class: Google::Apis::GkehubV1beta::MigrateState, decorator: Google::Apis::GkehubV1beta::MigrateState::Representation
551
+
552
+ property :service_mesh_state, as: 'serviceMeshState', class: Google::Apis::GkehubV1beta::ServiceMeshState, decorator: Google::Apis::GkehubV1beta::ServiceMeshState::Representation
553
+
554
+ end
555
+ end
556
+
438
557
  class AppDevExperienceFeatureSpec
439
558
  # @private
440
559
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -894,6 +1013,14 @@ module Google
894
1013
  end
895
1014
  end
896
1015
 
1016
+ class LocalControllerState
1017
+ # @private
1018
+ class Representation < Google::Apis::Core::JsonRepresentation
1019
+ property :description, as: 'description'
1020
+ property :installation_state, as: 'installationState'
1021
+ end
1022
+ end
1023
+
897
1024
  class Location
898
1025
  # @private
899
1026
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -910,12 +1037,16 @@ module Google
910
1037
  class Representation < Google::Apis::Core::JsonRepresentation
911
1038
  property :anthosobservability, as: 'anthosobservability', class: Google::Apis::GkehubV1beta::AnthosObservabilityMembershipSpec, decorator: Google::Apis::GkehubV1beta::AnthosObservabilityMembershipSpec::Representation
912
1039
 
1040
+ property :anthosvm, as: 'anthosvm', class: Google::Apis::GkehubV1beta::AnthosVmMembershipSpec, decorator: Google::Apis::GkehubV1beta::AnthosVmMembershipSpec::Representation
1041
+
913
1042
  property :cloudbuild, as: 'cloudbuild', class: Google::Apis::GkehubV1beta::MembershipSpec, decorator: Google::Apis::GkehubV1beta::MembershipSpec::Representation
914
1043
 
915
1044
  property :configmanagement, as: 'configmanagement', class: Google::Apis::GkehubV1beta::ConfigManagementMembershipSpec, decorator: Google::Apis::GkehubV1beta::ConfigManagementMembershipSpec::Representation
916
1045
 
917
1046
  property :identityservice, as: 'identityservice', class: Google::Apis::GkehubV1beta::IdentityServiceMembershipSpec, decorator: Google::Apis::GkehubV1beta::IdentityServiceMembershipSpec::Representation
918
1047
 
1048
+ property :mesh, as: 'mesh', class: Google::Apis::GkehubV1beta::ServiceMeshMembershipSpec, decorator: Google::Apis::GkehubV1beta::ServiceMeshMembershipSpec::Representation
1049
+
919
1050
  property :policycontroller, as: 'policycontroller', class: Google::Apis::GkehubV1beta::PolicyControllerMembershipSpec, decorator: Google::Apis::GkehubV1beta::PolicyControllerMembershipSpec::Representation
920
1051
 
921
1052
  end
@@ -924,6 +1055,8 @@ module Google
924
1055
  class MembershipFeatureState
925
1056
  # @private
926
1057
  class Representation < Google::Apis::Core::JsonRepresentation
1058
+ property :anthosvm, as: 'anthosvm', class: Google::Apis::GkehubV1beta::AnthosVmMembershipState, decorator: Google::Apis::GkehubV1beta::AnthosVmMembershipState::Representation
1059
+
927
1060
  property :appdevexperience, as: 'appdevexperience', class: Google::Apis::GkehubV1beta::AppDevExperienceFeatureState, decorator: Google::Apis::GkehubV1beta::AppDevExperienceFeatureState::Representation
928
1061
 
929
1062
  property :configmanagement, as: 'configmanagement', class: Google::Apis::GkehubV1beta::ConfigManagementMembershipState, decorator: Google::Apis::GkehubV1beta::ConfigManagementMembershipState::Representation
@@ -934,6 +1067,8 @@ module Google
934
1067
 
935
1068
  property :policycontroller, as: 'policycontroller', class: Google::Apis::GkehubV1beta::PolicyControllerMembershipState, decorator: Google::Apis::GkehubV1beta::PolicyControllerMembershipState::Representation
936
1069
 
1070
+ property :servicemesh, as: 'servicemesh', class: Google::Apis::GkehubV1beta::ServiceMeshMembershipState, decorator: Google::Apis::GkehubV1beta::ServiceMeshMembershipState::Representation
1071
+
937
1072
  property :state, as: 'state', class: Google::Apis::GkehubV1beta::FeatureState, decorator: Google::Apis::GkehubV1beta::FeatureState::Representation
938
1073
 
939
1074
  end
@@ -955,6 +1090,18 @@ module Google
955
1090
  end
956
1091
  end
957
1092
 
1093
+ class MigrateSpec
1094
+ # @private
1095
+ class Representation < Google::Apis::Core::JsonRepresentation
1096
+ end
1097
+ end
1098
+
1099
+ class MigrateState
1100
+ # @private
1101
+ class Representation < Google::Apis::Core::JsonRepresentation
1102
+ end
1103
+ end
1104
+
958
1105
  class MultiClusterIngressFeatureSpec
959
1106
  # @private
960
1107
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1057,6 +1204,50 @@ module Google
1057
1204
  end
1058
1205
  end
1059
1206
 
1207
+ class ServiceMeshControlPlaneManagement
1208
+ # @private
1209
+ class Representation < Google::Apis::Core::JsonRepresentation
1210
+ collection :details, as: 'details', class: Google::Apis::GkehubV1beta::ServiceMeshStatusDetails, decorator: Google::Apis::GkehubV1beta::ServiceMeshStatusDetails::Representation
1211
+
1212
+ property :state, as: 'state'
1213
+ end
1214
+ end
1215
+
1216
+ class ServiceMeshMembershipSpec
1217
+ # @private
1218
+ class Representation < Google::Apis::Core::JsonRepresentation
1219
+ property :control_plane, as: 'controlPlane'
1220
+ end
1221
+ end
1222
+
1223
+ class ServiceMeshMembershipState
1224
+ # @private
1225
+ class Representation < Google::Apis::Core::JsonRepresentation
1226
+ property :control_plane_management, as: 'controlPlaneManagement', class: Google::Apis::GkehubV1beta::ServiceMeshControlPlaneManagement, decorator: Google::Apis::GkehubV1beta::ServiceMeshControlPlaneManagement::Representation
1227
+
1228
+ end
1229
+ end
1230
+
1231
+ class ServiceMeshSpec
1232
+ # @private
1233
+ class Representation < Google::Apis::Core::JsonRepresentation
1234
+ end
1235
+ end
1236
+
1237
+ class ServiceMeshState
1238
+ # @private
1239
+ class Representation < Google::Apis::Core::JsonRepresentation
1240
+ end
1241
+ end
1242
+
1243
+ class ServiceMeshStatusDetails
1244
+ # @private
1245
+ class Representation < Google::Apis::Core::JsonRepresentation
1246
+ property :code, as: 'code'
1247
+ property :details, as: 'details'
1248
+ end
1249
+ end
1250
+
1060
1251
  class SetIamPolicyRequest
1061
1252
  # @private
1062
1253
  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.22.0
4
+ version: 0.25.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-11 00:00:00.000000000 Z
11
+ date: 2022-05-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -58,7 +58,7 @@ licenses:
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
60
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-gkehub_v1beta/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-gkehub_v1beta/v0.22.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-gkehub_v1beta/v0.25.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: []