Skip to content

Adds visibility tag to ML validate APIs #1063

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

Merged
merged 2 commits into from
Nov 29, 2021
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
4 changes: 2 additions & 2 deletions output/schema/schema.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion specification/_json_spec/ml.validate.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"description": "Validates an anomaly detection job."
},
"stability": "stable",
"visibility": "public",
"visibility": "private",
"headers": {
"accept": ["application/json"],
"content_type": ["application/json"]
Expand Down
2 changes: 1 addition & 1 deletion specification/_json_spec/ml.validate_detector.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"description": "Validates an anomaly detection detector."
},
"stability": "stable",
"visibility": "public",
"visibility": "private",
"headers": {
"accept": ["application/json"],
"content_type": ["application/json"]
Expand Down
1 change: 1 addition & 0 deletions specification/ml/validate/MlValidateJobRequest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ import { long } from '@_types/Numeric'
* @rest_spec_name ml.validate
* @since 6.3.0
* @stability stable
* @visibility private
*/
export interface Request extends RequestBase {
body: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import { RequestBase } from '@_types/Base'
/**
* @rest_spec_name ml.validate_detector
* @since 5.4.0
*
* @visibility private
* @stability stable
*/
export interface Request extends RequestBase {
Expand Down