Class: Google::Apis::CesV1::SystemTool

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

Overview

Pre-defined system tool.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ SystemTool

Returns a new instance of SystemTool.



6443
6444
6445
# File 'lib/google/apis/ces_v1/classes.rb', line 6443

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

Instance Attribute Details

#descriptionString

Output only. The description of the system tool. Corresponds to the JSON property description

Returns:

  • (String)


6436
6437
6438
# File 'lib/google/apis/ces_v1/classes.rb', line 6436

def description
  @description
end

#nameString

Required. The name of the system tool. Corresponds to the JSON property name

Returns:

  • (String)


6441
6442
6443
# File 'lib/google/apis/ces_v1/classes.rb', line 6441

def name
  @name
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



6448
6449
6450
6451
# File 'lib/google/apis/ces_v1/classes.rb', line 6448

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