google-apis-gkehub_v1alpha 0.78.0 → 0.79.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: d030efad1314a3abab865ff9bd3cee0a080560535a441cc425d73592ed7e9920
4
- data.tar.gz: 57661f79dda5da7f53a820294b0b1cef0b964029a2edb9eaac85f04a9104bd38
3
+ metadata.gz: bfe06e0bea5404a40ef3259cbf230e59f79b3b8aaa73223d560f8e0e0ec4d553
4
+ data.tar.gz: 44816dd5041b14f8494653840ce77b5a16f18fed70a4564a845dc147c60841f8
5
5
  SHA512:
6
- metadata.gz: a27371604216d0d24a5226b28e6cd2fb9b9118340326a18a519e143f730fe9c0b2ca2e8d04873172ddc46641ef9936dc100957298c6525785a4f6aea2289d6ab
7
- data.tar.gz: 95184e8d50b46caf89e757d56433f9c5c9cabba112e45baec69aed449aeea3e0bf8bd1b466e0e281eb0b4d0df061512461e84c802bbeaf820da3b51717dae85c
6
+ metadata.gz: d3d95f33544f5a79e531f547afee50932f69354632118883f1c41833b21eb491f224b1d2361d44591edc2a26775837818e5456cffac3cc48f0c7af1f75a23c1d
7
+ data.tar.gz: ec1d5850d2202708245aaa2257be9eca61e82967e7dd5bc8a3c8ab8a83b14115a6fed3cc78b464ece63a0ec1991ee4560fae23b629827beaab47192795f9ce7d
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-gkehub_v1alpha
2
2
 
3
+ ### v0.79.0 (2024-03-31)
4
+
5
+ * Regenerated from discovery document revision 20240322
6
+
3
7
  ### v0.78.0 (2024-03-24)
4
8
 
5
9
  * Regenerated from discovery document revision 20240318
@@ -5898,6 +5898,44 @@ module Google
5898
5898
  end
5899
5899
  end
5900
5900
 
5901
+ # Condition being reported.
5902
+ class ServiceMeshCondition
5903
+ include Google::Apis::Core::Hashable
5904
+
5905
+ # Unique identifier of the condition which describes the condition recognizable
5906
+ # to the user.
5907
+ # Corresponds to the JSON property `code`
5908
+ # @return [String]
5909
+ attr_accessor :code
5910
+
5911
+ # A short summary about the issue.
5912
+ # Corresponds to the JSON property `details`
5913
+ # @return [String]
5914
+ attr_accessor :details
5915
+
5916
+ # Links contains actionable information.
5917
+ # Corresponds to the JSON property `documentationLink`
5918
+ # @return [String]
5919
+ attr_accessor :documentation_link
5920
+
5921
+ # Severity level of the condition.
5922
+ # Corresponds to the JSON property `severity`
5923
+ # @return [String]
5924
+ attr_accessor :severity
5925
+
5926
+ def initialize(**args)
5927
+ update!(**args)
5928
+ end
5929
+
5930
+ # Update properties of this object
5931
+ def update!(**args)
5932
+ @code = args[:code] if args.key?(:code)
5933
+ @details = args[:details] if args.key?(:details)
5934
+ @documentation_link = args[:documentation_link] if args.key?(:documentation_link)
5935
+ @severity = args[:severity] if args.key?(:severity)
5936
+ end
5937
+ end
5938
+
5901
5939
  # Status of control plane management.
5902
5940
  class ServiceMeshControlPlaneManagement
5903
5941
  include Google::Apis::Core::Hashable
@@ -5907,6 +5945,11 @@ module Google
5907
5945
  # @return [Array<Google::Apis::GkehubV1alpha::ServiceMeshStatusDetails>]
5908
5946
  attr_accessor :details
5909
5947
 
5948
+ # Output only. Implementation of managed control plane.
5949
+ # Corresponds to the JSON property `implementation`
5950
+ # @return [String]
5951
+ attr_accessor :implementation
5952
+
5910
5953
  # LifecycleState of control plane management.
5911
5954
  # Corresponds to the JSON property `state`
5912
5955
  # @return [String]
@@ -5919,6 +5962,7 @@ module Google
5919
5962
  # Update properties of this object
5920
5963
  def update!(**args)
5921
5964
  @details = args[:details] if args.key?(:details)
5965
+ @implementation = args[:implementation] if args.key?(:implementation)
5922
5966
  @state = args[:state] if args.key?(:state)
5923
5967
  end
5924
5968
  end
