google-apis-gkehub_v1 0.23.0 → 0.24.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: c2e1dd871a404634c78670444c9360bc70bc367b454bb85526fdd22ddd0a490d
4
- data.tar.gz: b63a1a161da6c87e23de53f8a754530f0fe34475e1a4ce0fc62af6ccf55c2078
3
+ metadata.gz: df9e290ef1e20352201ea040cb4ce96137849039c69158832356ef43192c57fb
4
+ data.tar.gz: 848190fef3d3bff51e304f4e5e1420b5efacbbbca93943abd500caeae1ef6d4e
5
5
  SHA512:
6
- metadata.gz: bd9e444a8284d09cfcd14f08c306ee5f7da332d14046d5541c8e0b9241027bc7730c854d0da587020bc12be218aeb68e7737d144fe0e6b2d2af460fbd70f1726
7
- data.tar.gz: 914bec96e80336e4478d1a0797f5207553c6757b6f2cef26b73fdfa5b9f9cd350a2e139c7c8e8b4d333b8d564e952fd13a9fb5354d97d5cbdca006df9de64498
6
+ metadata.gz: a589fbfbc587a59d72482d6c060bf37f106b4279533b0c693d66d2fa99f5f350562c3e8f51e3427f042e260e190f9f095176fa8fd06f01ec4ec3bfc8561e490e
7
+ data.tar.gz: a40b2dae13198da3f12c8eeb405bb49b453e601ffcb1cc4ce09c105912b4b69865d3acd505504d5c1a37c2fe28029186d29f380a95dd22fafb3f52ab4f2d4193
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-gkehub_v1
2
2
 
3
+ ### v0.24.0 (2022-04-16)
4
+
5
+ * Regenerated from discovery document revision 20220408
6
+
3
7
  ### v0.23.0 (2022-04-09)
4
8
 
5
9
  * Regenerated from discovery document revision 20220401
@@ -202,7 +202,7 @@ module Google
202
202
  # @return [Google::Apis::GkehubV1::Expr]
203
203
  attr_accessor :condition
204
204
 
205
- # Specifies the principals requesting access for a Cloud Platform resource. `
205
+ # Specifies the principals requesting access for a Google Cloud resource. `
206
206
  # members` can have the following values: * `allUsers`: A special identifier
207
207
  # that represents anyone who is on the internet; with or without a Google
208
208
  # account. * `allAuthenticatedUsers`: A special identifier that represents
@@ -1889,6 +1889,11 @@ module Google
1889
1889
  # @return [Google::Apis::GkehubV1::ConfigManagementMembershipSpec]
1890
1890
  attr_accessor :configmanagement
1891
1891
 
1892
+ # **Service Mesh**: Spec for a single Membership for the servicemesh feature
1893
+ # Corresponds to the JSON property `mesh`
1894
+ # @return [Google::Apis::GkehubV1::ServiceMeshMembershipSpec]
1895
+ attr_accessor :mesh
1896
+
1892
1897
  def initialize(**args)
1893
1898
  update!(**args)
1894
1899
  end
@@ -1896,6 +1901,7 @@ module Google
1896
1901
  # Update properties of this object
1897
1902
  def update!(**args)
1898
1903
  @configmanagement = args[:configmanagement] if args.key?(:configmanagement)
1904
+ @mesh = args[:mesh] if args.key?(:mesh)
1899
1905
  end
1900
1906
  end
1901
1907
 
@@ -1914,6 +1920,12 @@ module Google
1914
1920
  # @return [Google::Apis::GkehubV1::ConfigManagementMembershipState]
1915
1921
  attr_accessor :configmanagement
1916
1922
 
1923
+ # **Service Mesh**: State for a single Membership, as analyzed by the Service
1924
+ # Mesh Hub Controller.
1925
+ # Corresponds to the JSON property `servicemesh`
1926
+ # @return [Google::Apis::GkehubV1::ServiceMeshMembershipState]
1927
+ attr_accessor :servicemesh
1928
+
1917
1929
  # FeatureState describes the high-level state of a Feature. It may be used to
1918
1930
  # describe a Feature's state at the environ-level, or per-membershop, depending
1919
1931
  # on the context.
@@ -1929,6 +1941,7 @@ module Google
1929
1941
  def update!(**args)
1930
1942
  @appdevexperience = args[:appdevexperience] if args.key?(:appdevexperience)
1931
1943
  @configmanagement = args[:configmanagement] if args.key?(:configmanagement)
