1. Packages
  2. Azure Native
  3. API Docs
  4. appplatform
  5. BuildServiceBuild
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.0.1 published on Monday, Apr 7, 2025 by Pulumi

azure-native.appplatform.BuildServiceBuild

Explore with Pulumi AI

This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.0.1 published on Monday, Apr 7, 2025 by Pulumi

Build resource payload

Uses Azure REST API version 2024-01-01-preview. In version 2.x of the Azure Native provider, it used API version 2023-05-01-preview.

Other available API versions: 2023-05-01-preview, 2023-07-01-preview, 2023-09-01-preview, 2023-11-01-preview, 2023-12-01, 2024-05-01-preview. These can be accessed by generating a local SDK package using the CLI command pulumi package add azure-native appplatform [ApiVersion]. See the version guide for details.

Example Usage

BuildService_CreateOrUpdateBuild

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;

return await Deployment.RunAsync(() => 
{
    var buildServiceBuild = new AzureNative.AppPlatform.BuildServiceBuild("buildServiceBuild", new()
    {
        BuildName = "mybuild",
        BuildServiceName = "default",
        Properties = new AzureNative.AppPlatform.Inputs.BuildPropertiesArgs
        {
            AgentPool = "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.AppPlatform/Spring/myservice/buildServices/default/agentPools/default",
            Apms = new[]
            {
                new AzureNative.AppPlatform.Inputs.ApmReferenceArgs
                {
                    ResourceId = "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.AppPlatform/Spring/myservice/apms/myappinsights",
                },
            },
            Builder = "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.AppPlatform/Spring/myservice/buildServices/default/builders/default",
            Certificates = new[]
            {
                new AzureNative.AppPlatform.Inputs.CertificateReferenceArgs
                {
                    ResourceId = "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.AppPlatform/Spring/myservice/certificates/mycert1",
                },
                new AzureNative.AppPlatform.Inputs.CertificateReferenceArgs
                {
                    ResourceId = "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.AppPlatform/Spring/myservice/certificates/mycert2",
                },
            },
            Env = 
            {
                { "environmentVariable", "test" },
            },
            RelativePath = "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855-20210601-3ed9f4a2-986b-4bbd-b833-a42dccb2f777",
            ResourceRequests = new AzureNative.AppPlatform.Inputs.BuildResourceRequestsArgs
            {
                Cpu = "1",
                Memory = "2Gi",
            },
        },
        ResourceGroupName = "myResourceGroup",
        ServiceName = "myservice",
    });

});
Copy
package main

import (
	appplatform "github.com/pulumi/pulumi-azure-native-sdk/appplatform/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := appplatform.NewBuildServiceBuild(ctx, "buildServiceBuild", &appplatform.BuildServiceBuildArgs{
			BuildName:        pulumi.String("mybuild"),
			BuildServiceName: pulumi.String("default"),
			Properties: &appplatform.BuildPropertiesArgs{
				AgentPool: pulumi.String("/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.AppPlatform/Spring/myservice/buildServices/default/agentPools/default"),
				Apms: appplatform.ApmReferenceArray{
					&appplatform.ApmReferenceArgs{
						ResourceId: pulumi.String("/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.AppPlatform/Spring/myservice/apms/myappinsights"),
					},
				},
				Builder: pulumi.String("/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.AppPlatform/Spring/myservice/buildServices/default/builders/default"),
				Certificates: appplatform.CertificateReferenceArray{
					&appplatform.CertificateReferenceArgs{
						ResourceId: pulumi.String("/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.AppPlatform/Spring/myservice/certificates/mycert1"),
					},
					&appplatform.CertificateReferenceArgs{
						ResourceId: pulumi.String("/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.AppPlatform/Spring/myservice/certificates/mycert2"),
					},
				},
				Env: pulumi.StringMap{
					"environmentVariable": pulumi.String("test"),
				},
				RelativePath: pulumi.String("e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855-20210601-3ed9f4a2-986b-4bbd-b833-a42dccb2f777"),
				ResourceRequests: &appplatform.BuildResourceRequestsArgs{
					Cpu:    pulumi.String("1"),
					Memory: pulumi.String("2Gi"),
				},
			},
			ResourceGroupName: pulumi.String("myResourceGroup"),
			ServiceName:       pulumi.String("myservice"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.appplatform.BuildServiceBuild;
import com.pulumi.azurenative.appplatform.BuildServiceBuildArgs;
import com.pulumi.azurenative.appplatform.inputs.BuildPropertiesArgs;
import com.pulumi.azurenative.appplatform.inputs.BuildResourceRequestsArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;

public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }

    public static void stack(Context ctx) {
        var buildServiceBuild = new BuildServiceBuild("buildServiceBuild", BuildServiceBuildArgs.builder()
            .buildName("mybuild")
            .buildServiceName("default")
            .properties(BuildPropertiesArgs.builder()
                .agentPool("/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.AppPlatform/Spring/myservice/buildServices/default/agentPools/default")
                .apms(ApmReferenceArgs.builder()
                    .resourceId("/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.AppPlatform/Spring/myservice/apms/myappinsights")
                    .build())
                .builder("/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.AppPlatform/Spring/myservice/buildServices/default/builders/default")
                .certificates(                
                    CertificateReferenceArgs.builder()
                        .resourceId("/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.AppPlatform/Spring/myservice/certificates/mycert1")
                        .build(),
                    CertificateReferenceArgs.builder()
                        .resourceId("/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.AppPlatform/Spring/myservice/certificates/mycert2")
                        .build())
                .env(Map.of("environmentVariable", "test"))
                .relativePath("e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855-20210601-3ed9f4a2-986b-4bbd-b833-a42dccb2f777")
                .resourceRequests(BuildResourceRequestsArgs.builder()
                    .cpu("1")
                    .memory("2Gi")
                    .build())
                .build())
            .resourceGroupName("myResourceGroup")
            .serviceName("myservice")
            .build());

    }
}
Copy
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";

