Name | Type | Description | Notes |
---|---|---|---|
Certificate | Pointer to string | Certificate: The certificate data. | [optional] |
Format | Pointer to string | Format: The certificate format. Possible values: "UNSPECIFIED_PUBLIC_KEY_CERTIFICATE_FORMAT" - The format has not been specified. This is an invalid default value and must not be used. "X509_CERTIFICATE_PEM" - An X.509v3 certificate (RFC5280), encoded in base64, and wrapped by `-----BEGIN CERTIFICATE-----` and `-----END CERTIFICATE-----`. | [optional] |
X509Details | Pointer to X509CertificateDetails | [optional] |
func NewPublicKeyCertificate() *PublicKeyCertificate
NewPublicKeyCertificate instantiates a new PublicKeyCertificate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed
func NewPublicKeyCertificateWithDefaults() *PublicKeyCertificate
NewPublicKeyCertificateWithDefaults instantiates a new PublicKeyCertificate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set
func (o *PublicKeyCertificate) GetCertificate() string
GetCertificate returns the Certificate field if non-nil, zero value otherwise.
func (o *PublicKeyCertificate) GetCertificateOk() (*string, bool)
GetCertificateOk returns a tuple with the Certificate field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *PublicKeyCertificate) SetCertificate(v string)
SetCertificate sets Certificate field to given value.
func (o *PublicKeyCertificate) HasCertificate() bool
HasCertificate returns a boolean if a field has been set.
func (o *PublicKeyCertificate) GetFormat() string
GetFormat returns the Format field if non-nil, zero value otherwise.
func (o *PublicKeyCertificate) GetFormatOk() (*string, bool)
GetFormatOk returns a tuple with the Format field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *PublicKeyCertificate) SetFormat(v string)
SetFormat sets Format field to given value.
func (o *PublicKeyCertificate) HasFormat() bool
HasFormat returns a boolean if a field has been set.
func (o *PublicKeyCertificate) GetX509Details() X509CertificateDetails
GetX509Details returns the X509Details field if non-nil, zero value otherwise.
func (o *PublicKeyCertificate) GetX509DetailsOk() (*X509CertificateDetails, bool)
GetX509DetailsOk returns a tuple with the X509Details field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *PublicKeyCertificate) SetX509Details(v X509CertificateDetails)
SetX509Details sets X509Details field to given value.
func (o *PublicKeyCertificate) HasX509Details() bool
HasX509Details returns a boolean if a field has been set.