oci logo
Oracle Cloud Infrastructure v0.20.0, May 31 23

oci.AiAnomalyDetection.getDetectionDataAssets

Explore with Pulumi AI

This data source provides the list of Data Assets in Oracle Cloud Infrastructure Ai Anomaly Detection service.

Returns a list of DataAssets.

Example Usage

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;

return await Deployment.RunAsync(() => 
{
    var testDataAssets = Oci.AiAnomalyDetection.GetDetectionDataAssets.Invoke(new()
    {
        CompartmentId = @var.Compartment_id,
        DisplayName = @var.Data_asset_display_name,
        ProjectId = oci_ai_anomaly_detection_project.Test_project.Id,
        State = @var.Data_asset_state,
    });

});
package main

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

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := AiAnomalyDetection.GetDetectionDataAssets(ctx, &aianomalydetection.GetDetectionDataAssetsArgs{
			CompartmentId: _var.Compartment_id,
			DisplayName:   pulumi.StringRef(_var.Data_asset_display_name),
			ProjectId:     pulumi.StringRef(oci_ai_anomaly_detection_project.Test_project.Id),
			State:         pulumi.StringRef(_var.Data_asset_state),
		}, nil)
		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.AiAnomalyDetection.AiAnomalyDetectionFunctions;
import com.pulumi.oci.AiAnomalyDetection.inputs.GetDetectionDataAssetsArgs;
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 testDataAssets = AiAnomalyDetectionFunctions.getDetectionDataAssets(GetDetectionDataAssetsArgs.builder()
            .compartmentId(var_.compartment_id())
            .displayName(var_.data_asset_display_name())
            .projectId(oci_ai_anomaly_detection_project.test_project().id())
            .state(var_.data_asset_state())
            .build());

    }
}
import pulumi
import pulumi_oci as oci

test_data_assets = oci.AiAnomalyDetection.get_detection_data_assets(compartment_id=%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference),
    display_name=%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference),
    project_id=%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference),
    state=%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";

const testDataAssets = oci.AiAnomalyDetection.getDetectionDataAssets({
    compartmentId: _var.compartment_id,
    displayName: _var.data_asset_display_name,
    projectId: oci_ai_anomaly_detection_project.test_project.id,
    state: _var.data_asset_state,
});
variables:
  testDataAssets:
    fn::invoke:
      Function: oci:AiAnomalyDetection:getDetectionDataAssets
      Arguments:
        compartmentId: ${var.compartment_id}
        displayName: ${var.data_asset_display_name}
        projectId: ${oci_ai_anomaly_detection_project.test_project.id}
        state: ${var.data_asset_state}

Using getDetectionDataAssets

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 getDetectionDataAssets(args: GetDetectionDataAssetsArgs, opts?: InvokeOptions): Promise<GetDetectionDataAssetsResult>
function getDetectionDataAssetsOutput(args: GetDetectionDataAssetsOutputArgs, opts?: InvokeOptions): Output<GetDetectionDataAssetsResult>
def get_detection_data_assets(compartment_id: Optional[str] = None,
                              display_name: Optional[str] = None,
                              filters: Optional[Sequence[_aianomalydetection.GetDetectionDataAssetsFilter]] = None,
                              project_id: Optional[str] = None,
                              state: Optional[str] = None,
                              opts: Optional[InvokeOptions] = None) -> GetDetectionDataAssetsResult
def get_detection_data_assets_output(compartment_id: Optional[pulumi.Input[str]] = None,
                              display_name: Optional[pulumi.Input[str]] = None,
                              filters: Optional[pulumi.Input[Sequence[pulumi.Input[_aianomalydetection.GetDetectionDataAssetsFilterArgs]]]] = None,
                              project_id: Optional[pulumi.Input[str]] = None,
                              state: Optional[pulumi.Input[str]] = None,
                              opts: Optional[InvokeOptions] = None) -> Output[GetDetectionDataAssetsResult]
