1. Packages
  2. Harness Provider
  3. API Docs
  4. platform
  5. InputSet
Harness v0.7.2 published on Tuesday, Apr 15, 2025 by Pulumi

harness.platform.InputSet

Explore with Pulumi AI

Resource for creating a Harness InputSet.

Create InputSet Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new InputSet(name: string, args: InputSetArgs, opts?: CustomResourceOptions);
@overload
def InputSet(resource_name: str,
             args: InputSetArgs,
             opts: Optional[ResourceOptions] = None)

@overload
def InputSet(resource_name: str,
             opts: Optional[ResourceOptions] = None,
             identifier: Optional[str] = None,
             org_id: Optional[str] = None,
             pipeline_id: Optional[str] = None,
             project_id: Optional[str] = None,
             description: Optional[str] = None,
             git_details: Optional[InputSetGitDetailsArgs] = None,
             git_import_info: Optional[InputSetGitImportInfoArgs] = None,
             import_from_git: Optional[bool] = None,
             input_set_import_request: Optional[InputSetInputSetImportRequestArgs] = None,
             name: Optional[str] = None,
             tags: Optional[Sequence[str]] = None,
             yaml: Optional[str] = None)
func NewInputSet(ctx *Context, name string, args InputSetArgs, opts ...ResourceOption) (*InputSet, error)
public InputSet(string name, InputSetArgs args, CustomResourceOptions? opts = null)
public InputSet(String name, InputSetArgs args)
public InputSet(String name, InputSetArgs args, CustomResourceOptions options)
type: harness:platform:InputSet
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. InputSetArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. InputSetArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. InputSetArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. InputSetArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. InputSetArgs
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 inputSetResource = new Harness.Platform.InputSet("inputSetResource", new()
{
    Identifier = "string",
    OrgId = "string",
    PipelineId = "string",
    ProjectId = "string",
    Description = "string",
    GitDetails = new Harness.Platform.Inputs.InputSetGitDetailsArgs
    {
        BaseBranch = "string",
        BranchName = "string",
        CommitMessage = "string",
        ConnectorRef = "string",
        FilePath = "string",
        IsHarnessCodeRepo = false,
        LastCommitId = "string",
        LastObjectId = "string",
        ParentEntityConnectorRef = "string",
        ParentEntityRepoName = "string",
        RepoName = "string",
        StoreType = "string",
    },
    GitImportInfo = new Harness.Platform.Inputs.InputSetGitImportInfoArgs
    {
        BranchName = "string",
        ConnectorRef = "string",
        FilePath = "string",
        IsForceImport = false,
        RepoName = "string",
    },
    ImportFromGit = false,
    InputSetImportRequest = new Harness.Platform.Inputs.InputSetInputSetImportRequestArgs
    {
        InputSetDescription = "string",
        InputSetName = "string",
    },
    Name = "string",
    Tags = new[]
    {
        "string",
    },
    Yaml = "string",
});
Copy
example, err := platform.NewInputSet(ctx, "inputSetResource", &platform.InputSetArgs{
	Identifier:  pulumi.String("string"),
	OrgId:       pulumi.String("string"),
	PipelineId:  pulumi.String("string"),
	ProjectId:   pulumi.String("string"),
	Description: pulumi.String("string"),
	GitDetails: &platform.InputSetGitDetailsArgs{
		BaseBranch:               pulumi.String("string"),
		BranchName:               pulumi.String("string"),
		CommitMessage:            pulumi.String("string"),
		ConnectorRef:             pulumi.String("string"),
		FilePath:                 pulumi.String("string"),
		IsHarnessCodeRepo:        pulumi.Bool(false),
		LastCommitId:             pulumi.String("string"),
		LastObjectId:             pulumi.String("string"),
		ParentEntityConnectorRef: pulumi.String("string"),
		ParentEntityRepoName:     pulumi.String("string"),
		RepoName:                 pulumi.String("string"),
		StoreType:                pulumi.String("string"),
	},
	GitImportInfo: &platform.InputSetGitImportInfoArgs{
		BranchName:    pulumi.String("string"),
		ConnectorRef:  pulumi.String("string"),
		FilePath:      pulumi.String("string"),
		IsForceImport: pulumi.Bool(false),
		RepoName:      pulumi.String("string"),
	},
	ImportFromGit: pulumi.Bool(false),
	InputSetImportRequest: &platform.InputSetInputSetImportRequestArgs{
		InputSetDescription: pulumi.String("string"),
		InputSetName:        pulumi.String("string"),
	},
	Name: pulumi.String("string"),
	Tags: pulumi.StringArray{
		pulumi.String("string"),
	},
	Yaml: pulumi.String("string"),
})
Copy
var inputSetResource = new InputSet("inputSetResource", InputSetArgs.builder()
    .identifier("string")
    .orgId("string")
    .pipelineId("string")
    .projectId("string")
    .description("string")
    .gitDetails(InputSetGitDetailsArgs.builder()
        .baseBranch("string")
        .branchName("string")
        .commitMessage("string")
        .connectorRef("string")
        .filePath("string")
        .isHarnessCodeRepo(false)
        .lastCommitId("string")
        .lastObjectId("string")
        .parentEntityConnectorRef("string")
        .parentEntityRepoName("string")
        .repoName("string")
        .storeType("string")
        .build())
    .gitImportInfo(InputSetGitImportInfoArgs.builder()
        .branchName("string")
        .connectorRef("string")
        .filePath("string")
        .isForceImport(false)
        .repoName("string")
        .build())
    .importFromGit(false)
    .inputSetImportRequest(InputSetInputSetImportRequestArgs.builder()
        .inputSetDescription("string")
        .inputSetName("string")
        .build())
    .name("string")
    .tags("string")
    .yaml("string")
    .build());
