Commit f9b890f3 authored by Simon Pastor's avatar Simon Pastor
Browse files

NA-578: meta in scenario objects

parent bc34cb6c
Loading
Loading
Loading
Loading
+34 −2
Original line number Diff line number Diff line
@@ -1326,6 +1326,11 @@ definitions:
        type: "number"
        format: "double"
        description: "Packet lost (in terms of percentage) between domains"
      meta:
        type: "object"
        description: "Key/Value Pair Map (string, string)"
        additionalProperties:
          type: "string"
      domains:
        type: "array"
        items:
@@ -1659,6 +1664,11 @@ definitions:
        format: "double"
        description: "Packet lost (in terms of percentage) between zones within the\
          \ domain"
      meta:
        type: "object"
        description: "Key/Value Pair Map (string, string)"
        additionalProperties:
          type: "string"
      zones:
        type: "array"
        items:
@@ -1875,6 +1885,11 @@ definitions:
        format: "double"
        description: "Packet lost (in terms of percentage) between fog nodes (or PoAs)\
          \ and edge nodes within the zone"
      meta:
        type: "object"
        description: "Key/Value Pair Map (string, string)"
        additionalProperties:
          type: "string"
      networkLocations:
        type: "array"
        items:
@@ -1984,6 +1999,11 @@ definitions:
        format: "double"
        description: "Packet lost (in terms of percentage) for all terminal links\
          \ within the network location"
      meta:
        type: "object"
        description: "Key/Value Pair Map (string, string)"
        additionalProperties:
          type: "string"
      physicalLocations:
        type: "array"
        items:
@@ -2051,6 +2071,11 @@ definitions:
        items:
          type: "string"
          description: "Names of network locations within range of physical location"
      meta:
        type: "object"
        description: "Key/Value Pair Map (string, string)"
        additionalProperties:
          type: "string"
      processes:
        type: "array"
        items:
@@ -2124,6 +2149,11 @@ definitions:
      userChartGroup:
        type: "string"
        description: "Chart supplemental information related to the group (service)"
      meta:
        type: "object"
        description: "Key/Value Pair Map (string, string)"
        additionalProperties:
          type: "string"
    description: "Application or service object"
  ServiceConfig:
    type: "object"
@@ -2345,8 +2375,10 @@ definitions:
    example:
      event: "event"
  Settings:
    type: "object"
    description: "MEEP settings - Key/Value Pair Map (string, string)"
    additionalProperties:
      type: "string"
    description: "MEEP settings"
  PodsStatus:
    type: "object"
    properties:
+1 −1
Original line number Diff line number Diff line
@@ -13,7 +13,7 @@ To see how to make this your own, look here:
[README](https://github.com/swagger-api/swagger-codegen/blob/master/README.md)

- API version: 1.0.0
- Build date: 2019-06-25T14:08:12.971-04:00
- Build date: 2019-06-27T11:18:49.703-04:00


### Running the server
+3 −0
Original line number Diff line number Diff line
@@ -24,5 +24,8 @@ type Deployment struct {
	// Packet lost (in terms of percentage) between domains
	InterDomainPacketLoss float64 `json:"interDomainPacketLoss,omitempty"`

	// Key/Value Pair Map (string, string)
	Meta map[string]string `json:"meta,omitempty"`

	Domains []Domain `json:"domains,omitempty"`
}
+3 −0
Original line number Diff line number Diff line
@@ -33,5 +33,8 @@ type Domain struct {
	// Packet lost (in terms of percentage) between zones within the domain
	InterZonePacketLoss float64 `json:"interZonePacketLoss,omitempty"`

	// Key/Value Pair Map (string, string)
	Meta map[string]string `json:"meta,omitempty"`

	Zones []Zone `json:"zones,omitempty"`
}
+3 −0
Original line number Diff line number Diff line
@@ -33,5 +33,8 @@ type NetworkLocation struct {
	// Packet lost (in terms of percentage) for all terminal links within the network location
	TerminalLinkPacketLoss float64 `json:"terminalLinkPacketLoss,omitempty"`

	// Key/Value Pair Map (string, string)
	Meta map[string]string `json:"meta,omitempty"`

	PhysicalLocations []PhysicalLocation `json:"physicalLocations,omitempty"`
}
Loading