class Google::Apis::GkehubV1alpha::ServiceMeshAnalysisMessageBase
AnalysisMessageBase describes some common information that is needed for all messages.
Attributes
A url pointing to the Service Mesh or Istio documentation for this specific error type. Corresponds to the JSON property `documentationUrl` @return [String]
Represents how severe a message is. Corresponds to the JSON property `level` @return [String]
A unique identifier for the type of message. Display_name is intended to be human-readable, code is intended to be machine readable. There should be a one- to-one mapping between display_name and code. (i.e. do not re-use display_names or codes between message types.) See istio.analysis.v1alpha1. AnalysisMessageBase.Type Corresponds to the JSON property `type` @return [Google::Apis::GkehubV1alpha::ServiceMeshType]
Public Class Methods
# File lib/google/apis/gkehub_v1alpha/classes.rb, line 2059 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/gkehub_v1alpha/classes.rb, line 2064 def update!(**args) @documentation_url = args[:documentation_url] if args.key?(:documentation_url) @level = args[:level] if args.key?(:level) @type = args[:type] if args.key?(:type) end