Copy
input_set_resource = harness.platform.InputSet("inputSetResource",
    identifier="string",
    org_id="string",
    pipeline_id="string",
    project_id="string",
    description="string",
    git_details={
        "base_branch": "string",
        "branch_name": "string",
        "commit_message": "string",
        "connector_ref": "string",
        "file_path": "string",
        "is_harness_code_repo": False,
        "last_commit_id": "string",
        "last_object_id": "string",
        "parent_entity_connector_ref": "string",
        "parent_entity_repo_name": "string",
        "repo_name": "string",
        "store_type": "string",
    },
    git_import_info={
        "branch_name": "string",
        "connector_ref": "string",
        "file_path": "string",
        "is_force_import": False,
        "repo_name": "string",
    },
    import_from_git=False,
    input_set_import_request={
        "input_set_description": "string",
        "input_set_name": "string",
    },
    name="string",
    tags=["string"],
    yaml="string")
Copy
const inputSetResource = new harness.platform.InputSet("inputSetResource", {
    identifier: "string",
    orgId: "string",
    pipelineId: "string",
    projectId: "string",
    description: "string",
    gitDetails: {
        baseBranch: "string",
        branchName: "string",
        commitMessage: "string",
        connectorRef: "string",
        filePath: "string",
        isHarnessCodeRepo: false,
        lastCommitId: "string",
        lastObjectId: "string",
        parentEntityConnectorRef: "string",
        parentEntityRepoName: "string",
        repoName: "string",
        storeType: "string",
    },
    gitImportInfo: {
        branchName: "string",
        connectorRef: "string",
        filePath: "string",
        isForceImport: false,
        repoName: "string",
    },
    importFromGit: false,
    inputSetImportRequest: {
        inputSetDescription: "string",
        inputSetName: "string",
    },
    name: "string",
    tags: ["string"],
    yaml: "string",
});
Copy
type: harness:platform:InputSet
properties:
    description: string
    gitDetails:
        baseBranch: string
        branchName: string
        commitMessage: string
        connectorRef: string
        filePath: string
        isHarnessCodeRepo: false
        lastCommitId: string
        lastObjectId: string
        parentEntityConnectorRef: string
        parentEntityRepoName: string
        repoName: string
        storeType: string
    gitImportInfo:
        branchName: string
        connectorRef: string
        filePath: string
        isForceImport: false
        repoName: string
    identifier: string
    importFromGit: false
    inputSetImportRequest:
        inputSetDescription: string
        inputSetName: string
    name: string
    orgId: string
    pipelineId: string
    projectId: string
    tags:
        - string
    yaml: string
