Oracle Cloud Infrastructure v3.11.1 published on Friday, Nov 14, 2025 by Pulumi
Oracle Cloud Infrastructure v3.11.1 published on Friday, Nov 14, 2025 by Pulumi
This data source provides the list of Ai Data Platforms in Oracle Cloud Infrastructure Ai Data Platform service.
Gets a list of AiDataPlatforms.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testAiDataPlatforms = oci.oci.getAiDataPlatformAiDataPlatforms({
compartmentId: compartmentId,
displayName: aiDataPlatformDisplayName,
excludeLifecycleState: aiDataPlatformExcludeLifecycleState,
id: aiDataPlatformId,
includeLegacy: aiDataPlatformIncludeLegacy,
state: aiDataPlatformState,
});
import pulumi
import pulumi_oci as oci
test_ai_data_platforms = oci.oci.get_ai_data_platform_ai_data_platforms(compartment_id=compartment_id,
display_name=ai_data_platform_display_name,
exclude_lifecycle_state=ai_data_platform_exclude_lifecycle_state,
id=ai_data_platform_id,
include_legacy=ai_data_platform_include_legacy,
state=ai_data_platform_state)
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.GetAiDataPlatformAiDataPlatforms(ctx, &oci.GetAiDataPlatformAiDataPlatformsArgs{
CompartmentId: pulumi.StringRef(compartmentId),
DisplayName: pulumi.StringRef(aiDataPlatformDisplayName),
ExcludeLifecycleState: pulumi.StringRef(aiDataPlatformExcludeLifecycleState),
Id: pulumi.StringRef(aiDataPlatformId),
IncludeLegacy: pulumi.StringRef(aiDataPlatformIncludeLegacy),
State: pulumi.StringRef(aiDataPlatformState),
}, nil)
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 testAiDataPlatforms = Oci.Oci.GetAiDataPlatformAiDataPlatforms.Invoke(new()
{
CompartmentId = compartmentId,
DisplayName = aiDataPlatformDisplayName,
ExcludeLifecycleState = aiDataPlatformExcludeLifecycleState,
Id = aiDataPlatformId,
IncludeLegacy = aiDataPlatformIncludeLegacy,
State = aiDataPlatformState,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.oci.OciFunctions;
import com.pulumi.oci.oci.inputs.GetAiDataPlatformAiDataPlatformsArgs;
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) {
final var testAiDataPlatforms = OciFunctions.getAiDataPlatformAiDataPlatforms(GetAiDataPlatformAiDataPlatformsArgs.builder()
.compartmentId(compartmentId)
.displayName(aiDataPlatformDisplayName)
.excludeLifecycleState(aiDataPlatformExcludeLifecycleState)
.id(aiDataPlatformId)
.includeLegacy(aiDataPlatformIncludeLegacy)
.state(aiDataPlatformState)
.build());
}
}
variables:
testAiDataPlatforms:
fn::invoke:
function: oci:oci:getAiDataPlatformAiDataPlatforms
arguments:
compartmentId: ${compartmentId}
displayName: ${aiDataPlatformDisplayName}
excludeLifecycleState: ${aiDataPlatformExcludeLifecycleState}
id: ${aiDataPlatformId}
includeLegacy: ${aiDataPlatformIncludeLegacy}
state: ${aiDataPlatformState}
Using getAiDataPlatformAiDataPlatforms
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getAiDataPlatformAiDataPlatforms(args: GetAiDataPlatformAiDataPlatformsArgs, opts?: InvokeOptions): Promise<GetAiDataPlatformAiDataPlatformsResult>
function getAiDataPlatformAiDataPlatformsOutput(args: GetAiDataPlatformAiDataPlatformsOutputArgs, opts?: InvokeOptions): Output<GetAiDataPlatformAiDataPlatformsResult>def get_ai_data_platform_ai_data_platforms(compartment_id: Optional[str] = None,
display_name: Optional[str] = None,
exclude_lifecycle_state: Optional[str] = None,
filters: Optional[Sequence[GetAiDataPlatformAiDataPlatformsFilter]] = None,
id: Optional[str] = None,
include_legacy: Optional[str] = None,
state: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetAiDataPlatformAiDataPlatformsResult
def get_ai_data_platform_ai_data_platforms_output(compartment_id: Optional[pulumi.Input[str]] = None,
display_name: Optional[pulumi.Input[str]] = None,
exclude_lifecycle_state: Optional[pulumi.Input[str]] = None,
filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetAiDataPlatformAiDataPlatformsFilterArgs]]]] = None,
id: Optional[pulumi.Input[str]] = None,
include_legacy: Optional[pulumi.Input[str]] = None,
state: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetAiDataPlatformAiDataPlatformsResult]func GetAiDataPlatformAiDataPlatforms(ctx *Context, args *GetAiDataPlatformAiDataPlatformsArgs, opts ...InvokeOption) (*GetAiDataPlatformAiDataPlatformsResult, error)
func GetAiDataPlatformAiDataPlatformsOutput(ctx *Context, args *GetAiDataPlatformAiDataPlatformsOutputArgs, opts ...InvokeOption) GetAiDataPlatformAiDataPlatformsResultOutput> Note: This function is named GetAiDataPlatformAiDataPlatforms in the Go SDK.
public static class GetAiDataPlatformAiDataPlatforms
{
public static Task<GetAiDataPlatformAiDataPlatformsResult> InvokeAsync(GetAiDataPlatformAiDataPlatformsArgs args, InvokeOptions? opts = null)
public static Output<GetAiDataPlatformAiDataPlatformsResult> Invoke(GetAiDataPlatformAiDataPlatformsInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetAiDataPlatformAiDataPlatformsResult> getAiDataPlatformAiDataPlatforms(GetAiDataPlatformAiDataPlatformsArgs args, InvokeOptions options)
public static Output<GetAiDataPlatformAiDataPlatformsResult> getAiDataPlatformAiDataPlatforms(GetAiDataPlatformAiDataPlatformsArgs args, InvokeOptions options)
fn::invoke:
function: oci:oci/getAiDataPlatformAiDataPlatforms:getAiDataPlatformAiDataPlatforms
arguments:
# arguments dictionaryThe following arguments are supported:
- Compartment
Id string - The OCID of the compartment in which to list resources.
- Display
Name string - A filter to return only resources that match the given display name exactly.
- Exclude
Lifecycle stringState - A filter to exclude resources that match the given lifecycle state. The state value is case-insensitive.
- Filters
List<Get
Ai Data Platform Ai Data Platforms Filter> - Id string
- The OCID of the AiDataPlatform.
- Include
Legacy string - This flag will determine if legacy instances will be returned.
- State string
- A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
- Compartment
Id string - The OCID of the compartment in which to list resources.
- Display
Name string - A filter to return only resources that match the given display name exactly.
- Exclude
Lifecycle stringState - A filter to exclude resources that match the given lifecycle state. The state value is case-insensitive.
- Filters
[]Get
Ai Data Platform Ai Data Platforms Filter - Id string
- The OCID of the AiDataPlatform.
- Include
Legacy string - This flag will determine if legacy instances will be returned.
- State string
- A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
- compartment
Id String - The OCID of the compartment in which to list resources.
- display
Name String - A filter to return only resources that match the given display name exactly.
- exclude
Lifecycle StringState - A filter to exclude resources that match the given lifecycle state. The state value is case-insensitive.
- filters
List<Get
Ai Data Platform Ai Data Platforms Filter> - id String
- The OCID of the AiDataPlatform.
- include
Legacy String - This flag will determine if legacy instances will be returned.
- state String
- A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
- compartment
Id string - The OCID of the compartment in which to list resources.
- display
Name string - A filter to return only resources that match the given display name exactly.
- exclude
Lifecycle stringState - A filter to exclude resources that match the given lifecycle state. The state value is case-insensitive.
- filters
Get
Ai Data Platform Ai Data Platforms Filter[] - id string
- The OCID of the AiDataPlatform.
- include
Legacy string - This flag will determine if legacy instances will be returned.
- state string
- A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
- compartment_
id str - The OCID of the compartment in which to list resources.
- display_
name str - A filter to return only resources that match the given display name exactly.
- exclude_
lifecycle_ strstate - A filter to exclude resources that match the given lifecycle state. The state value is case-insensitive.
- filters
Sequence[Get
Ai Data Platform Ai Data Platforms Filter] - id str
- The OCID of the AiDataPlatform.
- include_
legacy str - This flag will determine if legacy instances will be returned.
- state str
- A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
- compartment
Id String - The OCID of the compartment in which to list resources.
- display
Name String - A filter to return only resources that match the given display name exactly.
- exclude
Lifecycle StringState - A filter to exclude resources that match the given lifecycle state. The state value is case-insensitive.
- filters List<Property Map>
- id String
- The OCID of the AiDataPlatform.
- include
Legacy String - This flag will determine if legacy instances will be returned.
- state String
- A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
getAiDataPlatformAiDataPlatforms Result
The following output properties are available:
- Ai
Data List<GetPlatform Collections Ai Data Platform Ai Data Platforms Ai Data Platform Collection> - The list of ai_data_platform_collection.
- Compartment
Id string - The OCID of the compartment.
- Display
Name string - A user-friendly name. Does not have to be unique, and it's changeable.
- Exclude
Lifecycle stringState - Filters
List<Get
Ai Data Platform Ai Data Platforms Filter> - Id string
- The OCID of the AiDataPlatform.
- Include
Legacy string - State string
- The current state of the AiDataPlatform.
- Ai
Data []GetPlatform Collections Ai Data Platform Ai Data Platforms Ai Data Platform Collection - The list of ai_data_platform_collection.
- Compartment
Id string - The OCID of the compartment.
- Display
Name string - A user-friendly name. Does not have to be unique, and it's changeable.
- Exclude
Lifecycle stringState - Filters
[]Get
Ai Data Platform Ai Data Platforms Filter - Id string
- The OCID of the AiDataPlatform.
- Include
Legacy string - State string
- The current state of the AiDataPlatform.
- ai
Data List<GetPlatform Collections Ai Data Platform Ai Data Platforms Ai Data Platform Collection> - The list of ai_data_platform_collection.
- compartment
Id String - The OCID of the compartment.
- display
Name String - A user-friendly name. Does not have to be unique, and it's changeable.
- exclude
Lifecycle StringState - filters
List<Get
Ai Data Platform Ai Data Platforms Filter> - id String
- The OCID of the AiDataPlatform.
- include
Legacy String - state String
- The current state of the AiDataPlatform.
- ai
Data GetPlatform Collections Ai Data Platform Ai Data Platforms Ai Data Platform Collection[] - The list of ai_data_platform_collection.
- compartment
Id string - The OCID of the compartment.
- display
Name string - A user-friendly name. Does not have to be unique, and it's changeable.
- exclude
Lifecycle stringState - filters
Get
Ai Data Platform Ai Data Platforms Filter[] - id string
- The OCID of the AiDataPlatform.
- include
Legacy string - state string
- The current state of the AiDataPlatform.
- ai_
data_ Sequence[Getplatform_ collections Ai Data Platform Ai Data Platforms Ai Data Platform Collection] - The list of ai_data_platform_collection.
- compartment_
id str - The OCID of the compartment.
- display_
name str - A user-friendly name. Does not have to be unique, and it's changeable.
- exclude_
lifecycle_ strstate - filters
Sequence[Get
Ai Data Platform Ai Data Platforms Filter] - id str
- The OCID of the AiDataPlatform.
- include_
legacy str - state str
- The current state of the AiDataPlatform.
- ai
Data List<Property Map>Platform Collections - The list of ai_data_platform_collection.
- compartment
Id String - The OCID of the compartment.
- display
Name String - A user-friendly name. Does not have to be unique, and it's changeable.
- exclude
Lifecycle StringState - filters List<Property Map>
- id String
- The OCID of the AiDataPlatform.
- include
Legacy String - state String
- The current state of the AiDataPlatform.
Supporting Types
GetAiDataPlatformAiDataPlatformsAiDataPlatformCollection
GetAiDataPlatformAiDataPlatformsAiDataPlatformCollectionItem
- Ai
Data stringPlatform Type - The AiDataPlatform type.
- Alias
Key string - The alias Id of the AiDataPlatform which is the short form of OCID.
- Compartment
Id string - The OCID of the compartment in which to list resources.
- Created
By string - The OCID of the IAM user.
- Default
Workspace stringName - Dictionary<string, string>
- 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 - A filter to return only resources that match the given display name exactly.
- Dictionary<string, string>
- 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"} - Id string
- The OCID of the AiDataPlatform.
- 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
- A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
- Dictionary<string, string>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"} - 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 - The AiDataPlatform type.
- Alias
Key string - The alias Id of the AiDataPlatform which is the short form of OCID.
- Compartment
Id string - The OCID of the compartment in which to list resources.
- Created
By string - The OCID of the IAM user.
- Default
Workspace stringName - map[string]string
- 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 - A filter to return only resources that match the given display name exactly.
- map[string]string
- 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"} - Id string
- The OCID of the AiDataPlatform.
- 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
- A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
- map[string]string
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"} - 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 - The AiDataPlatform type.
- alias
Key String - The alias Id of the AiDataPlatform which is the short form of OCID.
- compartment
Id String - The OCID of the compartment in which to list resources.
- created
By String - The OCID of the IAM user.
- default
Workspace StringName - Map<String,String>
- 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 - A filter to return only resources that match the given display name exactly.
- Map<String,String>
- 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"} - id String
- The OCID of the AiDataPlatform.
- 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
- A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
- Map<String,String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"} - 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 - The AiDataPlatform type.
- alias
Key string - The alias Id of the AiDataPlatform which is the short form of OCID.
- compartment
Id string - The OCID of the compartment in which to list resources.
- created
By string - The OCID of the IAM user.
- default
Workspace stringName - {[key: string]: string}
- 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 - A filter to return only resources that match the given display name exactly.
- {[key: string]: string}
- 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"} - id string
- The OCID of the AiDataPlatform.
- 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
- A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
- {[key: string]: string}
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"} - 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 - The AiDataPlatform type.
- alias_
key str - The alias Id of the AiDataPlatform which is the short form of OCID.
- compartment_
id str - The OCID of the compartment in which to list resources.
- created_
by str - The OCID of the IAM user.
- default_
workspace_ strname - Mapping[str, str]
- 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 - A filter to return only resources that match the given display name exactly.
- Mapping[str, str]
- 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"} - id str
- The OCID of the AiDataPlatform.
- 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
- A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
- Mapping[str, str]
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"} - 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 - The AiDataPlatform type.
- alias
Key String - The alias Id of the AiDataPlatform which is the short form of OCID.
- compartment
Id String - The OCID of the compartment in which to list resources.
- created
By String - The OCID of the IAM user.
- default
Workspace StringName - Map<String>
- 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 - A filter to return only resources that match the given display name exactly.
- Map<String>
- 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"} - id String
- The OCID of the AiDataPlatform.
- 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
- A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
- Map<String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"} - 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.
GetAiDataPlatformAiDataPlatformsFilter
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
ociTerraform Provider.
Oracle Cloud Infrastructure v3.11.1 published on Friday, Nov 14, 2025 by Pulumi