func GetDetectionDataAssets(ctx *Context, args *GetDetectionDataAssetsArgs, opts ...InvokeOption) (*GetDetectionDataAssetsResult, error)
func GetDetectionDataAssetsOutput(ctx *Context, args *GetDetectionDataAssetsOutputArgs, opts ...InvokeOption) GetDetectionDataAssetsResultOutput

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

public static class GetDetectionDataAssets 
{
    public static Task<GetDetectionDataAssetsResult> InvokeAsync(GetDetectionDataAssetsArgs args, InvokeOptions? opts = null)
    public static Output<GetDetectionDataAssetsResult> Invoke(GetDetectionDataAssetsInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetDetectionDataAssetsResult> getDetectionDataAssets(GetDetectionDataAssetsArgs args, InvokeOptions options)
// Output-based functions aren't available in Java yet
fn::invoke:
  function: oci:AiAnomalyDetection/getDetectionDataAssets:getDetectionDataAssets
  arguments:
    # arguments dictionary

The following arguments are supported:

CompartmentId string

The ID of the compartment in which to list resources.

DisplayName string

A filter to return only resources that match the entire display name given.

Filters List<GetDetectionDataAssetsFilter>
ProjectId string

The ID of the project for which to list the objects.

State string

Filter results by the specified lifecycle state. Must be a valid state for the resource type.

CompartmentId string

The ID of the compartment in which to list resources.

DisplayName string

A filter to return only resources that match the entire display name given.

Filters []GetDetectionDataAssetsFilter
ProjectId string

The ID of the project for which to list the objects.

State string

Filter results by the specified lifecycle state. Must be a valid state for the resource type.

compartmentId String

The ID of the compartment in which to list resources.

displayName String

A filter to return only resources that match the entire display name given.

filters List<GetDetectionDataAssetsFilter>
projectId String

The ID of the project for which to list the objects.

state String

Filter results by the specified lifecycle state. Must be a valid state for the resource type.

compartmentId string

The ID of the compartment in which to list resources.

displayName string

A filter to return only resources that match the entire display name given.

filters GetDetectionDataAssetsFilter[]
projectId string

The ID of the project for which to list the objects.

state string

Filter results by the specified lifecycle state. Must be a valid state for the resource type.

compartment_id str

The ID of the compartment in which to list resources.

display_name str

A filter to return only resources that match the entire display name given.

filters GetDetectionDataAssetsFilter]
project_id str

The ID of the project for which to list the objects.

state str

Filter results by the specified lifecycle state. Must be a valid state for the resource type.

compartmentId String

The ID of the compartment in which to list resources.

displayName String

A filter to return only resources that match the entire display name given.

filters List<Property Map>
projectId String

The ID of the project for which to list the objects.

state String

Filter results by the specified lifecycle state. Must be a valid state for the resource type.

getDetectionDataAssets Result

The following output properties are available:

CompartmentId string

The OCID of the compartment containing the DataAsset.

DataAssetCollections List<GetDetectionDataAssetsDataAssetCollection>

The list of data_asset_collection.

Id string

The provider-assigned unique ID for this managed resource.

DisplayName string

A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.

Filters List<GetDetectionDataAssetsFilter>
ProjectId string

The Unique project id which is created at project creation that is immutable on creation.

State string

The lifecycle state of the Data Asset.

CompartmentId string

The OCID of the compartment containing the DataAsset.

DataAssetCollections []GetDetectionDataAssetsDataAssetCollection

The list of data_asset_collection.

Id string

The provider-assigned unique ID for this managed resource.

DisplayName string

A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.

Filters []GetDetectionDataAssetsFilter
ProjectId string

The Unique project id which is created at project creation that is immutable on creation.

State string

The lifecycle state of the Data Asset.

compartmentId String

The OCID of the compartment containing the DataAsset.

dataAssetCollections List<GetDetectionDataAssetsDataAssetCollection>

The list of data_asset_collection.

id String

The provider-assigned unique ID for this managed resource.

displayName String

A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.

filters List<GetDetectionDataAssetsFilter>
projectId String

The Unique project id which is created at project creation that is immutable on creation.

state String

The lifecycle state of the Data Asset.

compartmentId string

The OCID of the compartment containing the DataAsset.

dataAssetCollections GetDetectionDataAssetsDataAssetCollection[]

The list of data_asset_collection.

id string

The provider-assigned unique ID for this managed resource.

displayName string

A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.

filters GetDetectionDataAssetsFilter[]
projectId string

The Unique project id which is created at project creation that is immutable on creation.

state string

The lifecycle state of the Data Asset.

compartment_id str

The OCID of the compartment containing the DataAsset.

data_asset_collections GetDetectionDataAssetsDataAssetCollection]

