Skip to main content

build_services

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

Overview

Namebuild_services
TypeResource
Idazure.spring_apps.build_services

Fields

SELECT not supported for this resource, use SHOW METHODS to view available operations for the resource.

Methods

NameAccessible byRequired ParamsDescription
create_or_updateINSERTbuildServiceName, resourceGroupName, serviceName, subscriptionIdCreate a build service resource.

INSERT example

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

/*+ create */
INSERT INTO azure.spring_apps.build_services (
buildServiceName,
resourceGroupName,
serviceName,
subscriptionId,
properties
)
SELECT
'{{ buildServiceName }}',
'{{ resourceGroupName }}',
'{{ serviceName }}',
'{{ subscriptionId }}',
'{{ properties }}'
;