Class: Google::Apis::ComputeAlpha::WafExpressionSet
- Inherits:
-
Object
- Object
- Google::Apis::ComputeAlpha::WafExpressionSet
- Defined in:
- generated/google/apis/compute_alpha/classes.rb,
generated/google/apis/compute_alpha/representations.rb,
generated/google/apis/compute_alpha/representations.rb
Instance Attribute Summary collapse
-
#aliases ⇒ Array<String>
A list of alternate IDs.
-
#expressions ⇒ Array<Google::Apis::ComputeAlpha::WafExpressionSetExpression>
List of available expressions.
-
#id ⇒ String
Google specified expression set ID.
Instance Method Summary collapse
-
#initialize(**args) ⇒ WafExpressionSet
constructor
A new instance of WafExpressionSet.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ WafExpressionSet
Returns a new instance of WafExpressionSet
32771 32772 32773 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 32771 def initialize(**args) update!(**args) end |
Instance Attribute Details
#aliases ⇒ Array<String>
A list of alternate IDs. The format should be: - E.g. XSS-stable Generic
suffix like "stable" is particularly useful if a policy likes to avail newer
set of expressions without having to change the policy. A given alias name can'
t be used for more than one entity set.
Corresponds to the JSON property aliases
32759 32760 32761 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 32759 def aliases @aliases end |
#expressions ⇒ Array<Google::Apis::ComputeAlpha::WafExpressionSetExpression>
List of available expressions.
Corresponds to the JSON property expressions
32764 32765 32766 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 32764 def expressions @expressions end |
#id ⇒ String
Google specified expression set ID. The format should be: - E.g. XSS-20170329
Corresponds to the JSON property id
32769 32770 32771 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 32769 def id @id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
32776 32777 32778 32779 32780 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 32776 def update!(**args) @aliases = args[:aliases] if args.key?(:aliases) @expressions = args[:expressions] if args.key?(:expressions) @id = args[:id] if args.key?(:id) end |