oci.DevOps.Connection
Explore with Pulumi AI
This resource provides the Connection resource in Oracle Cloud Infrastructure Devops service.
Creates a new connection.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testConnection = new oci.devops.Connection("test_connection", {
connectionType: connectionConnectionType,
projectId: testProject.id,
accessToken: connectionAccessToken,
appPassword: connectionAppPassword,
baseUrl: connectionBaseUrl,
definedTags: {
"foo-namespace.bar-key": "value",
},
description: connectionDescription,
displayName: connectionDisplayName,
freeformTags: {
"bar-key": "value",
},
tlsVerifyConfig: {
caCertificateBundleId: testCaCertificateBundle.id,
tlsVerifyMode: connectionTlsVerifyConfigTlsVerifyMode,
},
username: connectionUsername,
});
import pulumi
import pulumi_oci as oci
test_connection = oci.dev_ops.Connection("test_connection",
connection_type=connection_connection_type,
project_id=test_project["id"],
access_token=connection_access_token,
app_password=connection_app_password,
base_url=connection_base_url,
defined_tags={
"foo-namespace.bar-key": "value",
},
description=connection_description,
display_name=connection_display_name,
freeform_tags={
"bar-key": "value",
},
tls_verify_config=oci.dev_ops.ConnectionTlsVerifyConfigArgs(
ca_certificate_bundle_id=test_ca_certificate_bundle["id"],
tls_verify_mode=connection_tls_verify_config_tls_verify_mode,
),
username=connection_username)
package main
import (
"github.com/pulumi/pulumi-oci/sdk/go/oci/DevOps"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := DevOps.NewConnection(ctx, "test_connection", &DevOps.ConnectionArgs{
ConnectionType: pulumi.Any(connectionConnectionType),
ProjectId: pulumi.Any(testProject.Id),
AccessToken: pulumi.Any(connectionAccessToken),
AppPassword: pulumi.Any(connectionAppPassword),
BaseUrl: pulumi.Any(connectionBaseUrl),
DefinedTags: pulumi.Map{
"foo-namespace.bar-key": pulumi.Any("value"),
},
Description: pulumi.Any(connectionDescription),
DisplayName: pulumi.Any(connectionDisplayName),
FreeformTags: pulumi.Map{
"bar-key": pulumi.Any("value"),
},
TlsVerifyConfig: &devops.ConnectionTlsVerifyConfigArgs{
CaCertificateBundleId: pulumi.Any(testCaCertificateBundle.Id),
TlsVerifyMode: pulumi.Any(connectionTlsVerifyConfigTlsVerifyMode),
},
Username: pulumi.Any(connectionUsername),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;
return await Deployment.RunAsync(() =>
{
var testConnection = new Oci.DevOps.Connection("test_connection", new()
{
ConnectionType = connectionConnectionType,
ProjectId = testProject.Id,
AccessToken = connectionAccessToken,
AppPassword = connectionAppPassword,
BaseUrl = connectionBaseUrl,
DefinedTags =
{
{ "foo-namespace.bar-key", "value" },
},
Description = connectionDescription,
DisplayName = connectionDisplayName,
FreeformTags =
{
{ "bar-key", "value" },
},
TlsVerifyConfig = new Oci.DevOps.Inputs.ConnectionTlsVerifyConfigArgs
{
CaCertificateBundleId = testCaCertificateBundle.Id,
TlsVerifyMode = connectionTlsVerifyConfigTlsVerifyMode,
},
Username = connectionUsername,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.DevOps.Connection;
import com.pulumi.oci.DevOps.ConnectionArgs;
import com.pulumi.oci.DevOps.inputs.ConnectionTlsVerifyConfigArgs;
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 testConnection = new Connection("testConnection", ConnectionArgs.builder()
.connectionType(connectionConnectionType)
.projectId(testProject.id())
.accessToken(connectionAccessToken)
.appPassword(connectionAppPassword)
.baseUrl(connectionBaseUrl)
.definedTags(Map.of("foo-namespace.bar-key", "value"))
.description(connectionDescription)
.displayName(connectionDisplayName)
.freeformTags(Map.of("bar-key", "value"))
.tlsVerifyConfig(ConnectionTlsVerifyConfigArgs.builder()
.caCertificateBundleId(testCaCertificateBundle.id())
.tlsVerifyMode(connectionTlsVerifyConfigTlsVerifyMode)
.build())
.username(connectionUsername)
.build());
}
}
resources:
testConnection:
type: oci:DevOps:Connection
name: test_connection
properties:
connectionType: ${connectionConnectionType}
projectId: ${testProject.id}
accessToken: ${connectionAccessToken}
appPassword: ${connectionAppPassword}
baseUrl: ${connectionBaseUrl}
definedTags:
foo-namespace.bar-key: value
description: ${connectionDescription}
displayName: ${connectionDisplayName}
freeformTags:
bar-key: value
tlsVerifyConfig:
caCertificateBundleId: ${testCaCertificateBundle.id}
tlsVerifyMode: ${connectionTlsVerifyConfigTlsVerifyMode}
username: ${connectionUsername}
Create Connection Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Connection(name: string, args: ConnectionArgs, opts?: CustomResourceOptions);
@overload
def Connection(resource_name: str,
args: ConnectionArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Connection(resource_name: str,
opts: Optional[ResourceOptions] = None,
connection_type: Optional[str] = None,
project_id: Optional[str] = None,
access_token: Optional[str] = None,
app_password: Optional[str] = None,
base_url: Optional[str] = None,
defined_tags: Optional[Mapping[str, Any]] = None,
description: Optional[str] = None,
display_name: Optional[str] = None,
freeform_tags: Optional[Mapping[str, Any]] = None,
tls_verify_config: Optional[_devops.ConnectionTlsVerifyConfigArgs] = None,
username: Optional[str] = None)
func NewConnection(ctx *Context, name string, args ConnectionArgs, opts ...ResourceOption) (*Connection, error)
public Connection(string name, ConnectionArgs args, CustomResourceOptions? opts = null)
public Connection(String name, ConnectionArgs args)
public Connection(String name, ConnectionArgs args, CustomResourceOptions options)
type: oci:DevOps:Connection
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 ConnectionArgs
- 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 ConnectionArgs
- 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 ConnectionArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ConnectionArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ConnectionArgs
- 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 exampleconnectionResourceResourceFromDevOpsconnection = new Oci.DevOps.Connection("exampleconnectionResourceResourceFromDevOpsconnection", new()
{
ConnectionType = "string",
ProjectId = "string",
AccessToken = "string",
AppPassword = "string",
BaseUrl = "string",
DefinedTags =
{
{ "string", "any" },
},
Description = "string",
DisplayName = "string",
FreeformTags =
{
{ "string", "any" },
},
TlsVerifyConfig = new Oci.DevOps.Inputs.ConnectionTlsVerifyConfigArgs
{
CaCertificateBundleId = "string",
TlsVerifyMode = "string",
},
Username = "string",
});
example, err := DevOps.NewConnection(ctx, "exampleconnectionResourceResourceFromDevOpsconnection", &DevOps.ConnectionArgs{
ConnectionType: pulumi.String("string"),
ProjectId: pulumi.String("string"),
AccessToken: pulumi.String("string"),
AppPassword: pulumi.String("string"),
BaseUrl: pulumi.String("string"),
DefinedTags: pulumi.Map{
"string": pulumi.Any("any"),
},
Description: pulumi.String("string"),
DisplayName: pulumi.String("string"),
FreeformTags: pulumi.Map{
"string": pulumi.Any("any"),
},
TlsVerifyConfig: &devops.ConnectionTlsVerifyConfigArgs{
CaCertificateBundleId: pulumi.String("string"),
TlsVerifyMode: pulumi.String("string"),
},
Username: pulumi.String("string"),
})
var exampleconnectionResourceResourceFromDevOpsconnection = new Connection("exampleconnectionResourceResourceFromDevOpsconnection", ConnectionArgs.builder()
.connectionType("string")
.projectId("string")
.accessToken("string")
.appPassword("string")
.baseUrl("string")
.definedTags(Map.of("string", "any"))
.description("string")
.displayName("string")
.freeformTags(Map.of("string", "any"))
.tlsVerifyConfig(ConnectionTlsVerifyConfigArgs.builder()
.caCertificateBundleId("string")
.tlsVerifyMode("string")
.build())
.username("string")
.build());
exampleconnection_resource_resource_from_dev_opsconnection = oci.dev_ops.Connection("exampleconnectionResourceResourceFromDevOpsconnection",
connection_type="string",
project_id="string",
access_token="string",
app_password="string",
base_url="string",
defined_tags={
"string": "any",
},
description="string",
display_name="string",
freeform_tags={
"string": "any",
},
tls_verify_config=oci.dev_ops.ConnectionTlsVerifyConfigArgs(
ca_certificate_bundle_id="string",
tls_verify_mode="string",
),
username="string")
const exampleconnectionResourceResourceFromDevOpsconnection = new oci.devops.Connection("exampleconnectionResourceResourceFromDevOpsconnection", {
connectionType: "string",
projectId: "string",
accessToken: "string",
appPassword: "string",
baseUrl: "string",
definedTags: {
string: "any",
},
description: "string",
displayName: "string",
freeformTags: {
string: "any",
},
tlsVerifyConfig: {
caCertificateBundleId: "string",
tlsVerifyMode: "string",
},
username: "string",
});
type: oci:DevOps:Connection
properties:
accessToken: string
appPassword: string
baseUrl: string
connectionType: string
definedTags:
string: any
description: string
displayName: string
freeformTags:
string: any
projectId: string
tlsVerifyConfig:
caCertificateBundleId: string
tlsVerifyMode: string
username: string
Connection Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The Connection resource accepts the following input properties:
- Connection
Type string - (Updatable) The type of connection.
- Project
Id string - The OCID of the DevOps project.
- Access
Token string - (Updatable) The OCID of personal access token saved in secret store.
- App
Password string - (Updatable) OCID of personal Bitbucket Cloud AppPassword saved in secret store
- Base
Url string - (Updatable) The Base URL of the hosted BitbucketServer.
- Dictionary<string, object>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example:
{"foo-namespace.bar-key": "value"}
- Description string
- (Updatable) Optional description about the connection.
- Display
Name string - (Updatable) Optional connection display name. Avoid entering confidential information.
- Dictionary<string, object>
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. See Resource Tags. Example:
{"bar-key": "value"}
- Tls
Verify ConnectionConfig Tls Verify Config - (Updatable) TLS configuration used by build service to verify TLS connection.
- Username string
(Updatable) Public Bitbucket Cloud Username in plain text(not more than 30 characters)
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- Connection
Type string - (Updatable) The type of connection.
- Project
Id string - The OCID of the DevOps project.
- Access
Token string - (Updatable) The OCID of personal access token saved in secret store.
- App
Password string - (Updatable) OCID of personal Bitbucket Cloud AppPassword saved in secret store
- Base
Url string - (Updatable) The Base URL of the hosted BitbucketServer.
- map[string]interface{}
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example:
{"foo-namespace.bar-key": "value"}
- Description string
- (Updatable) Optional description about the connection.
- Display
Name string - (Updatable) Optional connection display name. Avoid entering confidential information.
- map[string]interface{}
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. See Resource Tags. Example:
{"bar-key": "value"}
- Tls
Verify ConnectionConfig Tls Verify Config Args - (Updatable) TLS configuration used by build service to verify TLS connection.
- Username string
(Updatable) Public Bitbucket Cloud Username in plain text(not more than 30 characters)
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- connection
Type String - (Updatable) The type of connection.
- project
Id String - The OCID of the DevOps project.
- access
Token String - (Updatable) The OCID of personal access token saved in secret store.
- app
Password String - (Updatable) OCID of personal Bitbucket Cloud AppPassword saved in secret store
- base
Url String - (Updatable) The Base URL of the hosted BitbucketServer.
- Map<String,Object>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example:
{"foo-namespace.bar-key": "value"}
- description String
- (Updatable) Optional description about the connection.
- display
Name String - (Updatable) Optional connection display name. Avoid entering confidential information.
- Map<String,Object>
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. See Resource Tags. Example:
{"bar-key": "value"}
- tls
Verify ConnectionConfig Tls Verify Config - (Updatable) TLS configuration used by build service to verify TLS connection.
- username String
(Updatable) Public Bitbucket Cloud Username in plain text(not more than 30 characters)
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- connection
Type string - (Updatable) The type of connection.
- project
Id string - The OCID of the DevOps project.
- access
Token string - (Updatable) The OCID of personal access token saved in secret store.
- app
Password string - (Updatable) OCID of personal Bitbucket Cloud AppPassword saved in secret store
- base
Url string - (Updatable) The Base URL of the hosted BitbucketServer.
- {[key: string]: any}
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example:
{"foo-namespace.bar-key": "value"}
- description string
- (Updatable) Optional description about the connection.
- display
Name string - (Updatable) Optional connection display name. Avoid entering confidential information.
- {[key: string]: any}
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. See Resource Tags. Example:
{"bar-key": "value"}
- tls
Verify ConnectionConfig Tls Verify Config - (Updatable) TLS configuration used by build service to verify TLS connection.
- username string
(Updatable) Public Bitbucket Cloud Username in plain text(not more than 30 characters)
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- connection_
type str - (Updatable) The type of connection.
- project_
id str - The OCID of the DevOps project.
- access_
token str - (Updatable) The OCID of personal access token saved in secret store.
- app_
password str - (Updatable) OCID of personal Bitbucket Cloud AppPassword saved in secret store
- base_
url str - (Updatable) The Base URL of the hosted BitbucketServer.
- Mapping[str, Any]
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example:
{"foo-namespace.bar-key": "value"}
- description str
- (Updatable) Optional description about the connection.
- display_
name str - (Updatable) Optional connection display name. Avoid entering confidential information.
- Mapping[str, Any]
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. See Resource Tags. Example:
{"bar-key": "value"}
- tls_
verify_ devops.config Connection Tls Verify Config Args - (Updatable) TLS configuration used by build service to verify TLS connection.
- username str
(Updatable) Public Bitbucket Cloud Username in plain text(not more than 30 characters)
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- connection
Type String - (Updatable) The type of connection.
- project
Id String - The OCID of the DevOps project.
- access
Token String - (Updatable) The OCID of personal access token saved in secret store.
- app
Password String - (Updatable) OCID of personal Bitbucket Cloud AppPassword saved in secret store
- base
Url String - (Updatable) The Base URL of the hosted BitbucketServer.
- Map<Any>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example:
{"foo-namespace.bar-key": "value"}
- description String
- (Updatable) Optional description about the connection.
- display
Name String - (Updatable) Optional connection display name. Avoid entering confidential information.
- Map<Any>
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. See Resource Tags. Example:
{"bar-key": "value"}
- tls
Verify Property MapConfig - (Updatable) TLS configuration used by build service to verify TLS connection.
- username String
(Updatable) Public Bitbucket Cloud Username in plain text(not more than 30 characters)
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
Outputs
All input properties are implicitly available as output properties. Additionally, the Connection resource produces the following output properties:
- Compartment
Id string - The OCID of the compartment containing the connection.
- Id string
- The provider-assigned unique ID for this managed resource.
- Last
Connection List<ConnectionValidation Results Last Connection Validation Result> - The result of validating the credentials of a connection.
- State string
- The current state of the connection.
- Dictionary<string, object>
- Usage of system tag keys. These predefined keys are scoped to namespaces. See Resource Tags. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Time
Created string - The time the connection was created. Format defined by RFC3339.
- Time
Updated string - The time the connection was updated. Format defined by RFC3339.
- Compartment
Id string - The OCID of the compartment containing the connection.
- Id string
- The provider-assigned unique ID for this managed resource.
- Last
Connection []ConnectionValidation Results Last Connection Validation Result - The result of validating the credentials of a connection.
- State string
- The current state of the connection.
- map[string]interface{}
- Usage of system tag keys. These predefined keys are scoped to namespaces. See Resource Tags. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Time
Created string - The time the connection was created. Format defined by RFC3339.
- Time
Updated string - The time the connection was updated. Format defined by RFC3339.
- compartment
Id String - The OCID of the compartment containing the connection.
- id String
- The provider-assigned unique ID for this managed resource.
- last
Connection List<ConnectionValidation Results Last Connection Validation Result> - The result of validating the credentials of a connection.
- state String
- The current state of the connection.
- Map<String,Object>
- Usage of system tag keys. These predefined keys are scoped to namespaces. See Resource Tags. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created String - The time the connection was created. Format defined by RFC3339.
- time
Updated String - The time the connection was updated. Format defined by RFC3339.
- compartment
Id string - The OCID of the compartment containing the connection.
- id string
- The provider-assigned unique ID for this managed resource.
- last
Connection ConnectionValidation Results Last Connection Validation Result[] - The result of validating the credentials of a connection.
- state string
- The current state of the connection.
- {[key: string]: any}
- Usage of system tag keys. These predefined keys are scoped to namespaces. See Resource Tags. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created string - The time the connection was created. Format defined by RFC3339.
- time
Updated string - The time the connection was updated. Format defined by RFC3339.
- compartment_
id str - The OCID of the compartment containing the connection.
- id str
- The provider-assigned unique ID for this managed resource.
- last_
connection_ Sequence[devops.validation_ results Connection Last Connection Validation Result] - The result of validating the credentials of a connection.
- state str
- The current state of the connection.
- Mapping[str, Any]
- Usage of system tag keys. These predefined keys are scoped to namespaces. See Resource Tags. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time_
created str - The time the connection was created. Format defined by RFC3339.
- time_
updated str - The time the connection was updated. Format defined by RFC3339.
- compartment
Id String - The OCID of the compartment containing the connection.
- id String
- The provider-assigned unique ID for this managed resource.
- last
Connection List<Property Map>Validation Results - The result of validating the credentials of a connection.
- state String
- The current state of the connection.
- Map<Any>
- Usage of system tag keys. These predefined keys are scoped to namespaces. See Resource Tags. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created String - The time the connection was created. Format defined by RFC3339.
- time
Updated String - The time the connection was updated. Format defined by RFC3339.
Look up Existing Connection Resource
Get an existing Connection 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?: ConnectionState, opts?: CustomResourceOptions): Connection
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
access_token: Optional[str] = None,
app_password: Optional[str] = None,
base_url: Optional[str] = None,
compartment_id: Optional[str] = None,
connection_type: Optional[str] = None,
defined_tags: Optional[Mapping[str, Any]] = None,
description: Optional[str] = None,
display_name: Optional[str] = None,
freeform_tags: Optional[Mapping[str, Any]] = None,
last_connection_validation_results: Optional[Sequence[_devops.ConnectionLastConnectionValidationResultArgs]] = None,
project_id: Optional[str] = None,
state: Optional[str] = None,
system_tags: Optional[Mapping[str, Any]] = None,
time_created: Optional[str] = None,
time_updated: Optional[str] = None,
tls_verify_config: Optional[_devops.ConnectionTlsVerifyConfigArgs] = None,
username: Optional[str] = None) -> Connection
func GetConnection(ctx *Context, name string, id IDInput, state *ConnectionState, opts ...ResourceOption) (*Connection, error)
public static Connection Get(string name, Input<string> id, ConnectionState? state, CustomResourceOptions? opts = null)
public static Connection get(String name, Output<String> id, ConnectionState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Access
Token string - (Updatable) The OCID of personal access token saved in secret store.
- App
Password string - (Updatable) OCID of personal Bitbucket Cloud AppPassword saved in secret store
- Base
Url string - (Updatable) The Base URL of the hosted BitbucketServer.
- Compartment
Id string - The OCID of the compartment containing the connection.
- Connection
Type string - (Updatable) The type of connection.
- Dictionary<string, object>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example:
{"foo-namespace.bar-key": "value"}
- Description string
- (Updatable) Optional description about the connection.
- Display
Name string - (Updatable) Optional connection display name. Avoid entering confidential information.
- Dictionary<string, object>
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. See Resource Tags. Example:
{"bar-key": "value"}
- Last
Connection List<ConnectionValidation Results Last Connection Validation Result> - The result of validating the credentials of a connection.
- Project
Id string - The OCID of the DevOps project.
- State string
- The current state of the connection.
- Dictionary<string, object>
- Usage of system tag keys. These predefined keys are scoped to namespaces. See Resource Tags. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Time
Created string - The time the connection was created. Format defined by RFC3339.
- Time
Updated string - The time the connection was updated. Format defined by RFC3339.
- Tls
Verify ConnectionConfig Tls Verify Config - (Updatable) TLS configuration used by build service to verify TLS connection.
- Username string
(Updatable) Public Bitbucket Cloud Username in plain text(not more than 30 characters)
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- Access
Token string - (Updatable) The OCID of personal access token saved in secret store.
- App
Password string - (Updatable) OCID of personal Bitbucket Cloud AppPassword saved in secret store
- Base
Url string - (Updatable) The Base URL of the hosted BitbucketServer.
- Compartment
Id string - The OCID of the compartment containing the connection.
- Connection
Type string - (Updatable) The type of connection.
- map[string]interface{}
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example:
{"foo-namespace.bar-key": "value"}
- Description string
- (Updatable) Optional description about the connection.
- Display
Name string - (Updatable) Optional connection display name. Avoid entering confidential information.
- map[string]interface{}
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. See Resource Tags. Example:
{"bar-key": "value"}
- Last
Connection []ConnectionValidation Results Last Connection Validation Result Args - The result of validating the credentials of a connection.
- Project
Id string - The OCID of the DevOps project.
- State string
- The current state of the connection.
- map[string]interface{}
- Usage of system tag keys. These predefined keys are scoped to namespaces. See Resource Tags. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Time
Created string - The time the connection was created. Format defined by RFC3339.
- Time
Updated string - The time the connection was updated. Format defined by RFC3339.
- Tls
Verify ConnectionConfig Tls Verify Config Args - (Updatable) TLS configuration used by build service to verify TLS connection.
- Username string
(Updatable) Public Bitbucket Cloud Username in plain text(not more than 30 characters)
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- access
Token String - (Updatable) The OCID of personal access token saved in secret store.
- app
Password String - (Updatable) OCID of personal Bitbucket Cloud AppPassword saved in secret store
- base
Url String - (Updatable) The Base URL of the hosted BitbucketServer.
- compartment
Id String - The OCID of the compartment containing the connection.
- connection
Type String - (Updatable) The type of connection.
- Map<String,Object>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example:
{"foo-namespace.bar-key": "value"}
- description String
- (Updatable) Optional description about the connection.
- display
Name String - (Updatable) Optional connection display name. Avoid entering confidential information.
- Map<String,Object>
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. See Resource Tags. Example:
{"bar-key": "value"}
- last
Connection List<ConnectionValidation Results Last Connection Validation Result> - The result of validating the credentials of a connection.
- project
Id String - The OCID of the DevOps project.
- state String
- The current state of the connection.
- Map<String,Object>
- Usage of system tag keys. These predefined keys are scoped to namespaces. See Resource Tags. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created String - The time the connection was created. Format defined by RFC3339.
- time
Updated String - The time the connection was updated. Format defined by RFC3339.
- tls
Verify ConnectionConfig Tls Verify Config - (Updatable) TLS configuration used by build service to verify TLS connection.
- username String
(Updatable) Public Bitbucket Cloud Username in plain text(not more than 30 characters)
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- access
Token string - (Updatable) The OCID of personal access token saved in secret store.
- app
Password string - (Updatable) OCID of personal Bitbucket Cloud AppPassword saved in secret store
- base
Url string - (Updatable) The Base URL of the hosted BitbucketServer.
- compartment
Id string - The OCID of the compartment containing the connection.
- connection
Type string - (Updatable) The type of connection.
- {[key: string]: any}
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example:
{"foo-namespace.bar-key": "value"}
- description string
- (Updatable) Optional description about the connection.
- display
Name string - (Updatable) Optional connection display name. Avoid entering confidential information.
- {[key: string]: any}
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. See Resource Tags. Example:
{"bar-key": "value"}
- last
Connection ConnectionValidation Results Last Connection Validation Result[] - The result of validating the credentials of a connection.
- project
Id string - The OCID of the DevOps project.
- state string
- The current state of the connection.
- {[key: string]: any}
- Usage of system tag keys. These predefined keys are scoped to namespaces. See Resource Tags. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created string - The time the connection was created. Format defined by RFC3339.
- time
Updated string - The time the connection was updated. Format defined by RFC3339.
- tls
Verify ConnectionConfig Tls Verify Config - (Updatable) TLS configuration used by build service to verify TLS connection.
- username string
(Updatable) Public Bitbucket Cloud Username in plain text(not more than 30 characters)
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- access_
token str - (Updatable) The OCID of personal access token saved in secret store.
- app_
password str - (Updatable) OCID of personal Bitbucket Cloud AppPassword saved in secret store
- base_
url str - (Updatable) The Base URL of the hosted BitbucketServer.
- compartment_
id str - The OCID of the compartment containing the connection.
- connection_
type str - (Updatable) The type of connection.
- Mapping[str, Any]
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example:
{"foo-namespace.bar-key": "value"}
- description str
- (Updatable) Optional description about the connection.
- display_
name str - (Updatable) Optional connection display name. Avoid entering confidential information.
- Mapping[str, Any]
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. See Resource Tags. Example:
{"bar-key": "value"}
- last_
connection_ Sequence[devops.validation_ results Connection Last Connection Validation Result Args] - The result of validating the credentials of a connection.
- project_
id str - The OCID of the DevOps project.
- state str
- The current state of the connection.
- Mapping[str, Any]
- Usage of system tag keys. These predefined keys are scoped to namespaces. See Resource Tags. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time_
created str - The time the connection was created. Format defined by RFC3339.
- time_
updated str - The time the connection was updated. Format defined by RFC3339.
- tls_
verify_ devops.config Connection Tls Verify Config Args - (Updatable) TLS configuration used by build service to verify TLS connection.
- username str
(Updatable) Public Bitbucket Cloud Username in plain text(not more than 30 characters)
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- access
Token String - (Updatable) The OCID of personal access token saved in secret store.
- app
Password String - (Updatable) OCID of personal Bitbucket Cloud AppPassword saved in secret store
- base
Url String - (Updatable) The Base URL of the hosted BitbucketServer.
- compartment
Id String - The OCID of the compartment containing the connection.
- connection
Type String - (Updatable) The type of connection.
- Map<Any>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example:
{"foo-namespace.bar-key": "value"}
- description String
- (Updatable) Optional description about the connection.
- display
Name String - (Updatable) Optional connection display name. Avoid entering confidential information.
- Map<Any>
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. See Resource Tags. Example:
{"bar-key": "value"}
- last
Connection List<Property Map>Validation Results - The result of validating the credentials of a connection.
- project
Id String - The OCID of the DevOps project.
- state String
- The current state of the connection.
- Map<Any>
- Usage of system tag keys. These predefined keys are scoped to namespaces. See Resource Tags. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created String - The time the connection was created. Format defined by RFC3339.
- time
Updated String - The time the connection was updated. Format defined by RFC3339.
- tls
Verify Property MapConfig - (Updatable) TLS configuration used by build service to verify TLS connection.
- username String
(Updatable) Public Bitbucket Cloud Username in plain text(not more than 30 characters)
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
Supporting Types
ConnectionLastConnectionValidationResult, ConnectionLastConnectionValidationResultArgs
- Message string
- A message describing the result of connection validation in more detail.
- Result string
- The latest result of whether the credentials pass the validation.
- Time
Validated string - The latest timestamp when the connection was validated. Format defined by RFC3339.
- Message string
- A message describing the result of connection validation in more detail.
- Result string
- The latest result of whether the credentials pass the validation.
- Time
Validated string - The latest timestamp when the connection was validated. Format defined by RFC3339.
- message String
- A message describing the result of connection validation in more detail.
- result String
- The latest result of whether the credentials pass the validation.
- time
Validated String - The latest timestamp when the connection was validated. Format defined by RFC3339.
- message string
- A message describing the result of connection validation in more detail.
- result string
- The latest result of whether the credentials pass the validation.
- time
Validated string - The latest timestamp when the connection was validated. Format defined by RFC3339.
- message str
- A message describing the result of connection validation in more detail.
- result str
- The latest result of whether the credentials pass the validation.
- time_
validated str - The latest timestamp when the connection was validated. Format defined by RFC3339.
- message String
- A message describing the result of connection validation in more detail.
- result String
- The latest result of whether the credentials pass the validation.
- time
Validated String - The latest timestamp when the connection was validated. Format defined by RFC3339.
ConnectionTlsVerifyConfig, ConnectionTlsVerifyConfigArgs
- Ca
Certificate stringBundle Id - (Updatable) The OCID of Oracle Cloud Infrastructure certificate service CA bundle.
- Tls
Verify stringMode - (Updatable) The type of TLS verification.
- Ca
Certificate stringBundle Id - (Updatable) The OCID of Oracle Cloud Infrastructure certificate service CA bundle.
- Tls
Verify stringMode - (Updatable) The type of TLS verification.
- ca
Certificate StringBundle Id - (Updatable) The OCID of Oracle Cloud Infrastructure certificate service CA bundle.
- tls
Verify StringMode - (Updatable) The type of TLS verification.
- ca
Certificate stringBundle Id - (Updatable) The OCID of Oracle Cloud Infrastructure certificate service CA bundle.
- tls
Verify stringMode - (Updatable) The type of TLS verification.
- ca_
certificate_ strbundle_ id - (Updatable) The OCID of Oracle Cloud Infrastructure certificate service CA bundle.
- tls_
verify_ strmode - (Updatable) The type of TLS verification.
- ca
Certificate StringBundle Id - (Updatable) The OCID of Oracle Cloud Infrastructure certificate service CA bundle.
- tls
Verify StringMode - (Updatable) The type of TLS verification.
Import
Connections can be imported using the id
, e.g.
$ pulumi import oci:DevOps/connection:Connection test_connection "id"
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
oci
Terraform Provider.