Skip to main content

secret_value_values

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

Overview

Namesecret_value_values
TypeResource
Idazure.service_fabric_mesh.secret_value_values

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
valuestringThe actual value of the secret.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectsubscriptionId, resourceGroupName, secretResourceName, secretValueResourceNameapi-versionLists the decrypted value of the specified named value of the secret resource. This is a privileged operation.

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
resourceGroupNamestringAzure resource group name
secretResourceNamestringThe name of the secret resource.
secretValueResourceNamestringThe name of the secret resource value which is typically the version identifier for the value.
subscriptionIdstringThe customer subscription identifier
api-versionstringThe version of the API. This parameter is required and its value must be 2018-09-01-preview.

SELECT examples

Lists the decrypted value of the specified named value of the secret resource. This is a privileged operation.

SELECT
value
FROM azure.service_fabric_mesh.secret_value_values
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND secretResourceName = '{{ secretResourceName }}' -- required
AND secretValueResourceName = '{{ secretValueResourceName }}' -- required
AND api-version = '{{ api-version }}'
;