oci.AiAnomalyDetection.DataAsset
Explore with Pulumi AI
This resource provides the Data Asset resource in Oracle Cloud Infrastructure Ai Anomaly Detection service.
Creates a new DataAsset.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testDataAsset = new oci.aianomalydetection.DataAsset("test_data_asset", {
    compartmentId: compartmentId,
    dataSourceDetails: {
        dataSourceType: dataAssetDataSourceDetailsDataSourceType,
        atpPasswordSecretId: testSecret.id,
        atpUserName: testUser.name,
        bucket: dataAssetDataSourceDetailsBucket,
        cwalletFileSecretId: testSecret.id,
        databaseName: testDatabase.name,
        ewalletFileSecretId: testSecret.id,
        keyStoreFileSecretId: testSecret.id,
        measurementName: dataAssetDataSourceDetailsMeasurementName,
        namespace: dataAssetDataSourceDetailsNamespace,
        object: dataAssetDataSourceDetailsObject,
        ojdbcFileSecretId: testSecret.id,
        passwordSecretId: testSecret.id,
        tableName: testTable.name,
        tnsnamesFileSecretId: testSecret.id,
        truststoreFileSecretId: testSecret.id,
        url: dataAssetDataSourceDetailsUrl,
        userName: testUser.name,
        versionSpecificDetails: {
            influxVersion: dataAssetDataSourceDetailsVersionSpecificDetailsInfluxVersion,
            bucket: dataAssetDataSourceDetailsVersionSpecificDetailsBucket,
            databaseName: testDatabase.name,
            organizationName: dataAssetDataSourceDetailsVersionSpecificDetailsOrganizationName,
            retentionPolicyName: testPolicy.name,
        },
        walletPasswordSecretId: testSecret.id,
    },
    projectId: testProject.id,
    definedTags: {
        "foo-namespace.bar-key": "value",
    },
    description: dataAssetDescription,
    displayName: dataAssetDisplayName,
    freeformTags: {
        "bar-key": "value",
    },
    privateEndpointId: testPrivateEndpoint.id,
});
import pulumi
import pulumi_oci as oci
test_data_asset = oci.ai_anomaly_detection.DataAsset("test_data_asset",
    compartment_id=compartment_id,
    data_source_details={
        "data_source_type": data_asset_data_source_details_data_source_type,
        "atp_password_secret_id": test_secret["id"],
        "atp_user_name": test_user["name"],
        "bucket": data_asset_data_source_details_bucket,
        "cwallet_file_secret_id": test_secret["id"],
        "database_name": test_database["name"],
        "ewallet_file_secret_id": test_secret["id"],
        "key_store_file_secret_id": test_secret["id"],
        "measurement_name": data_asset_data_source_details_measurement_name,
        "namespace": data_asset_data_source_details_namespace,
        "object": data_asset_data_source_details_object,
        "ojdbc_file_secret_id": test_secret["id"],
        "password_secret_id": test_secret["id"],
        "table_name": test_table["name"],
        "tnsnames_file_secret_id": test_secret["id"],
        "truststore_file_secret_id": test_secret["id"],
        "url": data_asset_data_source_details_url,
        "user_name": test_user["name"],
        "version_specific_details": {
            "influx_version": data_asset_data_source_details_version_specific_details_influx_version,
            "bucket": data_asset_data_source_details_version_specific_details_bucket,
            "database_name": test_database["name"],
            "organization_name": data_asset_data_source_details_version_specific_details_organization_name,
            "retention_policy_name": test_policy["name"],
        },
        "wallet_password_secret_id": test_secret["id"],
    },
    project_id=test_project["id"],
    defined_tags={
        "foo-namespace.bar-key": "value",
    },
    description=data_asset_description,
    display_name=data_asset_display_name,
    freeform_tags={
        "bar-key": "value",
    },
    private_endpoint_id=test_private_endpoint["id"])
