Class: Google::Apis::CesV1::SystemTool
- Inherits:
-
Object
- Object
- Google::Apis::CesV1::SystemTool
- 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
-
#description ⇒ String
Output only.
-
#name ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SystemTool
constructor
A new instance of SystemTool.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ SystemTool
Returns a new instance of SystemTool.
6243 6244 6245 |
# File 'lib/google/apis/ces_v1/classes.rb', line 6243 def initialize(**args) update!(**args) end |
Instance Attribute Details
#description ⇒ String
Output only. The description of the system tool.
Corresponds to the JSON property description
6236 6237 6238 |
# File 'lib/google/apis/ces_v1/classes.rb', line 6236 def description @description end |
#name ⇒ String
Required. The name of the system tool.
Corresponds to the JSON property name
6241 6242 6243 |
# File 'lib/google/apis/ces_v1/classes.rb', line 6241 def name @name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6248 6249 6250 6251 |
# File 'lib/google/apis/ces_v1/classes.rb', line 6248 def update!(**args) @description = args[:description] if args.key?(:description) @name = args[:name] if args.key?(:name) end |