const buildServiceBuild = new azure_native.appplatform.BuildServiceBuild("buildServiceBuild", {
    buildName: "mybuild",
    buildServiceName: "default",
    properties: {
        agentPool: "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.AppPlatform/Spring/myservice/buildServices/default/agentPools/default",
        apms: [{
            resourceId: "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.AppPlatform/Spring/myservice/apms/myappinsights",
        }],
        builder: "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.AppPlatform/Spring/myservice/buildServices/default/builders/default",
        certificates: [
            {
                resourceId: "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.AppPlatform/Spring/myservice/certificates/mycert1",
            },
            {
                resourceId: "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.AppPlatform/Spring/myservice/certificates/mycert2",
            },
        ],
        env: {
            environmentVariable: "test",
        },
        relativePath: "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855-20210601-3ed9f4a2-986b-4bbd-b833-a42dccb2f777",
        resourceRequests: {
            cpu: "1",
            memory: "2Gi",
        },
    },
    resourceGroupName: "myResourceGroup",
    serviceName: "myservice",
});
Copy
import pulumi
import pulumi_azure_native as azure_native

build_service_build = azure_native.appplatform.BuildServiceBuild("buildServiceBuild",
    build_name="mybuild",
    build_service_name="default",
    properties={
        "agent_pool": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.AppPlatform/Spring/myservice/buildServices/default/agentPools/default",
        "apms": [{
            "resource_id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.AppPlatform/Spring/myservice/apms/myappinsights",
        }],
        "builder": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.AppPlatform/Spring/myservice/buildServices/default/builders/default",
        "certificates": [
            {
                "resource_id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.AppPlatform/Spring/myservice/certificates/mycert1",
            },
            {
                "resource_id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.AppPlatform/Spring/myservice/certificates/mycert2",
            },
        ],
        "env": {
            "environmentVariable": "test",
        },
        "relative_path": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855-20210601-3ed9f4a2-986b-4bbd-b833-a42dccb2f777",
        "resource_requests": {
            "cpu": "1",
            "memory": "2Gi",
        },
    },
    resource_group_name="myResourceGroup",
    service_name="myservice")
