@pulumi/gcp
Version:
A Pulumi package for creating and managing Google Cloud Platform resources.
152 lines • 6.02 kB
JavaScript
;
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
Object.defineProperty(exports, "__esModule", { value: true });
exports.Note = void 0;
const pulumi = require("@pulumi/pulumi");
const utilities = require("../utilities");
/**
* A Container Analysis note is a high-level piece of metadata that
* describes a type of analysis that can be done for a resource.
*
* To get more information about Note, see:
*
* * [API documentation](https://cloud.google.com/container-analysis/api/reference/rest/)
* * How-to Guides
* * [Creating Attestations (Occurrences)](https://cloud.google.com/binary-authorization/docs/making-attestations)
* * [Official Documentation](https://cloud.google.com/container-analysis/)
*
* ## Example Usage
*
* ### Container Analysis Note Basic
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as gcp from "@pulumi/gcp";
*
* const note = new gcp.containeranalysis.Note("note", {
* name: "attestor-note",
* attestationAuthority: {
* hint: {
* humanReadableName: "Attestor Note",
* },
* },
* });
* ```
* ### Container Analysis Note Attestation Full
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as gcp from "@pulumi/gcp";
*
* const note = new gcp.containeranalysis.Note("note", {
* name: "attestor-note",
* shortDescription: "test note",
* longDescription: "a longer description of test note",
* expirationTime: "2120-10-02T15:01:23.045123456Z",
* relatedUrls: [
* {
* url: "some.url",
* label: "foo",
* },
* {
* url: "google.com",
* },
* ],
* attestationAuthority: {
* hint: {
* humanReadableName: "Attestor Note",
* },
* },
* });
* ```
*
* ## Import
*
* Note can be imported using any of these accepted formats:
*
* * `projects/{{project}}/notes/{{name}}`
*
* * `{{project}}/{{name}}`
*
* * `{{name}}`
*
* When using the `pulumi import` command, Note can be imported using one of the formats above. For example:
*
* ```sh
* $ pulumi import gcp:containeranalysis/note:Note default projects/{{project}}/notes/{{name}}
* ```
*
* ```sh
* $ pulumi import gcp:containeranalysis/note:Note default {{project}}/{{name}}
* ```
*
* ```sh
* $ pulumi import gcp:containeranalysis/note:Note default {{name}}
* ```
*/
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 state Any extra arguments used during the lookup.
* @param opts Optional settings to control the behavior of the CustomResource.
*/
static get(name, id, state, opts) {
return new Note(name, state, Object.assign(Object.assign({}, opts), { id: id }));
}
/**
* 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) {
if (obj === undefined || obj === null) {
return false;
}
return obj['__pulumiType'] === Note.__pulumiType;
}
constructor(name, argsOrState, opts) {
let resourceInputs = {};
opts = opts || {};
if (opts.id) {
const state = argsOrState;
resourceInputs["attestationAuthority"] = state ? state.attestationAuthority : undefined;
resourceInputs["createTime"] = state ? state.createTime : undefined;
resourceInputs["expirationTime"] = state ? state.expirationTime : undefined;
resourceInputs["kind"] = state ? state.kind : undefined;
resourceInputs["longDescription"] = state ? state.longDescription : undefined;
resourceInputs["name"] = state ? state.name : undefined;
resourceInputs["project"] = state ? state.project : undefined;
resourceInputs["relatedNoteNames"] = state ? state.relatedNoteNames : undefined;
resourceInputs["relatedUrls"] = state ? state.relatedUrls : undefined;
resourceInputs["shortDescription"] = state ? state.shortDescription : undefined;
resourceInputs["updateTime"] = state ? state.updateTime : undefined;
}
else {
const args = argsOrState;
if ((!args || args.attestationAuthority === undefined) && !opts.urn) {
throw new Error("Missing required property 'attestationAuthority'");
}
resourceInputs["attestationAuthority"] = args ? args.attestationAuthority : undefined;
resourceInputs["expirationTime"] = args ? args.expirationTime : undefined;
resourceInputs["longDescription"] = args ? args.longDescription : undefined;
resourceInputs["name"] = args ? args.name : undefined;
resourceInputs["project"] = args ? args.project : undefined;
resourceInputs["relatedNoteNames"] = args ? args.relatedNoteNames : undefined;
resourceInputs["relatedUrls"] = args ? args.relatedUrls : undefined;
resourceInputs["shortDescription"] = args ? args.shortDescription : undefined;
resourceInputs["createTime"] = undefined /*out*/;
resourceInputs["kind"] = undefined /*out*/;
resourceInputs["updateTime"] = undefined /*out*/;
}
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
super(Note.__pulumiType, name, resourceInputs, opts);
}
}
exports.Note = Note;
/** @internal */
Note.__pulumiType = 'gcp:containeranalysis/note:Note';
//# sourceMappingURL=note.js.map