import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * This data source provides details about a specific Compute Gpu Memory Cluster resource in Oracle Cloud Infrastructure Core service. * * Gets information about the specified compute GPU memory cluster * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testComputeGpuMemoryCluster = oci.core.getComputeGpuMemoryCluster({ * computeGpuMemoryClusterId: testComputeGpuMemoryClusterOciCoreComputeGpuMemoryCluster.id, * }); * ``` */ export declare function getComputeGpuMemoryCluster(args: GetComputeGpuMemoryClusterArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getComputeGpuMemoryCluster. */ export interface GetComputeGpuMemoryClusterArgs { /** * The OCID of the compute GPU memory cluster. */ computeGpuMemoryClusterId: string; } /** * A collection of values returned by getComputeGpuMemoryCluster. */ export interface GetComputeGpuMemoryClusterResult { /** * The availability domain of the GPU Memory Cluster. */ readonly availabilityDomain: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment that contains the compute GPU memory cluster. */ readonly compartmentId: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compute cluster. */ readonly computeClusterId: string; readonly computeGpuMemoryClusterId: 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. Avoid entering confidential information. */ 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; }; /** * Configuration settings for GPU Memory Cluster scaling. */ readonly gpuMemoryClusterScaleConfigs: outputs.Core.GetComputeGpuMemoryClusterGpuMemoryClusterScaleConfig[]; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the GPU memory fabric. */ readonly gpuMemoryFabricId: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for the Customer-unique GPU Memory Cluster */ readonly id: string; /** * The OCID of the Instance Configuration used to source launch details for this instance. */ readonly instanceConfigurationId: string; /** * Unique list of OCIDs for private IPs (IPv4/IPv6) associated with the GPU Memory Cluster */ readonly privateIpIds: string[]; /** * The size represents the total number of instances in the GPU Memory Cluster, including both running instances and those still in the process of launching. */ readonly size: string; /** * The lifecycle state of the GPU Memory Cluster */ readonly state: string; /** * Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}` */ readonly systemTags: { [key: string]: string; }; /** * The date and time the GPU Memory Cluster was created. Example: `2016-09-15T21:10:29.600Z` */ readonly timeCreated: string; } /** * This data source provides details about a specific Compute Gpu Memory Cluster resource in Oracle Cloud Infrastructure Core service. * * Gets information about the specified compute GPU memory cluster * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testComputeGpuMemoryCluster = oci.core.getComputeGpuMemoryCluster({ * computeGpuMemoryClusterId: testComputeGpuMemoryClusterOciCoreComputeGpuMemoryCluster.id, * }); * ``` */ export declare function getComputeGpuMemoryClusterOutput(args: GetComputeGpuMemoryClusterOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getComputeGpuMemoryCluster. */ export interface GetComputeGpuMemoryClusterOutputArgs { /** * The OCID of the compute GPU memory cluster. */ computeGpuMemoryClusterId: pulumi.Input; } //# sourceMappingURL=getComputeGpuMemoryCluster.d.ts.map