applications_accesses
Creates, updates, deletes, gets or lists an applications_accesses
resource.
Overview
Name | applications_accesses |
Type | Resource |
Id | azure.managed_applications.applications_accesses |
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:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
update | exec | subscriptionId , resourceGroupName , applicationName , metadata , status , subStatus | Update access for application. |
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 |
---|---|---|
applicationName | string | The name of the managed application. |
resourceGroupName | string | The name of the resource group. The name is case insensitive. |
subscriptionId | string | The ID of the target subscription. |
Lifecycle Methods
- update
Update access for application.
EXEC azure.managed_applications.applications_accesses.update
@subscriptionId='{{ subscriptionId }}' --required,
@resourceGroupName='{{ resourceGroupName }}' --required,
@applicationName='{{ applicationName }}' --required
@@json=
'{
"approver": "{{ approver }}",
"metadata": "{{ metadata }}",
"status": "{{ status }}",
"subStatus": "{{ subStatus }}"
}'
;