Skip to main content

operations

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

Overview

Nameoperations
TypeResource
Idazure.aad_b2c.operations

Fields

The following fields are returned by SELECT queries:

Describe the result of a successful operation.

NameDatatypeDescription
namestringName of the operation
displayobjectDisplay of the operation
isDataActionbooleanIndicates whether the operation is a data action
originstringOrigin of the operation

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectLists the operations available from this provider.
check_name_availabilityexecsubscriptionId, name, countryCodeChecks the availability and validity of a domain name for the tenant.

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
subscriptionIdstringThe ID of the target subscription.

SELECT examples

Lists the operations available from this provider.

SELECT
name,
display,
isDataAction,
origin
FROM azure.aad_b2c.operations
;

Lifecycle Methods

Checks the availability and validity of a domain name for the tenant.

EXEC azure.aad_b2c.operations.check_name_availability 
@subscriptionId='{{ subscriptionId }}' --required
@@json=
'{
"name": "{{ name }}",
"countryCode": "{{ countryCode }}"
}'
;