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:
- Compartment
Id string - (Updatable) The OCID of the compartment to create the AiDataPlatform in.
- Ai
Data stringPlatform Type - (Updatable) The AiDataPlatform type.
- Default
Workspace stringName - The name for the default workspace for the AiDataPlatform
- 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"} - Display
Name string - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- 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"} - 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
- Compartment
Id string - (Updatable) The OCID of the compartment to create the AiDataPlatform in.
- Ai
Data stringPlatform Type - (Updatable) The AiDataPlatform type.
- Default
Workspace stringName - The name for the default workspace for the AiDataPlatform
- 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"} - Display
Name string - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- 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"} - 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
- compartment
Id String - (Updatable) The OCID of the compartment to create the AiDataPlatform in.
- ai
Data StringPlatform Type - (Updatable) The AiDataPlatform type.
- default
Workspace StringName - The name for the default workspace for the AiDataPlatform
- 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"} - display
Name String - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- 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"} - 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
- compartment
Id string - (Updatable) The OCID of the compartment to create the AiDataPlatform in.
- ai
Data stringPlatform Type - (Updatable) The AiDataPlatform type.
- default
Workspace stringName - The name for the default workspace for the AiDataPlatform
- {[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"} - display
Name string - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- {[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"} - {[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_ strplatform_ type - (Updatable) The AiDataPlatform type.
- default_
workspace_ strname - The name for the default workspace for the AiDataPlatform
- 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.
- 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"} - 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
- compartment
Id String - (Updatable) The OCID of the compartment to create the AiDataPlatform in.
- ai
Data StringPlatform Type - (Updatable) The AiDataPlatform type.
- default
Workspace StringName - The name for the default workspace for the AiDataPlatform
- 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"} - display
Name String - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- 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"} - 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:
- Alias
Key string - The alias Id of the AiDataPlatform which is the short form of OCID.
- Created
By string - The OCID of the IAM user.
- Id string
- The provider-assigned unique ID for this managed resource.
- Lifecycle
Details 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.
- Time
Created string - The date and time the AiDataPlatform was created, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z - Time
Updated string - The date and time the AiDataPlatform was updated, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z - Web
Socket stringEndpoint - The WebSocket URL of the AiDataPlatform.
- Alias
Key string - The alias Id of the AiDataPlatform which is the short form of OCID.
- Created
By string - The OCID of the IAM user.
- Id string
- The provider-assigned unique ID for this managed resource.
- Lifecycle
Details 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.
- Time
Created string - The date and time the AiDataPlatform was created, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z - Time
Updated string - The date and time the AiDataPlatform was updated, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z - Web
Socket stringEndpoint - The WebSocket URL of the AiDataPlatform.
- alias
Key String - The alias Id of the AiDataPlatform which is the short form of OCID.
- created
By String - The OCID of the IAM user.
- id String
- The provider-assigned unique ID for this managed resource.
- lifecycle
Details 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.
- time
Created String - The date and time the AiDataPlatform was created, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z - time
Updated String - The date and time the AiDataPlatform was updated, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z - web
Socket StringEndpoint - The WebSocket URL of the AiDataPlatform.
- alias
Key string - The alias Id of the AiDataPlatform which is the short form of OCID.
- created
By string - The OCID of the IAM user.
- id string
- The provider-assigned unique ID for this managed resource.
- lifecycle
Details 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.
- time
Created string - The date and time the AiDataPlatform was created, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z - time
Updated string - The date and time the AiDataPlatform was updated, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z - web
Socket stringEndpoint - 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_ strendpoint - The WebSocket URL of the AiDataPlatform.
- alias
Key String - The alias Id of the AiDataPlatform which is the short form of OCID.
- created
By String - The OCID of the IAM user.
- id String
- The provider-assigned unique ID for this managed resource.
- lifecycle
Details 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.
- time
Created String - The date and time the AiDataPlatform was created, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z - time
Updated String - The date and time the AiDataPlatform was updated, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z - web
Socket StringEndpoint - 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) -> AiDataPlatformAiDataPlatformfunc 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.
- Ai
Data stringPlatform Type - (Updatable) The AiDataPlatform type.
- Alias
Key string - The alias Id of the AiDataPlatform which is the short form of OCID.
- Compartment
Id string - (Updatable) The OCID of the compartment to create the AiDataPlatform in.
- Created
By string - The OCID of the IAM user.
- Default
Workspace stringName - The name for the default workspace for the AiDataPlatform
- 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"} - Display
Name string - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- 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"} - Lifecycle
Details 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.
- 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
- Time
Created string - The date and time the AiDataPlatform was created, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z - Time
Updated string - The date and time the AiDataPlatform was updated, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z - Web
Socket stringEndpoint - The WebSocket URL of the AiDataPlatform.
- Ai
Data stringPlatform Type - (Updatable) The AiDataPlatform type.
- Alias
Key string - The alias Id of the AiDataPlatform which is the short form of OCID.
- Compartment
Id string - (Updatable) The OCID of the compartment to create the AiDataPlatform in.
- Created
By string - The OCID of the IAM user.
- Default
Workspace stringName - The name for the default workspace for the AiDataPlatform
- 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"} - Display
Name string - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- 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"} - Lifecycle
Details 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.
- 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
- Time
Created string - The date and time the AiDataPlatform was created, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z - Time
Updated string - The date and time the AiDataPlatform was updated, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z - Web
Socket stringEndpoint - The WebSocket URL of the AiDataPlatform.
- ai
Data StringPlatform Type - (Updatable) The AiDataPlatform type.
- alias
Key String - The alias Id of the AiDataPlatform which is the short form of OCID.
- compartment
Id String - (Updatable) The OCID of the compartment to create the AiDataPlatform in.
- created
By String - The OCID of the IAM user.
- default
Workspace StringName - The name for the default workspace for the AiDataPlatform
- 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"} - display
Name String - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- 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"} - lifecycle
Details 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.
- 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
- time
Created String - The date and time the AiDataPlatform was created, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z - time
Updated String - The date and time the AiDataPlatform was updated, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z - web
Socket StringEndpoint - The WebSocket URL of the AiDataPlatform.
- ai
Data stringPlatform Type - (Updatable) The AiDataPlatform type.
- alias
Key string - The alias Id of the AiDataPlatform which is the short form of OCID.
- compartment
Id string - (Updatable) The OCID of the compartment to create the AiDataPlatform in.
- created
By string - The OCID of the IAM user.
- default
Workspace stringName - The name for the default workspace for the AiDataPlatform
- {[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"} - display
Name string - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- {[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"} - lifecycle
Details 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.
- {[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
- time
Created string - The date and time the AiDataPlatform was created, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z - time
Updated string - The date and time the AiDataPlatform was updated, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z - web
Socket stringEndpoint - The WebSocket URL of the AiDataPlatform.
- ai_
data_ strplatform_ type - (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_ strname - The name for the default workspace for the AiDataPlatform
- 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.
- 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.
- 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_ strendpoint - The WebSocket URL of the AiDataPlatform.
- ai
Data StringPlatform Type - (Updatable) The AiDataPlatform type.
- alias
Key String - The alias Id of the AiDataPlatform which is the short form of OCID.
- compartment
Id String - (Updatable) The OCID of the compartment to create the AiDataPlatform in.
- created
By String - The OCID of the IAM user.
- default
Workspace StringName - The name for the default workspace for the AiDataPlatform
- 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"} - display
Name String - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- 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"} - lifecycle
Details 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.
- 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
- time
Created String - The date and time the AiDataPlatform was created, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z - time
Updated String - The date and time the AiDataPlatform was updated, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z - web
Socket StringEndpoint - 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
ociTerraform Provider.
