Skip to main content

copilot_settings

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

Overview

Namecopilot_settings
TypeResource
Idazure_extras.portal_services_copilot.copilot_settings

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringFully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}.
namestringThe name of the resource.
accessControlEnabledbooleanBoolean indicating if role-based access control is enabled for copilot in this tenant. Required.
provisioningStatestringThe status of the last provisioning operation performed on the resource. Known values are: "Succeeded", "Failed", and "Canceled". (Succeeded, Failed, Canceled)
systemDataobjectAzure Resource Manager metadata containing createdBy and modifiedBy information.
typestringThe type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts".

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectGet a CopilotSettingsResource.
create_or_updateinsertCreate a CopilotSettingsResource.
updateupdateUpdate a CopilotSettingsResource.
create_or_updatereplaceCreate a CopilotSettingsResource.
deletedeleteDelete a CopilotSettingsResource.

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

SELECT examples

Get a CopilotSettingsResource.

SELECT
id,
name,
accessControlEnabled,
provisioningState,
systemData,
type
FROM azure_extras.portal_services_copilot.copilot_settings
;

INSERT examples

Create a CopilotSettingsResource.

INSERT INTO azure_extras.portal_services_copilot.copilot_settings (
properties
)
SELECT
'{{ properties }}'
RETURNING
id,
name,
properties,
systemData,
type
;

UPDATE examples

Update a CopilotSettingsResource.

UPDATE azure_extras.portal_services_copilot.copilot_settings
SET
properties = '{{ properties }}'
RETURNING
id,
name,
properties,
systemData,
type;

REPLACE examples

Create a CopilotSettingsResource.

REPLACE azure_extras.portal_services_copilot.copilot_settings
SET
properties = '{{ properties }}'
RETURNING
id,
name,
properties,
systemData,
type;

DELETE examples

Delete a CopilotSettingsResource.

DELETE FROM azure_extras.portal_services_copilot.copilot_settings
;