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/origin field weight #216

Merged
merged 6 commits into from
Aug 12, 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
28 changes: 15 additions & 13 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: 10
weight: 1
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: 10
weight: 1
server_role: server_role
- address: address
is_active: true
weight: 10
weight: 1
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: 10
weight: 1
server_role: server_role
- address: address
is_active: true
weight: 10
weight: 1
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: 10
weight: 1
server_role: server_role
- address: address
is_active: true
weight: 10
weight: 1
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: 10
weight: 1
server_role: server_role
- address: address
is_active: true
weight: 10
weight: 1
server_role: server_role
hmac_secret_key: hmac_secret_key
method: method
Expand Down Expand Up @@ -4676,17 +4676,18 @@ components:
example:
address: address
is_active: true
weight: 10
weight: 1
server_role: primary
properties:
address:
type: string
is_active:
type: boolean
weight:
nullable: true
type: integer
format: int64
minimum: 1
maximum: 100
server_role:
type: string
maxLength: 10
Expand All @@ -4699,15 +4700,16 @@ components:
example:
address: address
is_active: true
weight: 10
weight: 1
server_role: primary
properties:
address:
type: string
weight:
nullable: true
type: integer
format: int64
minimum: 1
maximum: 100
server_role:
type: string
is_active:
Expand Down
Loading