Class: Google::Apis::ComputeAlpha::Expr

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
generated/google/apis/compute_alpha/classes.rb,
generated/google/apis/compute_alpha/representations.rb,
generated/google/apis/compute_alpha/representations.rb

Overview

Represents an expression text. Example: title: "User account presence" description: "Determines whether the request has a user account" expression: "size(request.user) > 0"

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Google::Apis::Core::JsonObjectSupport

#to_json

Methods included from Google::Apis::Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ Expr

Returns a new instance of Expr.



6732
6733
6734
# File 'generated/google/apis/compute_alpha/classes.rb', line 6732

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#descriptionString

An optional description of the expression. This is a longer text which describes the expression, e.g. when hovered over it in a UI. Corresponds to the JSON property description

Returns:

  • (String)


6711
6712
6713
# File 'generated/google/apis/compute_alpha/classes.rb', line 6711

def description
  @description
end

#expressionString

Textual representation of an expression in Common Expression Language syntax. The application context of the containing message determines which well-known feature set of CEL is supported. Corresponds to the JSON property expression

Returns:

  • (String)


6718
6719
6720
# File 'generated/google/apis/compute_alpha/classes.rb', line 6718

def expression
  @expression
end

#locationString

An optional string indicating the location of the expression for error reporting, e.g. a file name and a position in the file. Corresponds to the JSON property location

Returns:

  • (String)


6724
6725
6726
# File 'generated/google/apis/compute_alpha/classes.rb', line 6724

def location
  @location
end

#titleString

An optional title for the expression, i.e. a short string describing its purpose. This can be used e.g. in UIs which allow to enter the expression. Corresponds to the JSON property title

Returns:

  • (String)


6730
6731
6732
# File 'generated/google/apis/compute_alpha/classes.rb', line 6730

def title
  @title
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



6737
6738
6739
6740
6741
6742
# File 'generated/google/apis/compute_alpha/classes.rb', line 6737

def update!(**args)
  @description = args[:description] if args.key?(:description)
  @expression = args[:expression] if args.key?(:expression)
  @location = args[:location] if args.key?(:location)
  @title = args[:title] if args.key?(:title)
end