import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * This data source provides the list of Compute Image Capability Schemas in Oracle Cloud Infrastructure Core service. * * Lists Compute Image Capability Schema in the specified compartment. You can also query by a specific imageId. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testComputeImageCapabilitySchemas = oci.core.getComputeImageCapabilitySchemas({ * compartmentId: compartmentId, * displayName: computeImageCapabilitySchemaDisplayName, * imageId: testImage.id, * }); * ``` */ export declare function getComputeImageCapabilitySchemas(args?: GetComputeImageCapabilitySchemasArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getComputeImageCapabilitySchemas. */ export interface GetComputeImageCapabilitySchemasArgs { /** * A filter to return only resources that match the given compartment OCID exactly. */ compartmentId?: string; /** * A filter to return only resources that match the given display name exactly. */ displayName?: string; filters?: inputs.Core.GetComputeImageCapabilitySchemasFilter[]; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of an image. */ imageId?: string; } /** * A collection of values returned by getComputeImageCapabilitySchemas. */ export interface GetComputeImageCapabilitySchemasResult { /** * The OCID of the compartment containing the compute global image capability schema */ readonly compartmentId?: string; /** * The list of compute_image_capability_schemas. */ readonly computeImageCapabilitySchemas: outputs.Core.GetComputeImageCapabilitySchemasComputeImageCapabilitySchema[]; /** * A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. */ readonly displayName?: string; readonly filters?: outputs.Core.GetComputeImageCapabilitySchemasFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The OCID of the image associated with this compute image capability schema */ readonly imageId?: string; } /** * This data source provides the list of Compute Image Capability Schemas in Oracle Cloud Infrastructure Core service. * * Lists Compute Image Capability Schema in the specified compartment. You can also query by a specific imageId. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testComputeImageCapabilitySchemas = oci.core.getComputeImageCapabilitySchemas({ * compartmentId: compartmentId, * displayName: computeImageCapabilitySchemaDisplayName, * imageId: testImage.id, * }); * ``` */ export declare function getComputeImageCapabilitySchemasOutput(args?: GetComputeImageCapabilitySchemasOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getComputeImageCapabilitySchemas. */ export interface GetComputeImageCapabilitySchemasOutputArgs { /** * A filter to return only resources that match the given compartment OCID exactly. */ compartmentId?: pulumi.Input; /** * A filter to return only resources that match the given display name exactly. */ displayName?: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of an image. */ imageId?: pulumi.Input; } //# sourceMappingURL=getComputeImageCapabilitySchemas.d.ts.map