Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

make component muteable and add revisionName #356

Merged
merged 4 commits into from
May 15, 2020
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion 7.application_configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,8 @@ This section defines the instances of components to create with the application

| Attribute | Type | Required | Default Value | Description |
|-----------|------|----------|---------------|-------------|
| `componentName` | `string` | Y | | The name of the component of which to create an instance. |
| `componentName` | `string` | N | | The name of the component whose latest revision will be bind with application configuration. When the spec of the referenced component changes, ApplicationConfiguration will automatically migrate all trait affect from the prior revision to the new one. This is mutually exclusive with revisionName.|
wonderflow marked this conversation as resolved.
Show resolved Hide resolved
| `revisionName` | `string` | N | | RevisionName of a specific component revision to which to bind application configuration. This is mutually exclusive with componentName. |
wonderflow marked this conversation as resolved.
Show resolved Hide resolved
| `parameterValues` | [`[]ParameterValue`](#parameterValue) | N | | Overrides of parameters that are exposed by the application scope type defined in `type`. |
| `scopes` | [`[]Scope`](#scope) | N | | The scopes to be used in the component. A component joins a scope by referencing it. |
| `traits` | [`[]Trait`](#trait) | N | | The traits to attach to this component instance. |
Expand Down