Copy
resources:
  buildServiceBuild:
    type: azure-native:appplatform:BuildServiceBuild
    properties:
      buildName: mybuild
      buildServiceName: default
      properties:
        agentPool: /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.AppPlatform/Spring/myservice/buildServices/default/agentPools/default
        apms:
          - resourceId: /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.AppPlatform/Spring/myservice/apms/myappinsights
        builder: /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.AppPlatform/Spring/myservice/buildServices/default/builders/default
        certificates:
          - resourceId: /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.AppPlatform/Spring/myservice/certificates/mycert1
          - resourceId: /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.AppPlatform/Spring/myservice/certificates/mycert2
        env:
          environmentVariable: test
        relativePath: e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855-20210601-3ed9f4a2-986b-4bbd-b833-a42dccb2f777
        resourceRequests:
          cpu: '1'
          memory: 2Gi
      resourceGroupName: myResourceGroup
      serviceName: myservice
Copy

Create BuildServiceBuild Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new BuildServiceBuild(name: string, args: BuildServiceBuildArgs, opts?: CustomResourceOptions);
@overload
def BuildServiceBuild(resource_name: str,
                      args: BuildServiceBuildArgs,
                      opts: Optional[ResourceOptions] = None)

@overload
def BuildServiceBuild(resource_name: str,
                      opts: Optional[ResourceOptions] = None,
                      build_service_name: Optional[str] = None,
                      resource_group_name: Optional[str] = None,
                      service_name: Optional[str] = None,
                      build_name: Optional[str] = None,
                      properties: Optional[BuildPropertiesArgs] = None)
func NewBuildServiceBuild(ctx *Context, name string, args BuildServiceBuildArgs, opts ...ResourceOption) (*BuildServiceBuild, error)
public BuildServiceBuild(string name, BuildServiceBuildArgs args, CustomResourceOptions? opts = null)
public BuildServiceBuild(String name, BuildServiceBuildArgs args)
public BuildServiceBuild(String name, BuildServiceBuildArgs args, CustomResourceOptions options)
type: azure-native:appplatform:BuildServiceBuild
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. BuildServiceBuildArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. BuildServiceBuildArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. BuildServiceBuildArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. BuildServiceBuildArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. BuildServiceBuildArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

Constructor example

The following reference example uses placeholder values for all input properties.

var buildServiceBuildResource = new AzureNative.AppPlatform.BuildServiceBuild("buildServiceBuildResource", new()
{
    BuildServiceName = "string",
    ResourceGroupName = "string",
    ServiceName = "string",
    BuildName = "string",
    Properties = new AzureNative.AppPlatform.Inputs.BuildPropertiesArgs
    {
        AgentPool = "string",
        Apms = new[]
        {
            new AzureNative.AppPlatform.Inputs.ApmReferenceArgs
            {
                ResourceId = "string",
            },
        },
        Builder = "string",
        Certificates = new[]
        {
            new AzureNative.AppPlatform.Inputs.CertificateReferenceArgs
            {
                ResourceId = "string",
            },
        },
        Env = 
        {
            { "string", "string" },
        },
        RelativePath = "string",
        ResourceRequests = new AzureNative.AppPlatform.Inputs.BuildResourceRequestsArgs
        {
            Cpu = "string",
            Memory = "string",
        },
    },
});
Copy
example, err := appplatform.NewBuildServiceBuild(ctx, "buildServiceBuildResource", &appplatform.BuildServiceBuildArgs{
	BuildServiceName:  pulumi.String("string"),
	ResourceGroupName: pulumi.String("string"),
	ServiceName:       pulumi.String("string"),
	BuildName:         pulumi.String("string"),
	Properties: &appplatform.BuildPropertiesArgs{
		AgentPool: pulumi.String("string"),
		Apms: appplatform.ApmReferenceArray{
			&appplatform.ApmReferenceArgs{
				ResourceId: pulumi.String("string"),
			},
		},
		Builder: pulumi.String("string"),
		Certificates: appplatform.CertificateReferenceArray{
			&appplatform.CertificateReferenceArgs{
				ResourceId: pulumi.String("string"),
			},
		},
		Env: pulumi.StringMap{
			"string": pulumi.String("string"),
		},
		RelativePath: pulumi.String("string"),
		ResourceRequests: &appplatform.BuildResourceRequestsArgs{
			Cpu:    pulumi.String("string"),
			Memory: pulumi.String("string"),
		},
	},
})
Copy
var buildServiceBuildResource = new BuildServiceBuild("buildServiceBuildResource", BuildServiceBuildArgs.builder()
    .buildServiceName("string")
    .resourceGroupName("string")
    .serviceName("string")
    .buildName("string")
    .properties(BuildPropertiesArgs.builder()
        .agentPool("string")
        .apms(ApmReferenceArgs.builder()
            .resourceId("string")
            .build())
        .builder("string")
        .certificates(CertificateReferenceArgs.builder()
            .resourceId("string")
            .build())
        .env(Map.of("string", "string"))
        .relativePath("string")
        .resourceRequests(BuildResourceRequestsArgs.builder()
            .cpu("string")
            .memory("string")
            .build())
        .build())
    .build());
