google-apis-gkehub_v1beta 0.22.0 → 0.23.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: '051289223e3a56b1f480acc9ddf6c0776be151a3b9c672fcfbbb99c74618d447'
4
- data.tar.gz: 21ccc091250e70ce9dad39b9c84b4dfdeed6246b93c32c1825c1c14f28bd581e
3
+ metadata.gz: 867d866d01ce3536d027825a39b936a4be31ca454caca184a433aae04e5530d6
4
+ data.tar.gz: ec54524bd8891a63ac63db22abad575353ff4e5f8276ca0722107fb90abb1056
5
5
  SHA512:
6
- metadata.gz: 725c0def344ad668acb80f46bc4027b098d6506bfff14cbe7bddac430a18fa59f9e260d74722d305471ccbdce71b01cb99e2faabf089939c29c12b67591f7840
7
- data.tar.gz: 78a99a59a488fcf69a6ae20303e5bc1d300eb6531a380e009b6b4dcc617dc9d0f3148ff7dea3730769b3aa610da9ea33405357328ad4d68d6500d825c60a1ca3
6
+ metadata.gz: 73f047013760b9c550a96ff6239e06de04ba9839760ad34afe4ebab98390e798f6bdd0f55f116b4fc3ee84f86f7b4c28e57873b78c09a0048372df21a2e13ad9
7
+ data.tar.gz: d52278061bb4dfed99a5050a679fde8d07f8344cf606779d705e88abd60d3fbb9e61423e862a865ecd60bf5e81eb5cb9d3e9946d555f1208f465380aefabe81f
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-gkehub_v1beta
2
2
 
3
+ ### v0.23.0 (2022-04-16)
4
+
5
+ * Regenerated from discovery document revision 20220408
6
+
3
7
  ### v0.22.0 (2022-04-09)
4
8
 
5
9
  * Regenerated from discovery document revision 20220401
@@ -203,7 +203,7 @@ module Google
203
203
  # @return [Google::Apis::GkehubV1beta::Expr]
204
204
  attr_accessor :condition
205
205
 
206
- # Specifies the principals requesting access for a Cloud Platform resource. `
206
+ # Specifies the principals requesting access for a Google Cloud resource. `
207
207
  # members` can have the following values: * `allUsers`: A special identifier
208
208
  # that represents anyone who is on the internet; with or without a Google
209
209
  # account. * `allAuthenticatedUsers`: A special identifier that represents
@@ -1774,6 +1774,11 @@ module Google
1774
1774
  # @return [Google::Apis::GkehubV1beta::IdentityServiceMembershipSpec]
1775
1775
  attr_accessor :identityservice
1776
1776
 
1777
+ # **Service Mesh**: Spec for a single Membership for the servicemesh feature
1778
+ # Corresponds to the JSON property `mesh`
1779
+ # @return [Google::Apis::GkehubV1beta::ServiceMeshMembershipSpec]
1780
+ attr_accessor :mesh
1781
+
1777
1782
  # **Policy Controller**: Configuration for a single cluster. Intended to
1778
1783
  # parallel the PolicyController CR.
1779
1784
  # Corresponds to the JSON property `policycontroller`
@@ -1790,6 +1795,7 @@ module Google
1790
1795
  @cloudbuild = args[:cloudbuild] if args.key?(:cloudbuild)
1791
1796
  @configmanagement = args[:configmanagement] if args.key?(:configmanagement)
1792
1797
  @identityservice = args[:identityservice] if args.key?(:identityservice)
1798
+ @mesh = args[:mesh] if args.key?(:mesh)
1793
1799
  @policycontroller = args[:policycontroller] if args.key?(:policycontroller)
1794
1800
  end
1795
1801
  end
@@ -1824,6 +1830,12 @@ module Google
1824
1830
  # @return [Google::Apis::GkehubV1beta::PolicyControllerMembershipState]
1825
1831
  attr_accessor :policycontroller
1826
1832
 
1833
+ # **Service Mesh**: State for a single Membership, as analyzed by the Service
1834
+ # Mesh Hub Controller.
1835
+ # Corresponds to the JSON property `servicemesh`
1836
+ # @return [Google::Apis::GkehubV1beta::ServiceMeshMembershipState]
1837
+ attr_accessor :servicemesh
1838
+
1827
1839
  # FeatureState describes the high-level state of a Feature. It may be used to
1828
1840
  # describe a Feature's state at the environ-level, or per-membershop, depending
1829
1841
  # on the context.
