vault/ui/api-client/dist/esm/models/OciConfigureRequest.d.ts

33 lines
1.1 KiB
TypeScript

/**
* HashiCorp Vault API
* HTTP API that gives you full access to Vault. All API routes are prefixed with `/v1/`.
*
* The version of the OpenAPI document: 1.21.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
/**
*
* @export
* @interface OciConfigureRequest
*/
export interface OciConfigureRequest {
/**
* The tenancy id of the account.
* @type {string}
* @memberof OciConfigureRequest
*/
homeTenancyId?: string;
}
/**
* Check if a given object implements the OciConfigureRequest interface.
*/
export declare function instanceOfOciConfigureRequest(value: object): value is OciConfigureRequest;
export declare function OciConfigureRequestFromJSON(json: any): OciConfigureRequest;
export declare function OciConfigureRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): OciConfigureRequest;
export declare function OciConfigureRequestToJSON(json: any): OciConfigureRequest;
export declare function OciConfigureRequestToJSONTyped(value?: OciConfigureRequest | null, ignoreDiscriminator?: boolean): any;