Copy
build_service_build_resource = azure_native.appplatform.BuildServiceBuild("buildServiceBuildResource",
    build_service_name="string",
    resource_group_name="string",
    service_name="string",
    build_name="string",
    properties={
        "agent_pool": "string",
        "apms": [{
            "resource_id": "string",
        }],
        "builder": "string",
        "certificates": [{
            "resource_id": "string",
        }],
        "env": {
            "string": "string",
        },
        "relative_path": "string",
        "resource_requests": {
            "cpu": "string",
            "memory": "string",
        },
    })
Copy
const buildServiceBuildResource = new azure_native.appplatform.BuildServiceBuild("buildServiceBuildResource", {
    buildServiceName: "string",
    resourceGroupName: "string",
    serviceName: "string",
    buildName: "string",
    properties: {
        agentPool: "string",
        apms: [{
            resourceId: "string",
        }],
        builder: "string",
        certificates: [{
            resourceId: "string",
        }],
        env: {
            string: "string",
        },
        relativePath: "string",
        resourceRequests: {
            cpu: "string",
            memory: "string",
        },
    },
});
Copy
type: azure-native:appplatform:BuildServiceBuild
properties:
    buildName: string
    buildServiceName: string
    properties:
        agentPool: string
        apms:
            - resourceId: string
        builder: string
        certificates:
            - resourceId: string
        env:
            string: string
        relativePath: string
        resourceRequests:
            cpu: string
            memory: string
    resourceGroupName: string
    serviceName: string
Copy

BuildServiceBuild Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

Inputs

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The BuildServiceBuild resource accepts the following input properties:

BuildServiceName
This property is required.
Changes to this property will trigger replacement.
string
The name of the build service resource.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.
ServiceName
This property is required.
Changes to this property will trigger replacement.
string
The name of the Service resource.
BuildName Changes to this property will trigger replacement. string
The name of the build resource.
Properties Pulumi.AzureNative.AppPlatform.Inputs.BuildProperties
Properties of the build resource
BuildServiceName
This property is required.
Changes to this property will trigger replacement.
string
The name of the build service resource.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.
ServiceName
This property is required.
Changes to this property will trigger replacement.
string
The name of the Service resource.
BuildName Changes to this property will trigger replacement. string
The name of the build resource.
Properties BuildPropertiesArgs
Properties of the build resource
buildServiceName
This property is required.
Changes to this property will trigger replacement.
String
The name of the build service resource.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.
serviceName
This property is required.
Changes to this property will trigger replacement.
String
The name of the Service resource.
buildName Changes to this property will trigger replacement. String
The name of the build resource.
properties BuildProperties
Properties of the build resource
buildServiceName
This property is required.
Changes to this property will trigger replacement.
string
The name of the build service resource.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.
serviceName
This property is required.
Changes to this property will trigger replacement.
string
The name of the Service resource.
buildName Changes to this property will trigger replacement. string
The name of the build resource.
properties BuildProperties
Properties of the build resource
build_service_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the build service resource.
resource_group_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.
service_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the Service resource.
build_name Changes to this property will trigger replacement. str
The name of the build resource.
properties BuildPropertiesArgs
Properties of the build resource
buildServiceName
This property is required.
Changes to this property will trigger replacement.
String
The name of the build service resource.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.
serviceName
This property is required.
Changes to this property will trigger replacement.
String
The name of the Service resource.
buildName Changes to this property will trigger replacement. String
The name of the build resource.
properties Property Map
Properties of the build resource

Outputs

All input properties are implicitly available as output properties. Additionally, the BuildServiceBuild resource produces the following output properties:

