Class: Google::Apis::WorkloadmanagerV1::Rule
- Inherits:
-
Object
- Object
- Google::Apis::WorkloadmanagerV1::Rule
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/workloadmanager_v1/classes.rb,
lib/google/apis/workloadmanager_v1/representations.rb,
lib/google/apis/workloadmanager_v1/representations.rb
Overview
Message represent a rule
Instance Attribute Summary collapse
-
#description ⇒ String
descrite rule in plain language Corresponds to the JSON property
description
. -
#display_name ⇒ String
the name display in UI Corresponds to the JSON property
displayName
. -
#error_message ⇒ String
the message template for rule Corresponds to the JSON property
errorMessage
. -
#name ⇒ String
rule name Corresponds to the JSON property
name
. -
#primary_category ⇒ String
the primary category Corresponds to the JSON property
primaryCategory
. -
#remediation ⇒ String
the remediation for the rule Corresponds to the JSON property
remediation
. -
#revision_id ⇒ String
Output only.
-
#secondary_category ⇒ String
the secondary category Corresponds to the JSON property
secondaryCategory
. -
#severity ⇒ String
the severity of the rule Corresponds to the JSON property
severity
. -
#tags ⇒ Array<String>
List of user-defined tags Corresponds to the JSON property
tags
. -
#uri ⇒ String
the docuement url for the rule Corresponds to the JSON property
uri
.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Rule
constructor
A new instance of Rule.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Rule
Returns a new instance of Rule.
994 995 996 |
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 994 def initialize(**args) update!(**args) end |
Instance Attribute Details
#description ⇒ String
descrite rule in plain language
Corresponds to the JSON property description
942 943 944 |
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 942 def description @description end |
#display_name ⇒ String
the name display in UI
Corresponds to the JSON property displayName
947 948 949 |
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 947 def display_name @display_name end |
#error_message ⇒ String
the message template for rule
Corresponds to the JSON property errorMessage
952 953 954 |
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 952 def @error_message end |
#name ⇒ String
rule name
Corresponds to the JSON property name
957 958 959 |
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 957 def name @name end |
#primary_category ⇒ String
the primary category
Corresponds to the JSON property primaryCategory
962 963 964 |
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 962 def primary_category @primary_category end |
#remediation ⇒ String
the remediation for the rule
Corresponds to the JSON property remediation
967 968 969 |
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 967 def remediation @remediation end |
#revision_id ⇒ String
Output only. the version of the rule
Corresponds to the JSON property revisionId
972 973 974 |
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 972 def revision_id @revision_id end |
#secondary_category ⇒ String
the secondary category
Corresponds to the JSON property secondaryCategory
977 978 979 |
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 977 def secondary_category @secondary_category end |
#severity ⇒ String
the severity of the rule
Corresponds to the JSON property severity
982 983 984 |
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 982 def severity @severity end |
#tags ⇒ Array<String>
List of user-defined tags
Corresponds to the JSON property tags
987 988 989 |
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 987 def @tags end |
#uri ⇒ String
the docuement url for the rule
Corresponds to the JSON property uri
992 993 994 |
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 992 def uri @uri end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 |
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 999 def update!(**args) @description = args[:description] if args.key?(:description) @display_name = args[:display_name] if args.key?(:display_name) @error_message = args[:error_message] if args.key?(:error_message) @name = args[:name] if args.key?(:name) @primary_category = args[:primary_category] if args.key?(:primary_category) @remediation = args[:remediation] if args.key?(:remediation) @revision_id = args[:revision_id] if args.key?(:revision_id) @secondary_category = args[:secondary_category] if args.key?(:secondary_category) @severity = args[:severity] if args.key?(:severity) @tags = args[:tags] if args.key?(:tags) @uri = args[:uri] if args.key?(:uri) end |