Skip to main content

build_service_agent_pools

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

Overview

Namebuild_service_agent_pools
TypeResource
Idazure.spring_apps.build_service_agent_pools

Fields

NameDatatypeDescription
agentPoolNametextfield from the properties object
buildServiceNametextfield from the properties object
pool_sizetextfield from the properties object
provisioning_statetextfield from the properties object
resourceGroupNametextfield from the properties object
serviceNametextfield from the properties object
subscriptionIdtextfield from the properties object

Methods

NameAccessible byRequired ParamsDescription
getSELECTagentPoolName, buildServiceName, resourceGroupName, serviceName, subscriptionIdGet build service agent pool.
listSELECTbuildServiceName, resourceGroupName, serviceName, subscriptionIdList build service agent pool.
update_putEXECagentPoolName, buildServiceName, resourceGroupName, serviceName, subscriptionIdCreate or update build service agent pool.

SELECT examples

List build service agent pool.

SELECT
agentPoolName,
buildServiceName,
pool_size,
provisioning_state,
resourceGroupName,
serviceName,
subscriptionId
FROM azure.spring_apps.vw_build_service_agent_pools
WHERE buildServiceName = '{{ buildServiceName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND serviceName = '{{ serviceName }}'
AND subscriptionId = '{{ subscriptionId }}';