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

fix: Ajust-OpenAPI-EdgeApp---type-weight-to-int #155

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
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
59 changes: 30 additions & 29 deletions edgeapplications.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3954,12 +3954,8 @@ components:
addresses:
- address: address
is_active: true
weight: weight
server_role: server_role
- address: address
is_active: true
weight: weight
server_role: server_role
weight: 10
server_role: primary
hmac_secret_key: hmac_secret_key
method: method
origin_path: origin_path
Expand Down Expand Up @@ -4050,12 +4046,8 @@ components:
addresses:
- address: address
is_active: true
weight: weight
server_role: server_role
- address: address
is_active: true
weight: weight
server_role: server_role
weight: 10
server_role: primary
hmac_secret_key: hmac_secret_key
method: method
origin_path: origin_path
Expand All @@ -4076,12 +4068,8 @@ components:
addresses:
- address: address
is_active: true
weight: weight
server_role: server_role
- address: address
is_active: true
weight: weight
server_role: server_role
weight: 10
server_role: primary
hmac_secret_key: hmac_secret_key
method: method
origin_path: origin_path
Expand Down Expand Up @@ -4128,12 +4116,8 @@ components:
addresses:
- address: address
is_active: true
weight: weight
server_role: server_role
- address: address
is_active: true
weight: weight
server_role: server_role
weight: 10
server_role: primary
hmac_secret_key: hmac_secret_key
method: method
origin_path: origin_path
Expand Down Expand Up @@ -4666,27 +4650,44 @@ components:
type: object
CreateOriginsRequest_addresses:
example:
address: address
address: azion.com.br
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
address: azion.com.br
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
server_role:
type: string
maxLength: 10
minLength: 1
pattern: '^(primary|backup)$'
is_active:
type: boolean
required:
Expand Down