google-apis-gkehub_v1beta 0.72.0 → 0.74.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: b78e2c620602bf42ceabc6d8f4f11a67b60744c3916f6dc05201ab4bc8e9fc81
4
- data.tar.gz: 12a5ca0656502884de62ebe5cf6a13b3ae5e2690c789e77fbee572e554890c0c
3
+ metadata.gz: 18d84cd9b350fc6a4f534d2cd0e641959831a5ef3d2b3cc937fe57ca27b3f6b4
4
+ data.tar.gz: 34214a73c33fb7a0357843157d5e6b91f60eec42c7e4361c5f8617b36178a0f1
5
5
  SHA512:
6
- metadata.gz: '0842e6bd14c7d60c2fbc7f8878eed803c8953836f36c4edd95b05b901c5c5311680574280dc6a7c00847410665cc7395eed92b1f2d8c0495de0fc82fb9721a3a'
7
- data.tar.gz: 125f704bc885b3be8e979e784903d8ab9b3c2dd1bd9205d10fdf467e2424d8fbc4f3b2d5795b24b708d2c3b5d919ae867929395e2b3fe1043113e01f02064226
6
+ metadata.gz: 52be62a464b99c5c57d7bbefc485fe8b67f4be9c6eb33c174318f6cda622838683ebadfcb6495fb4fd28f512e107d20bed4a9054a543046c7b1a74d95ccc58e2
7
+ data.tar.gz: 964e448e6f284ea16b73d78ac5ee6e15258dcc60c8374e30982cd41f7151c6d3ddd462332f37d9c44f2857e952d56fe8fc6e57a07ee7de9af387e1979d294aee
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-gkehub_v1beta
2
2
 
3
+ ### v0.74.0 (2024-04-21)
4
+
5
+ * Regenerated from discovery document revision 20240412
6
+
7
+ ### v0.73.0 (2024-03-31)
8
+
9
+ * Regenerated from discovery document revision 20240322
10
+
3
11
  ### v0.72.0 (2024-03-24)
4
12
 
5
13
  * Regenerated from discovery document revision 20240318
@@ -5503,6 +5503,44 @@ module Google
5503
5503
  end
5504
5504
  end
5505
5505
 
5506
+ # Condition being reported.
5507
+ class ServiceMeshCondition
5508
+ include Google::Apis::Core::Hashable
5509
+
5510
+ # Unique identifier of the condition which describes the condition recognizable
5511
+ # to the user.
5512
+ # Corresponds to the JSON property `code`
5513
+ # @return [String]
5514
+ attr_accessor :code
5515
+
5516
+ # A short summary about the issue.
5517
+ # Corresponds to the JSON property `details`
5518
+ # @return [String]
5519
+ attr_accessor :details
5520
+
5521
+ # Links contains actionable information.
5522
+ # Corresponds to the JSON property `documentationLink`
5523
+ # @return [String]
5524
+ attr_accessor :documentation_link
5525
+
5526
+ # Severity level of the condition.
5527
+ # Corresponds to the JSON property `severity`
5528
+ # @return [String]
5529
+ attr_accessor :severity
5530
+
5531
+ def initialize(**args)
5532
+ update!(**args)
5533
+ end
5534
+
5535
+ # Update properties of this object
5536
+ def update!(**args)
5537
+ @code = args[:code] if args.key?(:code)
5538
+ @details = args[:details] if args.key?(:details)
5539
+ @documentation_link = args[:documentation_link] if args.key?(:documentation_link)
5540
+ @severity = args[:severity] if args.key?(:severity)
5541
+ end
5542
+ end
5543
+
5506
5544
  # Status of control plane management.
5507
5545
  class ServiceMeshControlPlaneManagement
5508
5546
  include Google::Apis::Core::Hashable
@@ -5584,6 +5622,11 @@ module Google
5584
5622
  class ServiceMeshMembershipState
5585
5623
  include Google::Apis::Core::Hashable
5586
5624
 
5625
+ # Output only. List of conditions reported for this membership.
5626
+ # Corresponds to the JSON property `conditions`
5627
+ # @return [Array<Google::Apis::GkehubV1beta::ServiceMeshCondition>]
5628
+ attr_accessor :conditions
5629
+
5587
5630
  # Status of control plane management.
5588
5631
  # Corresponds to the JSON property `controlPlaneManagement`
5589
5632
  # @return [Google::Apis::GkehubV1beta::ServiceMeshControlPlaneManagement]
@@ -5600,6 +5643,7 @@ module Google
5600
5643
 
5601
5644
  # Update properties of this object
5602
5645
  def update!(**args)
5646
+ @conditions = args[:conditions] if args.key?(:conditions)
5603
5647
  @control_plane_management = args[:control_plane_management] if args.key?(:control_plane_management)
5604
5648
  @data_plane_management = args[:data_plane_management] if args.key?(:data_plane_management)
5605
5649
  end
@@ -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.72.0"
19
+ GEM_VERSION = "0.74.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.14.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240318"
25
+ REVISION = "20240412"
26
26
  end
27
27
  end
28
28
  end
@@ -922,6 +922,12 @@ module Google
922
922
  include Google::Apis::Core::JsonObjectSupport
923
923
  end
924
924
 
925
+ class ServiceMeshCondition
926
+ class Representation < Google::Apis::Core::JsonRepresentation; end
927
+
928
+ include Google::Apis::Core::JsonObjectSupport
929
+ end
930
+
925
931
  class ServiceMeshControlPlaneManagement
926
932
  class Representation < Google::Apis::Core::JsonRepresentation; end
927
933
 
@@ -2533,6 +2539,16 @@ module Google
2533
2539
  end
2534
2540
  end
2535
2541
 
2542
+ class ServiceMeshCondition
2543
+ # @private
2544
+ class Representation < Google::Apis::Core::JsonRepresentation
2545
+ property :code, as: 'code'
2546
+ property :details, as: 'details'
2547
+ property :documentation_link, as: 'documentationLink'
2548
+ property :severity, as: 'severity'
2549
+ end
2550
+ end
2551
+
2536
2552
  class ServiceMeshControlPlaneManagement
2537
2553
  # @private
2538
2554
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2562,6 +2578,8 @@ module Google
2562
2578
  class ServiceMeshMembershipState
2563
2579
  # @private
2564
2580
  class Representation < Google::Apis::Core::JsonRepresentation
2581
+ collection :conditions, as: 'conditions', class: Google::Apis::GkehubV1beta::ServiceMeshCondition, decorator: Google::Apis::GkehubV1beta::ServiceMeshCondition::Representation
2582
+
2565
2583
  property :control_plane_management, as: 'controlPlaneManagement', class: Google::Apis::GkehubV1beta::ServiceMeshControlPlaneManagement, decorator: Google::Apis::GkehubV1beta::ServiceMeshControlPlaneManagement::Representation
2566
2584
 
2567
2585
  property :data_plane_management, as: 'dataPlaneManagement', class: Google::Apis::GkehubV1beta::ServiceMeshDataPlaneManagement, decorator: Google::Apis::GkehubV1beta::ServiceMeshDataPlaneManagement::Representation
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.72.0
4
+ version: 0.74.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: 2024-03-24 00:00:00.000000000 Z
11
+ date: 2024-04-21 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.72.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-gkehub_v1beta/v0.74.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: []