Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: added field weight in request post origin #215

Merged
merged 3 commits into from
Aug 8, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 27 additions & 12 deletions edgeapplications.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3815,7 +3815,7 @@ components:
example:
addresses:
- address: address
- address: address
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,24 +4675,39 @@ components:
CreateOriginsRequest_addresses:
example:
address: address
is_active: true
weight: 10
server_role: primary
properties:
address:
type: string
is_active:
type: boolean
weight:
nullable: true
type: integer
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
Loading