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 Global Image Capability Schemas in Oracle Cloud Infrastructure Core service. * * Lists Compute Global Image Capability Schema in the specified compartment. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testComputeGlobalImageCapabilitySchemas = oci.core.getComputeGlobalImageCapabilitySchemas({ * compartmentId: compartmentId, * displayName: computeGlobalImageCapabilitySchemaDisplayName, * }); * ``` */ export declare function getComputeGlobalImageCapabilitySchemas(args?: GetComputeGlobalImageCapabilitySchemasArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getComputeGlobalImageCapabilitySchemas. */ export interface GetComputeGlobalImageCapabilitySchemasArgs { /** * 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.GetComputeGlobalImageCapabilitySchemasFilter[]; } /** * A collection of values returned by getComputeGlobalImageCapabilitySchemas. */ export interface GetComputeGlobalImageCapabilitySchemasResult { /** * The OCID of the compartment containing the compute global image capability schema */ readonly compartmentId?: string; /** * The list of compute_global_image_capability_schemas. */ readonly computeGlobalImageCapabilitySchemas: outputs.Core.GetComputeGlobalImageCapabilitySchemasComputeGlobalImageCapabilitySchema[]; /** * 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.GetComputeGlobalImageCapabilitySchemasFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; } /** * This data source provides the list of Compute Global Image Capability Schemas in Oracle Cloud Infrastructure Core service. * * Lists Compute Global Image Capability Schema in the specified compartment. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testComputeGlobalImageCapabilitySchemas = oci.core.getComputeGlobalImageCapabilitySchemas({ * compartmentId: compartmentId, * displayName: computeGlobalImageCapabilitySchemaDisplayName, * }); * ``` */ export declare function getComputeGlobalImageCapabilitySchemasOutput(args?: GetComputeGlobalImageCapabilitySchemasOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getComputeGlobalImageCapabilitySchemas. */ export interface GetComputeGlobalImageCapabilitySchemasOutputArgs { /** * 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>; } //# sourceMappingURL=getComputeGlobalImageCapabilitySchemas.d.ts.map