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=oci.ai_anomaly_detection.DataAssetDataSourceDetailsArgs(
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=oci.ai_anomaly_detection.DataAssetDataSourceDetailsVersionSpecificDetailsArgs(
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/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.Map{
"foo-namespace.bar-key": pulumi.Any("value"),
},
Description: pulumi.Any(dataAssetDescription),
DisplayName: pulumi.Any(dataAssetDisplayName),
FreeformTags: pulumi.Map{
"bar-key": pulumi.Any("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[_aianomalydetection.DataAssetDataSourceDetailsArgs] = None,
project_id: Optional[str] = None,
defined_tags: Optional[Mapping[str, Any]] = None,
description: Optional[str] = None,
display_name: Optional[str] = None,
freeform_tags: Optional[Mapping[str, Any]] = 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",
WalletPasswordSecretId = "string",
Namespace = "string",
AtpUserName = "string",
DatabaseName = "string",
EwalletFileSecretId = "string",
KeyStoreFileSecretId = "string",
MeasurementName = "string",
CwalletFileSecretId = "string",
Bucket = "string",
PasswordSecretId = "string",
OjdbcFileSecretId = "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",
},
AtpPasswordSecretId = "string",
},
ProjectId = "string",
DefinedTags =
{
{ "string", "any" },
},
Description = "string",
DisplayName = "string",
FreeformTags =
{
{ "string", "any" },
},
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"),
WalletPasswordSecretId: pulumi.String("string"),
Namespace: pulumi.String("string"),
AtpUserName: pulumi.String("string"),
DatabaseName: pulumi.String("string"),
EwalletFileSecretId: pulumi.String("string"),
KeyStoreFileSecretId: pulumi.String("string"),
MeasurementName: pulumi.String("string"),
CwalletFileSecretId: pulumi.String("string"),
Bucket: pulumi.String("string"),
PasswordSecretId: pulumi.String("string"),
OjdbcFileSecretId: 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"),
},
AtpPasswordSecretId: pulumi.String("string"),
},
ProjectId: pulumi.String("string"),
DefinedTags: pulumi.Map{
"string": pulumi.Any("any"),
},
Description: pulumi.String("string"),
DisplayName: pulumi.String("string"),
FreeformTags: pulumi.Map{
"string": pulumi.Any("any"),
},
PrivateEndpointId: pulumi.String("string"),
})
var dataAssetResource = new DataAsset("dataAssetResource", DataAssetArgs.builder()
.compartmentId("string")
.dataSourceDetails(DataAssetDataSourceDetailsArgs.builder()
.dataSourceType("string")
.object("string")
.walletPasswordSecretId("string")
.namespace("string")
.atpUserName("string")
.databaseName("string")
.ewalletFileSecretId("string")
.keyStoreFileSecretId("string")
.measurementName("string")
.cwalletFileSecretId("string")
.bucket("string")
.passwordSecretId("string")
.ojdbcFileSecretId("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())
.atpPasswordSecretId("string")
.build())
.projectId("string")
.definedTags(Map.of("string", "any"))
.description("string")
.displayName("string")
.freeformTags(Map.of("string", "any"))
.privateEndpointId("string")
.build());
data_asset_resource = oci.ai_anomaly_detection.DataAsset("dataAssetResource",
compartment_id="string",
data_source_details=oci.ai_anomaly_detection.DataAssetDataSourceDetailsArgs(
data_source_type="string",
object="string",
wallet_password_secret_id="string",
namespace="string",
atp_user_name="string",
database_name="string",
ewallet_file_secret_id="string",
key_store_file_secret_id="string",
measurement_name="string",
cwallet_file_secret_id="string",
bucket="string",
password_secret_id="string",
ojdbc_file_secret_id="string",
table_name="string",
tnsnames_file_secret_id="string",
truststore_file_secret_id="string",
url="string",
user_name="string",
version_specific_details=oci.ai_anomaly_detection.DataAssetDataSourceDetailsVersionSpecificDetailsArgs(
influx_version="string",
bucket="string",
database_name="string",
organization_name="string",
retention_policy_name="string",
),
atp_password_secret_id="string",
),
project_id="string",
defined_tags={
"string": "any",
},
description="string",
display_name="string",
freeform_tags={
"string": "any",
},
private_endpoint_id="string")
const dataAssetResource = new oci.aianomalydetection.DataAsset("dataAssetResource", {
compartmentId: "string",
dataSourceDetails: {
dataSourceType: "string",
object: "string",
walletPasswordSecretId: "string",
namespace: "string",
atpUserName: "string",
databaseName: "string",
ewalletFileSecretId: "string",
keyStoreFileSecretId: "string",
measurementName: "string",
cwalletFileSecretId: "string",
bucket: "string",
passwordSecretId: "string",
ojdbcFileSecretId: "string",
tableName: "string",
tnsnamesFileSecretId: "string",
truststoreFileSecretId: "string",
url: "string",
userName: "string",
versionSpecificDetails: {
influxVersion: "string",
bucket: "string",
databaseName: "string",
organizationName: "string",
retentionPolicyName: "string",
},
atpPasswordSecretId: "string",
},
projectId: "string",
definedTags: {
string: "any",
},
description: "string",
displayName: "string",
freeformTags: {
string: "any",
},
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: any
description: string
displayName: string
freeformTags:
string: any
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
The DataAsset resource accepts the following input properties:
- Compartment
Id string - (Updatable) The OCID for the data asset's compartment.
- Data
Source DataDetails Asset Data Source Details - Possible data sources
- Project
Id 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, object>
- (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
- Display
Name 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, object>
- (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 stringId - OCID of Private Endpoint.
- Compartment
Id string - (Updatable) The OCID for the data asset's compartment.
- Data
Source DataDetails Asset Data Source Details Args - Possible data sources
- Project
Id 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]interface{}
- (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
- Display
Name 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]interface{}
- (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 stringId - OCID of Private Endpoint.
- compartment
Id String - (Updatable) The OCID for the data asset's compartment.
- data
Source DataDetails Asset Data Source Details - Possible data sources
- project
Id 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,Object>
- (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
- display
Name 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,Object>
- (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 StringId - OCID of Private Endpoint.
- compartment
Id string - (Updatable) The OCID for the data asset's compartment.
- data
Source DataDetails Asset Data Source Details - Possible data sources
- project
Id 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]: any}
- (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
- display
Name 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]: any}
- (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 stringId - OCID of Private Endpoint.
- compartment_
id str - (Updatable) The OCID for the data asset's compartment.
- data_
source_ aianomalydetection.details Data 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, Any]
- (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, Any]
- (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.
- compartment
Id String - (Updatable) The OCID for the data asset's compartment.
- data
Source Property MapDetails - Possible data sources
- project
Id 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<Any>
- (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
- display
Name 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<Any>
- (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 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, object>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Time
Created string - The time the the DataAsset was created. An RFC3339 formatted datetime string
- Time
Updated 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]interface{}
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Time
Created string - The time the the DataAsset was created. An RFC3339 formatted datetime string
- Time
Updated 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,Object>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created String - The time the the DataAsset was created. An RFC3339 formatted datetime string
- time
Updated 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]: any}
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created string - The time the the DataAsset was created. An RFC3339 formatted datetime string
- time
Updated 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, 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
- id String
- The provider-assigned unique ID for this managed resource.
- state String
- The lifecycle state of the Data Asset.
- Map<Any>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created String - The time the the DataAsset was created. An RFC3339 formatted datetime string
- time
Updated 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[_aianomalydetection.DataAssetDataSourceDetailsArgs] = None,
defined_tags: Optional[Mapping[str, Any]] = None,
description: Optional[str] = None,
display_name: Optional[str] = None,
freeform_tags: Optional[Mapping[str, Any]] = None,
private_endpoint_id: Optional[str] = None,
project_id: Optional[str] = None,
state: Optional[str] = None,
system_tags: Optional[Mapping[str, Any]] = None,
time_created: Optional[str] = None,
time_updated: Optional[str] = None) -> DataAsset
func 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)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Compartment
Id string - (Updatable) The OCID for the data asset's compartment.
- Data
Source DataDetails Asset Data Source Details - Possible data sources
- Dictionary<string, object>
- (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
- Display
Name 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, object>
- (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 stringId - OCID of Private Endpoint.
- Project
Id 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, object>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Time
Created string - The time the the DataAsset was created. An RFC3339 formatted datetime string
- Time
Updated string - The time the the DataAsset was updated. An RFC3339 formatted datetime string
- Compartment
Id string - (Updatable) The OCID for the data asset's compartment.
- Data
Source DataDetails Asset Data Source Details Args - Possible data sources
- map[string]interface{}
- (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
- Display
Name 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]interface{}
- (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 stringId - OCID of Private Endpoint.
- Project
Id 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]interface{}
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Time
Created string - The time the the DataAsset was created. An RFC3339 formatted datetime string
- Time
Updated string - The time the the DataAsset was updated. An RFC3339 formatted datetime string
- compartment
Id String - (Updatable) The OCID for the data asset's compartment.
- data
Source DataDetails Asset Data Source Details - Possible data sources
- Map<String,Object>
- (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
- display
Name 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,Object>
- (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 StringId - OCID of Private Endpoint.
- project
Id 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,Object>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created String - The time the the DataAsset was created. An RFC3339 formatted datetime string
- time
Updated String - The time the the DataAsset was updated. An RFC3339 formatted datetime string
- compartment
Id string - (Updatable) The OCID for the data asset's compartment.
- data
Source DataDetails Asset Data Source Details - Possible data sources
- {[key: string]: any}
- (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
- display
Name 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]: any}
- (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 stringId - OCID of Private Endpoint.
- project
Id 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]: any}
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created string - The time the the DataAsset was created. An RFC3339 formatted datetime string
- time
Updated 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_ aianomalydetection.details Data Asset Data Source Details Args - Possible data sources
- Mapping[str, Any]
- (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, Any]
- (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, 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
- compartment
Id String - (Updatable) The OCID for the data asset's compartment.
- data
Source Property MapDetails - Possible data sources
- Map<Any>
- (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
- display
Name 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<Any>
- (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 StringId - OCID of Private Endpoint.
- project
Id 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<Any>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created String - The time the the DataAsset was created. An RFC3339 formatted datetime string
- time
Updated String - The time the the DataAsset was updated. An RFC3339 formatted datetime string
Supporting Types
DataAssetDataSourceDetails, DataAssetDataSourceDetailsArgs
- Data
Source stringType - Data source type where actually data asset is being stored
- Atp
Password stringSecret Id - atp db password Secret Id
- Atp
User stringName - atp db user name
- Bucket string
- Object storage bucket name
- Cwallet
File stringSecret Id - OCID of the secret containing the containers certificates of ATP wallet
- Database
Name string - atp database name
- Ewallet
File stringSecret Id - OCID of the secret containing the PDB'S certificates of ATP wallet
- Key
Store stringFile Secret Id - OCID of the secret containing Keystore.jks file of the ATP wallet
- Measurement
Name string - Measurement name for influx
- Namespace string
- Object storage namespace
- Object string
- File name
- Ojdbc
File stringSecret Id - OCID of the secret that contains jdbc properties file of ATP wallet
- Password
Secret stringId - Password Secret Id for the influx connection
- Table
Name string - atp database table name
- Tnsnames
File stringSecret Id - OCID of the secret that contains the tnsnames file of ATP wallet
- Truststore
File stringSecret Id - OCID of the secret containing truststore.jks file of the ATP wallet
- Url string
- public IP address and port to influx DB
- User
Name string - Username for connection to Influx
- Version
Specific DataDetails Asset Data Source Details Version Specific Details - Possible data sources
- Wallet
Password stringSecret Id - wallet password Secret ID in String format
- Data
Source stringType - Data source type where actually data asset is being stored
- Atp
Password stringSecret Id - atp db password Secret Id
- Atp
User stringName - atp db user name
- Bucket string
- Object storage bucket name
- Cwallet
File stringSecret Id - OCID of the secret containing the containers certificates of ATP wallet
- Database
Name string - atp database name
- Ewallet
File stringSecret Id - OCID of the secret containing the PDB'S certificates of ATP wallet
- Key
Store stringFile Secret Id - OCID of the secret containing Keystore.jks file of the ATP wallet
- Measurement
Name string - Measurement name for influx
- Namespace string
- Object storage namespace
- Object string
- File name
- Ojdbc
File stringSecret Id - OCID of the secret that contains jdbc properties file of ATP wallet
- Password
Secret stringId - Password Secret Id for the influx connection
- Table
Name string - atp database table name
- Tnsnames
File stringSecret Id - OCID of the secret that contains the tnsnames file of ATP wallet
- Truststore
File stringSecret Id - OCID of the secret containing truststore.jks file of the ATP wallet
- Url string
- public IP address and port to influx DB
- User
Name string - Username for connection to Influx
- Version
Specific DataDetails Asset Data Source Details Version Specific Details - Possible data sources
- Wallet
Password stringSecret Id - wallet password Secret ID in String format
- data
Source StringType - Data source type where actually data asset is being stored
- atp
Password StringSecret Id - atp db password Secret Id
- atp
User StringName - atp db user name
- bucket String
- Object storage bucket name
- cwallet
File StringSecret Id - OCID of the secret containing the containers certificates of ATP wallet
- database
Name String - atp database name
- ewallet
File StringSecret Id - OCID of the secret containing the PDB'S certificates of ATP wallet
- key
Store StringFile Secret Id - OCID of the secret containing Keystore.jks file of the ATP wallet
- measurement
Name String - Measurement name for influx
- namespace String
- Object storage namespace
- object String
- File name
- ojdbc
File StringSecret Id - OCID of the secret that contains jdbc properties file of ATP wallet
- password
Secret StringId - Password Secret Id for the influx connection
- table
Name String - atp database table name
- tnsnames
File StringSecret Id - OCID of the secret that contains the tnsnames file of ATP wallet
- truststore
File StringSecret Id - OCID of the secret containing truststore.jks file of the ATP wallet
- url String
- public IP address and port to influx DB
- user
Name String - Username for connection to Influx
- version
Specific DataDetails Asset Data Source Details Version Specific Details - Possible data sources
- wallet
Password StringSecret Id - wallet password Secret ID in String format
- data
Source stringType - Data source type where actually data asset is being stored
- atp
Password stringSecret Id - atp db password Secret Id
- atp
User stringName - atp db user name
- bucket string
- Object storage bucket name
- cwallet
File stringSecret Id - OCID of the secret containing the containers certificates of ATP wallet
- database
Name string - atp database name
- ewallet
File stringSecret Id - OCID of the secret containing the PDB'S certificates of ATP wallet
- key
Store stringFile Secret Id - OCID of the secret containing Keystore.jks file of the ATP wallet
- measurement
Name string - Measurement name for influx
- namespace string
- Object storage namespace
- object string
- File name
- ojdbc
File stringSecret Id - OCID of the secret that contains jdbc properties file of ATP wallet
- password
Secret stringId - Password Secret Id for the influx connection
- table
Name string - atp database table name
- tnsnames
File stringSecret Id - OCID of the secret that contains the tnsnames file of ATP wallet
- truststore
File stringSecret Id - OCID of the secret containing truststore.jks file of the ATP wallet
- url string
- public IP address and port to influx DB
- user
Name string - Username for connection to Influx
- version
Specific DataDetails Asset Data Source Details Version Specific Details - Possible data sources
- wallet
Password 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_ aianomalydetection.details Data Asset Data Source Details Version Specific Details - Possible data sources
- wallet_
password_ strsecret_ id - wallet password Secret ID in String format
- data
Source StringType - Data source type where actually data asset is being stored
- atp
Password StringSecret Id - atp db password Secret Id
- atp
User StringName - atp db user name
- bucket String
- Object storage bucket name
- cwallet
File StringSecret Id - OCID of the secret containing the containers certificates of ATP wallet
- database
Name String - atp database name
- ewallet
File StringSecret Id - OCID of the secret containing the PDB'S certificates of ATP wallet
- key
Store StringFile Secret Id - OCID of the secret containing Keystore.jks file of the ATP wallet
- measurement
Name String - Measurement name for influx
- namespace String
- Object storage namespace
- object String
- File name
- ojdbc
File StringSecret Id - OCID of the secret that contains jdbc properties file of ATP wallet
- password
Secret StringId - Password Secret Id for the influx connection
- table
Name String - atp database table name
- tnsnames
File StringSecret Id - OCID of the secret that contains the tnsnames file of ATP wallet
- truststore
File StringSecret Id - OCID of the secret containing truststore.jks file of the ATP wallet
- url String
- public IP address and port to influx DB
- user
Name String - Username for connection to Influx
- version
Specific Property MapDetails - Possible data sources
- wallet
Password StringSecret Id - wallet password Secret ID in String format
DataAssetDataSourceDetailsVersionSpecificDetails, DataAssetDataSourceDetailsVersionSpecificDetailsArgs
- Influx
Version string - Data source type where actually data asset is being stored
- Bucket string
- Bucket Name for influx connection
- Database
Name string - DB Name for influx connection
- Organization
Name string - Org name for the influx db
- Retention
Policy stringName - retention policy is how long the bucket would last
- Influx
Version string - Data source type where actually data asset is being stored
- Bucket string
- Bucket Name for influx connection
- Database
Name string - DB Name for influx connection
- Organization
Name string - Org name for the influx db
- Retention
Policy stringName - retention policy is how long the bucket would last
- influx
Version String - Data source type where actually data asset is being stored
- bucket String
- Bucket Name for influx connection
- database
Name String - DB Name for influx connection
- organization
Name String - Org name for the influx db
- retention
Policy StringName - retention policy is how long the bucket would last
- influx
Version string - Data source type where actually data asset is being stored
- bucket string
- Bucket Name for influx connection
- database
Name string - DB Name for influx connection
- organization
Name string - Org name for the influx db
- retention
Policy 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
- influx
Version String - Data source type where actually data asset is being stored
- bucket String
- Bucket Name for influx connection
- database
Name String - DB Name for influx connection
- organization
Name String - Org name for the influx db
- retention
Policy 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
oci
Terraform Provider.