ParameterStorageUpdateParameter
An existing parameter that needs to be updated. The type cannot be changed once the parameter is created.
Properties
Name | Type | Description | Notes |
---|---|---|---|
owner_id | str | The UUID of the parameter owner. | [optional] |
name | str | The human-readable name for the parameter. | [optional] |
public_fields | object | The public fields that can be stored with this parameter. | [optional] |
private_fields | str | The private fields that can be stored with this parameter. | [optional] |
description | str | Describe 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.'
)