Skip to content

Commit

Permalink
chore: all field weight to int
Browse files Browse the repository at this point in the history
  • Loading branch information
maxwelbm committed Aug 8, 2024
1 parent 3842250 commit 86677dc
Showing 1 changed file with 25 additions and 15 deletions.
40 changes: 25 additions & 15 deletions edgeapplications.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3815,7 +3815,7 @@ components:
example:
addresses:
- address: address
weight: weight
weight: 10
hmac_secret_key: hmac_secret_key
origin_path: origin_path
origin_protocol_policy: origin_protocol_policy
Expand Down Expand Up @@ -3956,11 +3956,11 @@ components:
addresses:
- address: address
is_active: true
weight: weight
weight: 10
server_role: server_role
- address: address
is_active: true
weight: weight
weight: 10
server_role: server_role
hmac_secret_key: hmac_secret_key
method: method
Expand Down Expand Up @@ -4037,11 +4037,11 @@ components:
addresses:
- address: address
is_active: true
weight: weight
weight: 10
server_role: server_role
- address: address
is_active: true
weight: weight
weight: 10
server_role: server_role
hmac_secret_key: hmac_secret_key
method: method
Expand All @@ -4063,11 +4063,11 @@ components:
addresses:
- address: address
is_active: true
weight: weight
weight: 10
server_role: server_role
- address: address
is_active: true
weight: weight
weight: 10
server_role: server_role
hmac_secret_key: hmac_secret_key
method: method
Expand Down Expand Up @@ -4115,11 +4115,11 @@ components:
addresses:
- address: address
is_active: true
weight: weight
weight: 10
server_role: server_role
- address: address
is_active: true
weight: weight
weight: 10
server_role: server_role
hmac_secret_key: hmac_secret_key
method: method
Expand Down Expand Up @@ -4675,29 +4675,39 @@ components:
CreateOriginsRequest_addresses:
example:
address: address
weight: weight
is_active: true
weight: 10
server_role: primary
properties:
address:
type: string
example: ""
is_active:
type: boolean
weight:
nullable: true
type: integer
example: 10
format: int64
server_role:
type: string
maxLength: 10
minLength: 1
pattern: '^(primary|backup)$'
required:
- address
type: object
OriginsResultResponse_addresses:
example:
address: address
is_active: true
weight: weight
server_role: server_role
weight: 10
server_role: primary
properties:
address:
type: string
weight:
nullable: true
type: string
type: integer
format: int64
server_role:
type: string
is_active:
Expand Down

0 comments on commit 86677dc

Please sign in to comment.