import * as pulumi from "@pulumi/pulumi"; /** * This data source provides details about a specific Batch Job Pool resource in Oracle Cloud Infrastructure Batch service. * * Gets information about a batch job pool. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testBatchJobPool = oci.oci.getBatchBatchJobPool({ * batchJobPoolId: testBatchJobPoolOciBatchBatchJobPool.id, * }); * ``` */ export declare function getBatchBatchJobPool(args: GetBatchBatchJobPoolArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getBatchBatchJobPool. */ export interface GetBatchBatchJobPoolArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the batch job pool. */ batchJobPoolId: string; } /** * A collection of values returned by getBatchBatchJobPool. */ export interface GetBatchBatchJobPoolResult { /** * The OCID of batch context. */ readonly batchContextId: string; readonly batchJobPoolId: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ readonly compartmentId: 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; }; /** * Summarized information about the batch job pool. */ readonly description: 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 batch job pool. */ readonly id: string; /** * The current state of the batch job pool. */ 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 batch job pool 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 batch job pool 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 Batch Job Pool resource in Oracle Cloud Infrastructure Batch service. * * Gets information about a batch job pool. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testBatchJobPool = oci.oci.getBatchBatchJobPool({ * batchJobPoolId: testBatchJobPoolOciBatchBatchJobPool.id, * }); * ``` */ export declare function getBatchBatchJobPoolOutput(args: GetBatchBatchJobPoolOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getBatchBatchJobPool. */ export interface GetBatchBatchJobPoolOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the batch job pool. */ batchJobPoolId: pulumi.Input; } //# sourceMappingURL=getBatchBatchJobPool.d.ts.map