Copy

InputSet Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

Inputs

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The InputSet resource accepts the following input properties:

Identifier
This property is required.
Changes to this property will trigger replacement.
string
Unique identifier of the resource.
OrgId
This property is required.
Changes to this property will trigger replacement.
string
Unique identifier of the organization.
PipelineId This property is required. string
Identifier of the pipeline
ProjectId
This property is required.
Changes to this property will trigger replacement.
string
Unique identifier of the project.
Description string
Description of the resource.
GitDetails InputSetGitDetails
Contains parameters related to creating an Entity for Git Experience.
GitImportInfo InputSetGitImportInfo
Contains Git Information for importing entities from Git
ImportFromGit bool
Flag to set if importing from Git
InputSetImportRequest InputSetInputSetImportRequest
Contains parameters for importing a input set
Name string
Name of the resource.
Tags List<string>
Tags to associate with the resource.
Yaml string
Input Set YAML. In YAML, to reference an entity at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference an entity at the account scope, prefix 'account` to the expression: account.{identifier}. For eg, to reference a connector with identifier 'connectorId' at the organization scope in a stage mention it as connectorRef: org.connectorId.
Identifier
This property is required.
Changes to this property will trigger replacement.
string
Unique identifier of the resource.
OrgId
This property is required.
Changes to this property will trigger replacement.
string
Unique identifier of the organization.
PipelineId This property is required. string
Identifier of the pipeline
ProjectId
This property is required.
Changes to this property will trigger replacement.
string
Unique identifier of the project.
Description string
Description of the resource.
GitDetails InputSetGitDetailsArgs
Contains parameters related to creating an Entity for Git Experience.
GitImportInfo InputSetGitImportInfoArgs
Contains Git Information for importing entities from Git
ImportFromGit bool
Flag to set if importing from Git
InputSetImportRequest InputSetInputSetImportRequestArgs
Contains parameters for importing a input set
Name string
Name of the resource.
Tags []string
Tags to associate with the resource.
Yaml string
Input Set YAML. In YAML, to reference an entity at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference an entity at the account scope, prefix 'account` to the expression: account.{identifier}. For eg, to reference a connector with identifier 'connectorId' at the organization scope in a stage mention it as connectorRef: org.connectorId.
identifier
This property is required.
Changes to this property will trigger replacement.
String
Unique identifier of the resource.
orgId
This property is required.
Changes to this property will trigger replacement.
String
Unique identifier of the organization.
pipelineId This property is required. String
Identifier of the pipeline
projectId
This property is required.
Changes to this property will trigger replacement.
String
Unique identifier of the project.
description String
Description of the resource.
gitDetails InputSetGitDetails
Contains parameters related to creating an Entity for Git Experience.
gitImportInfo InputSetGitImportInfo
Contains Git Information for importing entities from Git
importFromGit Boolean
Flag to set if importing from Git
inputSetImportRequest InputSetInputSetImportRequest
Contains parameters for importing a input set
name String
Name of the resource.
tags List<String>
Tags to associate with the resource.
yaml String
Input Set YAML. In YAML, to reference an entity at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference an entity at the account scope, prefix 'account` to the expression: account.{identifier}. For eg, to reference a connector with identifier 'connectorId' at the organization scope in a stage mention it as connectorRef: org.connectorId.
identifier
This property is required.
Changes to this property will trigger replacement.
string
Unique identifier of the resource.
orgId
This property is required.
Changes to this property will trigger replacement.
string
Unique identifier of the organization.
pipelineId This property is required. string
Identifier of the pipeline
projectId
This property is required.
Changes to this property will trigger replacement.
string
Unique identifier of the project.
description string
Description of the resource.
gitDetails InputSetGitDetails
Contains parameters related to creating an Entity for Git Experience.
gitImportInfo InputSetGitImportInfo
Contains Git Information for importing entities from Git
importFromGit boolean
Flag to set if importing from Git
inputSetImportRequest InputSetInputSetImportRequest
Contains parameters for importing a input set
name string
Name of the resource.
tags string[]
Tags to associate with the resource.
yaml string
Input Set YAML. In YAML, to reference an entity at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference an entity at the account scope, prefix 'account` to the expression: account.{identifier}. For eg, to reference a connector with identifier 'connectorId' at the organization scope in a stage mention it as connectorRef: org.connectorId.
identifier
This property is required.
Changes to this property will trigger replacement.
str
Unique identifier of the resource.
org_id
This property is required.
Changes to this property will trigger replacement.
str
Unique identifier of the organization.
pipeline_id This property is required. str
Identifier of the pipeline
project_id
This property is required.
Changes to this property will trigger replacement.
str
Unique identifier of the project.
description str
Description of the resource.
git_details InputSetGitDetailsArgs
Contains parameters related to creating an Entity for Git Experience.
git_import_info InputSetGitImportInfoArgs
Contains Git Information for importing entities from Git
import_from_git bool
Flag to set if importing from Git
input_set_import_request InputSetInputSetImportRequestArgs
Contains parameters for importing a input set
name str
Name of the resource.
tags Sequence[str]
Tags to associate with the resource.
yaml str
Input Set YAML. In YAML, to reference an entity at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference an entity at the account scope, prefix 'account` to the expression: account.{identifier}. For eg, to reference a connector with identifier 'connectorId' at the organization scope in a stage mention it as connectorRef: org.connectorId.
identifier
This property is required.
Changes to this property will trigger replacement.
String
Unique identifier of the resource.
orgId
This property is required.
Changes to this property will trigger replacement.
String
Unique identifier of the organization.
pipelineId This property is required. String
Identifier of the pipeline
projectId
This property is required.
Changes to this property will trigger replacement.
String
Unique identifier of the project.
description String
Description of the resource.
gitDetails Property Map
Contains parameters related to creating an Entity for Git Experience.
gitImportInfo Property Map
Contains Git Information for importing entities from Git
importFromGit Boolean
Flag to set if importing from Git
inputSetImportRequest Property Map
Contains parameters for importing a input set
name String
Name of the resource.
tags List<String>
Tags to associate with the resource.
yaml String
Input Set YAML. In YAML, to reference an entity at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference an entity at the account scope, prefix 'account` to the expression: account.{identifier}. For eg, to reference a connector with identifier 'connectorId' at the organization scope in a stage mention it as connectorRef: org.connectorId.

