Oracle Cloud Infrastructure v2.27.0 published on Thursday, Mar 20, 2025 by Pulumi
oci.Sch.getServiceConnectors
Explore with Pulumi AI
This data source provides the list of Service Connectors in Oracle Cloud Infrastructure Service Connector Hub service.
Lists connectors in the specified compartment. For more information, see Listing Connectors.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testServiceConnectors = oci.Sch.getServiceConnectors({
    compartmentId: compartmentId,
    displayName: serviceConnectorDisplayName,
    state: serviceConnectorState,
});
import pulumi
import pulumi_oci as oci
test_service_connectors = oci.Sch.get_service_connectors(compartment_id=compartment_id,
    display_name=service_connector_display_name,
    state=service_connector_state)
package main
import (
	"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/sch"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := sch.GetServiceConnectors(ctx, &sch.GetServiceConnectorsArgs{
			CompartmentId: compartmentId,
			DisplayName:   pulumi.StringRef(serviceConnectorDisplayName),
			State:         pulumi.StringRef(serviceConnectorState),
		}, nil)
		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 testServiceConnectors = Oci.Sch.GetServiceConnectors.Invoke(new()
    {
        CompartmentId = compartmentId,
        DisplayName = serviceConnectorDisplayName,
        State = serviceConnectorState,
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.Sch.SchFunctions;
import com.pulumi.oci.Sch.inputs.GetServiceConnectorsArgs;
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 testServiceConnectors = SchFunctions.getServiceConnectors(GetServiceConnectorsArgs.builder()
            .compartmentId(compartmentId)
            .displayName(serviceConnectorDisplayName)
            .state(serviceConnectorState)
            .build());
    }
}
variables:
  testServiceConnectors:
    fn::invoke:
      function: oci:Sch:getServiceConnectors
      arguments:
        compartmentId: ${compartmentId}
        displayName: ${serviceConnectorDisplayName}
        state: ${serviceConnectorState}
Using getServiceConnectors
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 getServiceConnectors(args: GetServiceConnectorsArgs, opts?: InvokeOptions): Promise<GetServiceConnectorsResult>
function getServiceConnectorsOutput(args: GetServiceConnectorsOutputArgs, opts?: InvokeOptions): Output<GetServiceConnectorsResult>def get_service_connectors(compartment_id: Optional[str] = None,
                           display_name: Optional[str] = None,
                           filters: Optional[Sequence[_sch.GetServiceConnectorsFilter]] = None,
                           state: Optional[str] = None,
                           opts: Optional[InvokeOptions] = None) -> GetServiceConnectorsResult
def get_service_connectors_output(compartment_id: Optional[pulumi.Input[str]] = None,
                           display_name: Optional[pulumi.Input[str]] = None,
                           filters: Optional[pulumi.Input[Sequence[pulumi.Input[_sch.GetServiceConnectorsFilterArgs]]]] = None,
                           state: Optional[pulumi.Input[str]] = None,
                           opts: Optional[InvokeOptions] = None) -> Output[GetServiceConnectorsResult]func GetServiceConnectors(ctx *Context, args *GetServiceConnectorsArgs, opts ...InvokeOption) (*GetServiceConnectorsResult, error)
func GetServiceConnectorsOutput(ctx *Context, args *GetServiceConnectorsOutputArgs, opts ...InvokeOption) GetServiceConnectorsResultOutput> Note: This function is named GetServiceConnectors in the Go SDK.
public static class GetServiceConnectors 
{
    public static Task<GetServiceConnectorsResult> InvokeAsync(GetServiceConnectorsArgs args, InvokeOptions? opts = null)
    public static Output<GetServiceConnectorsResult> Invoke(GetServiceConnectorsInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetServiceConnectorsResult> getServiceConnectors(GetServiceConnectorsArgs args, InvokeOptions options)
public static Output<GetServiceConnectorsResult> getServiceConnectors(GetServiceConnectorsArgs args, InvokeOptions options)
fn::invoke:
  function: oci:Sch/getServiceConnectors:getServiceConnectors
  arguments:
    # arguments dictionaryThe following arguments are supported:
- CompartmentId string
- The OCID of the compartment for this request.
- DisplayName string
- A filter to return only resources that match the given display name exactly. Example: example_service_connector
- Filters
List<GetService Connectors Filter> 
- State string
- A filter to return only resources that match the given lifecycle state. Example: ACTIVE
- CompartmentId string
- The OCID of the compartment for this request.
- DisplayName string
- A filter to return only resources that match the given display name exactly. Example: example_service_connector
- Filters
[]GetService Connectors Filter 
- State string
- A filter to return only resources that match the given lifecycle state. Example: ACTIVE
- compartmentId String
- The OCID of the compartment for this request.
- displayName String
- A filter to return only resources that match the given display name exactly. Example: example_service_connector
- filters
List<GetService Connectors Filter> 
- state String
- A filter to return only resources that match the given lifecycle state. Example: ACTIVE
- compartmentId string
- The OCID of the compartment for this request.
- displayName string
- A filter to return only resources that match the given display name exactly. Example: example_service_connector
- filters
GetService Connectors Filter[] 
- state string
- A filter to return only resources that match the given lifecycle state. Example: ACTIVE
- compartment_id str
- The OCID of the compartment for this request.
- display_name str
- A filter to return only resources that match the given display name exactly. Example: example_service_connector
- filters
Sequence[sch.Get Service Connectors Filter] 
- state str
- A filter to return only resources that match the given lifecycle state. Example: ACTIVE
- compartmentId String
- The OCID of the compartment for this request.
- displayName String
- A filter to return only resources that match the given display name exactly. Example: example_service_connector
- filters List<Property Map>
- state String
- A filter to return only resources that match the given lifecycle state. Example: ACTIVE
getServiceConnectors Result
The following output properties are available:
- CompartmentId string
- The OCID of the compartment containing the metric.
- Id string
- The provider-assigned unique ID for this managed resource.
- ServiceConnector List<GetCollections Service Connectors Service Connector Collection> 
- The list of service_connector_collection.
- DisplayName string
- A user-friendly name. It does not have to be unique, and it is changeable. Avoid entering confidential information.
- Filters
List<GetService Connectors Filter> 
- State string
- The current state of the connector.
- CompartmentId string
- The OCID of the compartment containing the metric.
- Id string
- The provider-assigned unique ID for this managed resource.
- ServiceConnector []GetCollections Service Connectors Service Connector Collection 
- The list of service_connector_collection.
- DisplayName string
- A user-friendly name. It does not have to be unique, and it is changeable. Avoid entering confidential information.
- Filters
[]GetService Connectors Filter 
- State string
- The current state of the connector.
- compartmentId String
- The OCID of the compartment containing the metric.
- id String
- The provider-assigned unique ID for this managed resource.
- serviceConnector List<GetCollections Service Connectors Service Connector Collection> 
- The list of service_connector_collection.
- displayName String
- A user-friendly name. It does not have to be unique, and it is changeable. Avoid entering confidential information.
- filters
List<GetService Connectors Filter> 
- state String
- The current state of the connector.
- compartmentId string
- The OCID of the compartment containing the metric.
- id string
- The provider-assigned unique ID for this managed resource.
- serviceConnector GetCollections Service Connectors Service Connector Collection[] 
- The list of service_connector_collection.
- displayName string
- A user-friendly name. It does not have to be unique, and it is changeable. Avoid entering confidential information.
- filters
GetService Connectors Filter[] 
- state string
- The current state of the connector.
- compartment_id str
- The OCID of the compartment containing the metric.
- id str
- The provider-assigned unique ID for this managed resource.
- service_connector_ Sequence[sch.collections Get Service Connectors Service Connector Collection] 
- The list of service_connector_collection.
- display_name str
- A user-friendly name. It does not have to be unique, and it is changeable. Avoid entering confidential information.
- filters
Sequence[sch.Get Service Connectors Filter] 
- state str
- The current state of the connector.
- compartmentId String
- The OCID of the compartment containing the metric.
- id String
- The provider-assigned unique ID for this managed resource.
- serviceConnector List<Property Map>Collections 
- The list of service_connector_collection.
- displayName String
- A user-friendly name. It does not have to be unique, and it is changeable. Avoid entering confidential information.
- filters List<Property Map>
- state String
- The current state of the connector.
Supporting Types
GetServiceConnectorsFilter   
- Name string
- Dimension key. A valid dimension key includes only printable ASCII, excluding periods (.) and spaces. Custom dimension keys are acceptable. Avoid entering confidential information. Due to use by Connector Hub, the following dimension names are reserved: connectorId,connectorName,connectorSourceType. For information on valid dimension keys and values, see MetricDataDetails Reference. Example:type
- Values List<string>
- Regex bool
- Name string
- Dimension key. A valid dimension key includes only printable ASCII, excluding periods (.) and spaces. Custom dimension keys are acceptable. Avoid entering confidential information. Due to use by Connector Hub, the following dimension names are reserved: connectorId,connectorName,connectorSourceType. For information on valid dimension keys and values, see MetricDataDetails Reference. Example:type
- Values []string
- Regex bool
- name String
- Dimension key. A valid dimension key includes only printable ASCII, excluding periods (.) and spaces. Custom dimension keys are acceptable. Avoid entering confidential information. Due to use by Connector Hub, the following dimension names are reserved: connectorId,connectorName,connectorSourceType. For information on valid dimension keys and values, see MetricDataDetails Reference. Example:type
- values List<String>
- regex Boolean
- name string
- Dimension key. A valid dimension key includes only printable ASCII, excluding periods (.) and spaces. Custom dimension keys are acceptable. Avoid entering confidential information. Due to use by Connector Hub, the following dimension names are reserved: connectorId,connectorName,connectorSourceType. For information on valid dimension keys and values, see MetricDataDetails Reference. Example:type
- values string[]
- regex boolean
- name str
- Dimension key. A valid dimension key includes only printable ASCII, excluding periods (.) and spaces. Custom dimension keys are acceptable. Avoid entering confidential information. Due to use by Connector Hub, the following dimension names are reserved: connectorId,connectorName,connectorSourceType. For information on valid dimension keys and values, see MetricDataDetails Reference. Example:type
- values Sequence[str]
- regex bool
- name String
- Dimension key. A valid dimension key includes only printable ASCII, excluding periods (.) and spaces. Custom dimension keys are acceptable. Avoid entering confidential information. Due to use by Connector Hub, the following dimension names are reserved: connectorId,connectorName,connectorSourceType. For information on valid dimension keys and values, see MetricDataDetails Reference. Example:type
- values List<String>
- regex Boolean
GetServiceConnectorsServiceConnectorCollection     
GetServiceConnectorsServiceConnectorCollectionItem      
- CompartmentId string
- The OCID of the compartment for this request.
- Dictionary<string, string>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- Description string
- The description of the resource. Avoid entering confidential information.
- DisplayName string
- A filter to return only resources that match the given display name exactly. Example: example_service_connector
- Dictionary<string, string>
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- Id string
- The OCID of the connector.
- LifecyleDetails string
- A message describing the current state in more detail. For example, the message might provide actionable information for a resource in a FAILEDstate.
- Sources
List<GetService Connectors Service Connector Collection Item Source> 
- An object that represents the source of the flow defined by the connector. An example source is the VCNFlow logs within the NetworkLogs group. For more information about flows defined by connectors, see Overview of Connector Hub. For configuration instructions, see Creating a Connector.
- State string
- A filter to return only resources that match the given lifecycle state. Example: ACTIVE
- Dictionary<string, string>
- The system tags associated with this resource, if any. The system tags are set by Oracle Cloud Infrastructure services. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example: {orcl-cloud: {free-tier-retain: true}}
- Targets
List<GetService Connectors Service Connector Collection Item Target> 
- An object that represents the target of the flow defined by the connector. An example target is a stream (Streaming service). For more information about flows defined by connectors, see Overview of Connector Hub. For configuration instructions, see Creating a Connector.
- Tasks
List<GetService Connectors Service Connector Collection Item Task> 
- The list of tasks.
- TimeCreated string
- The date and time when the connector was created. Format is defined by RFC3339. Example: 2020-01-25T21:10:29.600Z
- TimeUpdated string
- The date and time when the connector was updated. Format is defined by RFC3339. Example: 2020-01-25T21:10:29.600Z
- CompartmentId string
- The OCID of the compartment for this request.
- map[string]string
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- Description string
- The description of the resource. Avoid entering confidential information.
- DisplayName string
- A filter to return only resources that match the given display name exactly. Example: example_service_connector
- map[string]string
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- Id string
- The OCID of the connector.
- LifecyleDetails string
- A message describing the current state in more detail. For example, the message might provide actionable information for a resource in a FAILEDstate.
- Sources
[]GetService Connectors Service Connector Collection Item Source 
- An object that represents the source of the flow defined by the connector. An example source is the VCNFlow logs within the NetworkLogs group. For more information about flows defined by connectors, see Overview of Connector Hub. For configuration instructions, see Creating a Connector.
- State string
- A filter to return only resources that match the given lifecycle state. Example: ACTIVE
- map[string]string
- The system tags associated with this resource, if any. The system tags are set by Oracle Cloud Infrastructure services. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example: {orcl-cloud: {free-tier-retain: true}}
- Targets
[]GetService Connectors Service Connector Collection Item Target 
- An object that represents the target of the flow defined by the connector. An example target is a stream (Streaming service). For more information about flows defined by connectors, see Overview of Connector Hub. For configuration instructions, see Creating a Connector.
- Tasks
[]GetService Connectors Service Connector Collection Item Task 
- The list of tasks.
- TimeCreated string
- The date and time when the connector was created. Format is defined by RFC3339. Example: 2020-01-25T21:10:29.600Z
- TimeUpdated string
- The date and time when the connector was updated. Format is defined by RFC3339. Example: 2020-01-25T21:10:29.600Z
- compartmentId String
- The OCID of the compartment for this request.
- Map<String,String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- description String
- The description of the resource. Avoid entering confidential information.
- displayName String
- A filter to return only resources that match the given display name exactly. Example: example_service_connector
- Map<String,String>
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- id String
- The OCID of the connector.
- lifecyleDetails String
- A message describing the current state in more detail. For example, the message might provide actionable information for a resource in a FAILEDstate.
- sources
List<GetService Connectors Service Connector Collection Item Source> 
- An object that represents the source of the flow defined by the connector. An example source is the VCNFlow logs within the NetworkLogs group. For more information about flows defined by connectors, see Overview of Connector Hub. For configuration instructions, see Creating a Connector.
- state String
- A filter to return only resources that match the given lifecycle state. Example: ACTIVE
- Map<String,String>
- The system tags associated with this resource, if any. The system tags are set by Oracle Cloud Infrastructure services. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example: {orcl-cloud: {free-tier-retain: true}}
- targets
List<GetService Connectors Service Connector Collection Item Target> 
- An object that represents the target of the flow defined by the connector. An example target is a stream (Streaming service). For more information about flows defined by connectors, see Overview of Connector Hub. For configuration instructions, see Creating a Connector.
- tasks
List<GetService Connectors Service Connector Collection Item Task> 
- The list of tasks.
- timeCreated String
- The date and time when the connector was created. Format is defined by RFC3339. Example: 2020-01-25T21:10:29.600Z
- timeUpdated String
- The date and time when the connector was updated. Format is defined by RFC3339. Example: 2020-01-25T21:10:29.600Z
- compartmentId string
- The OCID of the compartment for this request.
- {[key: string]: string}
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- description string
- The description of the resource. Avoid entering confidential information.
- displayName string
- A filter to return only resources that match the given display name exactly. Example: example_service_connector
- {[key: string]: string}
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- id string
- The OCID of the connector.
- lifecyleDetails string
- A message describing the current state in more detail. For example, the message might provide actionable information for a resource in a FAILEDstate.
- sources
GetService Connectors Service Connector Collection Item Source[] 
- An object that represents the source of the flow defined by the connector. An example source is the VCNFlow logs within the NetworkLogs group. For more information about flows defined by connectors, see Overview of Connector Hub. For configuration instructions, see Creating a Connector.
- state string
- A filter to return only resources that match the given lifecycle state. Example: ACTIVE
- {[key: string]: string}
- The system tags associated with this resource, if any. The system tags are set by Oracle Cloud Infrastructure services. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example: {orcl-cloud: {free-tier-retain: true}}
- targets
GetService Connectors Service Connector Collection Item Target[] 
- An object that represents the target of the flow defined by the connector. An example target is a stream (Streaming service). For more information about flows defined by connectors, see Overview of Connector Hub. For configuration instructions, see Creating a Connector.
- tasks
GetService Connectors Service Connector Collection Item Task[] 
- The list of tasks.
- timeCreated string
- The date and time when the connector was created. Format is defined by RFC3339. Example: 2020-01-25T21:10:29.600Z
- timeUpdated string
- The date and time when the connector was updated. Format is defined by RFC3339. Example: 2020-01-25T21:10:29.600Z
- compartment_id str
- The OCID of the compartment for this request.
- Mapping[str, str]
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- description str
- The description of the resource. Avoid entering confidential information.
- display_name str
- A filter to return only resources that match the given display name exactly. Example: example_service_connector
- Mapping[str, str]
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- id str
- The OCID of the connector.
- lifecyle_details str
- A message describing the current state in more detail. For example, the message might provide actionable information for a resource in a FAILEDstate.
- sources
Sequence[sch.Get Service Connectors Service Connector Collection Item Source] 
- An object that represents the source of the flow defined by the connector. An example source is the VCNFlow logs within the NetworkLogs group. For more information about flows defined by connectors, see Overview of Connector Hub. For configuration instructions, see Creating a Connector.
- state str
- A filter to return only resources that match the given lifecycle state. Example: ACTIVE
- Mapping[str, str]
- The system tags associated with this resource, if any. The system tags are set by Oracle Cloud Infrastructure services. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example: {orcl-cloud: {free-tier-retain: true}}
- targets
Sequence[sch.Get Service Connectors Service Connector Collection Item Target] 
- An object that represents the target of the flow defined by the connector. An example target is a stream (Streaming service). For more information about flows defined by connectors, see Overview of Connector Hub. For configuration instructions, see Creating a Connector.
- tasks
Sequence[sch.Get Service Connectors Service Connector Collection Item Task] 
- The list of tasks.
- time_created str
- The date and time when the connector was created. Format is defined by RFC3339. Example: 2020-01-25T21:10:29.600Z
- time_updated str
- The date and time when the connector was updated. Format is defined by RFC3339. Example: 2020-01-25T21:10:29.600Z
- compartmentId String
- The OCID of the compartment for this request.
- Map<String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- description String
- The description of the resource. Avoid entering confidential information.
- displayName String
- A filter to return only resources that match the given display name exactly. Example: example_service_connector
- Map<String>
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- id String
- The OCID of the connector.
- lifecyleDetails String
- A message describing the current state in more detail. For example, the message might provide actionable information for a resource in a FAILEDstate.
- sources List<Property Map>
- An object that represents the source of the flow defined by the connector. An example source is the VCNFlow logs within the NetworkLogs group. For more information about flows defined by connectors, see Overview of Connector Hub. For configuration instructions, see Creating a Connector.
- state String
- A filter to return only resources that match the given lifecycle state. Example: ACTIVE
- Map<String>
- The system tags associated with this resource, if any. The system tags are set by Oracle Cloud Infrastructure services. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example: {orcl-cloud: {free-tier-retain: true}}
- targets List<Property Map>
- An object that represents the target of the flow defined by the connector. An example target is a stream (Streaming service). For more information about flows defined by connectors, see Overview of Connector Hub. For configuration instructions, see Creating a Connector.
- tasks List<Property Map>
- The list of tasks.
- timeCreated String
- The date and time when the connector was created. Format is defined by RFC3339. Example: 2020-01-25T21:10:29.600Z
- timeUpdated String
- The date and time when the connector was updated. Format is defined by RFC3339. Example: 2020-01-25T21:10:29.600Z
GetServiceConnectorsServiceConnectorCollectionItemSource       
- ConfigMap string
- The configuration map for the connector plugin. This map includes parameters specific to the connector plugin type. For example, for QueueSource, the map lists the OCID of the selected queue. To find the parameters for a connector plugin, get the plugin using (GetConnectorPlugin)[#/en/serviceconnectors/latest/ConnectorPlugin/GetConnectorPlugin] and review its schema value.
- Cursors
List<GetService Connectors Service Connector Collection Item Source Cursor> 
- The read setting, which determines where in the stream to start moving data. For configuration instructions, see Creating a Connector with a Streaming Source.
- Kind string
- The type discriminator.
- LogSources List<GetService Connectors Service Connector Collection Item Source Log Source> 
- The logs for this Logging source.
- MonitoringSources List<GetService Connectors Service Connector Collection Item Source Monitoring Source> 
- One or more compartment-specific lists of metric namespaces to retrieve data from.
- PluginName string
- The name of the connector plugin. This name indicates the service to be called by the connector plugin. For example, QueueSourceindicates the Queue service. To find names of connector plugins, list the plugin using (ListConnectorPlugin)[#/en/serviceconnectors/latest/ConnectorPluginSummary/ListConnectorPlugins].
- StreamId string
- The OCID of the stream.
- ConfigMap string
- The configuration map for the connector plugin. This map includes parameters specific to the connector plugin type. For example, for QueueSource, the map lists the OCID of the selected queue. To find the parameters for a connector plugin, get the plugin using (GetConnectorPlugin)[#/en/serviceconnectors/latest/ConnectorPlugin/GetConnectorPlugin] and review its schema value.
- Cursors
[]GetService Connectors Service Connector Collection Item Source Cursor 
- The read setting, which determines where in the stream to start moving data. For configuration instructions, see Creating a Connector with a Streaming Source.
- Kind string
- The type discriminator.
- LogSources []GetService Connectors Service Connector Collection Item Source Log Source 
- The logs for this Logging source.
- MonitoringSources []GetService Connectors Service Connector Collection Item Source Monitoring Source 
- One or more compartment-specific lists of metric namespaces to retrieve data from.
- PluginName string
- The name of the connector plugin. This name indicates the service to be called by the connector plugin. For example, QueueSourceindicates the Queue service. To find names of connector plugins, list the plugin using (ListConnectorPlugin)[#/en/serviceconnectors/latest/ConnectorPluginSummary/ListConnectorPlugins].
- StreamId string
- The OCID of the stream.
- configMap String
- The configuration map for the connector plugin. This map includes parameters specific to the connector plugin type. For example, for QueueSource, the map lists the OCID of the selected queue. To find the parameters for a connector plugin, get the plugin using (GetConnectorPlugin)[#/en/serviceconnectors/latest/ConnectorPlugin/GetConnectorPlugin] and review its schema value.
- cursors
List<GetService Connectors Service Connector Collection Item Source Cursor> 
- The read setting, which determines where in the stream to start moving data. For configuration instructions, see Creating a Connector with a Streaming Source.
- kind String
- The type discriminator.
- logSources List<GetService Connectors Service Connector Collection Item Source Log Source> 
- The logs for this Logging source.
- monitoringSources List<GetService Connectors Service Connector Collection Item Source Monitoring Source> 
- One or more compartment-specific lists of metric namespaces to retrieve data from.
- pluginName String
- The name of the connector plugin. This name indicates the service to be called by the connector plugin. For example, QueueSourceindicates the Queue service. To find names of connector plugins, list the plugin using (ListConnectorPlugin)[#/en/serviceconnectors/latest/ConnectorPluginSummary/ListConnectorPlugins].
- streamId String
- The OCID of the stream.
- configMap string
- The configuration map for the connector plugin. This map includes parameters specific to the connector plugin type. For example, for QueueSource, the map lists the OCID of the selected queue. To find the parameters for a connector plugin, get the plugin using (GetConnectorPlugin)[#/en/serviceconnectors/latest/ConnectorPlugin/GetConnectorPlugin] and review its schema value.
- cursors
GetService Connectors Service Connector Collection Item Source Cursor[] 
- The read setting, which determines where in the stream to start moving data. For configuration instructions, see Creating a Connector with a Streaming Source.
- kind string
- The type discriminator.
- logSources GetService Connectors Service Connector Collection Item Source Log Source[] 
- The logs for this Logging source.
- monitoringSources GetService Connectors Service Connector Collection Item Source Monitoring Source[] 
- One or more compartment-specific lists of metric namespaces to retrieve data from.
- pluginName string
- The name of the connector plugin. This name indicates the service to be called by the connector plugin. For example, QueueSourceindicates the Queue service. To find names of connector plugins, list the plugin using (ListConnectorPlugin)[#/en/serviceconnectors/latest/ConnectorPluginSummary/ListConnectorPlugins].
- streamId string
- The OCID of the stream.
- config_map str
- The configuration map for the connector plugin. This map includes parameters specific to the connector plugin type. For example, for QueueSource, the map lists the OCID of the selected queue. To find the parameters for a connector plugin, get the plugin using (GetConnectorPlugin)[#/en/serviceconnectors/latest/ConnectorPlugin/GetConnectorPlugin] and review its schema value.
- cursors
Sequence[sch.Get Service Connectors Service Connector Collection Item Source Cursor] 
- The read setting, which determines where in the stream to start moving data. For configuration instructions, see Creating a Connector with a Streaming Source.
- kind str
- The type discriminator.
- log_sources Sequence[sch.Get Service Connectors Service Connector Collection Item Source Log Source] 
- The logs for this Logging source.
- monitoring_sources Sequence[sch.Get Service Connectors Service Connector Collection Item Source Monitoring Source] 
- One or more compartment-specific lists of metric namespaces to retrieve data from.
- plugin_name str
- The name of the connector plugin. This name indicates the service to be called by the connector plugin. For example, QueueSourceindicates the Queue service. To find names of connector plugins, list the plugin using (ListConnectorPlugin)[#/en/serviceconnectors/latest/ConnectorPluginSummary/ListConnectorPlugins].
- stream_id str
- The OCID of the stream.
- configMap String
- The configuration map for the connector plugin. This map includes parameters specific to the connector plugin type. For example, for QueueSource, the map lists the OCID of the selected queue. To find the parameters for a connector plugin, get the plugin using (GetConnectorPlugin)[#/en/serviceconnectors/latest/ConnectorPlugin/GetConnectorPlugin] and review its schema value.
- cursors List<Property Map>
- The read setting, which determines where in the stream to start moving data. For configuration instructions, see Creating a Connector with a Streaming Source.
- kind String
- The type discriminator.
- logSources List<Property Map>
- The logs for this Logging source.
- monitoringSources List<Property Map>
- One or more compartment-specific lists of metric namespaces to retrieve data from.
- pluginName String
- The name of the connector plugin. This name indicates the service to be called by the connector plugin. For example, QueueSourceindicates the Queue service. To find names of connector plugins, list the plugin using (ListConnectorPlugin)[#/en/serviceconnectors/latest/ConnectorPluginSummary/ListConnectorPlugins].
- streamId String
- The OCID of the stream.
GetServiceConnectorsServiceConnectorCollectionItemSourceCursor        
- Kind string
- The type discriminator.
- Kind string
- The type discriminator.
- kind String
- The type discriminator.
- kind string
- The type discriminator.
- kind str
- The type discriminator.
- kind String
- The type discriminator.
GetServiceConnectorsServiceConnectorCollectionItemSourceLogSource         
- CompartmentId string
- The OCID of the compartment for this request.
- LogGroup stringId 
- The OCID of the Logging Analytics log group.
- LogId string
- The OCID of the log.
- CompartmentId string
- The OCID of the compartment for this request.
- LogGroup stringId 
- The OCID of the Logging Analytics log group.
- LogId string
- The OCID of the log.
- compartmentId String
- The OCID of the compartment for this request.
- logGroup StringId 
- The OCID of the Logging Analytics log group.
- logId String
- The OCID of the log.
- compartmentId string
- The OCID of the compartment for this request.
- logGroup stringId 
- The OCID of the Logging Analytics log group.
- logId string
- The OCID of the log.
- compartment_id str
- The OCID of the compartment for this request.
- log_group_ strid 
- The OCID of the Logging Analytics log group.
- log_id str
- The OCID of the log.
- compartmentId String
- The OCID of the compartment for this request.
- logGroup StringId 
- The OCID of the Logging Analytics log group.
- logId String
- The OCID of the log.
GetServiceConnectorsServiceConnectorCollectionItemSourceMonitoringSource         
- CompartmentId string
- The OCID of the compartment for this request.
- NamespaceDetails List<GetService Connectors Service Connector Collection Item Source Monitoring Source Namespace Detail> 
- Discriminator for namespaces in the compartment-specific list.
- CompartmentId string
- The OCID of the compartment for this request.
- NamespaceDetails []GetService Connectors Service Connector Collection Item Source Monitoring Source Namespace Detail 
- Discriminator for namespaces in the compartment-specific list.
- compartmentId String
- The OCID of the compartment for this request.
- namespaceDetails List<GetService Connectors Service Connector Collection Item Source Monitoring Source Namespace Detail> 
- Discriminator for namespaces in the compartment-specific list.
- compartmentId string
- The OCID of the compartment for this request.
- namespaceDetails GetService Connectors Service Connector Collection Item Source Monitoring Source Namespace Detail[] 
- Discriminator for namespaces in the compartment-specific list.
- compartment_id str
- The OCID of the compartment for this request.
- namespace_details Sequence[sch.Get Service Connectors Service Connector Collection Item Source Monitoring Source Namespace Detail] 
- Discriminator for namespaces in the compartment-specific list.
- compartmentId String
- The OCID of the compartment for this request.
- namespaceDetails List<Property Map>
- Discriminator for namespaces in the compartment-specific list.
GetServiceConnectorsServiceConnectorCollectionItemSourceMonitoringSourceNamespaceDetail           
- Kind string
- The type discriminator.
- Namespaces
List<GetService Connectors Service Connector Collection Item Source Monitoring Source Namespace Detail Namespace> 
- The namespaces for the compartment-specific list.
- Kind string
- The type discriminator.
- Namespaces
[]GetService Connectors Service Connector Collection Item Source Monitoring Source Namespace Detail Namespace 
- The namespaces for the compartment-specific list.
- kind String
- The type discriminator.
- namespaces
List<GetService Connectors Service Connector Collection Item Source Monitoring Source Namespace Detail Namespace> 
- The namespaces for the compartment-specific list.
- kind string
- The type discriminator.
- namespaces
GetService Connectors Service Connector Collection Item Source Monitoring Source Namespace Detail Namespace[] 
- The namespaces for the compartment-specific list.
- kind str
- The type discriminator.
- namespaces
Sequence[sch.Get Service Connectors Service Connector Collection Item Source Monitoring Source Namespace Detail Namespace] 
- The namespaces for the compartment-specific list.
- kind String
- The type discriminator.
- namespaces List<Property Map>
- The namespaces for the compartment-specific list.
GetServiceConnectorsServiceConnectorCollectionItemSourceMonitoringSourceNamespaceDetailNamespace            
- Metrics
List<GetService Connectors Service Connector Collection Item Source Monitoring Source Namespace Detail Namespace Metric> 
- The metrics to query for the specified metric namespace.
- Namespace string
- The namespace.
- Metrics
[]GetService Connectors Service Connector Collection Item Source Monitoring Source Namespace Detail Namespace Metric 
- The metrics to query for the specified metric namespace.
- Namespace string
- The namespace.
- metrics
List<GetService Connectors Service Connector Collection Item Source Monitoring Source Namespace Detail Namespace Metric> 
- The metrics to query for the specified metric namespace.
- namespace String
- The namespace.
- metrics
GetService Connectors Service Connector Collection Item Source Monitoring Source Namespace Detail Namespace Metric[] 
- The metrics to query for the specified metric namespace.
- namespace string
- The namespace.
- metrics
Sequence[sch.Get Service Connectors Service Connector Collection Item Source Monitoring Source Namespace Detail Namespace Metric] 
- The metrics to query for the specified metric namespace.
- namespace str
- The namespace.
- metrics List<Property Map>
- The metrics to query for the specified metric namespace.
- namespace String
- The namespace.
GetServiceConnectorsServiceConnectorCollectionItemSourceMonitoringSourceNamespaceDetailNamespaceMetric             
- Kind string
- The type discriminator.
- Kind string
- The type discriminator.
- kind String
- The type discriminator.
- kind string
- The type discriminator.
- kind str
- The type discriminator.
- kind String
- The type discriminator.
GetServiceConnectorsServiceConnectorCollectionItemTarget       
- BatchRollover intSize In Mbs 
- The batch rollover size in megabytes.
- BatchRollover intTime In Ms 
- The batch rollover time in milliseconds.
- BatchSize intIn Kbs 
- Size limit (kilobytes) for batch sent to invoke the function.
- BatchSize intIn Num 
- The batch rollover size in number of messages.
- BatchTime intIn Sec 
- Time limit (seconds) for batch sent to invoke the function.
- Bucket string
- The name of the bucket. Valid characters are letters (upper or lower case), numbers, hyphens (-), underscores(_), and periods (.). Bucket names must be unique within an Object Storage namespace. Avoid entering confidential information. Example: my-new-bucket1
- CompartmentId string
- The OCID of the compartment for this request.
- Dimensions
List<GetService Connectors Service Connector Collection Item Target Dimension> 
- List of dimension names and values.
- EnableFormatted boolMessaging 
- Whether to apply a simplified, user-friendly format to the message. Applies only when friendly formatting is supported by the connector source and the subscription protocol. Example: true
- FunctionId string
- The OCID of the function to be used as a task.
- Kind string
- The type discriminator.
- LogGroup stringId 
- The OCID of the Logging Analytics log group.
- LogSource stringIdentifier 
- Identifier of the log source that you want to use for processing data received from the connector source. Applies to StreamingSourceonly. Equivalent tonameat LogAnalyticsSource.
- Metric string
- The name of the metric. Example: CpuUtilization
- MetricNamespace string
- The namespace of the metric. Example: oci_computeagent
- Namespace string
- The namespace.
- ObjectName stringPrefix 
- The prefix of the objects. Avoid entering confidential information.
- StreamId string
- The OCID of the stream.
- TopicId string
- The OCID of the topic.
- BatchRollover intSize In Mbs 
- The batch rollover size in megabytes.
- BatchRollover intTime In Ms 
- The batch rollover time in milliseconds.
- BatchSize intIn Kbs 
- Size limit (kilobytes) for batch sent to invoke the function.
- BatchSize intIn Num 
- The batch rollover size in number of messages.
- BatchTime intIn Sec 
- Time limit (seconds) for batch sent to invoke the function.
- Bucket string
- The name of the bucket. Valid characters are letters (upper or lower case), numbers, hyphens (-), underscores(_), and periods (.). Bucket names must be unique within an Object Storage namespace. Avoid entering confidential information. Example: my-new-bucket1
- CompartmentId string
- The OCID of the compartment for this request.
- Dimensions
[]GetService Connectors Service Connector Collection Item Target Dimension 
- List of dimension names and values.
- EnableFormatted boolMessaging 
- Whether to apply a simplified, user-friendly format to the message. Applies only when friendly formatting is supported by the connector source and the subscription protocol. Example: true
- FunctionId string
- The OCID of the function to be used as a task.
- Kind string
- The type discriminator.
- LogGroup stringId 
- The OCID of the Logging Analytics log group.
- LogSource stringIdentifier 
- Identifier of the log source that you want to use for processing data received from the connector source. Applies to StreamingSourceonly. Equivalent tonameat LogAnalyticsSource.
- Metric string
- The name of the metric. Example: CpuUtilization
- MetricNamespace string
- The namespace of the metric. Example: oci_computeagent
- Namespace string
- The namespace.
- ObjectName stringPrefix 
- The prefix of the objects. Avoid entering confidential information.
- StreamId string
- The OCID of the stream.
- TopicId string
- The OCID of the topic.
- batchRollover IntegerSize In Mbs 
- The batch rollover size in megabytes.
- batchRollover IntegerTime In Ms 
- The batch rollover time in milliseconds.
- batchSize IntegerIn Kbs 
- Size limit (kilobytes) for batch sent to invoke the function.
- batchSize IntegerIn Num 
- The batch rollover size in number of messages.
- batchTime IntegerIn Sec 
- Time limit (seconds) for batch sent to invoke the function.
- bucket String
- The name of the bucket. Valid characters are letters (upper or lower case), numbers, hyphens (-), underscores(_), and periods (.). Bucket names must be unique within an Object Storage namespace. Avoid entering confidential information. Example: my-new-bucket1
- compartmentId String
- The OCID of the compartment for this request.
- dimensions
List<GetService Connectors Service Connector Collection Item Target Dimension> 
- List of dimension names and values.
- enableFormatted BooleanMessaging 
- Whether to apply a simplified, user-friendly format to the message. Applies only when friendly formatting is supported by the connector source and the subscription protocol. Example: true
- functionId String
- The OCID of the function to be used as a task.
- kind String
- The type discriminator.
- logGroup StringId 
- The OCID of the Logging Analytics log group.
- logSource StringIdentifier 
- Identifier of the log source that you want to use for processing data received from the connector source. Applies to StreamingSourceonly. Equivalent tonameat LogAnalyticsSource.
- metric String
- The name of the metric. Example: CpuUtilization
- metricNamespace String
- The namespace of the metric. Example: oci_computeagent
- namespace String
- The namespace.
- objectName StringPrefix 
- The prefix of the objects. Avoid entering confidential information.
- streamId String
- The OCID of the stream.
- topicId String
- The OCID of the topic.
- batchRollover numberSize In Mbs 
- The batch rollover size in megabytes.
- batchRollover numberTime In Ms 
- The batch rollover time in milliseconds.
- batchSize numberIn Kbs 
- Size limit (kilobytes) for batch sent to invoke the function.
- batchSize numberIn Num 
- The batch rollover size in number of messages.
- batchTime numberIn Sec 
- Time limit (seconds) for batch sent to invoke the function.
- bucket string
- The name of the bucket. Valid characters are letters (upper or lower case), numbers, hyphens (-), underscores(_), and periods (.). Bucket names must be unique within an Object Storage namespace. Avoid entering confidential information. Example: my-new-bucket1
- compartmentId string
- The OCID of the compartment for this request.
- dimensions
GetService Connectors Service Connector Collection Item Target Dimension[] 
- List of dimension names and values.
- enableFormatted booleanMessaging 
- Whether to apply a simplified, user-friendly format to the message. Applies only when friendly formatting is supported by the connector source and the subscription protocol. Example: true
- functionId string
- The OCID of the function to be used as a task.
- kind string
- The type discriminator.
- logGroup stringId 
- The OCID of the Logging Analytics log group.
- logSource stringIdentifier 
- Identifier of the log source that you want to use for processing data received from the connector source. Applies to StreamingSourceonly. Equivalent tonameat LogAnalyticsSource.
- metric string
- The name of the metric. Example: CpuUtilization
- metricNamespace string
- The namespace of the metric. Example: oci_computeagent
- namespace string
- The namespace.
- objectName stringPrefix 
- The prefix of the objects. Avoid entering confidential information.
- streamId string
- The OCID of the stream.
- topicId string
- The OCID of the topic.
- batch_rollover_ intsize_ in_ mbs 
- The batch rollover size in megabytes.
- batch_rollover_ inttime_ in_ ms 
- The batch rollover time in milliseconds.
- batch_size_ intin_ kbs 
- Size limit (kilobytes) for batch sent to invoke the function.
- batch_size_ intin_ num 
- The batch rollover size in number of messages.
- batch_time_ intin_ sec 
- Time limit (seconds) for batch sent to invoke the function.
- bucket str
- The name of the bucket. Valid characters are letters (upper or lower case), numbers, hyphens (-), underscores(_), and periods (.). Bucket names must be unique within an Object Storage namespace. Avoid entering confidential information. Example: my-new-bucket1
- compartment_id str
- The OCID of the compartment for this request.
- dimensions
Sequence[sch.Get Service Connectors Service Connector Collection Item Target Dimension] 
- List of dimension names and values.
- enable_formatted_ boolmessaging 
- Whether to apply a simplified, user-friendly format to the message. Applies only when friendly formatting is supported by the connector source and the subscription protocol. Example: true
- function_id str
- The OCID of the function to be used as a task.
- kind str
- The type discriminator.
- log_group_ strid 
- The OCID of the Logging Analytics log group.
- log_source_ stridentifier 
- Identifier of the log source that you want to use for processing data received from the connector source. Applies to StreamingSourceonly. Equivalent tonameat LogAnalyticsSource.
- metric str
- The name of the metric. Example: CpuUtilization
- metric_namespace str
- The namespace of the metric. Example: oci_computeagent
- namespace str
- The namespace.
- object_name_ strprefix 
- The prefix of the objects. Avoid entering confidential information.
- stream_id str
- The OCID of the stream.
- topic_id str
- The OCID of the topic.
- batchRollover NumberSize In Mbs 
- The batch rollover size in megabytes.
- batchRollover NumberTime In Ms 
- The batch rollover time in milliseconds.
- batchSize NumberIn Kbs 
- Size limit (kilobytes) for batch sent to invoke the function.
- batchSize NumberIn Num 
- The batch rollover size in number of messages.
- batchTime NumberIn Sec 
- Time limit (seconds) for batch sent to invoke the function.
- bucket String
- The name of the bucket. Valid characters are letters (upper or lower case), numbers, hyphens (-), underscores(_), and periods (.). Bucket names must be unique within an Object Storage namespace. Avoid entering confidential information. Example: my-new-bucket1
- compartmentId String
- The OCID of the compartment for this request.
- dimensions List<Property Map>
- List of dimension names and values.
- enableFormatted BooleanMessaging 
- Whether to apply a simplified, user-friendly format to the message. Applies only when friendly formatting is supported by the connector source and the subscription protocol. Example: true
- functionId String
- The OCID of the function to be used as a task.
- kind String
- The type discriminator.
- logGroup StringId 
- The OCID of the Logging Analytics log group.
- logSource StringIdentifier 
- Identifier of the log source that you want to use for processing data received from the connector source. Applies to StreamingSourceonly. Equivalent tonameat LogAnalyticsSource.
- metric String
- The name of the metric. Example: CpuUtilization
- metricNamespace String
- The namespace of the metric. Example: oci_computeagent
- namespace String
- The namespace.
- objectName StringPrefix 
- The prefix of the objects. Avoid entering confidential information.
- streamId String
- The OCID of the stream.
- topicId String
- The OCID of the topic.
GetServiceConnectorsServiceConnectorCollectionItemTargetDimension        
- DimensionValues List<GetService Connectors Service Connector Collection Item Target Dimension Dimension Value> 
- Instructions for extracting the value corresponding to the specified dimension key: Either extract the value as-is (static) or derive the value from a path (evaluated).
- Name string
- Dimension key. A valid dimension key includes only printable ASCII, excluding periods (.) and spaces. Custom dimension keys are acceptable. Avoid entering confidential information. Due to use by Connector Hub, the following dimension names are reserved: connectorId,connectorName,connectorSourceType. For information on valid dimension keys and values, see MetricDataDetails Reference. Example:type
- DimensionValues []GetService Connectors Service Connector Collection Item Target Dimension Dimension Value 
- Instructions for extracting the value corresponding to the specified dimension key: Either extract the value as-is (static) or derive the value from a path (evaluated).
- Name string
- Dimension key. A valid dimension key includes only printable ASCII, excluding periods (.) and spaces. Custom dimension keys are acceptable. Avoid entering confidential information. Due to use by Connector Hub, the following dimension names are reserved: connectorId,connectorName,connectorSourceType. For information on valid dimension keys and values, see MetricDataDetails Reference. Example:type
- dimensionValues List<GetService Connectors Service Connector Collection Item Target Dimension Dimension Value> 
- Instructions for extracting the value corresponding to the specified dimension key: Either extract the value as-is (static) or derive the value from a path (evaluated).
- name String
- Dimension key. A valid dimension key includes only printable ASCII, excluding periods (.) and spaces. Custom dimension keys are acceptable. Avoid entering confidential information. Due to use by Connector Hub, the following dimension names are reserved: connectorId,connectorName,connectorSourceType. For information on valid dimension keys and values, see MetricDataDetails Reference. Example:type
- dimensionValues GetService Connectors Service Connector Collection Item Target Dimension Dimension Value[] 
- Instructions for extracting the value corresponding to the specified dimension key: Either extract the value as-is (static) or derive the value from a path (evaluated).
- name string
- Dimension key. A valid dimension key includes only printable ASCII, excluding periods (.) and spaces. Custom dimension keys are acceptable. Avoid entering confidential information. Due to use by Connector Hub, the following dimension names are reserved: connectorId,connectorName,connectorSourceType. For information on valid dimension keys and values, see MetricDataDetails Reference. Example:type
- dimension_values Sequence[sch.Get Service Connectors Service Connector Collection Item Target Dimension Dimension Value] 
- Instructions for extracting the value corresponding to the specified dimension key: Either extract the value as-is (static) or derive the value from a path (evaluated).
- name str
- Dimension key. A valid dimension key includes only printable ASCII, excluding periods (.) and spaces. Custom dimension keys are acceptable. Avoid entering confidential information. Due to use by Connector Hub, the following dimension names are reserved: connectorId,connectorName,connectorSourceType. For information on valid dimension keys and values, see MetricDataDetails Reference. Example:type
- dimensionValues List<Property Map>
- Instructions for extracting the value corresponding to the specified dimension key: Either extract the value as-is (static) or derive the value from a path (evaluated).
- name String
- Dimension key. A valid dimension key includes only printable ASCII, excluding periods (.) and spaces. Custom dimension keys are acceptable. Avoid entering confidential information. Due to use by Connector Hub, the following dimension names are reserved: connectorId,connectorName,connectorSourceType. For information on valid dimension keys and values, see MetricDataDetails Reference. Example:type
GetServiceConnectorsServiceConnectorCollectionItemTargetDimensionDimensionValue          
- Kind string
- The type discriminator.
- Path string
- The location to use for deriving the dimension value (evaluated). The path must start with logContentin an acceptable notation style with supported JMESPath selectors: expression with dot and index operator (.and[]). Example with dot notation:logContent.dataExample with index notation:logContent.data[0].contentFor information on valid dimension keys and values, see MetricDataDetails Reference. The returned value depends on the results of evaluation. If the evaluated value is valid, then the evaluated value is returned without double quotes. (Any front or trailing double quotes are trimmed before returning the value. For example, the evaluated value"compartmentId"is returned ascompartmentId.) If the evaluated value is invalid, then the returned value isSCH_EVAL_INVALID_VALUE. If the evaluated value is empty, then the returned value isSCH_EVAL_VALUE_EMPTY.
- Value string
- The data extracted from the specified dimension value (passed as-is). Unicode characters only. For information on valid dimension keys and values, see MetricDataDetails Reference.
- Kind string
- The type discriminator.
- Path string
- The location to use for deriving the dimension value (evaluated). The path must start with logContentin an acceptable notation style with supported JMESPath selectors: expression with dot and index operator (.and[]). Example with dot notation:logContent.dataExample with index notation:logContent.data[0].contentFor information on valid dimension keys and values, see MetricDataDetails Reference. The returned value depends on the results of evaluation. If the evaluated value is valid, then the evaluated value is returned without double quotes. (Any front or trailing double quotes are trimmed before returning the value. For example, the evaluated value"compartmentId"is returned ascompartmentId.) If the evaluated value is invalid, then the returned value isSCH_EVAL_INVALID_VALUE. If the evaluated value is empty, then the returned value isSCH_EVAL_VALUE_EMPTY.
- Value string
- The data extracted from the specified dimension value (passed as-is). Unicode characters only. For information on valid dimension keys and values, see MetricDataDetails Reference.
- kind String
- The type discriminator.
- path String
- The location to use for deriving the dimension value (evaluated). The path must start with logContentin an acceptable notation style with supported JMESPath selectors: expression with dot and index operator (.and[]). Example with dot notation:logContent.dataExample with index notation:logContent.data[0].contentFor information on valid dimension keys and values, see MetricDataDetails Reference. The returned value depends on the results of evaluation. If the evaluated value is valid, then the evaluated value is returned without double quotes. (Any front or trailing double quotes are trimmed before returning the value. For example, the evaluated value"compartmentId"is returned ascompartmentId.) If the evaluated value is invalid, then the returned value isSCH_EVAL_INVALID_VALUE. If the evaluated value is empty, then the returned value isSCH_EVAL_VALUE_EMPTY.
- value String
- The data extracted from the specified dimension value (passed as-is). Unicode characters only. For information on valid dimension keys and values, see MetricDataDetails Reference.
- kind string
- The type discriminator.
- path string
- The location to use for deriving the dimension value (evaluated). The path must start with logContentin an acceptable notation style with supported JMESPath selectors: expression with dot and index operator (.and[]). Example with dot notation:logContent.dataExample with index notation:logContent.data[0].contentFor information on valid dimension keys and values, see MetricDataDetails Reference. The returned value depends on the results of evaluation. If the evaluated value is valid, then the evaluated value is returned without double quotes. (Any front or trailing double quotes are trimmed before returning the value. For example, the evaluated value"compartmentId"is returned ascompartmentId.) If the evaluated value is invalid, then the returned value isSCH_EVAL_INVALID_VALUE. If the evaluated value is empty, then the returned value isSCH_EVAL_VALUE_EMPTY.
- value string
- The data extracted from the specified dimension value (passed as-is). Unicode characters only. For information on valid dimension keys and values, see MetricDataDetails Reference.
- kind str
- The type discriminator.
- path str
- The location to use for deriving the dimension value (evaluated). The path must start with logContentin an acceptable notation style with supported JMESPath selectors: expression with dot and index operator (.and[]). Example with dot notation:logContent.dataExample with index notation:logContent.data[0].contentFor information on valid dimension keys and values, see MetricDataDetails Reference. The returned value depends on the results of evaluation. If the evaluated value is valid, then the evaluated value is returned without double quotes. (Any front or trailing double quotes are trimmed before returning the value. For example, the evaluated value"compartmentId"is returned ascompartmentId.) If the evaluated value is invalid, then the returned value isSCH_EVAL_INVALID_VALUE. If the evaluated value is empty, then the returned value isSCH_EVAL_VALUE_EMPTY.
- value str
- The data extracted from the specified dimension value (passed as-is). Unicode characters only. For information on valid dimension keys and values, see MetricDataDetails Reference.
- kind String
- The type discriminator.
- path String
- The location to use for deriving the dimension value (evaluated). The path must start with logContentin an acceptable notation style with supported JMESPath selectors: expression with dot and index operator (.and[]). Example with dot notation:logContent.dataExample with index notation:logContent.data[0].contentFor information on valid dimension keys and values, see MetricDataDetails Reference. The returned value depends on the results of evaluation. If the evaluated value is valid, then the evaluated value is returned without double quotes. (Any front or trailing double quotes are trimmed before returning the value. For example, the evaluated value"compartmentId"is returned ascompartmentId.) If the evaluated value is invalid, then the returned value isSCH_EVAL_INVALID_VALUE. If the evaluated value is empty, then the returned value isSCH_EVAL_VALUE_EMPTY.
- value String
- The data extracted from the specified dimension value (passed as-is). Unicode characters only. For information on valid dimension keys and values, see MetricDataDetails Reference.
GetServiceConnectorsServiceConnectorCollectionItemTask       
- BatchSize intIn Kbs 
- Size limit (kilobytes) for batch sent to invoke the function.
- BatchTime intIn Sec 
- Time limit (seconds) for batch sent to invoke the function.
- Condition string
- A filter or mask to limit the source used in the flow defined by the connector.
- FunctionId string
- The OCID of the function to be used as a task.
- Kind string
- The type discriminator.
- BatchSize intIn Kbs 
- Size limit (kilobytes) for batch sent to invoke the function.
- BatchTime intIn Sec 
- Time limit (seconds) for batch sent to invoke the function.
- Condition string
- A filter or mask to limit the source used in the flow defined by the connector.
- FunctionId string
- The OCID of the function to be used as a task.
- Kind string
- The type discriminator.
- batchSize IntegerIn Kbs 
- Size limit (kilobytes) for batch sent to invoke the function.
- batchTime IntegerIn Sec 
- Time limit (seconds) for batch sent to invoke the function.
- condition String
- A filter or mask to limit the source used in the flow defined by the connector.
- functionId String
- The OCID of the function to be used as a task.
- kind String
- The type discriminator.
- batchSize numberIn Kbs 
- Size limit (kilobytes) for batch sent to invoke the function.
- batchTime numberIn Sec 
- Time limit (seconds) for batch sent to invoke the function.
- condition string
- A filter or mask to limit the source used in the flow defined by the connector.
- functionId string
- The OCID of the function to be used as a task.
- kind string
- The type discriminator.
- batch_size_ intin_ kbs 
- Size limit (kilobytes) for batch sent to invoke the function.
- batch_time_ intin_ sec 
- Time limit (seconds) for batch sent to invoke the function.
- condition str
- A filter or mask to limit the source used in the flow defined by the connector.
- function_id str
- The OCID of the function to be used as a task.
- kind str
- The type discriminator.
- batchSize NumberIn Kbs 
- Size limit (kilobytes) for batch sent to invoke the function.
- batchTime NumberIn Sec 
- Time limit (seconds) for batch sent to invoke the function.
- condition String
- A filter or mask to limit the source used in the flow defined by the connector.
- functionId String
- The OCID of the function to be used as a task.
- kind String
- The type discriminator.
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the ociTerraform Provider.