Show / Hide Table of Contents

Class AttestorAttestationAuthorityNotePublicKeyArgs

Inheritance
System.Object
InputArgs
ResourceArgs
AttestorAttestationAuthorityNotePublicKeyArgs
Inherited Members
ResourceArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Gcp.BinaryAuthorization.Inputs
Assembly: Pulumi.Gcp.dll
Syntax
public sealed class AttestorAttestationAuthorityNotePublicKeyArgs : ResourceArgs

Constructors

View Source

AttestorAttestationAuthorityNotePublicKeyArgs()

Declaration
public AttestorAttestationAuthorityNotePublicKeyArgs()

Properties

View Source

AsciiArmoredPgpPublicKey

ASCII-armored representation of a PGP public key, as the entire output by the command gpg --export --armor foo@example.com (either LF or CRLF line endings). When using this field, id should be left blank. The BinAuthz API handlers will calculate the ID and fill it in automatically. BinAuthz computes this ID as the OpenPGP RFC4880 V4 fingerprint, represented as upper-case hex. If id is provided by the caller, it will be overwritten by the API-calculated ID.

Declaration
public Input<string> AsciiArmoredPgpPublicKey { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Comment

A descriptive comment. This field may be updated.

Declaration
public Input<string> Comment { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Id

The ID of this public key. Signatures verified by BinAuthz must include the ID of the public key that can be used to verify them, and that ID must match the contents of this field exactly. Additional restrictions on this field can be imposed based on which public key type is encapsulated. See the documentation on publicKey cases below for details.

Declaration
public Input<string> Id { get; set; }
Property Value
Type Description
Input<System.String>
View Source

PkixPublicKey

A raw PKIX SubjectPublicKeyInfo format public key. NOTE: id may be explicitly provided by the caller when using this type of public key, but it MUST be a valid RFC3986 URI. If id is left blank, a default one will be computed based on the digest of the DER encoding of the public key. Structure is documented below.

Declaration
public Input<AttestorAttestationAuthorityNotePublicKeyPkixPublicKeyArgs> PkixPublicKey { get; set; }
Property Value
Type Description
Input<AttestorAttestationAuthorityNotePublicKeyPkixPublicKeyArgs>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.