/** * herd * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * OpenAPI spec version: 0.220.0-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { HttpClient, HttpHeaders, HttpResponse, HttpEvent } from '@angular/common/http'; import { Observable } from 'rxjs'; import { AttributeValueList } from '../model/attributeValueList'; import { AttributeValueListCreateRequest } from '../model/attributeValueListCreateRequest'; import { AttributeValueListKeys } from '../model/attributeValueListKeys'; import { Configuration } from '../configuration'; export declare class AttributeValueListService { protected httpClient: HttpClient; protected basePath: string; defaultHeaders: HttpHeaders; configuration: Configuration; constructor(httpClient: HttpClient, basePath: string, configuration: Configuration); /** * @param consumes string[] mime-types * @return true: consumes contains 'multipart/form-data', false: otherwise */ private canConsumeForm; /** * createAttributeValueList * Creates a new attribute value list. <p>Requires WRITE permission on namespace</p> * @param attributeValueListCreateRequest the information needed to create an attribute value list * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. * @param reportProgress flag to report request and response progress. */ attributeValueListCreateAttributeValueList(attributeValueListCreateRequest: AttributeValueListCreateRequest, observe?: 'body', reportProgress?: boolean): Observable; attributeValueListCreateAttributeValueList(attributeValueListCreateRequest: AttributeValueListCreateRequest, observe?: 'response', reportProgress?: boolean): Observable>; attributeValueListCreateAttributeValueList(attributeValueListCreateRequest: AttributeValueListCreateRequest, observe?: 'events', reportProgress?: boolean): Observable>; /** * deleteAttributeValueList * Deletes an existing attribute value list. <p>Requires WRITE permission on namespace</p> * @param namespace the namespace of the attribute value list * @param attributeValueListName the name of the attribute value list * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. * @param reportProgress flag to report request and response progress. */ attributeValueListDeleteAttributeValueList(namespace: string, attributeValueListName: string, observe?: 'body', reportProgress?: boolean): Observable; attributeValueListDeleteAttributeValueList(namespace: string, attributeValueListName: string, observe?: 'response', reportProgress?: boolean): Observable>; attributeValueListDeleteAttributeValueList(namespace: string, attributeValueListName: string, observe?: 'events', reportProgress?: boolean): Observable>; /** * getAttributeValueList * Gets an existing attribute value list. <p>Requires READ permission on namespace</p> * @param namespace the namespace of the attribute value list * @param attributeValueListName the name of the attribute value list * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. * @param reportProgress flag to report request and response progress. */ attributeValueListGetAttributeValueList(namespace: string, attributeValueListName: string, observe?: 'body', reportProgress?: boolean): Observable; attributeValueListGetAttributeValueList(namespace: string, attributeValueListName: string, observe?: 'response', reportProgress?: boolean): Observable>; attributeValueListGetAttributeValueList(namespace: string, attributeValueListName: string, observe?: 'events', reportProgress?: boolean): Observable>; /** * getAttributeValueLists * Gets a list of keys for all attribute value lists registered in the system that user has access to. <p>Requires READ permission on namespace</p> * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. * @param reportProgress flag to report request and response progress. */ attributeValueListGetAttributeValueLists(observe?: 'body', reportProgress?: boolean): Observable; attributeValueListGetAttributeValueLists(observe?: 'response', reportProgress?: boolean): Observable>; attributeValueListGetAttributeValueLists(observe?: 'events', reportProgress?: boolean): Observable>; }