import * as pulumi from "@pulumi/pulumi"; /** * This data source provides details about a specific Compute Global Image Capability Schema resource in Oracle Cloud Infrastructure Core service. * * Gets the specified Compute Global Image Capability Schema * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testComputeGlobalImageCapabilitySchema = oci.core.getComputeGlobalImageCapabilitySchema({ * computeGlobalImageCapabilitySchemaId: testComputeGlobalImageCapabilitySchemaOciCoreComputeGlobalImageCapabilitySchema.id, * }); * ``` */ export declare function getComputeGlobalImageCapabilitySchema(args: GetComputeGlobalImageCapabilitySchemaArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getComputeGlobalImageCapabilitySchema. */ export interface GetComputeGlobalImageCapabilitySchemaArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compute global image capability schema */ computeGlobalImageCapabilitySchemaId: string; } /** * A collection of values returned by getComputeGlobalImageCapabilitySchema. */ export interface GetComputeGlobalImageCapabilitySchemaResult { /** * The OCID of the compartment containing the compute global image capability schema */ readonly compartmentId: string; readonly computeGlobalImageCapabilitySchemaId: string; /** * The name of the global capabilities version resource that is considered the current version. */ readonly currentVersionName: 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; }; /** * A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. */ 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 provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The date and time the compute global image capability schema was created, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z` */ readonly timeCreated: string; } /** * This data source provides details about a specific Compute Global Image Capability Schema resource in Oracle Cloud Infrastructure Core service. * * Gets the specified Compute Global Image Capability Schema * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testComputeGlobalImageCapabilitySchema = oci.core.getComputeGlobalImageCapabilitySchema({ * computeGlobalImageCapabilitySchemaId: testComputeGlobalImageCapabilitySchemaOciCoreComputeGlobalImageCapabilitySchema.id, * }); * ``` */ export declare function getComputeGlobalImageCapabilitySchemaOutput(args: GetComputeGlobalImageCapabilitySchemaOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getComputeGlobalImageCapabilitySchema. */ export interface GetComputeGlobalImageCapabilitySchemaOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compute global image capability schema */ computeGlobalImageCapabilitySchemaId: pulumi.Input; } //# sourceMappingURL=getComputeGlobalImageCapabilitySchema.d.ts.map