Skip to main content

role_assignments_by_billing_accounts

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

Overview

Namerole_assignments_by_billing_accounts
TypeResource
Idazure.billing.role_assignments_by_billing_accounts

Fields

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

Methods

NameAccessible byRequired ParamsDescription
create_or_updateINSERTbillingAccountName, billingRoleAssignmentNameCreate or update a billing role assignment. The operation is supported only for billing accounts with agreement type Enterprise Agreement.

INSERT example

Use the following StackQL query and manifest file to create a new role_assignments_by_billing_accounts resource.

/*+ create */
INSERT INTO azure.billing.role_assignments_by_billing_accounts (
billingAccountName,
billingRoleAssignmentName,
tags,
properties
)
SELECT
'{{ billingAccountName }}',
'{{ billingRoleAssignmentName }}',
'{{ tags }}',
'{{ properties }}'
;