import * as pulumi from "@pulumi/pulumi"; import { input as inputs, output as outputs } from "../../types"; /** * Creates a new note. */ 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; /** * A note describing a package hosted by various package managers. */ readonly package: pulumi.Output; /** * Other notes related to this note. */ readonly relatedNoteNames: pulumi.Output; /** * URLs associated with this note. */ readonly relatedUrl: pulumi.Output; /** * A one sentence description of this note. */ readonly shortDescription: 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; /** * 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. */ readonly attestationAuthority?: pulumi.Input; /** * A note describing a base image. */ readonly baseImage?: pulumi.Input; /** * A note describing build provenance for a verifiable build. */ readonly build?: pulumi.Input; /** * The time this note was created. This field can be used as a filter in list requests. */ readonly createTime?: pulumi.Input; /** * A note describing something that can be deployed. */ readonly deployable?: pulumi.Input; /** * A note describing the initial analysis of a resource. */ readonly discovery?: pulumi.Input; /** * Time of expiration for this note. Empty if note does not expire. */ readonly expirationTime?: pulumi.Input; /** * A note describing an in-toto link. */ readonly intoto?: pulumi.Input; /** * The type of analysis. This field can be used as a filter in list requests. */ readonly kind?: pulumi.Input; /** * A detailed description of this note. */ readonly longDescription?: pulumi.Input; /** * The name of the note in the form of `projects/[PROVIDER_ID]/notes/[NOTE_ID]`. */ readonly name?: pulumi.Input; readonly notesId: pulumi.Input; /** * A note describing a package hosted by various package managers. */ readonly package?: pulumi.Input; readonly projectsId: pulumi.Input; /** * Other notes related to this note. */ readonly relatedNoteNames?: pulumi.Input[]>; /** * URLs associated with this note. */ readonly relatedUrl?: pulumi.Input[]>; /** * A one sentence description of this note. */ readonly shortDescription?: pulumi.Input; /** * The time this note was last updated. This field can be used as a filter in list requests. */ readonly updateTime?: pulumi.Input; /** * A note describing a package vulnerability. */ readonly vulnerability?: pulumi.Input; }