Commit fd097449 authored by Walter Featherstone's avatar Walter Featherstone
Browse files

Attributes in URI are just string

parent eba9aab0
Loading
Loading
Loading
Loading
+10 −12
Original line number Diff line number Diff line
@@ -76,24 +76,21 @@
      "description": "Represents a mobile edge application instance. Note that the appInstanceId is allocated by the mobile edge platform manager.",
      "in": "path",
      "required": true,
      "type": "string",
      "format": "uri"
      "type": "string"
    },
    "Path.DnsRuleId": {
      "name": "dnsRuleId",
      "description": "Represents a DNS rule.",
      "in": "path",
      "required": true,
      "type": "string",
      "format": "uri"
      "type": "string"
    },
    "Path.SubscriptionId": {
      "name": "subscriptionId",
      "description": "Represents a subscription to the notifications from the mobile edge platform.",
      "in": "path",
      "required": true,
      "type": "string",
      "format": "uri"
      "type": "string"
    },
    "Path.SubscriptionType": {
      "name": "subscriptionType",
@@ -101,23 +98,24 @@
      "in": "path",
      "required": true,
      "type": "string",
      "format": "uri"
      "enum": [
        "AppTerminationNotificationSubscription",
        "SerAvailabilityNotificationSubscription"
      ]
    },
    "Path.ServiceId": {
      "name": "serviceId",
      "description": "Represents a mobile edge service instance.",
      "in": "path",
      "required": true,
      "type": "string",
      "format": "uri"
      "type": "string"
    },
    "Path.TrafficRuleId": {
      "name": "trafficRuleId",
      "description": "Represents a traffic rule.",
      "in": "path",
      "required": true,
      "type": "string",
      "format": "uri"
      "type": "string"
    },
    "Query.Ser_category_id": {
      "name": "ser_category_id",
+3 −6
Original line number Diff line number Diff line
@@ -69,14 +69,12 @@ parameters:
    in: path
    required: true
    type: string
    format: uri
  Path.DnsRuleId:
    name: dnsRuleId
    description: Represents a DNS rule.
    in: path
    required: true
    type: string
    format: uri
  Path.SubscriptionId:
    name: subscriptionId
    description: >-
@@ -85,7 +83,6 @@ parameters:
    in: path
    required: true
    type: string
    format: uri
  Path.SubscriptionType:
    name: subscriptionType
    description: >-
@@ -94,21 +91,21 @@ parameters:
    in: path
    required: true
    type: string
    format: uri
    enum:
    - AppTerminationNotificationSubscription
    - SerAvailabilityNotificationSubscription
  Path.ServiceId:
    name: serviceId
    description: Represents a mobile edge service instance.
    in: path
    required: true
    type: string
    format: uri
  Path.TrafficRuleId:
    name: trafficRuleId
    description: Represents a traffic rule.
    in: path
    required: true
    type: string
    format: uri
  Query.Ser_category_id:
    name: ser_category_id
    description: >-
+1 −2
Original line number Diff line number Diff line
@@ -3,4 +3,3 @@ description: Represents a mobile edge application instance. Note that the appIns
in: path
required: true
type: string
 No newline at end of file
format: uri
 No newline at end of file
+1 −2
Original line number Diff line number Diff line
@@ -3,4 +3,3 @@ description: Represents a DNS rule.
in: path
required: true
type: string
 No newline at end of file
format: uri
 No newline at end of file
+1 −2
Original line number Diff line number Diff line
@@ -3,4 +3,3 @@ description: Represents a mobile edge service instance.
in: path
required: true
type: string
 No newline at end of file
format: uri
 No newline at end of file
Loading