springbootsites
Creates, updates, deletes, gets or lists a springbootsites
resource.
Overview
Name | springbootsites |
Type | Resource |
Id | azure_extras.off_azure_springboot.springbootsites |
Fields
The following fields are returned by SELECT
queries:
- get
- list_by_resource_group
- list_by_subscription
Retrieves the springbootsites resource.
Name | Datatype | Description |
---|---|---|
extendedLocation | object | The extended location definition. |
location | string | The geo-location where the resource lives |
properties | object | The springbootsites resource definition. |
tags | object | Resource tags. |
Lists all springbootsites under the resource group.
Name | Datatype | Description |
---|---|---|
extendedLocation | object | The extended location definition. |
location | string | The geo-location where the resource lives |
properties | object | The springbootsites resource definition. |
tags | object | Resource tags. |
Lists all springbootsites under the subscription.
Name | Datatype | Description |
---|---|---|
extendedLocation | object | The extended location definition. |
location | string | The geo-location where the resource lives |
properties | object | The springbootsites resource definition. |
tags | object | Resource tags. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | subscriptionId , resourceGroupName , springbootsitesName | Get a springbootsites resource. | |
list_by_resource_group | select | subscriptionId , resourceGroupName | List springbootsites resource by resourceGroup. | |
list_by_subscription | select | subscriptionId | List springbootsites resource by subscription | |
create_or_update | insert | subscriptionId , resourceGroupName , springbootsitesName , data__location | Create a springbootsites resource. | |
update | update | subscriptionId , resourceGroupName , springbootsitesName | Update a springbootsites resource. | |
delete | delete | subscriptionId , resourceGroupName , springbootsitesName | Delete a springbootsites resource. | |
trigger_refresh_site | exec | subscriptionId , resourceGroupName , springbootsitesName | Trigger refresh springbootsites action |
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 |
---|---|---|
resourceGroupName | string | The name of the resource group. The name is case insensitive. |
springbootsitesName | string | The springbootsites name. |
subscriptionId | string | The ID of the target subscription. |
SELECT
examples
- get
- list_by_resource_group
- list_by_subscription
Get a springbootsites resource.
SELECT
extendedLocation,
location,
properties,
tags
FROM azure_extras.off_azure_springboot.springbootsites
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND springbootsitesName = '{{ springbootsitesName }}' -- required
;
List springbootsites resource by resourceGroup.
SELECT
extendedLocation,
location,
properties,
tags
FROM azure_extras.off_azure_springboot.springbootsites
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
;
List springbootsites resource by subscription
SELECT
extendedLocation,
location,
properties,
tags
FROM azure_extras.off_azure_springboot.springbootsites
WHERE subscriptionId = '{{ subscriptionId }}' -- required
;
INSERT
examples
- create_or_update
- Manifest
Create a springbootsites resource.
INSERT INTO azure_extras.off_azure_springboot.springbootsites (
data__tags,
data__location,
data__properties,
data__extendedLocation,
subscriptionId,
resourceGroupName,
springbootsitesName
)
SELECT
'{{ tags }}',
'{{ location }}' /* required */,
'{{ properties }}',
'{{ extendedLocation }}',
'{{ subscriptionId }}',
'{{ resourceGroupName }}',
'{{ springbootsitesName }}'
RETURNING
extendedLocation,
location,
properties,
tags
;
# Description fields are for documentation purposes
- name: springbootsites
props:
- name: subscriptionId
value: string
description: Required parameter for the springbootsites resource.
- name: resourceGroupName
value: string
description: Required parameter for the springbootsites resource.
- name: springbootsitesName
value: string
description: Required parameter for the springbootsites resource.
- name: tags
value: object
description: |
Resource tags.
- name: location
value: string
description: |
The geo-location where the resource lives
- name: properties
value: object
description: |
The springbootsites resource definition.
- name: extendedLocation
value: object
description: |
The extended location definition.
UPDATE
examples
- update
Update a springbootsites resource.
UPDATE azure_extras.off_azure_springboot.springbootsites
SET
data__tags = '{{ tags }}',
data__location = '{{ location }}',
data__properties = '{{ properties }}'
WHERE
subscriptionId = '{{ subscriptionId }}' --required
AND resourceGroupName = '{{ resourceGroupName }}' --required
AND springbootsitesName = '{{ springbootsitesName }}' --required
RETURNING
extendedLocation,
location,
properties,
tags;
DELETE
examples
- delete
Delete a springbootsites resource.
DELETE FROM azure_extras.off_azure_springboot.springbootsites
WHERE subscriptionId = '{{ subscriptionId }}' --required
AND resourceGroupName = '{{ resourceGroupName }}' --required
AND springbootsitesName = '{{ springbootsitesName }}' --required
;
Lifecycle Methods
- trigger_refresh_site
Trigger refresh springbootsites action
EXEC azure_extras.off_azure_springboot.springbootsites.trigger_refresh_site
@subscriptionId='{{ subscriptionId }}' --required,
@resourceGroupName='{{ resourceGroupName }}' --required,
@springbootsitesName='{{ springbootsitesName }}' --required
;