harness.platform.PipelineFilters
Explore with Pulumi AI
Resource for creating Harness Pipeline Filters.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as harness from "@pulumi/harness";
const test = new harness.platform.PipelineFilters("test", {
identifier: "identifier",
name: "name",
orgId: "org_id",
projectId: "project_id",
type: "PipelineSetup",
filterProperties: {
name: "pipeline_name",
description: "pipeline_description",
pipelineIdentifiers: [
"id1",
"id2",
],
filterType: "PipelineSetup",
},
filterVisibility: "EveryOne",
});
// pipeline filter with tags
const exampleWithTags = new harness.platform.PipelineFilters("example_with_tags", {
identifier: "identifier",
name: "name",
orgId: "org_id",
projectId: "project_id",
type: "PipelineSetup",
filterProperties: {
filterType: "PipelineSetup",
pipelineTags: [
{
key: "tag1",
value: "123",
},
{
key: "tag2",
value: "456",
},
],
moduleProperties: {
cd: {
deploymentTypes: "Kubernetes",
serviceNames: [
"service1",
"service2",
],
environmentNames: [
"env1",
"env2",
],
artifactDisplayNames: [
"artificatname1",
"artifact2",
],
},
ci: {
buildType: "branch",
branch: "branch123",
repoNames: "repo1234",
},
},
},
});
import pulumi
import pulumi_harness as harness
test = harness.platform.PipelineFilters("test",
identifier="identifier",
name="name",
org_id="org_id",
project_id="project_id",
type="PipelineSetup",
filter_properties={
"name": "pipeline_name",
"description": "pipeline_description",
"pipeline_identifiers": [
"id1",
"id2",
],
"filter_type": "PipelineSetup",
},
filter_visibility="EveryOne")
# pipeline filter with tags
example_with_tags = harness.platform.PipelineFilters("example_with_tags",
identifier="identifier",
name="name",
org_id="org_id",
project_id="project_id",
type="PipelineSetup",
filter_properties={
"filter_type": "PipelineSetup",
"pipeline_tags": [
{
"key": "tag1",
"value": "123",
},
{
"key": "tag2",
"value": "456",
},
],
"module_properties": {
"cd": {
"deployment_types": "Kubernetes",
"service_names": [
"service1",
"service2",
],
"environment_names": [
"env1",
"env2",
],
"artifact_display_names": [
"artificatname1",
"artifact2",
],
},
"ci": {
"build_type": "branch",
"branch": "branch123",
"repo_names": "repo1234",
},
},
})
package main
import (
"github.com/pulumi/pulumi-harness/sdk/go/harness/platform"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := platform.NewPipelineFilters(ctx, "test", &platform.PipelineFiltersArgs{
Identifier: pulumi.String("identifier"),
Name: pulumi.String("name"),
OrgId: pulumi.String("org_id"),
ProjectId: pulumi.String("project_id"),
Type: pulumi.String("PipelineSetup"),
FilterProperties: &platform.PipelineFiltersFilterPropertiesArgs{
Name: pulumi.String("pipeline_name"),
Description: pulumi.String("pipeline_description"),
PipelineIdentifiers: pulumi.StringArray{
pulumi.String("id1"),
pulumi.String("id2"),
},
FilterType: pulumi.String("PipelineSetup"),
},
FilterVisibility: pulumi.String("EveryOne"),
})
if err != nil {
return err
}
// pipeline filter with tags
_, err = platform.NewPipelineFilters(ctx, "example_with_tags", &platform.PipelineFiltersArgs{
Identifier: pulumi.String("identifier"),
Name: pulumi.String("name"),
OrgId: pulumi.String("org_id"),
ProjectId: pulumi.String("project_id"),
Type: pulumi.String("PipelineSetup"),
FilterProperties: &platform.PipelineFiltersFilterPropertiesArgs{
FilterType: pulumi.String("PipelineSetup"),
PipelineTags: pulumi.StringMapArray{
pulumi.StringMap{
"key": pulumi.String("tag1"),
"value": pulumi.String("123"),
},
pulumi.StringMap{
"key": pulumi.String("tag2"),
"value": pulumi.String("456"),
},
},
ModuleProperties: &platform.PipelineFiltersFilterPropertiesModulePropertiesArgs{
Cd: &platform.PipelineFiltersFilterPropertiesModulePropertiesCdArgs{
DeploymentTypes: pulumi.String("Kubernetes"),
ServiceNames: pulumi.StringArray{
pulumi.String("service1"),
pulumi.String("service2"),
},
EnvironmentNames: pulumi.StringArray{
pulumi.String("env1"),
pulumi.String("env2"),
},
ArtifactDisplayNames: pulumi.StringArray{
pulumi.String("artificatname1"),
pulumi.String("artifact2"),
},
},
Ci: &platform.PipelineFiltersFilterPropertiesModulePropertiesCiArgs{
BuildType: pulumi.String("branch"),
Branch: pulumi.String("branch123"),
RepoNames: pulumi.String("repo1234"),
},
},
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Harness = Pulumi.Harness;
return await Deployment.RunAsync(() =>
{
var test = new Harness.Platform.PipelineFilters("test", new()
{
Identifier = "identifier",
Name = "name",
OrgId = "org_id",
ProjectId = "project_id",
Type = "PipelineSetup",
FilterProperties = new Harness.Platform.Inputs.PipelineFiltersFilterPropertiesArgs
{
Name = "pipeline_name",
Description = "pipeline_description",
PipelineIdentifiers = new[]
{
"id1",
"id2",
},
FilterType = "PipelineSetup",
},
FilterVisibility = "EveryOne",
});
// pipeline filter with tags
var exampleWithTags = new Harness.Platform.PipelineFilters("example_with_tags", new()
{
Identifier = "identifier",
Name = "name",
OrgId = "org_id",
ProjectId = "project_id",
Type = "PipelineSetup",
FilterProperties = new Harness.Platform.Inputs.PipelineFiltersFilterPropertiesArgs
{
FilterType = "PipelineSetup",
PipelineTags = new[]
{
{
{ "key", "tag1" },
{ "value", "123" },
},
{
{ "key", "tag2" },
{ "value", "456" },
},
},
ModuleProperties = new Harness.Platform.Inputs.PipelineFiltersFilterPropertiesModulePropertiesArgs
{
Cd = new Harness.Platform.Inputs.PipelineFiltersFilterPropertiesModulePropertiesCdArgs
{
DeploymentTypes = "Kubernetes",
ServiceNames = new[]
{
"service1",
"service2",
},
EnvironmentNames = new[]
{
"env1",
"env2",
},
ArtifactDisplayNames = new[]
{
"artificatname1",
"artifact2",
},
},
Ci = new Harness.Platform.Inputs.PipelineFiltersFilterPropertiesModulePropertiesCiArgs
{
BuildType = "branch",
Branch = "branch123",
RepoNames = "repo1234",
},
},
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.harness.platform.PipelineFilters;
import com.pulumi.harness.platform.PipelineFiltersArgs;
import com.pulumi.harness.platform.inputs.PipelineFiltersFilterPropertiesArgs;
import com.pulumi.harness.platform.inputs.PipelineFiltersFilterPropertiesModulePropertiesArgs;
import com.pulumi.harness.platform.inputs.PipelineFiltersFilterPropertiesModulePropertiesCdArgs;
import com.pulumi.harness.platform.inputs.PipelineFiltersFilterPropertiesModulePropertiesCiArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var test = new PipelineFilters("test", PipelineFiltersArgs.builder()
.identifier("identifier")
.name("name")
.orgId("org_id")
.projectId("project_id")
.type("PipelineSetup")
.filterProperties(PipelineFiltersFilterPropertiesArgs.builder()
.name("pipeline_name")
.description("pipeline_description")
.pipelineIdentifiers(
"id1",
"id2")
.filterType("PipelineSetup")
.build())
.filterVisibility("EveryOne")
.build());
// pipeline filter with tags
var exampleWithTags = new PipelineFilters("exampleWithTags", PipelineFiltersArgs.builder()
.identifier("identifier")
.name("name")
.orgId("org_id")
.projectId("project_id")
.type("PipelineSetup")
.filterProperties(PipelineFiltersFilterPropertiesArgs.builder()
.filterType("PipelineSetup")
.pipelineTags(
Map.ofEntries(
Map.entry("key", "tag1"),
Map.entry("value", "123")
),
Map.ofEntries(
Map.entry("key", "tag2"),
Map.entry("value", "456")
))
.moduleProperties(PipelineFiltersFilterPropertiesModulePropertiesArgs.builder()
.cd(PipelineFiltersFilterPropertiesModulePropertiesCdArgs.builder()
.deploymentTypes("Kubernetes")
.serviceNames(
"service1",
"service2")
.environmentNames(
"env1",
"env2")
.artifactDisplayNames(
"artificatname1",
"artifact2")
.build())
.ci(PipelineFiltersFilterPropertiesModulePropertiesCiArgs.builder()
.buildType("branch")
.branch("branch123")
.repoNames("repo1234")
.build())
.build())
.build())
.build());
}
}
resources:
test:
type: harness:platform:PipelineFilters
properties:
identifier: identifier
name: name
orgId: org_id
projectId: project_id
type: PipelineSetup
filterProperties:
name: pipeline_name
description: pipeline_description
pipelineIdentifiers:
- id1
- id2
filterType: PipelineSetup
filterVisibility: EveryOne
# pipeline filter with tags
exampleWithTags:
type: harness:platform:PipelineFilters
name: example_with_tags
properties:
identifier: identifier
name: name
orgId: org_id
projectId: project_id
type: PipelineSetup
filterProperties:
filterType: PipelineSetup
pipelineTags:
- key: tag1
value: '123'
- key: tag2
value: '456'
moduleProperties:
cd:
deploymentTypes: Kubernetes
serviceNames:
- service1
- service2
environmentNames:
- env1
- env2
artifactDisplayNames:
- artificatname1
- artifact2
ci:
buildType: branch
branch: branch123
repoNames: repo1234
Create PipelineFilters Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new PipelineFilters(name: string, args: PipelineFiltersArgs, opts?: CustomResourceOptions);
@overload
def PipelineFilters(resource_name: str,
args: PipelineFiltersArgs,
opts: Optional[ResourceOptions] = None)
@overload
def PipelineFilters(resource_name: str,
opts: Optional[ResourceOptions] = None,
filter_properties: Optional[PipelineFiltersFilterPropertiesArgs] = None,
identifier: Optional[str] = None,
type: Optional[str] = None,
filter_visibility: Optional[str] = None,
name: Optional[str] = None,
org_id: Optional[str] = None,
project_id: Optional[str] = None)
func NewPipelineFilters(ctx *Context, name string, args PipelineFiltersArgs, opts ...ResourceOption) (*PipelineFilters, error)
public PipelineFilters(string name, PipelineFiltersArgs args, CustomResourceOptions? opts = null)
public PipelineFilters(String name, PipelineFiltersArgs args)
public PipelineFilters(String name, PipelineFiltersArgs args, CustomResourceOptions options)
type: harness:platform:PipelineFilters
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 PipelineFiltersArgs
- 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 PipelineFiltersArgs
- 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 PipelineFiltersArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args PipelineFiltersArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args PipelineFiltersArgs
- 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 pipelineFiltersResource = new Harness.Platform.PipelineFilters("pipelineFiltersResource", new()
{
FilterProperties = new Harness.Platform.Inputs.PipelineFiltersFilterPropertiesArgs
{
FilterType = "string",
Description = "string",
ModuleProperties = new Harness.Platform.Inputs.PipelineFiltersFilterPropertiesModulePropertiesArgs
{
Cd = new Harness.Platform.Inputs.PipelineFiltersFilterPropertiesModulePropertiesCdArgs
{
ArtifactDisplayNames = new[]
{
"string",
},
DeploymentTypes = "string",
EnvironmentNames = new[]
{
"string",
},
ServiceNames = new[]
{
"string",
},
},
Ci = new Harness.Platform.Inputs.PipelineFiltersFilterPropertiesModulePropertiesCiArgs
{
Branch = "string",
BuildType = "string",
CiExecutionInfo = new Harness.Platform.Inputs.PipelineFiltersFilterPropertiesModulePropertiesCiCiExecutionInfoArgs
{
Event = "string",
PullRequest = new Harness.Platform.Inputs.PipelineFiltersFilterPropertiesModulePropertiesCiCiExecutionInfoPullRequestArgs
{
SourceBranch = "string",
TargetBranch = "string",
},
},
RepoNames = "string",
Tag = "string",
},
},
Name = "string",
PipelineIdentifiers = new[]
{
"string",
},
PipelineTags = new[]
{
{
{ "string", "string" },
},
},
Tags = new[]
{
"string",
},
},
Identifier = "string",
Type = "string",
FilterVisibility = "string",
Name = "string",
OrgId = "string",
ProjectId = "string",
});
example, err := platform.NewPipelineFilters(ctx, "pipelineFiltersResource", &platform.PipelineFiltersArgs{
FilterProperties: &platform.PipelineFiltersFilterPropertiesArgs{
FilterType: pulumi.String("string"),
Description: pulumi.String("string"),
ModuleProperties: &platform.PipelineFiltersFilterPropertiesModulePropertiesArgs{
Cd: &platform.PipelineFiltersFilterPropertiesModulePropertiesCdArgs{
ArtifactDisplayNames: pulumi.StringArray{
pulumi.String("string"),
},
DeploymentTypes: pulumi.String("string"),
EnvironmentNames: pulumi.StringArray{
pulumi.String("string"),
},
ServiceNames: pulumi.StringArray{
pulumi.String("string"),
},
},
Ci: &platform.PipelineFiltersFilterPropertiesModulePropertiesCiArgs{
Branch: pulumi.String("string"),
BuildType: pulumi.String("string"),
CiExecutionInfo: &platform.PipelineFiltersFilterPropertiesModulePropertiesCiCiExecutionInfoArgs{
Event: pulumi.String("string"),
PullRequest: &platform.PipelineFiltersFilterPropertiesModulePropertiesCiCiExecutionInfoPullRequestArgs{
SourceBranch: pulumi.String("string"),
TargetBranch: pulumi.String("string"),
},
},
RepoNames: pulumi.String("string"),
Tag: pulumi.String("string"),
},
},
Name: pulumi.String("string"),
PipelineIdentifiers: pulumi.StringArray{
pulumi.String("string"),
},
PipelineTags: pulumi.StringMapArray{
pulumi.StringMap{
"string": pulumi.String("string"),
},
},
Tags: pulumi.StringArray{
pulumi.String("string"),
},
},
Identifier: pulumi.String("string"),
Type: pulumi.String("string"),
FilterVisibility: pulumi.String("string"),
Name: pulumi.String("string"),
OrgId: pulumi.String("string"),
ProjectId: pulumi.String("string"),
})
var pipelineFiltersResource = new PipelineFilters("pipelineFiltersResource", PipelineFiltersArgs.builder()
.filterProperties(PipelineFiltersFilterPropertiesArgs.builder()
.filterType("string")
.description("string")
.moduleProperties(PipelineFiltersFilterPropertiesModulePropertiesArgs.builder()
.cd(PipelineFiltersFilterPropertiesModulePropertiesCdArgs.builder()
.artifactDisplayNames("string")
.deploymentTypes("string")
.environmentNames("string")
.serviceNames("string")
.build())
.ci(PipelineFiltersFilterPropertiesModulePropertiesCiArgs.builder()
.branch("string")
.buildType("string")
.ciExecutionInfo(PipelineFiltersFilterPropertiesModulePropertiesCiCiExecutionInfoArgs.builder()
.event("string")
.pullRequest(PipelineFiltersFilterPropertiesModulePropertiesCiCiExecutionInfoPullRequestArgs.builder()
.sourceBranch("string")
.targetBranch("string")
.build())
.build())
.repoNames("string")
.tag("string")
.build())
.build())
.name("string")
.pipelineIdentifiers("string")
.pipelineTags(Map.of("string", "string"))
.tags("string")
.build())
.identifier("string")
.type("string")
.filterVisibility("string")
.name("string")
.orgId("string")
.projectId("string")
.build());
pipeline_filters_resource = harness.platform.PipelineFilters("pipelineFiltersResource",
filter_properties=harness.platform.PipelineFiltersFilterPropertiesArgs(
filter_type="string",
description="string",
module_properties=harness.platform.PipelineFiltersFilterPropertiesModulePropertiesArgs(
cd=harness.platform.PipelineFiltersFilterPropertiesModulePropertiesCdArgs(
artifact_display_names=["string"],
deployment_types="string",
environment_names=["string"],
service_names=["string"],
),
ci=harness.platform.PipelineFiltersFilterPropertiesModulePropertiesCiArgs(
branch="string",
build_type="string",
ci_execution_info=harness.platform.PipelineFiltersFilterPropertiesModulePropertiesCiCiExecutionInfoArgs(
event="string",
pull_request=harness.platform.PipelineFiltersFilterPropertiesModulePropertiesCiCiExecutionInfoPullRequestArgs(
source_branch="string",
target_branch="string",
),
),
repo_names="string",
tag="string",
),
),
name="string",
pipeline_identifiers=["string"],
pipeline_tags=[{
"string": "string",
}],
tags=["string"],
),
identifier="string",
type="string",
filter_visibility="string",
name="string",
org_id="string",
project_id="string")
const pipelineFiltersResource = new harness.platform.PipelineFilters("pipelineFiltersResource", {
filterProperties: {
filterType: "string",
description: "string",
moduleProperties: {
cd: {
artifactDisplayNames: ["string"],
deploymentTypes: "string",
environmentNames: ["string"],
serviceNames: ["string"],
},
ci: {
branch: "string",
buildType: "string",
ciExecutionInfo: {
event: "string",
pullRequest: {
sourceBranch: "string",
targetBranch: "string",
},
},
repoNames: "string",
tag: "string",
},
},
name: "string",
pipelineIdentifiers: ["string"],
pipelineTags: [{
string: "string",
}],
tags: ["string"],
},
identifier: "string",
type: "string",
filterVisibility: "string",
name: "string",
orgId: "string",
projectId: "string",
});
type: harness:platform:PipelineFilters
properties:
filterProperties:
description: string
filterType: string
moduleProperties:
cd:
artifactDisplayNames:
- string
deploymentTypes: string
environmentNames:
- string
serviceNames:
- string
ci:
branch: string
buildType: string
ciExecutionInfo:
event: string
pullRequest:
sourceBranch: string
targetBranch: string
repoNames: string
tag: string
name: string
pipelineIdentifiers:
- string
pipelineTags:
- string: string
tags:
- string
filterVisibility: string
identifier: string
name: string
orgId: string
projectId: string
type: string
PipelineFilters 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 PipelineFilters resource accepts the following input properties:
- Filter
Properties PipelineFilters Filter Properties - Properties of the filters entity defined in Harness.
- Identifier string
- Unique identifier of the resource.
- Type string
- Type of pipeline filters. Currently supported types are {PipelineSetup, PipelineExecution, Deployment, Template, EnvironmentGroup, Environment}
- Filter
Visibility string - This indicates visibility of filters. By default, everyone can view this filter.
- Name string
- Name of the pipeline filters.
- Org
Id string - Organization Identifier for the Entity.
- Project
Id string - Project Identifier for the Entity.
- Filter
Properties PipelineFilters Filter Properties Args - Properties of the filters entity defined in Harness.
- Identifier string
- Unique identifier of the resource.
- Type string
- Type of pipeline filters. Currently supported types are {PipelineSetup, PipelineExecution, Deployment, Template, EnvironmentGroup, Environment}
- Filter
Visibility string - This indicates visibility of filters. By default, everyone can view this filter.
- Name string
- Name of the pipeline filters.
- Org
Id string - Organization Identifier for the Entity.
- Project
Id string - Project Identifier for the Entity.
- filter
Properties PipelineFilters Filter Properties - Properties of the filters entity defined in Harness.
- identifier String
- Unique identifier of the resource.
- type String
- Type of pipeline filters. Currently supported types are {PipelineSetup, PipelineExecution, Deployment, Template, EnvironmentGroup, Environment}
- filter
Visibility String - This indicates visibility of filters. By default, everyone can view this filter.
- name String
- Name of the pipeline filters.
- org
Id String - Organization Identifier for the Entity.
- project
Id String - Project Identifier for the Entity.
- filter
Properties PipelineFilters Filter Properties - Properties of the filters entity defined in Harness.
- identifier string
- Unique identifier of the resource.
- type string
- Type of pipeline filters. Currently supported types are {PipelineSetup, PipelineExecution, Deployment, Template, EnvironmentGroup, Environment}
- filter
Visibility string - This indicates visibility of filters. By default, everyone can view this filter.
- name string
- Name of the pipeline filters.
- org
Id string - Organization Identifier for the Entity.
- project
Id string - Project Identifier for the Entity.
- filter_
properties PipelineFilters Filter Properties Args - Properties of the filters entity defined in Harness.
- identifier str
- Unique identifier of the resource.
- type str
- Type of pipeline filters. Currently supported types are {PipelineSetup, PipelineExecution, Deployment, Template, EnvironmentGroup, Environment}
- filter_
visibility str - This indicates visibility of filters. By default, everyone can view this filter.
- name str
- Name of the pipeline filters.
- org_
id str - Organization Identifier for the Entity.
- project_
id str - Project Identifier for the Entity.
- filter
Properties Property Map - Properties of the filters entity defined in Harness.
- identifier String
- Unique identifier of the resource.
- type String
- Type of pipeline filters. Currently supported types are {PipelineSetup, PipelineExecution, Deployment, Template, EnvironmentGroup, Environment}
- filter
Visibility String - This indicates visibility of filters. By default, everyone can view this filter.
- name String
- Name of the pipeline filters.
- org
Id String - Organization Identifier for the Entity.
- project
Id String - Project Identifier for the Entity.
Outputs
All input properties are implicitly available as output properties. Additionally, the PipelineFilters 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 PipelineFilters Resource
Get an existing PipelineFilters 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?: PipelineFiltersState, opts?: CustomResourceOptions): PipelineFilters
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
filter_properties: Optional[PipelineFiltersFilterPropertiesArgs] = None,
filter_visibility: Optional[str] = None,
identifier: Optional[str] = None,
name: Optional[str] = None,
org_id: Optional[str] = None,
project_id: Optional[str] = None,
type: Optional[str] = None) -> PipelineFilters
func GetPipelineFilters(ctx *Context, name string, id IDInput, state *PipelineFiltersState, opts ...ResourceOption) (*PipelineFilters, error)
public static PipelineFilters Get(string name, Input<string> id, PipelineFiltersState? state, CustomResourceOptions? opts = null)
public static PipelineFilters get(String name, Output<String> id, PipelineFiltersState 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.
- Filter
Properties PipelineFilters Filter Properties - Properties of the filters entity defined in Harness.
- Filter
Visibility string - This indicates visibility of filters. By default, everyone can view this filter.
- Identifier string
- Unique identifier of the resource.
- Name string
- Name of the pipeline filters.
- Org
Id string - Organization Identifier for the Entity.
- Project
Id string - Project Identifier for the Entity.
- Type string
- Type of pipeline filters. Currently supported types are {PipelineSetup, PipelineExecution, Deployment, Template, EnvironmentGroup, Environment}
- Filter
Properties PipelineFilters Filter Properties Args - Properties of the filters entity defined in Harness.
- Filter
Visibility string - This indicates visibility of filters. By default, everyone can view this filter.
- Identifier string
- Unique identifier of the resource.
- Name string
- Name of the pipeline filters.
- Org
Id string - Organization Identifier for the Entity.
- Project
Id string - Project Identifier for the Entity.
- Type string
- Type of pipeline filters. Currently supported types are {PipelineSetup, PipelineExecution, Deployment, Template, EnvironmentGroup, Environment}
- filter
Properties PipelineFilters Filter Properties - Properties of the filters entity defined in Harness.
- filter
Visibility String - This indicates visibility of filters. By default, everyone can view this filter.
- identifier String
- Unique identifier of the resource.
- name String
- Name of the pipeline filters.
- org
Id String - Organization Identifier for the Entity.
- project
Id String - Project Identifier for the Entity.
- type String
- Type of pipeline filters. Currently supported types are {PipelineSetup, PipelineExecution, Deployment, Template, EnvironmentGroup, Environment}
- filter
Properties PipelineFilters Filter Properties - Properties of the filters entity defined in Harness.
- filter
Visibility string - This indicates visibility of filters. By default, everyone can view this filter.
- identifier string
- Unique identifier of the resource.
- name string
- Name of the pipeline filters.
- org
Id string - Organization Identifier for the Entity.
- project
Id string - Project Identifier for the Entity.
- type string
- Type of pipeline filters. Currently supported types are {PipelineSetup, PipelineExecution, Deployment, Template, EnvironmentGroup, Environment}
- filter_
properties PipelineFilters Filter Properties Args - Properties of the filters entity defined in Harness.
- filter_
visibility str - This indicates visibility of filters. By default, everyone can view this filter.
- identifier str
- Unique identifier of the resource.
- name str
- Name of the pipeline filters.
- org_
id str - Organization Identifier for the Entity.
- project_
id str - Project Identifier for the Entity.
- type str
- Type of pipeline filters. Currently supported types are {PipelineSetup, PipelineExecution, Deployment, Template, EnvironmentGroup, Environment}
- filter
Properties Property Map - Properties of the filters entity defined in Harness.
- filter
Visibility String - This indicates visibility of filters. By default, everyone can view this filter.
- identifier String
- Unique identifier of the resource.
- name String
- Name of the pipeline filters.
- org
Id String - Organization Identifier for the Entity.
- project
Id String - Project Identifier for the Entity.
- type String
- Type of pipeline filters. Currently supported types are {PipelineSetup, PipelineExecution, Deployment, Template, EnvironmentGroup, Environment}
Supporting Types
PipelineFiltersFilterProperties, PipelineFiltersFilterPropertiesArgs
- Filter
Type string - Corresponding Entity of the filters. Currently supported types are {Connector, DelegateProfile, Delegate, PipelineSetup, PipelineExecution, Deployment, Audit, Template, EnvironmentGroup, FileStore, CCMRecommendation, Anomaly, Environment}.
- Description string
- description of the pipline filter.
- Module
Properties PipelineFilters Filter Properties Module Properties - module properties of the pipline filter.
- Name string
- Name of the pipeline filter.
- Pipeline
Identifiers List<string> - Pipeline identifiers to filter on.
- List<Immutable
Dictionary<string, string>> - Tags to associate with the pipeline. tags should be in the form of
{key:key1, value:key1value}
- List<string>
- Tags to associate with the resource. Tags should be in the form
name:value
.
- Filter
Type string - Corresponding Entity of the filters. Currently supported types are {Connector, DelegateProfile, Delegate, PipelineSetup, PipelineExecution, Deployment, Audit, Template, EnvironmentGroup, FileStore, CCMRecommendation, Anomaly, Environment}.
- Description string
- description of the pipline filter.
- Module
Properties PipelineFilters Filter Properties Module Properties - module properties of the pipline filter.
- Name string
- Name of the pipeline filter.
- Pipeline
Identifiers []string - Pipeline identifiers to filter on.
- []map[string]string
- Tags to associate with the pipeline. tags should be in the form of
{key:key1, value:key1value}
- []string
- Tags to associate with the resource. Tags should be in the form
name:value
.
- filter
Type String - Corresponding Entity of the filters. Currently supported types are {Connector, DelegateProfile, Delegate, PipelineSetup, PipelineExecution, Deployment, Audit, Template, EnvironmentGroup, FileStore, CCMRecommendation, Anomaly, Environment}.
- description String
- description of the pipline filter.
- module
Properties PipelineFilters Filter Properties Module Properties - module properties of the pipline filter.
- name String
- Name of the pipeline filter.
- pipeline
Identifiers List<String> - Pipeline identifiers to filter on.
- List<Map<String,String>>
- Tags to associate with the pipeline. tags should be in the form of
{key:key1, value:key1value}
- List<String>
- Tags to associate with the resource. Tags should be in the form
name:value
.
- filter
Type string - Corresponding Entity of the filters. Currently supported types are {Connector, DelegateProfile, Delegate, PipelineSetup, PipelineExecution, Deployment, Audit, Template, EnvironmentGroup, FileStore, CCMRecommendation, Anomaly, Environment}.
- description string
- description of the pipline filter.
- module
Properties PipelineFilters Filter Properties Module Properties - module properties of the pipline filter.
- name string
- Name of the pipeline filter.
- pipeline
Identifiers string[] - Pipeline identifiers to filter on.
- {[key: string]: string}[]
- Tags to associate with the pipeline. tags should be in the form of
{key:key1, value:key1value}
- string[]
- Tags to associate with the resource. Tags should be in the form
name:value
.
- filter_
type str - Corresponding Entity of the filters. Currently supported types are {Connector, DelegateProfile, Delegate, PipelineSetup, PipelineExecution, Deployment, Audit, Template, EnvironmentGroup, FileStore, CCMRecommendation, Anomaly, Environment}.
- description str
- description of the pipline filter.
- module_
properties PipelineFilters Filter Properties Module Properties - module properties of the pipline filter.
- name str
- Name of the pipeline filter.
- pipeline_
identifiers Sequence[str] - Pipeline identifiers to filter on.
- Sequence[Mapping[str, str]]
- Tags to associate with the pipeline. tags should be in the form of
{key:key1, value:key1value}
- Sequence[str]
- Tags to associate with the resource. Tags should be in the form
name:value
.
- filter
Type String - Corresponding Entity of the filters. Currently supported types are {Connector, DelegateProfile, Delegate, PipelineSetup, PipelineExecution, Deployment, Audit, Template, EnvironmentGroup, FileStore, CCMRecommendation, Anomaly, Environment}.
- description String
- description of the pipline filter.
- module
Properties Property Map - module properties of the pipline filter.
- name String
- Name of the pipeline filter.
- pipeline
Identifiers List<String> - Pipeline identifiers to filter on.
- List<Map<String>>
- Tags to associate with the pipeline. tags should be in the form of
{key:key1, value:key1value}
- List<String>
- Tags to associate with the resource. Tags should be in the form
name:value
.
PipelineFiltersFilterPropertiesModuleProperties, PipelineFiltersFilterPropertiesModulePropertiesArgs
- Cd
Pipeline
Filters Filter Properties Module Properties Cd - CD related properties to be filtered on.
- Ci
Pipeline
Filters Filter Properties Module Properties Ci - CI related properties to be filtered on.
- Cd
Pipeline
Filters Filter Properties Module Properties Cd - CD related properties to be filtered on.
- Ci
Pipeline
Filters Filter Properties Module Properties Ci - CI related properties to be filtered on.
- cd
Pipeline
Filters Filter Properties Module Properties Cd - CD related properties to be filtered on.
- ci
Pipeline
Filters Filter Properties Module Properties Ci - CI related properties to be filtered on.
- cd
Pipeline
Filters Filter Properties Module Properties Cd - CD related properties to be filtered on.
- ci
Pipeline
Filters Filter Properties Module Properties Ci - CI related properties to be filtered on.
- cd
Pipeline
Filters Filter Properties Module Properties Cd - CD related properties to be filtered on.
- ci
Pipeline
Filters Filter Properties Module Properties Ci - CI related properties to be filtered on.
- cd Property Map
- CD related properties to be filtered on.
- ci Property Map
- CI related properties to be filtered on.
PipelineFiltersFilterPropertiesModulePropertiesCd, PipelineFiltersFilterPropertiesModulePropertiesCdArgs
- Artifact
Display List<string>Names - Artifact display names of the CD pipeline.
- Deployment
Types string - Deployment type of the CD pipeline, eg. Kubernetes
- Environment
Names List<string> - Environment names of the CD pipeline.
- Service
Names List<string> - Service names of the CD pipeline.
- Artifact
Display []stringNames - Artifact display names of the CD pipeline.
- Deployment
Types string - Deployment type of the CD pipeline, eg. Kubernetes
- Environment
Names []string - Environment names of the CD pipeline.
- Service
Names []string - Service names of the CD pipeline.
- artifact
Display List<String>Names - Artifact display names of the CD pipeline.
- deployment
Types String - Deployment type of the CD pipeline, eg. Kubernetes
- environment
Names List<String> - Environment names of the CD pipeline.
- service
Names List<String> - Service names of the CD pipeline.
- artifact
Display string[]Names - Artifact display names of the CD pipeline.
- deployment
Types string - Deployment type of the CD pipeline, eg. Kubernetes
- environment
Names string[] - Environment names of the CD pipeline.
- service
Names string[] - Service names of the CD pipeline.
- artifact_
display_ Sequence[str]names - Artifact display names of the CD pipeline.
- deployment_
types str - Deployment type of the CD pipeline, eg. Kubernetes
- environment_
names Sequence[str] - Environment names of the CD pipeline.
- service_
names Sequence[str] - Service names of the CD pipeline.
- artifact
Display List<String>Names - Artifact display names of the CD pipeline.
- deployment
Types String - Deployment type of the CD pipeline, eg. Kubernetes
- environment
Names List<String> - Environment names of the CD pipeline.
- service
Names List<String> - Service names of the CD pipeline.
PipelineFiltersFilterPropertiesModulePropertiesCi, PipelineFiltersFilterPropertiesModulePropertiesCiArgs
- Branch string
- Branch which was used while building.
- Build
Type string - Build type of the pipeline. Possible values: branch.
- Ci
Execution PipelineInfo Filters Filter Properties Module Properties Ci Ci Execution Info - CI execution info for the pipeline.
- Repo
Names string - name of the repository used in the pipeline.
- Tag string
- Tags to associate with the CI pipeline resource.
- Branch string
- Branch which was used while building.
- Build
Type string - Build type of the pipeline. Possible values: branch.
- Ci
Execution PipelineInfo Filters Filter Properties Module Properties Ci Ci Execution Info - CI execution info for the pipeline.
- Repo
Names string - name of the repository used in the pipeline.
- Tag string
- Tags to associate with the CI pipeline resource.
- branch String
- Branch which was used while building.
- build
Type String - Build type of the pipeline. Possible values: branch.
- ci
Execution PipelineInfo Filters Filter Properties Module Properties Ci Ci Execution Info - CI execution info for the pipeline.
- repo
Names String - name of the repository used in the pipeline.
- tag String
- Tags to associate with the CI pipeline resource.
- branch string
- Branch which was used while building.
- build
Type string - Build type of the pipeline. Possible values: branch.
- ci
Execution PipelineInfo Filters Filter Properties Module Properties Ci Ci Execution Info - CI execution info for the pipeline.
- repo
Names string - name of the repository used in the pipeline.
- tag string
- Tags to associate with the CI pipeline resource.
- branch str
- Branch which was used while building.
- build_
type str - Build type of the pipeline. Possible values: branch.
- ci_
execution_ Pipelineinfo Filters Filter Properties Module Properties Ci Ci Execution Info - CI execution info for the pipeline.
- repo_
names str - name of the repository used in the pipeline.
- tag str
- Tags to associate with the CI pipeline resource.
- branch String
- Branch which was used while building.
- build
Type String - Build type of the pipeline. Possible values: branch.
- ci
Execution Property MapInfo - CI execution info for the pipeline.
- repo
Names String - name of the repository used in the pipeline.
- tag String
- Tags to associate with the CI pipeline resource.
PipelineFiltersFilterPropertiesModulePropertiesCiCiExecutionInfo, PipelineFiltersFilterPropertiesModulePropertiesCiCiExecutionInfoArgs
- Event string
- Event for the ci execution, Possible values: pullRequest.
- Pull
Request PipelineFilters Filter Properties Module Properties Ci Ci Execution Info Pull Request - The pull request details of the CI pipeline.
- Event string
- Event for the ci execution, Possible values: pullRequest.
- Pull
Request PipelineFilters Filter Properties Module Properties Ci Ci Execution Info Pull Request - The pull request details of the CI pipeline.
- event String
- Event for the ci execution, Possible values: pullRequest.
- pull
Request PipelineFilters Filter Properties Module Properties Ci Ci Execution Info Pull Request - The pull request details of the CI pipeline.
- event string
- Event for the ci execution, Possible values: pullRequest.
- pull
Request PipelineFilters Filter Properties Module Properties Ci Ci Execution Info Pull Request - The pull request details of the CI pipeline.
- event str
- Event for the ci execution, Possible values: pullRequest.
- pull_
request PipelineFilters Filter Properties Module Properties Ci Ci Execution Info Pull Request - The pull request details of the CI pipeline.
- event String
- Event for the ci execution, Possible values: pullRequest.
- pull
Request Property Map - The pull request details of the CI pipeline.
PipelineFiltersFilterPropertiesModulePropertiesCiCiExecutionInfoPullRequest, PipelineFiltersFilterPropertiesModulePropertiesCiCiExecutionInfoPullRequestArgs
- Source
Branch string - Source branch of the pull request.
- Target
Branch string - Target branch of the pull request.
- Source
Branch string - Source branch of the pull request.
- Target
Branch string - Target branch of the pull request.
- source
Branch String - Source branch of the pull request.
- target
Branch String - Target branch of the pull request.
- source
Branch string - Source branch of the pull request.
- target
Branch string - Target branch of the pull request.
- source_
branch str - Source branch of the pull request.
- target_
branch str - Target branch of the pull request.
- source
Branch String - Source branch of the pull request.
- target
Branch String - Target branch of the pull request.
Import
Import account level pipeline filter
$ pulumi import harness:platform/pipelineFilters:PipelineFilters example <filter_id>/<type>
Import org level pipeline filter
$ pulumi import harness:platform/pipelineFilters:PipelineFilters example <ord_id>/<filter_id>/<type>
Import project level pipeline filter
$ pulumi import harness:platform/pipelineFilters:PipelineFilters example <org_id>/<project_id>/<filter_id>/<type>
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.