AzureApiVersion string
The Azure API version of the resource.
Id string
The provider-assigned unique ID for this managed resource.
Name string
The name of the resource.
SystemData Pulumi.AzureNative.AppPlatform.Outputs.SystemDataResponse
Metadata pertaining to creation and last modification of the resource.
Type string
The type of the resource.
AzureApiVersion string
The Azure API version of the resource.
Id string
The provider-assigned unique ID for this managed resource.
Name string
The name of the resource.
SystemData SystemDataResponse
Metadata pertaining to creation and last modification of the resource.
Type string
The type of the resource.
azureApiVersion String
The Azure API version of the resource.
id String
The provider-assigned unique ID for this managed resource.
name String
The name of the resource.
systemData SystemDataResponse
Metadata pertaining to creation and last modification of the resource.
type String
The type of the resource.
azureApiVersion string
The Azure API version of the resource.
id string
The provider-assigned unique ID for this managed resource.
name string
The name of the resource.
systemData SystemDataResponse
Metadata pertaining to creation and last modification of the resource.
type string
The type of the resource.
azure_api_version str
The Azure API version of the resource.
id str
The provider-assigned unique ID for this managed resource.
name str
The name of the resource.
system_data SystemDataResponse
Metadata pertaining to creation and last modification of the resource.
type str
The type of the resource.
azureApiVersion String
The Azure API version of the resource.
id String
The provider-assigned unique ID for this managed resource.
name String
The name of the resource.
systemData Property Map
Metadata pertaining to creation and last modification of the resource.
type String
The type of the resource.

Supporting Types

ApmReference
, ApmReferenceArgs

ResourceId This property is required. string
Resource Id of the APM
ResourceId This property is required. string
Resource Id of the APM
resourceId This property is required. String
Resource Id of the APM
resourceId This property is required. string
Resource Id of the APM
resource_id This property is required. str
Resource Id of the APM
resourceId This property is required. String
Resource Id of the APM

ApmReferenceResponse
, ApmReferenceResponseArgs

ResourceId This property is required. string
Resource Id of the APM
ResourceId This property is required. string
Resource Id of the APM
resourceId This property is required. String
Resource Id of the APM
resourceId This property is required. string
Resource Id of the APM
resource_id This property is required. str
Resource Id of the APM
resourceId This property is required. String
Resource Id of the APM

BuildProperties
, BuildPropertiesArgs

AgentPool string
The resource id of agent pool
Apms List<Pulumi.AzureNative.AppPlatform.Inputs.ApmReference>
The APMs for this build
Builder string
The resource id of builder to build the source code
Certificates List<Pulumi.AzureNative.AppPlatform.Inputs.CertificateReference>
The CA Certificates for this build
Env Dictionary<string, string>
The environment variables for this build
RelativePath string
The relative path of source code
ResourceRequests Pulumi.AzureNative.AppPlatform.Inputs.BuildResourceRequests
The customized build resource for this build
AgentPool string
The resource id of agent pool
Apms []ApmReference
The APMs for this build
Builder string
The resource id of builder to build the source code
Certificates []CertificateReference
The CA Certificates for this build
Env map[string]string
The environment variables for this build
RelativePath string
The relative path of source code
ResourceRequests BuildResourceRequests
The customized build resource for this build
agentPool String
The resource id of agent pool
apms List<ApmReference>
The APMs for this build
builder_ String
The resource id of builder to build the source code
certificates List<CertificateReference>
The CA Certificates for this build
env Map<String,String>
The environment variables for this build
relativePath String
The relative path of source code
resourceRequests BuildResourceRequests
The customized build resource for this build
agentPool string
The resource id of agent pool
apms ApmReference[]
The APMs for this build
builder string
The resource id of builder to build the source code
certificates CertificateReference[]
The CA Certificates for this build
env {[key: string]: string}
The environment variables for this build
relativePath string
The relative path of source code
resourceRequests BuildResourceRequests
The customized build resource for this build
agent_pool str
The resource id of agent pool
apms Sequence[ApmReference]
The APMs for this build
builder str
The resource id of builder to build the source code
certificates Sequence[CertificateReference]
The CA Certificates for this build
env Mapping[str, str]
The environment variables for this build
relative_path str
The relative path of source code
resource_requests BuildResourceRequests
The customized build resource for this build
agentPool String
The resource id of agent pool
apms List<Property Map>
The APMs for this build
builder String
The resource id of builder to build the source code
certificates List<Property Map>
The CA Certificates for this build
env Map<String>
The environment variables for this build
relativePath String
The relative path of source code
resourceRequests Property Map
The customized build resource for this build

