Skip to main content

storage_profile_for_queues

Creates, updates, deletes, gets or lists a storage_profile_for_queues resource.

Overview

Namestorage_profile_for_queues
TypeResource
Idaws.deadline.storage_profile_for_queues

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
display_namestringThe display name of the storage profile connected to a queue. This field can store any content. Escape or encode this content before displaying it on a webpage or any other system that might interpret the content of this field.
file_system_locationsarrayThe location of the files for the storage profile within the queue.
os_familystringThe operating system of the storage profile in the queue. (WINDOWS, LINUX, MACOS)
storage_profile_idstringThe storage profile ID. (pattern: <code>sp-[0-9a-f]{32}</code>)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_storage_profile_for_queueselectfarm_id, queue_id, storage_profile_id, regionGets a storage profile for a queue.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
farm_idstringThe farm ID for the queue in storage profile.
queue_idstringThe queue ID the queue in the storage profile.
regionstringAWS region (default: us-east-1)
storage_profile_idstringThe storage profile ID for the storage profile in the queue.

SELECT examples

Gets a storage profile for a queue.

SELECT
display_name,
file_system_locations,
os_family,
storage_profile_id
FROM aws.deadline.storage_profile_for_queues
WHERE farm_id = '{{ farm_id }}' -- required
AND queue_id = '{{ queue_id }}' -- required
AND storage_profile_id = '{{ storage_profile_id }}' -- required
AND region = '{{ region }}' -- required
;