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

33 lines
1.6 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 SystemReadConfigGroupPolicyApplicationResponse
*/
export interface SystemReadConfigGroupPolicyApplicationResponse {
/**
* The current-set group_policy_application_mode. Will be either within_namespace_hierarchy or any.
* @type {string}
* @memberof SystemReadConfigGroupPolicyApplicationResponse
*/
groupPolicyApplicationMode?: string;
}
/**
* Check if a given object implements the SystemReadConfigGroupPolicyApplicationResponse interface.
*/
export declare function instanceOfSystemReadConfigGroupPolicyApplicationResponse(value: object): value is SystemReadConfigGroupPolicyApplicationResponse;
export declare function SystemReadConfigGroupPolicyApplicationResponseFromJSON(json: any): SystemReadConfigGroupPolicyApplicationResponse;
export declare function SystemReadConfigGroupPolicyApplicationResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): SystemReadConfigGroupPolicyApplicationResponse;
export declare function SystemReadConfigGroupPolicyApplicationResponseToJSON(json: any): SystemReadConfigGroupPolicyApplicationResponse;
export declare function SystemReadConfigGroupPolicyApplicationResponseToJSONTyped(value?: SystemReadConfigGroupPolicyApplicationResponse | null, ignoreDiscriminator?: boolean): any;