Class: Google::Cloud::Storage::Policy::Condition
- Inherits:
-
Object
- Object
- Google::Cloud::Storage::Policy::Condition
- Defined in:
- lib/google/cloud/storage/policy/condition.rb
Overview
Condition
Value object accepting an attribute-based logic expression based on a subset of the Common Expression Language (CEL).
Instance Attribute Summary collapse
-
#description ⇒ String
Used to document the condition.
-
#expression ⇒ String
Defines an attribute-based logic expression using a subset of the Common Expression Language (CEL).
-
#title ⇒ String
Used to identify the condition.
Instance Method Summary collapse
-
#initialize(title:, expression:, description: nil) ⇒ Condition
constructor
Creates a Condition object.
- #to_gapi ⇒ Object
Constructor Details
#initialize(title:, expression:, description: nil) ⇒ Condition
Creates a Condition object.
88 89 90 91 92 |
# File 'lib/google/cloud/storage/policy/condition.rb', line 88 def initialize title:, expression:, description: nil @title = String title @description = String description @expression = String expression end |
Instance Attribute Details
#description ⇒ String
Used to document the condition. Optional.
72 73 74 |
# File 'lib/google/cloud/storage/policy/condition.rb', line 72 def description @description end |
#expression ⇒ String
Defines an attribute-based logic expression using a subset of the Common Expression Language (CEL). The condition expression can contain multiple statements, each uses one attributes, and statements are combined using logic operators, following CEL language specification. Required.
72 73 74 |
# File 'lib/google/cloud/storage/policy/condition.rb', line 72 def expression @expression end |
#title ⇒ String
Used to identify the condition. Required.
72 73 74 |
# File 'lib/google/cloud/storage/policy/condition.rb', line 72 def title @title end |
Instance Method Details
#to_gapi ⇒ Object
127 128 129 130 131 132 133 |
# File 'lib/google/cloud/storage/policy/condition.rb', line 127 def to_gapi { title: @title, description: @description, expression: @expression }.delete_if { |_, v| v.nil? } end |