@@ -1842,6 +1854,7 @@ module Google
1842
1854
  @identityservice = args[:identityservice] if args.key?(:identityservice)
1843
1855
  @metering = args[:metering] if args.key?(:metering)
1844
1856
  @policycontroller = args[:policycontroller] if args.key?(:policycontroller)
1857
+ @servicemesh = args[:servicemesh] if args.key?(:servicemesh)
1845
1858
  @state = args[:state] if args.key?(:state)
1846
1859
  end
1847
1860
  end
@@ -2333,6 +2346,95 @@ module Google
2333
2346
  end
2334
2347
  end
2335
2348
 
2349
+ # Status of control plane management.
2350
+ class ServiceMeshControlPlaneManagement
2351
+ include Google::Apis::Core::Hashable
2352
+
2353
+ # Explanation of state.
2354
+ # Corresponds to the JSON property `details`
2355
+ # @return [Array<Google::Apis::GkehubV1beta::ServiceMeshStatusDetails>]
2356
+ attr_accessor :details
2357
+
2358
+ # LifecycleState of control plane management.
2359
+ # Corresponds to the JSON property `state`
2360
+ # @return [String]
2361
+ attr_accessor :state
2362
+
2363
+ def initialize(**args)
2364
+ update!(**args)
2365
+ end
2366
+
2367
+ # Update properties of this object
2368
+ def update!(**args)
2369
+ @details = args[:details] if args.key?(:details)
2370
+ @state = args[:state] if args.key?(:state)
2371
+ end
2372
+ end
2373
+
2374
+ # **Service Mesh**: Spec for a single Membership for the servicemesh feature
2375
+ class ServiceMeshMembershipSpec
2376
+ include Google::Apis::Core::Hashable
2377
+
2378
+ # Enables automatic control plane management.
2379
+ # Corresponds to the JSON property `controlPlane`
2380
+ # @return [String]
2381
+ attr_accessor :control_plane
2382
+
2383
+ def initialize(**args)
2384
+ update!(**args)
2385
+ end
2386
+
2387
+ # Update properties of this object
2388
+ def update!(**args)
2389
+ @control_plane = args[:control_plane] if args.key?(:control_plane)
2390
+ end
2391
+ end
2392
+
2393
+ # **Service Mesh**: State for a single Membership, as analyzed by the Service
2394
+ # Mesh Hub Controller.
2395
+ class ServiceMeshMembershipState
2396
+ include Google::Apis::Core::Hashable
2397
+
2398
+ # Status of control plane management.
2399
+ # Corresponds to the JSON property `controlPlaneManagement`
2400
+ # @return [Google::Apis::GkehubV1beta::ServiceMeshControlPlaneManagement]
2401
+ attr_accessor :control_plane_management
2402
+
2403
+ def initialize(**args)
2404
+ update!(**args)
2405
+ end
2406
+
2407
+ # Update properties of this object
2408
+ def update!(**args)
2409
+ @control_plane_management = args[:control_plane_management] if args.key?(:control_plane_management)
2410
+ end
2411
+ end
2412
+
2413
+ # Structured and human-readable details for a status.
2414
+ class ServiceMeshStatusDetails
2415
+ include Google::Apis::Core::Hashable
2416
+
2417
+ # A machine-readable code that further describes a broad status.
2418
+ # Corresponds to the JSON property `code`
2419
+ # @return [String]
2420
+ attr_accessor :code
2421
+
2422
+ # Human-readable explanation of code.
2423
+ # Corresponds to the JSON property `details`
2424
+ # @return [String]
2425
+ attr_accessor :details
2426
+
2427
+ def initialize(**args)
2428
+ update!(**args)
2429
+ end
2430
+
2431
+ # Update properties of this object
2432
+ def update!(**args)
2433
+ @code = args[:code] if args.key?(:code)
2434
+ @details = args[:details] if args.key?(:details)
2435
+ end
2436
+ end
2437
+
2336
2438
  # Request message for `SetIamPolicy` method.
2337
2439
  class SetIamPolicyRequest
2338
2440
  include Google::Apis::Core::Hashable
@@ -2416,7 +2518,7 @@ module Google
2416
2518
  include Google::Apis::Core::Hashable
2417
2519
 
2418
2520
  # 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
2521
+ # (such as `*` or `storage.*`) are not allowed. For more information see [IAM
2420
2522
  # Overview](https://cloud.google.com/iam/docs/overview#permissions).
2421
2523
  # Corresponds to the JSON property `permissions`
2422
2524
  # @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.23.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
