Skip to main content

backup_locations_backups

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

Overview

Namebackup_locations_backups
TypeResource
Idazure_stack.backup_admin.backup_locations_backups

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:

NameAccessible byRequired ParamsOptional ParamsDescription
createinsertsubscriptionId, resourceGroupName, locationBack up a specific location.

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
locationstringName of the backup location.
resourceGroupNamestringName of the resource group.
subscriptionIdstringSubscription credentials that uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call.

INSERT examples

Back up a specific location.

INSERT INTO azure_stack.backup_admin.backup_locations_backups (
subscriptionId,
resourceGroupName,
location
)
SELECT
'{{ subscriptionId }}',
'{{ resourceGroupName }}',
'{{ location }}'
RETURNING
id,
name,
location,
properties,
tags,
type
;