package main
import (
	"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/aianomalydetection"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := aianomalydetection.NewDataAsset(ctx, "test_data_asset", &aianomalydetection.DataAssetArgs{
			CompartmentId: pulumi.Any(compartmentId),
			DataSourceDetails: &aianomalydetection.DataAssetDataSourceDetailsArgs{
				DataSourceType:         pulumi.Any(dataAssetDataSourceDetailsDataSourceType),
				AtpPasswordSecretId:    pulumi.Any(testSecret.Id),
				AtpUserName:            pulumi.Any(testUser.Name),
				Bucket:                 pulumi.Any(dataAssetDataSourceDetailsBucket),
				CwalletFileSecretId:    pulumi.Any(testSecret.Id),
				DatabaseName:           pulumi.Any(testDatabase.Name),
				EwalletFileSecretId:    pulumi.Any(testSecret.Id),
				KeyStoreFileSecretId:   pulumi.Any(testSecret.Id),
				MeasurementName:        pulumi.Any(dataAssetDataSourceDetailsMeasurementName),
				Namespace:              pulumi.Any(dataAssetDataSourceDetailsNamespace),
				Object:                 pulumi.Any(dataAssetDataSourceDetailsObject),
				OjdbcFileSecretId:      pulumi.Any(testSecret.Id),
				PasswordSecretId:       pulumi.Any(testSecret.Id),
				TableName:              pulumi.Any(testTable.Name),
				TnsnamesFileSecretId:   pulumi.Any(testSecret.Id),
				TruststoreFileSecretId: pulumi.Any(testSecret.Id),
				Url:                    pulumi.Any(dataAssetDataSourceDetailsUrl),
				UserName:               pulumi.Any(testUser.Name),
				VersionSpecificDetails: &aianomalydetection.DataAssetDataSourceDetailsVersionSpecificDetailsArgs{
					InfluxVersion:       pulumi.Any(dataAssetDataSourceDetailsVersionSpecificDetailsInfluxVersion),
					Bucket:              pulumi.Any(dataAssetDataSourceDetailsVersionSpecificDetailsBucket),
					DatabaseName:        pulumi.Any(testDatabase.Name),
					OrganizationName:    pulumi.Any(dataAssetDataSourceDetailsVersionSpecificDetailsOrganizationName),
					RetentionPolicyName: pulumi.Any(testPolicy.Name),
				},
				WalletPasswordSecretId: pulumi.Any(testSecret.Id),
			},
			ProjectId: pulumi.Any(testProject.Id),
			DefinedTags: pulumi.StringMap{
				"foo-namespace.bar-key": pulumi.String("value"),
			},
			Description: pulumi.Any(dataAssetDescription),
			DisplayName: pulumi.Any(dataAssetDisplayName),
			FreeformTags: pulumi.StringMap{
				"bar-key": pulumi.String("value"),
			},
			PrivateEndpointId: pulumi.Any(testPrivateEndpoint.Id),
		})
		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 testDataAsset = new Oci.AiAnomalyDetection.DataAsset("test_data_asset", new()
    {
        CompartmentId = compartmentId,
        DataSourceDetails = new Oci.AiAnomalyDetection.Inputs.DataAssetDataSourceDetailsArgs
        {
            DataSourceType = dataAssetDataSourceDetailsDataSourceType,
            AtpPasswordSecretId = testSecret.Id,
            AtpUserName = testUser.Name,
            Bucket = dataAssetDataSourceDetailsBucket,
            CwalletFileSecretId = testSecret.Id,
            DatabaseName = testDatabase.Name,
            EwalletFileSecretId = testSecret.Id,
            KeyStoreFileSecretId = testSecret.Id,
            MeasurementName = dataAssetDataSourceDetailsMeasurementName,
            Namespace = dataAssetDataSourceDetailsNamespace,
            Object = dataAssetDataSourceDetailsObject,
            OjdbcFileSecretId = testSecret.Id,
            PasswordSecretId = testSecret.Id,
            TableName = testTable.Name,
            TnsnamesFileSecretId = testSecret.Id,
            TruststoreFileSecretId = testSecret.Id,
            Url = dataAssetDataSourceDetailsUrl,
            UserName = testUser.Name,
            VersionSpecificDetails = new Oci.AiAnomalyDetection.Inputs.DataAssetDataSourceDetailsVersionSpecificDetailsArgs
            {
                InfluxVersion = dataAssetDataSourceDetailsVersionSpecificDetailsInfluxVersion,
                Bucket = dataAssetDataSourceDetailsVersionSpecificDetailsBucket,
                DatabaseName = testDatabase.Name,
                OrganizationName = dataAssetDataSourceDetailsVersionSpecificDetailsOrganizationName,
                RetentionPolicyName = testPolicy.Name,
            },
            WalletPasswordSecretId = testSecret.Id,
        },
        ProjectId = testProject.Id,
        DefinedTags = 
        {
            { "foo-namespace.bar-key", "value" },
        },
        Description = dataAssetDescription,
        DisplayName = dataAssetDisplayName,
        FreeformTags = 
        {
            { "bar-key", "value" },
        },
        PrivateEndpointId = testPrivateEndpoint.Id,
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.AiAnomalyDetection.DataAsset;
import com.pulumi.oci.AiAnomalyDetection.DataAssetArgs;
import com.pulumi.oci.AiAnomalyDetection.inputs.DataAssetDataSourceDetailsArgs;
import com.pulumi.oci.AiAnomalyDetection.inputs.DataAssetDataSourceDetailsVersionSpecificDetailsArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }
    public static void stack(Context ctx) {
        var testDataAsset = new DataAsset("testDataAsset", DataAssetArgs.builder()
            .compartmentId(compartmentId)
            .dataSourceDetails(DataAssetDataSourceDetailsArgs.builder()
                .dataSourceType(dataAssetDataSourceDetailsDataSourceType)
                .atpPasswordSecretId(testSecret.id())
                .atpUserName(testUser.name())
                .bucket(dataAssetDataSourceDetailsBucket)
                .cwalletFileSecretId(testSecret.id())
                .databaseName(testDatabase.name())
                .ewalletFileSecretId(testSecret.id())
                .keyStoreFileSecretId(testSecret.id())
                .measurementName(dataAssetDataSourceDetailsMeasurementName)
                .namespace(dataAssetDataSourceDetailsNamespace)
                .object(dataAssetDataSourceDetailsObject)
                .ojdbcFileSecretId(testSecret.id())
                .passwordSecretId(testSecret.id())
                .tableName(testTable.name())
                .tnsnamesFileSecretId(testSecret.id())
                .truststoreFileSecretId(testSecret.id())
                .url(dataAssetDataSourceDetailsUrl)
                .userName(testUser.name())
                .versionSpecificDetails(DataAssetDataSourceDetailsVersionSpecificDetailsArgs.builder()
                    .influxVersion(dataAssetDataSourceDetailsVersionSpecificDetailsInfluxVersion)
                    .bucket(dataAssetDataSourceDetailsVersionSpecificDetailsBucket)
                    .databaseName(testDatabase.name())
                    .organizationName(dataAssetDataSourceDetailsVersionSpecificDetailsOrganizationName)
                    .retentionPolicyName(testPolicy.name())
                    .build())
                .walletPasswordSecretId(testSecret.id())
                .build())
            .projectId(testProject.id())
            .definedTags(Map.of("foo-namespace.bar-key", "value"))
            .description(dataAssetDescription)
            .displayName(dataAssetDisplayName)
            .freeformTags(Map.of("bar-key", "value"))
            .privateEndpointId(testPrivateEndpoint.id())
            .build());
    }
}
resources:
  testDataAsset:
    type: oci:AiAnomalyDetection:DataAsset
    name: test_data_asset
    properties:
      compartmentId: ${compartmentId}
      dataSourceDetails:
        dataSourceType: ${dataAssetDataSourceDetailsDataSourceType}
        atpPasswordSecretId: ${testSecret.id}
        atpUserName: ${testUser.name}
        bucket: ${dataAssetDataSourceDetailsBucket}
        cwalletFileSecretId: ${testSecret.id}
        databaseName: ${testDatabase.name}
        ewalletFileSecretId: ${testSecret.id}
        keyStoreFileSecretId: ${testSecret.id}
        measurementName: ${dataAssetDataSourceDetailsMeasurementName}
        namespace: ${dataAssetDataSourceDetailsNamespace}
        object: ${dataAssetDataSourceDetailsObject}
        ojdbcFileSecretId: ${testSecret.id}
        passwordSecretId: ${testSecret.id}
        tableName: ${testTable.name}
        tnsnamesFileSecretId: ${testSecret.id}
        truststoreFileSecretId: ${testSecret.id}
        url: ${dataAssetDataSourceDetailsUrl}
        userName: ${testUser.name}
        versionSpecificDetails:
          influxVersion: ${dataAssetDataSourceDetailsVersionSpecificDetailsInfluxVersion}
          bucket: ${dataAssetDataSourceDetailsVersionSpecificDetailsBucket}
          databaseName: ${testDatabase.name}
          organizationName: ${dataAssetDataSourceDetailsVersionSpecificDetailsOrganizationName}
          retentionPolicyName: ${testPolicy.name}
        walletPasswordSecretId: ${testSecret.id}
      projectId: ${testProject.id}
      definedTags:
        foo-namespace.bar-key: value
      description: ${dataAssetDescription}
      displayName: ${dataAssetDisplayName}
      freeformTags:
        bar-key: value
      privateEndpointId: ${testPrivateEndpoint.id}
Create DataAsset Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new DataAsset(name: string, args: DataAssetArgs, opts?: CustomResourceOptions);@overload
def DataAsset(resource_name: str,
              args: DataAssetArgs,
              opts: Optional[ResourceOptions] = None)
@overload
def DataAsset(resource_name: str,
              opts: Optional[ResourceOptions] = None,
              compartment_id: Optional[str] = None,
              data_source_details: Optional[DataAssetDataSourceDetailsArgs] = None,
              project_id: Optional[str] = None,
              defined_tags: Optional[Mapping[str, str]] = None,
              description: Optional[str] = None,
              display_name: Optional[str] = None,
              freeform_tags: Optional[Mapping[str, str]] = None,
              private_endpoint_id: Optional[str] = None)func NewDataAsset(ctx *Context, name string, args DataAssetArgs, opts ...ResourceOption) (*DataAsset, error)public DataAsset(string name, DataAssetArgs args, CustomResourceOptions? opts = null)
public DataAsset(String name, DataAssetArgs args)
public DataAsset(String name, DataAssetArgs args, CustomResourceOptions options)
type: oci:AiAnomalyDetection:DataAsset
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args DataAssetArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args DataAssetArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args DataAssetArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args DataAssetArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args DataAssetArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var dataAssetResource = new Oci.AiAnomalyDetection.DataAsset("dataAssetResource", new()
{
    CompartmentId = "string",
    DataSourceDetails = new Oci.AiAnomalyDetection.Inputs.DataAssetDataSourceDetailsArgs
    {
        DataSourceType = "string",
        Object = "string",
        OjdbcFileSecretId = "string",
        CwalletFileSecretId = "string",
        AtpPasswordSecretId = "string",
        DatabaseName = "string",
        EwalletFileSecretId = "string",
        KeyStoreFileSecretId = "string",
        MeasurementName = "string",
        Bucket = "string",
        Namespace = "string",
        AtpUserName = "string",
        PasswordSecretId = "string",
        TableName = "string",
        TnsnamesFileSecretId = "string",
        TruststoreFileSecretId = "string",
        Url = "string",
        UserName = "string",
        VersionSpecificDetails = new Oci.AiAnomalyDetection.Inputs.DataAssetDataSourceDetailsVersionSpecificDetailsArgs
        {
            InfluxVersion = "string",
            Bucket = "string",
            DatabaseName = "string",
            OrganizationName = "string",
            RetentionPolicyName = "string",
        },
        WalletPasswordSecretId = "string",
    },
    ProjectId = "string",
    DefinedTags = 
    {
        { "string", "string" },
    },
    Description = "string",
    DisplayName = "string",
    FreeformTags = 
    {
        { "string", "string" },
    },
    PrivateEndpointId = "string",
});
example, err := aianomalydetection.NewDataAsset(ctx, "dataAssetResource", &aianomalydetection.DataAssetArgs{
	CompartmentId: pulumi.String("string"),
	DataSourceDetails: &aianomalydetection.DataAssetDataSourceDetailsArgs{
		DataSourceType:         pulumi.String("string"),
		Object:                 pulumi.String("string"),
		OjdbcFileSecretId:      pulumi.String("string"),
		CwalletFileSecretId:    pulumi.String("string"),
		AtpPasswordSecretId:    pulumi.String("string"),
		DatabaseName:           pulumi.String("string"),
		EwalletFileSecretId:    pulumi.String("string"),
		KeyStoreFileSecretId:   pulumi.String("string"),
		MeasurementName:        pulumi.String("string"),
		Bucket:                 pulumi.String("string"),
		Namespace:              pulumi.String("string"),
		AtpUserName:            pulumi.String("string"),
		PasswordSecretId:       pulumi.String("string"),
		TableName:              pulumi.String("string"),
		TnsnamesFileSecretId:   pulumi.String("string"),
		TruststoreFileSecretId: pulumi.String("string"),
		Url:                    pulumi.String("string"),
		UserName:               pulumi.String("string"),
		VersionSpecificDetails: &aianomalydetection.DataAssetDataSourceDetailsVersionSpecificDetailsArgs{
			InfluxVersion:       pulumi.String("string"),
			Bucket:              pulumi.String("string"),
			DatabaseName:        pulumi.String("string"),
			OrganizationName:    pulumi.String("string"),
			RetentionPolicyName: pulumi.String("string"),
		},
		WalletPasswordSecretId: pulumi.String("string"),
	},
	ProjectId: pulumi.String("string"),
	DefinedTags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	Description: pulumi.String("string"),
	DisplayName: pulumi.String("string"),
	FreeformTags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	PrivateEndpointId: pulumi.String("string"),
})
var dataAssetResource = new com.pulumi.oci.AiAnomalyDetection.DataAsset("dataAssetResource", com.pulumi.oci.AiAnomalyDetection.DataAssetArgs.builder()
    .compartmentId("string")
    .dataSourceDetails(DataAssetDataSourceDetailsArgs.builder()
        .dataSourceType("string")
        .object("string")
        .ojdbcFileSecretId("string")
        .cwalletFileSecretId("string")
        .atpPasswordSecretId("string")
        .databaseName("string")
        .ewalletFileSecretId("string")
        .keyStoreFileSecretId("string")
        .measurementName("string")
        .bucket("string")
        .namespace("string")
        .atpUserName("string")
        .passwordSecretId("string")
        .tableName("string")
        .tnsnamesFileSecretId("string")
        .truststoreFileSecretId("string")
        .url("string")
        .userName("string")
        .versionSpecificDetails(DataAssetDataSourceDetailsVersionSpecificDetailsArgs.builder()
            .influxVersion("string")
            .bucket("string")
            .databaseName("string")
            .organizationName("string")
            .retentionPolicyName("string")
            .build())
        .walletPasswordSecretId("string")
        .build())
    .projectId("string")
    .definedTags(Map.of("string", "string"))
    .description("string")
    .displayName("string")
    .freeformTags(Map.of("string", "string"))
    .privateEndpointId("string")
    .build());
data_asset_resource = oci.ai_anomaly_detection.DataAsset("dataAssetResource",
    compartment_id="string",
    data_source_details={
        "data_source_type": "string",
        "object": "string",
        "ojdbc_file_secret_id": "string",
        "cwallet_file_secret_id": "string",
        "atp_password_secret_id": "string",
        "database_name": "string",
        "ewallet_file_secret_id": "string",
        "key_store_file_secret_id": "string",
        "measurement_name": "string",
        "bucket": "string",
        "namespace": "string",
        "atp_user_name": "string",
        "password_secret_id": "string",
        "table_name": "string",
        "tnsnames_file_secret_id": "string",
        "truststore_file_secret_id": "string",
        "url": "string",
        "user_name": "string",
        "version_specific_details": {
            "influx_version": "string",
            "bucket": "string",
            "database_name": "string",
            "organization_name": "string",
            "retention_policy_name": "string",
        },
        "wallet_password_secret_id": "string",
    },
    project_id="string",
    defined_tags={
        "string": "string",
    },
    description="string",
    display_name="string",
    freeform_tags={
        "string": "string",
    },
    private_endpoint_id="string")
const dataAssetResource = new oci.aianomalydetection.DataAsset("dataAssetResource", {
    compartmentId: "string",
    dataSourceDetails: {
        dataSourceType: "string",
        object: "string",
        ojdbcFileSecretId: "string",
        cwalletFileSecretId: "string",
        atpPasswordSecretId: "string",
        databaseName: "string",
        ewalletFileSecretId: "string",
        keyStoreFileSecretId: "string",
        measurementName: "string",
        bucket: "string",
        namespace: "string",
        atpUserName: "string",
        passwordSecretId: "string",
        tableName: "string",
        tnsnamesFileSecretId: "string",
        truststoreFileSecretId: "string",
        url: "string",
        userName: "string",
        versionSpecificDetails: {
            influxVersion: "string",
            bucket: "string",
            databaseName: "string",
            organizationName: "string",
            retentionPolicyName: "string",
        },
        walletPasswordSecretId: "string",
    },
    projectId: "string",
    definedTags: {
        string: "string",
    },
    description: "string",
    displayName: "string",
    freeformTags: {
        string: "string",
    },
    privateEndpointId: "string",
});
type: oci:AiAnomalyDetection:DataAsset
properties:
    compartmentId: string
    dataSourceDetails:
        atpPasswordSecretId: string
        atpUserName: string
        bucket: string
        cwalletFileSecretId: string
        dataSourceType: string
        databaseName: string
        ewalletFileSecretId: string
        keyStoreFileSecretId: string
        measurementName: string
        namespace: string
        object: string
        ojdbcFileSecretId: string
        passwordSecretId: string
        tableName: string
        tnsnamesFileSecretId: string
        truststoreFileSecretId: string
        url: string
        userName: string
        versionSpecificDetails:
            bucket: string
            databaseName: string
            influxVersion: string
            organizationName: string
            retentionPolicyName: string
        walletPasswordSecretId: string
    definedTags:
        string: string
    description: string
    displayName: string
    freeformTags:
        string: string
    privateEndpointId: string
    projectId: string
DataAsset Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The DataAsset resource accepts the following input properties:
- CompartmentId string
- (Updatable) The OCID for the data asset's compartment.
- DataSource DataDetails Asset Data Source Details 
- Possible data sources
- ProjectId string
- The OCID of the project to associate with the data asset. - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- Dictionary<string, string>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- Description string
- (Updatable) A short description of the Ai data asset
- DisplayName string
- (Updatable) A user-friendly display name for the resource. It does not have to be unique and can be modified. Avoid entering confidential information.
- Dictionary<string, string>
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- PrivateEndpoint stringId 
- OCID of Private Endpoint.
- CompartmentId string
- (Updatable) The OCID for the data asset's compartment.
- DataSource DataDetails Asset Data Source Details Args 
- Possible data sources
- ProjectId string
- The OCID of the project to associate with the data asset. - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- map[string]string
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- Description string
- (Updatable) A short description of the Ai data asset
- DisplayName string
- (Updatable) A user-friendly display name for the resource. It does not have to be unique and can be modified. Avoid entering confidential information.
- map[string]string
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- PrivateEndpoint stringId 
- OCID of Private Endpoint.
- compartmentId String
- (Updatable) The OCID for the data asset's compartment.
- dataSource DataDetails Asset Data Source Details 
- Possible data sources
- projectId String
- The OCID of the project to associate with the data asset. - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- Map<String,String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- description String
- (Updatable) A short description of the Ai data asset
- displayName String
- (Updatable) A user-friendly display name for the resource. It does not have to be unique and can be modified. Avoid entering confidential information.
- Map<String,String>
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- privateEndpoint StringId 
- OCID of Private Endpoint.
- compartmentId string
- (Updatable) The OCID for the data asset's compartment.
- dataSource DataDetails Asset Data Source Details 
- Possible data sources
- projectId string
- The OCID of the project to associate with the data asset. - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- {[key: string]: string}
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- description string
- (Updatable) A short description of the Ai data asset
- displayName string
- (Updatable) A user-friendly display name for the resource. It does not have to be unique and can be modified. Avoid entering confidential information.
- {[key: string]: string}
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- privateEndpoint stringId 
- OCID of Private Endpoint.
- compartment_id str
- (Updatable) The OCID for the data asset's compartment.
- data_source_ Datadetails Asset Data Source Details Args 
- Possible data sources
- project_id str
- The OCID of the project to associate with the data asset. - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- Mapping[str, str]
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- description str
- (Updatable) A short description of the Ai data asset
- display_name str
- (Updatable) A user-friendly display name for the resource. It does not have to be unique and can be modified. Avoid entering confidential information.
- Mapping[str, str]
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- private_endpoint_ strid 
- OCID of Private Endpoint.
- compartmentId String
- (Updatable) The OCID for the data asset's compartment.
- dataSource Property MapDetails 
- Possible data sources
- projectId String
- The OCID of the project to associate with the data asset. - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- Map<String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- description String
- (Updatable) A short description of the Ai data asset
- displayName String
- (Updatable) A user-friendly display name for the resource. It does not have to be unique and can be modified. Avoid entering confidential information.
- Map<String>
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- privateEndpoint StringId 
- OCID of Private Endpoint.
Outputs
All input properties are implicitly available as output properties. Additionally, the DataAsset resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- State string
- The lifecycle state of the Data Asset.
- Dictionary<string, string>
- 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
- Id string
- The provider-assigned unique ID for this managed resource.
- State string
- The lifecycle state of the Data Asset.
- map[string]string
- 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
- id String
- The provider-assigned unique ID for this managed resource.
- state String
- The lifecycle state of the Data Asset.
- Map<String,String>
- 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
- id string
- The provider-assigned unique ID for this managed resource.
- state string
- The lifecycle state of the Data Asset.
- {[key: string]: string}
- 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
- id str
- The provider-assigned unique ID for this managed resource.
- state str
- The lifecycle state of the Data Asset.
- Mapping[str, str]
- 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
- id String
- The provider-assigned unique ID for this managed resource.
- state String
- The lifecycle state of the Data Asset.
- Map<String>
- 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
Look up Existing DataAsset Resource
Get an existing DataAsset resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: DataAssetState, opts?: CustomResourceOptions): DataAsset@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        compartment_id: Optional[str] = None,
        data_source_details: Optional[DataAssetDataSourceDetailsArgs] = None,
        defined_tags: Optional[Mapping[str, str]] = None,
        description: Optional[str] = None,
        display_name: Optional[str] = None,
        freeform_tags: Optional[Mapping[str, str]] = None,
        private_endpoint_id: Optional[str] = None,
        project_id: Optional[str] = None,
        state: Optional[str] = None,
        system_tags: Optional[Mapping[str, str]] = None,
        time_created: Optional[str] = None,
        time_updated: Optional[str] = None) -> DataAssetfunc GetDataAsset(ctx *Context, name string, id IDInput, state *DataAssetState, opts ...ResourceOption) (*DataAsset, error)public static DataAsset Get(string name, Input<string> id, DataAssetState? state, CustomResourceOptions? opts = null)public static DataAsset get(String name, Output<String> id, DataAssetState state, CustomResourceOptions options)resources:  _:    type: oci:AiAnomalyDetection:DataAsset    get:      id: ${id}- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- CompartmentId string
