harness.platform.Template
Explore with Pulumi AI
Resource for creating a Template. Description field is deprecated
Create Template Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Template(name: string, args: TemplateArgs, opts?: CustomResourceOptions);
@overload
def Template(resource_name: str,
args: TemplateArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Template(resource_name: str,
opts: Optional[ResourceOptions] = None,
identifier: Optional[str] = None,
version: Optional[str] = None,
import_from_git: Optional[bool] = None,
git_details: Optional[TemplateGitDetailsArgs] = None,
git_import_details: Optional[TemplateGitImportDetailsArgs] = None,
force_delete: Optional[str] = None,
comments: Optional[str] = None,
is_stable: Optional[bool] = None,
name: Optional[str] = None,
org_id: Optional[str] = None,
project_id: Optional[str] = None,
tags: Optional[Sequence[str]] = None,
template_import_request: Optional[TemplateTemplateImportRequestArgs] = None,
template_yaml: Optional[str] = None,
description: Optional[str] = None)
func NewTemplate(ctx *Context, name string, args TemplateArgs, opts ...ResourceOption) (*Template, error)
public Template(string name, TemplateArgs args, CustomResourceOptions? opts = null)
public Template(String name, TemplateArgs args)
public Template(String name, TemplateArgs args, CustomResourceOptions options)
type: harness:platform:Template
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 TemplateArgs
- 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 TemplateArgs
- 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 TemplateArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args TemplateArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args TemplateArgs
- 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 templateResource = new Harness.Platform.Template("templateResource", new()
{
Identifier = "string",
Version = "string",
ImportFromGit = false,
GitDetails = new Harness.Platform.Inputs.TemplateGitDetailsArgs
{
BaseBranch = "string",
BranchName = "string",
CommitMessage = "string",
ConnectorRef = "string",
FilePath = "string",
LastCommitId = "string",
LastObjectId = "string",
RepoName = "string",
StoreType = "string",
},
GitImportDetails = new Harness.Platform.Inputs.TemplateGitImportDetailsArgs
{
BranchName = "string",
ConnectorRef = "string",
FilePath = "string",
IsForceImport = false,
RepoName = "string",
},
ForceDelete = "string",
Comments = "string",
IsStable = false,
Name = "string",
OrgId = "string",
ProjectId = "string",
Tags = new[]
{
"string",
},
TemplateImportRequest = new Harness.Platform.Inputs.TemplateTemplateImportRequestArgs
{
TemplateDescription = "string",
TemplateName = "string",
TemplateVersion = "string",
},
TemplateYaml = "string",
});
example, err := platform.NewTemplate(ctx, "templateResource", &platform.TemplateArgs{
Identifier: pulumi.String("string"),
Version: pulumi.String("string"),
ImportFromGit: pulumi.Bool(false),
GitDetails: &platform.TemplateGitDetailsArgs{
BaseBranch: pulumi.String("string"),
BranchName: pulumi.String("string"),
CommitMessage: pulumi.String("string"),
ConnectorRef: pulumi.String("string"),
FilePath: pulumi.String("string"),
LastCommitId: pulumi.String("string"),
LastObjectId: pulumi.String("string"),
RepoName: pulumi.String("string"),
StoreType: pulumi.String("string"),
},
GitImportDetails: &platform.TemplateGitImportDetailsArgs{
BranchName: pulumi.String("string"),
ConnectorRef: pulumi.String("string"),
FilePath: pulumi.String("string"),
IsForceImport: pulumi.Bool(false),
RepoName: pulumi.String("string"),
},
ForceDelete: pulumi.String("string"),
Comments: pulumi.String("string"),
IsStable: pulumi.Bool(false),
Name: pulumi.String("string"),
OrgId: pulumi.String("string"),
ProjectId: pulumi.String("string"),
Tags: pulumi.StringArray{
pulumi.String("string"),
},
TemplateImportRequest: &platform.TemplateTemplateImportRequestArgs{
TemplateDescription: pulumi.String("string"),
TemplateName: pulumi.String("string"),
TemplateVersion: pulumi.String("string"),
},
TemplateYaml: pulumi.String("string"),
})
var templateResource = new Template("templateResource", TemplateArgs.builder()
.identifier("string")
.version("string")
.importFromGit(false)
.gitDetails(TemplateGitDetailsArgs.builder()
.baseBranch("string")
.branchName("string")
.commitMessage("string")
.connectorRef("string")
.filePath("string")
.lastCommitId("string")
.lastObjectId("string")
.repoName("string")
.storeType("string")
.build())
.gitImportDetails(TemplateGitImportDetailsArgs.builder()
.branchName("string")
.connectorRef("string")
.filePath("string")
.isForceImport(false)
.repoName("string")
.build())
.forceDelete("string")
.comments("string")
.isStable(false)
.name("string")
.orgId("string")
.projectId("string")
.tags("string")
.templateImportRequest(TemplateTemplateImportRequestArgs.builder()
.templateDescription("string")
.templateName("string")
.templateVersion("string")
.build())
.templateYaml("string")
.build());
template_resource = harness.platform.Template("templateResource",
identifier="string",
version="string",
import_from_git=False,
git_details=harness.platform.TemplateGitDetailsArgs(
base_branch="string",
branch_name="string",
commit_message="string",
connector_ref="string",
file_path="string",
last_commit_id="string",
last_object_id="string",
repo_name="string",
store_type="string",
),
git_import_details=harness.platform.TemplateGitImportDetailsArgs(
branch_name="string",
connector_ref="string",
file_path="string",
is_force_import=False,
repo_name="string",
),
force_delete="string",
comments="string",
is_stable=False,
name="string",
org_id="string",
project_id="string",
tags=["string"],
template_import_request=harness.platform.TemplateTemplateImportRequestArgs(
template_description="string",
template_name="string",
template_version="string",
),
template_yaml="string")
const templateResource = new harness.platform.Template("templateResource", {
identifier: "string",
version: "string",
importFromGit: false,
gitDetails: {
baseBranch: "string",
branchName: "string",
commitMessage: "string",
connectorRef: "string",
filePath: "string",
lastCommitId: "string",
lastObjectId: "string",
repoName: "string",
storeType: "string",
},
gitImportDetails: {
branchName: "string",
connectorRef: "string",
filePath: "string",
isForceImport: false,
repoName: "string",
},
forceDelete: "string",
comments: "string",
isStable: false,
name: "string",
orgId: "string",
projectId: "string",
tags: ["string"],
templateImportRequest: {
templateDescription: "string",
templateName: "string",
templateVersion: "string",
},
templateYaml: "string",
});
type: harness:platform:Template
properties:
comments: string
forceDelete: string
gitDetails:
baseBranch: string
branchName: string
commitMessage: string
connectorRef: string
filePath: string
lastCommitId: string
lastObjectId: string
repoName: string
storeType: string
gitImportDetails:
branchName: string
connectorRef: string
filePath: string
isForceImport: false
repoName: string
identifier: string
importFromGit: false
isStable: false
name: string
orgId: string
projectId: string
tags:
- string
templateImportRequest:
templateDescription: string
templateName: string
templateVersion: string
templateYaml: string
version: string
Template 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 Template resource accepts the following input properties:
- Identifier string
- Unique identifier of the resource
- Version string
- Version Label for Template.
- Comments string
- Specify comment with respect to changes.
- Description string
- Description of the entity. Description field is deprecated
- Force
Delete string - Enable this flag for force deletion of template. It will delete the Harness entity even if your pipelines or other entities reference it
- Git
Details TemplateGit Details - Contains parameters related to creating an Entity for Git Experience.
- Git
Import TemplateDetails Git Import Details - Contains Git Information for importing entities from Git
- Import
From boolGit - Flag to set if importing from Git
- Is
Stable bool - True if given version for template to be set as stable.
- Name string
- Name of the Variable
- Org
Id string - Organization Identifier for the Entity
- Project
Id string - Project Identifier for the Entity
- List<string>
- Tags to associate with the resource.
- Template
Import TemplateRequest Template Import Request - Contains parameters for importing template.
- Template
Yaml string - Yaml for creating new Template. 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 string
- Unique identifier of the resource
- Version string
- Version Label for Template.
- Comments string
- Specify comment with respect to changes.
- Description string
- Description of the entity. Description field is deprecated
- Force
Delete string - Enable this flag for force deletion of template. It will delete the Harness entity even if your pipelines or other entities reference it
- Git
Details TemplateGit Details Args - Contains parameters related to creating an Entity for Git Experience.
- Git
Import TemplateDetails Git Import Details Args - Contains Git Information for importing entities from Git
- Import
From boolGit - Flag to set if importing from Git
- Is
Stable bool - True if given version for template to be set as stable.
- Name string
- Name of the Variable
- Org
Id string - Organization Identifier for the Entity
- Project
Id string - Project Identifier for the Entity
- []string
- Tags to associate with the resource.
- Template
Import TemplateRequest Template Import Request Args - Contains parameters for importing template.
- Template
Yaml string - Yaml for creating new Template. 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 String
- Unique identifier of the resource
- version String
- Version Label for Template.
- comments String
- Specify comment with respect to changes.
- description String
- Description of the entity. Description field is deprecated
- force
Delete String - Enable this flag for force deletion of template. It will delete the Harness entity even if your pipelines or other entities reference it
- git
Details TemplateGit Details - Contains parameters related to creating an Entity for Git Experience.
- git
Import TemplateDetails Git Import Details - Contains Git Information for importing entities from Git
- import
From BooleanGit - Flag to set if importing from Git
- is
Stable Boolean - True if given version for template to be set as stable.
- name String
- Name of the Variable
- org
Id String - Organization Identifier for the Entity
- project
Id String - Project Identifier for the Entity
- List<String>
- Tags to associate with the resource.
- template
Import TemplateRequest Template Import Request - Contains parameters for importing template.
- template
Yaml String - Yaml for creating new Template. 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 string
- Unique identifier of the resource
- version string
- Version Label for Template.
- comments string
- Specify comment with respect to changes.
- description string
- Description of the entity. Description field is deprecated
- force
Delete string - Enable this flag for force deletion of template. It will delete the Harness entity even if your pipelines or other entities reference it
- git
Details TemplateGit Details - Contains parameters related to creating an Entity for Git Experience.
- git
Import TemplateDetails Git Import Details - Contains Git Information for importing entities from Git
- import
From booleanGit - Flag to set if importing from Git
- is
Stable boolean - True if given version for template to be set as stable.
- name string
- Name of the Variable
- org
Id string - Organization Identifier for the Entity
- project
Id string - Project Identifier for the Entity
- string[]
- Tags to associate with the resource.
- template
Import TemplateRequest Template Import Request - Contains parameters for importing template.
- template
Yaml string - Yaml for creating new Template. 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 str
- Unique identifier of the resource
- version str
- Version Label for Template.
- comments str
- Specify comment with respect to changes.
- description str
- Description of the entity. Description field is deprecated
- force_
delete str - Enable this flag for force deletion of template. It will delete the Harness entity even if your pipelines or other entities reference it
- git_
details TemplateGit Details Args - Contains parameters related to creating an Entity for Git Experience.
- git_
import_ Templatedetails Git Import Details Args - Contains Git Information for importing entities from Git
- import_
from_ boolgit - Flag to set if importing from Git
- is_
stable bool - True if given version for template to be set as stable.
- name str
- Name of the Variable
- org_
id str - Organization Identifier for the Entity
- project_
id str - Project Identifier for the Entity
- Sequence[str]
- Tags to associate with the resource.
- template_
import_ Templaterequest Template Import Request Args - Contains parameters for importing template.
- template_
yaml str - Yaml for creating new Template. 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 String
- Unique identifier of the resource
- version String
- Version Label for Template.
- comments String
- Specify comment with respect to changes.
- description String
- Description of the entity. Description field is deprecated
- force
Delete String - Enable this flag for force deletion of template. It will delete the Harness entity even if your pipelines or other entities reference it
- git
Details Property Map - Contains parameters related to creating an Entity for Git Experience.
- git
Import Property MapDetails - Contains Git Information for importing entities from Git
- import
From BooleanGit - Flag to set if importing from Git
- is
Stable Boolean - True if given version for template to be set as stable.
- name String
- Name of the Variable
- org
Id String - Organization Identifier for the Entity
- project
Id String - Project Identifier for the Entity
- List<String>
- Tags to associate with the resource.
- template
Import Property MapRequest - Contains parameters for importing template.
- template
Yaml String - Yaml for creating new Template. 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 Template 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 Template Resource
Get an existing Template 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?: TemplateState, opts?: CustomResourceOptions): Template
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
comments: Optional[str] = None,
description: Optional[str] = None,
force_delete: Optional[str] = None,
git_details: Optional[TemplateGitDetailsArgs] = None,
git_import_details: Optional[TemplateGitImportDetailsArgs] = None,
identifier: Optional[str] = None,
import_from_git: Optional[bool] = None,
is_stable: Optional[bool] = None,
name: Optional[str] = None,
org_id: Optional[str] = None,
project_id: Optional[str] = None,
tags: Optional[Sequence[str]] = None,
template_import_request: Optional[TemplateTemplateImportRequestArgs] = None,
template_yaml: Optional[str] = None,
version: Optional[str] = None) -> Template
func GetTemplate(ctx *Context, name string, id IDInput, state *TemplateState, opts ...ResourceOption) (*Template, error)
public static Template Get(string name, Input<string> id, TemplateState? state, CustomResourceOptions? opts = null)
public static Template get(String name, Output<String> id, TemplateState 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.
- Comments string
- Specify comment with respect to changes.
- Description string
- Description of the entity. Description field is deprecated
- Force
Delete string - Enable this flag for force deletion of template. It will delete the Harness entity even if your pipelines or other entities reference it
- Git
Details TemplateGit Details - Contains parameters related to creating an Entity for Git Experience.
- Git
Import TemplateDetails Git Import Details - Contains Git Information for importing entities from Git
- Identifier string
- Unique identifier of the resource
- Import
From boolGit - Flag to set if importing from Git
- Is
Stable bool - True if given version for template to be set as stable.
- Name string
- Name of the Variable
- Org
Id string - Organization Identifier for the Entity
- Project
Id string - Project Identifier for the Entity
- List<string>
- Tags to associate with the resource.
- Template
Import TemplateRequest Template Import Request - Contains parameters for importing template.
- Template
Yaml string - Yaml for creating new Template. 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.
- Version string
- Version Label for Template.
- Comments string
- Specify comment with respect to changes.
- Description string
- Description of the entity. Description field is deprecated
- Force
Delete string - Enable this flag for force deletion of template. It will delete the Harness entity even if your pipelines or other entities reference it
- Git
Details TemplateGit Details Args - Contains parameters related to creating an Entity for Git Experience.
- Git
Import TemplateDetails Git Import Details Args - Contains Git Information for importing entities from Git
- Identifier string
- Unique identifier of the resource
- Import
From boolGit - Flag to set if importing from Git
- Is
Stable bool - True if given version for template to be set as stable.
- Name string
- Name of the Variable
- Org
Id string - Organization Identifier for the Entity
- Project
Id string - Project Identifier for the Entity
- []string
- Tags to associate with the resource.
- Template
Import TemplateRequest Template Import Request Args - Contains parameters for importing template.
- Template
Yaml string - Yaml for creating new Template. 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.
- Version string
- Version Label for Template.
- comments String
- Specify comment with respect to changes.
- description String
- Description of the entity. Description field is deprecated
- force
Delete String - Enable this flag for force deletion of template. It will delete the Harness entity even if your pipelines or other entities reference it
- git
Details TemplateGit Details - Contains parameters related to creating an Entity for Git Experience.
- git
Import TemplateDetails Git Import Details - Contains Git Information for importing entities from Git
- identifier String
- Unique identifier of the resource
- import
From BooleanGit - Flag to set if importing from Git
- is
Stable Boolean - True if given version for template to be set as stable.
- name String
- Name of the Variable
- org
Id String - Organization Identifier for the Entity
- project
Id String - Project Identifier for the Entity
- List<String>
- Tags to associate with the resource.
- template
Import TemplateRequest Template Import Request - Contains parameters for importing template.
- template
Yaml String - Yaml for creating new Template. 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.
- version String
- Version Label for Template.
- comments string
- Specify comment with respect to changes.
- description string
- Description of the entity. Description field is deprecated
- force
Delete string - Enable this flag for force deletion of template. It will delete the Harness entity even if your pipelines or other entities reference it
- git
Details TemplateGit Details - Contains parameters related to creating an Entity for Git Experience.
- git
Import TemplateDetails Git Import Details - Contains Git Information for importing entities from Git
- identifier string
- Unique identifier of the resource
- import
From booleanGit - Flag to set if importing from Git
- is
Stable boolean - True if given version for template to be set as stable.
- name string
- Name of the Variable
- org
Id string - Organization Identifier for the Entity
- project
Id string - Project Identifier for the Entity
- string[]
- Tags to associate with the resource.
- template
Import TemplateRequest Template Import Request - Contains parameters for importing template.
- template
Yaml string - Yaml for creating new Template. 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.
- version string
- Version Label for Template.
- comments str
- Specify comment with respect to changes.
- description str
- Description of the entity. Description field is deprecated
- force_
delete str - Enable this flag for force deletion of template. It will delete the Harness entity even if your pipelines or other entities reference it
- git_
details TemplateGit Details Args - Contains parameters related to creating an Entity for Git Experience.
- git_
import_ Templatedetails Git Import Details Args - Contains Git Information for importing entities from Git
- identifier str
- Unique identifier of the resource
- import_
from_ boolgit - Flag to set if importing from Git
- is_
stable bool - True if given version for template to be set as stable.
- name str
- Name of the Variable
- org_
id str - Organization Identifier for the Entity
- project_
id str - Project Identifier for the Entity
- Sequence[str]
- Tags to associate with the resource.
- template_
import_ Templaterequest Template Import Request Args - Contains parameters for importing template.
- template_
yaml str - Yaml for creating new Template. 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.
- version str
- Version Label for Template.
- comments String
- Specify comment with respect to changes.
- description String
- Description of the entity. Description field is deprecated
- force
Delete String - Enable this flag for force deletion of template. It will delete the Harness entity even if your pipelines or other entities reference it
- git
Details Property Map - Contains parameters related to creating an Entity for Git Experience.
- git
Import Property MapDetails - Contains Git Information for importing entities from Git
- identifier String
- Unique identifier of the resource
- import
From BooleanGit - Flag to set if importing from Git
- is
Stable Boolean - True if given version for template to be set as stable.
- name String
- Name of the Variable
- org
Id String - Organization Identifier for the Entity
- project
Id String - Project Identifier for the Entity
- List<String>
- Tags to associate with the resource.
- template
Import Property MapRequest - Contains parameters for importing template.
- template
Yaml String - Yaml for creating new Template. 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.
- version String
- Version Label for Template.
Supporting Types
TemplateGitDetails, TemplateGitDetailsArgs
- Base
Branch string - Name of the default branch (this checks out a new branch titled by branch_name).
- Branch
Name string - Name of the branch.
- Commit
Message string - Commit message used for the merge commit.
- Connector
Ref 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}.
- File
Path string - File path of the Entity in the repository.
- Last
Commit stringId - Last commit identifier (for Git Repositories other than Github). To be provided only when updating Pipeline.
- Last
Object stringId - Last object identifier (for Github). To be provided only when updating Pipeline.
- Repo
Name string - Name of the repository.
- Store
Type string - Specifies whether the Entity is to be stored in Git or not. Possible values: INLINE, REMOTE.
- Base
Branch string - Name of the default branch (this checks out a new branch titled by branch_name).
- Branch
Name string - Name of the branch.
- Commit
Message string - Commit message used for the merge commit.
- Connector
Ref 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}.
- File
Path string - File path of the Entity in the repository.
- Last
Commit stringId - Last commit identifier (for Git Repositories other than Github). To be provided only when updating Pipeline.
- Last
Object stringId - Last object identifier (for Github). To be provided only when updating Pipeline.
- Repo
Name string - Name of the repository.
- Store
Type string - Specifies whether the Entity is to be stored in Git or not. Possible values: INLINE, REMOTE.
- base
Branch String - Name of the default branch (this checks out a new branch titled by branch_name).
- branch
Name String - Name of the branch.
- commit
Message String - Commit message used for the merge commit.
- connector
Ref 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}.
- file
Path String - File path of the Entity in the repository.
- last
Commit StringId - Last commit identifier (for Git Repositories other than Github). To be provided only when updating Pipeline.
- last
Object StringId - Last object identifier (for Github). To be provided only when updating Pipeline.
- repo
Name String - Name of the repository.
- store
Type String - Specifies whether the Entity is to be stored in Git or not. Possible values: INLINE, REMOTE.
- base
Branch string - Name of the default branch (this checks out a new branch titled by branch_name).
- branch
Name string - Name of the branch.
- commit
Message string - Commit message used for the merge commit.
- connector
Ref 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}.
- file
Path string - File path of the Entity in the repository.
- last
Commit stringId - Last commit identifier (for Git Repositories other than Github). To be provided only when updating Pipeline.
- last
Object stringId - Last object identifier (for Github). To be provided only when updating Pipeline.
- repo
Name string - Name of the repository.
- store
Type 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.
- last_
commit_ strid - Last commit identifier (for Git Repositories other than Github). To be provided only when updating Pipeline.
- last_
object_ strid - Last object identifier (for Github). To be provided only when updating 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.
- base
Branch String - Name of the default branch (this checks out a new branch titled by branch_name).
- branch
Name String - Name of the branch.
- commit
Message String - Commit message used for the merge commit.
- connector
Ref 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}.
- file
Path String - File path of the Entity in the repository.
- last
Commit StringId - Last commit identifier (for Git Repositories other than Github). To be provided only when updating Pipeline.
- last
Object StringId - Last object identifier (for Github). To be provided only when updating Pipeline.
- repo
Name String - Name of the repository.
- store
Type String - Specifies whether the Entity is to be stored in Git or not. Possible values: INLINE, REMOTE.
TemplateGitImportDetails, TemplateGitImportDetailsArgs
- Branch
Name string - Name of the branch.
- Connector
Ref 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}.
- File
Path string - File path of the Entity in the repository.
- Is
Force boolImport - Repo
Name string - Name of the repository.
- Branch
Name string - Name of the branch.
- Connector
Ref 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}.
- File
Path string - File path of the Entity in the repository.
- Is
Force boolImport - Repo
Name string - Name of the repository.
- branch
Name String - Name of the branch.
- connector
Ref 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}.
- file
Path String - File path of the Entity in the repository.
- is
Force BooleanImport - repo
Name String - Name of the repository.
- branch
Name string - Name of the branch.
- connector
Ref 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}.
- file
Path string - File path of the Entity in the repository.
- is
Force booleanImport - repo
Name 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_ boolimport - repo_
name str - Name of the repository.
- branch
Name String - Name of the branch.
- connector
Ref 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}.
- file
Path String - File path of the Entity in the repository.
- is
Force BooleanImport - repo
Name String - Name of the repository.
TemplateTemplateImportRequest, TemplateTemplateImportRequestArgs
- Template
Description string - Description of the template.
- Template
Name string - Name of the template.
- Template
Version string - Version of the template.
- Template
Description string - Description of the template.
- Template
Name string - Name of the template.
- Template
Version string - Version of the template.
- template
Description String - Description of the template.
- template
Name String - Name of the template.
- template
Version String - Version of the template.
- template
Description string - Description of the template.
- template
Name string - Name of the template.
- template
Version string - Version of the template.
- template_
description str - Description of the template.
- template_
name str - Name of the template.
- template_
version str - Version of the template.
- template
Description String - Description of the template.
- template
Name String - Name of the template.
- template
Version String - Version of the template.
Import
Import account level template
$ pulumi import harness:platform/template:Template example <template_id>
Import org level template
$ pulumi import harness:platform/template:Template example <ord_id>/<template_id>
Import project level template
$ pulumi import harness:platform/template:Template example <org_id>/<project_id>/<template_id>
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.