1944
+ @servicemesh = args[:servicemesh] if args.key?(:servicemesh)
1932
1945
  @state = args[:state] if args.key?(:state)
1933
1946
  end
1934
1947
  end
@@ -2323,6 +2336,95 @@ module Google
2323
2336
  end
2324
2337
  end
2325
2338
 
2339
+ # Status of control plane management.
2340
+ class ServiceMeshControlPlaneManagement
2341
+ include Google::Apis::Core::Hashable
2342
+
2343
+ # Explanation of state.
2344
+ # Corresponds to the JSON property `details`
2345
+ # @return [Array<Google::Apis::GkehubV1::ServiceMeshStatusDetails>]
2346
+ attr_accessor :details
2347
+
2348
+ # LifecycleState of control plane management.
2349
+ # Corresponds to the JSON property `state`
2350
+ # @return [String]
2351
+ attr_accessor :state
2352
+
2353
+ def initialize(**args)
2354
+ update!(**args)
2355
+ end
2356
+
2357
+ # Update properties of this object
2358
+ def update!(**args)
2359
+ @details = args[:details] if args.key?(:details)
2360
+ @state = args[:state] if args.key?(:state)
2361
+ end
2362
+ end
2363
+
2364
+ # **Service Mesh**: Spec for a single Membership for the servicemesh feature
2365
+ class ServiceMeshMembershipSpec
2366
+ include Google::Apis::Core::Hashable
2367
+
2368
+ # Enables automatic control plane management.
2369
+ # Corresponds to the JSON property `controlPlane`
2370
+ # @return [String]
2371
+ attr_accessor :control_plane
2372
+
2373
+ def initialize(**args)
2374
+ update!(**args)
2375
+ end
2376
+
2377
+ # Update properties of this object
2378
+ def update!(**args)
2379
+ @control_plane = args[:control_plane] if args.key?(:control_plane)
2380
+ end
2381
+ end
2382
+
2383
+ # **Service Mesh**: State for a single Membership, as analyzed by the Service
2384
+ # Mesh Hub Controller.
2385
+ class ServiceMeshMembershipState
2386
+ include Google::Apis::Core::Hashable
2387
+
2388
+ # Status of control plane management.
2389
+ # Corresponds to the JSON property `controlPlaneManagement`
2390
+ # @return [Google::Apis::GkehubV1::ServiceMeshControlPlaneManagement]
2391
+ attr_accessor :control_plane_management
2392
+
2393
+ def initialize(**args)
2394
+ update!(**args)
2395
+ end
2396
+
2397
+ # Update properties of this object
2398
+ def update!(**args)
2399
+ @control_plane_management = args[:control_plane_management] if args.key?(:control_plane_management)
2400
+ end
2401
+ end
2402
+
2403
+ # Structured and human-readable details for a status.
2404
+ class ServiceMeshStatusDetails
2405
+ include Google::Apis::Core::Hashable
2406
+
2407
+ # A machine-readable code that further describes a broad status.
2408
+ # Corresponds to the JSON property `code`
2409
+ # @return [String]
2410
+ attr_accessor :code
2411
+
2412
+ # Human-readable explanation of code.
2413
+ # Corresponds to the JSON property `details`
2414
+ # @return [String]
2415
+ attr_accessor :details
2416
+
2417
+ def initialize(**args)
2418
+ update!(**args)
2419
+ end
2420
+
2421
+ # Update properties of this object
2422
+ def update!(**args)
2423
+ @code = args[:code] if args.key?(:code)
2424
+ @details = args[:details] if args.key?(:details)
2425
+ end
2426
+ end
2427
+
2326
2428
  # Request message for `SetIamPolicy` method.
2327
2429
  class SetIamPolicyRequest
2328
2430
  include Google::Apis::Core::Hashable
@@ -2406,7 +2508,7 @@ module Google
2406
2508
  include Google::Apis::Core::Hashable
2407
2509
 
2408
2510
  # The set of permissions to check for the `resource`. Permissions with wildcards
2409
- # (such as '*' or 'storage.*') are not allowed. For more information see [IAM
2511
+ # (such as `*` or `storage.*`) are not allowed. For more information see [IAM
2410
2512
  # Overview](https://cloud.google.com/iam/docs/overview#permissions).
2411
2513
  # Corresponds to the JSON property `permissions`
2412
2514
  # @return [Array<String>]
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module GkehubV1
18
18
  # Version of the google-apis-gkehub_v1 gem
19
- GEM_VERSION = "0.23.0"
19
+ GEM_VERSION = "0.24.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 = "20220408"
26
26
  end