The list of data_asset_collection.

id str

The provider-assigned unique ID for this managed resource.

display_name str

A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.

filters GetDetectionDataAssetsFilter]
project_id str

The Unique project id which is created at project creation that is immutable on creation.

state str

The lifecycle state of the Data Asset.

compartmentId String

The OCID of the compartment containing the DataAsset.

dataAssetCollections List<Property Map>

The list of data_asset_collection.

id String

The provider-assigned unique ID for this managed resource.

displayName String

A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.

filters List<Property Map>
projectId String

The Unique project id which is created at project creation that is immutable on creation.

state String

The lifecycle state of the Data Asset.

Supporting Types

GetDetectionDataAssetsDataAssetCollection

GetDetectionDataAssetsDataAssetCollectionItem

CompartmentId string

The ID of the compartment in which to list resources.

DataSourceDetails List<GetDetectionDataAssetsDataAssetCollectionItemDataSourceDetail>

Possible data sources

DefinedTags Dictionary<string, object>

Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}

Description string

A short description of the data asset.

DisplayName string

A filter to return only resources that match the entire display name given.

FreeformTags Dictionary<string, object>

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 Unique Oracle ID (OCID) that is immutable on creation.

PrivateEndpointId string

OCID of Private Endpoint.

ProjectId string

The ID of the project for which to list the objects.

State string

Filter results by the specified lifecycle state. Must be a valid state for the resource type.

SystemTags Dictionary<string, object>

Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}

TimeCreated string

The time the the DataAsset was created. An RFC3339 formatted datetime string

TimeUpdated string

The time the the DataAsset was updated. An RFC3339 formatted datetime string

CompartmentId string

The ID of the compartment in which to list resources.

DataSourceDetails []GetDetectionDataAssetsDataAssetCollectionItemDataSourceDetail

Possible data sources

DefinedTags map[string]interface{}

Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}

Description string

A short description of the data asset.

DisplayName string

A filter to return only resources that match the entire display name given.

FreeformTags map[string]interface{}

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 Unique Oracle ID (OCID) that is immutable on creation.

PrivateEndpointId string

OCID of Private Endpoint.

ProjectId string

The ID of the project for which to list the objects.

State string

Filter results by the specified lifecycle state. Must be a valid state for the resource type.

SystemTags map[string]interface{}

Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}

TimeCreated string

The time the the DataAsset was created. An RFC3339 formatted datetime string

TimeUpdated string

The time the the DataAsset was updated. An RFC3339 formatted datetime string

compartmentId String

The ID of the compartment in which to list resources.

dataSourceDetails List<GetDetectionDataAssetsDataAssetCollectionItemDataSourceDetail>

Possible data sources

definedTags Map<String,Object>

Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}

description String

A short description of the data asset.

displayName String

A filter to return only resources that match the entire display name given.

freeformTags Map<String,Object>

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 Unique Oracle ID (OCID) that is immutable on creation.

privateEndpointId String

OCID of Private Endpoint.

projectId String

The ID of the project for which to list the objects.

state String

Filter results by the specified lifecycle state. Must be a valid state for the resource type.

systemTags Map<String,Object>

Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}

timeCreated String

The time the the DataAsset was created. An RFC3339 formatted datetime string

timeUpdated String

