@gridscale/api
Version:
gridscale API Wrapper
19 lines (17 loc) • 334 B
text/typescript
/* istanbul ignore file */
/* tslint:disable */
/* eslint-disable */
export type AccessKey = {
/**
* The object storage secret_key.
*/
secret_key?: string;
/**
* The object storage access_key.
*/
access_key?: string;
/**
* Account this credentials belong to.
*/
user?: string;
}