google-apis-gkehub_v1alpha 0.78.0 → 0.80.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 309341c876030f8f541b81eb0162ad0f690b5d4fe25fe922b0c7813554c71486
|
4
|
+
data.tar.gz: 130285ba09e3df0136928033b675585b865e4667daed504215eddf4c79d98935
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d18d1ac15aefcb61f21d6fc97bbe1aa5d6b36641f5918ad01bd3069250b5c8e237e01d4e530ac26ec3ab1a4eb78cc6a6f150cc21acbad156a96fe1d3fd58f033
|
7
|
+
data.tar.gz: c3e6da9db3e393179399331b3f21fbc981854fa7bfb50d300a58490c386e655f59d976a5b63c75b66183b2a4983cdfb1c325d3dec5560d25ec4157617b192f04
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-gkehub_v1alpha
|
2
2
|
|
3
|
+
### v0.80.0 (2024-04-21)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20240412
|
6
|
+
|
7
|
+
### v0.79.0 (2024-03-31)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20240322
|
10
|
+
|
3
11
|
### v0.78.0 (2024-03-24)
|
4
12
|
|
5
13
|
* 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 conditions reported for this membership.
|
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.
|
19
|
+
GEM_VERSION = "0.80.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 = "
|
25
|
+
REVISION = "20240412"
|
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.
|
4
|
+
version: 0.80.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-
|
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_v1alpha/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-gkehub_v1alpha/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-gkehub_v1alpha/v0.80.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: []
|