The time the the DataAsset was updated. An RFC3339 formatted datetime string

compartmentId string

The ID of the compartment in which to list resources.

dataSourceDetails GetDetectionDataAssetsDataAssetCollectionItemDataSourceDetail[]

Possible data sources

definedTags {[key: string]: any}

Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}

description string

A short description of the data asset.

displayName string

A filter to return only resources that match the entire display name given.

freeformTags {[key: string]: any}

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 Unique Oracle ID (OCID) that is immutable on creation.

privateEndpointId string

OCID of Private Endpoint.

projectId string

The ID of the project for which to list the objects.

state string

Filter results by the specified lifecycle state. Must be a valid state for the resource type.

systemTags {[key: string]: any}

Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}

timeCreated string

The time the the DataAsset was created. An RFC3339 formatted datetime string

timeUpdated string

The time the the DataAsset was updated. An RFC3339 formatted datetime string

compartment_id str

The ID of the compartment in which to list resources.

data_source_details GetDetectionDataAssetsDataAssetCollectionItemDataSourceDetail]

Possible data sources

defined_tags Mapping[str, Any]

Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}

description str

A short description of the data asset.

display_name str

A filter to return only resources that match the entire display name given.

freeform_tags Mapping[str, Any]

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 Unique Oracle ID (OCID) that is immutable on creation.

private_endpoint_id str

OCID of Private Endpoint.

project_id str

The ID of the project for which to list the objects.

state str

Filter results by the specified lifecycle state. Must be a valid state for the resource type.

system_tags Mapping[str, Any]

Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}

time_created str

The time the the DataAsset was created. An RFC3339 formatted datetime string

time_updated str

The time the the DataAsset was updated. An RFC3339 formatted datetime string

compartmentId String

The ID of the compartment in which to list resources.

dataSourceDetails List<Property Map>

Possible data sources

definedTags Map<Any>

Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}

description String

A short description of the data asset.

displayName String

A filter to return only resources that match the entire display name given.

freeformTags Map<Any>

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 Unique Oracle ID (OCID) that is immutable on creation.

privateEndpointId String

OCID of Private Endpoint.

projectId String

The ID of the project for which to list the objects.

state String

Filter results by the specified lifecycle state. Must be a valid state for the resource type.

systemTags Map<Any>

Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}

timeCreated String

The time the the DataAsset was created. An RFC3339 formatted datetime string

timeUpdated String

The time the the DataAsset was updated. An RFC3339 formatted datetime string

GetDetectionDataAssetsDataAssetCollectionItemDataSourceDetail

AtpPasswordSecretId string

atp db password Secret Id

AtpUserName string

atp db user name

Bucket string

Bucket Name for influx connection

CwalletFileSecretId string

OCID of the secret containing the containers certificates of ATP wallet

DataSourceType string

Data source type where actually data asset is being stored

DatabaseName string

DB Name for influx connection

EwalletFileSecretId string

OCID of the secret containing the PDB'S certificates of ATP wallet

KeyStoreFileSecretId string

OCID of the secret containing Keystore.jks file of the ATP wallet

MeasurementName string

Measurement name for influx

Namespace string

Object storage namespace

Object string

File name

OjdbcFileSecretId string

OCID of the secret that contains jdbc properties file of ATP wallet

PasswordSecretId string

Password Secret Id for the influx connection

TableName string

atp database table name

TnsnamesFileSecretId string

OCID of the secret that contains the tnsnames file of ATP wallet

TruststoreFileSecretId string

OCID of the secret containing truststore.jks file of the ATP wallet

Url string

public IP address and port to influx DB

UserName string

Username for connection to Influx

VersionSpecificDetails List<GetDetectionDataAssetsDataAssetCollectionItemDataSourceDetailVersionSpecificDetail>

Possible data sources

WalletPasswordSecretId string

wallet password Secret ID in String format

AtpPasswordSecretId string

atp db password Secret Id

AtpUserName string

atp db user name

Bucket string

Bucket Name for influx connection