@@ -6011,6 +6055,11 @@ module Google
6011
6055
  # @return [Array<Google::Apis::GkehubV1alpha::ServiceMeshAnalysisMessage>]
6012
6056
  attr_accessor :analysis_messages
6013
6057
 
6058
+ # Output only. List of condition reporting membership statues
6059
+ # Corresponds to the JSON property `conditions`
6060
+ # @return [Array<Google::Apis::GkehubV1alpha::ServiceMeshCondition>]
6061
+ attr_accessor :conditions
6062
+
6014
6063
  # The API version (i.e. Istio CRD version) for configuring service mesh in this
6015
6064
  # cluster. This version is influenced by the `default_channel` field.
6016
6065
  # Corresponds to the JSON property `configApiVersion`
@@ -6034,6 +6083,7 @@ module Google
6034
6083
  # Update properties of this object
6035
6084
  def update!(**args)
6036
6085
  @analysis_messages = args[:analysis_messages] if args.key?(:analysis_messages)
6086
+ @conditions = args[:conditions] if args.key?(:conditions)
6037
6087
  @config_api_version = args[:config_api_version] if args.key?(:config_api_version)
6038
6088
  @control_plane_management = args[:control_plane_management] if args.key?(:control_plane_management)
6039
6089
  @data_plane_management = args[:data_plane_management] if args.key?(:data_plane_management)
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module GkehubV1alpha
18
18
  # Version of the google-apis-gkehub_v1alpha gem
19
- GEM_VERSION = "0.78.0"
19
+ GEM_VERSION = "0.79.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 = "20240322"
26
26
  end
27
27
  end
28
28
  end
@@ -994,6 +994,12 @@ module Google
994
994
  include Google::Apis::Core::JsonObjectSupport
995
995
  end
996
996
 
997
+ class ServiceMeshCondition
998
+ class Representation < Google::Apis::Core::JsonRepresentation; end
999
+
1000
+ include Google::Apis::Core::JsonObjectSupport
1001
+ end
1002
+
997
1003
  class ServiceMeshControlPlaneManagement
998
1004
  class Representation < Google::Apis::Core::JsonRepresentation; end
999
1005
 
@@ -2757,11 +2763,22 @@ module Google
2757
2763
  end
2758
2764
  end
2759
2765
 
2766
+ class ServiceMeshCondition
2767
+ # @private
2768
+ class Representation < Google::Apis::Core::JsonRepresentation
2769
+ property :code, as: 'code'
2770
+ property :details, as: 'details'
2771
+ property :documentation_link, as: 'documentationLink'
2772
+ property :severity, as: 'severity'
2773
+ end
2774
+ end
2775
+
2760
2776
  class ServiceMeshControlPlaneManagement
2761
2777
  # @private
2762
2778
  class Representation < Google::Apis::Core::JsonRepresentation
2763
2779
  collection :details, as: 'details', class: Google::Apis::GkehubV1alpha::ServiceMeshStatusDetails, decorator: Google::Apis::GkehubV1alpha::ServiceMeshStatusDetails::Representation
2764
2780
 
2781
+ property :implementation, as: 'implementation'
2765
2782
  property :state, as: 'state'
2766
2783
  end
2767
2784
  end
@@ -2797,6 +2814,8 @@ module Google
2797
2814
  class Representation < Google::Apis::Core::JsonRepresentation
2798
2815
  collection :analysis_messages, as: 'analysisMessages', class: Google::Apis::GkehubV1alpha::ServiceMeshAnalysisMessage, decorator: Google::Apis::GkehubV1alpha::ServiceMeshAnalysisMessage::Representation
2799
2816
 
2817
+ collection :conditions, as: 'conditions', class: Google::Apis::GkehubV1alpha::ServiceMeshCondition, decorator: Google::Apis::GkehubV1alpha::ServiceMeshCondition::Representation
2818
+
2800
2819
  property :config_api_version, as: 'configApiVersion'
2801
2820
  property :control_plane_management, as: 'controlPlaneManagement', class: Google::Apis::GkehubV1alpha::ServiceMeshControlPlaneManagement, decorator: Google::Apis::GkehubV1alpha::ServiceMeshControlPlaneManagement::Representation
2802
2821
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-gkehub_v1alpha
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.78.0
4
+ version: 0.79.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-03-31 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_v1alpha/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-gkehub_v1alpha/v0.78.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-gkehub_v1alpha/v0.79.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-gkehub_v1alpha
63
63
  post_install_message:
64
64
  rdoc_options: []