Skip to main content

ParameterStorageNewParameter

A parameter to add to parameter storage. The public and private fields must match the type specification.

Properties

NameTypeDescriptionNotes
owner_idstrThe UUID of the parameter owner.[required]
namestrThe human-readable name for the parameter.[required]
typestrThe type of the parameter. This cannot be changed after being set. Please see the types document for more information.[required]
public_fieldsobjectThe content must be a JSON object containing the public fields that can be stored with this parameter.[optional]
private_fieldsstrMust 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]
descriptionstrDescribe the parameter[optional]
}

Example

from sailpoint.v2025.models.parameter_storage_new_parameter import ParameterStorageNewParameter

parameter_storage_new_parameter = ParameterStorageNewParameter(
owner_id='c0b4568a4fe7458c434ee77d1fbt156b',
name='Credentials for server.',
type='1.1',
public_fields={"username": "username"},
private_fields='ZW5jcnlwdGVkIHBhc3N3b3JkIGhlcmUu',
description='Credentials for server.'
)

[Back to top]