Commit 2b97e828 authored by Simon Pastor's avatar Simon Pastor
Browse files

userMeta addition to the model

parent f9b890f3
Loading
Loading
Loading
Loading
+30 −0
Original line number Diff line number Diff line
@@ -1331,6 +1331,11 @@ definitions:
        description: "Key/Value Pair Map (string, string)"
        additionalProperties:
          type: "string"
      userMeta:
        type: "object"
        description: "Key/Value Pair Map (string, string)"
        additionalProperties:
          type: "string"
      domains:
        type: "array"
        items:
@@ -1669,6 +1674,11 @@ definitions:
        description: "Key/Value Pair Map (string, string)"
        additionalProperties:
          type: "string"
      userMeta:
        type: "object"
        description: "Key/Value Pair Map (string, string)"
        additionalProperties:
          type: "string"
      zones:
        type: "array"
        items:
@@ -1890,6 +1900,11 @@ definitions:
        description: "Key/Value Pair Map (string, string)"
        additionalProperties:
          type: "string"
      userMeta:
        type: "object"
        description: "Key/Value Pair Map (string, string)"
        additionalProperties:
          type: "string"
      networkLocations:
        type: "array"
        items:
@@ -2004,6 +2019,11 @@ definitions:
        description: "Key/Value Pair Map (string, string)"
        additionalProperties:
          type: "string"
      userMeta:
        type: "object"
        description: "Key/Value Pair Map (string, string)"
        additionalProperties:
          type: "string"
      physicalLocations:
        type: "array"
        items:
@@ -2076,6 +2096,11 @@ definitions:
        description: "Key/Value Pair Map (string, string)"
        additionalProperties:
          type: "string"
      userMeta:
        type: "object"
        description: "Key/Value Pair Map (string, string)"
        additionalProperties:
          type: "string"
      processes:
        type: "array"
        items:
@@ -2154,6 +2179,11 @@ definitions:
        description: "Key/Value Pair Map (string, string)"
        additionalProperties:
          type: "string"
      userMeta:
        type: "object"
        description: "Key/Value Pair Map (string, string)"
        additionalProperties:
          type: "string"
    description: "Application or service object"
  ServiceConfig:
    type: "object"
+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-27T11:18:49.703-04:00
- Build date: 2019-06-27T12:34:51.021-04:00


### Running the server
+3 −0
Original line number Diff line number Diff line
@@ -27,5 +27,8 @@ type Deployment struct {
	// Key/Value Pair Map (string, string)
	Meta map[string]string `json:"meta,omitempty"`

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

	Domains []Domain `json:"domains,omitempty"`
}
+3 −0
Original line number Diff line number Diff line
@@ -36,5 +36,8 @@ type Domain struct {
	// Key/Value Pair Map (string, string)
	Meta map[string]string `json:"meta,omitempty"`

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

	Zones []Zone `json:"zones,omitempty"`
}
+3 −0
Original line number Diff line number Diff line
@@ -36,5 +36,8 @@ type NetworkLocation struct {
	// Key/Value Pair Map (string, string)
	Meta map[string]string `json:"meta,omitempty"`

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

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