Outputs

All input properties are implicitly available as output properties. Additionally, the InputSet 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 InputSet Resource

Get an existing InputSet 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?: InputSetState, opts?: CustomResourceOptions): InputSet
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        description: Optional[str] = None,
        git_details: Optional[InputSetGitDetailsArgs] = None,
        git_import_info: Optional[InputSetGitImportInfoArgs] = None,
        identifier: Optional[str] = None,
        import_from_git: Optional[bool] = None,
        input_set_import_request: Optional[InputSetInputSetImportRequestArgs] = None,
        name: Optional[str] = None,
        org_id: Optional[str] = None,
        pipeline_id: Optional[str] = None,
        project_id: Optional[str] = None,
        tags: Optional[Sequence[str]] = None,
        yaml: Optional[str] = None) -> InputSet
func GetInputSet(ctx *Context, name string, id IDInput, state *InputSetState, opts ...ResourceOption) (*InputSet, error)
public static InputSet Get(string name, Input<string> id, InputSetState? state, CustomResourceOptions? opts = null)
public static InputSet get(String name, Output<String> id, InputSetState state, CustomResourceOptions options)
resources:  _:    type: harness:platform:InputSet    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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.
The following state arguments are supported:
Description string
Description of the resource.
GitDetails InputSetGitDetails
Contains parameters related to creating an Entity for Git Experience.
GitImportInfo InputSetGitImportInfo
Contains Git Information for importing entities from Git
Identifier Changes to this property will trigger replacement. string
Unique identifier of the resource.
ImportFromGit bool
Flag to set if importing from Git
InputSetImportRequest InputSetInputSetImportRequest
Contains parameters for importing a input set
Name string
Name of the resource.
OrgId Changes to this property will trigger replacement. string
Unique identifier of the organization.
PipelineId string
Identifier of the pipeline
ProjectId Changes to this property will trigger replacement. string
Unique identifier of the project.
Tags List<string>
Tags to associate with the resource.
Yaml string
Input Set YAML. In YAML, to reference an entity at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference an entity at the account scope, prefix 'account` to the expression: account.{identifier}. For eg, to reference a connector with identifier 'connectorId' at the organization scope in a stage mention it as connectorRef: org.connectorId.
Description string
Description of the resource.
GitDetails InputSetGitDetailsArgs
Contains parameters related to creating an Entity for Git Experience.
GitImportInfo InputSetGitImportInfoArgs
Contains Git Information for importing entities from Git
Identifier Changes to this property will trigger replacement. string
Unique identifier of the resource.
ImportFromGit bool
Flag to set if importing from Git
InputSetImportRequest InputSetInputSetImportRequestArgs
Contains parameters for importing a input set
Name string
Name of the resource.
OrgId Changes to this property will trigger replacement. string
Unique identifier of the organization.
PipelineId string
Identifier of the pipeline
ProjectId Changes to this property will trigger replacement. string
Unique identifier of the project.
Tags []string
Tags to associate with the resource.
Yaml string
Input Set YAML. In YAML, to reference an entity at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference an entity at the account scope, prefix 'account` to the expression: account.{identifier}. For eg, to reference a connector with identifier 'connectorId' at the organization scope in a stage mention it as connectorRef: org.connectorId.
description String
Description of the resource.
gitDetails InputSetGitDetails
Contains parameters related to creating an Entity for Git Experience.
gitImportInfo InputSetGitImportInfo
Contains Git Information for importing entities from Git
identifier Changes to this property will trigger replacement. String
Unique identifier of the resource.
importFromGit Boolean
Flag to set if importing from Git
inputSetImportRequest InputSetInputSetImportRequest
Contains parameters for importing a input set
name String
Name of the resource.
orgId Changes to this property will trigger replacement. String
Unique identifier of the organization.
pipelineId String
Identifier of the pipeline
projectId Changes to this property will trigger replacement. String
Unique identifier of the project.
tags List<String>
Tags to associate with the resource.
yaml String
Input Set YAML. In YAML, to reference an entity at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference an entity at the account scope, prefix 'account` to the expression: account.{identifier}. For eg, to reference a connector with identifier 'connectorId' at the organization scope in a stage mention it as connectorRef: org.connectorId.
description string
Description of the resource.
gitDetails InputSetGitDetails
Contains parameters related to creating an Entity for Git Experience.
gitImportInfo InputSetGitImportInfo
Contains Git Information for importing entities from Git
identifier Changes to this property will trigger replacement. string
Unique identifier of the resource.
importFromGit boolean
Flag to set if importing from Git
inputSetImportRequest InputSetInputSetImportRequest
Contains parameters for importing a input set
name string
Name of the resource.
orgId Changes to this property will trigger replacement. string
Unique identifier of the organization.
pipelineId string
Identifier of the pipeline
projectId Changes to this property will trigger replacement. string
Unique identifier of the project.
tags string[]
Tags to associate with the resource.
yaml string
Input Set YAML. In YAML, to reference an entity at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference an entity at the account scope, prefix 'account` to the expression: account.{identifier}. For eg, to reference a connector with identifier 'connectorId' at the organization scope in a stage mention it as connectorRef: org.connectorId.
description str
Description of the resource.
git_details InputSetGitDetailsArgs
Contains parameters related to creating an Entity for Git Experience.
git_import_info InputSetGitImportInfoArgs
Contains Git Information for importing entities from Git
identifier Changes to this property will trigger replacement. str
Unique identifier of the resource.
import_from_git bool
Flag to set if importing from Git
input_set_import_request InputSetInputSetImportRequestArgs
Contains parameters for importing a input set
name str
Name of the resource.
org_id Changes to this property will trigger replacement. str
Unique identifier of the organization.
pipeline_id str
Identifier of the pipeline
project_id Changes to this property will trigger replacement. str
Unique identifier of the project.
tags Sequence[str]
Tags to associate with the resource.
yaml str
Input Set YAML. In YAML, to reference an entity at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference an entity at the account scope, prefix 'account` to the expression: account.{identifier}. For eg, to reference a connector with identifier 'connectorId' at the organization scope in a stage mention it as connectorRef: org.connectorId.
description String
Description of the resource.
gitDetails Property Map
Contains parameters related to creating an Entity for Git Experience.
gitImportInfo Property Map
Contains Git Information for importing entities from Git
identifier Changes to this property will trigger replacement. String
Unique identifier of the resource.
importFromGit Boolean
Flag to set if importing from Git
inputSetImportRequest Property Map
Contains parameters for importing a input set
name String
Name of the resource.
orgId Changes to this property will trigger replacement. String
Unique identifier of the organization.
pipelineId String
Identifier of the pipeline
projectId Changes to this property will trigger replacement. String
Unique identifier of the project.
tags List<String>
Tags to associate with the resource.
yaml String
Input Set YAML. In YAML, to reference an entity at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference an entity at the account scope, prefix 'account` to the expression: account.{identifier}. For eg, to reference a connector with identifier 'connectorId' at the organization scope in a stage mention it as connectorRef: org.connectorId.

