import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../../types/input"; import * as outputs from "../../types/output"; /** * Creates a new note. * Auto-naming is currently not supported for this resource. */ export declare class Note extends pulumi.CustomResource { /** * Get an existing Note resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, opts?: pulumi.CustomResourceOptions): Note; /** * Returns true if the given object is an instance of Note. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is Note; /** * A note describing an attestation role. */ readonly attestationAuthority: pulumi.Output; /** * A note describing a base image. */ readonly baseImage: pulumi.Output; /** * A note describing build provenance for a verifiable build. */ readonly build: pulumi.Output; /** * The time this note was created. This field can be used as a filter in list requests. */ readonly createTime: pulumi.Output; /** * A note describing something that can be deployed. */ readonly deployable: pulumi.Output; /** * A note describing the initial analysis of a resource. */ readonly discovery: pulumi.Output; /** * Time of expiration for this note. Empty if note does not expire. */ readonly expirationTime: pulumi.Output; /** * A note describing an in-toto link. */ readonly intoto: pulumi.Output; /** * The type of analysis. This field can be used as a filter in list requests. */ readonly kind: pulumi.Output; /** * A detailed description of this note. */ readonly longDescription: pulumi.Output; /** * The name of the note in the form of `projects/[PROVIDER_ID]/notes/[NOTE_ID]`. */ readonly name: pulumi.Output; /** * Required. The ID to use for this note. */ readonly noteId: pulumi.Output; /** * A note describing a package hosted by various package managers. */ readonly package: pulumi.Output; readonly project: pulumi.Output; /** * Other notes related to this note. */ readonly relatedNoteNames: pulumi.Output; /** * URLs associated with this note. */ readonly relatedUrl: pulumi.Output; /** * A note describing a software bill of materials. */ readonly sbom: pulumi.Output; /** * A note describing an SBOM reference. */ readonly sbomReference: pulumi.Output; /** * A one sentence description of this note. */ readonly shortDescription: pulumi.Output; /** * A note describing an SPDX File. */ readonly spdxFile: pulumi.Output; /** * A note describing an SPDX Package. */ readonly spdxPackage: pulumi.Output; /** * A note describing an SPDX File. */ readonly spdxRelationship: pulumi.Output; /** * The time this note was last updated. This field can be used as a filter in list requests. */ readonly updateTime: pulumi.Output; /** * A note describing a package vulnerability. */ readonly vulnerability: pulumi.Output; /** * A note describing a vulnerability assessment. */ readonly vulnerabilityAssessment: pulumi.Output; /** * Create a Note resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: NoteArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a Note resource. */ export interface NoteArgs { /** * A note describing an attestation role. */ attestationAuthority?: pulumi.Input; /** * A note describing a base image. */ baseImage?: pulumi.Input; /** * A note describing build provenance for a verifiable build. */ build?: pulumi.Input; /** * A note describing something that can be deployed. */ deployable?: pulumi.Input; /** * A note describing the initial analysis of a resource. */ discovery?: pulumi.Input; /** * Time of expiration for this note. Empty if note does not expire. */ expirationTime?: pulumi.Input; /** * A note describing an in-toto link. */ intoto?: pulumi.Input; /** * A detailed description of this note. */ longDescription?: pulumi.Input; /** * Required. The ID to use for this note. */ noteId: pulumi.Input; /** * A note describing a package hosted by various package managers. */ package?: pulumi.Input; project?: pulumi.Input; /** * Other notes related to this note. */ relatedNoteNames?: pulumi.Input[]>; /** * URLs associated with this note. */ relatedUrl?: pulumi.Input[]>; /** * A note describing a software bill of materials. */ sbom?: pulumi.Input; /** * A note describing an SBOM reference. */ sbomReference?: pulumi.Input; /** * A one sentence description of this note. */ shortDescription?: pulumi.Input; /** * A note describing an SPDX File. */ spdxFile?: pulumi.Input; /** * A note describing an SPDX Package. */ spdxPackage?: pulumi.Input; /** * A note describing an SPDX File. */ spdxRelationship?: pulumi.Input; /** * A note describing a package vulnerability. */ vulnerability?: pulumi.Input; /** * A note describing a vulnerability assessment. */ vulnerabilityAssessment?: pulumi.Input; }