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; /** * Build provenance type for a verifiable build. */ readonly buildType: 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 a provider/analysis type. */ readonly discovery: pulumi.Output; /** * Time of expiration for this note, null if note does not expire. */ readonly expirationTime: pulumi.Output; /** * This explicitly denotes which kind of note is specified. 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 "projects/{provider_project_id}/notes/{NOTE_ID}" */ readonly name: pulumi.Output; /** * A note describing a package hosted by various package managers. */ readonly package: 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 an upgrade. */ readonly upgrade: pulumi.Output; /** * A package vulnerability type of note. */ readonly vulnerabilityType: 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; /** * Build provenance type for a verifiable build. */ readonly buildType?: 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 a provider/analysis type. */ readonly discovery?: pulumi.Input; /** * Time of expiration for this note, null if note does not expire. */ readonly expirationTime?: pulumi.Input; /** * This explicitly denotes which kind of note is specified. 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 "projects/{provider_project_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; /** * 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 an upgrade. */ readonly upgrade?: pulumi.Input; /** * A package vulnerability type of note. */ readonly vulnerabilityType?: pulumi.Input; }