import * as pulumi from "@pulumi/pulumi"; /** * This data source provides details about a specific Cluster Workload Mapping resource in Oracle Cloud Infrastructure Container Engine service. * * Get the specified workloadMapping for a cluster. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testClusterWorkloadMapping = oci.containerengine.getClusterWorkloadMapping({ * clusterId: testCluster.id, * workloadMappingId: testWorkloadMapping.id, * }); * ``` */ export declare function getClusterWorkloadMapping(args: GetClusterWorkloadMappingArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getClusterWorkloadMapping. */ export interface GetClusterWorkloadMappingArgs { /** * The OCID of the cluster. */ clusterId: string; /** * The OCID of the workloadMapping. */ workloadMappingId: string; } /** * A collection of values returned by getClusterWorkloadMapping. */ export interface GetClusterWorkloadMappingResult { /** * The OCID of the cluster. */ readonly clusterId: 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; }; /** * 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 of the workloadMapping. */ readonly id: string; /** * The OCID of the mapped customer compartment. */ readonly mappedCompartmentId: string; /** * The OCID of the mapped customer tenancy. */ readonly mappedTenancyId: string; /** * The namespace of the workloadMapping. */ readonly namespace: string; /** * The state of the workloadMapping. */ readonly state: string; /** * The time the cluster was created. */ readonly timeCreated: string; readonly workloadMappingId: string; } /** * This data source provides details about a specific Cluster Workload Mapping resource in Oracle Cloud Infrastructure Container Engine service. * * Get the specified workloadMapping for a cluster. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testClusterWorkloadMapping = oci.containerengine.getClusterWorkloadMapping({ * clusterId: testCluster.id, * workloadMappingId: testWorkloadMapping.id, * }); * ``` */ export declare function getClusterWorkloadMappingOutput(args: GetClusterWorkloadMappingOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getClusterWorkloadMapping. */ export interface GetClusterWorkloadMappingOutputArgs { /** * The OCID of the cluster. */ clusterId: pulumi.Input; /** * The OCID of the workloadMapping. */ workloadMappingId: pulumi.Input; } //# sourceMappingURL=getClusterWorkloadMapping.d.ts.map