BuildPropertiesResponse
, BuildPropertiesResponseArgs

ProvisioningState This property is required. string
Provisioning state of the KPack build result
TriggeredBuildResult This property is required. Pulumi.AzureNative.AppPlatform.Inputs.TriggeredBuildResultResponse
The build result triggered by this build
AgentPool string
The resource id of agent pool
Apms List<Pulumi.AzureNative.AppPlatform.Inputs.ApmReferenceResponse>
The APMs for this build
Builder string
The resource id of builder to build the source code
Certificates List<Pulumi.AzureNative.AppPlatform.Inputs.CertificateReferenceResponse>
The CA Certificates for this build
Env Dictionary<string, string>
The environment variables for this build
RelativePath string
The relative path of source code
ResourceRequests Pulumi.AzureNative.AppPlatform.Inputs.BuildResourceRequestsResponse
The customized build resource for this build
ProvisioningState This property is required. string
Provisioning state of the KPack build result
TriggeredBuildResult This property is required. TriggeredBuildResultResponse
The build result triggered by this build
AgentPool string
The resource id of agent pool
Apms []ApmReferenceResponse
The APMs for this build
Builder string
The resource id of builder to build the source code
Certificates []CertificateReferenceResponse
The CA Certificates for this build
Env map[string]string
The environment variables for this build
RelativePath string
The relative path of source code
ResourceRequests BuildResourceRequestsResponse
The customized build resource for this build
provisioningState This property is required. String
Provisioning state of the KPack build result
triggeredBuildResult This property is required. TriggeredBuildResultResponse
The build result triggered by this build
agentPool String
The resource id of agent pool
apms List<ApmReferenceResponse>
The APMs for this build
builder_ String
The resource id of builder to build the source code
certificates List<CertificateReferenceResponse>
The CA Certificates for this build
env Map<String,String>
The environment variables for this build
relativePath String
The relative path of source code
resourceRequests BuildResourceRequestsResponse
The customized build resource for this build
provisioningState This property is required. string
Provisioning state of the KPack build result
triggeredBuildResult This property is required. TriggeredBuildResultResponse
The build result triggered by this build
agentPool string
The resource id of agent pool
apms ApmReferenceResponse[]
The APMs for this build
builder string
The resource id of builder to build the source code
certificates CertificateReferenceResponse[]
The CA Certificates for this build
env {[key: string]: string}
The environment variables for this build
relativePath string
The relative path of source code
resourceRequests BuildResourceRequestsResponse
The customized build resource for this build
provisioning_state This property is required. str
Provisioning state of the KPack build result
triggered_build_result This property is required. TriggeredBuildResultResponse
The build result triggered by this build
agent_pool str
The resource id of agent pool
apms Sequence[ApmReferenceResponse]
The APMs for this build
builder str
The resource id of builder to build the source code
certificates Sequence[CertificateReferenceResponse]
The CA Certificates for this build
env Mapping[str, str]
The environment variables for this build
relative_path str
The relative path of source code
resource_requests BuildResourceRequestsResponse
The customized build resource for this build
provisioningState This property is required. String
Provisioning state of the KPack build result
triggeredBuildResult This property is required. Property Map
The build result triggered by this build
agentPool String
The resource id of agent pool
apms List<Property Map>
The APMs for this build
builder String
The resource id of builder to build the source code
certificates List<Property Map>
The CA Certificates for this build
env Map<String>
The environment variables for this build
relativePath String
The relative path of source code
resourceRequests Property Map
The customized build resource for this build

BuildResourceRequests
, BuildResourceRequestsArgs