CwalletFileSecretId string

OCID of the secret containing the containers certificates of ATP wallet

DataSourceType string

Data source type where actually data asset is being stored

DatabaseName string

DB Name for influx connection

EwalletFileSecretId string

OCID of the secret containing the PDB'S certificates of ATP wallet

KeyStoreFileSecretId string

OCID of the secret containing Keystore.jks file of the ATP wallet

MeasurementName string

Measurement name for influx

Namespace string

Object storage namespace

Object string

File name

OjdbcFileSecretId string

OCID of the secret that contains jdbc properties file of ATP wallet

PasswordSecretId string

Password Secret Id for the influx connection

TableName string

atp database table name

TnsnamesFileSecretId string

OCID of the secret that contains the tnsnames file of ATP wallet

TruststoreFileSecretId string

OCID of the secret containing truststore.jks file of the ATP wallet

Url string

public IP address and port to influx DB

UserName string

Username for connection to Influx

VersionSpecificDetails []GetDetectionDataAssetsDataAssetCollectionItemDataSourceDetailVersionSpecificDetail

Possible data sources

WalletPasswordSecretId string

wallet password Secret ID in String format

atpPasswordSecretId String

atp db password Secret Id

atpUserName String

atp db user name

bucket String

Bucket Name for influx connection

cwalletFileSecretId String

OCID of the secret containing the containers certificates of ATP wallet

dataSourceType String

Data source type where actually data asset is being stored

databaseName String

DB Name for influx connection

ewalletFileSecretId String

OCID of the secret containing the PDB'S certificates of ATP wallet

keyStoreFileSecretId String

OCID of the secret containing Keystore.jks file of the ATP wallet

measurementName String

Measurement name for influx

namespace String

Object storage namespace

object String

File name

ojdbcFileSecretId String

OCID of the secret that contains jdbc properties file of ATP wallet

passwordSecretId String

Password Secret Id for the influx connection

tableName String

atp database table name

tnsnamesFileSecretId String

OCID of the secret that contains the tnsnames file of ATP wallet

truststoreFileSecretId String

OCID of the secret containing truststore.jks file of the ATP wallet

url String

public IP address and port to influx DB

userName String

Username for connection to Influx

versionSpecificDetails List<GetDetectionDataAssetsDataAssetCollectionItemDataSourceDetailVersionSpecificDetail>

Possible data sources

walletPasswordSecretId String

wallet password Secret ID in String format

atpPasswordSecretId string

atp db password Secret Id

atpUserName string

atp db user name

bucket string

Bucket Name for influx connection

cwalletFileSecretId string

OCID of the secret containing the containers certificates of ATP wallet

dataSourceType string

Data source type where actually data asset is being stored

databaseName string

DB Name for influx connection

ewalletFileSecretId string

OCID of the secret containing the PDB'S certificates of ATP wallet

keyStoreFileSecretId string

OCID of the secret containing Keystore.jks file of the ATP wallet

measurementName string

Measurement name for influx

namespace string

Object storage namespace

object string

File name

ojdbcFileSecretId string

OCID of the secret that contains jdbc properties file of ATP wallet

passwordSecretId string

Password Secret Id for the influx connection

tableName string

atp database table name

tnsnamesFileSecretId string

OCID of the secret that contains the tnsnames file of ATP wallet

truststoreFileSecretId string

OCID of the secret containing truststore.jks file of the ATP wallet

url string

public IP address and port to influx DB

userName string

Username for connection to Influx

versionSpecificDetails GetDetectionDataAssetsDataAssetCollectionItemDataSourceDetailVersionSpecificDetail[]

Possible data sources

walletPasswordSecretId string

wallet password Secret ID in String format

atp_password_secret_id str

atp db password Secret Id

atp_user_name str

atp db user name

bucket str

Bucket Name for influx connection

cwallet_file_secret_id str

OCID of the secret containing the containers certificates of ATP wallet

data_source_type str

Data source type where actually data asset is being stored

