Class: Google::Apis::CesV1::AgentAgentToolset
- Inherits:
-
Object
- Object
- Google::Apis::CesV1::AgentAgentToolset
- 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
A toolset with a selection of its tools.
Instance Attribute Summary collapse
-
#tool_ids ⇒ Array<String>
Optional.
-
#toolset ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ AgentAgentToolset
constructor
A new instance of AgentAgentToolset.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ AgentAgentToolset
Returns a new instance of AgentAgentToolset.
293 294 295 |
# File 'lib/google/apis/ces_v1/classes.rb', line 293 def initialize(**args) update!(**args) end |
Instance Attribute Details
#tool_ids ⇒ Array<String>
Optional. The tools IDs to filter the toolset.
Corresponds to the JSON property toolIds
285 286 287 |
# File 'lib/google/apis/ces_v1/classes.rb', line 285 def tool_ids @tool_ids end |
#toolset ⇒ String
Required. The resource name of the toolset. Format: projects/project/
locations/location/apps/app/toolsets/toolset`
Corresponds to the JSON propertytoolset`
291 292 293 |
# File 'lib/google/apis/ces_v1/classes.rb', line 291 def toolset @toolset end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
298 299 300 301 |
# File 'lib/google/apis/ces_v1/classes.rb', line 298 def update!(**args) @tool_ids = args[:tool_ids] if args.key?(:tool_ids) @toolset = args[:toolset] if args.key?(:toolset) end |