import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * This data source provides details about a specific Occ Availability Catalog resource in Oracle Cloud Infrastructure Capacity Management service. * * Get details about availability catalog. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testOccAvailabilityCatalog = oci.capacitymanagement.getOccAvailabilityCatalog({ * occAvailabilityCatalogId: testOccAvailabilityCatalogOciCapacityManagementOccAvailabilityCatalog.id, * }); * ``` */ export declare function getOccAvailabilityCatalog(args: GetOccAvailabilityCatalogArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getOccAvailabilityCatalog. */ export interface GetOccAvailabilityCatalogArgs { /** * The OCID of the availability catalog. */ occAvailabilityCatalogId: string; } /** * A collection of values returned by getOccAvailabilityCatalog. */ export interface GetOccAvailabilityCatalogResult { readonly base64encodedCatalogDetails: string; /** * The different states associated with the availability catalog. */ readonly catalogState: string; /** * The OCID of the tenancy where the availability catalog resides. */ readonly compartmentId: string; /** * Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}` */ readonly definedTags: { [key: string]: string; }; /** * Text information about the availability catalog. */ readonly description: string; /** * Details about capacity available for different resources in catalog. */ readonly details: outputs.CapacityManagement.GetOccAvailabilityCatalogDetail[]; /** * A user-friendly name for the availability catalog. */ readonly displayName: string; /** * Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}` */ readonly freeformTags: { [key: string]: string; }; /** * The OCID of the availability catalog. */ readonly id: string; /** * A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in a Failed State. */ readonly lifecycleDetails: string; /** * Used for representing the metadata of the catalog. This denotes the version and format of the CSV file for parsing. */ readonly metadataDetails: outputs.CapacityManagement.GetOccAvailabilityCatalogMetadataDetail[]; /** * The name of the Oracle Cloud Infrastructure service in consideration. For example, Compute, Exadata, and so on. */ readonly namespace: string; readonly occAvailabilityCatalogId: string; /** * The customer group OCID to which the availability catalog belongs. */ readonly occCustomerGroupId: string; /** * The current lifecycle state of the resource. */ 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 time when the availability catalog was created. */ readonly timeCreated: string; /** * The time when the availability catalog was last updated. */ readonly timeUpdated: string; } /** * This data source provides details about a specific Occ Availability Catalog resource in Oracle Cloud Infrastructure Capacity Management service. * * Get details about availability catalog. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testOccAvailabilityCatalog = oci.capacitymanagement.getOccAvailabilityCatalog({ * occAvailabilityCatalogId: testOccAvailabilityCatalogOciCapacityManagementOccAvailabilityCatalog.id, * }); * ``` */ export declare function getOccAvailabilityCatalogOutput(args: GetOccAvailabilityCatalogOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getOccAvailabilityCatalog. */ export interface GetOccAvailabilityCatalogOutputArgs { /** * The OCID of the availability catalog. */ occAvailabilityCatalogId: pulumi.Input; } //# sourceMappingURL=getOccAvailabilityCatalog.d.ts.map