database_name str

DB Name for influx connection

ewallet_file_secret_id str

OCID of the secret containing the PDB'S certificates of ATP wallet

key_store_file_secret_id str

OCID of the secret containing Keystore.jks file of the ATP wallet

measurement_name str

Measurement name for influx

namespace str

Object storage namespace

object str

File name

ojdbc_file_secret_id str

OCID of the secret that contains jdbc properties file of ATP wallet

password_secret_id str

Password Secret Id for the influx connection

table_name str

atp database table name

tnsnames_file_secret_id str

OCID of the secret that contains the tnsnames file of ATP wallet

truststore_file_secret_id str

OCID of the secret containing truststore.jks file of the ATP wallet

url str

public IP address and port to influx DB

user_name str

Username for connection to Influx

version_specific_details GetDetectionDataAssetsDataAssetCollectionItemDataSourceDetailVersionSpecificDetail]

Possible data sources

wallet_password_secret_id str

wallet password Secret ID in String format

atpPasswordSecretId String

atp db password Secret Id

atpUserName String

atp db user name

bucket String

Bucket Name for influx connection

cwalletFileSecretId String

OCID of the secret containing the containers certificates of ATP wallet

dataSourceType String

Data source type where actually data asset is being stored

databaseName String

DB Name for influx connection

ewalletFileSecretId String

OCID of the secret containing the PDB'S certificates of ATP wallet

keyStoreFileSecretId String

OCID of the secret containing Keystore.jks file of the ATP wallet

measurementName String

Measurement name for influx

namespace String

Object storage namespace

object String

File name

ojdbcFileSecretId String

OCID of the secret that contains jdbc properties file of ATP wallet

passwordSecretId String

Password Secret Id for the influx connection

tableName String

atp database table name

tnsnamesFileSecretId String

OCID of the secret that contains the tnsnames file of ATP wallet

truststoreFileSecretId String

OCID of the secret containing truststore.jks file of the ATP wallet

url String

public IP address and port to influx DB

userName String

Username for connection to Influx

versionSpecificDetails List<Property Map>

Possible data sources

walletPasswordSecretId String

wallet password Secret ID in String format

GetDetectionDataAssetsDataAssetCollectionItemDataSourceDetailVersionSpecificDetail

Bucket string

Bucket Name for influx connection

DatabaseName string

DB Name for influx connection

InfluxVersion string

Data source type where actually data asset is being stored

OrganizationName string

Org name for the influx db

RetentionPolicyName string

retention policy is how long the bucket would last

Bucket string

Bucket Name for influx connection

DatabaseName string

DB Name for influx connection

InfluxVersion string

Data source type where actually data asset is being stored

OrganizationName string

Org name for the influx db

RetentionPolicyName string

retention policy is how long the bucket would last

bucket String

Bucket Name for influx connection

databaseName String

DB Name for influx connection

influxVersion String

Data source type where actually data asset is being stored

organizationName String

Org name for the influx db

retentionPolicyName String

retention policy is how long the bucket would last

bucket string

Bucket Name for influx connection

databaseName string

DB Name for influx connection

influxVersion string

Data source type where actually data asset is being stored

organizationName string

Org name for the influx db

retentionPolicyName string

retention policy is how long the bucket would last

bucket str

Bucket Name for influx connection

database_name str

DB Name for influx connection

influx_version str

Data source type where actually data asset is being stored

organization_name str

Org name for the influx db

retention_policy_name str

retention policy is how long the bucket would last

bucket String

Bucket Name for influx connection

databaseName String

DB Name for influx connection

influxVersion String

Data source type where actually data asset is being stored

organizationName String

Org name for the influx db

retentionPolicyName String

retention policy is how long the bucket would last

GetDetectionDataAssetsFilter

Name string
Values List<string>
Regex bool
Name string
Values []string
Regex bool
name String
values List<String>
regex Boolean
name string
values string[]
regex boolean
name str
values Sequence[str]
regex bool
name String
values 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.