1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. oci
  5. AiDataPlatformAiDataPlatform
Oracle Cloud Infrastructure v3.11.1 published on Friday, Nov 14, 2025 by Pulumi
oci logo
Oracle Cloud Infrastructure v3.11.1 published on Friday, Nov 14, 2025 by Pulumi

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testAiDataPlatform = new oci.oci.AiDataPlatformAiDataPlatform("test_ai_data_platform", {
        compartmentId: compartmentId,
        aiDataPlatformType: aiDataPlatformAiDataPlatformType,
        defaultWorkspaceName: testWorkspace.name,
        definedTags: {
            "Operations.CostCenter": "42",
        },
        displayName: aiDataPlatformDisplayName,
        freeformTags: {
            Department: "Finance",
        },
        systemTags: aiDataPlatformSystemTags,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_ai_data_platform = oci.oci.AiDataPlatformAiDataPlatform("test_ai_data_platform",
        compartment_id=compartment_id,
        ai_data_platform_type=ai_data_platform_ai_data_platform_type,
        default_workspace_name=test_workspace["name"],
        defined_tags={
            "Operations.CostCenter": "42",
        },
        display_name=ai_data_platform_display_name,
        freeform_tags={
            "Department": "Finance",
        },
        system_tags=ai_data_platform_system_tags)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-oci/sdk/v3/go/oci/oci"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := oci.NewAiDataPlatformAiDataPlatform(ctx, "test_ai_data_platform", &oci.AiDataPlatformAiDataPlatformArgs{
    			CompartmentId:        pulumi.Any(compartmentId),
    			AiDataPlatformType:   pulumi.Any(aiDataPlatformAiDataPlatformType),
    			DefaultWorkspaceName: pulumi.Any(testWorkspace.Name),
    			DefinedTags: pulumi.StringMap{
    				"Operations.CostCenter": pulumi.String("42"),
    			},
    			DisplayName: pulumi.Any(aiDataPlatformDisplayName),
    			FreeformTags: pulumi.StringMap{
    				"Department": pulumi.String("Finance"),
    			},
    			SystemTags: pulumi.Any(aiDataPlatformSystemTags),
    		})
    		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 testAiDataPlatform = new Oci.Oci.AiDataPlatformAiDataPlatform("test_ai_data_platform", new()
        {
            CompartmentId = compartmentId,
            AiDataPlatformType = aiDataPlatformAiDataPlatformType,
            DefaultWorkspaceName = testWorkspace.Name,
            DefinedTags = 
            {
                { "Operations.CostCenter", "42" },
            },
            DisplayName = aiDataPlatformDisplayName,
            FreeformTags = 
            {
                { "Department", "Finance" },
            },
            SystemTags = aiDataPlatformSystemTags,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.oci.AiDataPlatformAiDataPlatform;
    import com.pulumi.oci.oci.AiDataPlatformAiDataPlatformArgs;
    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 testAiDataPlatform = new AiDataPlatformAiDataPlatform("testAiDataPlatform", AiDataPlatformAiDataPlatformArgs.builder()
                .compartmentId(compartmentId)
                .aiDataPlatformType(aiDataPlatformAiDataPlatformType)
                .defaultWorkspaceName(testWorkspace.name())
                .definedTags(Map.of("Operations.CostCenter", "42"))
                .displayName(aiDataPlatformDisplayName)
                .freeformTags(Map.of("Department", "Finance"))
                .systemTags(aiDataPlatformSystemTags)
                .build());
    
        }
    }
    
    resources:
      testAiDataPlatform:
        type: oci:oci:AiDataPlatformAiDataPlatform
        name: test_ai_data_platform
        properties:
          compartmentId: ${compartmentId}
          aiDataPlatformType: ${aiDataPlatformAiDataPlatformType}
          defaultWorkspaceName: ${testWorkspace.name}
          definedTags:
            Operations.CostCenter: '42'
          displayName: ${aiDataPlatformDisplayName}
          freeformTags:
            Department: Finance
          systemTags: ${aiDataPlatformSystemTags}
    

    Create AiDataPlatformAiDataPlatform Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new AiDataPlatformAiDataPlatform(name: string, args: AiDataPlatformAiDataPlatformArgs, opts?: CustomResourceOptions);
    @overload
    def AiDataPlatformAiDataPlatform(resource_name: str,
                                     args: AiDataPlatformAiDataPlatformArgs,
                                     opts: Optional[ResourceOptions] = None)
    
    @overload
    def AiDataPlatformAiDataPlatform(resource_name: str,
                                     opts: Optional[ResourceOptions] = None,
                                     compartment_id: Optional[str] = None,
                                     ai_data_platform_type: Optional[str] = None,
                                     default_workspace_name: Optional[str] = None,
                                     defined_tags: Optional[Mapping[str, str]] = None,
                                     display_name: Optional[str] = None,
                                     freeform_tags: Optional[Mapping[str, str]] = None,
                                     system_tags: Optional[Mapping[str, str]] = None)
    func NewAiDataPlatformAiDataPlatform(ctx *Context, name string, args AiDataPlatformAiDataPlatformArgs, opts ...ResourceOption) (*AiDataPlatformAiDataPlatform, error)
    public AiDataPlatformAiDataPlatform(string name, AiDataPlatformAiDataPlatformArgs args, CustomResourceOptions? opts = null)
    public AiDataPlatformAiDataPlatform(String name, AiDataPlatformAiDataPlatformArgs args)
    public AiDataPlatformAiDataPlatform(String name, AiDataPlatformAiDataPlatformArgs args, CustomResourceOptions options)
    
    type: oci:oci:AiDataPlatformAiDataPlatform
    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 AiDataPlatformAiDataPlatformArgs
    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 AiDataPlatformAiDataPlatformArgs
    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 AiDataPlatformAiDataPlatformArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args AiDataPlatformAiDataPlatformArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args AiDataPlatformAiDataPlatformArgs
    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 aiDataPlatformAiDataPlatformResource = new Oci.Oci.AiDataPlatformAiDataPlatform("aiDataPlatformAiDataPlatformResource", new()
    {
        CompartmentId = "string",
        AiDataPlatformType = "string",
        DefaultWorkspaceName = "string",
        DefinedTags = 
        {
            { "string", "string" },
        },
        DisplayName = "string",
        FreeformTags = 
        {
            { "string", "string" },
        },
        SystemTags = 
        {
            { "string", "string" },
        },
    });
    
    example, err := oci.NewAiDataPlatformAiDataPlatform(ctx, "aiDataPlatformAiDataPlatformResource", &oci.AiDataPlatformAiDataPlatformArgs{
    	CompartmentId:        pulumi.String("string"),
    	AiDataPlatformType:   pulumi.String("string"),
    	DefaultWorkspaceName: pulumi.String("string"),
    	DefinedTags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	DisplayName: pulumi.String("string"),
    	FreeformTags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	SystemTags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    })
    
    var aiDataPlatformAiDataPlatformResource = new AiDataPlatformAiDataPlatform("aiDataPlatformAiDataPlatformResource", AiDataPlatformAiDataPlatformArgs.builder()
        .compartmentId("string")
        .aiDataPlatformType("string")
        .defaultWorkspaceName("string")
        .definedTags(Map.of("string", "string"))
        .displayName("string")
        .freeformTags(Map.of("string", "string"))
        .systemTags(Map.of("string", "string"))
        .build());
    
    ai_data_platform_ai_data_platform_resource = oci.oci.AiDataPlatformAiDataPlatform("aiDataPlatformAiDataPlatformResource",
        compartment_id="string",
        ai_data_platform_type="string",
        default_workspace_name="string",
        defined_tags={
            "string": "string",
        },
        display_name="string",
        freeform_tags={
            "string": "string",
        },
        system_tags={
            "string": "string",
        })
    
    const aiDataPlatformAiDataPlatformResource = new oci.oci.AiDataPlatformAiDataPlatform("aiDataPlatformAiDataPlatformResource", {
        compartmentId: "string",
        aiDataPlatformType: "string",
        defaultWorkspaceName: "string",
        definedTags: {
            string: "string",
        },
        displayName: "string",
        freeformTags: {
            string: "string",
        },
        systemTags: {
            string: "string",
        },
    });
    
    type: oci:oci:AiDataPlatformAiDataPlatform
    properties:
        aiDataPlatformType: string
        compartmentId: string
        defaultWorkspaceName: string
        definedTags:
            string: string
        displayName: string
        freeformTags:
            string: string
        systemTags:
            string: string
    

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

    CompartmentId string
    (Updatable) The OCID of the compartment to create the AiDataPlatform in.
    AiDataPlatformType string
    (Updatable) The AiDataPlatform type.
    DefaultWorkspaceName string
    The name for the default workspace for the AiDataPlatform
    DefinedTags Dictionary<string, string>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    DisplayName string
    (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    FreeformTags Dictionary<string, string>
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    SystemTags Dictionary<string, string>

    (Updatable) System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}

    ** 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

    CompartmentId string
    (Updatable) The OCID of the compartment to create the AiDataPlatform in.
    AiDataPlatformType string
    (Updatable) The AiDataPlatform type.
    DefaultWorkspaceName string
    The name for the default workspace for the AiDataPlatform
    DefinedTags map[string]string
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    DisplayName string
    (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    FreeformTags map[string]string
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    SystemTags map[string]string

    (Updatable) System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}

    ** 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

    compartmentId String
    (Updatable) The OCID of the compartment to create the AiDataPlatform in.
    aiDataPlatformType String
    (Updatable) The AiDataPlatform type.
    defaultWorkspaceName String
    The name for the default workspace for the AiDataPlatform
    definedTags Map<String,String>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    displayName String
    (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    freeformTags Map<String,String>
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    systemTags Map<String,String>

    (Updatable) System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}

    ** 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

    compartmentId string
    (Updatable) The OCID of the compartment to create the AiDataPlatform in.
    aiDataPlatformType string
    (Updatable) The AiDataPlatform type.
    defaultWorkspaceName string
    The name for the default workspace for the AiDataPlatform
    definedTags {[key: string]: string}
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    displayName string
    (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    freeformTags {[key: string]: string}
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    systemTags {[key: string]: string}

    (Updatable) System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}

    ** 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

    compartment_id str
    (Updatable) The OCID of the compartment to create the AiDataPlatform in.
    ai_data_platform_type str
    (Updatable) The AiDataPlatform type.
    default_workspace_name str
    The name for the default workspace for the AiDataPlatform
    defined_tags Mapping[str, str]
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    display_name str
    (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    freeform_tags Mapping[str, str]
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    system_tags Mapping[str, str]

    (Updatable) System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}

    ** 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

    compartmentId String
    (Updatable) The OCID of the compartment to create the AiDataPlatform in.
    aiDataPlatformType String
    (Updatable) The AiDataPlatform type.
    defaultWorkspaceName String
    The name for the default workspace for the AiDataPlatform
    definedTags Map<String>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    displayName String
    (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    freeformTags Map<String>
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    systemTags Map<String>

    (Updatable) System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}

    ** 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

    Outputs

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

    AliasKey string
    The alias Id of the AiDataPlatform which is the short form of OCID.
    CreatedBy string
    The OCID of the IAM user.
    Id string
    The provider-assigned unique ID for this managed resource.
    LifecycleDetails string
    A message that describes the current state of the AiDataPlatform in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
    State string
    The current state of the AiDataPlatform.
    TimeCreated string
    The date and time the AiDataPlatform was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    TimeUpdated string
    The date and time the AiDataPlatform was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    WebSocketEndpoint string
    The WebSocket URL of the AiDataPlatform.
    AliasKey string
    The alias Id of the AiDataPlatform which is the short form of OCID.
    CreatedBy string
    The OCID of the IAM user.
    Id string
    The provider-assigned unique ID for this managed resource.
    LifecycleDetails string
    A message that describes the current state of the AiDataPlatform in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
    State string
    The current state of the AiDataPlatform.
    TimeCreated string
    The date and time the AiDataPlatform was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    TimeUpdated string
    The date and time the AiDataPlatform was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    WebSocketEndpoint string
    The WebSocket URL of the AiDataPlatform.
    aliasKey String
    The alias Id of the AiDataPlatform which is the short form of OCID.
    createdBy String
    The OCID of the IAM user.
    id String
    The provider-assigned unique ID for this managed resource.
    lifecycleDetails String
    A message that describes the current state of the AiDataPlatform in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
    state String
    The current state of the AiDataPlatform.
    timeCreated String
    The date and time the AiDataPlatform was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    timeUpdated String
    The date and time the AiDataPlatform was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    webSocketEndpoint String
    The WebSocket URL of the AiDataPlatform.
    aliasKey string
    The alias Id of the AiDataPlatform which is the short form of OCID.
    createdBy string
    The OCID of the IAM user.
    id string
    The provider-assigned unique ID for this managed resource.
    lifecycleDetails string
    A message that describes the current state of the AiDataPlatform in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
    state string
    The current state of the AiDataPlatform.
    timeCreated string
    The date and time the AiDataPlatform was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    timeUpdated string
    The date and time the AiDataPlatform was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    webSocketEndpoint string
    The WebSocket URL of the AiDataPlatform.
    alias_key str
    The alias Id of the AiDataPlatform which is the short form of OCID.
    created_by str
    The OCID of the IAM user.
    id str
    The provider-assigned unique ID for this managed resource.
    lifecycle_details str
    A message that describes the current state of the AiDataPlatform in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
    state str
    The current state of the AiDataPlatform.
    time_created str
    The date and time the AiDataPlatform was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    time_updated str
    The date and time the AiDataPlatform was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    web_socket_endpoint str
    The WebSocket URL of the AiDataPlatform.
    aliasKey String
    The alias Id of the AiDataPlatform which is the short form of OCID.
    createdBy String
    The OCID of the IAM user.
    id String
    The provider-assigned unique ID for this managed resource.
    lifecycleDetails String
    A message that describes the current state of the AiDataPlatform in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
    state String
    The current state of the AiDataPlatform.
    timeCreated String
    The date and time the AiDataPlatform was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    timeUpdated String
    The date and time the AiDataPlatform was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    webSocketEndpoint String
    The WebSocket URL of the AiDataPlatform.

    Look up Existing AiDataPlatformAiDataPlatform Resource

    Get an existing AiDataPlatformAiDataPlatform 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?: AiDataPlatformAiDataPlatformState, opts?: CustomResourceOptions): AiDataPlatformAiDataPlatform
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            ai_data_platform_type: Optional[str] = None,
            alias_key: Optional[str] = None,
            compartment_id: Optional[str] = None,
            created_by: Optional[str] = None,
            default_workspace_name: Optional[str] = None,
            defined_tags: Optional[Mapping[str, str]] = None,
            display_name: Optional[str] = None,
            freeform_tags: Optional[Mapping[str, str]] = None,
            lifecycle_details: Optional[str] = None,
            state: Optional[str] = None,
            system_tags: Optional[Mapping[str, str]] = None,
            time_created: Optional[str] = None,
            time_updated: Optional[str] = None,
            web_socket_endpoint: Optional[str] = None) -> AiDataPlatformAiDataPlatform
    func GetAiDataPlatformAiDataPlatform(ctx *Context, name string, id IDInput, state *AiDataPlatformAiDataPlatformState, opts ...ResourceOption) (*AiDataPlatformAiDataPlatform, error)
    public static AiDataPlatformAiDataPlatform Get(string name, Input<string> id, AiDataPlatformAiDataPlatformState? state, CustomResourceOptions? opts = null)
    public static AiDataPlatformAiDataPlatform get(String name, Output<String> id, AiDataPlatformAiDataPlatformState state, CustomResourceOptions options)
    resources:  _:    type: oci:oci:AiDataPlatformAiDataPlatform    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.
    The following state arguments are supported:
    AiDataPlatformType string
    (Updatable) The AiDataPlatform type.
    AliasKey string
    The alias Id of the AiDataPlatform which is the short form of OCID.
    CompartmentId string
    (Updatable) The OCID of the compartment to create the AiDataPlatform in.
    CreatedBy string
    The OCID of the IAM user.
    DefaultWorkspaceName string
    The name for the default workspace for the AiDataPlatform
    DefinedTags Dictionary<string, string>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    DisplayName string
    (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    FreeformTags Dictionary<string, string>
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    LifecycleDetails string
    A message that describes the current state of the AiDataPlatform in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
    State string
    The current state of the AiDataPlatform.
    SystemTags Dictionary<string, string>

    (Updatable) System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}

    ** 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

    TimeCreated string
    The date and time the AiDataPlatform was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    TimeUpdated string
    The date and time the AiDataPlatform was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    WebSocketEndpoint string
    The WebSocket URL of the AiDataPlatform.
    AiDataPlatformType string
    (Updatable) The AiDataPlatform type.
    AliasKey string
    The alias Id of the AiDataPlatform which is the short form of OCID.
    CompartmentId string
    (Updatable) The OCID of the compartment to create the AiDataPlatform in.
    CreatedBy string
    The OCID of the IAM user.
    DefaultWorkspaceName string
    The name for the default workspace for the AiDataPlatform
    DefinedTags map[string]string
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    DisplayName string
    (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    FreeformTags map[string]string
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    LifecycleDetails string
    A message that describes the current state of the AiDataPlatform in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
    State string
    The current state of the AiDataPlatform.
    SystemTags map[string]string

    (Updatable) System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}

    ** 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

    TimeCreated string
    The date and time the AiDataPlatform was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    TimeUpdated string
    The date and time the AiDataPlatform was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    WebSocketEndpoint string
    The WebSocket URL of the AiDataPlatform.
    aiDataPlatformType String
    (Updatable) The AiDataPlatform type.
    aliasKey String
    The alias Id of the AiDataPlatform which is the short form of OCID.
    compartmentId String
    (Updatable) The OCID of the compartment to create the AiDataPlatform in.
    createdBy String
    The OCID of the IAM user.
    defaultWorkspaceName String
    The name for the default workspace for the AiDataPlatform
    definedTags Map<String,String>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    displayName String
    (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    freeformTags Map<String,String>
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    lifecycleDetails String
    A message that describes the current state of the AiDataPlatform in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
    state String
    The current state of the AiDataPlatform.
    systemTags Map<String,String>

    (Updatable) System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}

    ** 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

    timeCreated String
    The date and time the AiDataPlatform was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    timeUpdated String
    The date and time the AiDataPlatform was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    webSocketEndpoint String
    The WebSocket URL of the AiDataPlatform.
    aiDataPlatformType string
    (Updatable) The AiDataPlatform type.
    aliasKey string
    The alias Id of the AiDataPlatform which is the short form of OCID.
    compartmentId string
    (Updatable) The OCID of the compartment to create the AiDataPlatform in.
    createdBy string
    The OCID of the IAM user.
    defaultWorkspaceName string
    The name for the default workspace for the AiDataPlatform
    definedTags {[key: string]: string}
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    displayName string
    (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    freeformTags {[key: string]: string}
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    lifecycleDetails string
    A message that describes the current state of the AiDataPlatform in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
    state string
    The current state of the AiDataPlatform.
    systemTags {[key: string]: string}

    (Updatable) System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}

    ** 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

    timeCreated string
    The date and time the AiDataPlatform was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    timeUpdated string
    The date and time the AiDataPlatform was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    webSocketEndpoint string
    The WebSocket URL of the AiDataPlatform.
    ai_data_platform_type str
    (Updatable) The AiDataPlatform type.
    alias_key str
    The alias Id of the AiDataPlatform which is the short form of OCID.
    compartment_id str
    (Updatable) The OCID of the compartment to create the AiDataPlatform in.
    created_by str
    The OCID of the IAM user.
    default_workspace_name str
    The name for the default workspace for the AiDataPlatform
    defined_tags Mapping[str, str]
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    display_name str
    (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    freeform_tags Mapping[str, str]
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    lifecycle_details str
    A message that describes the current state of the AiDataPlatform in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
    state str
    The current state of the AiDataPlatform.
    system_tags Mapping[str, str]

    (Updatable) System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}

    ** 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

    time_created str
    The date and time the AiDataPlatform was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    time_updated str
    The date and time the AiDataPlatform was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    web_socket_endpoint str
    The WebSocket URL of the AiDataPlatform.
    aiDataPlatformType String
    (Updatable) The AiDataPlatform type.
    aliasKey String
    The alias Id of the AiDataPlatform which is the short form of OCID.
    compartmentId String
    (Updatable) The OCID of the compartment to create the AiDataPlatform in.
    createdBy String
    The OCID of the IAM user.
    defaultWorkspaceName String
    The name for the default workspace for the AiDataPlatform
    definedTags Map<String>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    displayName String
    (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    freeformTags Map<String>
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    lifecycleDetails String
    A message that describes the current state of the AiDataPlatform in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
    state String
    The current state of the AiDataPlatform.
    systemTags Map<String>

    (Updatable) System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}

    ** 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

    timeCreated String
    The date and time the AiDataPlatform was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    timeUpdated String
    The date and time the AiDataPlatform was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    webSocketEndpoint String
    The WebSocket URL of the AiDataPlatform.

    Import

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

    $ pulumi import oci:oci/aiDataPlatformAiDataPlatform:AiDataPlatformAiDataPlatform test_ai_data_platform "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.
    oci logo
    Oracle Cloud Infrastructure v3.11.1 published on Friday, Nov 14, 2025 by Pulumi
      Meet Neo: Your AI Platform Teammate