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

DOC-2719-open-api #728

Closed
wants to merge 2 commits into from
Closed
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 @@ -33,5 +33,8 @@ content:
recommendationsPercentile:
type: integer
example: 85
recommendationsMemoryPercentile:
type: integer
example: 85
kind:
example: "mcs:ocean:rightSizing:clusterConfiguration"
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,15 @@ required:
properties:
config:
type: object
required:
- recommendationsPercentile
minProperties: 1
properties:
recommendationsPercentile:
type: integer
description: Change the percentile that the right-sizing recommendations calculation will take into account.
description: Change the cpu percentile that the right-sizing recommendations calculation will take into account.
example: 85
enum: [ 85, 90, 95, 99 ]
enum: [ 85, 90, 95, 99 ]
recommendationsMemoryPercentile:
type: integer
description: Change the memory percentile that the right-sizing recommendations calculation will take into account.
example: 85
enum: [ 85, 90, 95, 100 ]
Loading