import * as pulumi from "@pulumi/pulumi"; /** * This data source provides details about a specific Provisioned Capacity resource in Oracle Cloud Infrastructure Generative Ai Agent service. * * Gets information about a provisioned capacity. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testProvisionedCapacity = oci.generativeai.getAgentProvisionedCapacity({ * provisionedCapacityId: testProvisionedCapacityOciGenerativeAiAgentProvisionedCapacity.id, * }); * ``` */ export declare function getAgentProvisionedCapacity(args: GetAgentProvisionedCapacityArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getAgentProvisionedCapacity. */ export interface GetAgentProvisionedCapacityArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the provisioned capacity. */ provisionedCapacityId: string; } /** * A collection of values returned by getAgentProvisionedCapacity. */ export interface GetAgentProvisionedCapacityResult { /** * 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; }; /** * An optional description of the provisioned capacity. */ readonly description: string; /** * The name of the provisioned capacity. */ 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 provisioned capacity. */ readonly id: string; /** * Provisioned Capacity Unit corresponds to the amount of characters processed per minute. */ readonly numberOfUnits: number; readonly provisionedCapacityId: string; /** * The current state of the provisioned capacity. */ 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 provisioned capacity 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 provisioned capacity 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 Provisioned Capacity resource in Oracle Cloud Infrastructure Generative Ai Agent service. * * Gets information about a provisioned capacity. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testProvisionedCapacity = oci.generativeai.getAgentProvisionedCapacity({ * provisionedCapacityId: testProvisionedCapacityOciGenerativeAiAgentProvisionedCapacity.id, * }); * ``` */ export declare function getAgentProvisionedCapacityOutput(args: GetAgentProvisionedCapacityOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getAgentProvisionedCapacity. */ export interface GetAgentProvisionedCapacityOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the provisioned capacity. */ provisionedCapacityId: pulumi.Input; } //# sourceMappingURL=getAgentProvisionedCapacity.d.ts.map