Fetch Parameters

@if ((updateRequest | async)!; as requestEntity) {
Name
{{ parameterProvider.component.name }}
Parameter Groups
{{ parameterGroupNames | sort | join }}
Steps To Update Parameters
@for (updateStep of requestEntity.updateSteps; track updateStep.description) {
{{ updateStep.description }}
@if (updateStep.complete) {
} @else {
}
}
Parameter Contexts To Create
@if (Object.keys(parameterContextsToCreate).length > 0) {
{{ Object.values(parameterContextsToCreate) | sort | join }}
} @else {
None
}
Parameter Contexts To Update
@if (parameterContextsToUpdate.length > 0) {
{{ parameterContextsToUpdate | sort | join }}
} @else {
None
}
Affected Referencing Components
} @else {
Name
{{ parameterProvider.component.name }}
Select To Configure a Parameter Group
@for ( parameterGroupConfig of parameterGroupConfigurations; track parameterGroupConfig.groupName ) {
@if (canCreateParameterContext(parameterGroupConfig)) {
Create Parameter Context
@if (canEditParameterContextName(parameterGroupConfig)) {
Parameter Context Name
} } @else {
Parameter Context Name
{{ parameterGroupConfig.parameterContextName }}
} @if (showParameterList(parameterGroupConfig)) {
Fetched Parameters
    @for ( param of Object.entries(parameterGroupConfig.parameterSensitivities); track param[0] ) {
  • {{ param[0] }}
  • }
} @else {
Select Parameters To Be Set As Sensitive
Parameter Name
{{ item.name }}
@if (isReferenced(item)) {
} @if (isAffected(item)) {
}
}
}
Parameter Contexts To Create
@if (Object.keys(parameterContextsToCreate).length > 0) {
{{ Object.values(parameterContextsToCreate) | sort | join }}
} @else {
None
}
Parameter Contexts To Update
@if (parameterContextsToUpdate.length > 0) {
{{ parameterContextsToUpdate | sort | join }}
} @else {
None
}
Referencing Components
} @let saving = (saving$ | async)!; @if (updateRequest | async) { } @else { }