Skip to main content

ParameterStorageUpdateParameter

An existing parameter that needs to be updated. The type cannot be changed once the parameter is created.

Properties

NameTypeDescriptionNotes
owner_idstrThe UUID of the parameter owner.[optional]
namestrThe human-readable name for the parameter.[optional]
public_fieldsobjectThe public fields that can be stored with this parameter.[optional]
private_fieldsstrThe private fields that can be stored with this parameter.[optional]
descriptionstrDescribe the parameter[optional]
}

Example

from sailpoint.v2025.models.parameter_storage_update_parameter import ParameterStorageUpdateParameter

parameter_storage_update_parameter = ParameterStorageUpdateParameter(
owner_id='c0b4568a4fe7458c434ee77d1fbt156b',
name='Credentials for server.',
public_fields={"username": "username"},
private_fields='ZW5jcnlwdGVkIHBhc3N3b3JkIGhlcmUu',
description='Credentials for server.'
)

[Back to top]