Cpu string
Optional Cpu allocated to the build resource. 1 core can be represented by 1 or 1000m. The default value is 1, this should not exceed build service agent pool cpu size.
Memory string
Optional Memory allocated to the build resource. 1 GB can be represented by 1Gi or 1024Mi. The default value is 2Gi, this should not exceed build service agent pool memory size.
Cpu string
Optional Cpu allocated to the build resource. 1 core can be represented by 1 or 1000m. The default value is 1, this should not exceed build service agent pool cpu size.
Memory string
Optional Memory allocated to the build resource. 1 GB can be represented by 1Gi or 1024Mi. The default value is 2Gi, this should not exceed build service agent pool memory size.
cpu String
Optional Cpu allocated to the build resource. 1 core can be represented by 1 or 1000m. The default value is 1, this should not exceed build service agent pool cpu size.
memory String
Optional Memory allocated to the build resource. 1 GB can be represented by 1Gi or 1024Mi. The default value is 2Gi, this should not exceed build service agent pool memory size.
cpu string
Optional Cpu allocated to the build resource. 1 core can be represented by 1 or 1000m. The default value is 1, this should not exceed build service agent pool cpu size.
memory string
Optional Memory allocated to the build resource. 1 GB can be represented by 1Gi or 1024Mi. The default value is 2Gi, this should not exceed build service agent pool memory size.
cpu str
Optional Cpu allocated to the build resource. 1 core can be represented by 1 or 1000m. The default value is 1, this should not exceed build service agent pool cpu size.
memory str
Optional Memory allocated to the build resource. 1 GB can be represented by 1Gi or 1024Mi. The default value is 2Gi, this should not exceed build service agent pool memory size.
cpu String
Optional Cpu allocated to the build resource. 1 core can be represented by 1 or 1000m. The default value is 1, this should not exceed build service agent pool cpu size.
memory String
Optional Memory allocated to the build resource. 1 GB can be represented by 1Gi or 1024Mi. The default value is 2Gi, this should not exceed build service agent pool memory size.

BuildResourceRequestsResponse
, BuildResourceRequestsResponseArgs

Cpu string
Optional Cpu allocated to the build resource. 1 core can be represented by 1 or 1000m. The default value is 1, this should not exceed build service agent pool cpu size.
Memory string
Optional Memory allocated to the build resource. 1 GB can be represented by 1Gi or 1024Mi. The default value is 2Gi, this should not exceed build service agent pool memory size.
Cpu string
Optional Cpu allocated to the build resource. 1 core can be represented by 1 or 1000m. The default value is 1, this should not exceed build service agent pool cpu size.
Memory string
Optional Memory allocated to the build resource. 1 GB can be represented by 1Gi or 1024Mi. The default value is 2Gi, this should not exceed build service agent pool memory size.
cpu String
Optional Cpu allocated to the build resource. 1 core can be represented by 1 or 1000m. The default value is 1, this should not exceed build service agent pool cpu size.
memory String
Optional Memory allocated to the build resource. 1 GB can be represented by 1Gi or 1024Mi. The default value is 2Gi, this should not exceed build service agent pool memory size.
cpu string
Optional Cpu allocated to the build resource. 1 core can be represented by 1 or 1000m. The default value is 1, this should not exceed build service agent pool cpu size.
memory string
Optional Memory allocated to the build resource. 1 GB can be represented by 1Gi or 1024Mi. The default value is 2Gi, this should not exceed build service agent pool memory size.
cpu str
Optional Cpu allocated to the build resource. 1 core can be represented by 1 or 1000m. The default value is 1, this should not exceed build service agent pool cpu size.
memory str
Optional Memory allocated to the build resource. 1 GB can be represented by 1Gi or 1024Mi. The default value is 2Gi, this should not exceed build service agent pool memory size.
cpu String
Optional Cpu allocated to the build resource. 1 core can be represented by 1 or 1000m. The default value is 1, this should not exceed build service agent pool cpu size.
memory String
Optional Memory allocated to the build resource. 1 GB can be represented by 1Gi or 1024Mi. The default value is 2Gi, this should not exceed build service agent pool memory size.

CertificateReference
, CertificateReferenceArgs

ResourceId This property is required. string
Resource Id of the certificate
ResourceId This property is required. string
Resource Id of the certificate
resourceId This property is required. String
Resource Id of the certificate
resourceId This property is required. string
Resource Id of the certificate
resource_id This property is required. str
Resource Id of the certificate
resourceId This property is required. String
Resource Id of the certificate

CertificateReferenceResponse
, CertificateReferenceResponseArgs

ResourceId This property is required. string
Resource Id of the certificate
ResourceId This property is required. string
Resource Id of the certificate
resourceId This property is required. String
Resource Id of the certificate
resourceId This property is required. string
Resource Id of the certificate
resource_id This property is required. str
Resource Id of the certificate
resourceId This property is required. String
Resource Id of the certificate

