ibm.CdTektonPipelineProperty
Explore with Pulumi AI
Create, update, and delete cd_tekton_pipeline_propertys with this resource.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as ibm from "@pulumi/ibm";
const cdTektonPipelinePropertyInstance = new ibm.CdTektonPipelineProperty("cdTektonPipelinePropertyInstance", {
pipelineId: "94619026-912b-4d92-8f51-6c74f0692d90",
type: "text",
value: "https://github.com/open-toolchain/hello-tekton.git",
});
import pulumi
import pulumi_ibm as ibm
cd_tekton_pipeline_property_instance = ibm.CdTektonPipelineProperty("cdTektonPipelinePropertyInstance",
pipeline_id="94619026-912b-4d92-8f51-6c74f0692d90",
type="text",
value="https://github.com/open-toolchain/hello-tekton.git")
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/ibm/ibm"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := ibm.NewCdTektonPipelineProperty(ctx, "cdTektonPipelinePropertyInstance", &ibm.CdTektonPipelinePropertyArgs{
PipelineId: pulumi.String("94619026-912b-4d92-8f51-6c74f0692d90"),
Type: pulumi.String("text"),
Value: pulumi.String("https://github.com/open-toolchain/hello-tekton.git"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Ibm = Pulumi.Ibm;
return await Deployment.RunAsync(() =>
{
var cdTektonPipelinePropertyInstance = new Ibm.CdTektonPipelineProperty("cdTektonPipelinePropertyInstance", new()
{
PipelineId = "94619026-912b-4d92-8f51-6c74f0692d90",
Type = "text",
Value = "https://github.com/open-toolchain/hello-tekton.git",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.ibm.CdTektonPipelineProperty;
import com.pulumi.ibm.CdTektonPipelinePropertyArgs;
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 cdTektonPipelinePropertyInstance = new CdTektonPipelineProperty("cdTektonPipelinePropertyInstance", CdTektonPipelinePropertyArgs.builder()
.pipelineId("94619026-912b-4d92-8f51-6c74f0692d90")
.type("text")
.value("https://github.com/open-toolchain/hello-tekton.git")
.build());
}
}
resources:
cdTektonPipelinePropertyInstance:
type: ibm:CdTektonPipelineProperty
properties:
pipelineId: 94619026-912b-4d92-8f51-6c74f0692d90
type: text
value: https://github.com/open-toolchain/hello-tekton.git
Create CdTektonPipelineProperty Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new CdTektonPipelineProperty(name: string, args: CdTektonPipelinePropertyArgs, opts?: CustomResourceOptions);
@overload
def CdTektonPipelineProperty(resource_name: str,
args: CdTektonPipelinePropertyInitArgs,
opts: Optional[ResourceOptions] = None)
@overload
def CdTektonPipelineProperty(resource_name: str,
opts: Optional[ResourceOptions] = None,
pipeline_id: Optional[str] = None,
type: Optional[str] = None,
cd_tekton_pipeline_property_id: Optional[str] = None,
enums: Optional[Sequence[str]] = None,
locked: Optional[bool] = None,
name: Optional[str] = None,
path: Optional[str] = None,
value: Optional[str] = None)
func NewCdTektonPipelineProperty(ctx *Context, name string, args CdTektonPipelinePropertyArgs, opts ...ResourceOption) (*CdTektonPipelineProperty, error)
public CdTektonPipelineProperty(string name, CdTektonPipelinePropertyArgs args, CustomResourceOptions? opts = null)
public CdTektonPipelineProperty(String name, CdTektonPipelinePropertyArgs args)
public CdTektonPipelineProperty(String name, CdTektonPipelinePropertyArgs args, CustomResourceOptions options)
type: ibm:CdTektonPipelineProperty
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 CdTektonPipelinePropertyArgs
- 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 CdTektonPipelinePropertyInitArgs
- 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 CdTektonPipelinePropertyArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args CdTektonPipelinePropertyArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args CdTektonPipelinePropertyArgs
- 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 cdTektonPipelinePropertyResource = new Ibm.CdTektonPipelineProperty("cdTektonPipelinePropertyResource", new()
{
PipelineId = "string",
Type = "string",
CdTektonPipelinePropertyId = "string",
Enums = new[]
{
"string",
},
Locked = false,
Name = "string",
Path = "string",
Value = "string",
});
example, err := ibm.NewCdTektonPipelineProperty(ctx, "cdTektonPipelinePropertyResource", &ibm.CdTektonPipelinePropertyArgs{
PipelineId: pulumi.String("string"),
Type: pulumi.String("string"),
CdTektonPipelinePropertyId: pulumi.String("string"),
Enums: pulumi.StringArray{
pulumi.String("string"),
},
Locked: pulumi.Bool(false),
Name: pulumi.String("string"),
Path: pulumi.String("string"),
Value: pulumi.String("string"),
})
var cdTektonPipelinePropertyResource = new CdTektonPipelineProperty("cdTektonPipelinePropertyResource", CdTektonPipelinePropertyArgs.builder()
.pipelineId("string")
.type("string")
.cdTektonPipelinePropertyId("string")
.enums("string")
.locked(false)
.name("string")
.path("string")
.value("string")
.build());
cd_tekton_pipeline_property_resource = ibm.CdTektonPipelineProperty("cdTektonPipelinePropertyResource",
pipeline_id="string",
type="string",
cd_tekton_pipeline_property_id="string",
enums=["string"],
locked=False,
name="string",
path="string",
value="string")
const cdTektonPipelinePropertyResource = new ibm.CdTektonPipelineProperty("cdTektonPipelinePropertyResource", {
pipelineId: "string",
type: "string",
cdTektonPipelinePropertyId: "string",
enums: ["string"],
locked: false,
name: "string",
path: "string",
value: "string",
});
type: ibm:CdTektonPipelineProperty
properties:
cdTektonPipelinePropertyId: string
enums:
- string
locked: false
name: string
path: string
pipelineId: string
type: string
value: string
CdTektonPipelineProperty 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 CdTektonPipelineProperty resource accepts the following input properties:
- Pipeline
Id string - The Tekton pipeline ID.
- Constraints: The maximum length is
36
characters. The minimum length is36
characters. The value must match regular expression/^[-0-9a-z]+$/
.
- Constraints: The maximum length is
- Type string
- Property type.
- Constraints: Allowable values are:
secure
,text
,integration
,single_select
,appconfig
.
- Constraints: Allowable values are:
- Cd
Tekton stringPipeline Property Id - The unique identifier of the cd_tekton_pipeline_property.
- Enums List<string>
- Options for
single_select
property type. Only needed when usingsingle_select
property type.- Constraints: The list items must match regular expression
/^[-0-9a-zA-Z_.]{1,253}$/
. The maximum length is256
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- Locked bool
- When true, this property cannot be overridden by a trigger property or at runtime. Attempting to override it will result in run requests being rejected. The default is false.
- Name string
- Property name.
- Constraints: The maximum length is
253
characters. The minimum length is1
character. The value must match regular expression/^[-0-9a-zA-Z_.]{1,253}$/
.
- Constraints: The maximum length is
- Path string
- A dot notation path for
integration
type properties only, that selects a value from the tool integration. If left blank the full tool integration data will be used.- Constraints: The maximum length is
4096
characters. The minimum length is0
characters. The value must match regular expression/^[-0-9a-zA-Z_.]*$/
.
- Constraints: The maximum length is
- Value string
- Property value. Any string value is valid.
- Constraints: The maximum length is
4096
characters. The minimum length is0
characters. The value must match regular expression/^.*$/
.
- Constraints: The maximum length is
- Pipeline
Id string - The Tekton pipeline ID.
- Constraints: The maximum length is
36
characters. The minimum length is36
characters. The value must match regular expression/^[-0-9a-z]+$/
.
- Constraints: The maximum length is
- Type string
- Property type.
- Constraints: Allowable values are:
secure
,text
,integration
,single_select
,appconfig
.
- Constraints: Allowable values are:
- Cd
Tekton stringPipeline Property Id - The unique identifier of the cd_tekton_pipeline_property.
- Enums []string
- Options for
single_select
property type. Only needed when usingsingle_select
property type.- Constraints: The list items must match regular expression
/^[-0-9a-zA-Z_.]{1,253}$/
. The maximum length is256
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- Locked bool
- When true, this property cannot be overridden by a trigger property or at runtime. Attempting to override it will result in run requests being rejected. The default is false.
- Name string
- Property name.
- Constraints: The maximum length is
253
characters. The minimum length is1
character. The value must match regular expression/^[-0-9a-zA-Z_.]{1,253}$/
.
- Constraints: The maximum length is
- Path string
- A dot notation path for
integration
type properties only, that selects a value from the tool integration. If left blank the full tool integration data will be used.- Constraints: The maximum length is
4096
characters. The minimum length is0
characters. The value must match regular expression/^[-0-9a-zA-Z_.]*$/
.
- Constraints: The maximum length is
- Value string
- Property value. Any string value is valid.
- Constraints: The maximum length is
4096
characters. The minimum length is0
characters. The value must match regular expression/^.*$/
.
- Constraints: The maximum length is
- pipeline
Id String - The Tekton pipeline ID.
- Constraints: The maximum length is
36
characters. The minimum length is36
characters. The value must match regular expression/^[-0-9a-z]+$/
.
- Constraints: The maximum length is
- type String
- Property type.
- Constraints: Allowable values are:
secure
,text
,integration
,single_select
,appconfig
.
- Constraints: Allowable values are:
- cd
Tekton StringPipeline Property Id - The unique identifier of the cd_tekton_pipeline_property.
- enums List<String>
- Options for
single_select
property type. Only needed when usingsingle_select
property type.- Constraints: The list items must match regular expression
/^[-0-9a-zA-Z_.]{1,253}$/
. The maximum length is256
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- locked Boolean
- When true, this property cannot be overridden by a trigger property or at runtime. Attempting to override it will result in run requests being rejected. The default is false.
- name String
- Property name.
- Constraints: The maximum length is
253
characters. The minimum length is1
character. The value must match regular expression/^[-0-9a-zA-Z_.]{1,253}$/
.
- Constraints: The maximum length is
- path String
- A dot notation path for
integration
type properties only, that selects a value from the tool integration. If left blank the full tool integration data will be used.- Constraints: The maximum length is
4096
characters. The minimum length is0
characters. The value must match regular expression/^[-0-9a-zA-Z_.]*$/
.
- Constraints: The maximum length is
- value String
- Property value. Any string value is valid.
- Constraints: The maximum length is
4096
characters. The minimum length is0
characters. The value must match regular expression/^.*$/
.
- Constraints: The maximum length is
- pipeline
Id string - The Tekton pipeline ID.
- Constraints: The maximum length is
36
characters. The minimum length is36
characters. The value must match regular expression/^[-0-9a-z]+$/
.
- Constraints: The maximum length is
- type string
- Property type.
- Constraints: Allowable values are:
secure
,text
,integration
,single_select
,appconfig
.
- Constraints: Allowable values are:
- cd
Tekton stringPipeline Property Id - The unique identifier of the cd_tekton_pipeline_property.
- enums string[]
- Options for
single_select
property type. Only needed when usingsingle_select
property type.- Constraints: The list items must match regular expression
/^[-0-9a-zA-Z_.]{1,253}$/
. The maximum length is256
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- locked boolean
- When true, this property cannot be overridden by a trigger property or at runtime. Attempting to override it will result in run requests being rejected. The default is false.
- name string
- Property name.
- Constraints: The maximum length is
253
characters. The minimum length is1
character. The value must match regular expression/^[-0-9a-zA-Z_.]{1,253}$/
.
- Constraints: The maximum length is
- path string
- A dot notation path for
integration
type properties only, that selects a value from the tool integration. If left blank the full tool integration data will be used.- Constraints: The maximum length is
4096
characters. The minimum length is0
characters. The value must match regular expression/^[-0-9a-zA-Z_.]*$/
.
- Constraints: The maximum length is
- value string
- Property value. Any string value is valid.
- Constraints: The maximum length is
4096
characters. The minimum length is0
characters. The value must match regular expression/^.*$/
.
- Constraints: The maximum length is
- pipeline_
id str - The Tekton pipeline ID.
- Constraints: The maximum length is
36
characters. The minimum length is36
characters. The value must match regular expression/^[-0-9a-z]+$/
.
- Constraints: The maximum length is
- type str
- Property type.
- Constraints: Allowable values are:
secure
,text
,integration
,single_select
,appconfig
.
- Constraints: Allowable values are:
- cd_
tekton_ strpipeline_ property_ id - The unique identifier of the cd_tekton_pipeline_property.
- enums Sequence[str]
- Options for
single_select
property type. Only needed when usingsingle_select
property type.- Constraints: The list items must match regular expression
/^[-0-9a-zA-Z_.]{1,253}$/
. The maximum length is256
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- locked bool
- When true, this property cannot be overridden by a trigger property or at runtime. Attempting to override it will result in run requests being rejected. The default is false.
- name str
- Property name.
- Constraints: The maximum length is
253
characters. The minimum length is1
character. The value must match regular expression/^[-0-9a-zA-Z_.]{1,253}$/
.
- Constraints: The maximum length is
- path str
- A dot notation path for
integration
type properties only, that selects a value from the tool integration. If left blank the full tool integration data will be used.- Constraints: The maximum length is
4096
characters. The minimum length is0
characters. The value must match regular expression/^[-0-9a-zA-Z_.]*$/
.
- Constraints: The maximum length is
- value str
- Property value. Any string value is valid.
- Constraints: The maximum length is
4096
characters. The minimum length is0
characters. The value must match regular expression/^.*$/
.
- Constraints: The maximum length is
- pipeline
Id String - The Tekton pipeline ID.
- Constraints: The maximum length is
36
characters. The minimum length is36
characters. The value must match regular expression/^[-0-9a-z]+$/
.
- Constraints: The maximum length is
- type String
- Property type.
- Constraints: Allowable values are:
secure
,text
,integration
,single_select
,appconfig
.
- Constraints: Allowable values are:
- cd
Tekton StringPipeline Property Id - The unique identifier of the cd_tekton_pipeline_property.
- enums List<String>
- Options for
single_select
property type. Only needed when usingsingle_select
property type.- Constraints: The list items must match regular expression
/^[-0-9a-zA-Z_.]{1,253}$/
. The maximum length is256
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- locked Boolean
- When true, this property cannot be overridden by a trigger property or at runtime. Attempting to override it will result in run requests being rejected. The default is false.
- name String
- Property name.
- Constraints: The maximum length is
253
characters. The minimum length is1
character. The value must match regular expression/^[-0-9a-zA-Z_.]{1,253}$/
.
- Constraints: The maximum length is
- path String
- A dot notation path for
integration
type properties only, that selects a value from the tool integration. If left blank the full tool integration data will be used.- Constraints: The maximum length is
4096
characters. The minimum length is0
characters. The value must match regular expression/^[-0-9a-zA-Z_.]*$/
.
- Constraints: The maximum length is
- value String
- Property value. Any string value is valid.
- Constraints: The maximum length is
4096
characters. The minimum length is0
characters. The value must match regular expression/^.*$/
.
- Constraints: The maximum length is
Outputs
All input properties are implicitly available as output properties. Additionally, the CdTektonPipelineProperty resource produces the following output properties:
- Href string
- (String) API URL for interacting with the property.
- Constraints: The maximum length is
2048
characters. The minimum length is10
characters. The value must match regular expression/^http(s)?:\/\/([^\/?#]*)([^?#]*)(\\?([^#]*))?(#(.*))?$/
.
- Constraints: The maximum length is
- Id string
- The provider-assigned unique ID for this managed resource.
- Href string
- (String) API URL for interacting with the property.
- Constraints: The maximum length is
2048
characters. The minimum length is10
characters. The value must match regular expression/^http(s)?:\/\/([^\/?#]*)([^?#]*)(\\?([^#]*))?(#(.*))?$/
.
- Constraints: The maximum length is
- Id string
- The provider-assigned unique ID for this managed resource.
- href String
- (String) API URL for interacting with the property.
- Constraints: The maximum length is
2048
characters. The minimum length is10
characters. The value must match regular expression/^http(s)?:\/\/([^\/?#]*)([^?#]*)(\\?([^#]*))?(#(.*))?$/
.
- Constraints: The maximum length is
- id String
- The provider-assigned unique ID for this managed resource.
- href string
- (String) API URL for interacting with the property.
- Constraints: The maximum length is
2048
characters. The minimum length is10
characters. The value must match regular expression/^http(s)?:\/\/([^\/?#]*)([^?#]*)(\\?([^#]*))?(#(.*))?$/
.
- Constraints: The maximum length is
- id string
- The provider-assigned unique ID for this managed resource.
- href str
- (String) API URL for interacting with the property.
- Constraints: The maximum length is
2048
characters. The minimum length is10
characters. The value must match regular expression/^http(s)?:\/\/([^\/?#]*)([^?#]*)(\\?([^#]*))?(#(.*))?$/
.
- Constraints: The maximum length is
- id str
- The provider-assigned unique ID for this managed resource.
- href String
- (String) API URL for interacting with the property.
- Constraints: The maximum length is
2048
characters. The minimum length is10
characters. The value must match regular expression/^http(s)?:\/\/([^\/?#]*)([^?#]*)(\\?([^#]*))?(#(.*))?$/
.
- Constraints: The maximum length is
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing CdTektonPipelineProperty Resource
Get an existing CdTektonPipelineProperty 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?: CdTektonPipelinePropertyState, opts?: CustomResourceOptions): CdTektonPipelineProperty
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
cd_tekton_pipeline_property_id: Optional[str] = None,
enums: Optional[Sequence[str]] = None,
href: Optional[str] = None,
locked: Optional[bool] = None,
name: Optional[str] = None,
path: Optional[str] = None,
pipeline_id: Optional[str] = None,
type: Optional[str] = None,
value: Optional[str] = None) -> CdTektonPipelineProperty
func GetCdTektonPipelineProperty(ctx *Context, name string, id IDInput, state *CdTektonPipelinePropertyState, opts ...ResourceOption) (*CdTektonPipelineProperty, error)
public static CdTektonPipelineProperty Get(string name, Input<string> id, CdTektonPipelinePropertyState? state, CustomResourceOptions? opts = null)
public static CdTektonPipelineProperty get(String name, Output<String> id, CdTektonPipelinePropertyState state, CustomResourceOptions options)
resources: _: type: ibm:CdTektonPipelineProperty get: id: ${id}
- 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.
- Cd
Tekton stringPipeline Property Id - The unique identifier of the cd_tekton_pipeline_property.
- Enums List<string>
- Options for
single_select
property type. Only needed when usingsingle_select
property type.- Constraints: The list items must match regular expression
/^[-0-9a-zA-Z_.]{1,253}$/
. The maximum length is256
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- Href string
- (String) API URL for interacting with the property.
- Constraints: The maximum length is
2048
characters. The minimum length is10
characters. The value must match regular expression/^http(s)?:\/\/([^\/?#]*)([^?#]*)(\\?([^#]*))?(#(.*))?$/
.
- Constraints: The maximum length is
- Locked bool
- When true, this property cannot be overridden by a trigger property or at runtime. Attempting to override it will result in run requests being rejected. The default is false.
- Name string
- Property name.
- Constraints: The maximum length is
253
characters. The minimum length is1
character. The value must match regular expression/^[-0-9a-zA-Z_.]{1,253}$/
.
- Constraints: The maximum length is
- Path string
- A dot notation path for
integration
type properties only, that selects a value from the tool integration. If left blank the full tool integration data will be used.- Constraints: The maximum length is
4096
characters. The minimum length is0
characters. The value must match regular expression/^[-0-9a-zA-Z_.]*$/
.
- Constraints: The maximum length is
- Pipeline
Id string - The Tekton pipeline ID.
- Constraints: The maximum length is
36
characters. The minimum length is36
characters. The value must match regular expression/^[-0-9a-z]+$/
.
- Constraints: The maximum length is
- Type string
- Property type.
- Constraints: Allowable values are:
secure
,text
,integration
,single_select
,appconfig
.
- Constraints: Allowable values are:
- Value string
- Property value. Any string value is valid.
- Constraints: The maximum length is
4096
characters. The minimum length is0
characters. The value must match regular expression/^.*$/
.
- Constraints: The maximum length is
- Cd
Tekton stringPipeline Property Id - The unique identifier of the cd_tekton_pipeline_property.
- Enums []string
- Options for
single_select
property type. Only needed when usingsingle_select
property type.- Constraints: The list items must match regular expression
/^[-0-9a-zA-Z_.]{1,253}$/
. The maximum length is256
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- Href string
- (String) API URL for interacting with the property.
- Constraints: The maximum length is
2048
characters. The minimum length is10
characters. The value must match regular expression/^http(s)?:\/\/([^\/?#]*)([^?#]*)(\\?([^#]*))?(#(.*))?$/
.
- Constraints: The maximum length is
- Locked bool
- When true, this property cannot be overridden by a trigger property or at runtime. Attempting to override it will result in run requests being rejected. The default is false.
- Name string
- Property name.
- Constraints: The maximum length is
253
characters. The minimum length is1
character. The value must match regular expression/^[-0-9a-zA-Z_.]{1,253}$/
.
- Constraints: The maximum length is
- Path string
- A dot notation path for
integration
type properties only, that selects a value from the tool integration. If left blank the full tool integration data will be used.- Constraints: The maximum length is
4096
characters. The minimum length is0
characters. The value must match regular expression/^[-0-9a-zA-Z_.]*$/
.
- Constraints: The maximum length is
- Pipeline
Id string - The Tekton pipeline ID.
- Constraints: The maximum length is
36
characters. The minimum length is36
characters. The value must match regular expression/^[-0-9a-z]+$/
.
- Constraints: The maximum length is
- Type string
- Property type.
- Constraints: Allowable values are:
secure
,text
,integration
,single_select
,appconfig
.
- Constraints: Allowable values are:
- Value string
- Property value. Any string value is valid.
- Constraints: The maximum length is
4096
characters. The minimum length is0
characters. The value must match regular expression/^.*$/
.
- Constraints: The maximum length is
- cd
Tekton StringPipeline Property Id - The unique identifier of the cd_tekton_pipeline_property.
- enums List<String>
- Options for
single_select
property type. Only needed when usingsingle_select
property type.- Constraints: The list items must match regular expression
/^[-0-9a-zA-Z_.]{1,253}$/
. The maximum length is256
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- href String
- (String) API URL for interacting with the property.
- Constraints: The maximum length is
2048
characters. The minimum length is10
characters. The value must match regular expression/^http(s)?:\/\/([^\/?#]*)([^?#]*)(\\?([^#]*))?(#(.*))?$/
.
- Constraints: The maximum length is
- locked Boolean
- When true, this property cannot be overridden by a trigger property or at runtime. Attempting to override it will result in run requests being rejected. The default is false.
- name String
- Property name.
- Constraints: The maximum length is
253
characters. The minimum length is1
character. The value must match regular expression/^[-0-9a-zA-Z_.]{1,253}$/
.
- Constraints: The maximum length is
- path String
- A dot notation path for
integration
type properties only, that selects a value from the tool integration. If left blank the full tool integration data will be used.- Constraints: The maximum length is
4096
characters. The minimum length is0
characters. The value must match regular expression/^[-0-9a-zA-Z_.]*$/
.
- Constraints: The maximum length is
- pipeline
Id String - The Tekton pipeline ID.
- Constraints: The maximum length is
36
characters. The minimum length is36
characters. The value must match regular expression/^[-0-9a-z]+$/
.
- Constraints: The maximum length is
- type String
- Property type.
- Constraints: Allowable values are:
secure
,text
,integration
,single_select
,appconfig
.
- Constraints: Allowable values are:
- value String
- Property value. Any string value is valid.
- Constraints: The maximum length is
4096
characters. The minimum length is0
characters. The value must match regular expression/^.*$/
.
- Constraints: The maximum length is
- cd
Tekton stringPipeline Property Id - The unique identifier of the cd_tekton_pipeline_property.
- enums string[]
- Options for
single_select
property type. Only needed when usingsingle_select
property type.- Constraints: The list items must match regular expression
/^[-0-9a-zA-Z_.]{1,253}$/
. The maximum length is256
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- href string
- (String) API URL for interacting with the property.
- Constraints: The maximum length is
2048
characters. The minimum length is10
characters. The value must match regular expression/^http(s)?:\/\/([^\/?#]*)([^?#]*)(\\?([^#]*))?(#(.*))?$/
.
- Constraints: The maximum length is
- locked boolean
- When true, this property cannot be overridden by a trigger property or at runtime. Attempting to override it will result in run requests being rejected. The default is false.
- name string
- Property name.
- Constraints: The maximum length is
253
characters. The minimum length is1
character. The value must match regular expression/^[-0-9a-zA-Z_.]{1,253}$/
.
- Constraints: The maximum length is
- path string
- A dot notation path for
integration
type properties only, that selects a value from the tool integration. If left blank the full tool integration data will be used.- Constraints: The maximum length is
4096
characters. The minimum length is0
characters. The value must match regular expression/^[-0-9a-zA-Z_.]*$/
.
- Constraints: The maximum length is
- pipeline
Id string - The Tekton pipeline ID.
- Constraints: The maximum length is
36
characters. The minimum length is36
characters. The value must match regular expression/^[-0-9a-z]+$/
.
- Constraints: The maximum length is
- type string
- Property type.
- Constraints: Allowable values are:
secure
,text
,integration
,single_select
,appconfig
.
- Constraints: Allowable values are:
- value string
- Property value. Any string value is valid.
- Constraints: The maximum length is
4096
characters. The minimum length is0
characters. The value must match regular expression/^.*$/
.
- Constraints: The maximum length is
- cd_
tekton_ strpipeline_ property_ id - The unique identifier of the cd_tekton_pipeline_property.
- enums Sequence[str]
- Options for
single_select
property type. Only needed when usingsingle_select
property type.- Constraints: The list items must match regular expression
/^[-0-9a-zA-Z_.]{1,253}$/
. The maximum length is256
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- href str
- (String) API URL for interacting with the property.
- Constraints: The maximum length is
2048
characters. The minimum length is10
characters. The value must match regular expression/^http(s)?:\/\/([^\/?#]*)([^?#]*)(\\?([^#]*))?(#(.*))?$/
.
- Constraints: The maximum length is
- locked bool
- When true, this property cannot be overridden by a trigger property or at runtime. Attempting to override it will result in run requests being rejected. The default is false.
- name str
- Property name.
- Constraints: The maximum length is
253
characters. The minimum length is1
character. The value must match regular expression/^[-0-9a-zA-Z_.]{1,253}$/
.
- Constraints: The maximum length is
- path str
- A dot notation path for
integration
type properties only, that selects a value from the tool integration. If left blank the full tool integration data will be used.- Constraints: The maximum length is
4096
characters. The minimum length is0
characters. The value must match regular expression/^[-0-9a-zA-Z_.]*$/
.
- Constraints: The maximum length is
- pipeline_
id str - The Tekton pipeline ID.
- Constraints: The maximum length is
36
characters. The minimum length is36
characters. The value must match regular expression/^[-0-9a-z]+$/
.
- Constraints: The maximum length is
- type str
- Property type.
- Constraints: Allowable values are:
secure
,text
,integration
,single_select
,appconfig
.
- Constraints: Allowable values are:
- value str
- Property value. Any string value is valid.
- Constraints: The maximum length is
4096
characters. The minimum length is0
characters. The value must match regular expression/^.*$/
.
- Constraints: The maximum length is
- cd
Tekton StringPipeline Property Id - The unique identifier of the cd_tekton_pipeline_property.
- enums List<String>
- Options for
single_select
property type. Only needed when usingsingle_select
property type.- Constraints: The list items must match regular expression
/^[-0-9a-zA-Z_.]{1,253}$/
. The maximum length is256
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- href String
- (String) API URL for interacting with the property.
- Constraints: The maximum length is
2048
characters. The minimum length is10
characters. The value must match regular expression/^http(s)?:\/\/([^\/?#]*)([^?#]*)(\\?([^#]*))?(#(.*))?$/
.
- Constraints: The maximum length is
- locked Boolean
- When true, this property cannot be overridden by a trigger property or at runtime. Attempting to override it will result in run requests being rejected. The default is false.
- name String
- Property name.
- Constraints: The maximum length is
253
characters. The minimum length is1
character. The value must match regular expression/^[-0-9a-zA-Z_.]{1,253}$/
.
- Constraints: The maximum length is
- path String
- A dot notation path for
integration
type properties only, that selects a value from the tool integration. If left blank the full tool integration data will be used.- Constraints: The maximum length is
4096
characters. The minimum length is0
characters. The value must match regular expression/^[-0-9a-zA-Z_.]*$/
.
- Constraints: The maximum length is
- pipeline
Id String - The Tekton pipeline ID.
- Constraints: The maximum length is
36
characters. The minimum length is36
characters. The value must match regular expression/^[-0-9a-z]+$/
.
- Constraints: The maximum length is
- type String
- Property type.
- Constraints: Allowable values are:
secure
,text
,integration
,single_select
,appconfig
.
- Constraints: Allowable values are:
- value String
- Property value. Any string value is valid.
- Constraints: The maximum length is
4096
characters. The minimum length is0
characters. The value must match regular expression/^.*$/
.
- Constraints: The maximum length is
Import
You can import the ibm_cd_tekton_pipeline_property
resource by using name
.
The name
property can be formed from pipeline_id
, and name
in the following format:
<pipeline_id>/<name>
pipeline_id
: A string in the format94619026-912b-4d92-8f51-6c74f0692d90
. The Tekton pipeline ID.name
: A string in the formatprop1
. Property name.
Syntax
```sh $ pulumi import ibm:index/cdTektonPipelineProperty:CdTektonPipelineProperty cd_tekton_pipeline_property <pipeline_id>/<name> ```
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- ibm ibm-cloud/terraform-provider-ibm
- License
- Notes
- This Pulumi package is based on the
ibm
Terraform Provider.