Skip to content

Latest commit

 

History

History
233 lines (126 loc) · 6.74 KB

UpdateCertificateValue.md

File metadata and controls

233 lines (126 loc) · 6.74 KB

UpdateCertificateValue

Properties

Name Type Description Notes
CertificateData Pointer to string Content of the certificate PEM in a Base64 format. [optional]
ExpirationEventIn Pointer to []string How many days before the expiration of the certificate would you like to be notified. [optional]
Json Pointer to bool Set output format to JSON [optional]
Key Pointer to string The name of a key to use to encrypt the certificate's key (if empty, the account default protectionKey key will be used) [optional]
KeyData Pointer to string Content of the certificate's private key PEM in a Base64 format. [optional]
Name string Certificate name
Token Pointer to string Authentication token (see `/auth` and `/configure`) [optional]
UidToken Pointer to string The universal identity token, Required only for universal_identity authentication [optional]

Methods

NewUpdateCertificateValue

func NewUpdateCertificateValue(name string, ) *UpdateCertificateValue

NewUpdateCertificateValue instantiates a new UpdateCertificateValue 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

NewUpdateCertificateValueWithDefaults

func NewUpdateCertificateValueWithDefaults() *UpdateCertificateValue

NewUpdateCertificateValueWithDefaults instantiates a new UpdateCertificateValue 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

GetCertificateData

func (o *UpdateCertificateValue) GetCertificateData() string

GetCertificateData returns the CertificateData field if non-nil, zero value otherwise.

GetCertificateDataOk

func (o *UpdateCertificateValue) GetCertificateDataOk() (*string, bool)

GetCertificateDataOk returns a tuple with the CertificateData field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetCertificateData

func (o *UpdateCertificateValue) SetCertificateData(v string)

SetCertificateData sets CertificateData field to given value.

HasCertificateData

func (o *UpdateCertificateValue) HasCertificateData() bool

HasCertificateData returns a boolean if a field has been set.

GetExpirationEventIn

func (o *UpdateCertificateValue) GetExpirationEventIn() []string

GetExpirationEventIn returns the ExpirationEventIn field if non-nil, zero value otherwise.

GetExpirationEventInOk

func (o *UpdateCertificateValue) GetExpirationEventInOk() (*[]string, bool)

GetExpirationEventInOk returns a tuple with the ExpirationEventIn field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetExpirationEventIn

func (o *UpdateCertificateValue) SetExpirationEventIn(v []string)

SetExpirationEventIn sets ExpirationEventIn field to given value.

HasExpirationEventIn

func (o *UpdateCertificateValue) HasExpirationEventIn() bool

HasExpirationEventIn returns a boolean if a field has been set.

GetJson

func (o *UpdateCertificateValue) GetJson() bool

GetJson returns the Json field if non-nil, zero value otherwise.

GetJsonOk

func (o *UpdateCertificateValue) GetJsonOk() (*bool, bool)

GetJsonOk returns a tuple with the Json field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetJson

func (o *UpdateCertificateValue) SetJson(v bool)

SetJson sets Json field to given value.

HasJson

func (o *UpdateCertificateValue) HasJson() bool

HasJson returns a boolean if a field has been set.

GetKey

func (o *UpdateCertificateValue) GetKey() string

GetKey returns the Key field if non-nil, zero value otherwise.

GetKeyOk

func (o *UpdateCertificateValue) GetKeyOk() (*string, bool)

GetKeyOk returns a tuple with the Key field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetKey

func (o *UpdateCertificateValue) SetKey(v string)

SetKey sets Key field to given value.

HasKey

func (o *UpdateCertificateValue) HasKey() bool

HasKey returns a boolean if a field has been set.

GetKeyData

func (o *UpdateCertificateValue) GetKeyData() string

GetKeyData returns the KeyData field if non-nil, zero value otherwise.

GetKeyDataOk

func (o *UpdateCertificateValue) GetKeyDataOk() (*string, bool)

GetKeyDataOk returns a tuple with the KeyData field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetKeyData

func (o *UpdateCertificateValue) SetKeyData(v string)

SetKeyData sets KeyData field to given value.

HasKeyData

func (o *UpdateCertificateValue) HasKeyData() bool

HasKeyData returns a boolean if a field has been set.

GetName

func (o *UpdateCertificateValue) GetName() string

GetName returns the Name field if non-nil, zero value otherwise.

GetNameOk

func (o *UpdateCertificateValue) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetName

func (o *UpdateCertificateValue) SetName(v string)

SetName sets Name field to given value.

GetToken

func (o *UpdateCertificateValue) GetToken() string

GetToken returns the Token field if non-nil, zero value otherwise.

GetTokenOk

func (o *UpdateCertificateValue) GetTokenOk() (*string, bool)

GetTokenOk returns a tuple with the Token field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetToken

func (o *UpdateCertificateValue) SetToken(v string)

SetToken sets Token field to given value.

HasToken

func (o *UpdateCertificateValue) HasToken() bool

HasToken returns a boolean if a field has been set.

GetUidToken

func (o *UpdateCertificateValue) GetUidToken() string

GetUidToken returns the UidToken field if non-nil, zero value otherwise.

GetUidTokenOk

func (o *UpdateCertificateValue) GetUidTokenOk() (*string, bool)

GetUidTokenOk returns a tuple with the UidToken field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetUidToken

func (o *UpdateCertificateValue) SetUidToken(v string)

SetUidToken sets UidToken field to given value.

HasUidToken

func (o *UpdateCertificateValue) HasUidToken() bool

HasUidToken returns a boolean if a field has been set.

[Back to Model list] [Back to API list] [Back to README]