SystemDataResponse
, SystemDataResponseArgs

CreatedAt string
The timestamp of resource creation (UTC).
CreatedBy string
The identity that created the resource.
CreatedByType string
The type of identity that created the resource.
LastModifiedAt string
The timestamp of resource modification (UTC).
LastModifiedBy string
The identity that last modified the resource.
LastModifiedByType string
The type of identity that last modified the resource.
CreatedAt string
The timestamp of resource creation (UTC).
CreatedBy string
The identity that created the resource.
CreatedByType string
The type of identity that created the resource.
LastModifiedAt string
The timestamp of resource modification (UTC).
LastModifiedBy string
The identity that last modified the resource.
LastModifiedByType string
The type of identity that last modified the resource.
createdAt String
The timestamp of resource creation (UTC).
createdBy String
The identity that created the resource.
createdByType String
The type of identity that created the resource.
lastModifiedAt String
The timestamp of resource modification (UTC).
lastModifiedBy String
The identity that last modified the resource.
lastModifiedByType String
The type of identity that last modified the resource.
createdAt string
The timestamp of resource creation (UTC).
createdBy string
The identity that created the resource.
createdByType string
The type of identity that created the resource.
lastModifiedAt string
The timestamp of resource modification (UTC).
lastModifiedBy string
The identity that last modified the resource.
lastModifiedByType string
The type of identity that last modified the resource.
created_at str
The timestamp of resource creation (UTC).
created_by str
The identity that created the resource.
created_by_type str
The type of identity that created the resource.
last_modified_at str
The timestamp of resource modification (UTC).
last_modified_by str
The identity that last modified the resource.
last_modified_by_type str
The type of identity that last modified the resource.
createdAt String
The timestamp of resource creation (UTC).
createdBy String
The identity that created the resource.
createdByType String
The type of identity that created the resource.
lastModifiedAt String
The timestamp of resource modification (UTC).
lastModifiedBy String
The identity that last modified the resource.
lastModifiedByType String
The type of identity that last modified the resource.

TriggeredBuildResultResponse
, TriggeredBuildResultResponseArgs

ProvisioningState This property is required. string
The provisioning state of this build result
Id string
The unique build id of this build result
Image string
The container image of this build result
LastTransitionReason string
The last transition reason of this build result
LastTransitionStatus string
The last transition status of this build result
LastTransitionTime string
The last transition time of this build result
ProvisioningState This property is required. string
The provisioning state of this build result
Id string
The unique build id of this build result
Image string
The container image of this build result
LastTransitionReason string
The last transition reason of this build result
LastTransitionStatus string
The last transition status of this build result
LastTransitionTime string
The last transition time of this build result
provisioningState This property is required. String
The provisioning state of this build result
id String
The unique build id of this build result
image String
The container image of this build result
lastTransitionReason String
The last transition reason of this build result
lastTransitionStatus String
The last transition status of this build result
lastTransitionTime String
The last transition time of this build result
provisioningState This property is required. string
The provisioning state of this build result
id string
The unique build id of this build result
image string
The container image of this build result
lastTransitionReason string
The last transition reason of this build result
lastTransitionStatus string
The last transition status of this build result
lastTransitionTime string
The last transition time of this build result
provisioning_state This property is required. str
The provisioning state of this build result
id str
The unique build id of this build result
image str
The container image of this build result
last_transition_reason str
The last transition reason of this build result
last_transition_status str
The last transition status of this build result
last_transition_time str
The last transition time of this build result
provisioningState This property is required. String
The provisioning state of this build result
id String
The unique build id of this build result
image String
The container image of this build result
lastTransitionReason String
The last transition reason of this build result
lastTransitionStatus String
The last transition status of this build result
lastTransitionTime String
The last transition time of this build result

Import

An existing resource can be imported using its type token, name, and identifier, e.g.

$ pulumi import azure-native:appplatform:BuildServiceBuild mybuild /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AppPlatform/Spring/{serviceName}/buildServices/{buildServiceName}/builds/{buildName} 
Copy

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
Azure Native pulumi/pulumi-azure-native
License
Apache-2.0
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.0.1 published on Monday, Apr 7, 2025 by Pulumi