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

azure-native.appplatform.BuildServiceBuild

Explore with Pulumi AI

azure-native logo
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.39.0 published on Monday, Apr 29, 2024 by Pulumi

    Build resource payload Azure REST API version: 2023-05-01-preview.

    Other available API versions: 2023-07-01-preview, 2023-09-01-preview, 2023-11-01-preview, 2023-12-01, 2024-01-01-preview, 2024-05-01-preview.

    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",
        });
    
    });
    
    package main
    
    import (
    	"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
    	})
    }
    
    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());
    
        }
    }
    
    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=azure_native.appplatform.BuildPropertiesArgs(
            agent_pool="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.AppPlatform/Spring/myservice/buildServices/default/agentPools/default",
            apms=[azure_native.appplatform.ApmReferenceArgs(
                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=[
                azure_native.appplatform.CertificateReferenceArgs(
                    resource_id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.AppPlatform/Spring/myservice/certificates/mycert1",
                ),
                azure_native.appplatform.CertificateReferenceArgs(
                    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=azure_native.appplatform.BuildResourceRequestsArgs(
                cpu="1",
                memory="2Gi",
            ),
        ),
        resource_group_name="myResourceGroup",
        service_name="myservice")
    
    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",
    });
    
    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
    

    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 string
    The unique name of the resource.
    args BuildServiceBuildArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args 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 string
    The unique name of the resource.
    args BuildServiceBuildArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args BuildServiceBuildArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args BuildServiceBuildArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    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",
            },
        },
    });
    
    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"),
    },
    },
    })
    
    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());
    
    build_service_build_resource = azure_native.appplatform.BuildServiceBuild("buildServiceBuildResource",
        build_service_name="string",
        resource_group_name="string",
        service_name="string",
        build_name="string",
        properties=azure_native.appplatform.BuildPropertiesArgs(
            agent_pool="string",
            apms=[azure_native.appplatform.ApmReferenceArgs(
                resource_id="string",
            )],
            builder="string",
            certificates=[azure_native.appplatform.CertificateReferenceArgs(
                resource_id="string",
            )],
            env={
                "string": "string",
            },
            relative_path="string",
            resource_requests=azure_native.appplatform.BuildResourceRequestsArgs(
                cpu="string",
                memory="string",
            ),
        ))
    
    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",
            },
        },
    });
    
    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
    

    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

    The BuildServiceBuild resource accepts the following input properties:

    BuildServiceName string
    The name of the build service resource.
    ResourceGroupName 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 string
    The name of the Service resource.
    BuildName string
    The name of the build resource.
    Properties Pulumi.AzureNative.AppPlatform.Inputs.BuildProperties
    Properties of the build resource
    BuildServiceName string
    The name of the build service resource.
    ResourceGroupName 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 string
    The name of the Service resource.
    BuildName string
    The name of the build resource.
    Properties BuildPropertiesArgs
    Properties of the build resource
    buildServiceName String
    The name of the build service resource.
    resourceGroupName 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 String
    The name of the Service resource.
    buildName String
    The name of the build resource.
    properties BuildProperties
    Properties of the build resource
    buildServiceName string
    The name of the build service resource.
    resourceGroupName 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 string
    The name of the Service resource.
    buildName string
    The name of the build resource.
    properties BuildProperties
    Properties of the build resource
    build_service_name str
    The name of the build service resource.
    resource_group_name 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 str
    The name of the Service resource.
    build_name str
    The name of the build resource.
    properties BuildPropertiesArgs
    Properties of the build resource
    buildServiceName String
    The name of the build service resource.
    resourceGroupName 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 String
    The name of the Service resource.
    buildName 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:

    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.
    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.
    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.
    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.
    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.
    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 string
    Resource Id of the APM
    ResourceId string
    Resource Id of the APM
    resourceId String
    Resource Id of the APM
    resourceId string
    Resource Id of the APM
    resource_id str
    Resource Id of the APM
    resourceId String
    Resource Id of the APM

    ApmReferenceResponse, ApmReferenceResponseArgs

    ResourceId string
    Resource Id of the APM
    ResourceId string
    Resource Id of the APM
    resourceId String
    Resource Id of the APM
    resourceId string
    Resource Id of the APM
    resource_id str
    Resource Id of the APM
    resourceId 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 string
    Provisioning state of the KPack build result
    TriggeredBuildResult 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 string
    Provisioning state of the KPack build result
    TriggeredBuildResult 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 String
    Provisioning state of the KPack build result
    triggeredBuildResult 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 string
    Provisioning state of the KPack build result
    triggeredBuildResult 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 str
    Provisioning state of the KPack build result
    triggered_build_result 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 String
    Provisioning state of the KPack build result
    triggeredBuildResult 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 string
    Resource Id of the certificate
    ResourceId string
    Resource Id of the certificate
    resourceId String
    Resource Id of the certificate
    resourceId string
    Resource Id of the certificate
    resource_id str
    Resource Id of the certificate
    resourceId String
    Resource Id of the certificate

    CertificateReferenceResponse, CertificateReferenceResponseArgs

    ResourceId string
    Resource Id of the certificate
    ResourceId string
    Resource Id of the certificate
    resourceId String
    Resource Id of the certificate
    resourceId string
    Resource Id of the certificate
    resource_id str
    Resource Id of the certificate
    resourceId 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

    Id string
    The unique build id of this build result
    Id string
    The unique build id of this build result
    id String
    The unique build id of this build result
    id string
    The unique build id of this build result
    id str
    The unique build id of this build result
    id String
    The unique build id 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} 
    

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

    Package Details

    Repository
    Azure Native pulumi/pulumi-azure-native
    License
    Apache-2.0
    azure-native logo
    This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
    Azure Native v2.39.0 published on Monday, Apr 29, 2024 by Pulumi