Supporting Types

InputSetGitDetails
, InputSetGitDetailsArgs

BaseBranch string
Name of the default branch (this checks out a new branch titled by branch_name).
BranchName string
Name of the branch.
CommitMessage string
Commit message used for the merge commit.
ConnectorRef string
Identifier of the Harness Connector used for CRUD operations on the Entity. To reference a connector at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference a connector at the account scope, prefix 'account` to the expression: account.{identifier}.
FilePath string
File path of the Entity in the repository.
IsHarnessCodeRepo bool
If the repo is harness code.
LastCommitId string
Last commit identifier (for Git Repositories other than Github). To be provided only when updating Pipeline.
LastObjectId string
Last object identifier (for Github). To be provided only when updating Pipeline.
ParentEntityConnectorRef string
Connector reference for Parent Entity (Pipeline). To reference a connector at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference a connector at the account scope, prefix 'account` to the expression: account.{identifier}.
ParentEntityRepoName string
Repository name for Parent Entity (Pipeline).
RepoName string
Name of the repository.
StoreType string
Specifies whether the Entity is to be stored in Git or not. Possible values: INLINE, REMOTE.
BaseBranch string
Name of the default branch (this checks out a new branch titled by branch_name).
BranchName string
Name of the branch.
CommitMessage string
Commit message used for the merge commit.
ConnectorRef string
Identifier of the Harness Connector used for CRUD operations on the Entity. To reference a connector at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference a connector at the account scope, prefix 'account` to the expression: account.{identifier}.
FilePath string
File path of the Entity in the repository.
IsHarnessCodeRepo bool
If the repo is harness code.
LastCommitId string
Last commit identifier (for Git Repositories other than Github). To be provided only when updating Pipeline.
LastObjectId string
Last object identifier (for Github). To be provided only when updating Pipeline.
ParentEntityConnectorRef string
Connector reference for Parent Entity (Pipeline). To reference a connector at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference a connector at the account scope, prefix 'account` to the expression: account.{identifier}.
ParentEntityRepoName string
Repository name for Parent Entity (Pipeline).
RepoName string
Name of the repository.
StoreType string
Specifies whether the Entity is to be stored in Git or not. Possible values: INLINE, REMOTE.
baseBranch String
Name of the default branch (this checks out a new branch titled by branch_name).
branchName String
Name of the branch.
commitMessage String
Commit message used for the merge commit.
connectorRef String
Identifier of the Harness Connector used for CRUD operations on the Entity. To reference a connector at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference a connector at the account scope, prefix 'account` to the expression: account.{identifier}.
filePath String
File path of the Entity in the repository.
isHarnessCodeRepo Boolean
If the repo is harness code.
lastCommitId String
Last commit identifier (for Git Repositories other than Github). To be provided only when updating Pipeline.
lastObjectId String
Last object identifier (for Github). To be provided only when updating Pipeline.
parentEntityConnectorRef String
Connector reference for Parent Entity (Pipeline). To reference a connector at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference a connector at the account scope, prefix 'account` to the expression: account.{identifier}.
parentEntityRepoName String
Repository name for Parent Entity (Pipeline).
repoName String
Name of the repository.
storeType String
Specifies whether the Entity is to be stored in Git or not. Possible values: INLINE, REMOTE.
baseBranch string
Name of the default branch (this checks out a new branch titled by branch_name).
branchName string
Name of the branch.
commitMessage string
Commit message used for the merge commit.
connectorRef string
Identifier of the Harness Connector used for CRUD operations on the Entity. To reference a connector at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference a connector at the account scope, prefix 'account` to the expression: account.{identifier}.
filePath string
File path of the Entity in the repository.
isHarnessCodeRepo boolean
If the repo is harness code.
lastCommitId string
Last commit identifier (for Git Repositories other than Github). To be provided only when updating Pipeline.
lastObjectId string
Last object identifier (for Github). To be provided only when updating Pipeline.
parentEntityConnectorRef string
Connector reference for Parent Entity (Pipeline). To reference a connector at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference a connector at the account scope, prefix 'account` to the expression: account.{identifier}.
parentEntityRepoName string
Repository name for Parent Entity (Pipeline).
repoName string
Name of the repository.
storeType string
Specifies whether the Entity is to be stored in Git or not. Possible values: INLINE, REMOTE.
base_branch str
Name of the default branch (this checks out a new branch titled by branch_name).
branch_name str
Name of the branch.
commit_message str
Commit message used for the merge commit.
connector_ref str
Identifier of the Harness Connector used for CRUD operations on the Entity. To reference a connector at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference a connector at the account scope, prefix 'account` to the expression: account.{identifier}.
file_path str
File path of the Entity in the repository.
is_harness_code_repo bool
If the repo is harness code.
last_commit_id str
Last commit identifier (for Git Repositories other than Github). To be provided only when updating Pipeline.
last_object_id str
Last object identifier (for Github). To be provided only when updating Pipeline.
parent_entity_connector_ref str
Connector reference for Parent Entity (Pipeline). To reference a connector at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference a connector at the account scope, prefix 'account` to the expression: account.{identifier}.
parent_entity_repo_name str
Repository name for Parent Entity (Pipeline).
repo_name str
Name of the repository.
store_type str
Specifies whether the Entity is to be stored in Git or not. Possible values: INLINE, REMOTE.
baseBranch String
Name of the default branch (this checks out a new branch titled by branch_name).
branchName String
Name of the branch.
commitMessage String
Commit message used for the merge commit.
connectorRef String
Identifier of the Harness Connector used for CRUD operations on the Entity. To reference a connector at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference a connector at the account scope, prefix 'account` to the expression: account.{identifier}.
filePath String
File path of the Entity in the repository.
isHarnessCodeRepo Boolean
If the repo is harness code.
lastCommitId String
Last commit identifier (for Git Repositories other than Github). To be provided only when updating Pipeline.
lastObjectId String
Last object identifier (for Github). To be provided only when updating Pipeline.
parentEntityConnectorRef String
Connector reference for Parent Entity (Pipeline). To reference a connector at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference a connector at the account scope, prefix 'account` to the expression: account.{identifier}.
parentEntityRepoName String
Repository name for Parent Entity (Pipeline).
repoName String
Name of the repository.
storeType String
Specifies whether the Entity is to be stored in Git or not. Possible values: INLINE, REMOTE.

