Skip to main content

ParameterStorageNewParameter

Properties

NameTypeDescriptionNotes
OwnerIdstringThe UUID of the parameter owner.
NamestringThe human-readable name for the parameter.
TypestringThe type of the parameter. This cannot be changed after being set. Please see the types document for more information.
PublicFieldsPointer to map[string]interfaceThe content must be a JSON object containing the public fields that can be stored with this parameter.[optional]
PrivateFieldsPointer to stringMust be a JWE AES256 encrypted blob. The content of the blob must be a JSON object containing the private fields that can be stored with this parameter.[optional]
DescriptionPointer to stringDescribe the parameter[optional]

Methods

NewParameterStorageNewParameter

func NewParameterStorageNewParameter(ownerId string, name string, type_ string, ) *ParameterStorageNewParameter

NewParameterStorageNewParameter instantiates a new ParameterStorageNewParameter 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

NewParameterStorageNewParameterWithDefaults

func NewParameterStorageNewParameterWithDefaults() *ParameterStorageNewParameter

NewParameterStorageNewParameterWithDefaults instantiates a new ParameterStorageNewParameter 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

GetOwnerId

func (o *ParameterStorageNewParameter) GetOwnerId() string

GetOwnerId returns the OwnerId field if non-nil, zero value otherwise.

GetOwnerIdOk

func (o *ParameterStorageNewParameter) GetOwnerIdOk() (*string, bool)

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

SetOwnerId

func (o *ParameterStorageNewParameter) SetOwnerId(v string)

SetOwnerId sets OwnerId field to given value.

GetName

func (o *ParameterStorageNewParameter) GetName() string

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

GetNameOk

func (o *ParameterStorageNewParameter) 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 *ParameterStorageNewParameter) SetName(v string)

SetName sets Name field to given value.

GetType

func (o *ParameterStorageNewParameter) GetType() string

GetType returns the Type field if non-nil, zero value otherwise.

GetTypeOk

func (o *ParameterStorageNewParameter) GetTypeOk() (*string, bool)

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

SetType

func (o *ParameterStorageNewParameter) SetType(v string)

SetType sets Type field to given value.

GetPublicFields

func (o *ParameterStorageNewParameter) GetPublicFields() map[string]interface{}

GetPublicFields returns the PublicFields field if non-nil, zero value otherwise.

GetPublicFieldsOk

func (o *ParameterStorageNewParameter) GetPublicFieldsOk() (*map[string]interface{}, bool)

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

SetPublicFields

func (o *ParameterStorageNewParameter) SetPublicFields(v map[string]interface{})

SetPublicFields sets PublicFields field to given value.

HasPublicFields

func (o *ParameterStorageNewParameter) HasPublicFields() bool

HasPublicFields returns a boolean if a field has been set.

GetPrivateFields

func (o *ParameterStorageNewParameter) GetPrivateFields() string

GetPrivateFields returns the PrivateFields field if non-nil, zero value otherwise.

GetPrivateFieldsOk

func (o *ParameterStorageNewParameter) GetPrivateFieldsOk() (*string, bool)

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

SetPrivateFields

func (o *ParameterStorageNewParameter) SetPrivateFields(v string)

SetPrivateFields sets PrivateFields field to given value.

HasPrivateFields

func (o *ParameterStorageNewParameter) HasPrivateFields() bool

HasPrivateFields returns a boolean if a field has been set.

GetDescription

func (o *ParameterStorageNewParameter) GetDescription() string

GetDescription returns the Description field if non-nil, zero value otherwise.

GetDescriptionOk

func (o *ParameterStorageNewParameter) GetDescriptionOk() (*string, bool)

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

SetDescription

func (o *ParameterStorageNewParameter) SetDescription(v string)

SetDescription sets Description field to given value.

HasDescription

func (o *ParameterStorageNewParameter) HasDescription() bool

HasDescription returns a boolean if a field has been set.