backup_locations_backups
Creates, updates, deletes, gets or lists a backup_locations_backups
resource.
Overview
Name | backup_locations_backups |
Type | Resource |
Id | azure_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:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
create | insert | subscriptionId , resourceGroupName , location | Back 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.
Name | Datatype | Description |
---|---|---|
location | string | Name of the backup location. |
resourceGroupName | string | Name of the resource group. |
subscriptionId | string | Subscription credentials that uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call. |
INSERT
examples
- create
- Manifest
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
;
# Description fields are for documentation purposes
- name: backup_locations_backups
props:
- name: subscriptionId
value: string
description: Required parameter for the backup_locations_backups resource.
- name: resourceGroupName
value: string
description: Required parameter for the backup_locations_backups resource.
- name: location
value: string
description: Required parameter for the backup_locations_backups resource.