
Dell EMC Get
CertifiedEnterprise EditionGet a Dell EMC PowerStore volume by ID
Dell EMC Get
Get a Dell EMC PowerStore volume by ID
Fetches the details of a single PowerStore volume via GET /api/rest/volume/{id}.
Throws an error if the volume does not exist (HTTP 404).
type: io.kestra.plugin.ee.dellemc.powerstore.volumes.GetExamples
Get a specific PowerStore volume.
id: powerstore_get_volume
namespace: company.team
tasks:
- id: get_volume
type: io.kestra.plugin.ee.dellemc.powerstore.volumes.Get
host: "{{ secret('POWERSTORE_HOST') }}"
username: "{{ secret('POWERSTORE_USERNAME') }}"
password: "{{ secret('POWERSTORE_PASSWORD') }}"
volumeId: "{{ inputs.volume_id }}"
Properties
host *Requiredstring
PowerStore management address
Hostname or IP address of the PowerStore appliance management interface, optionally including a
port if non-default (for example: powerstore.example.com or 192.168.1.20: 8443).
The REST API is reached at https://{host}/api/rest.
password *Requiredstring
PowerStore password
Password for username. Store this value as a Kestra secret and reference it via
{{ secret('POWERSTORE_PASSWORD') }}.
username *Requiredstring
PowerStore username
Username of a PowerStore local or LDAP account used to authenticate via HTTP Basic Auth.
volumeId *Requiredstring
Volume ID
ID of the PowerStore volume to retrieve.
pluginDefaultsRef Non-dynamicstring
Reference (ref) of the pluginDefaults to apply to this task.
skipTlsVerification booleanstring
falseSkip TLS certificate verification
When true, accepts the PowerStore appliance's TLS certificate without validation. Defaults to
false. PowerStore management interfaces are commonly deployed with a self-signed certificate;
set this to true to connect to those without importing the certificate into a trust store.
Intended for lab/non-production use — leave false in production and use a properly signed
certificate instead.
Outputs
id string
Volume ID
name string
Volume name
sizeBytes integer
Size in bytes
state string
Volume state
For example: Ready, Initializing, Offline.