// SPDX-License-Identifier: Apache-2.0 // // The OpenSearch Contributors require contributions made to // this file be licensed under the Apache-2.0 license or a // compatible open source license. package opensearchapi import ( "fmt" "net/http" "strings" "github.com/opensearch-project/opensearch-go/v4" ) // IndicesDeleteReq represents possible options for the delete indices request type IndicesDeleteReq struct { Indices []string Header http.Header Params IndicesDeleteParams } // GetRequest returns the *http.Request that gets executed by the client func (r IndicesDeleteReq) GetRequest() (*http.Request, error) { return opensearch.BuildRequest( "DELETE", fmt.Sprintf("%s%s", "/", strings.Join(r.Indices, ",")), nil, r.Params.get(), r.Header, ) } // IndicesDeleteResp represents the returned struct of the delete indices response type IndicesDeleteResp struct { Acknowledged bool `json:"acknowledged"` response *opensearch.Response } // Inspect returns the Inspect type containing the raw *opensearch.Reponse func (r IndicesDeleteResp) Inspect() Inspect { return Inspect{Response: r.response} }