1. Packages
  2. Ibm Provider
  3. API Docs
  4. CdToolchainToolSaucelabs
ibm 1.77.1 published on Monday, Apr 14, 2025 by ibm-cloud

ibm.CdToolchainToolSaucelabs

Explore with Pulumi AI

Create, update, and delete cd_toolchain_tool_saucelabss with this resource.

See the tool integration page for more information.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as ibm from "@pulumi/ibm";

const cdToolchainToolSaucelabsInstance = new ibm.CdToolchainToolSaucelabs("cdToolchainToolSaucelabsInstance", {
    parameters: {
        username: "<username>",
        accessKey: "<access_key>",
    },
    toolchainId: ibm_cd_toolchain.cd_toolchain.id,
});
Copy
import pulumi
import pulumi_ibm as ibm

cd_toolchain_tool_saucelabs_instance = ibm.CdToolchainToolSaucelabs("cdToolchainToolSaucelabsInstance",
    parameters={
        "username": "<username>",
        "access_key": "<access_key>",
    },
    toolchain_id=ibm_cd_toolchain["cd_toolchain"]["id"])
Copy
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.NewCdToolchainToolSaucelabs(ctx, "cdToolchainToolSaucelabsInstance", &ibm.CdToolchainToolSaucelabsArgs{
			Parameters: &ibm.CdToolchainToolSaucelabsParametersArgs{
				Username:  pulumi.String("<username>"),
				AccessKey: pulumi.String("<access_key>"),
			},
			ToolchainId: pulumi.Any(ibm_cd_toolchain.Cd_toolchain.Id),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Ibm = Pulumi.Ibm;

return await Deployment.RunAsync(() => 
{
    var cdToolchainToolSaucelabsInstance = new Ibm.CdToolchainToolSaucelabs("cdToolchainToolSaucelabsInstance", new()
    {
        Parameters = new Ibm.Inputs.CdToolchainToolSaucelabsParametersArgs
        {
            Username = "<username>",
            AccessKey = "<access_key>",
        },
        ToolchainId = ibm_cd_toolchain.Cd_toolchain.Id,
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.ibm.CdToolchainToolSaucelabs;
import com.pulumi.ibm.CdToolchainToolSaucelabsArgs;
import com.pulumi.ibm.inputs.CdToolchainToolSaucelabsParametersArgs;
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 cdToolchainToolSaucelabsInstance = new CdToolchainToolSaucelabs("cdToolchainToolSaucelabsInstance", CdToolchainToolSaucelabsArgs.builder()
            .parameters(CdToolchainToolSaucelabsParametersArgs.builder()
                .username("<username>")
                .accessKey("<access_key>")
                .build())
            .toolchainId(ibm_cd_toolchain.cd_toolchain().id())
            .build());

    }
}
Copy
resources:
  cdToolchainToolSaucelabsInstance:
    type: ibm:CdToolchainToolSaucelabs
    properties:
      parameters:
        username: <username>
        accessKey: <access_key>
      toolchainId: ${ibm_cd_toolchain.cd_toolchain.id}
Copy

Create CdToolchainToolSaucelabs Resource

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

Constructor syntax

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

@overload
def CdToolchainToolSaucelabs(resource_name: str,
                             opts: Optional[ResourceOptions] = None,
                             parameters: Optional[CdToolchainToolSaucelabsParametersArgs] = None,
                             toolchain_id: Optional[str] = None,
                             cd_toolchain_tool_saucelabs_id: Optional[str] = None,
                             name: Optional[str] = None)
func NewCdToolchainToolSaucelabs(ctx *Context, name string, args CdToolchainToolSaucelabsArgs, opts ...ResourceOption) (*CdToolchainToolSaucelabs, error)
public CdToolchainToolSaucelabs(string name, CdToolchainToolSaucelabsArgs args, CustomResourceOptions? opts = null)
public CdToolchainToolSaucelabs(String name, CdToolchainToolSaucelabsArgs args)
public CdToolchainToolSaucelabs(String name, CdToolchainToolSaucelabsArgs args, CustomResourceOptions options)
type: ibm:CdToolchainToolSaucelabs
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. CdToolchainToolSaucelabsArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. CdToolchainToolSaucelabsArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. CdToolchainToolSaucelabsArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. CdToolchainToolSaucelabsArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. CdToolchainToolSaucelabsArgs
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 cdToolchainToolSaucelabsResource = new Ibm.CdToolchainToolSaucelabs("cdToolchainToolSaucelabsResource", new()
{
    Parameters = new Ibm.Inputs.CdToolchainToolSaucelabsParametersArgs
    {
        AccessKey = "string",
        Username = "string",
    },
    ToolchainId = "string",
    CdToolchainToolSaucelabsId = "string",
    Name = "string",
});
Copy
example, err := ibm.NewCdToolchainToolSaucelabs(ctx, "cdToolchainToolSaucelabsResource", &ibm.CdToolchainToolSaucelabsArgs{
	Parameters: &ibm.CdToolchainToolSaucelabsParametersArgs{
		AccessKey: pulumi.String("string"),
		Username:  pulumi.String("string"),
	},
	ToolchainId:                pulumi.String("string"),
	CdToolchainToolSaucelabsId: pulumi.String("string"),
	Name:                       pulumi.String("string"),
})
Copy
var cdToolchainToolSaucelabsResource = new CdToolchainToolSaucelabs("cdToolchainToolSaucelabsResource", CdToolchainToolSaucelabsArgs.builder()
    .parameters(CdToolchainToolSaucelabsParametersArgs.builder()
        .accessKey("string")
        .username("string")
        .build())
    .toolchainId("string")
    .cdToolchainToolSaucelabsId("string")
    .name("string")
    .build());
Copy
cd_toolchain_tool_saucelabs_resource = ibm.CdToolchainToolSaucelabs("cdToolchainToolSaucelabsResource",
    parameters={
        "access_key": "string",
        "username": "string",
    },
    toolchain_id="string",
    cd_toolchain_tool_saucelabs_id="string",
    name="string")
Copy
const cdToolchainToolSaucelabsResource = new ibm.CdToolchainToolSaucelabs("cdToolchainToolSaucelabsResource", {
    parameters: {
        accessKey: "string",
        username: "string",
    },
    toolchainId: "string",
    cdToolchainToolSaucelabsId: "string",
    name: "string",
});
Copy
type: ibm:CdToolchainToolSaucelabs
properties:
    cdToolchainToolSaucelabsId: string
    name: string
    parameters:
        accessKey: string
        username: string
    toolchainId: string
Copy

CdToolchainToolSaucelabs 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 CdToolchainToolSaucelabs resource accepts the following input properties:

Parameters This property is required. CdToolchainToolSaucelabsParameters
Unique key-value pairs representing parameters to be used to create the tool. A list of parameters for each tool integration can be found in the Configuring tool integrations page. Nested schema for parameters:
ToolchainId This property is required. string
ID of the toolchain to bind the tool to.

  • Constraints: The maximum length is 36 characters. The minimum length is 36 characters. The value must match regular expression /^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-4[a-fA-F0-9]{3}-[89abAB][a-fA-F0-9]{3}-[a-fA-F0-9]{12}$/.
CdToolchainToolSaucelabsId string
The unique identifier of the cd_toolchain_tool_saucelabs.
Name string
Name of the tool.

  • Constraints: The maximum length is 128 characters. The minimum length is 0 characters. The value must match regular expression /^([^\\x00-\\x7F]|[a-zA-Z0-9-._ ])+$/.
Parameters This property is required. CdToolchainToolSaucelabsParametersArgs
Unique key-value pairs representing parameters to be used to create the tool. A list of parameters for each tool integration can be found in the Configuring tool integrations page. Nested schema for parameters:
ToolchainId This property is required. string
ID of the toolchain to bind the tool to.

  • Constraints: The maximum length is 36 characters. The minimum length is 36 characters. The value must match regular expression /^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-4[a-fA-F0-9]{3}-[89abAB][a-fA-F0-9]{3}-[a-fA-F0-9]{12}$/.
CdToolchainToolSaucelabsId string
The unique identifier of the cd_toolchain_tool_saucelabs.
Name string
Name of the tool.

  • Constraints: The maximum length is 128 characters. The minimum length is 0 characters. The value must match regular expression /^([^\\x00-\\x7F]|[a-zA-Z0-9-._ ])+$/.
parameters This property is required. CdToolchainToolSaucelabsParameters
Unique key-value pairs representing parameters to be used to create the tool. A list of parameters for each tool integration can be found in the Configuring tool integrations page. Nested schema for parameters:
toolchainId This property is required. String
ID of the toolchain to bind the tool to.

  • Constraints: The maximum length is 36 characters. The minimum length is 36 characters. The value must match regular expression /^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-4[a-fA-F0-9]{3}-[89abAB][a-fA-F0-9]{3}-[a-fA-F0-9]{12}$/.
cdToolchainToolSaucelabsId String
The unique identifier of the cd_toolchain_tool_saucelabs.
name String
Name of the tool.

  • Constraints: The maximum length is 128 characters. The minimum length is 0 characters. The value must match regular expression /^([^\\x00-\\x7F]|[a-zA-Z0-9-._ ])+$/.
parameters This property is required. CdToolchainToolSaucelabsParameters
Unique key-value pairs representing parameters to be used to create the tool. A list of parameters for each tool integration can be found in the Configuring tool integrations page. Nested schema for parameters:
toolchainId This property is required. string
ID of the toolchain to bind the tool to.

  • Constraints: The maximum length is 36 characters. The minimum length is 36 characters. The value must match regular expression /^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-4[a-fA-F0-9]{3}-[89abAB][a-fA-F0-9]{3}-[a-fA-F0-9]{12}$/.
cdToolchainToolSaucelabsId string
The unique identifier of the cd_toolchain_tool_saucelabs.
name string
Name of the tool.

  • Constraints: The maximum length is 128 characters. The minimum length is 0 characters. The value must match regular expression /^([^\\x00-\\x7F]|[a-zA-Z0-9-._ ])+$/.
parameters This property is required. CdToolchainToolSaucelabsParametersArgs
Unique key-value pairs representing parameters to be used to create the tool. A list of parameters for each tool integration can be found in the Configuring tool integrations page. Nested schema for parameters:
toolchain_id This property is required. str
ID of the toolchain to bind the tool to.

  • Constraints: The maximum length is 36 characters. The minimum length is 36 characters. The value must match regular expression /^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-4[a-fA-F0-9]{3}-[89abAB][a-fA-F0-9]{3}-[a-fA-F0-9]{12}$/.
cd_toolchain_tool_saucelabs_id str
The unique identifier of the cd_toolchain_tool_saucelabs.
name str
Name of the tool.

  • Constraints: The maximum length is 128 characters. The minimum length is 0 characters. The value must match regular expression /^([^\\x00-\\x7F]|[a-zA-Z0-9-._ ])+$/.
parameters This property is required. Property Map
Unique key-value pairs representing parameters to be used to create the tool. A list of parameters for each tool integration can be found in the Configuring tool integrations page. Nested schema for parameters:
toolchainId This property is required. String
ID of the toolchain to bind the tool to.

  • Constraints: The maximum length is 36 characters. The minimum length is 36 characters. The value must match regular expression /^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-4[a-fA-F0-9]{3}-[89abAB][a-fA-F0-9]{3}-[a-fA-F0-9]{12}$/.
cdToolchainToolSaucelabsId String
The unique identifier of the cd_toolchain_tool_saucelabs.
name String
Name of the tool.

  • Constraints: The maximum length is 128 characters. The minimum length is 0 characters. The value must match regular expression /^([^\\x00-\\x7F]|[a-zA-Z0-9-._ ])+$/.

Outputs

All input properties are implicitly available as output properties. Additionally, the CdToolchainToolSaucelabs resource produces the following output properties:

Crn string
(String) Tool CRN.
Href string
(String) URI representing the tool.
Id string
The provider-assigned unique ID for this managed resource.
Referents List<CdToolchainToolSaucelabsReferent>
(List) Information on URIs to access this resource through the UI or API. Nested schema for referent:
ResourceGroupId string
(String) Resource group where the tool is located.
State string
(String) Current configuration state of the tool.

  • Constraints: Allowable values are: configured, configuring, misconfigured, unconfigured.
ToolId string
(String) Tool ID.

  • Constraints: The maximum length is 36 characters. The minimum length is 36 characters. The value must match regular expression /^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-4[a-fA-F0-9]{3}-[89abAB][a-fA-F0-9]{3}-[a-fA-F0-9]{12}$/.
ToolchainCrn string
(String) CRN of toolchain which the tool is bound to.
UpdatedAt string
(String) Latest tool update timestamp.
Crn string
(String) Tool CRN.
Href string
(String) URI representing the tool.
Id string
The provider-assigned unique ID for this managed resource.
Referents []CdToolchainToolSaucelabsReferent
(List) Information on URIs to access this resource through the UI or API. Nested schema for referent:
ResourceGroupId string
(String) Resource group where the tool is located.
State string
(String) Current configuration state of the tool.

  • Constraints: Allowable values are: configured, configuring, misconfigured, unconfigured.
ToolId string
(String) Tool ID.

  • Constraints: The maximum length is 36 characters. The minimum length is 36 characters. The value must match regular expression /^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-4[a-fA-F0-9]{3}-[89abAB][a-fA-F0-9]{3}-[a-fA-F0-9]{12}$/.
ToolchainCrn string
(String) CRN of toolchain which the tool is bound to.
UpdatedAt string
(String) Latest tool update timestamp.
crn String
(String) Tool CRN.
href String
(String) URI representing the tool.
id String
The provider-assigned unique ID for this managed resource.
referents List<CdToolchainToolSaucelabsReferent>
(List) Information on URIs to access this resource through the UI or API. Nested schema for referent:
resourceGroupId String
(String) Resource group where the tool is located.
state String
(String) Current configuration state of the tool.

  • Constraints: Allowable values are: configured, configuring, misconfigured, unconfigured.
toolId String
(String) Tool ID.

  • Constraints: The maximum length is 36 characters. The minimum length is 36 characters. The value must match regular expression /^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-4[a-fA-F0-9]{3}-[89abAB][a-fA-F0-9]{3}-[a-fA-F0-9]{12}$/.
toolchainCrn String
(String) CRN of toolchain which the tool is bound to.
updatedAt String
(String) Latest tool update timestamp.
crn string
(String) Tool CRN.
href string
(String) URI representing the tool.
id string
The provider-assigned unique ID for this managed resource.
referents CdToolchainToolSaucelabsReferent[]
(List) Information on URIs to access this resource through the UI or API. Nested schema for referent:
resourceGroupId string
(String) Resource group where the tool is located.
state string
(String) Current configuration state of the tool.

  • Constraints: Allowable values are: configured, configuring, misconfigured, unconfigured.
toolId string
(String) Tool ID.

  • Constraints: The maximum length is 36 characters. The minimum length is 36 characters. The value must match regular expression /^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-4[a-fA-F0-9]{3}-[89abAB][a-fA-F0-9]{3}-[a-fA-F0-9]{12}$/.
toolchainCrn string
(String) CRN of toolchain which the tool is bound to.
updatedAt string
(String) Latest tool update timestamp.
crn str
(String) Tool CRN.
href str
(String) URI representing the tool.
id str
The provider-assigned unique ID for this managed resource.
referents Sequence[CdToolchainToolSaucelabsReferent]
(List) Information on URIs to access this resource through the UI or API. Nested schema for referent:
resource_group_id str
(String) Resource group where the tool is located.
state str
(String) Current configuration state of the tool.

  • Constraints: Allowable values are: configured, configuring, misconfigured, unconfigured.
tool_id str
(String) Tool ID.

  • Constraints: The maximum length is 36 characters. The minimum length is 36 characters. The value must match regular expression /^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-4[a-fA-F0-9]{3}-[89abAB][a-fA-F0-9]{3}-[a-fA-F0-9]{12}$/.
toolchain_crn str
(String) CRN of toolchain which the tool is bound to.
updated_at str
(String) Latest tool update timestamp.
crn String
(String) Tool CRN.
href String
(String) URI representing the tool.
id String
The provider-assigned unique ID for this managed resource.
referents List<Property Map>
(List) Information on URIs to access this resource through the UI or API. Nested schema for referent:
resourceGroupId String
(String) Resource group where the tool is located.
state String
(String) Current configuration state of the tool.

  • Constraints: Allowable values are: configured, configuring, misconfigured, unconfigured.
toolId String
(String) Tool ID.

  • Constraints: The maximum length is 36 characters. The minimum length is 36 characters. The value must match regular expression /^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-4[a-fA-F0-9]{3}-[89abAB][a-fA-F0-9]{3}-[a-fA-F0-9]{12}$/.
toolchainCrn String
(String) CRN of toolchain which the tool is bound to.
updatedAt String
(String) Latest tool update timestamp.

Look up Existing CdToolchainToolSaucelabs Resource

Get an existing CdToolchainToolSaucelabs 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?: CdToolchainToolSaucelabsState, opts?: CustomResourceOptions): CdToolchainToolSaucelabs
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        cd_toolchain_tool_saucelabs_id: Optional[str] = None,
        crn: Optional[str] = None,
        href: Optional[str] = None,
        name: Optional[str] = None,
        parameters: Optional[CdToolchainToolSaucelabsParametersArgs] = None,
        referents: Optional[Sequence[CdToolchainToolSaucelabsReferentArgs]] = None,
        resource_group_id: Optional[str] = None,
        state: Optional[str] = None,
        tool_id: Optional[str] = None,
        toolchain_crn: Optional[str] = None,
        toolchain_id: Optional[str] = None,
        updated_at: Optional[str] = None) -> CdToolchainToolSaucelabs
func GetCdToolchainToolSaucelabs(ctx *Context, name string, id IDInput, state *CdToolchainToolSaucelabsState, opts ...ResourceOption) (*CdToolchainToolSaucelabs, error)
public static CdToolchainToolSaucelabs Get(string name, Input<string> id, CdToolchainToolSaucelabsState? state, CustomResourceOptions? opts = null)
public static CdToolchainToolSaucelabs get(String name, Output<String> id, CdToolchainToolSaucelabsState state, CustomResourceOptions options)
resources:  _:    type: ibm:CdToolchainToolSaucelabs    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
resource_name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
The following state arguments are supported:
CdToolchainToolSaucelabsId string
The unique identifier of the cd_toolchain_tool_saucelabs.
Crn string
(String) Tool CRN.
Href string
(String) URI representing the tool.
Name string
Name of the tool.

  • Constraints: The maximum length is 128 characters. The minimum length is 0 characters. The value must match regular expression /^([^\\x00-\\x7F]|[a-zA-Z0-9-._ ])+$/.
Parameters CdToolchainToolSaucelabsParameters
Unique key-value pairs representing parameters to be used to create the tool. A list of parameters for each tool integration can be found in the Configuring tool integrations page. Nested schema for parameters:
Referents List<CdToolchainToolSaucelabsReferent>
(List) Information on URIs to access this resource through the UI or API. Nested schema for referent:
ResourceGroupId string
(String) Resource group where the tool is located.
State string
(String) Current configuration state of the tool.

  • Constraints: Allowable values are: configured, configuring, misconfigured, unconfigured.
ToolId string
(String) Tool ID.

  • Constraints: The maximum length is 36 characters. The minimum length is 36 characters. The value must match regular expression /^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-4[a-fA-F0-9]{3}-[89abAB][a-fA-F0-9]{3}-[a-fA-F0-9]{12}$/.
ToolchainCrn string
(String) CRN of toolchain which the tool is bound to.
ToolchainId string
ID of the toolchain to bind the tool to.

  • Constraints: The maximum length is 36 characters. The minimum length is 36 characters. The value must match regular expression /^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-4[a-fA-F0-9]{3}-[89abAB][a-fA-F0-9]{3}-[a-fA-F0-9]{12}$/.
UpdatedAt string
(String) Latest tool update timestamp.
CdToolchainToolSaucelabsId string
The unique identifier of the cd_toolchain_tool_saucelabs.
Crn string
(String) Tool CRN.
Href string
(String) URI representing the tool.
Name string
Name of the tool.

  • Constraints: The maximum length is 128 characters. The minimum length is 0 characters. The value must match regular expression /^([^\\x00-\\x7F]|[a-zA-Z0-9-._ ])+$/.
Parameters CdToolchainToolSaucelabsParametersArgs
Unique key-value pairs representing parameters to be used to create the tool. A list of parameters for each tool integration can be found in the Configuring tool integrations page. Nested schema for parameters:
Referents []CdToolchainToolSaucelabsReferentArgs
(List) Information on URIs to access this resource through the UI or API. Nested schema for referent:
ResourceGroupId string
(String) Resource group where the tool is located.
State string
(String) Current configuration state of the tool.

  • Constraints: Allowable values are: configured, configuring, misconfigured, unconfigured.
ToolId string
(String) Tool ID.

  • Constraints: The maximum length is 36 characters. The minimum length is 36 characters. The value must match regular expression /^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-4[a-fA-F0-9]{3}-[89abAB][a-fA-F0-9]{3}-[a-fA-F0-9]{12}$/.
ToolchainCrn string
(String) CRN of toolchain which the tool is bound to.
ToolchainId string
ID of the toolchain to bind the tool to.

  • Constraints: The maximum length is 36 characters. The minimum length is 36 characters. The value must match regular expression /^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-4[a-fA-F0-9]{3}-[89abAB][a-fA-F0-9]{3}-[a-fA-F0-9]{12}$/.
UpdatedAt string
(String) Latest tool update timestamp.
cdToolchainToolSaucelabsId String
The unique identifier of the cd_toolchain_tool_saucelabs.
crn String
(String) Tool CRN.
href String
(String) URI representing the tool.
name String
Name of the tool.

  • Constraints: The maximum length is 128 characters. The minimum length is 0 characters. The value must match regular expression /^([^\\x00-\\x7F]|[a-zA-Z0-9-._ ])+$/.
parameters CdToolchainToolSaucelabsParameters
Unique key-value pairs representing parameters to be used to create the tool. A list of parameters for each tool integration can be found in the Configuring tool integrations page. Nested schema for parameters:
referents List<CdToolchainToolSaucelabsReferent>
(List) Information on URIs to access this resource through the UI or API. Nested schema for referent:
resourceGroupId String
(String) Resource group where the tool is located.
state String
(String) Current configuration state of the tool.

  • Constraints: Allowable values are: configured, configuring, misconfigured, unconfigured.
toolId String
(String) Tool ID.

  • Constraints: The maximum length is 36 characters. The minimum length is 36 characters. The value must match regular expression /^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-4[a-fA-F0-9]{3}-[89abAB][a-fA-F0-9]{3}-[a-fA-F0-9]{12}$/.
toolchainCrn String
(String) CRN of toolchain which the tool is bound to.
toolchainId String
ID of the toolchain to bind the tool to.

  • Constraints: The maximum length is 36 characters. The minimum length is 36 characters. The value must match regular expression /^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-4[a-fA-F0-9]{3}-[89abAB][a-fA-F0-9]{3}-[a-fA-F0-9]{12}$/.
updatedAt String
(String) Latest tool update timestamp.
cdToolchainToolSaucelabsId string
The unique identifier of the cd_toolchain_tool_saucelabs.
crn string
(String) Tool CRN.
href string
(String) URI representing the tool.
name string
Name of the tool.

  • Constraints: The maximum length is 128 characters. The minimum length is 0 characters. The value must match regular expression /^([^\\x00-\\x7F]|[a-zA-Z0-9-._ ])+$/.
parameters CdToolchainToolSaucelabsParameters
Unique key-value pairs representing parameters to be used to create the tool. A list of parameters for each tool integration can be found in the Configuring tool integrations page. Nested schema for parameters:
referents CdToolchainToolSaucelabsReferent[]
(List) Information on URIs to access this resource through the UI or API. Nested schema for referent:
resourceGroupId string
(String) Resource group where the tool is located.
state string
(String) Current configuration state of the tool.

  • Constraints: Allowable values are: configured, configuring, misconfigured, unconfigured.
toolId string
(String) Tool ID.

  • Constraints: The maximum length is 36 characters. The minimum length is 36 characters. The value must match regular expression /^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-4[a-fA-F0-9]{3}-[89abAB][a-fA-F0-9]{3}-[a-fA-F0-9]{12}$/.
toolchainCrn string
(String) CRN of toolchain which the tool is bound to.
toolchainId string
ID of the toolchain to bind the tool to.

  • Constraints: The maximum length is 36 characters. The minimum length is 36 characters. The value must match regular expression /^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-4[a-fA-F0-9]{3}-[89abAB][a-fA-F0-9]{3}-[a-fA-F0-9]{12}$/.
updatedAt string
(String) Latest tool update timestamp.
cd_toolchain_tool_saucelabs_id str
The unique identifier of the cd_toolchain_tool_saucelabs.
crn str
(String) Tool CRN.
href str
(String) URI representing the tool.
name str
Name of the tool.

  • Constraints: The maximum length is 128 characters. The minimum length is 0 characters. The value must match regular expression /^([^\\x00-\\x7F]|[a-zA-Z0-9-._ ])+$/.
parameters CdToolchainToolSaucelabsParametersArgs
Unique key-value pairs representing parameters to be used to create the tool. A list of parameters for each tool integration can be found in the Configuring tool integrations page. Nested schema for parameters:
referents Sequence[CdToolchainToolSaucelabsReferentArgs]
(List) Information on URIs to access this resource through the UI or API. Nested schema for referent:
resource_group_id str
(String) Resource group where the tool is located.
state str
(String) Current configuration state of the tool.

  • Constraints: Allowable values are: configured, configuring, misconfigured, unconfigured.
tool_id str
(String) Tool ID.

  • Constraints: The maximum length is 36 characters. The minimum length is 36 characters. The value must match regular expression /^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-4[a-fA-F0-9]{3}-[89abAB][a-fA-F0-9]{3}-[a-fA-F0-9]{12}$/.
toolchain_crn str
(String) CRN of toolchain which the tool is bound to.
toolchain_id str
ID of the toolchain to bind the tool to.

  • Constraints: The maximum length is 36 characters. The minimum length is 36 characters. The value must match regular expression /^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-4[a-fA-F0-9]{3}-[89abAB][a-fA-F0-9]{3}-[a-fA-F0-9]{12}$/.
updated_at str
(String) Latest tool update timestamp.
cdToolchainToolSaucelabsId String
The unique identifier of the cd_toolchain_tool_saucelabs.
crn String
(String) Tool CRN.
href String
(String) URI representing the tool.
name String
Name of the tool.

  • Constraints: The maximum length is 128 characters. The minimum length is 0 characters. The value must match regular expression /^([^\\x00-\\x7F]|[a-zA-Z0-9-._ ])+$/.
parameters Property Map
Unique key-value pairs representing parameters to be used to create the tool. A list of parameters for each tool integration can be found in the Configuring tool integrations page. Nested schema for parameters:
referents List<Property Map>
(List) Information on URIs to access this resource through the UI or API. Nested schema for referent:
resourceGroupId String
(String) Resource group where the tool is located.
state String
(String) Current configuration state of the tool.

  • Constraints: Allowable values are: configured, configuring, misconfigured, unconfigured.
toolId String
(String) Tool ID.

  • Constraints: The maximum length is 36 characters. The minimum length is 36 characters. The value must match regular expression /^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-4[a-fA-F0-9]{3}-[89abAB][a-fA-F0-9]{3}-[a-fA-F0-9]{12}$/.
toolchainCrn String
(String) CRN of toolchain which the tool is bound to.
toolchainId String
ID of the toolchain to bind the tool to.

  • Constraints: The maximum length is 36 characters. The minimum length is 36 characters. The value must match regular expression /^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-4[a-fA-F0-9]{3}-[89abAB][a-fA-F0-9]{3}-[a-fA-F0-9]{12}$/.
updatedAt String
(String) Latest tool update timestamp.

Supporting Types

CdToolchainToolSaucelabsParameters
, CdToolchainToolSaucelabsParametersArgs

AccessKey This property is required. string
The access key for the Sauce Labs account. You can use a toolchain secret reference for this parameter. For more information, see Protecting your sensitive data in Continuous Delivery.
Username This property is required. string
The user name for the Sauce Labs account.
AccessKey This property is required. string
The access key for the Sauce Labs account. You can use a toolchain secret reference for this parameter. For more information, see Protecting your sensitive data in Continuous Delivery.
Username This property is required. string
The user name for the Sauce Labs account.
accessKey This property is required. String
The access key for the Sauce Labs account. You can use a toolchain secret reference for this parameter. For more information, see Protecting your sensitive data in Continuous Delivery.
username This property is required. String
The user name for the Sauce Labs account.
accessKey This property is required. string
The access key for the Sauce Labs account. You can use a toolchain secret reference for this parameter. For more information, see Protecting your sensitive data in Continuous Delivery.
username This property is required. string
The user name for the Sauce Labs account.
access_key This property is required. str
The access key for the Sauce Labs account. You can use a toolchain secret reference for this parameter. For more information, see Protecting your sensitive data in Continuous Delivery.
username This property is required. str
The user name for the Sauce Labs account.
accessKey This property is required. String
The access key for the Sauce Labs account. You can use a toolchain secret reference for this parameter. For more information, see Protecting your sensitive data in Continuous Delivery.
username This property is required. String
The user name for the Sauce Labs account.

CdToolchainToolSaucelabsReferent
, CdToolchainToolSaucelabsReferentArgs

ApiHref This property is required. string
(String) URI representing this resource through an API.
UiHref This property is required. string
(String) URI representing this resource through the UI.
ApiHref This property is required. string
(String) URI representing this resource through an API.
UiHref This property is required. string
(String) URI representing this resource through the UI.
apiHref This property is required. String
(String) URI representing this resource through an API.
uiHref This property is required. String
(String) URI representing this resource through the UI.
apiHref This property is required. string
(String) URI representing this resource through an API.
uiHref This property is required. string
(String) URI representing this resource through the UI.
api_href This property is required. str
(String) URI representing this resource through an API.
ui_href This property is required. str
(String) URI representing this resource through the UI.
apiHref This property is required. String
(String) URI representing this resource through an API.
uiHref This property is required. String
(String) URI representing this resource through the UI.

Import

You can import the ibm_cd_toolchain_tool_saucelabs resource by using id.

The id property can be formed from toolchain_id, and tool_id in the following format:

<toolchain_id>/<tool_id>

  • toolchain_id: A string. ID of the toolchain to bind the tool to.

  • tool_id: A string. ID of the tool bound to the toolchain.

Syntax

$ pulumi import ibm:index/cdToolchainToolSaucelabs:CdToolchainToolSaucelabs cd_toolchain_tool_saucelabs <toolchain_id>/<tool_id>
Copy

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.