Skip to content

Remove duplicate name #3661

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 1 commit into from
Jan 30, 2025
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
8 changes: 4 additions & 4 deletions output/openapi/elasticsearch-openapi.json

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

70 changes: 35 additions & 35 deletions output/schema/schema.json

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

16 changes: 8 additions & 8 deletions output/typescript/types.ts

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

Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export class Response {
/**
* The node that coordinated the analysis and performed the final cleanup.
*/
coordinating_node: NodeInfo
coordinating_node: SnapshotNodeInfo
/**
* The time it took to delete all the blobs in the container.
*/
Expand Down Expand Up @@ -107,7 +107,7 @@ export class Response {
}
}

export class NodeInfo {
export class SnapshotNodeInfo {
id: Id
name: Name
}
Expand Down Expand Up @@ -234,7 +234,7 @@ export class ReadBlobDetails {
/**
* The node that performed the read operation.
*/
node: NodeInfo
node: SnapshotNodeInfo
/**
* The length of time spent waiting due to the `max_restore_bytes_per_sec` or `indices.recovery.max_bytes_per_sec` throttles during the read of the blob.
* If the blob was not found, this detail is omitted.
Expand Down Expand Up @@ -317,5 +317,5 @@ export class DetailsInfo {
/**
* The node which wrote the blob and coordinated the read operations.
*/
writer_node: NodeInfo
writer_node: SnapshotNodeInfo
}