azure-native.appplatform.BuildServiceBuilder
Explore with Pulumi AI
KPack Builder resource Azure REST API version: 2023-05-01-preview. Prior API version in Azure Native 1.x: 2022-01-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
BuildServiceBuilder_CreateOrUpdate
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var buildServiceBuilder = new AzureNative.AppPlatform.BuildServiceBuilder("buildServiceBuilder", new()
{
BuildServiceName = "default",
BuilderName = "mybuilder",
Properties = new AzureNative.AppPlatform.Inputs.BuilderPropertiesArgs
{
BuildpackGroups = new[]
{
new AzureNative.AppPlatform.Inputs.BuildpacksGroupPropertiesArgs
{
Buildpacks = new[]
{
new AzureNative.AppPlatform.Inputs.BuildpackPropertiesArgs
{
Id = "tanzu-buildpacks/java-azure",
},
},
Name = "mix",
},
},
Stack = new AzureNative.AppPlatform.Inputs.StackPropertiesArgs
{
Id = "io.buildpacks.stacks.bionic",
Version = "base",
},
},
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.NewBuildServiceBuilder(ctx, "buildServiceBuilder", &appplatform.BuildServiceBuilderArgs{
BuildServiceName: pulumi.String("default"),
BuilderName: pulumi.String("mybuilder"),
Properties: &appplatform.BuilderPropertiesArgs{
BuildpackGroups: appplatform.BuildpacksGroupPropertiesArray{
&appplatform.BuildpacksGroupPropertiesArgs{
Buildpacks: appplatform.BuildpackPropertiesArray{
&appplatform.BuildpackPropertiesArgs{
Id: pulumi.String("tanzu-buildpacks/java-azure"),
},
},
Name: pulumi.String("mix"),
},
},
Stack: &appplatform.StackPropertiesArgs{
Id: pulumi.String("io.buildpacks.stacks.bionic"),
Version: pulumi.String("base"),
},
},
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.BuildServiceBuilder;
import com.pulumi.azurenative.appplatform.BuildServiceBuilderArgs;
import com.pulumi.azurenative.appplatform.inputs.BuilderPropertiesArgs;
import com.pulumi.azurenative.appplatform.inputs.StackPropertiesArgs;
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 buildServiceBuilder = new BuildServiceBuilder("buildServiceBuilder", BuildServiceBuilderArgs.builder()
.buildServiceName("default")
.builderName("mybuilder")
.properties(BuilderPropertiesArgs.builder()
.buildpackGroups(BuildpacksGroupPropertiesArgs.builder()
.buildpacks(BuildpackPropertiesArgs.builder()
.id("tanzu-buildpacks/java-azure")
.build())
.name("mix")
.build())
.stack(StackPropertiesArgs.builder()
.id("io.buildpacks.stacks.bionic")
.version("base")
.build())
.build())
.resourceGroupName("myResourceGroup")
.serviceName("myservice")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
build_service_builder = azure_native.appplatform.BuildServiceBuilder("buildServiceBuilder",
build_service_name="default",
builder_name="mybuilder",
properties={
"buildpack_groups": [{
"buildpacks": [{
"id": "tanzu-buildpacks/java-azure",
}],
"name": "mix",
}],
"stack": {
"id": "io.buildpacks.stacks.bionic",
"version": "base",
},
},
resource_group_name="myResourceGroup",
service_name="myservice")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const buildServiceBuilder = new azure_native.appplatform.BuildServiceBuilder("buildServiceBuilder", {
buildServiceName: "default",
builderName: "mybuilder",
properties: {
buildpackGroups: [{
buildpacks: [{
id: "tanzu-buildpacks/java-azure",
}],
name: "mix",
}],
stack: {
id: "io.buildpacks.stacks.bionic",
version: "base",
},
},
resourceGroupName: "myResourceGroup",
serviceName: "myservice",
});
resources:
buildServiceBuilder:
type: azure-native:appplatform:BuildServiceBuilder
properties:
buildServiceName: default
builderName: mybuilder
properties:
buildpackGroups:
- buildpacks:
- id: tanzu-buildpacks/java-azure
name: mix
stack:
id: io.buildpacks.stacks.bionic
version: base
resourceGroupName: myResourceGroup
serviceName: myservice
Create BuildServiceBuilder Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new BuildServiceBuilder(name: string, args: BuildServiceBuilderArgs, opts?: CustomResourceOptions);
@overload
def BuildServiceBuilder(resource_name: str,
args: BuildServiceBuilderArgs,
opts: Optional[ResourceOptions] = None)
@overload
def BuildServiceBuilder(resource_name: str,
opts: Optional[ResourceOptions] = None,
build_service_name: Optional[str] = None,
resource_group_name: Optional[str] = None,
service_name: Optional[str] = None,
builder_name: Optional[str] = None,
properties: Optional[BuilderPropertiesArgs] = None)
func NewBuildServiceBuilder(ctx *Context, name string, args BuildServiceBuilderArgs, opts ...ResourceOption) (*BuildServiceBuilder, error)
public BuildServiceBuilder(string name, BuildServiceBuilderArgs args, CustomResourceOptions? opts = null)
public BuildServiceBuilder(String name, BuildServiceBuilderArgs args)
public BuildServiceBuilder(String name, BuildServiceBuilderArgs args, CustomResourceOptions options)
type: azure-native:appplatform:BuildServiceBuilder
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 BuildServiceBuilderArgs
- 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 BuildServiceBuilderArgs
- 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 BuildServiceBuilderArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args BuildServiceBuilderArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args BuildServiceBuilderArgs
- 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 buildServiceBuilderResource = new AzureNative.AppPlatform.BuildServiceBuilder("buildServiceBuilderResource", new()
{
BuildServiceName = "string",
ResourceGroupName = "string",
ServiceName = "string",
BuilderName = "string",
Properties = new AzureNative.AppPlatform.Inputs.BuilderPropertiesArgs
{
BuildpackGroups = new[]
{
new AzureNative.AppPlatform.Inputs.BuildpacksGroupPropertiesArgs
{
Buildpacks = new[]
{
new AzureNative.AppPlatform.Inputs.BuildpackPropertiesArgs
{
Id = "string",
},
},
Name = "string",
},
},
Stack = new AzureNative.AppPlatform.Inputs.StackPropertiesArgs
{
Id = "string",
Version = "string",
},
},
});
example, err := appplatform.NewBuildServiceBuilder(ctx, "buildServiceBuilderResource", &appplatform.BuildServiceBuilderArgs{
BuildServiceName: pulumi.String("string"),
ResourceGroupName: pulumi.String("string"),
ServiceName: pulumi.String("string"),
BuilderName: pulumi.String("string"),
Properties: &appplatform.BuilderPropertiesArgs{
BuildpackGroups: appplatform.BuildpacksGroupPropertiesArray{
&appplatform.BuildpacksGroupPropertiesArgs{
Buildpacks: appplatform.BuildpackPropertiesArray{
&appplatform.BuildpackPropertiesArgs{
Id: pulumi.String("string"),
},
},
Name: pulumi.String("string"),
},
},
Stack: &appplatform.StackPropertiesArgs{
Id: pulumi.String("string"),
Version: pulumi.String("string"),
},
},
})
var buildServiceBuilderResource = new BuildServiceBuilder("buildServiceBuilderResource", BuildServiceBuilderArgs.builder()
.buildServiceName("string")
.resourceGroupName("string")
.serviceName("string")
.builderName("string")
.properties(BuilderPropertiesArgs.builder()
.buildpackGroups(BuildpacksGroupPropertiesArgs.builder()
.buildpacks(BuildpackPropertiesArgs.builder()
.id("string")
.build())
.name("string")
.build())
.stack(StackPropertiesArgs.builder()
.id("string")
.version("string")
.build())
.build())
.build());
build_service_builder_resource = azure_native.appplatform.BuildServiceBuilder("buildServiceBuilderResource",
build_service_name="string",
resource_group_name="string",
service_name="string",
builder_name="string",
properties={
"buildpackGroups": [{
"buildpacks": [{
"id": "string",
}],
"name": "string",
}],
"stack": {
"id": "string",
"version": "string",
},
})
const buildServiceBuilderResource = new azure_native.appplatform.BuildServiceBuilder("buildServiceBuilderResource", {
buildServiceName: "string",
resourceGroupName: "string",
serviceName: "string",
builderName: "string",
properties: {
buildpackGroups: [{
buildpacks: [{
id: "string",
}],
name: "string",
}],
stack: {
id: "string",
version: "string",
},
},
});
type: azure-native:appplatform:BuildServiceBuilder
properties:
buildServiceName: string
builderName: string
properties:
buildpackGroups:
- buildpacks:
- id: string
name: string
stack:
id: string
version: string
resourceGroupName: string
serviceName: string
BuildServiceBuilder 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 BuildServiceBuilder 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.
- Builder
Name string - The name of the builder resource.
- Properties
Pulumi.
Azure Native. App Platform. Inputs. Builder Properties - Property of the Builder 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.
- Builder
Name string - The name of the builder resource.
- Properties
Builder
Properties Args - Property of the Builder 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.
- builder
Name String - The name of the builder resource.
- properties
Builder
Properties - Property of the Builder 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.
- builder
Name string - The name of the builder resource.
- properties
Builder
Properties - Property of the Builder 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.
- builder_
name str - The name of the builder resource.
- properties
Builder
Properties Args - Property of the Builder 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.
- builder
Name String - The name of the builder resource.
- properties Property Map
- Property of the Builder resource.
Outputs
All input properties are implicitly available as output properties. Additionally, the BuildServiceBuilder 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
BuilderProperties, BuilderPropertiesArgs
- Buildpack
Groups List<Pulumi.Azure Native. App Platform. Inputs. Buildpacks Group Properties> - Builder buildpack groups.
- Stack
Pulumi.
Azure Native. App Platform. Inputs. Stack Properties - Builder cluster stack property.
- Buildpack
Groups []BuildpacksGroup Properties - Builder buildpack groups.
- Stack
Stack
Properties - Builder cluster stack property.
- buildpack
Groups List<BuildpacksGroup Properties> - Builder buildpack groups.
- stack
Stack
Properties - Builder cluster stack property.
- buildpack
Groups BuildpacksGroup Properties[] - Builder buildpack groups.
- stack
Stack
Properties - Builder cluster stack property.
- buildpack_
groups Sequence[BuildpacksGroup Properties] - Builder buildpack groups.
- stack
Stack
Properties - Builder cluster stack property.
- buildpack
Groups List<Property Map> - Builder buildpack groups.
- stack Property Map
- Builder cluster stack property.
BuilderPropertiesResponse, BuilderPropertiesResponseArgs
- Provisioning
State string - Builder provision status.
- Buildpack
Groups List<Pulumi.Azure Native. App Platform. Inputs. Buildpacks Group Properties Response> - Builder buildpack groups.
- Stack
Pulumi.
Azure Native. App Platform. Inputs. Stack Properties Response - Builder cluster stack property.
- Provisioning
State string - Builder provision status.
- Buildpack
Groups []BuildpacksGroup Properties Response - Builder buildpack groups.
- Stack
Stack
Properties Response - Builder cluster stack property.
- provisioning
State String - Builder provision status.
- buildpack
Groups List<BuildpacksGroup Properties Response> - Builder buildpack groups.
- stack
Stack
Properties Response - Builder cluster stack property.
- provisioning
State string - Builder provision status.
- buildpack
Groups BuildpacksGroup Properties Response[] - Builder buildpack groups.
- stack
Stack
Properties Response - Builder cluster stack property.
- provisioning_
state str - Builder provision status.
- buildpack_
groups Sequence[BuildpacksGroup Properties Response] - Builder buildpack groups.
- stack
Stack
Properties Response - Builder cluster stack property.
- provisioning
State String - Builder provision status.
- buildpack
Groups List<Property Map> - Builder buildpack groups.
- stack Property Map
- Builder cluster stack property.
BuildpackProperties, BuildpackPropertiesArgs
- Id string
- Id of the buildpack
- Id string
- Id of the buildpack
- id String
- Id of the buildpack
- id string
- Id of the buildpack
- id str
- Id of the buildpack
- id String
- Id of the buildpack
BuildpackPropertiesResponse, BuildpackPropertiesResponseArgs
- Id string
- Id of the buildpack
- Id string
- Id of the buildpack
- id String
- Id of the buildpack
- id string
- Id of the buildpack
- id str
- Id of the buildpack
- id String
- Id of the buildpack
BuildpacksGroupProperties, BuildpacksGroupPropertiesArgs
- Buildpacks
List<Pulumi.
Azure Native. App Platform. Inputs. Buildpack Properties> - Buildpacks in the buildpack group
- Name string
- Buildpack group name
- Buildpacks
[]Buildpack
Properties - Buildpacks in the buildpack group
- Name string
- Buildpack group name
- buildpacks
List<Buildpack
Properties> - Buildpacks in the buildpack group
- name String
- Buildpack group name
- buildpacks
Buildpack
Properties[] - Buildpacks in the buildpack group
- name string
- Buildpack group name
- buildpacks
Sequence[Buildpack
Properties] - Buildpacks in the buildpack group
- name str
- Buildpack group name
- buildpacks List<Property Map>
- Buildpacks in the buildpack group
- name String
- Buildpack group name
BuildpacksGroupPropertiesResponse, BuildpacksGroupPropertiesResponseArgs
- Buildpacks
List<Pulumi.
Azure Native. App Platform. Inputs. Buildpack Properties Response> - Buildpacks in the buildpack group
- Name string
- Buildpack group name
- Buildpacks
[]Buildpack
Properties Response - Buildpacks in the buildpack group
- Name string
- Buildpack group name
- buildpacks
List<Buildpack
Properties Response> - Buildpacks in the buildpack group
- name String
- Buildpack group name
- buildpacks
Buildpack
Properties Response[] - Buildpacks in the buildpack group
- name string
- Buildpack group name
- buildpacks
Sequence[Buildpack
Properties Response] - Buildpacks in the buildpack group
- name str
- Buildpack group name
- buildpacks List<Property Map>
- Buildpacks in the buildpack group
- name String
- Buildpack group name
StackProperties, StackPropertiesArgs
StackPropertiesResponse, StackPropertiesResponseArgs
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.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:appplatform:BuildServiceBuilder mybuilder /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AppPlatform/Spring/{serviceName}/buildServices/{buildServiceName}/builders/{builderName}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0