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

Update accuracy of api spec data #292

Merged
merged 2 commits into from
Feb 20, 2024
Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ required:
- enable
- container_id
- high_availablity
- config
# - config
properties:
enable:
type: boolean
Expand All @@ -26,6 +26,7 @@ properties:
auto_update:
type: boolean
description: A boolean where `true` represents the desire to automatically update the environment scheduler service.
config:
description: The config object for the scheduler service.
type: object
# config:
# nullable: true
# description: The config object for the scheduler service.
# type: object
2 changes: 1 addition & 1 deletion components/schemas/infrastructure/providers/Provider.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ properties:
hub_id:
"$ref": "../../HubID.yml"
integration:
"$ref": "./Integration.yml"
"$ref": "./InfrastructureProviderIntegration.yml"
name:
type: string
description: A string describing the name of a provider
Expand Down
9 changes: 5 additions & 4 deletions public/paths/dns/zone.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,9 @@ get:
content:
application/json:
schema:
title: SingleDNSZoneReturn
type: object
required:
- data
properties:
data:
$ref: ../../../components/schemas/dns/Zone.yml
Expand Down Expand Up @@ -71,7 +72,7 @@ patch:
schema:
title: "DNSZoneUpdateResponse"
type: object
required:
required:
- data
properties:
data:
Expand All @@ -94,13 +95,13 @@ delete:
summary: Remove DNS Zone
description: Requires the `dns-manage` capability.
responses:
200:
202:
description: Returns a task descriptor.
content:
application/json:
schema:
type: object
required:
required:
- data
properties:
data:
Expand Down
7 changes: 4 additions & 3 deletions public/paths/infrastructure/providers/provider.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ get:
schema:
title: "FetchProviderReturn"
type: object
required:
required:
- data
properties:
data:
Expand Down Expand Up @@ -64,6 +64,7 @@ patch:
- integration
properties:
integration:
title: ProviderIntegration
type: object
description: An integration object defining the provider integration assets and endpoints.
properties:
Expand Down Expand Up @@ -102,7 +103,7 @@ patch:
schema:
title: "ProviderUpdateReturn"
type: object
required:
required:
- data
properties:
data:
Expand All @@ -129,7 +130,7 @@ delete:
application/json:
schema:
type: object
required:
required:
- data
properties:
data:
Expand Down
Loading