@@ -394,6 +394,30 @@ module Google
394
394
  include Google::Apis::Core::JsonObjectSupport
395
395
  end
396
396
 
397
+ class ServiceMeshControlPlaneManagement
398
+ class Representation < Google::Apis::Core::JsonRepresentation; end
399
+
400
+ include Google::Apis::Core::JsonObjectSupport
401
+ end
402
+
403
+ class ServiceMeshMembershipSpec
404
+ class Representation < Google::Apis::Core::JsonRepresentation; end
405
+
406
+ include Google::Apis::Core::JsonObjectSupport
407
+ end
408
+
409
+ class ServiceMeshMembershipState
410
+ class Representation < Google::Apis::Core::JsonRepresentation; end
411
+
412
+ include Google::Apis::Core::JsonObjectSupport
413
+ end
414
+
415
+ class ServiceMeshStatusDetails
416
+ class Representation < Google::Apis::Core::JsonRepresentation; end
417
+
418
+ include Google::Apis::Core::JsonObjectSupport
419
+ end
420
+
397
421
  class SetIamPolicyRequest
398
422
  class Representation < Google::Apis::Core::JsonRepresentation; end
399
423
 
@@ -916,6 +940,8 @@ module Google
916
940
 
917
941
  property :identityservice, as: 'identityservice', class: Google::Apis::GkehubV1beta::IdentityServiceMembershipSpec, decorator: Google::Apis::GkehubV1beta::IdentityServiceMembershipSpec::Representation
918
942
 
943
+ property :mesh, as: 'mesh', class: Google::Apis::GkehubV1beta::ServiceMeshMembershipSpec, decorator: Google::Apis::GkehubV1beta::ServiceMeshMembershipSpec::Representation
944
+
919
945
  property :policycontroller, as: 'policycontroller', class: Google::Apis::GkehubV1beta::PolicyControllerMembershipSpec, decorator: Google::Apis::GkehubV1beta::PolicyControllerMembershipSpec::Representation
920
946
 
921
947
  end
@@ -934,6 +960,8 @@ module Google
934
960
 
935
961
  property :policycontroller, as: 'policycontroller', class: Google::Apis::GkehubV1beta::PolicyControllerMembershipState, decorator: Google::Apis::GkehubV1beta::PolicyControllerMembershipState::Representation
936
962
 
963
+ property :servicemesh, as: 'servicemesh', class: Google::Apis::GkehubV1beta::ServiceMeshMembershipState, decorator: Google::Apis::GkehubV1beta::ServiceMeshMembershipState::Representation
964
+
937
965
  property :state, as: 'state', class: Google::Apis::GkehubV1beta::FeatureState, decorator: Google::Apis::GkehubV1beta::FeatureState::Representation
938
966
 
939
967
  end
@@ -1057,6 +1085,38 @@ module Google
1057
1085
  end
1058
1086
  end
1059
1087
 
1088
+ class ServiceMeshControlPlaneManagement
1089
+ # @private
1090
+ class Representation < Google::Apis::Core::JsonRepresentation
1091
+ collection :details, as: 'details', class: Google::Apis::GkehubV1beta::ServiceMeshStatusDetails, decorator: Google::Apis::GkehubV1beta::ServiceMeshStatusDetails::Representation
1092
+
1093
+ property :state, as: 'state'
1094
+ end
1095
+ end
1096
+
1097
+ class ServiceMeshMembershipSpec
1098
+ # @private
1099
+ class Representation < Google::Apis::Core::JsonRepresentation
1100
+ property :control_plane, as: 'controlPlane'
1101
+ end
1102
+ end
1103
+
1104
+ class ServiceMeshMembershipState
1105
+ # @private
1106
+ class Representation < Google::Apis::Core::JsonRepresentation
1107
+ property :control_plane_management, as: 'controlPlaneManagement', class: Google::Apis::GkehubV1beta::ServiceMeshControlPlaneManagement, decorator: Google::Apis::GkehubV1beta::ServiceMeshControlPlaneManagement::Representation
1108
+
1109
+ end
1110
+ end
1111
+
1112
+ class ServiceMeshStatusDetails
1113
+ # @private
1114
+ class Representation < Google::Apis::Core::JsonRepresentation
1115
+ property :code, as: 'code'
1116
+ property :details, as: 'details'
1117
+ end
1118
+ end
1119
+
1060
1120
  class SetIamPolicyRequest
1061
1121
  # @private
1062
1122
  class Representation < Google::Apis::Core::JsonRepresentation
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.23.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_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.23.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: []