springbootapps
Creates, updates, deletes, gets or lists a springbootapps
resource.
Overview
Name | springbootapps |
Type | Resource |
Id | azure_extras.off_azure_springboot.springbootapps |
Fields
- vw_springbootapps
- springbootapps
Name | Datatype | Description |
---|---|---|
app_name | text | field from the properties object |
app_port | text | field from the properties object |
app_type | text | field from the properties object |
application_configurations | text | field from the properties object |
artifact_name | text | field from the properties object |
binding_ports | text | field from the properties object |
build_jdk_version | text | field from the properties object |
certificates | text | field from the properties object |
checksum | text | field from the properties object |
connection_strings | text | field from the properties object |
dependencies | text | field from the properties object |
environments | text | field from the properties object |
errors | text | field from the properties object |
instance_count | text | field from the properties object |
instances | text | field from the properties object |
jar_file_location | text | field from the properties object |
jvm_memory_in_mb | text | field from the properties object |
jvm_options | text | field from the properties object |
labels | text | field from the properties object |
last_modified_time | text | field from the properties object |
last_updated_time | text | field from the properties object |
machine_arm_ids | text | field from the properties object |
miscs | text | field from the properties object |
provisioning_state | text | field from the properties object |
resourceGroupName | text | field from the properties object |
runtime_jdk_version | text | field from the properties object |
servers | text | field from the properties object |
siteName | text | field from the properties object |
spring_boot_version | text | field from the properties object |
springbootappsName | text | field from the properties object |
static_content_locations | text | field from the properties object |
subscriptionId | text | field from the properties object |
Name | Datatype | Description |
---|---|---|
properties | object | The springbootapps resource definition. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | resourceGroupName, siteName, springbootappsName, subscriptionId | Get a springbootapps resource. |
list_by_resource_group | SELECT | resourceGroupName, siteName, subscriptionId | List springbootapps resource by resourceGroup |
list_by_subscription | SELECT | siteName, subscriptionId | List springbootapps resource by subscription |
create_or_update | INSERT | resourceGroupName, siteName, springbootappsName, subscriptionId | Create a springbootapps resource. |
delete | DELETE | resourceGroupName, siteName, springbootappsName, subscriptionId | Delete a springbootapps resource. |
update | UPDATE | resourceGroupName, siteName, springbootappsName, subscriptionId | Update a springbootapps resource. |
SELECT
examples
List springbootapps resource by subscription
- vw_springbootapps
- springbootapps
SELECT
app_name,
app_port,
app_type,
application_configurations,
artifact_name,
binding_ports,
build_jdk_version,
certificates,
checksum,
connection_strings,
dependencies,
environments,
errors,
instance_count,
instances,
jar_file_location,
jvm_memory_in_mb,
jvm_options,
labels,
last_modified_time,
last_updated_time,
machine_arm_ids,
miscs,
provisioning_state,
resourceGroupName,
runtime_jdk_version,
servers,
siteName,
spring_boot_version,
springbootappsName,
static_content_locations,
subscriptionId
FROM azure_extras.off_azure_springboot.vw_springbootapps
WHERE siteName = '{{ siteName }}'
AND subscriptionId = '{{ subscriptionId }}';
SELECT
properties
FROM azure_extras.off_azure_springboot.springbootapps
WHERE siteName = '{{ siteName }}'
AND subscriptionId = '{{ subscriptionId }}';
INSERT
example
Use the following StackQL query and manifest file to create a new springbootapps
resource.
- All Properties
- Manifest
/*+ create */
INSERT INTO azure_extras.off_azure_springboot.springbootapps (
resourceGroupName,
siteName,
springbootappsName,
subscriptionId,
properties
)
SELECT
'{{ resourceGroupName }}',
'{{ siteName }}',
'{{ springbootappsName }}',
'{{ subscriptionId }}',
'{{ properties }}'
;
- name: your_resource_model_name
props:
- name: properties
value:
- name: appName
value: string
- name: artifactName
value: string
- name: appPort
value: integer
- name: appType
value: string
- name: applicationConfigurations
value:
- - name: key
value: string
- name: value
value: string
- name: bindingPorts
value:
- integer
- name: buildJdkVersion
value: string
- name: certificates
value:
- string
- name: checksum
value: string
- name: dependencies
value:
- string
- name: environments
value:
- string
- name: instanceCount
value: integer
- name: jarFileLocation
value: string
- name: jvmMemoryInMB
value: integer
- name: jvmOptions
value:
- string
- name: miscs
value:
- - name: key
value: string
- name: value
value: string
- name: instances
value:
- - name: machineArmId
value: string
- name: instanceCount
value: integer
- name: jvmMemoryInMB
value: integer
- name: runtimeJdkVersion
value: string
- name: servers
value:
- string
- name: machineArmIds
value:
- string
- name: springBootVersion
value: string
- name: staticContentLocations
value:
- string
- name: connectionStrings
value:
- string
- name: lastModifiedTime
value: string
- name: lastUpdatedTime
value: string
- name: provisioningState
value: string
- name: errors
value:
- - name: id
value: integer
- name: code
value: string
- name: summaryMessage
value: string
- name: runAsAccountId
value: string
- name: message
value: string
- name: possibleCauses
value: string
- name: recommendedAction
value: string
- name: severity
value: string
- name: updatedTimeStamp
value: string
- name: labels
value: object
UPDATE
example
Updates a springbootapps
resource.
/*+ update */
UPDATE azure_extras.off_azure_springboot.springbootapps
SET
properties = '{{ properties }}'
WHERE
resourceGroupName = '{{ resourceGroupName }}'
AND siteName = '{{ siteName }}'
AND springbootappsName = '{{ springbootappsName }}'
AND subscriptionId = '{{ subscriptionId }}';
DELETE
example
Deletes the specified springbootapps
resource.
/*+ delete */
DELETE FROM azure_extras.off_azure_springboot.springbootapps
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND siteName = '{{ siteName }}'
AND springbootappsName = '{{ springbootappsName }}'
AND subscriptionId = '{{ subscriptionId }}';