Skip to main content

ParameterStorageParameter

A parameter that has been retrieved from the store.

Properties

NameTypeDescriptionNotes
idstrThe ID of the reference[required]
owner_idstrThe ID of the user who owns the parameter.[required]
typestrThe type of the parameter. This cannot be changed after being set. Please see the types document for more information.[optional]
namestrThe human-readable name of the parameter.[required]
primary_fieldstrThe name of the primary field in the public fields.[optional]
public_fieldsobjectThe public fields stored for this parameter. See the types document for information about what can be stored.[required]
descriptionstrDescribe the parameter[optional]
last_modified_atstrISO8606 format datetime of the last time any field of the parameter was changed.[optional]
last_modified_bystrThe ID of the user who last modified the parameter. Empty when identity is not known.[optional]
private_fields_last_modified_atstrISO8606 format datetime of the time the secret fields were changed on the parameter.[optional]
private_fields_last_modified_bystrThe ID of the user who last modified the private fields. Empty when identity is not known.[optional]
}

Example

from sailpoint.v2025.models.parameter_storage_parameter import ParameterStorageParameter

parameter_storage_parameter = ParameterStorageParameter(
id='58de858b-83d9-4563-9e15-7393594c684a',
owner_id='c0b4568a4fe7458c434ee77d1fbt156b',
type='1.1',
name='Credentials for server',
primary_field='username',
public_fields={"username": "username"},
description='Credentials for server.',
last_modified_at='2025-09-16T12:47:08Z',
last_modified_by='c0b4568a4fe7458c434ee77d1fbt156b',
private_fields_last_modified_at='2025-09-16T12:47:08Z',
private_fields_last_modified_by='c0b4568a4fe7458c434ee77d1fbt156b'
)

[Back to top]