import * as pulumi from "@pulumi/pulumi"; /** * This data source provides details about a specific Generic Artifacts Content resource in Oracle Cloud Infrastructure Generic Artifacts Content service. * * Gets the specified artifact's content. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testGenericArtifactsContent = oci.genericartifactscontent.getGenericArtifactsContent({ * artifactId: testArtifact.id, * }); * ``` */ export declare function getGenericArtifactsContent(args: GetGenericArtifactsContentArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getGenericArtifactsContent. */ export interface GetGenericArtifactsContentArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the artifact. Example: `ocid1.genericartifact.oc1..exampleuniqueID` */ artifactId: string; } /** * A collection of values returned by getGenericArtifactsContent. */ export interface GetGenericArtifactsContentResult { readonly artifactId: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; } /** * This data source provides details about a specific Generic Artifacts Content resource in Oracle Cloud Infrastructure Generic Artifacts Content service. * * Gets the specified artifact's content. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testGenericArtifactsContent = oci.genericartifactscontent.getGenericArtifactsContent({ * artifactId: testArtifact.id, * }); * ``` */ export declare function getGenericArtifactsContentOutput(args: GetGenericArtifactsContentOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getGenericArtifactsContent. */ export interface GetGenericArtifactsContentOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the artifact. Example: `ocid1.genericartifact.oc1..exampleuniqueID` */ artifactId: pulumi.Input; } //# sourceMappingURL=getGenericArtifactsContent.d.ts.map