import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * This data source provides details about a specific Stack resource in Oracle Cloud Infrastructure Dif service. * * Gets information about a Stack. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testStack = oci.oci.getDifStack({ * stackId: testStackOciDifStack.id, * }); * ``` */ export declare function getDifStack(args: GetDifStackArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getDifStack. */ export interface GetDifStackArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Stack. */ stackId: string; } /** * A collection of values returned by getDifStack. */ export interface GetDifStackResult { /** * ADB details if adb is included in the services. */ readonly adbs: outputs.oci.GetDifStackAdb[]; readonly addServiceTrigger: number; /** * AI Data Platform Details if aidataplatform is included in services. */ readonly aidataplatforms: outputs.oci.GetDifStackAidataplatform[]; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ readonly compartmentId: string; /** * DATAFLOW details if dataflow is included in the services. */ readonly dataflows: outputs.oci.GetDifStackDataflow[]; /** * 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; }; readonly deployArtifactsTrigger: number; /** * name of the service */ 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; }; /** * GenAI Details if genai is included in services. */ readonly genais: outputs.oci.GetDifStackGenai[]; /** * GGCS details if ggcs is included in the services. */ readonly ggcs: outputs.oci.GetDifStackGgc[]; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Stack. */ readonly id: string; /** * A message that describes the current state of the Stack in more detail. For example, can be used to provide actionable information for a resource in the Failed state. */ readonly lifecycleDetails: string; /** * email id to which the stack notifications would be sent. */ readonly notificationEmail: string; /** * Object Storage Details if object storage is included in services. */ readonly objectstorages: outputs.oci.GetDifStackObjectstorage[]; /** * OKE Details if oke is included in services. */ readonly okes: outputs.oci.GetDifStackOke[]; /** * OMK Details if omk is included in services. */ readonly omks: outputs.oci.GetDifStackOmk[]; /** * Details of the service onboarded for the data intelligence stack. */ readonly serviceDetails: outputs.oci.GetDifStackServiceDetail[]; /** * List of services to be onboarded for the stack. */ readonly services: string[]; readonly stackId: string; /** * List of templates to be onboarded for the stack. */ readonly stackTemplates: string[]; /** * The current state of the Stack. */ readonly state: string; /** * The OCID of the subnet of the GGCS deployment's private endpoint. */ readonly subnetId: 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 Stack 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 Stack 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; } /** * This data source provides details about a specific Stack resource in Oracle Cloud Infrastructure Dif service. * * Gets information about a Stack. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testStack = oci.oci.getDifStack({ * stackId: testStackOciDifStack.id, * }); * ``` */ export declare function getDifStackOutput(args: GetDifStackOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getDifStack. */ export interface GetDifStackOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Stack. */ stackId: pulumi.Input; } //# sourceMappingURL=getDifStack.d.ts.map