import * as pulumi from "@pulumi/pulumi"; /** * This data source provides details about a specific Compute Global Image Capability Schemas Version resource in Oracle Cloud Infrastructure Core service. * * Gets the specified Compute Global Image Capability Schema Version * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testComputeGlobalImageCapabilitySchemasVersion = oci.core.getComputeGlobalImageCapabilitySchemasVersion({ * computeGlobalImageCapabilitySchemaId: testComputeGlobalImageCapabilitySchema.id, * computeGlobalImageCapabilitySchemaVersionName: computeGlobalImageCapabilitySchemasVersionComputeGlobalImageCapabilitySchemaVersionName, * }); * ``` */ export declare function getComputeGlobalImageCapabilitySchemasVersion(args: GetComputeGlobalImageCapabilitySchemasVersionArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getComputeGlobalImageCapabilitySchemasVersion. */ export interface GetComputeGlobalImageCapabilitySchemasVersionArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compute global image capability schema */ computeGlobalImageCapabilitySchemaId: string; /** * The name of the compute global image capability schema version */ computeGlobalImageCapabilitySchemaVersionName: string; } /** * A collection of values returned by getComputeGlobalImageCapabilitySchemasVersion. */ export interface GetComputeGlobalImageCapabilitySchemasVersionResult { /** * The ocid of the compute global image capability schema */ readonly computeGlobalImageCapabilitySchemaId: string; readonly computeGlobalImageCapabilitySchemaVersionName: string; /** * A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. */ readonly displayName: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The name of the compute global image capability schema version */ readonly name: string; /** * The map of each capability name to its ImageCapabilityDescriptor. */ readonly schemaData: { [key: string]: string; }; /** * The date and time the compute global image capability schema version 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 Schemas Version resource in Oracle Cloud Infrastructure Core service. * * Gets the specified Compute Global Image Capability Schema Version * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testComputeGlobalImageCapabilitySchemasVersion = oci.core.getComputeGlobalImageCapabilitySchemasVersion({ * computeGlobalImageCapabilitySchemaId: testComputeGlobalImageCapabilitySchema.id, * computeGlobalImageCapabilitySchemaVersionName: computeGlobalImageCapabilitySchemasVersionComputeGlobalImageCapabilitySchemaVersionName, * }); * ``` */ export declare function getComputeGlobalImageCapabilitySchemasVersionOutput(args: GetComputeGlobalImageCapabilitySchemasVersionOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getComputeGlobalImageCapabilitySchemasVersion. */ export interface GetComputeGlobalImageCapabilitySchemasVersionOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compute global image capability schema */ computeGlobalImageCapabilitySchemaId: pulumi.Input; /** * The name of the compute global image capability schema version */ computeGlobalImageCapabilitySchemaVersionName: pulumi.Input; } //# sourceMappingURL=getComputeGlobalImageCapabilitySchemasVersion.d.ts.map