Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var ( SchemaArrayDefaultEmpty = &specs.ParameterMap{ Property: &specs.Property{ Name: "array", Path: "array", Label: labels.Optional, Template: specs.Template{ Repeated: specs.Repeated{ { Scalar: &specs.Scalar{ Type: types.String, Default: nil, }, }, }, }, }, } SchemaArrayWithValues = &specs.ParameterMap{ Property: &specs.Property{ Name: "array", Path: "array", Label: labels.Optional, Template: specs.Template{ Repeated: specs.Repeated{ { Reference: &specs.PropertyReference{ Resource: template.InputResource, Path: "string", }, Scalar: &specs.Scalar{ Type: types.String, }, }, { Scalar: &specs.Scalar{ Type: types.String, Default: "bar", }, }, }, }, }, } SchemaNestedArray = &specs.ParameterMap{ Property: &specs.Property{ Name: "root", Label: labels.Optional, Template: specs.Template{ Message: specs.Message{ "integer": func() *specs.Property { var clone = PropInteger() clone.Position = 1 clone.Path = "root." + clone.Path return clone }(), "array": func() *specs.Property { var clone = PropArray() clone.Position = 2 clone.Path = "root." + clone.Path return clone }(), }, }, }, } SchemaArrayOfArrays = &specs.ParameterMap{ Property: &specs.Property{ Name: "array", Path: "array", Label: labels.Optional, Template: specs.Template{ Repeated: specs.Repeated{ { Repeated: specs.Repeated{ { Reference: &specs.PropertyReference{ Resource: template.InputResource, Path: "string", }, Scalar: &specs.Scalar{ Type: types.String, }, }, { Scalar: &specs.Scalar{ Type: types.String, Default: "bar", }, }, }, }, }, }, }, } SchemaObject = &specs.ParameterMap{ Property: &specs.Property{ Name: "root", Label: labels.Optional, Template: specs.Template{ Message: specs.Message{ "status": func() *specs.Property { var clone = PropEnum() clone.Position = 1 clone.Path = "root." + clone.Path return clone }(), "integer": func() *specs.Property { var clone = PropInteger() clone.Position = 2 clone.Path = "root." + clone.Path return clone }(), }, }, }, } SchemaObjectNested = &specs.ParameterMap{ Property: &specs.Property{ Name: "root", Label: labels.Optional, Template: specs.Template{ Message: specs.Message{ "nested": { Position: 1, Name: "nested", Path: "root.nested", Label: labels.Optional, Template: specs.Template{ Message: specs.Message{ "status": func() *specs.Property { var clone = PropEnum() clone.Position = 1 clone.Path = "root.nested." + clone.Path return clone }(), "integer": func() *specs.Property { var clone = PropInteger() clone.Position = 2 clone.Path = "root.nested." + clone.Path return clone }(), }, }, }, "string": func() *specs.Property { var clone = PropString() clone.Position = 2 clone.Path = "root." + clone.Path return clone }(), }, }, }, } SchemaObjectComplex = &specs.ParameterMap{ Property: &specs.Property{ Name: "root", Label: labels.Optional, Template: specs.Template{ Message: specs.Message{ "bad_label": { Position: 1, Name: "bad_label", Path: "bad_label", Label: "unknown", Template: specs.Template{ Scalar: &specs.Scalar{ Type: types.String, }, }, }, "numeric": { Position: 3, Name: "numeric", Path: "numeric", Label: labels.Optional, Template: specs.Template{ Reference: &specs.PropertyReference{ Resource: template.InputResource, Path: "numeric", }, Scalar: &specs.Scalar{ Type: types.Int32, }, }, }, "message": { Position: 4, Name: "message", Path: "message", Label: labels.Optional, Template: specs.Template{ Reference: &specs.PropertyReference{ Resource: template.InputResource, Path: "message", }, Scalar: &specs.Scalar{ Type: types.String, }, }, }, "another_message": { Position: 5, Name: "another_message", Path: "another_message", Label: labels.Optional, Template: specs.Template{ Reference: &specs.PropertyReference{ Resource: template.InputResource, Path: "another_message", }, Scalar: &specs.Scalar{ Type: types.String, }, }, }, "status": { Position: 6, Name: "status", Path: "status", Label: labels.Optional, Template: specs.Template{ Reference: &specs.PropertyReference{ Resource: template.InputResource, Path: "status", }, Enum: enum, }, }, "another_status": { Position: 7, Name: "another_status", Path: "another_status", Label: labels.Optional, Template: specs.Template{ Reference: &specs.PropertyReference{ Resource: template.InputResource, Path: "another_status", }, Enum: enum, }, }, "nested": { Position: 8, Name: "nested", Path: "nested", Label: labels.Optional, Template: specs.Template{ Message: specs.Message{ "first": { Position: 1, Name: "first", Path: "nested.first", Label: labels.Optional, Template: specs.Template{ Reference: &specs.PropertyReference{ Resource: template.InputResource, Path: "nested.first", }, Scalar: &specs.Scalar{ Type: types.String, }, }, }, "second": { Position: 2, Name: "second", Path: "nested.second", Label: labels.Optional, Template: specs.Template{ Reference: &specs.PropertyReference{ Resource: template.InputResource, Path: "nested.second", }, Scalar: &specs.Scalar{ Type: types.String, }, }, }, }, }, }, "repeating_string": { Position: 9, Name: "repeating_string", Path: "repeating_string", Label: labels.Optional, Template: specs.Template{ Reference: &specs.PropertyReference{ Resource: template.InputResource, Path: "repeating_string", }, Repeated: specs.Repeated{ { Reference: &specs.PropertyReference{ Resource: template.InputResource, Path: "repeating_string", }, Scalar: &specs.Scalar{ Type: types.String, Default: "foo", }, }, { Reference: &specs.PropertyReference{ Resource: template.InputResource, Path: "repeating_string", }, Scalar: &specs.Scalar{ Type: types.String, Default: "bar", }, }, }, }, }, "repeating_enum": { Position: 10, Name: "repeating_enum", Path: "repeating_enum", Label: labels.Optional, Template: specs.Template{ Reference: &specs.PropertyReference{ Resource: template.InputResource, Path: "repeating_enum", }, Repeated: specs.Repeated{ { Reference: &specs.PropertyReference{ Resource: template.InputResource, Path: "repeating_enum", }, Enum: enum, }, }, }, }, "repeating_numeric": { Position: 11, Name: "repeating_numeric", Path: "repeating_numeric", Label: labels.Optional, Template: specs.Template{ Reference: &specs.PropertyReference{ Resource: template.InputResource, Path: "repeating_numeric", }, Scalar: &specs.Scalar{ Type: types.Int32, }, }, }, "repeating": { Position: 12, Name: "repeating", Path: "repeating", Label: labels.Optional, Template: specs.Template{ Reference: &specs.PropertyReference{ Resource: template.InputResource, Path: "repeating", }, Repeated: specs.Repeated{ { Message: specs.Message{ "value": { Position: 1, Name: "value", Path: "repeating.value", Label: labels.Optional, Template: specs.Template{ Reference: &specs.PropertyReference{ Resource: template.InputResource, Path: "repeating.value", }, Scalar: &specs.Scalar{ Type: types.String, }, }, }, }, }, }, }, }, }, }, }, } )
Functions ¶
func PropInteger ¶
func PropString ¶
Types ¶
Click to show internal directories.
Click to hide internal directories.