- Release Notes
- Overview
- Getting Started
- Marketplace Vendors
- Marketplace Customers
- Publishing Guidelines
- Publishing Guidelines for Ready-to-go Automations
- Publishing Guidelines for Solution Accelerators
- Publishing Guidelines for Integration Service Connectors
- Security & IP Protection
- Other UiPath Listings
- Activities
- Technical References
- Node-RED
- Setup
- Teams
- Microsoft Teams Scope
- Create Team
- Create Team From Group
- Get Team
- Get Teams
- Channels
- Create Channel
- Delete Channel
- Get Channel
- Get Channels
- Update Channel
- Chats
- Get Chat
- Get Chats
- Get Chat Members
- Messages
- Get Message
- Get Messages
- Get Message Replies
- Reply To Message
- Send Message
- Events
- Create Event
- Delete Event
- Get Event
- Get Events
- Users
- Get User Presence
- How It Works
- Technical References
- Get Started
- About
- Setup
- Technical References
- Azure Form Recognizer Scope
- Activities
- Analyze Form
- Analyze Form Async
- Get Analyze Form Result
- Analyze Receipt
- Analyze Receipt Async
- Get Analyze Receipt Result
- Analyze Layout
- Analyze Layout Async
- Get Analyze Layout Result
- Train Model
- Get Models
- Get Model Keys
- Get Model Info
- Delete Model
- Connectors
- How to Create Activities
- Build Your Integration
Activities
The package contains three activities:
SSHConnectScopeActivity: establishes the connection to the remote SSS server. Authentication to the specified URL is done with a set of credentials and optionally via a proxy host with its own authentication. If an SSH Shell will be used, the Shell Expected Prompt is also required. The Shell Expected Prompt represent a Regex matching string against which the prompt will be validated to know when the welcome messages have been completely received and the SSH Shell can be used for the next commands. It exposes the SSH Client, Shell Stream and Shell Expected Prompt to the activities inside the scope.
SSHRunCommandActivity: executes commands through an active SSH Client. It outputs the text result and the exit code of the command. The SSH Client can be inferred from the parent Scope or created programmatically and passed specifically as an argument. As it does not use the Shell Stream, the context is not persistent between invocations of this activity. If persistence is needed, the commands need to be linked together (i.e.: using “;” between them) and sent through the same SSHRunCommandActivity
SSHRunShellCommandActivity: executes commands through an active Shell Stream. It outputs the text result of the command. It will infer the Shell Stream and the Shell Expected Prompt from the parent scope, but they can also be overridden with specific values. Optionally, it can also check the exit code of the command that was run by comparing the output result against 0. It will throw an exception if the output is not 0.
Please note all activities have 2 timeouts: the SSH Timeout which will be used just for waiting over the SSH Client and the Activity Timeout which is used for the total time the activity takes.