blob: ef6dabfe05d2c0326ad7fa742a74e48f86c3061f [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package models
type CatalogItemSummary struct {
Name string `json:"name"`
JavaType string `json:"javaType"`
SymbolicName string `json:"symbolicName"`
Version string `json:"version"`
PlanYaml string `json:"planYaml"`
Description string `json:"description"`
Deprecated bool `json:"deprecated"`
Links map[string]interface{} `json:"links"`
Id string `json:"id"`
Type string `json:"type"`
}
type CatalogPolicySummary struct {
symbolicName string `json:"symbolicName"`
version string `json:"version"`
displayName string `json:"name"`
javaType string `json:"javaType"`
planYaml string `json:"planYaml"`
description string `json:"description"`
iconUrl string `json:"iconUrl"`
deprecated bool `json:"deprecated"`
links map[string]URI `json:"links"`
}
type CatalogLocationSummary struct {
}
type CatalogEntitySummary struct {
symbolicName string `json:"symbolicName"`
version string `json:"version"`
displayName string `json:"name"`
javaType string `json:"javaType"`
planYaml string `json:"planYaml"`
description string `json:"description"`
Config []ConfigSummary `json:"config"`
Effectors []EffectorSummary `json:"effectors"`
Sensors []SensorSummary `json:"sensors"`
Deprecated bool `json:"deprecated"`
Links map[string]interface{} `json:"links"`
Id string `json:"id"`
Type string `json:"type"`
}