oci.Streaming.ConnectHarness
Explore with Pulumi AI
This resource provides the Connect Harness resource in Oracle Cloud Infrastructure Streaming service.
Starts the provisioning of a new connect harness.
To track the progress of the provisioning, you can periodically call [GetConnectHarness].
In the response, the lifecycleState
parameter of the ConnectHarness object tells you its current state.
Example Usage
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;
return await Deployment.RunAsync(() =>
{
var testConnectHarness = new Oci.Streaming.ConnectHarness("testConnectHarness", new()
{
CompartmentId = @var.Compartment_id,
DefinedTags = @var.Connect_harness_defined_tags,
FreeformTags =
{
{ "Department", "Finance" },
},
});
});
package main
import (
"github.com/pulumi/pulumi-oci/sdk/go/oci/Streaming"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := Streaming.NewConnectHarness(ctx, "testConnectHarness", &Streaming.ConnectHarnessArgs{
CompartmentId: pulumi.Any(_var.Compartment_id),
DefinedTags: pulumi.Any(_var.Connect_harness_defined_tags),
FreeformTags: pulumi.AnyMap{
"Department": pulumi.Any("Finance"),
},
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.Streaming.ConnectHarness;
import com.pulumi.oci.Streaming.ConnectHarnessArgs;
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 testConnectHarness = new ConnectHarness("testConnectHarness", ConnectHarnessArgs.builder()
.compartmentId(var_.compartment_id())
.definedTags(var_.connect_harness_defined_tags())
.freeformTags(Map.of("Department", "Finance"))
.build());
}
}
import pulumi
import pulumi_oci as oci
test_connect_harness = oci.streaming.ConnectHarness("testConnectHarness",
compartment_id=var["compartment_id"],
defined_tags=var["connect_harness_defined_tags"],
freeform_tags={
"Department": "Finance",
})
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testConnectHarness = new oci.streaming.ConnectHarness("testConnectHarness", {
compartmentId: _var.compartment_id,
definedTags: _var.connect_harness_defined_tags,
freeformTags: {
Department: "Finance",
},
});
resources:
testConnectHarness:
type: oci:Streaming:ConnectHarness
properties:
#Required
compartmentId: ${var.compartment_id}
#Optional
definedTags: ${var.connect_harness_defined_tags}
freeformTags:
Department: Finance
Create ConnectHarness Resource
new ConnectHarness(name: string, args: ConnectHarnessArgs, opts?: CustomResourceOptions);
@overload
def ConnectHarness(resource_name: str,
opts: Optional[ResourceOptions] = None,
compartment_id: Optional[str] = None,
defined_tags: Optional[Mapping[str, Any]] = None,
freeform_tags: Optional[Mapping[str, Any]] = None,
name: Optional[str] = None)
@overload
def ConnectHarness(resource_name: str,
args: ConnectHarnessArgs,
opts: Optional[ResourceOptions] = None)
func NewConnectHarness(ctx *Context, name string, args ConnectHarnessArgs, opts ...ResourceOption) (*ConnectHarness, error)
public ConnectHarness(string name, ConnectHarnessArgs args, CustomResourceOptions? opts = null)
public ConnectHarness(String name, ConnectHarnessArgs args)
public ConnectHarness(String name, ConnectHarnessArgs args, CustomResourceOptions options)
type: oci:Streaming:ConnectHarness
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ConnectHarnessArgs
- 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 ConnectHarnessArgs
- 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 ConnectHarnessArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ConnectHarnessArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ConnectHarnessArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
ConnectHarness 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 ConnectHarness resource accepts the following input properties:
- Compartment
Id string (Updatable) The OCID of the compartment that contains the connect harness.
- Dictionary<string, object>
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"}
- Dictionary<string, object>
(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair that is applied with no predefined name, type, or namespace. Exists for cross-compatibility only. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- Name string
The name of the connect harness. Avoid entering confidential information. Example:
JDBCConnector
** 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
- Compartment
Id string (Updatable) The OCID of the compartment that contains the connect harness.
- map[string]interface{}
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"}
- map[string]interface{}
(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair that is applied with no predefined name, type, or namespace. Exists for cross-compatibility only. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- Name string
The name of the connect harness. Avoid entering confidential information. Example:
JDBCConnector
** 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
- compartment
Id String (Updatable) The OCID of the compartment that contains the connect harness.
- Map<String,Object>
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"}
- Map<String,Object>
(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair that is applied with no predefined name, type, or namespace. Exists for cross-compatibility only. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- name String
The name of the connect harness. Avoid entering confidential information. Example:
JDBCConnector
** 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
- compartment
Id string (Updatable) The OCID of the compartment that contains the connect harness.
- {[key: string]: any}
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"}
- {[key: string]: any}
(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair that is applied with no predefined name, type, or namespace. Exists for cross-compatibility only. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- name string
The name of the connect harness. Avoid entering confidential information. Example:
JDBCConnector
** 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
- compartment_
id str (Updatable) The OCID of the compartment that contains the connect harness.
- Mapping[str, Any]
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"}
- Mapping[str, Any]
(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair that is applied with no predefined name, type, or namespace. Exists for cross-compatibility only. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- name str
The name of the connect harness. Avoid entering confidential information. Example:
JDBCConnector
** 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
- compartment
Id String (Updatable) The OCID of the compartment that contains the connect harness.
- Map<Any>
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"}
- Map<Any>
(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair that is applied with no predefined name, type, or namespace. Exists for cross-compatibility only. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- name String
The name of the connect harness. Avoid entering confidential information. Example:
JDBCConnector
** 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 ConnectHarness resource produces the following output properties:
- Id string
The provider-assigned unique ID for this managed resource.
- Lifecycle
State stringDetails Any additional details about the current state of the connect harness.
- State string
The current state of the connect harness.
- Time
Created string The date and time the connect harness was created, expressed in in RFC 3339 timestamp format. Example:
2018-04-20T00:00:07.405Z
- Id string
The provider-assigned unique ID for this managed resource.
- Lifecycle
State stringDetails Any additional details about the current state of the connect harness.
- State string
The current state of the connect harness.
- Time
Created string The date and time the connect harness was created, expressed in in RFC 3339 timestamp format. Example:
2018-04-20T00:00:07.405Z
- id String
The provider-assigned unique ID for this managed resource.
- lifecycle
State StringDetails Any additional details about the current state of the connect harness.
- state String
The current state of the connect harness.
- time
Created String The date and time the connect harness was created, expressed in in RFC 3339 timestamp format. Example:
2018-04-20T00:00:07.405Z
- id string
The provider-assigned unique ID for this managed resource.
- lifecycle
State stringDetails Any additional details about the current state of the connect harness.
- state string
The current state of the connect harness.
- time
Created string The date and time the connect harness was created, expressed in in RFC 3339 timestamp format. Example:
2018-04-20T00:00:07.405Z
- id str
The provider-assigned unique ID for this managed resource.
- lifecycle_
state_ strdetails Any additional details about the current state of the connect harness.
- state str
The current state of the connect harness.
- time_
created str The date and time the connect harness was created, expressed in in RFC 3339 timestamp format. Example:
2018-04-20T00:00:07.405Z
- id String
The provider-assigned unique ID for this managed resource.
- lifecycle
State StringDetails Any additional details about the current state of the connect harness.
- state String
The current state of the connect harness.
- time
Created String The date and time the connect harness was created, expressed in in RFC 3339 timestamp format. Example:
2018-04-20T00:00:07.405Z
Look up Existing ConnectHarness Resource
Get an existing ConnectHarness 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?: ConnectHarnessState, opts?: CustomResourceOptions): ConnectHarness
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
compartment_id: Optional[str] = None,
defined_tags: Optional[Mapping[str, Any]] = None,
freeform_tags: Optional[Mapping[str, Any]] = None,
lifecycle_state_details: Optional[str] = None,
name: Optional[str] = None,
state: Optional[str] = None,
time_created: Optional[str] = None) -> ConnectHarness
func GetConnectHarness(ctx *Context, name string, id IDInput, state *ConnectHarnessState, opts ...ResourceOption) (*ConnectHarness, error)
public static ConnectHarness Get(string name, Input<string> id, ConnectHarnessState? state, CustomResourceOptions? opts = null)
public static ConnectHarness get(String name, Output<String> id, ConnectHarnessState 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.
- Compartment
Id string (Updatable) The OCID of the compartment that contains the connect harness.
- Dictionary<string, object>
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"}
- Dictionary<string, object>
(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair that is applied with no predefined name, type, or namespace. Exists for cross-compatibility only. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- Lifecycle
State stringDetails Any additional details about the current state of the connect harness.
- Name string
The name of the connect harness. Avoid entering confidential information. Example:
JDBCConnector
** 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
- State string
The current state of the connect harness.
- Time
Created string The date and time the connect harness was created, expressed in in RFC 3339 timestamp format. Example:
2018-04-20T00:00:07.405Z
- Compartment
Id string (Updatable) The OCID of the compartment that contains the connect harness.
- map[string]interface{}
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"}
- map[string]interface{}
(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair that is applied with no predefined name, type, or namespace. Exists for cross-compatibility only. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- Lifecycle
State stringDetails Any additional details about the current state of the connect harness.
- Name string
The name of the connect harness. Avoid entering confidential information. Example:
JDBCConnector
** 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
- State string
The current state of the connect harness.
- Time
Created string The date and time the connect harness was created, expressed in in RFC 3339 timestamp format. Example:
2018-04-20T00:00:07.405Z
- compartment
Id String (Updatable) The OCID of the compartment that contains the connect harness.
- Map<String,Object>
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"}
- Map<String,Object>
(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair that is applied with no predefined name, type, or namespace. Exists for cross-compatibility only. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- lifecycle
State StringDetails Any additional details about the current state of the connect harness.
- name String
The name of the connect harness. Avoid entering confidential information. Example:
JDBCConnector
** 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
- state String
The current state of the connect harness.
- time
Created String The date and time the connect harness was created, expressed in in RFC 3339 timestamp format. Example:
2018-04-20T00:00:07.405Z
- compartment
Id string (Updatable) The OCID of the compartment that contains the connect harness.
- {[key: string]: any}
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"}
- {[key: string]: any}
(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair that is applied with no predefined name, type, or namespace. Exists for cross-compatibility only. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- lifecycle
State stringDetails Any additional details about the current state of the connect harness.
- name string
The name of the connect harness. Avoid entering confidential information. Example:
JDBCConnector
** 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
- state string
The current state of the connect harness.
- time
Created string The date and time the connect harness was created, expressed in in RFC 3339 timestamp format. Example:
2018-04-20T00:00:07.405Z
- compartment_
id str (Updatable) The OCID of the compartment that contains the connect harness.
- Mapping[str, Any]
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"}
- Mapping[str, Any]
(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair that is applied with no predefined name, type, or namespace. Exists for cross-compatibility only. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- lifecycle_
state_ strdetails Any additional details about the current state of the connect harness.
- name str
The name of the connect harness. Avoid entering confidential information. Example:
JDBCConnector
** 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
- state str
The current state of the connect harness.
- time_
created str The date and time the connect harness was created, expressed in in RFC 3339 timestamp format. Example:
2018-04-20T00:00:07.405Z
- compartment
Id String (Updatable) The OCID of the compartment that contains the connect harness.
- Map<Any>
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"}
- Map<Any>
(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair that is applied with no predefined name, type, or namespace. Exists for cross-compatibility only. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- lifecycle
State StringDetails Any additional details about the current state of the connect harness.
- name String
The name of the connect harness. Avoid entering confidential information. Example:
JDBCConnector
** 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
- state String
The current state of the connect harness.
- time
Created String The date and time the connect harness was created, expressed in in RFC 3339 timestamp format. Example:
2018-04-20T00:00:07.405Z
Import
ConnectHarnesses can be imported using the id
, e.g.
$ pulumi import oci:Streaming/connectHarness:ConnectHarness test_connect_harness "id"
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
This Pulumi package is based on the
oci
Terraform Provider.