Class: Google::Apis::GkehubV1alpha::ServiceMeshAnalysisMessage
- Inherits:
-
Object
- Object
- Google::Apis::GkehubV1alpha::ServiceMeshAnalysisMessage
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/gkehub_v1alpha/classes.rb,
lib/google/apis/gkehub_v1alpha/representations.rb,
lib/google/apis/gkehub_v1alpha/representations.rb
Overview
AnalysisMessage is a single message produced by an analyzer, and it used to communicate to the end user about the state of their Service Mesh configuration.
Instance Attribute Summary collapse
-
#args ⇒ Hash<String,Object>
A UI can combine these args with a template (based on message_base.type) to produce an internationalized message.
-
#description ⇒ String
A human readable description of what the error means.
-
#message_base ⇒ Google::Apis::GkehubV1alpha::ServiceMeshAnalysisMessageBase
AnalysisMessageBase describes some common information that is needed for all messages.
-
#resource_paths ⇒ Array<String>
A list of strings specifying the resource identifiers that were the cause of message generation.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ServiceMeshAnalysisMessage
constructor
A new instance of ServiceMeshAnalysisMessage.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ServiceMeshAnalysisMessage
Returns a new instance of ServiceMeshAnalysisMessage.
5913 5914 5915 |
# File 'lib/google/apis/gkehub_v1alpha/classes.rb', line 5913 def initialize(**args) update!(**args) end |
Instance Attribute Details
#args ⇒ Hash<String,Object>
A UI can combine these args with a template (based on message_base.type) to
produce an internationalized message.
Corresponds to the JSON property args
5891 5892 5893 |
# File 'lib/google/apis/gkehub_v1alpha/classes.rb', line 5891 def args @args end |
#description ⇒ String
A human readable description of what the error means. It is suitable for non-
internationalize display purposes.
Corresponds to the JSON property description
5897 5898 5899 |
# File 'lib/google/apis/gkehub_v1alpha/classes.rb', line 5897 def description @description end |
#message_base ⇒ Google::Apis::GkehubV1alpha::ServiceMeshAnalysisMessageBase
AnalysisMessageBase describes some common information that is needed for all
messages.
Corresponds to the JSON property messageBase
5903 5904 5905 |
# File 'lib/google/apis/gkehub_v1alpha/classes.rb', line 5903 def @message_base end |
#resource_paths ⇒ Array<String>
A list of strings specifying the resource identifiers that were the cause of
message generation. A "path" here may be: * MEMBERSHIP_ID if the cause is a
specific member cluster * MEMBERSHIP_ID/(NAMESPACE\/)?RESOURCETYPE/NAME if the
cause is a resource in a cluster
Corresponds to the JSON property resourcePaths
5911 5912 5913 |
# File 'lib/google/apis/gkehub_v1alpha/classes.rb', line 5911 def resource_paths @resource_paths end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5918 5919 5920 5921 5922 5923 |
# File 'lib/google/apis/gkehub_v1alpha/classes.rb', line 5918 def update!(**args) @args = args[:args] if args.key?(:args) @description = args[:description] if args.key?(:description) @message_base = args[:message_base] if args.key?(:message_base) @resource_paths = args[:resource_paths] if args.key?(:resource_paths) end |