Namespace Pulumi.Gcp.ContainerAnalysis
Classes
Note
Provides a detailed description of a Note.
To get more information about Note, see:
- API documentation
- How-to Guides
- Official Documentation
Example Usage - Container Analysis Note Basic
using Pulumi;
using Gcp = Pulumi.Gcp;
class MyStack : Stack
{
public MyStack()
{
var note = new Gcp.ContainerAnalysis.Note("note", new Gcp.ContainerAnalysis.NoteArgs
{
AttestationAuthority = new Gcp.ContainerAnalysis.Inputs.NoteAttestationAuthorityArgs
{
Hint = new Gcp.ContainerAnalysis.Inputs.NoteAttestationAuthorityHintArgs
{
HumanReadableName = "Attestor Note",
},
},
});
}
}