oci logo
Oracle Cloud Infrastructure v0.12.0, Mar 17 23

oci.EmWarehouse.EmWarehouse

This resource provides the Em Warehouse resource in Oracle Cloud Infrastructure Em Warehouse service.

Creates a new EmWarehouse.

Example Usage

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

return await Deployment.RunAsync(() => 
{
    var testEmWarehouse = new Oci.EmWarehouse.EmWarehouse("testEmWarehouse", new()
    {
        CompartmentId = @var.Compartment_id,
        EmBridgeId = oci_em_warehouse_em_bridge.Test_em_bridge.Id,
        OperationsInsightsWarehouseId = oci_opsi_operations_insights_warehouse.Test_operations_insights_warehouse.Id,
        DefinedTags = 
        {
            { "foo-namespace.bar-key", "value" },
        },
        DisplayName = @var.Em_warehouse_display_name,
        FreeformTags = 
        {
            { "bar-key", "value" },
        },
    });

});
package main

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

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := EmWarehouse.NewEmWarehouse(ctx, "testEmWarehouse", &EmWarehouse.EmWarehouseArgs{
			CompartmentId:                 pulumi.Any(_var.Compartment_id),
			EmBridgeId:                    pulumi.Any(oci_em_warehouse_em_bridge.Test_em_bridge.Id),
			OperationsInsightsWarehouseId: pulumi.Any(oci_opsi_operations_insights_warehouse.Test_operations_insights_warehouse.Id),
			DefinedTags: pulumi.AnyMap{
				"foo-namespace.bar-key": pulumi.Any("value"),
			},
			DisplayName: pulumi.Any(_var.Em_warehouse_display_name),
			FreeformTags: pulumi.AnyMap{
				"bar-key": pulumi.Any("value"),
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.EmWarehouse.EmWarehouse;
import com.pulumi.oci.EmWarehouse.EmWarehouseArgs;
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 testEmWarehouse = new EmWarehouse("testEmWarehouse", EmWarehouseArgs.builder()        
            .compartmentId(var_.compartment_id())
            .emBridgeId(oci_em_warehouse_em_bridge.test_em_bridge().id())
            .operationsInsightsWarehouseId(oci_opsi_operations_insights_warehouse.test_operations_insights_warehouse().id())
            .definedTags(Map.of("foo-namespace.bar-key", "value"))
            .displayName(var_.em_warehouse_display_name())
            .freeformTags(Map.of("bar-key", "value"))
            .build());

    }
}
import pulumi
import pulumi_oci as oci

test_em_warehouse = oci.em_warehouse.EmWarehouse("testEmWarehouse",
    compartment_id=var["compartment_id"],
    em_bridge_id=oci_em_warehouse_em_bridge["test_em_bridge"]["id"],
    operations_insights_warehouse_id=oci_opsi_operations_insights_warehouse["test_operations_insights_warehouse"]["id"],
    defined_tags={
        "foo-namespace.bar-key": "value",
    },
    display_name=var["em_warehouse_display_name"],
    freeform_tags={
        "bar-key": "value",
    })
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";

const testEmWarehouse = new oci.emwarehouse.EmWarehouse("testEmWarehouse", {
    compartmentId: _var.compartment_id,
    emBridgeId: oci_em_warehouse_em_bridge.test_em_bridge.id,
    operationsInsightsWarehouseId: oci_opsi_operations_insights_warehouse.test_operations_insights_warehouse.id,
    definedTags: {
        "foo-namespace.bar-key": "value",
    },
    displayName: _var.em_warehouse_display_name,
    freeformTags: {
        "bar-key": "value",
    },
});
resources:
  testEmWarehouse:
    type: oci:EmWarehouse:EmWarehouse
    properties:
      #Required
      compartmentId: ${var.compartment_id}
      emBridgeId: ${oci_em_warehouse_em_bridge.test_em_bridge.id}
      operationsInsightsWarehouseId: ${oci_opsi_operations_insights_warehouse.test_operations_insights_warehouse.id}
      #Optional
      definedTags:
        foo-namespace.bar-key: value
      displayName: ${var.em_warehouse_display_name}
      freeformTags:
        bar-key: value

Create EmWarehouse Resource

new EmWarehouse(name: string, args: EmWarehouseArgs, opts?: CustomResourceOptions);
@overload
def EmWarehouse(resource_name: str,
                opts: Optional[ResourceOptions] = None,
                compartment_id: Optional[str] = None,
                defined_tags: Optional[Mapping[str, Any]] = None,
                display_name: Optional[str] = None,
                em_bridge_id: Optional[str] = None,
                freeform_tags: Optional[Mapping[str, Any]] = None,
                operations_insights_warehouse_id: Optional[str] = None)
@overload
def EmWarehouse(resource_name: str,
                args: EmWarehouseArgs,
                opts: Optional[ResourceOptions] = None)
func NewEmWarehouse(ctx *Context, name string, args EmWarehouseArgs, opts ...ResourceOption) (*EmWarehouse, error)
public EmWarehouse(string name, EmWarehouseArgs args, CustomResourceOptions? opts = null)
public EmWarehouse(String name, EmWarehouseArgs args)
public EmWarehouse(String name, EmWarehouseArgs args, CustomResourceOptions options)
type: oci:EmWarehouse:EmWarehouse
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

name string
The unique name of the resource.
args EmWarehouseArgs
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 EmWarehouseArgs
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 EmWarehouseArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name string
The unique name of the resource.
args EmWarehouseArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name String
The unique name of the resource.
args EmWarehouseArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

EmWarehouse 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 EmWarehouse resource accepts the following input properties:

CompartmentId string

(Updatable) Compartment Identifier

EmBridgeId string

(Updatable) EMBridge Identifier

OperationsInsightsWarehouseId string

operations Insights Warehouse Identifier

DefinedTags Dictionary<string, object>

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

DisplayName string

EmWarehouse Identifier

FreeformTags 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"}

CompartmentId string

(Updatable) Compartment Identifier

EmBridgeId string

(Updatable) EMBridge Identifier

OperationsInsightsWarehouseId string

operations Insights Warehouse Identifier

DefinedTags map[string]interface{}

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

DisplayName string

EmWarehouse Identifier

FreeformTags 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"}

compartmentId String

(Updatable) Compartment Identifier

emBridgeId String

(Updatable) EMBridge Identifier

operationsInsightsWarehouseId String

operations Insights Warehouse Identifier

definedTags Map<String,Object>

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

displayName String

EmWarehouse Identifier

freeformTags 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"}

compartmentId string

(Updatable) Compartment Identifier

emBridgeId string

(Updatable) EMBridge Identifier

operationsInsightsWarehouseId string

operations Insights Warehouse Identifier

definedTags {[key: string]: any}

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

displayName string

EmWarehouse Identifier

freeformTags {[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"}

compartment_id str

(Updatable) Compartment Identifier

em_bridge_id str

(Updatable) EMBridge Identifier

operations_insights_warehouse_id str

operations Insights Warehouse Identifier

defined_tags Mapping[str, Any]

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

display_name str

EmWarehouse Identifier

freeform_tags 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"}

compartmentId String

(Updatable) Compartment Identifier

emBridgeId String

(Updatable) EMBridge Identifier

operationsInsightsWarehouseId String

operations Insights Warehouse Identifier

definedTags Map<Any>

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

displayName String

EmWarehouse Identifier

freeformTags 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"}

Outputs

All input properties are implicitly available as output properties. Additionally, the EmWarehouse resource produces the following output properties:

EmWarehouseType string

Type of the EmWarehouse.

Id string

The provider-assigned unique ID for this managed resource.

LatestEtlRunMessage string

Data Flow Run Status Message

LatestEtlRunStatus string

Data Flow Run Status

LatestEtlRunTime string

Data Flow Run Total Time

LifecycleDetails string

A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.

State string

The current state of the EmWarehouse.

SystemTags Dictionary<string, object>

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

TimeCreated string

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

TimeUpdated string

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

EmWarehouseType string

Type of the EmWarehouse.

Id string

The provider-assigned unique ID for this managed resource.

LatestEtlRunMessage string

Data Flow Run Status Message

LatestEtlRunStatus string

Data Flow Run Status

LatestEtlRunTime string

Data Flow Run Total Time

LifecycleDetails string

A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.

State string

The current state of the EmWarehouse.

SystemTags map[string]interface{}

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

TimeCreated string

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

TimeUpdated string

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

emWarehouseType String

Type of the EmWarehouse.

id String

The provider-assigned unique ID for this managed resource.

latestEtlRunMessage String

Data Flow Run Status Message

latestEtlRunStatus String

Data Flow Run Status

latestEtlRunTime String

Data Flow Run Total Time

lifecycleDetails String

A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.

state String

The current state of the EmWarehouse.

systemTags Map<String,Object>

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

timeCreated String

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

timeUpdated String

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

emWarehouseType string

Type of the EmWarehouse.

id string

The provider-assigned unique ID for this managed resource.

latestEtlRunMessage string

Data Flow Run Status Message

latestEtlRunStatus string

Data Flow Run Status

latestEtlRunTime string

Data Flow Run Total Time

lifecycleDetails string

A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.

state string

The current state of the EmWarehouse.

systemTags {[key: string]: any}

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

timeCreated string

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

timeUpdated string

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

em_warehouse_type str

Type of the EmWarehouse.

id str

The provider-assigned unique ID for this managed resource.

latest_etl_run_message str

Data Flow Run Status Message

latest_etl_run_status str

Data Flow Run Status

latest_etl_run_time str

Data Flow Run Total Time

lifecycle_details str

A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.

state str

The current state of the EmWarehouse.

system_tags Mapping[str, Any]

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

time_created str

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

time_updated str

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

emWarehouseType String

Type of the EmWarehouse.

id String

The provider-assigned unique ID for this managed resource.

latestEtlRunMessage String

Data Flow Run Status Message

latestEtlRunStatus String

Data Flow Run Status

latestEtlRunTime String

Data Flow Run Total Time

lifecycleDetails String

A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.

state String

The current state of the EmWarehouse.

systemTags Map<Any>

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

timeCreated String

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

timeUpdated String

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

Look up Existing EmWarehouse Resource

Get an existing EmWarehouse 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?: EmWarehouseState, opts?: CustomResourceOptions): EmWarehouse
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        compartment_id: Optional[str] = None,
        defined_tags: Optional[Mapping[str, Any]] = None,
        display_name: Optional[str] = None,
        em_bridge_id: Optional[str] = None,
        em_warehouse_type: Optional[str] = None,
        freeform_tags: Optional[Mapping[str, Any]] = None,
        latest_etl_run_message: Optional[str] = None,
        latest_etl_run_status: Optional[str] = None,
        latest_etl_run_time: Optional[str] = None,
        lifecycle_details: Optional[str] = None,
        operations_insights_warehouse_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) -> EmWarehouse
func GetEmWarehouse(ctx *Context, name string, id IDInput, state *EmWarehouseState, opts ...ResourceOption) (*EmWarehouse, error)
public static EmWarehouse Get(string name, Input<string> id, EmWarehouseState? state, CustomResourceOptions? opts = null)
public static EmWarehouse get(String name, Output<String> id, EmWarehouseState 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.
The following state arguments are supported:
CompartmentId string

(Updatable) Compartment Identifier

DefinedTags Dictionary<string, object>

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

DisplayName string

EmWarehouse Identifier

EmBridgeId string

(Updatable) EMBridge Identifier

EmWarehouseType string

Type of the EmWarehouse.

FreeformTags 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"}

LatestEtlRunMessage string

Data Flow Run Status Message

LatestEtlRunStatus string

Data Flow Run Status

LatestEtlRunTime string

Data Flow Run Total Time

LifecycleDetails string

A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.

OperationsInsightsWarehouseId string

operations Insights Warehouse Identifier

State string

The current state of the EmWarehouse.

SystemTags Dictionary<string, object>

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

TimeCreated string

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

TimeUpdated string

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

CompartmentId string

(Updatable) Compartment Identifier

DefinedTags map[string]interface{}

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

DisplayName string

EmWarehouse Identifier

EmBridgeId string

(Updatable) EMBridge Identifier

EmWarehouseType string

Type of the EmWarehouse.

FreeformTags 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"}

LatestEtlRunMessage string

Data Flow Run Status Message

LatestEtlRunStatus string

Data Flow Run Status

LatestEtlRunTime string

Data Flow Run Total Time

LifecycleDetails string

A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.

OperationsInsightsWarehouseId string

operations Insights Warehouse Identifier

State string

The current state of the EmWarehouse.

SystemTags map[string]interface{}

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

TimeCreated string

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

TimeUpdated string

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

compartmentId String

(Updatable) Compartment Identifier

definedTags Map<String,Object>

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

displayName String

EmWarehouse Identifier

emBridgeId String

(Updatable) EMBridge Identifier

emWarehouseType String

Type of the EmWarehouse.

freeformTags 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"}

latestEtlRunMessage String

Data Flow Run Status Message

latestEtlRunStatus String

Data Flow Run Status

latestEtlRunTime String

Data Flow Run Total Time

lifecycleDetails String

A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.

operationsInsightsWarehouseId String

operations Insights Warehouse Identifier

state String

The current state of the EmWarehouse.

systemTags Map<String,Object>

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

timeCreated String

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

timeUpdated String

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

compartmentId string

(Updatable) Compartment Identifier

definedTags {[key: string]: any}

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

displayName string

EmWarehouse Identifier

emBridgeId string

(Updatable) EMBridge Identifier

emWarehouseType string

Type of the EmWarehouse.

freeformTags {[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"}

latestEtlRunMessage string

Data Flow Run Status Message

latestEtlRunStatus string

Data Flow Run Status

latestEtlRunTime string

Data Flow Run Total Time

lifecycleDetails string

A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.

operationsInsightsWarehouseId string

operations Insights Warehouse Identifier

state string

The current state of the EmWarehouse.

systemTags {[key: string]: any}

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

timeCreated string

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

timeUpdated string

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

compartment_id str

(Updatable) Compartment Identifier

defined_tags Mapping[str, Any]

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

display_name str

EmWarehouse Identifier

em_bridge_id str

(Updatable) EMBridge Identifier

em_warehouse_type str

Type of the EmWarehouse.

freeform_tags 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"}

latest_etl_run_message str

Data Flow Run Status Message

latest_etl_run_status str

Data Flow Run Status

latest_etl_run_time str

Data Flow Run Total Time

lifecycle_details str

A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.

operations_insights_warehouse_id str

operations Insights Warehouse Identifier

state str

The current state of the EmWarehouse.

system_tags Mapping[str, Any]

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

time_created str

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

time_updated str

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

compartmentId String

(Updatable) Compartment Identifier

definedTags Map<Any>

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

displayName String

EmWarehouse Identifier

emBridgeId String

(Updatable) EMBridge Identifier

emWarehouseType String

Type of the EmWarehouse.

freeformTags 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"}

latestEtlRunMessage String

Data Flow Run Status Message

latestEtlRunStatus String

Data Flow Run Status

latestEtlRunTime String

Data Flow Run Total Time

lifecycleDetails String

A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.

operationsInsightsWarehouseId String

operations Insights Warehouse Identifier

state String

The current state of the EmWarehouse.

systemTags Map<Any>

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

timeCreated String

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

timeUpdated String

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

Import

EmWarehouses can be imported using the id, e.g.

 $ pulumi import oci:EmWarehouse/emWarehouse:EmWarehouse test_em_warehouse "id"

Package Details

Repository
oci pulumi/pulumi-oci
License
Apache-2.0
Notes

This Pulumi package is based on the oci Terraform Provider.