Skip to main content

ParameterStorageUpdateParameter

Properties

NameTypeDescriptionNotes
OwnerIdStringThe UUID of the parameter owner.[optional]
NameStringThe human-readable name for the parameter.[optional]
PublicFields[SystemCollectionsHashtable]https://learn.microsoft.com/en-us/dotnet/api/system.collections.hashtable?view=net-9.0The public fields that can be stored with this parameter.[optional]
PrivateFieldsStringThe private fields that can be stored with this parameter.[optional]
DescriptionStringDescribe the parameter[optional]

Examples

  • Prepare the resource
$ParameterStorageUpdateParameter = Initialize-V2025ParameterStorageUpdateParameter  -OwnerId c0b4568a4fe7458c434ee77d1fbt156b `
-Name Credentials for server. `
-PublicFields {"username": "username"} `
-PrivateFields ZW5jcnlwdGVkIHBhc3N3b3JkIGhlcmUu `
-Description Credentials for server.
  • Convert the resource to JSON
$ParameterStorageUpdateParameter | ConvertTo-JSON

[Back to top]