import * as pulumi from "@pulumi/pulumi"; /** * This data source provides details about a specific Ai Data Platform resource in Oracle Cloud Infrastructure Ai Data Platform service. * * Gets information about a AiDataPlatform. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testAiDataPlatform = oci.oci.getAiDataPlatformAiDataPlatform({ * aiDataPlatformId: testAiDataPlatformOciAiDataPlatformAiDataPlatform.id, * }); * ``` */ export declare function getAiDataPlatformAiDataPlatform(args: GetAiDataPlatformAiDataPlatformArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getAiDataPlatformAiDataPlatform. */ export interface GetAiDataPlatformAiDataPlatformArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the AiDataPlatform. */ aiDataPlatformId: string; } /** * A collection of values returned by getAiDataPlatformAiDataPlatform. */ export interface GetAiDataPlatformAiDataPlatformResult { readonly aiDataPlatformId: string; /** * The AiDataPlatform type. */ readonly aiDataPlatformType: string; /** * The current aiFeatureStatus of the AiDataPlatform. */ readonly aiFeatureStatus: string; /** * The alias Id of the AiDataPlatform which is the short form of OCID. */ readonly aliasKey: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ readonly compartmentId: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the IAM user. */ readonly createdBy: string; readonly defaultWorkspaceName: string; /** * Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}` */ readonly definedTags: { [key: string]: string; }; /** * A user-friendly name. Does not have to be unique, and it's changeable. */ readonly displayName: 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](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}` */ readonly freeformTags: { [key: string]: string; }; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the AiDataPlatform. */ readonly id: string; readonly isEnableAiFeature: boolean; /** * 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. */ readonly lifecycleDetails: string; /** * The current state of the AiDataPlatform. */ readonly state: string; /** * System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}` */ readonly systemTags: { [key: string]: string; }; /** * The date and time the AiDataPlatform was created, in the format defined by [RFC 3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z` */ readonly timeCreated: string; /** * The date and time the AiDataPlatform was updated, in the format defined by [RFC 3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z` */ readonly timeUpdated: string; readonly vectorDbAdminCred: string; readonly vectorDbAdminSecretId: string; readonly vectorDbId: string; /** * The WebSocket URL of the AiDataPlatform. */ readonly webSocketEndpoint: string; } /** * This data source provides details about a specific Ai Data Platform resource in Oracle Cloud Infrastructure Ai Data Platform service. * * Gets information about a AiDataPlatform. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testAiDataPlatform = oci.oci.getAiDataPlatformAiDataPlatform({ * aiDataPlatformId: testAiDataPlatformOciAiDataPlatformAiDataPlatform.id, * }); * ``` */ export declare function getAiDataPlatformAiDataPlatformOutput(args: GetAiDataPlatformAiDataPlatformOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getAiDataPlatformAiDataPlatform. */ export interface GetAiDataPlatformAiDataPlatformOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the AiDataPlatform. */ aiDataPlatformId: pulumi.Input; } //# sourceMappingURL=getAiDataPlatformAiDataPlatform.d.ts.map