InputSetGitImportInfo
, InputSetGitImportInfoArgs

BranchName string
Name of the branch.
ConnectorRef string
Identifier of the Harness Connector used for importing entity from Git To reference a connector at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference a connector at the account scope, prefix 'account` to the expression: account.{identifier}.
FilePath string
File path of the Entity in the repository.
IsForceImport bool
RepoName string
Name of the repository.
BranchName string
Name of the branch.
ConnectorRef string
Identifier of the Harness Connector used for importing entity from Git To reference a connector at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference a connector at the account scope, prefix 'account` to the expression: account.{identifier}.
FilePath string
File path of the Entity in the repository.
IsForceImport bool
RepoName string
Name of the repository.
branchName String
Name of the branch.
connectorRef String
Identifier of the Harness Connector used for importing entity from Git To reference a connector at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference a connector at the account scope, prefix 'account` to the expression: account.{identifier}.
filePath String
File path of the Entity in the repository.
isForceImport Boolean
repoName String
Name of the repository.
branchName string
Name of the branch.
connectorRef string
Identifier of the Harness Connector used for importing entity from Git To reference a connector at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference a connector at the account scope, prefix 'account` to the expression: account.{identifier}.
filePath string
File path of the Entity in the repository.
isForceImport boolean
repoName string
Name of the repository.
branch_name str
Name of the branch.
connector_ref str
Identifier of the Harness Connector used for importing entity from Git To reference a connector at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference a connector at the account scope, prefix 'account` to the expression: account.{identifier}.
file_path str
File path of the Entity in the repository.
is_force_import bool
repo_name str
Name of the repository.
branchName String
Name of the branch.
connectorRef String
Identifier of the Harness Connector used for importing entity from Git To reference a connector at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference a connector at the account scope, prefix 'account` to the expression: account.{identifier}.
filePath String
File path of the Entity in the repository.
isForceImport Boolean
repoName String
Name of the repository.

InputSetInputSetImportRequest
, InputSetInputSetImportRequestArgs

InputSetDescription string
Description of the input set.
InputSetName string
Name of the input set.
InputSetDescription string
Description of the input set.
InputSetName string
Name of the input set.
inputSetDescription String
Description of the input set.
inputSetName String
Name of the input set.
inputSetDescription string
Description of the input set.
inputSetName string
Name of the input set.
input_set_description str
Description of the input set.
input_set_name str
Name of the input set.
inputSetDescription String
Description of the input set.
inputSetName String
Name of the input set.

Import

Import input set

$ pulumi import harness:platform/inputSet:InputSet example <org_id>/<project_id>/<pipeline_id>/<input_set_id>
Copy

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

Package Details

Repository
harness pulumi/pulumi-harness
License
Apache-2.0
Notes
This Pulumi package is based on the harness Terraform Provider.