azure-native.appplatform.BuildServiceBuild
Explore with Pulumi AI
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 (
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
})
}
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={
"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": {
"environment_variable": "test",
},
"relative_path": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855-20210601-3ed9f4a2-986b-4bbd-b833-a42dccb2f777",
"resource_requests": {
"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.
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",
},
},
});
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={
"agentPool": "string",
"apms": [{
"resourceId": "string",
}],
"builder": "string",
"certificates": [{
"resourceId": "string",
}],
"env": {
"string": "string",
},
"relativePath": "string",
"resourceRequests": {
"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:
- Build
Service stringName - The name of the build service resource.
- Resource
Group stringName - 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 string - The name of the Service resource.
- Build
Name string - The name of the build resource.
- Properties
Pulumi.
Azure Native. App Platform. Inputs. Build Properties - Properties of the build resource
- Build
Service stringName - The name of the build service resource.
- Resource
Group stringName - 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 string - The name of the Service resource.
- Build
Name string - The name of the build resource.
- Properties
Build
Properties Args - Properties of the build resource
- build
Service StringName - The name of the build service resource.
- resource
Group StringName - 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 String - The name of the Service resource.
- build
Name String - The name of the build resource.
- properties
Build
Properties - Properties of the build resource
- build
Service stringName - The name of the build service resource.
- resource
Group stringName - 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 string - The name of the Service resource.
- build
Name string - The name of the build resource.
- properties
Build
Properties - Properties of the build resource
- build_
service_ strname - The name of the build service resource.
- resource_
group_ strname - 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
Build
Properties Args - Properties of the build resource
- build
Service StringName - The name of the build service resource.
- resource
Group StringName - 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 String - The name of the Service resource.
- build
Name 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.
- System
Data Pulumi.Azure Native. App Platform. Outputs. System Data Response - 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.
- System
Data SystemData Response - 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.
- system
Data SystemData Response - 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.
- system
Data SystemData Response - 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 SystemData Response - 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.
- system
Data Property Map - Metadata pertaining to creation and last modification of the resource.
- type String
- The type of the resource.
Supporting Types
ApmReference, ApmReferenceArgs
- Resource
Id string - Resource Id of the APM
- Resource
Id string - Resource Id of the APM
- resource
Id String - Resource Id of the APM
- resource
Id string - Resource Id of the APM
- resource_
id str - Resource Id of the APM
- resource
Id String - Resource Id of the APM
ApmReferenceResponse, ApmReferenceResponseArgs
- Resource
Id string - Resource Id of the APM
- Resource
Id string - Resource Id of the APM
- resource
Id String - Resource Id of the APM
- resource
Id string - Resource Id of the APM
- resource_
id str - Resource Id of the APM
- resource
Id String - Resource Id of the APM
BuildProperties, BuildPropertiesArgs
- Agent
Pool string - The resource id of agent pool
- Apms
List<Pulumi.
Azure Native. App Platform. Inputs. Apm Reference> - The APMs for this build
- Builder string
- The resource id of builder to build the source code
- Certificates
List<Pulumi.
Azure Native. App Platform. Inputs. Certificate Reference> - The CA Certificates for this build
- Env Dictionary<string, string>
- The environment variables for this build
- Relative
Path string - The relative path of source code
- Resource
Requests Pulumi.Azure Native. App Platform. Inputs. Build Resource Requests - The customized build resource for this build
- Agent
Pool string - The resource id of agent pool
- Apms
[]Apm
Reference - The APMs for this build
- Builder string
- The resource id of builder to build the source code
- Certificates
[]Certificate
Reference - The CA Certificates for this build
- Env map[string]string
- The environment variables for this build
- Relative
Path string - The relative path of source code
- Resource
Requests BuildResource Requests - The customized build resource for this build
- agent
Pool String - The resource id of agent pool
- apms
List<Apm
Reference> - The APMs for this build
- builder_ String
- The resource id of builder to build the source code
- certificates
List<Certificate
Reference> - The CA Certificates for this build
- env Map<String,String>
- The environment variables for this build
- relative
Path String - The relative path of source code
- resource
Requests BuildResource Requests - The customized build resource for this build
- agent
Pool string - The resource id of agent pool
- apms
Apm
Reference[] - The APMs for this build
- builder string
- The resource id of builder to build the source code
- certificates
Certificate
Reference[] - The CA Certificates for this build
- env {[key: string]: string}
- The environment variables for this build
- relative
Path string - The relative path of source code
- resource
Requests BuildResource Requests - The customized build resource for this build
- agent_
pool str - The resource id of agent pool
- apms
Sequence[Apm
Reference] - The APMs for this build
- builder str
- The resource id of builder to build the source code
- certificates
Sequence[Certificate
Reference] - 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 BuildResource Requests - The customized build resource for this build
- agent
Pool 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
- relative
Path String - The relative path of source code
- resource
Requests Property Map - The customized build resource for this build
BuildPropertiesResponse, BuildPropertiesResponseArgs
- Provisioning
State string - Provisioning state of the KPack build result
- Triggered
Build Pulumi.Result Azure Native. App Platform. Inputs. Triggered Build Result Response - The build result triggered by this build
- Agent
Pool string - The resource id of agent pool
- Apms
List<Pulumi.
Azure Native. App Platform. Inputs. Apm Reference Response> - The APMs for this build
- Builder string
- The resource id of builder to build the source code
- Certificates
List<Pulumi.
Azure Native. App Platform. Inputs. Certificate Reference Response> - The CA Certificates for this build
- Env Dictionary<string, string>
- The environment variables for this build
- Relative
Path string - The relative path of source code
- Resource
Requests Pulumi.Azure Native. App Platform. Inputs. Build Resource Requests Response - The customized build resource for this build
- Provisioning
State string - Provisioning state of the KPack build result
- Triggered
Build TriggeredResult Build Result Response - The build result triggered by this build
- Agent
Pool string - The resource id of agent pool
- Apms
[]Apm
Reference Response - The APMs for this build
- Builder string
- The resource id of builder to build the source code
- Certificates
[]Certificate
Reference Response - The CA Certificates for this build
- Env map[string]string
- The environment variables for this build
- Relative
Path string - The relative path of source code
- Resource
Requests BuildResource Requests Response - The customized build resource for this build
- provisioning
State String - Provisioning state of the KPack build result
- triggered
Build TriggeredResult Build Result Response - The build result triggered by this build
- agent
Pool String - The resource id of agent pool
- apms
List<Apm
Reference Response> - The APMs for this build
- builder_ String
- The resource id of builder to build the source code
- certificates
List<Certificate
Reference Response> - The CA Certificates for this build
- env Map<String,String>
- The environment variables for this build
- relative
Path String - The relative path of source code
- resource
Requests BuildResource Requests Response - The customized build resource for this build
- provisioning
State string - Provisioning state of the KPack build result
- triggered
Build TriggeredResult Build Result Response - The build result triggered by this build
- agent
Pool string - The resource id of agent pool
- apms
Apm
Reference Response[] - The APMs for this build
- builder string
- The resource id of builder to build the source code
- certificates
Certificate
Reference Response[] - The CA Certificates for this build
- env {[key: string]: string}
- The environment variables for this build
- relative
Path string - The relative path of source code
- resource
Requests BuildResource Requests Response - The customized build resource for this build
- provisioning_
state str - Provisioning state of the KPack build result
- triggered_
build_ Triggeredresult Build Result Response - The build result triggered by this build
- agent_
pool str - The resource id of agent pool
- apms
Sequence[Apm
Reference Response] - The APMs for this build
- builder str
- The resource id of builder to build the source code
- certificates
Sequence[Certificate
Reference Response] - 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 BuildResource Requests Response - The customized build resource for this build
- provisioning
State String - Provisioning state of the KPack build result
- triggered
Build Property MapResult - The build result triggered by this build
- agent
Pool 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
- relative
Path String - The relative path of source code
- resource
Requests 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
- Resource
Id string - Resource Id of the certificate
- Resource
Id string - Resource Id of the certificate
- resource
Id String - Resource Id of the certificate
- resource
Id string - Resource Id of the certificate
- resource_
id str - Resource Id of the certificate
- resource
Id String - Resource Id of the certificate
CertificateReferenceResponse, CertificateReferenceResponseArgs
- Resource
Id string - Resource Id of the certificate
- Resource
Id string - Resource Id of the certificate
- resource
Id String - Resource Id of the certificate
- resource
Id string - Resource Id of the certificate
- resource_
id str - Resource Id of the certificate
- resource
Id String - Resource Id of the certificate
SystemDataResponse, SystemDataResponseArgs
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource modification (UTC).
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource modification (UTC).
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource modification (UTC).
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
- created
At string - The timestamp of resource creation (UTC).
- created
By string - The identity that created the resource.
- created
By stringType - The type of identity that created the resource.
- last
Modified stringAt - The timestamp of resource modification (UTC).
- last
Modified stringBy - The identity that last modified the resource.
- last
Modified stringBy Type - 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_ strtype - The type of identity that created the resource.
- last_
modified_ strat - The timestamp of resource modification (UTC).
- last_
modified_ strby - The identity that last modified the resource.
- last_
modified_ strby_ type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource modification (UTC).
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - 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