Skip to content

Commit

Permalink
feat: add level to blueprint metadata ui proto (#1893)
Browse files Browse the repository at this point in the history
Co-authored-by: Awais Malik <[email protected]>
  • Loading branch information
HuixinLai and g-awmalik authored Oct 25, 2023
1 parent 8590124 commit 5f118ff
Show file tree
Hide file tree
Showing 4 changed files with 84 additions and 56 deletions.
2 changes: 1 addition & 1 deletion cli/Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
SHELL := /bin/bash

# Changing this value will trigger a new release
VERSION=v1.2.6
VERSION=v1.2.7
BINARY=bin/cft
GITHUB_REPO=github.com/GoogleCloudPlatform/cloud-foundation-toolkit
PLATFORMS := linux windows darwin
Expand Down
126 changes: 71 additions & 55 deletions cli/bpmetadata/bpmetadata_ui.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 9 additions & 0 deletions cli/bpmetadata/proto/bpmetadata_ui.proto
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,15 @@ message DisplayVariable {
// Values must be UTF-8 text with no markup, and at most 64 characters.
// Gen: manually-authored
repeated ValueLabel enum_value_labels = 17; // @gotags: json:"enumValueLabels,omitempty" yaml:"enumValueLabels,omitempty"

// Indicates the "advanced" level of the input property. Level 0 (default)
// will always be shown. Level 1 corresponds to one expansion (user clicks
// "show advanced options" or "more options"). Higher levels correspond to
// further expansions, or they may be collapsed to level 1 by the UI
// implementation.
// Optional.
// Gen: manually-authored
int32 level = 18; // @gotags: json:"level,omitempty" yaml:"level,omitempty"
}

message ValueLabel {
Expand Down
3 changes: 3 additions & 0 deletions cli/bpmetadata/schema/gcp-blueprint-metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -708,6 +708,9 @@
"$ref": "#/$defs/ValueLabel"
},
"type": "array"
},
"level": {
"type": "integer"
}
},
"additionalProperties": false,
Expand Down

0 comments on commit 5f118ff

Please sign in to comment.