Skip to main content

springbootservers

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

Overview

Namespringbootservers
TypeResource
Idazure_extras.off_azure_springboot.springbootservers

Fields

NameDatatypeDescription
errorstextfield from the properties object
fqdn_and_ip_address_listtextfield from the properties object
labelstextfield from the properties object
machine_arm_idtextfield from the properties object
porttextfield from the properties object
provisioning_statetextfield from the properties object
resourceGroupNametextfield from the properties object
servertextfield from the properties object
siteNametextfield from the properties object
spring_boot_appstextfield from the properties object
springbootserversNametextfield from the properties object
subscriptionIdtextfield from the properties object
total_appstextfield from the properties object

Methods

NameAccessible byRequired ParamsDescription
getSELECTresourceGroupName, siteName, springbootserversName, subscriptionIdList springbootservers resource.
list_by_resource_groupSELECTresourceGroupName, siteName, subscriptionIdList springbootservers resource by resourceGroup
list_by_subscriptionSELECTsiteName, subscriptionIdList springbootservers resource by subscription
create_or_updateINSERTresourceGroupName, siteName, springbootserversName, subscriptionIdCreate springbootservers resource.
deleteDELETEresourceGroupName, siteName, springbootserversName, subscriptionIdDelete springbootservers resource.
updateUPDATEresourceGroupName, siteName, springbootserversName, subscriptionIdUpdate springbootservers resource.

SELECT examples

List springbootservers resource by subscription

SELECT
errors,
fqdn_and_ip_address_list,
labels,
machine_arm_id,
port,
provisioning_state,
resourceGroupName,
server,
siteName,
spring_boot_apps,
springbootserversName,
subscriptionId,
total_apps
FROM azure_extras.off_azure_springboot.vw_springbootservers
WHERE siteName = '{{ siteName }}'
AND subscriptionId = '{{ subscriptionId }}';

INSERT example

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

/*+ create */
INSERT INTO azure_extras.off_azure_springboot.springbootservers (
resourceGroupName,
siteName,
springbootserversName,
subscriptionId,
properties
)
SELECT
'{{ resourceGroupName }}',
'{{ siteName }}',
'{{ springbootserversName }}',
'{{ subscriptionId }}',
'{{ properties }}'
;

UPDATE example

Updates a springbootservers resource.

/*+ update */
UPDATE azure_extras.off_azure_springboot.springbootservers
SET
properties = '{{ properties }}'
WHERE
resourceGroupName = '{{ resourceGroupName }}'
AND siteName = '{{ siteName }}'
AND springbootserversName = '{{ springbootserversName }}'
AND subscriptionId = '{{ subscriptionId }}';

DELETE example

Deletes the specified springbootservers resource.

/*+ delete */
DELETE FROM azure_extras.off_azure_springboot.springbootservers
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND siteName = '{{ siteName }}'
AND springbootserversName = '{{ springbootserversName }}'
AND subscriptionId = '{{ subscriptionId }}';