ibm 1.79.2 published on Friday, Jun 13, 2025 by ibm-cloud
ibm.getCdToolchainToolCos
Explore with Pulumi AI
Provides a read-only data source to retrieve information about cd_toolchain_tool_cos. You can then reference the fields of the data source in other resources within the same configuration by using interpolation syntax.
See the tool integration page for more information.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as ibm from "@pulumi/ibm";
const cdToolchainToolCos = ibm.getCdToolchainToolCos({
toolId: "9603dcd4-3c86-44f8-8d0a-9427369878cf",
toolchainId: data.ibm_cd_toolchain.cd_toolchain.id,
});
import pulumi
import pulumi_ibm as ibm
cd_toolchain_tool_cos = ibm.get_cd_toolchain_tool_cos(tool_id="9603dcd4-3c86-44f8-8d0a-9427369878cf",
toolchain_id=data["ibm_cd_toolchain"]["cd_toolchain"]["id"])
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.LookupCdToolchainToolCos(ctx, &ibm.LookupCdToolchainToolCosArgs{
ToolId: "9603dcd4-3c86-44f8-8d0a-9427369878cf",
ToolchainId: data.Ibm_cd_toolchain.Cd_toolchain.Id,
}, nil)
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 cdToolchainToolCos = Ibm.GetCdToolchainToolCos.Invoke(new()
{
ToolId = "9603dcd4-3c86-44f8-8d0a-9427369878cf",
ToolchainId = data.Ibm_cd_toolchain.Cd_toolchain.Id,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.ibm.IbmFunctions;
import com.pulumi.ibm.inputs.GetCdToolchainToolCosArgs;
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) {
final var cdToolchainToolCos = IbmFunctions.getCdToolchainToolCos(GetCdToolchainToolCosArgs.builder()
.toolId("9603dcd4-3c86-44f8-8d0a-9427369878cf")
.toolchainId(data.ibm_cd_toolchain().cd_toolchain().id())
.build());
}
}
variables:
cdToolchainToolCos:
fn::invoke:
function: ibm:getCdToolchainToolCos
arguments:
toolId: 9603dcd4-3c86-44f8-8d0a-9427369878cf
toolchainId: ${data.ibm_cd_toolchain.cd_toolchain.id}
Using getCdToolchainToolCos
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getCdToolchainToolCos(args: GetCdToolchainToolCosArgs, opts?: InvokeOptions): Promise<GetCdToolchainToolCosResult>
function getCdToolchainToolCosOutput(args: GetCdToolchainToolCosOutputArgs, opts?: InvokeOptions): Output<GetCdToolchainToolCosResult>
def get_cd_toolchain_tool_cos(id: Optional[str] = None,
tool_id: Optional[str] = None,
toolchain_id: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetCdToolchainToolCosResult
def get_cd_toolchain_tool_cos_output(id: Optional[pulumi.Input[str]] = None,
tool_id: Optional[pulumi.Input[str]] = None,
toolchain_id: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetCdToolchainToolCosResult]
func LookupCdToolchainToolCos(ctx *Context, args *LookupCdToolchainToolCosArgs, opts ...InvokeOption) (*LookupCdToolchainToolCosResult, error)
func LookupCdToolchainToolCosOutput(ctx *Context, args *LookupCdToolchainToolCosOutputArgs, opts ...InvokeOption) LookupCdToolchainToolCosResultOutput
> Note: This function is named LookupCdToolchainToolCos
in the Go SDK.
public static class GetCdToolchainToolCos
{
public static Task<GetCdToolchainToolCosResult> InvokeAsync(GetCdToolchainToolCosArgs args, InvokeOptions? opts = null)
public static Output<GetCdToolchainToolCosResult> Invoke(GetCdToolchainToolCosInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetCdToolchainToolCosResult> getCdToolchainToolCos(GetCdToolchainToolCosArgs args, InvokeOptions options)
public static Output<GetCdToolchainToolCosResult> getCdToolchainToolCos(GetCdToolchainToolCosArgs args, InvokeOptions options)
fn::invoke:
function: ibm:index/getCdToolchainToolCos:getCdToolchainToolCos
arguments:
# arguments dictionary
The following arguments are supported:
- Tool
Id string - ID of the tool bound to the toolchain.
- Constraints: The maximum length is
36
characters. The minimum length is36
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}$/
.
- Constraints: The maximum length is
- Toolchain
Id string - ID of the toolchain.
- Constraints: The maximum length is
36
characters. The minimum length is36
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}$/
.
- Constraints: The maximum length is
- Id string
- The unique identifier of the cd_toolchain_tool_cos.
- Tool
Id string - ID of the tool bound to the toolchain.
- Constraints: The maximum length is
36
characters. The minimum length is36
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}$/
.
- Constraints: The maximum length is
- Toolchain
Id string - ID of the toolchain.
- Constraints: The maximum length is
36
characters. The minimum length is36
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}$/
.
- Constraints: The maximum length is
- Id string
- The unique identifier of the cd_toolchain_tool_cos.
- tool
Id String - ID of the tool bound to the toolchain.
- Constraints: The maximum length is
36
characters. The minimum length is36
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}$/
.
- Constraints: The maximum length is
- toolchain
Id String - ID of the toolchain.
- Constraints: The maximum length is
36
characters. The minimum length is36
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}$/
.
- Constraints: The maximum length is
- id String
- The unique identifier of the cd_toolchain_tool_cos.
- tool
Id string - ID of the tool bound to the toolchain.
- Constraints: The maximum length is
36
characters. The minimum length is36
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}$/
.
- Constraints: The maximum length is
- toolchain
Id string - ID of the toolchain.
- Constraints: The maximum length is
36
characters. The minimum length is36
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}$/
.
- Constraints: The maximum length is
- id string
- The unique identifier of the cd_toolchain_tool_cos.
- tool_
id str - ID of the tool bound to the toolchain.
- Constraints: The maximum length is
36
characters. The minimum length is36
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}$/
.
- Constraints: The maximum length is
- toolchain_
id str - ID of the toolchain.
- Constraints: The maximum length is
36
characters. The minimum length is36
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}$/
.
- Constraints: The maximum length is
- id str
- The unique identifier of the cd_toolchain_tool_cos.
- tool
Id String - ID of the tool bound to the toolchain.
- Constraints: The maximum length is
36
characters. The minimum length is36
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}$/
.
- Constraints: The maximum length is
- toolchain
Id String - ID of the toolchain.
- Constraints: The maximum length is
36
characters. The minimum length is36
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}$/
.
- Constraints: The maximum length is
- id String
- The unique identifier of the cd_toolchain_tool_cos.
getCdToolchainToolCos Result
The following output properties are available:
- Crn string
- (String) Tool CRN.
- Href string
- (String) URI representing the tool.
- Id string
- The unique identifier of the cd_toolchain_tool_cos.
- Name string
- (String) The name used to identify this tool integration.
- Parameters
List<Get
Cd Toolchain Tool Cos Parameter> - (List) 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<Get
Cd Toolchain Tool Cos Referent> - (List) Information on URIs to access this resource through the UI or API. Nested schema for referent:
- Resource
Group stringId - (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
.
- Constraints: Allowable values are:
- Tool
Id string - Toolchain
Crn string - (String) CRN of toolchain which the tool is bound to.
- Toolchain
Id string - Updated
At string - (String) Latest tool update timestamp.
- Crn string
- (String) Tool CRN.
- Href string
- (String) URI representing the tool.
- Id string
- The unique identifier of the cd_toolchain_tool_cos.
- Name string
- (String) The name used to identify this tool integration.
- Parameters
[]Get
Cd Toolchain Tool Cos Parameter - (List) 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
[]Get
Cd Toolchain Tool Cos Referent - (List) Information on URIs to access this resource through the UI or API. Nested schema for referent:
- Resource
Group stringId - (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
.
- Constraints: Allowable values are:
- Tool
Id string - Toolchain
Crn string - (String) CRN of toolchain which the tool is bound to.
- Toolchain
Id string - Updated
At string - (String) Latest tool update timestamp.
- crn String
- (String) Tool CRN.
- href String
- (String) URI representing the tool.
- id String
- The unique identifier of the cd_toolchain_tool_cos.
- name String
- (String) The name used to identify this tool integration.
- parameters
List<Get
Cd Toolchain Tool Cos Parameter> - (List) 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<Get
Cd Toolchain Tool Cos Referent> - (List) Information on URIs to access this resource through the UI or API. Nested schema for referent:
- resource
Group StringId - (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
.
- Constraints: Allowable values are:
- tool
Id String - toolchain
Crn String - (String) CRN of toolchain which the tool is bound to.
- toolchain
Id String - updated
At String - (String) Latest tool update timestamp.
- crn string
- (String) Tool CRN.
- href string
- (String) URI representing the tool.
- id string
- The unique identifier of the cd_toolchain_tool_cos.
- name string
- (String) The name used to identify this tool integration.
- parameters
Get
Cd Toolchain Tool Cos Parameter[] - (List) 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
Get
Cd Toolchain Tool Cos Referent[] - (List) Information on URIs to access this resource through the UI or API. Nested schema for referent:
- resource
Group stringId - (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
.
- Constraints: Allowable values are:
- tool
Id string - toolchain
Crn string - (String) CRN of toolchain which the tool is bound to.
- toolchain
Id string - updated
At string - (String) Latest tool update timestamp.
- crn str
- (String) Tool CRN.
- href str
- (String) URI representing the tool.
- id str
- The unique identifier of the cd_toolchain_tool_cos.
- name str
- (String) The name used to identify this tool integration.
- parameters
Sequence[Get
Cd Toolchain Tool Cos Parameter] - (List) 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[Get
Cd Toolchain Tool Cos Referent] - (List) Information on URIs to access this resource through the UI or API. Nested schema for referent:
- resource_
group_ strid - (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
.
- Constraints: Allowable values are:
- tool_
id str - toolchain_
crn str - (String) CRN of toolchain which the tool is bound to.
- toolchain_
id str - updated_
at str - (String) Latest tool update timestamp.
- crn String
- (String) Tool CRN.
- href String
- (String) URI representing the tool.
- id String
- The unique identifier of the cd_toolchain_tool_cos.
- name String
- (String) The name used to identify this tool integration.
- parameters List<Property Map>
- (List) 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:
- resource
Group StringId - (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
.
- Constraints: Allowable values are:
- tool
Id String - toolchain
Crn String - (String) CRN of toolchain which the tool is bound to.
- toolchain
Id String - updated
At String - (String) Latest tool update timestamp.
Supporting Types
GetCdToolchainToolCosParameter
- Auth
Type string - (String) The authentication type. Options are
apikey
IBM Cloud API Key orhmac
HMAC (Hash Message Authentication Code). The default isapikey
.- Constraints: Allowable values are:
apikey
,hmac
.
- Constraints: Allowable values are:
- Bucket
Name string - (String) The name of the Cloud Object Storage service bucket.
- Constraints: The value must match regular expression
/\\S/
.
- Constraints: The value must match regular expression
- Cos
Api stringKey - (String) The IBM Cloud API key used to access the Cloud Object Storage service. Only relevant when using
apikey
as theauth_type
. - Endpoint string
- (String) The Cloud Object Storage endpoint in IBM Cloud or other endpoint. For example for IBM Cloud Object Storage:
s3.direct.us-south.cloud-object-storage.appdomain.cloud
.- Constraints: The value must match regular expression
/\\S/
.
- Constraints: The value must match regular expression
- Hmac
Access stringKey Id - (String) The HMAC Access Key ID which is part of an HMAC (Hash Message Authentication Code) credential set. HMAC is identified by a combination of an Access Key ID and a Secret Access Key. Only relevant when
auth_type
is set tohmac
. - Hmac
Secret stringAccess Key - (String) The HMAC Secret Access Key which is part of an HMAC (Hash Message Authentication Code) credential set. HMAC is identified by a combination of an Access Key ID and a Secret Access Key. Only relevant when
auth_type
is set tohmac
. - Instance
Crn string - (String) The CRN (Cloud Resource Name) of the IBM Cloud Object Storage service instance, only relevant when using
apikey
as theauth_type
.- Constraints: The value must match regular expression
/^crn:v1:(?:bluemix|staging):public:cloud-object-storage:[a-zA-Z0-9-]*\\b:a\/[0-9a-fA-F]*\\b:[0-9a-fA-F]{8}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{12}\\b::$/
.
- Constraints: The value must match regular expression
- Name string
- (String) The name used to identify this tool integration.
- Auth
Type string - (String) The authentication type. Options are
apikey
IBM Cloud API Key orhmac
HMAC (Hash Message Authentication Code). The default isapikey
.- Constraints: Allowable values are:
apikey
,hmac
.
- Constraints: Allowable values are:
- Bucket
Name string - (String) The name of the Cloud Object Storage service bucket.
- Constraints: The value must match regular expression
/\\S/
.
- Constraints: The value must match regular expression
- Cos
Api stringKey - (String) The IBM Cloud API key used to access the Cloud Object Storage service. Only relevant when using
apikey
as theauth_type
. - Endpoint string
- (String) The Cloud Object Storage endpoint in IBM Cloud or other endpoint. For example for IBM Cloud Object Storage:
s3.direct.us-south.cloud-object-storage.appdomain.cloud
.- Constraints: The value must match regular expression
/\\S/
.
- Constraints: The value must match regular expression
- Hmac
Access stringKey Id - (String) The HMAC Access Key ID which is part of an HMAC (Hash Message Authentication Code) credential set. HMAC is identified by a combination of an Access Key ID and a Secret Access Key. Only relevant when
auth_type
is set tohmac
. - Hmac
Secret stringAccess Key - (String) The HMAC Secret Access Key which is part of an HMAC (Hash Message Authentication Code) credential set. HMAC is identified by a combination of an Access Key ID and a Secret Access Key. Only relevant when
auth_type
is set tohmac
. - Instance
Crn string - (String) The CRN (Cloud Resource Name) of the IBM Cloud Object Storage service instance, only relevant when using
apikey
as theauth_type
.- Constraints: The value must match regular expression
/^crn:v1:(?:bluemix|staging):public:cloud-object-storage:[a-zA-Z0-9-]*\\b:a\/[0-9a-fA-F]*\\b:[0-9a-fA-F]{8}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{12}\\b::$/
.
- Constraints: The value must match regular expression
- Name string
- (String) The name used to identify this tool integration.
- auth
Type String - (String) The authentication type. Options are
apikey
IBM Cloud API Key orhmac
HMAC (Hash Message Authentication Code). The default isapikey
.- Constraints: Allowable values are:
apikey
,hmac
.
- Constraints: Allowable values are:
- bucket
Name String - (String) The name of the Cloud Object Storage service bucket.
- Constraints: The value must match regular expression
/\\S/
.
- Constraints: The value must match regular expression
- cos
Api StringKey - (String) The IBM Cloud API key used to access the Cloud Object Storage service. Only relevant when using
apikey
as theauth_type
. - endpoint String
- (String) The Cloud Object Storage endpoint in IBM Cloud or other endpoint. For example for IBM Cloud Object Storage:
s3.direct.us-south.cloud-object-storage.appdomain.cloud
.- Constraints: The value must match regular expression
/\\S/
.
- Constraints: The value must match regular expression
- hmac
Access StringKey Id - (String) The HMAC Access Key ID which is part of an HMAC (Hash Message Authentication Code) credential set. HMAC is identified by a combination of an Access Key ID and a Secret Access Key. Only relevant when
auth_type
is set tohmac
. - hmac
Secret StringAccess Key - (String) The HMAC Secret Access Key which is part of an HMAC (Hash Message Authentication Code) credential set. HMAC is identified by a combination of an Access Key ID and a Secret Access Key. Only relevant when
auth_type
is set tohmac
. - instance
Crn String - (String) The CRN (Cloud Resource Name) of the IBM Cloud Object Storage service instance, only relevant when using
apikey
as theauth_type
.- Constraints: The value must match regular expression
/^crn:v1:(?:bluemix|staging):public:cloud-object-storage:[a-zA-Z0-9-]*\\b:a\/[0-9a-fA-F]*\\b:[0-9a-fA-F]{8}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{12}\\b::$/
.
- Constraints: The value must match regular expression
- name String
- (String) The name used to identify this tool integration.
- auth
Type string - (String) The authentication type. Options are
apikey
IBM Cloud API Key orhmac
HMAC (Hash Message Authentication Code). The default isapikey
.- Constraints: Allowable values are:
apikey
,hmac
.
- Constraints: Allowable values are:
- bucket
Name string - (String) The name of the Cloud Object Storage service bucket.
- Constraints: The value must match regular expression
/\\S/
.
- Constraints: The value must match regular expression
- cos
Api stringKey - (String) The IBM Cloud API key used to access the Cloud Object Storage service. Only relevant when using
apikey
as theauth_type
. - endpoint string
- (String) The Cloud Object Storage endpoint in IBM Cloud or other endpoint. For example for IBM Cloud Object Storage:
s3.direct.us-south.cloud-object-storage.appdomain.cloud
.- Constraints: The value must match regular expression
/\\S/
.
- Constraints: The value must match regular expression
- hmac
Access stringKey Id - (String) The HMAC Access Key ID which is part of an HMAC (Hash Message Authentication Code) credential set. HMAC is identified by a combination of an Access Key ID and a Secret Access Key. Only relevant when
auth_type
is set tohmac
. - hmac
Secret stringAccess Key - (String) The HMAC Secret Access Key which is part of an HMAC (Hash Message Authentication Code) credential set. HMAC is identified by a combination of an Access Key ID and a Secret Access Key. Only relevant when
auth_type
is set tohmac
. - instance
Crn string - (String) The CRN (Cloud Resource Name) of the IBM Cloud Object Storage service instance, only relevant when using
apikey
as theauth_type
.- Constraints: The value must match regular expression
/^crn:v1:(?:bluemix|staging):public:cloud-object-storage:[a-zA-Z0-9-]*\\b:a\/[0-9a-fA-F]*\\b:[0-9a-fA-F]{8}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{12}\\b::$/
.
- Constraints: The value must match regular expression
- name string
- (String) The name used to identify this tool integration.
- auth_
type str - (String) The authentication type. Options are
apikey
IBM Cloud API Key orhmac
HMAC (Hash Message Authentication Code). The default isapikey
.- Constraints: Allowable values are:
apikey
,hmac
.
- Constraints: Allowable values are:
- bucket_
name str - (String) The name of the Cloud Object Storage service bucket.
- Constraints: The value must match regular expression
/\\S/
.
- Constraints: The value must match regular expression
- cos_
api_ strkey - (String) The IBM Cloud API key used to access the Cloud Object Storage service. Only relevant when using
apikey
as theauth_type
. - endpoint str
- (String) The Cloud Object Storage endpoint in IBM Cloud or other endpoint. For example for IBM Cloud Object Storage:
s3.direct.us-south.cloud-object-storage.appdomain.cloud
.- Constraints: The value must match regular expression
/\\S/
.
- Constraints: The value must match regular expression
- hmac_
access_ strkey_ id - (String) The HMAC Access Key ID which is part of an HMAC (Hash Message Authentication Code) credential set. HMAC is identified by a combination of an Access Key ID and a Secret Access Key. Only relevant when
auth_type
is set tohmac
. - hmac_
secret_ straccess_ key - (String) The HMAC Secret Access Key which is part of an HMAC (Hash Message Authentication Code) credential set. HMAC is identified by a combination of an Access Key ID and a Secret Access Key. Only relevant when
auth_type
is set tohmac
. - instance_
crn str - (String) The CRN (Cloud Resource Name) of the IBM Cloud Object Storage service instance, only relevant when using
apikey
as theauth_type
.- Constraints: The value must match regular expression
/^crn:v1:(?:bluemix|staging):public:cloud-object-storage:[a-zA-Z0-9-]*\\b:a\/[0-9a-fA-F]*\\b:[0-9a-fA-F]{8}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{12}\\b::$/
.
- Constraints: The value must match regular expression
- name str
- (String) The name used to identify this tool integration.
- auth
Type String - (String) The authentication type. Options are
apikey
IBM Cloud API Key orhmac
HMAC (Hash Message Authentication Code). The default isapikey
.- Constraints: Allowable values are:
apikey
,hmac
.
- Constraints: Allowable values are:
- bucket
Name String - (String) The name of the Cloud Object Storage service bucket.
- Constraints: The value must match regular expression
/\\S/
.
- Constraints: The value must match regular expression
- cos
Api StringKey - (String) The IBM Cloud API key used to access the Cloud Object Storage service. Only relevant when using
apikey
as theauth_type
. - endpoint String
- (String) The Cloud Object Storage endpoint in IBM Cloud or other endpoint. For example for IBM Cloud Object Storage:
s3.direct.us-south.cloud-object-storage.appdomain.cloud
.- Constraints: The value must match regular expression
/\\S/
.
- Constraints: The value must match regular expression
- hmac
Access StringKey Id - (String) The HMAC Access Key ID which is part of an HMAC (Hash Message Authentication Code) credential set. HMAC is identified by a combination of an Access Key ID and a Secret Access Key. Only relevant when
auth_type
is set tohmac
. - hmac
Secret StringAccess Key - (String) The HMAC Secret Access Key which is part of an HMAC (Hash Message Authentication Code) credential set. HMAC is identified by a combination of an Access Key ID and a Secret Access Key. Only relevant when
auth_type
is set tohmac
. - instance
Crn String - (String) The CRN (Cloud Resource Name) of the IBM Cloud Object Storage service instance, only relevant when using
apikey
as theauth_type
.- Constraints: The value must match regular expression
/^crn:v1:(?:bluemix|staging):public:cloud-object-storage:[a-zA-Z0-9-]*\\b:a\/[0-9a-fA-F]*\\b:[0-9a-fA-F]{8}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{12}\\b::$/
.
- Constraints: The value must match regular expression
- name String
- (String) The name used to identify this tool integration.
GetCdToolchainToolCosReferent
Package Details
- Repository
- ibm ibm-cloud/terraform-provider-ibm
- License
- Notes
- This Pulumi package is based on the
ibm
Terraform Provider.