import * as pulumi from "@pulumi/pulumi"; /** * This data source provides details about a specific Compute Image Capability Schema resource in Oracle Cloud Infrastructure Core service. * * Gets the specified Compute Image Capability Schema * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testComputeImageCapabilitySchema = oci.core.getComputeImageCapabilitySchema({ * computeImageCapabilitySchemaId: testComputeImageCapabilitySchemaOciCoreComputeImageCapabilitySchema.id, * isMergeEnabled: computeImageCapabilitySchemaIsMergeEnabled, * }); * ``` */ export declare function getComputeImageCapabilitySchema(args: GetComputeImageCapabilitySchemaArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getComputeImageCapabilitySchema. */ export interface GetComputeImageCapabilitySchemaArgs { /** * The id of the compute image capability schema or the image ocid */ computeImageCapabilitySchemaId: string; /** * Merge the image capability schema with the global image capability schema */ isMergeEnabled?: string; } /** * A collection of values returned by getComputeImageCapabilitySchema. */ export interface GetComputeImageCapabilitySchemaResult { /** * The OCID of the compartment containing the compute global image capability schema */ readonly compartmentId: string; /** * The ocid of the compute global image capability schema */ readonly computeGlobalImageCapabilitySchemaId: string; /** * The name of the compute global image capability schema version */ readonly computeGlobalImageCapabilitySchemaVersionName: string; readonly computeImageCapabilitySchemaId: 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 compute image capability schema [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). */ readonly id: string; /** * The OCID of the image associated with this compute image capability schema */ readonly imageId: string; readonly isMergeEnabled?: string; /** * A mapping of each capability name to its ImageCapabilityDescriptor. */ readonly schemaData: { [key: string]: string; }; /** * The date and time the compute 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 Image Capability Schema resource in Oracle Cloud Infrastructure Core service. * * Gets the specified Compute Image Capability Schema * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testComputeImageCapabilitySchema = oci.core.getComputeImageCapabilitySchema({ * computeImageCapabilitySchemaId: testComputeImageCapabilitySchemaOciCoreComputeImageCapabilitySchema.id, * isMergeEnabled: computeImageCapabilitySchemaIsMergeEnabled, * }); * ``` */ export declare function getComputeImageCapabilitySchemaOutput(args: GetComputeImageCapabilitySchemaOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getComputeImageCapabilitySchema. */ export interface GetComputeImageCapabilitySchemaOutputArgs { /** * The id of the compute image capability schema or the image ocid */ computeImageCapabilitySchemaId: pulumi.Input; /** * Merge the image capability schema with the global image capability schema */ isMergeEnabled?: pulumi.Input; } //# sourceMappingURL=getComputeImageCapabilitySchema.d.ts.map