harness.platform.IacmDefaultPipeline
Explore with Pulumi AI
Resource for managing IAC default pipelines
Create IacmDefaultPipeline Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new IacmDefaultPipeline(name: string, args: IacmDefaultPipelineArgs, opts?: CustomResourceOptions);
@overload
def IacmDefaultPipeline(resource_name: str,
args: IacmDefaultPipelineArgs,
opts: Optional[ResourceOptions] = None)
@overload
def IacmDefaultPipeline(resource_name: str,
opts: Optional[ResourceOptions] = None,
operation: Optional[str] = None,
org_id: Optional[str] = None,
pipeline: Optional[str] = None,
project_id: Optional[str] = None,
provisioner_type: Optional[str] = None)
func NewIacmDefaultPipeline(ctx *Context, name string, args IacmDefaultPipelineArgs, opts ...ResourceOption) (*IacmDefaultPipeline, error)
public IacmDefaultPipeline(string name, IacmDefaultPipelineArgs args, CustomResourceOptions? opts = null)
public IacmDefaultPipeline(String name, IacmDefaultPipelineArgs args)
public IacmDefaultPipeline(String name, IacmDefaultPipelineArgs args, CustomResourceOptions options)
type: harness:platform:IacmDefaultPipeline
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 IacmDefaultPipelineArgs
- 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 IacmDefaultPipelineArgs
- 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 IacmDefaultPipelineArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args IacmDefaultPipelineArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args IacmDefaultPipelineArgs
- 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 iacmDefaultPipelineResource = new Harness.Platform.IacmDefaultPipeline("iacmDefaultPipelineResource", new()
{
Operation = "string",
OrgId = "string",
Pipeline = "string",
ProjectId = "string",
ProvisionerType = "string",
});
example, err := platform.NewIacmDefaultPipeline(ctx, "iacmDefaultPipelineResource", &platform.IacmDefaultPipelineArgs{
Operation: pulumi.String("string"),
OrgId: pulumi.String("string"),
Pipeline: pulumi.String("string"),
ProjectId: pulumi.String("string"),
ProvisionerType: pulumi.String("string"),
})
var iacmDefaultPipelineResource = new IacmDefaultPipeline("iacmDefaultPipelineResource", IacmDefaultPipelineArgs.builder()
.operation("string")
.orgId("string")
.pipeline("string")
.projectId("string")
.provisionerType("string")
.build());
iacm_default_pipeline_resource = harness.platform.IacmDefaultPipeline("iacmDefaultPipelineResource",
operation="string",
org_id="string",
pipeline="string",
project_id="string",
provisioner_type="string")
const iacmDefaultPipelineResource = new harness.platform.IacmDefaultPipeline("iacmDefaultPipelineResource", {
operation: "string",
orgId: "string",
pipeline: "string",
projectId: "string",
provisionerType: "string",
});
type: harness:platform:IacmDefaultPipeline
properties:
operation: string
orgId: string
pipeline: string
projectId: string
provisionerType: string
IacmDefaultPipeline 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 IacmDefaultPipeline resource accepts the following input properties:
- Operation string
- The operation associated with this default.
- Org
Id string - Organization identifier of the organization the default pipelines resides in.
- Pipeline string
- The pipeline associated with this default.
- Project
Id string - Project identifier of the project the default pipelines resides in.
- Provisioner
Type string - The provisioner associated with this default.
- Operation string
- The operation associated with this default.
- Org
Id string - Organization identifier of the organization the default pipelines resides in.
- Pipeline string
- The pipeline associated with this default.
- Project
Id string - Project identifier of the project the default pipelines resides in.
- Provisioner
Type string - The provisioner associated with this default.
- operation String
- The operation associated with this default.
- org
Id String - Organization identifier of the organization the default pipelines resides in.
- pipeline String
- The pipeline associated with this default.
- project
Id String - Project identifier of the project the default pipelines resides in.
- provisioner
Type String - The provisioner associated with this default.
- operation string
- The operation associated with this default.
- org
Id string - Organization identifier of the organization the default pipelines resides in.
- pipeline string
- The pipeline associated with this default.
- project
Id string - Project identifier of the project the default pipelines resides in.
- provisioner
Type string - The provisioner associated with this default.
- operation str
- The operation associated with this default.
- org_
id str - Organization identifier of the organization the default pipelines resides in.
- pipeline str
- The pipeline associated with this default.
- project_
id str - Project identifier of the project the default pipelines resides in.
- provisioner_
type str - The provisioner associated with this default.
- operation String
- The operation associated with this default.
- org
Id String - Organization identifier of the organization the default pipelines resides in.
- pipeline String
- The pipeline associated with this default.
- project
Id String - Project identifier of the project the default pipelines resides in.
- provisioner
Type String - The provisioner associated with this default.
Outputs
All input properties are implicitly available as output properties. Additionally, the IacmDefaultPipeline resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing IacmDefaultPipeline Resource
Get an existing IacmDefaultPipeline resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: IacmDefaultPipelineState, opts?: CustomResourceOptions): IacmDefaultPipeline
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
operation: Optional[str] = None,
org_id: Optional[str] = None,
pipeline: Optional[str] = None,
project_id: Optional[str] = None,
provisioner_type: Optional[str] = None) -> IacmDefaultPipeline
func GetIacmDefaultPipeline(ctx *Context, name string, id IDInput, state *IacmDefaultPipelineState, opts ...ResourceOption) (*IacmDefaultPipeline, error)
public static IacmDefaultPipeline Get(string name, Input<string> id, IacmDefaultPipelineState? state, CustomResourceOptions? opts = null)
public static IacmDefaultPipeline get(String name, Output<String> id, IacmDefaultPipelineState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Operation string
- The operation associated with this default.
- Org
Id string - Organization identifier of the organization the default pipelines resides in.
- Pipeline string
- The pipeline associated with this default.
- Project
Id string - Project identifier of the project the default pipelines resides in.
- Provisioner
Type string - The provisioner associated with this default.
- Operation string
- The operation associated with this default.
- Org
Id string - Organization identifier of the organization the default pipelines resides in.
- Pipeline string
- The pipeline associated with this default.
- Project
Id string - Project identifier of the project the default pipelines resides in.
- Provisioner
Type string - The provisioner associated with this default.
- operation String
- The operation associated with this default.
- org
Id String - Organization identifier of the organization the default pipelines resides in.
- pipeline String
- The pipeline associated with this default.
- project
Id String - Project identifier of the project the default pipelines resides in.
- provisioner
Type String - The provisioner associated with this default.
- operation string
- The operation associated with this default.
- org
Id string - Organization identifier of the organization the default pipelines resides in.
- pipeline string
- The pipeline associated with this default.
- project
Id string - Project identifier of the project the default pipelines resides in.
- provisioner
Type string - The provisioner associated with this default.
- operation str
- The operation associated with this default.
- org_
id str - Organization identifier of the organization the default pipelines resides in.
- pipeline str
- The pipeline associated with this default.
- project_
id str - Project identifier of the project the default pipelines resides in.
- provisioner_
type str - The provisioner associated with this default.
- operation String
- The operation associated with this default.
- org
Id String - Organization identifier of the organization the default pipelines resides in.
- pipeline String
- The pipeline associated with this default.
- project
Id String - Project identifier of the project the default pipelines resides in.
- provisioner
Type String - The provisioner associated with this default.
Package Details
- Repository
- harness pulumi/pulumi-harness
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
harness
Terraform Provider.