27
27
  end
28
28
  end
@@ -382,6 +382,30 @@ module Google
382
382
  include Google::Apis::Core::JsonObjectSupport
383
383
  end
384
384
 
385
+ class ServiceMeshControlPlaneManagement
386
+ class Representation < Google::Apis::Core::JsonRepresentation; end
387
+
388
+ include Google::Apis::Core::JsonObjectSupport
389
+ end
390
+
391
+ class ServiceMeshMembershipSpec
392
+ class Representation < Google::Apis::Core::JsonRepresentation; end
393
+
394
+ include Google::Apis::Core::JsonObjectSupport
395
+ end
396
+
397
+ class ServiceMeshMembershipState
398
+ class Representation < Google::Apis::Core::JsonRepresentation; end
399
+
400
+ include Google::Apis::Core::JsonObjectSupport
401
+ end
402
+
403
+ class ServiceMeshStatusDetails
404
+ class Representation < Google::Apis::Core::JsonRepresentation; end
405
+
406
+ include Google::Apis::Core::JsonObjectSupport
407
+ end
408
+
385
409
  class SetIamPolicyRequest
386
410
  class Representation < Google::Apis::Core::JsonRepresentation; end
387
411
 
@@ -926,6 +950,8 @@ module Google
926
950
  class Representation < Google::Apis::Core::JsonRepresentation
927
951
  property :configmanagement, as: 'configmanagement', class: Google::Apis::GkehubV1::ConfigManagementMembershipSpec, decorator: Google::Apis::GkehubV1::ConfigManagementMembershipSpec::Representation
928
952
 
953
+ property :mesh, as: 'mesh', class: Google::Apis::GkehubV1::ServiceMeshMembershipSpec, decorator: Google::Apis::GkehubV1::ServiceMeshMembershipSpec::Representation
954
+
929
955
  end
930
956
  end
931
957
 
@@ -936,6 +962,8 @@ module Google
936
962
 
937
963
  property :configmanagement, as: 'configmanagement', class: Google::Apis::GkehubV1::ConfigManagementMembershipState, decorator: Google::Apis::GkehubV1::ConfigManagementMembershipState::Representation
938
964
 
965
+ property :servicemesh, as: 'servicemesh', class: Google::Apis::GkehubV1::ServiceMeshMembershipState, decorator: Google::Apis::GkehubV1::ServiceMeshMembershipState::Representation
966
+
939
967
  property :state, as: 'state', class: Google::Apis::GkehubV1::FeatureState, decorator: Google::Apis::GkehubV1::FeatureState::Representation
940
968
 
941
969
  end
@@ -1026,6 +1054,38 @@ module Google
1026
1054
  end
1027
1055
  end
1028
1056
 
1057
+ class ServiceMeshControlPlaneManagement
1058
+ # @private
1059
+ class Representation < Google::Apis::Core::JsonRepresentation
1060
+ collection :details, as: 'details', class: Google::Apis::GkehubV1::ServiceMeshStatusDetails, decorator: Google::Apis::GkehubV1::ServiceMeshStatusDetails::Representation
1061
+
1062
+ property :state, as: 'state'
1063
+ end
1064
+ end
1065
+
1066
+ class ServiceMeshMembershipSpec
1067
+ # @private
1068
+ class Representation < Google::Apis::Core::JsonRepresentation
1069
+ property :control_plane, as: 'controlPlane'
1070
+ end
1071
+ end
1072
+
1073
+ class ServiceMeshMembershipState
1074
+ # @private
1075
+ class Representation < Google::Apis::Core::JsonRepresentation
1076
+ property :control_plane_management, as: 'controlPlaneManagement', class: Google::Apis::GkehubV1::ServiceMeshControlPlaneManagement, decorator: Google::Apis::GkehubV1::ServiceMeshControlPlaneManagement::Representation
1077
+
1078
+ end
1079
+ end
1080
+
1081
+ class ServiceMeshStatusDetails
1082
+ # @private
1083
+ class Representation < Google::Apis::Core::JsonRepresentation
1084
+ property :code, as: 'code'
1085
+ property :details, as: 'details'
1086
+ end
1087
+ end
1088
+
1029
1089
  class SetIamPolicyRequest
1030
1090
  # @private
1031
1091
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-gkehub_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.23.0
4
+ version: 0.24.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-04-18 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_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-gkehub_v1/v0.23.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-gkehub_v1/v0.24.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-gkehub_v1
63
63
  post_install_message:
64
64
  rdoc_options: []