jobs_credentials
Creates, updates, deletes, gets or lists a jobs_credentials
resource.
Overview
Name | jobs_credentials |
Type | Resource |
Id | azure.data_box.jobs_credentials |
Fields
The following fields are returned by SELECT
queries:
- list
List of unencrypted credentials of the job.
Name | Datatype | Description |
---|---|---|
jobName | string | Name of the job. |
jobSecrets | object | Secrets related to this job. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | subscriptionId , resourceGroupName , jobName | This method gets the unencrypted secrets related to the job. |
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.
Name | Datatype | Description |
---|---|---|
jobName | string | The name of the job Resource within the specified resource group. job names must be between 3 and 24 characters in length and use any alphanumeric and underscore only |
resourceGroupName | string | The Resource Group Name |
subscriptionId | string | The Subscription Id |
SELECT
examples
- list
This method gets the unencrypted secrets related to the job.
SELECT
jobName,
jobSecrets
FROM azure.data_box.jobs_credentials
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND jobName = '{{ jobName }}' -- required
;