Oracle Cloud Infrastructure v2.11.0 published on Thursday, Sep 19, 2024 by Pulumi
oci.DevOps.getBuildPipelineStage
Explore with Pulumi AI
This data source provides details about a specific Build Pipeline Stage resource in Oracle Cloud Infrastructure Devops service.
Retrieves a stage based on the stage ID provided in the request.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testBuildPipelineStage = oci.DevOps.getBuildPipelineStage({
buildPipelineStageId: testBuildPipelineStageOciDevopsBuildPipelineStage.id,
});
import pulumi
import pulumi_oci as oci
test_build_pipeline_stage = oci.DevOps.get_build_pipeline_stage(build_pipeline_stage_id=test_build_pipeline_stage_oci_devops_build_pipeline_stage["id"])
package main
import (
"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/DevOps"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := DevOps.GetBuildPipelineStage(ctx, &devops.GetBuildPipelineStageArgs{
BuildPipelineStageId: testBuildPipelineStageOciDevopsBuildPipelineStage.Id,
}, nil)
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;
return await Deployment.RunAsync(() =>
{
var testBuildPipelineStage = Oci.DevOps.GetBuildPipelineStage.Invoke(new()
{
BuildPipelineStageId = testBuildPipelineStageOciDevopsBuildPipelineStage.Id,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.DevOps.DevOpsFunctions;
import com.pulumi.oci.DevOps.inputs.GetBuildPipelineStageArgs;
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) {
final var testBuildPipelineStage = DevOpsFunctions.getBuildPipelineStage(GetBuildPipelineStageArgs.builder()
.buildPipelineStageId(testBuildPipelineStageOciDevopsBuildPipelineStage.id())
.build());
}
}
variables:
testBuildPipelineStage:
fn::invoke:
Function: oci:DevOps:getBuildPipelineStage
Arguments:
buildPipelineStageId: ${testBuildPipelineStageOciDevopsBuildPipelineStage.id}
Using getBuildPipelineStage
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getBuildPipelineStage(args: GetBuildPipelineStageArgs, opts?: InvokeOptions): Promise<GetBuildPipelineStageResult>
function getBuildPipelineStageOutput(args: GetBuildPipelineStageOutputArgs, opts?: InvokeOptions): Output<GetBuildPipelineStageResult>
def get_build_pipeline_stage(build_pipeline_stage_id: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetBuildPipelineStageResult
def get_build_pipeline_stage_output(build_pipeline_stage_id: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetBuildPipelineStageResult]
func GetBuildPipelineStage(ctx *Context, args *GetBuildPipelineStageArgs, opts ...InvokeOption) (*GetBuildPipelineStageResult, error)
func GetBuildPipelineStageOutput(ctx *Context, args *GetBuildPipelineStageOutputArgs, opts ...InvokeOption) GetBuildPipelineStageResultOutput
> Note: This function is named GetBuildPipelineStage
in the Go SDK.
public static class GetBuildPipelineStage
{
public static Task<GetBuildPipelineStageResult> InvokeAsync(GetBuildPipelineStageArgs args, InvokeOptions? opts = null)
public static Output<GetBuildPipelineStageResult> Invoke(GetBuildPipelineStageInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetBuildPipelineStageResult> getBuildPipelineStage(GetBuildPipelineStageArgs args, InvokeOptions options)
// Output-based functions aren't available in Java yet
fn::invoke:
function: oci:DevOps/getBuildPipelineStage:getBuildPipelineStage
arguments:
# arguments dictionary
The following arguments are supported:
- Build
Pipeline stringStage Id - Unique stage identifier.
- Build
Pipeline stringStage Id - Unique stage identifier.
- build
Pipeline StringStage Id - Unique stage identifier.
- build
Pipeline stringStage Id - Unique stage identifier.
- build_
pipeline_ strstage_ id - Unique stage identifier.
- build
Pipeline StringStage Id - Unique stage identifier.
getBuildPipelineStage Result
The following output properties are available:
- Build
Pipeline stringId - The OCID of the build pipeline.
- Build
Pipeline stringStage Id - Build
Pipeline List<GetStage Predecessor Collections Build Pipeline Stage Build Pipeline Stage Predecessor Collection> - The collection containing the predecessors of a stage.
- Build
Pipeline stringStage Type - Defines the stage type, which is one of the following: BUILD, DELIVER_ARTIFACT, WAIT, and TRIGGER_DEPLOYMENT_PIPELINE.
- Build
Runner List<GetShape Configs Build Pipeline Stage Build Runner Shape Config> - The information about build runner.
- Build
Source List<GetCollections Build Pipeline Stage Build Source Collection> - Collection of build sources.
- Build
Spec stringFile - The path to the build specification file for this environment. The default location of the file if not specified is build_spec.yaml.
- Compartment
Id string - The OCID of the compartment where the pipeline is created.
- Dictionary<string, string>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example:
{"foo-namespace.bar-key": "value"}
- Deliver
Artifact List<GetCollections Build Pipeline Stage Deliver Artifact Collection> - Specifies an array of artifacts that need to be pushed to the artifactory stores.
- Deploy
Pipeline stringId - A target deployment pipeline OCID that will run in this stage.
- Description string
- Optional description about the build stage.
- Display
Name string - Stage display name, which can be renamed and is not necessarily unique. Avoid entering confidential information.
- Dictionary<string, string>
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. See Resource Tags. Example:
{"bar-key": "value"}
- Id string
- Unique identifier that is immutable on creation.
- Image string
- Image name for the build environment.
- Is
Pass boolAll Parameters Enabled - A boolean flag that specifies whether all the parameters must be passed when the deployment is triggered.
- Lifecycle
Details string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- Primary
Build stringSource - Name of the build source where the build_spec.yml file is located. If not specified, then the first entry in the build source collection is chosen as primary build source.
- Private
Access List<GetConfigs Build Pipeline Stage Private Access Config> - Specifies the configuration needed when the target Oracle Cloud Infrastructure resource, i.e., OKE cluster, resides in customer's private network.
- Project
Id string - The OCID of the DevOps project.
- Stage
Execution intTimeout In Seconds - Timeout for the build stage execution. Specify value in seconds.
- State string
- The current state of the stage.
- Dictionary<string, string>
- Usage of system tag keys. These predefined keys are scoped to namespaces. See Resource Tags. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Time
Created string - The time the stage was created. Format defined by RFC3339.
- Time
Updated string - The time the stage was updated. Format defined by RFC3339.
- Wait
Criterias List<GetBuild Pipeline Stage Wait Criteria> - Specifies wait criteria for the Wait stage.
- Build
Pipeline stringId - The OCID of the build pipeline.
- Build
Pipeline stringStage Id - Build
Pipeline []GetStage Predecessor Collections Build Pipeline Stage Build Pipeline Stage Predecessor Collection - The collection containing the predecessors of a stage.
- Build
Pipeline stringStage Type - Defines the stage type, which is one of the following: BUILD, DELIVER_ARTIFACT, WAIT, and TRIGGER_DEPLOYMENT_PIPELINE.
- Build
Runner []GetShape Configs Build Pipeline Stage Build Runner Shape Config - The information about build runner.
- Build
Source []GetCollections Build Pipeline Stage Build Source Collection - Collection of build sources.
- Build
Spec stringFile - The path to the build specification file for this environment. The default location of the file if not specified is build_spec.yaml.
- Compartment
Id string - The OCID of the compartment where the pipeline is created.
- map[string]string
- Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example:
{"foo-namespace.bar-key": "value"}
- Deliver
Artifact []GetCollections Build Pipeline Stage Deliver Artifact Collection - Specifies an array of artifacts that need to be pushed to the artifactory stores.
- Deploy
Pipeline stringId - A target deployment pipeline OCID that will run in this stage.
- Description string
- Optional description about the build stage.
- Display
Name string - Stage display name, which can be renamed and is not necessarily unique. Avoid entering confidential information.
- map[string]string
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. See Resource Tags. Example:
{"bar-key": "value"}
- Id string
- Unique identifier that is immutable on creation.
- Image string
- Image name for the build environment.
- Is
Pass boolAll Parameters Enabled - A boolean flag that specifies whether all the parameters must be passed when the deployment is triggered.
- Lifecycle
Details string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- Primary
Build stringSource - Name of the build source where the build_spec.yml file is located. If not specified, then the first entry in the build source collection is chosen as primary build source.
- Private
Access []GetConfigs Build Pipeline Stage Private Access Config - Specifies the configuration needed when the target Oracle Cloud Infrastructure resource, i.e., OKE cluster, resides in customer's private network.
- Project
Id string - The OCID of the DevOps project.
- Stage
Execution intTimeout In Seconds - Timeout for the build stage execution. Specify value in seconds.
- State string
- The current state of the stage.
- map[string]string
- Usage of system tag keys. These predefined keys are scoped to namespaces. See Resource Tags. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Time
Created string - The time the stage was created. Format defined by RFC3339.
- Time
Updated string - The time the stage was updated. Format defined by RFC3339.
- Wait
Criterias []GetBuild Pipeline Stage Wait Criteria - Specifies wait criteria for the Wait stage.
- build
Pipeline StringId - The OCID of the build pipeline.
- build
Pipeline StringStage Id - build
Pipeline List<GetStage Predecessor Collections Build Pipeline Stage Build Pipeline Stage Predecessor Collection> - The collection containing the predecessors of a stage.
- build
Pipeline StringStage Type - Defines the stage type, which is one of the following: BUILD, DELIVER_ARTIFACT, WAIT, and TRIGGER_DEPLOYMENT_PIPELINE.
- build
Runner List<GetShape Configs Build Pipeline Stage Build Runner Shape Config> - The information about build runner.
- build
Source List<GetCollections Build Pipeline Stage Build Source Collection> - Collection of build sources.
- build
Spec StringFile - The path to the build specification file for this environment. The default location of the file if not specified is build_spec.yaml.
- compartment
Id String - The OCID of the compartment where the pipeline is created.
- Map<String,String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example:
{"foo-namespace.bar-key": "value"}
- deliver
Artifact List<GetCollections Build Pipeline Stage Deliver Artifact Collection> - Specifies an array of artifacts that need to be pushed to the artifactory stores.
- deploy
Pipeline StringId - A target deployment pipeline OCID that will run in this stage.
- description String
- Optional description about the build stage.
- display
Name String - Stage display name, which can be renamed and is not necessarily unique. Avoid entering confidential information.
- Map<String,String>
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. See Resource Tags. Example:
{"bar-key": "value"}
- id String
- Unique identifier that is immutable on creation.
- image String
- Image name for the build environment.
- is
Pass BooleanAll Parameters Enabled - A boolean flag that specifies whether all the parameters must be passed when the deployment is triggered.
- lifecycle
Details String - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- primary
Build StringSource - Name of the build source where the build_spec.yml file is located. If not specified, then the first entry in the build source collection is chosen as primary build source.
- private
Access List<GetConfigs Build Pipeline Stage Private Access Config> - Specifies the configuration needed when the target Oracle Cloud Infrastructure resource, i.e., OKE cluster, resides in customer's private network.
- project
Id String - The OCID of the DevOps project.
- stage
Execution IntegerTimeout In Seconds - Timeout for the build stage execution. Specify value in seconds.
- state String
- The current state of the stage.
- Map<String,String>
- Usage of system tag keys. These predefined keys are scoped to namespaces. See Resource Tags. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created String - The time the stage was created. Format defined by RFC3339.
- time
Updated String - The time the stage was updated. Format defined by RFC3339.
- wait
Criterias List<GetBuild Pipeline Stage Wait Criteria> - Specifies wait criteria for the Wait stage.
- build
Pipeline stringId - The OCID of the build pipeline.
- build
Pipeline stringStage Id - build
Pipeline GetStage Predecessor Collections Build Pipeline Stage Build Pipeline Stage Predecessor Collection[] - The collection containing the predecessors of a stage.
- build
Pipeline stringStage Type - Defines the stage type, which is one of the following: BUILD, DELIVER_ARTIFACT, WAIT, and TRIGGER_DEPLOYMENT_PIPELINE.
- build
Runner GetShape Configs Build Pipeline Stage Build Runner Shape Config[] - The information about build runner.
- build
Source GetCollections Build Pipeline Stage Build Source Collection[] - Collection of build sources.
- build
Spec stringFile - The path to the build specification file for this environment. The default location of the file if not specified is build_spec.yaml.
- compartment
Id string - The OCID of the compartment where the pipeline is created.
- {[key: string]: string}
- Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example:
{"foo-namespace.bar-key": "value"}
- deliver
Artifact GetCollections Build Pipeline Stage Deliver Artifact Collection[] - Specifies an array of artifacts that need to be pushed to the artifactory stores.
- deploy
Pipeline stringId - A target deployment pipeline OCID that will run in this stage.
- description string
- Optional description about the build stage.
- display
Name string - Stage display name, which can be renamed and is not necessarily unique. Avoid entering confidential information.
- {[key: string]: string}
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. See Resource Tags. Example:
{"bar-key": "value"}
- id string
- Unique identifier that is immutable on creation.
- image string
- Image name for the build environment.
- is
Pass booleanAll Parameters Enabled - A boolean flag that specifies whether all the parameters must be passed when the deployment is triggered.
- lifecycle
Details string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- primary
Build stringSource - Name of the build source where the build_spec.yml file is located. If not specified, then the first entry in the build source collection is chosen as primary build source.
- private
Access GetConfigs Build Pipeline Stage Private Access Config[] - Specifies the configuration needed when the target Oracle Cloud Infrastructure resource, i.e., OKE cluster, resides in customer's private network.
- project
Id string - The OCID of the DevOps project.
- stage
Execution numberTimeout In Seconds - Timeout for the build stage execution. Specify value in seconds.
- state string
- The current state of the stage.
- {[key: string]: string}
- Usage of system tag keys. These predefined keys are scoped to namespaces. See Resource Tags. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created string - The time the stage was created. Format defined by RFC3339.
- time
Updated string - The time the stage was updated. Format defined by RFC3339.
- wait
Criterias GetBuild Pipeline Stage Wait Criteria[] - Specifies wait criteria for the Wait stage.
- build_
pipeline_ strid - The OCID of the build pipeline.
- build_
pipeline_ strstage_ id - build_
pipeline_ Sequence[devops.stage_ predecessor_ collections Get Build Pipeline Stage Build Pipeline Stage Predecessor Collection] - The collection containing the predecessors of a stage.
- build_
pipeline_ strstage_ type - Defines the stage type, which is one of the following: BUILD, DELIVER_ARTIFACT, WAIT, and TRIGGER_DEPLOYMENT_PIPELINE.
- build_
runner_ Sequence[devops.shape_ configs Get Build Pipeline Stage Build Runner Shape Config] - The information about build runner.
- build_
source_ Sequence[devops.collections Get Build Pipeline Stage Build Source Collection] - Collection of build sources.
- build_
spec_ strfile - The path to the build specification file for this environment. The default location of the file if not specified is build_spec.yaml.
- compartment_
id str - The OCID of the compartment where the pipeline is created.
- Mapping[str, str]
- Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example:
{"foo-namespace.bar-key": "value"}
- deliver_
artifact_ Sequence[devops.collections Get Build Pipeline Stage Deliver Artifact Collection] - Specifies an array of artifacts that need to be pushed to the artifactory stores.
- deploy_
pipeline_ strid - A target deployment pipeline OCID that will run in this stage.
- description str
- Optional description about the build stage.
- display_
name str - Stage display name, which can be renamed and is not necessarily unique. Avoid entering confidential information.
- Mapping[str, str]
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. See Resource Tags. Example:
{"bar-key": "value"}
- id str
- Unique identifier that is immutable on creation.
- image str
- Image name for the build environment.
- is_
pass_ boolall_ parameters_ enabled - A boolean flag that specifies whether all the parameters must be passed when the deployment is triggered.
- lifecycle_
details str - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- primary_
build_ strsource - Name of the build source where the build_spec.yml file is located. If not specified, then the first entry in the build source collection is chosen as primary build source.
- private_
access_ Sequence[devops.configs Get Build Pipeline Stage Private Access Config] - Specifies the configuration needed when the target Oracle Cloud Infrastructure resource, i.e., OKE cluster, resides in customer's private network.
- project_
id str - The OCID of the DevOps project.
- stage_
execution_ inttimeout_ in_ seconds - Timeout for the build stage execution. Specify value in seconds.
- state str
- The current state of the stage.
- Mapping[str, str]
- Usage of system tag keys. These predefined keys are scoped to namespaces. See Resource Tags. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time_
created str - The time the stage was created. Format defined by RFC3339.
- time_
updated str - The time the stage was updated. Format defined by RFC3339.
- wait_
criterias Sequence[devops.Get Build Pipeline Stage Wait Criteria] - Specifies wait criteria for the Wait stage.
- build
Pipeline StringId - The OCID of the build pipeline.
- build
Pipeline StringStage Id - build
Pipeline List<Property Map>Stage Predecessor Collections - The collection containing the predecessors of a stage.
- build
Pipeline StringStage Type - Defines the stage type, which is one of the following: BUILD, DELIVER_ARTIFACT, WAIT, and TRIGGER_DEPLOYMENT_PIPELINE.
- build
Runner List<Property Map>Shape Configs - The information about build runner.
- build
Source List<Property Map>Collections - Collection of build sources.
- build
Spec StringFile - The path to the build specification file for this environment. The default location of the file if not specified is build_spec.yaml.
- compartment
Id String - The OCID of the compartment where the pipeline is created.
- Map<String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example:
{"foo-namespace.bar-key": "value"}
- deliver
Artifact List<Property Map>Collections - Specifies an array of artifacts that need to be pushed to the artifactory stores.
- deploy
Pipeline StringId - A target deployment pipeline OCID that will run in this stage.
- description String
- Optional description about the build stage.
- display
Name String - Stage display name, which can be renamed and is not necessarily unique. Avoid entering confidential information.
- Map<String>
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. See Resource Tags. Example:
{"bar-key": "value"}
- id String
- Unique identifier that is immutable on creation.
- image String
- Image name for the build environment.
- is
Pass BooleanAll Parameters Enabled - A boolean flag that specifies whether all the parameters must be passed when the deployment is triggered.
- lifecycle
Details String - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- primary
Build StringSource - Name of the build source where the build_spec.yml file is located. If not specified, then the first entry in the build source collection is chosen as primary build source.
- private
Access List<Property Map>Configs - Specifies the configuration needed when the target Oracle Cloud Infrastructure resource, i.e., OKE cluster, resides in customer's private network.
- project
Id String - The OCID of the DevOps project.
- stage
Execution NumberTimeout In Seconds - Timeout for the build stage execution. Specify value in seconds.
- state String
- The current state of the stage.
- Map<String>
- Usage of system tag keys. These predefined keys are scoped to namespaces. See Resource Tags. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created String - The time the stage was created. Format defined by RFC3339.
- time
Updated String - The time the stage was updated. Format defined by RFC3339.
- wait
Criterias List<Property Map> - Specifies wait criteria for the Wait stage.
Supporting Types
GetBuildPipelineStageBuildPipelineStagePredecessorCollection
- Items
List<Get
Build Pipeline Stage Build Pipeline Stage Predecessor Collection Item> - Collection of artifacts that were generated in the Build stage and need to be pushed to the artifactory stores. In case of UPDATE operation, replaces existing artifacts list. Merging with existing artifacts is not supported.
- Items
[]Get
Build Pipeline Stage Build Pipeline Stage Predecessor Collection Item - Collection of artifacts that were generated in the Build stage and need to be pushed to the artifactory stores. In case of UPDATE operation, replaces existing artifacts list. Merging with existing artifacts is not supported.
- items
List<Get
Build Pipeline Stage Build Pipeline Stage Predecessor Collection Item> - Collection of artifacts that were generated in the Build stage and need to be pushed to the artifactory stores. In case of UPDATE operation, replaces existing artifacts list. Merging with existing artifacts is not supported.
- items
Get
Build Pipeline Stage Build Pipeline Stage Predecessor Collection Item[] - Collection of artifacts that were generated in the Build stage and need to be pushed to the artifactory stores. In case of UPDATE operation, replaces existing artifacts list. Merging with existing artifacts is not supported.
- items
Sequence[devops.
Get Build Pipeline Stage Build Pipeline Stage Predecessor Collection Item] - Collection of artifacts that were generated in the Build stage and need to be pushed to the artifactory stores. In case of UPDATE operation, replaces existing artifacts list. Merging with existing artifacts is not supported.
- items List<Property Map>
- Collection of artifacts that were generated in the Build stage and need to be pushed to the artifactory stores. In case of UPDATE operation, replaces existing artifacts list. Merging with existing artifacts is not supported.
GetBuildPipelineStageBuildPipelineStagePredecessorCollectionItem
- Id string
- Unique identifier that is immutable on creation.
- Id string
- Unique identifier that is immutable on creation.
- id String
- Unique identifier that is immutable on creation.
- id string
- Unique identifier that is immutable on creation.
- id str
- Unique identifier that is immutable on creation.
- id String
- Unique identifier that is immutable on creation.
GetBuildPipelineStageBuildRunnerShapeConfig
- Build
Runner stringType - Name of the build runner shape in which the execution occurs. If not specified, the default shape is chosen.
- Memory
In intGbs - The total amount of memory set for the instance in gigabytes.
- Ocpus int
- The total number of OCPUs set for the instance.
- Build
Runner stringType - Name of the build runner shape in which the execution occurs. If not specified, the default shape is chosen.
- Memory
In intGbs - The total amount of memory set for the instance in gigabytes.
- Ocpus int
- The total number of OCPUs set for the instance.
- build
Runner StringType - Name of the build runner shape in which the execution occurs. If not specified, the default shape is chosen.
- memory
In IntegerGbs - The total amount of memory set for the instance in gigabytes.
- ocpus Integer
- The total number of OCPUs set for the instance.
- build
Runner stringType - Name of the build runner shape in which the execution occurs. If not specified, the default shape is chosen.
- memory
In numberGbs - The total amount of memory set for the instance in gigabytes.
- ocpus number
- The total number of OCPUs set for the instance.
- build_
runner_ strtype - Name of the build runner shape in which the execution occurs. If not specified, the default shape is chosen.
- memory_
in_ intgbs - The total amount of memory set for the instance in gigabytes.
- ocpus int
- The total number of OCPUs set for the instance.
- build
Runner StringType - Name of the build runner shape in which the execution occurs. If not specified, the default shape is chosen.
- memory
In NumberGbs - The total amount of memory set for the instance in gigabytes.
- ocpus Number
- The total number of OCPUs set for the instance.
GetBuildPipelineStageBuildSourceCollection
- Items
List<Get
Build Pipeline Stage Build Source Collection Item> - Collection of artifacts that were generated in the Build stage and need to be pushed to the artifactory stores. In case of UPDATE operation, replaces existing artifacts list. Merging with existing artifacts is not supported.
- Items
[]Get
Build Pipeline Stage Build Source Collection Item - Collection of artifacts that were generated in the Build stage and need to be pushed to the artifactory stores. In case of UPDATE operation, replaces existing artifacts list. Merging with existing artifacts is not supported.
- items
List<Get
Build Pipeline Stage Build Source Collection Item> - Collection of artifacts that were generated in the Build stage and need to be pushed to the artifactory stores. In case of UPDATE operation, replaces existing artifacts list. Merging with existing artifacts is not supported.
- items
Get
Build Pipeline Stage Build Source Collection Item[] - Collection of artifacts that were generated in the Build stage and need to be pushed to the artifactory stores. In case of UPDATE operation, replaces existing artifacts list. Merging with existing artifacts is not supported.
- items
Sequence[devops.
Get Build Pipeline Stage Build Source Collection Item] - Collection of artifacts that were generated in the Build stage and need to be pushed to the artifactory stores. In case of UPDATE operation, replaces existing artifacts list. Merging with existing artifacts is not supported.
- items List<Property Map>
- Collection of artifacts that were generated in the Build stage and need to be pushed to the artifactory stores. In case of UPDATE operation, replaces existing artifacts list. Merging with existing artifacts is not supported.
GetBuildPipelineStageBuildSourceCollectionItem
- Branch string
- Branch name.
- Connection
Id string - Connection identifier pertinent to Bitbucket Server source provider
- Connection
Type string - The type of source provider.
- Name string
- Name of the build source. This must be unique within a build source collection. The name can be used by customers to locate the working directory pertinent to this repository.
- Repository
Id string - The DevOps code repository ID.
- Repository
Url string - URL for the repository.
- Branch string
- Branch name.
- Connection
Id string - Connection identifier pertinent to Bitbucket Server source provider
- Connection
Type string - The type of source provider.
- Name string
- Name of the build source. This must be unique within a build source collection. The name can be used by customers to locate the working directory pertinent to this repository.
- Repository
Id string - The DevOps code repository ID.
- Repository
Url string - URL for the repository.
- branch String
- Branch name.
- connection
Id String - Connection identifier pertinent to Bitbucket Server source provider
- connection
Type String - The type of source provider.
- name String
- Name of the build source. This must be unique within a build source collection. The name can be used by customers to locate the working directory pertinent to this repository.
- repository
Id String - The DevOps code repository ID.
- repository
Url String - URL for the repository.
- branch string
- Branch name.
- connection
Id string - Connection identifier pertinent to Bitbucket Server source provider
- connection
Type string - The type of source provider.
- name string
- Name of the build source. This must be unique within a build source collection. The name can be used by customers to locate the working directory pertinent to this repository.
- repository
Id string - The DevOps code repository ID.
- repository
Url string - URL for the repository.
- branch str
- Branch name.
- connection_
id str - Connection identifier pertinent to Bitbucket Server source provider
- connection_
type str - The type of source provider.
- name str
- Name of the build source. This must be unique within a build source collection. The name can be used by customers to locate the working directory pertinent to this repository.
- repository_
id str - The DevOps code repository ID.
- repository_
url str - URL for the repository.
- branch String
- Branch name.
- connection
Id String - Connection identifier pertinent to Bitbucket Server source provider
- connection
Type String - The type of source provider.
- name String
- Name of the build source. This must be unique within a build source collection. The name can be used by customers to locate the working directory pertinent to this repository.
- repository
Id String - The DevOps code repository ID.
- repository
Url String - URL for the repository.
GetBuildPipelineStageDeliverArtifactCollection
- Items
List<Get
Build Pipeline Stage Deliver Artifact Collection Item> - Collection of artifacts that were generated in the Build stage and need to be pushed to the artifactory stores. In case of UPDATE operation, replaces existing artifacts list. Merging with existing artifacts is not supported.
- Items
[]Get
Build Pipeline Stage Deliver Artifact Collection Item - Collection of artifacts that were generated in the Build stage and need to be pushed to the artifactory stores. In case of UPDATE operation, replaces existing artifacts list. Merging with existing artifacts is not supported.
- items
List<Get
Build Pipeline Stage Deliver Artifact Collection Item> - Collection of artifacts that were generated in the Build stage and need to be pushed to the artifactory stores. In case of UPDATE operation, replaces existing artifacts list. Merging with existing artifacts is not supported.
- items
Get
Build Pipeline Stage Deliver Artifact Collection Item[] - Collection of artifacts that were generated in the Build stage and need to be pushed to the artifactory stores. In case of UPDATE operation, replaces existing artifacts list. Merging with existing artifacts is not supported.
- items
Sequence[devops.
Get Build Pipeline Stage Deliver Artifact Collection Item] - Collection of artifacts that were generated in the Build stage and need to be pushed to the artifactory stores. In case of UPDATE operation, replaces existing artifacts list. Merging with existing artifacts is not supported.
- items List<Property Map>
- Collection of artifacts that were generated in the Build stage and need to be pushed to the artifactory stores. In case of UPDATE operation, replaces existing artifacts list. Merging with existing artifacts is not supported.
GetBuildPipelineStageDeliverArtifactCollectionItem
- Artifact
Id string - Artifact identifier that contains the artifact definition.
- Artifact
Name string - Name of the artifact specified in the build_spec.yaml file.
- Artifact
Id string - Artifact identifier that contains the artifact definition.
- Artifact
Name string - Name of the artifact specified in the build_spec.yaml file.
- artifact
Id String - Artifact identifier that contains the artifact definition.
- artifact
Name String - Name of the artifact specified in the build_spec.yaml file.
- artifact
Id string - Artifact identifier that contains the artifact definition.
- artifact
Name string - Name of the artifact specified in the build_spec.yaml file.
- artifact_
id str - Artifact identifier that contains the artifact definition.
- artifact_
name str - Name of the artifact specified in the build_spec.yaml file.
- artifact
Id String - Artifact identifier that contains the artifact definition.
- artifact
Name String - Name of the artifact specified in the build_spec.yaml file.
GetBuildPipelineStagePrivateAccessConfig
- Network
Channel stringType - Network channel type.
- Nsg
Ids List<string> - An array of network security group OCIDs.
- Subnet
Id string - The OCID of the subnet where VNIC resources will be created for private endpoint.
- Network
Channel stringType - Network channel type.
- Nsg
Ids []string - An array of network security group OCIDs.
- Subnet
Id string - The OCID of the subnet where VNIC resources will be created for private endpoint.
- network
Channel StringType - Network channel type.
- nsg
Ids List<String> - An array of network security group OCIDs.
- subnet
Id String - The OCID of the subnet where VNIC resources will be created for private endpoint.
- network
Channel stringType - Network channel type.
- nsg
Ids string[] - An array of network security group OCIDs.
- subnet
Id string - The OCID of the subnet where VNIC resources will be created for private endpoint.
- network_
channel_ strtype - Network channel type.
- nsg_
ids Sequence[str] - An array of network security group OCIDs.
- subnet_
id str - The OCID of the subnet where VNIC resources will be created for private endpoint.
- network
Channel StringType - Network channel type.
- nsg
Ids List<String> - An array of network security group OCIDs.
- subnet
Id String - The OCID of the subnet where VNIC resources will be created for private endpoint.
GetBuildPipelineStageWaitCriteria
- Wait
Duration string - The absolute wait duration. An ISO 8601 formatted duration string. Minimum waitDuration should be 5 seconds. Maximum waitDuration can be up to 2 days.
- Wait
Type string - Wait criteria type.
- Wait
Duration string - The absolute wait duration. An ISO 8601 formatted duration string. Minimum waitDuration should be 5 seconds. Maximum waitDuration can be up to 2 days.
- Wait
Type string - Wait criteria type.
- wait
Duration String - The absolute wait duration. An ISO 8601 formatted duration string. Minimum waitDuration should be 5 seconds. Maximum waitDuration can be up to 2 days.
- wait
Type String - Wait criteria type.
- wait
Duration string - The absolute wait duration. An ISO 8601 formatted duration string. Minimum waitDuration should be 5 seconds. Maximum waitDuration can be up to 2 days.
- wait
Type string - Wait criteria type.
- wait_
duration str - The absolute wait duration. An ISO 8601 formatted duration string. Minimum waitDuration should be 5 seconds. Maximum waitDuration can be up to 2 days.
- wait_
type str - Wait criteria type.
- wait
Duration String - The absolute wait duration. An ISO 8601 formatted duration string. Minimum waitDuration should be 5 seconds. Maximum waitDuration can be up to 2 days.
- wait
Type String - Wait criteria type.
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
oci
Terraform Provider.