Skip to main content

arc_settings_identities

Creates, updates, deletes, gets or lists an arc_settings_identities resource.

Overview

Namearc_settings_identities
TypeResource
Idazure_stack.azure_stack_hci.arc_settings_identities

Fields

The following fields are returned by SELECT queries:

SELECT not supported for this resource, use SHOW METHODS to view available operations for the resource.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
createinsertsubscriptionId, resourceGroupName, clusterName, arcSettingNameCreate Aad identity for arc settings.

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
arcSettingNamestringThe name of the proxy resource holding details of HCI ArcSetting information.
clusterNamestringThe name of the cluster.
resourceGroupNamestringThe name of the resource group. The name is case insensitive.
subscriptionIdstring (uuid)The ID of the target subscription. The value must be an UUID.

INSERT examples

Create Aad identity for arc settings.

INSERT INTO azure_stack.azure_stack_hci.arc_settings_identities (
subscriptionId,
resourceGroupName,
clusterName,
arcSettingName
)
SELECT
'{{ subscriptionId }}',
'{{ resourceGroupName }}',
'{{ clusterName }}',
'{{ arcSettingName }}'
RETURNING
properties
;