operations
Creates, updates, deletes, gets or lists an operations
resource.
Overview
Name | operations |
Type | Resource |
Id | azure.aad_b2c.operations |
Fields
The following fields are returned by SELECT
queries:
- list
Describe the result of a successful operation.
Name | Datatype | Description |
---|---|---|
name | string | Name of the operation |
display | object | Display of the operation |
isDataAction | boolean | Indicates whether the operation is a data action |
origin | string | Origin of the operation |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | Lists the operations available from this provider. | ||
check_name_availability | exec | subscriptionId , name , countryCode | Checks 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.
Name | Datatype | Description |
---|---|---|
subscriptionId | string | The ID of the target subscription. |
SELECT
examples
- list
Lists the operations available from this provider.
SELECT
name,
display,
isDataAction,
origin
FROM azure.aad_b2c.operations
;
Lifecycle Methods
- check_name_availability
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 }}"
}'
;