diff --git a/model/_global/delete_pit/structures.smithy b/model/_global/delete_pit/structures.smithy index 5a39dff3..c25b2cfa 100644 --- a/model/_global/delete_pit/structures.smithy +++ b/model/_global/delete_pit/structures.smithy @@ -21,6 +21,7 @@ list PitIds{ } +@documentation("The point-in-time ids to be deleted") structure DeletePit_BodyParams { @required pit_id: PitIds diff --git a/model/cluster/exists_component_template/structures.smithy b/model/cluster/exists_component_template/structures.smithy index 1c37806d..d41e9bcc 100644 --- a/model/cluster/exists_component_template/structures.smithy +++ b/model/cluster/exists_component_template/structures.smithy @@ -12,6 +12,9 @@ structure ClusterExistsComponentTemplate_QueryParams { @httpQuery("master_timeout") master_timeout: MasterTimeout, + @httpQuery("cluster_manager_timeout") + cluster_manager_timeout: ClusterManagerTimeout, + @httpQuery("local") @default(false) local: Local, diff --git a/model/cluster/health/structures.smithy b/model/cluster/health/structures.smithy index 7daeb9c4..577806a3 100644 --- a/model/cluster/health/structures.smithy +++ b/model/cluster/health/structures.smithy @@ -51,10 +51,6 @@ structure ClusterHealth_QueryParams { @httpQuery("awareness_attribute") awareness_attribute: AwarenessAttribute, - - @httpQuery("ensure_node_commissioned") - @default(false) - ensure_node_commissioned: EnsureNodeCommissioned, } diff --git a/model/indices/delete/structures.smithy b/model/indices/delete/structures.smithy index aef5862b..d5f1ced4 100644 --- a/model/indices/delete/structures.smithy +++ b/model/indices/delete/structures.smithy @@ -23,6 +23,9 @@ structure IndicesDelete_QueryParams { @default(false) allow_no_indices: AllowNoIndices, + @httpQuery("cluster_manager_timeout") + cluster_manager_timeout: ClusterManagerTimeout, + @httpQuery("expand_wildcards") @default("open") expand_wildcards: ExpandWildcards, diff --git a/model/indices/exists_index_template/structures.smithy b/model/indices/exists_index_template/structures.smithy index ae9de423..c6b0b0ad 100644 --- a/model/indices/exists_index_template/structures.smithy +++ b/model/indices/exists_index_template/structures.smithy @@ -16,6 +16,9 @@ structure IndicesExistsIndexTemplate_QueryParams { @httpQuery("master_timeout") master_timeout: MasterTimeout, + @httpQuery("cluster_manager_timeout") + cluster_manager_timeout: ClusterManagerTimeout, + @httpQuery("local") @default(false) local: Local, diff --git a/model/indices/exists_template/structures.smithy b/model/indices/exists_template/structures.smithy index 5d3785bf..ef747396 100644 --- a/model/indices/exists_template/structures.smithy +++ b/model/indices/exists_template/structures.smithy @@ -16,6 +16,9 @@ structure IndicesExistsTemplate_QueryParams { @httpQuery("master_timeout") master_timeout: MasterTimeout, + @httpQuery("cluster_manager_timeout") + cluster_manager_timeout: ClusterManagerTimeout, + @httpQuery("local") @default(false) local: Local, diff --git a/model/indices/open/structures.smithy b/model/indices/open/structures.smithy index 8743df8a..5719ca60 100644 --- a/model/indices/open/structures.smithy +++ b/model/indices/open/structures.smithy @@ -25,6 +25,9 @@ structure IndicesOpen_QueryParams { @default("closed") expand_wildcards: ExpandWildcards, + @httpQuery("cluster_manager_timeout") + cluster_manager_timeout: ClusterManagerTimeout, + @httpQuery("wait_for_active_shards") @documentation("Sets the number of active shards to wait for before the operation returns.") wait_for_active_shards: WaitForActiveShards,