NRN
Update a value within an NRN
Updates a value within an NRN. If the NRN does not exist, it will be created.
⚠️ Deprecation notice
This operation might be removed in the future. We recommend using Providers instead.
patch/nrn/{nrn}
Path parameters
nrnstring required
The NRN to update.
Request body
NrnWrite required
An object where keys represent NRN values or profiles
Example request
{
"aws.lambdaFunctionName": "NewFunctionValue"
}Response
The operation was successful.
Example response
{
"nrn": "organization=1:account=2",
"namespaces": {
"namespaces": {
"global": {
"some-key": "some-value"
}
}
},
"profiles": {
"profiles": {
"development": {
"some-namespace": {
"some-key": "some-value"
},
"production": {
"some-namespace": {
"some-key": "another-value"
}
}
}
}
}
}