- (Updatable) The OCID for the data asset's compartment.
- DataSource DataDetails Asset Data Source Details 
- Possible data sources
- Dictionary<string, string>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- Description string
- (Updatable) A short description of the Ai data asset
- DisplayName string
- (Updatable) A user-friendly display name for the resource. It does not have to be unique and can be modified. Avoid entering confidential information.
- Dictionary<string, string>
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- PrivateEndpoint stringId 
- OCID of Private Endpoint.
- ProjectId string
- The OCID of the project to associate with the data asset. - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- State string
- The lifecycle state of the Data Asset.
- Dictionary<string, string>
- 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
- (Updatable) The OCID for the data asset's compartment.
- DataSource DataDetails Asset Data Source Details Args 
- Possible data sources
- map[string]string
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- Description string
- (Updatable) A short description of the Ai data asset
- DisplayName string
- (Updatable) A user-friendly display name for the resource. It does not have to be unique and can be modified. Avoid entering confidential information.
- map[string]string
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- PrivateEndpoint stringId 
- OCID of Private Endpoint.
- ProjectId string
- The OCID of the project to associate with the data asset. - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- State string
- The lifecycle state of the Data Asset.
- map[string]string
- 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
- (Updatable) The OCID for the data asset's compartment.
- dataSource DataDetails Asset Data Source Details 
- Possible data sources
- Map<String,String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- description String
- (Updatable) A short description of the Ai data asset
- displayName String
- (Updatable) A user-friendly display name for the resource. It does not have to be unique and can be modified. Avoid entering confidential information.
- Map<String,String>
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- privateEndpoint StringId 
- OCID of Private Endpoint.
- projectId String
- The OCID of the project to associate with the data asset. - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- state String
- The lifecycle state of the Data Asset.
- Map<String,String>
- 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
- (Updatable) The OCID for the data asset's compartment.
- dataSource DataDetails Asset Data Source Details 
- Possible data sources
- {[key: string]: string}
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- description string
- (Updatable) A short description of the Ai data asset
- displayName string
- (Updatable) A user-friendly display name for the resource. It does not have to be unique and can be modified. Avoid entering confidential information.
- {[key: string]: string}
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- privateEndpoint stringId 
- OCID of Private Endpoint.
- projectId string
- The OCID of the project to associate with the data asset. - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- state string
- The lifecycle state of the Data Asset.
- {[key: string]: string}
- 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
- (Updatable) The OCID for the data asset's compartment.
- data_source_ Datadetails Asset Data Source Details Args 
- Possible data sources
- Mapping[str, str]
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- description str
- (Updatable) A short description of the Ai data asset
- display_name str
- (Updatable) A user-friendly display name for the resource. It does not have to be unique and can be modified. Avoid entering confidential information.
- Mapping[str, str]
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- private_endpoint_ strid 
- OCID of Private Endpoint.
- project_id str
- The OCID of the project to associate with the data asset. - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- state str
- The lifecycle state of the Data Asset.
- Mapping[str, str]
- 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
- (Updatable) The OCID for the data asset's compartment.
- dataSource Property MapDetails 
- Possible data sources
- Map<String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- description String
- (Updatable) A short description of the Ai data asset
- displayName String
- (Updatable) A user-friendly display name for the resource. It does not have to be unique and can be modified. Avoid entering confidential information.
- Map<String>
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- privateEndpoint StringId 
- OCID of Private Endpoint.
- projectId String
- The OCID of the project to associate with the data asset. - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- state String
- The lifecycle state of the Data Asset.
- Map<String>
- 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
Supporting Types
DataAssetDataSourceDetails, DataAssetDataSourceDetailsArgs          
- DataSource stringType 
- Data source type where actually data asset is being stored
- AtpPassword stringSecret Id 
- atp db password Secret Id
- AtpUser stringName 
- atp db user name
- Bucket string
- Object storage bucket name
- CwalletFile stringSecret Id 
- OCID of the secret containing the containers certificates of ATP wallet
- DatabaseName string
- atp database name
- EwalletFile stringSecret Id 
- OCID of the secret containing the PDB'S certificates of ATP wallet
- KeyStore stringFile Secret Id 
- 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
- OjdbcFile stringSecret Id 
- OCID of the secret that contains jdbc properties file of ATP wallet
- PasswordSecret stringId 
- Password Secret Id for the influx connection
- TableName string
- atp database table name
- TnsnamesFile stringSecret Id 
- OCID of the secret that contains the tnsnames file of ATP wallet
- TruststoreFile stringSecret Id 
- 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
- VersionSpecific DataDetails Asset Data Source Details Version Specific Details 
- Possible data sources
- WalletPassword stringSecret Id 
- wallet password Secret ID in String format
- DataSource stringType 
- Data source type where actually data asset is being stored
- AtpPassword stringSecret Id 
- atp db password Secret Id
- AtpUser stringName 
- atp db user name
- Bucket string
- Object storage bucket name
- CwalletFile stringSecret Id 
- OCID of the secret containing the containers certificates of ATP wallet
- DatabaseName string
- atp database name
- EwalletFile stringSecret Id 
- OCID of the secret containing the PDB'S certificates of ATP wallet
- KeyStore stringFile Secret Id 
- 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
- OjdbcFile stringSecret Id 
- OCID of the secret that contains jdbc properties file of ATP wallet
- PasswordSecret stringId 
- Password Secret Id for the influx connection
- TableName string
- atp database table name
- TnsnamesFile stringSecret Id 
- OCID of the secret that contains the tnsnames file of ATP wallet
- TruststoreFile stringSecret Id 
- 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
- VersionSpecific DataDetails Asset Data Source Details Version Specific Details 
- Possible data sources
- WalletPassword stringSecret Id 
- wallet password Secret ID in String format
- dataSource StringType 
- Data source type where actually data asset is being stored
- atpPassword StringSecret Id 
- atp db password Secret Id
- atpUser StringName 
- atp db user name
- bucket String
- Object storage bucket name
- cwalletFile StringSecret Id 
- OCID of the secret containing the containers certificates of ATP wallet
- databaseName String
- atp database name
- ewalletFile StringSecret Id 
- OCID of the secret containing the PDB'S certificates of ATP wallet
- keyStore StringFile Secret Id 
- 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
- ojdbcFile StringSecret Id 
- OCID of the secret that contains jdbc properties file of ATP wallet
- passwordSecret StringId 
- Password Secret Id for the influx connection
- tableName String
- atp database table name
- tnsnamesFile StringSecret Id 
- OCID of the secret that contains the tnsnames file of ATP wallet
- truststoreFile StringSecret Id 
- 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
- versionSpecific DataDetails Asset Data Source Details Version Specific Details 
- Possible data sources
- walletPassword StringSecret Id 
- wallet password Secret ID in String format
- dataSource stringType 
- Data source type where actually data asset is being stored
- atpPassword stringSecret Id 
- atp db password Secret Id
- atpUser stringName 
- atp db user name
- bucket string
- Object storage bucket name
- cwalletFile stringSecret Id 
- OCID of the secret containing the containers certificates of ATP wallet
- databaseName string
- atp database name
- ewalletFile stringSecret Id 
- OCID of the secret containing the PDB'S certificates of ATP wallet
- keyStore stringFile Secret Id 
- 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
- ojdbcFile stringSecret Id 
- OCID of the secret that contains jdbc properties file of ATP wallet
- passwordSecret stringId 
- Password Secret Id for the influx connection
- tableName string
- atp database table name
- tnsnamesFile stringSecret Id 
- OCID of the secret that contains the tnsnames file of ATP wallet
- truststoreFile stringSecret Id 
- 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
- versionSpecific DataDetails Asset Data Source Details Version Specific Details 
- Possible data sources
- walletPassword stringSecret Id 
- wallet password Secret ID in String format
- data_source_ strtype 
- Data source type where actually data asset is being stored
- atp_password_ strsecret_ id 
- atp db password Secret Id
- atp_user_ strname 
- atp db user name
- bucket str
- Object storage bucket name
- cwallet_file_ strsecret_ id 
- OCID of the secret containing the containers certificates of ATP wallet
- database_name str
- atp database name
- ewallet_file_ strsecret_ id 
- OCID of the secret containing the PDB'S certificates of ATP wallet
- key_store_ strfile_ secret_ id 
- 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_ strsecret_ id 
- OCID of the secret that contains jdbc properties file of ATP wallet
- password_secret_ strid 
- Password Secret Id for the influx connection
- table_name str
- atp database table name
- tnsnames_file_ strsecret_ id 
- OCID of the secret that contains the tnsnames file of ATP wallet
- truststore_file_ strsecret_ id 
- 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_ Datadetails Asset Data Source Details Version Specific Details 
- Possible data sources
- wallet_password_ strsecret_ id 
- wallet password Secret ID in String format
- dataSource StringType 
- Data source type where actually data asset is being stored
- atpPassword StringSecret Id 
- atp db password Secret Id
- atpUser StringName 
- atp db user name
- bucket String
- Object storage bucket name
- cwalletFile StringSecret Id 
- OCID of the secret containing the containers certificates of ATP wallet
- databaseName String
- atp database name
- ewalletFile StringSecret Id 
- OCID of the secret containing the PDB'S certificates of ATP wallet
- keyStore StringFile Secret Id 
- 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
- ojdbcFile StringSecret Id 
- OCID of the secret that contains jdbc properties file of ATP wallet
- passwordSecret StringId 
- Password Secret Id for the influx connection
- tableName String
- atp database table name
- tnsnamesFile StringSecret Id 
- OCID of the secret that contains the tnsnames file of ATP wallet
- truststoreFile StringSecret Id 
- 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
- versionSpecific Property MapDetails 
- Possible data sources
- walletPassword StringSecret Id 
- wallet password Secret ID in String format
DataAssetDataSourceDetailsVersionSpecificDetails, DataAssetDataSourceDetailsVersionSpecificDetailsArgs                
- InfluxVersion string
- Data source type where actually data asset is being stored
- Bucket string
- Bucket Name for influx connection
- DatabaseName string
- DB Name for influx connection
- OrganizationName string
- Org name for the influx db
- RetentionPolicy stringName 
- retention policy is how long the bucket would last
- InfluxVersion string
- Data source type where actually data asset is being stored
- Bucket string
- Bucket Name for influx connection
- DatabaseName string
- DB Name for influx connection
- OrganizationName string
- Org name for the influx db
- RetentionPolicy stringName 
- retention policy is how long the bucket would last
- influxVersion String
- Data source type where actually data asset is being stored
- bucket String
- Bucket Name for influx connection
- databaseName String
- DB Name for influx connection
- organizationName String
- Org name for the influx db
- retentionPolicy StringName 
- retention policy is how long the bucket would last
- influxVersion string
- Data source type where actually data asset is being stored
- bucket string
- Bucket Name for influx connection
- databaseName string
- DB Name for influx connection
- organizationName string
- Org name for the influx db
- retentionPolicy stringName 
- retention policy is how long the bucket would last
- influx_version str
- Data source type where actually data asset is being stored
- bucket str
- Bucket Name for influx connection
- database_name str
- DB Name for influx connection
- organization_name str
- Org name for the influx db
- retention_policy_ strname 
- retention policy is how long the bucket would last
- influxVersion String
- Data source type where actually data asset is being stored
- bucket String
- Bucket Name for influx connection
- databaseName String
- DB Name for influx connection
- organizationName String
- Org name for the influx db
- retentionPolicy StringName 
- retention policy is how long the bucket would last
Import
DataAssets can be imported using the id, e.g.
$ pulumi import oci:AiAnomalyDetection/dataAsset:DataAsset test_data_asset "id"
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the ociTerraform Provider.