1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. Streaming
  5. getConnectHarnesses
Oracle Cloud Infrastructure v2.31.0 published on Thursday, Apr 17, 2025 by Pulumi

oci.Streaming.getConnectHarnesses

Explore with Pulumi AI

Oracle Cloud Infrastructure v2.31.0 published on Thursday, Apr 17, 2025 by Pulumi

This data source provides the list of Connect Harnesses in Oracle Cloud Infrastructure Streaming service.

Lists the connectharness.

Example Usage

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

const testConnectHarnesses = oci.Streaming.getConnectHarnesses({
    compartmentId: compartmentId,
    id: connectHarnessId,
    name: connectHarnessName,
    state: connectHarnessState,
});
Copy
import pulumi
import pulumi_oci as oci

test_connect_harnesses = oci.Streaming.get_connect_harnesses(compartment_id=compartment_id,
    id=connect_harness_id,
    name=connect_harness_name,
    state=connect_harness_state)
Copy
package main

import (
	"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/streaming"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := streaming.GetConnectHarnesses(ctx, &streaming.GetConnectHarnessesArgs{
			CompartmentId: compartmentId,
			Id:            pulumi.StringRef(connectHarnessId),
			Name:          pulumi.StringRef(connectHarnessName),
			State:         pulumi.StringRef(connectHarnessState),
		}, nil)
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;

return await Deployment.RunAsync(() => 
{
    var testConnectHarnesses = Oci.Streaming.GetConnectHarnesses.Invoke(new()
    {
        CompartmentId = compartmentId,
        Id = connectHarnessId,
        Name = connectHarnessName,
        State = connectHarnessState,
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.Streaming.StreamingFunctions;
import com.pulumi.oci.Streaming.inputs.GetConnectHarnessesArgs;
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 testConnectHarnesses = StreamingFunctions.getConnectHarnesses(GetConnectHarnessesArgs.builder()
            .compartmentId(compartmentId)
            .id(connectHarnessId)
            .name(connectHarnessName)
            .state(connectHarnessState)
            .build());

    }
}
Copy
variables:
  testConnectHarnesses:
    fn::invoke:
      function: oci:Streaming:getConnectHarnesses
      arguments:
        compartmentId: ${compartmentId}
        id: ${connectHarnessId}
        name: ${connectHarnessName}
        state: ${connectHarnessState}
Copy

Using getConnectHarnesses

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 getConnectHarnesses(args: GetConnectHarnessesArgs, opts?: InvokeOptions): Promise<GetConnectHarnessesResult>
function getConnectHarnessesOutput(args: GetConnectHarnessesOutputArgs, opts?: InvokeOptions): Output<GetConnectHarnessesResult>
Copy
def get_connect_harnesses(compartment_id: Optional[str] = None,
                          filters: Optional[Sequence[_streaming.GetConnectHarnessesFilter]] = None,
                          id: Optional[str] = None,
                          name: Optional[str] = None,
                          state: Optional[str] = None,
                          opts: Optional[InvokeOptions] = None) -> GetConnectHarnessesResult
def get_connect_harnesses_output(compartment_id: Optional[pulumi.Input[str]] = None,
                          filters: Optional[pulumi.Input[Sequence[pulumi.Input[_streaming.GetConnectHarnessesFilterArgs]]]] = None,
                          id: Optional[pulumi.Input[str]] = None,
                          name: Optional[pulumi.Input[str]] = None,
                          state: Optional[pulumi.Input[str]] = None,
                          opts: Optional[InvokeOptions] = None) -> Output[GetConnectHarnessesResult]
Copy
func GetConnectHarnesses(ctx *Context, args *GetConnectHarnessesArgs, opts ...InvokeOption) (*GetConnectHarnessesResult, error)
func GetConnectHarnessesOutput(ctx *Context, args *GetConnectHarnessesOutputArgs, opts ...InvokeOption) GetConnectHarnessesResultOutput
Copy

> Note: This function is named GetConnectHarnesses in the Go SDK.

public static class GetConnectHarnesses 
{
    public static Task<GetConnectHarnessesResult> InvokeAsync(GetConnectHarnessesArgs args, InvokeOptions? opts = null)
    public static Output<GetConnectHarnessesResult> Invoke(GetConnectHarnessesInvokeArgs args, InvokeOptions? opts = null)
}
Copy
public static CompletableFuture<GetConnectHarnessesResult> getConnectHarnesses(GetConnectHarnessesArgs args, InvokeOptions options)
public static Output<GetConnectHarnessesResult> getConnectHarnesses(GetConnectHarnessesArgs args, InvokeOptions options)
Copy
fn::invoke:
  function: oci:Streaming/getConnectHarnesses:getConnectHarnesses
  arguments:
    # arguments dictionary
Copy

The following arguments are supported:

CompartmentId This property is required. string
The OCID of the compartment.
Filters Changes to this property will trigger replacement. List<GetConnectHarnessesFilter>
Id string
A filter to return only resources that match the given ID exactly.
Name string
A filter to return only resources that match the given name exactly.
State string
A filter to only return resources that match the given lifecycle state. The state value is case-insensitive.
CompartmentId This property is required. string
The OCID of the compartment.
Filters Changes to this property will trigger replacement. []GetConnectHarnessesFilter
Id string
A filter to return only resources that match the given ID exactly.
Name string
A filter to return only resources that match the given name exactly.
State string
A filter to only return resources that match the given lifecycle state. The state value is case-insensitive.
compartmentId This property is required. String
The OCID of the compartment.
filters Changes to this property will trigger replacement. List<GetConnectHarnessesFilter>
id String
A filter to return only resources that match the given ID exactly.
name String
A filter to return only resources that match the given name exactly.
state String
A filter to only return resources that match the given lifecycle state. The state value is case-insensitive.
compartmentId This property is required. string
The OCID of the compartment.
filters Changes to this property will trigger replacement. GetConnectHarnessesFilter[]
id string
A filter to return only resources that match the given ID exactly.
name string
A filter to return only resources that match the given name exactly.
state string
A filter to only return resources that match the given lifecycle state. The state value is case-insensitive.
compartment_id This property is required. str
The OCID of the compartment.
filters Changes to this property will trigger replacement. Sequence[streaming.GetConnectHarnessesFilter]
id str
A filter to return only resources that match the given ID exactly.
name str
A filter to return only resources that match the given name exactly.
state str
A filter to only return resources that match the given lifecycle state. The state value is case-insensitive.
compartmentId This property is required. String
The OCID of the compartment.
filters Changes to this property will trigger replacement. List<Property Map>
id String
A filter to return only resources that match the given ID exactly.
name String
A filter to return only resources that match the given name exactly.
state String
A filter to only return resources that match the given lifecycle state. The state value is case-insensitive.

getConnectHarnesses Result

The following output properties are available:

CompartmentId string
The OCID of the compartment that contains the connect harness.
ConnectHarnesses List<GetConnectHarnessesConnectHarness>
The list of connect_harness.
Filters List<GetConnectHarnessesFilter>
Id string
The OCID of the connect harness.
Name string
The name of the connect harness. Avoid entering confidential information. Example: JDBCConnector
State string
The current state of the connect harness.
CompartmentId string
The OCID of the compartment that contains the connect harness.
ConnectHarnesses []GetConnectHarnessesConnectHarness
The list of connect_harness.
Filters []GetConnectHarnessesFilter
Id string
The OCID of the connect harness.
Name string
The name of the connect harness. Avoid entering confidential information. Example: JDBCConnector
State string
The current state of the connect harness.
compartmentId String
The OCID of the compartment that contains the connect harness.
connectHarnesses List<GetConnectHarnessesConnectHarness>
The list of connect_harness.
filters List<GetConnectHarnessesFilter>
id String
The OCID of the connect harness.
name String
The name of the connect harness. Avoid entering confidential information. Example: JDBCConnector
state String
The current state of the connect harness.
compartmentId string
The OCID of the compartment that contains the connect harness.
connectHarnesses GetConnectHarnessesConnectHarness[]
The list of connect_harness.
filters GetConnectHarnessesFilter[]
id string
The OCID of the connect harness.
name string
The name of the connect harness. Avoid entering confidential information. Example: JDBCConnector
state string
The current state of the connect harness.
compartment_id str
The OCID of the compartment that contains the connect harness.
connect_harnesses Sequence[streaming.GetConnectHarnessesConnectHarness]
The list of connect_harness.
filters Sequence[streaming.GetConnectHarnessesFilter]
id str
The OCID of the connect harness.
name str
The name of the connect harness. Avoid entering confidential information. Example: JDBCConnector
state str
The current state of the connect harness.
compartmentId String
The OCID of the compartment that contains the connect harness.
connectHarnesses List<Property Map>
The list of connect_harness.
filters List<Property Map>
id String
The OCID of the connect harness.
name String
The name of the connect harness. Avoid entering confidential information. Example: JDBCConnector
state String
The current state of the connect harness.

Supporting Types

GetConnectHarnessesConnectHarness

CompartmentId This property is required. string
The OCID of the compartment.
DefinedTags This property is required. Dictionary<string, string>
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{"Operations": {"CostCenter": "42"}}'
FreeformTags This property is required. Dictionary<string, string>
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"}
Id This property is required. string
A filter to return only resources that match the given ID exactly.
LifecycleStateDetails This property is required. string
Any additional details about the current state of the connect harness.
Name This property is required. string
A filter to return only resources that match the given name exactly.
State This property is required. string
A filter to only return resources that match the given lifecycle state. The state value is case-insensitive.
TimeCreated This property is required. string
The date and time the connect harness was created, expressed in in RFC 3339 timestamp format. Example: 2018-04-20T00:00:07.405Z
CompartmentId This property is required. string
The OCID of the compartment.
DefinedTags This property is required. map[string]string
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{"Operations": {"CostCenter": "42"}}'
FreeformTags This property is required. map[string]string
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"}
Id This property is required. string
A filter to return only resources that match the given ID exactly.
LifecycleStateDetails This property is required. string
Any additional details about the current state of the connect harness.
Name This property is required. string
A filter to return only resources that match the given name exactly.
State This property is required. string
A filter to only return resources that match the given lifecycle state. The state value is case-insensitive.
TimeCreated This property is required. string
The date and time the connect harness was created, expressed in in RFC 3339 timestamp format. Example: 2018-04-20T00:00:07.405Z
compartmentId This property is required. String
The OCID of the compartment.
definedTags This property is required. Map<String,String>
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{"Operations": {"CostCenter": "42"}}'
freeformTags This property is required. Map<String,String>
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"}
id This property is required. String
A filter to return only resources that match the given ID exactly.
lifecycleStateDetails This property is required. String
Any additional details about the current state of the connect harness.
name This property is required. String
A filter to return only resources that match the given name exactly.
state This property is required. String
A filter to only return resources that match the given lifecycle state. The state value is case-insensitive.
timeCreated This property is required. String
The date and time the connect harness was created, expressed in in RFC 3339 timestamp format. Example: 2018-04-20T00:00:07.405Z
compartmentId This property is required. string
The OCID of the compartment.
definedTags This property is required. {[key: string]: string}
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{"Operations": {"CostCenter": "42"}}'
freeformTags This property is required. {[key: string]: string}
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"}
id This property is required. string
A filter to return only resources that match the given ID exactly.
lifecycleStateDetails This property is required. string
Any additional details about the current state of the connect harness.
name This property is required. string
A filter to return only resources that match the given name exactly.
state This property is required. string
A filter to only return resources that match the given lifecycle state. The state value is case-insensitive.
timeCreated This property is required. 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 This property is required. str
The OCID of the compartment.
defined_tags This property is required. Mapping[str, str]
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{"Operations": {"CostCenter": "42"}}'
freeform_tags This property is required. Mapping[str, str]
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"}
id This property is required. str
A filter to return only resources that match the given ID exactly.
lifecycle_state_details This property is required. str
Any additional details about the current state of the connect harness.
name This property is required. str
A filter to return only resources that match the given name exactly.
state This property is required. str
A filter to only return resources that match the given lifecycle state. The state value is case-insensitive.
time_created This property is required. str
The date and time the connect harness was created, expressed in in RFC 3339 timestamp format. Example: 2018-04-20T00:00:07.405Z
compartmentId This property is required. String
The OCID of the compartment.
definedTags This property is required. Map<String>
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{"Operations": {"CostCenter": "42"}}'
freeformTags This property is required. Map<String>
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"}
id This property is required. String
A filter to return only resources that match the given ID exactly.
lifecycleStateDetails This property is required. String
Any additional details about the current state of the connect harness.
name This property is required. String
A filter to return only resources that match the given name exactly.
state This property is required. String
A filter to only return resources that match the given lifecycle state. The state value is case-insensitive.
timeCreated This property is required. String
The date and time the connect harness was created, expressed in in RFC 3339 timestamp format. Example: 2018-04-20T00:00:07.405Z

GetConnectHarnessesFilter

Name This property is required. string
A filter to return only resources that match the given name exactly.
Values This property is required. List<string>
Regex bool
Name This property is required. string
A filter to return only resources that match the given name exactly.
Values This property is required. []string
Regex bool
name This property is required. String
A filter to return only resources that match the given name exactly.
values This property is required. List<String>
regex Boolean
name This property is required. string
A filter to return only resources that match the given name exactly.
values This property is required. string[]
regex boolean
name This property is required. str
A filter to return only resources that match the given name exactly.
values This property is required. Sequence[str]
regex bool
name This property is required. String
A filter to return only resources that match the given name exactly.
values This property is required. List<String>
regex Boolean

Package Details

Repository
oci pulumi/pulumi-oci
License
Apache-2.0
Notes
This Pulumi package is based on the oci Terraform Provider.
Oracle Cloud Infrastructure v2.31.0 published on Thursday, Apr 17, 2025 by Pulumi