influxdb-client-js

InfluxDB 2.0 JavaScript client

View the Project on GitHub influxdata/influxdb-client-js

Home > @influxdata/influxdb-client-apis > Authorization

Authorization type

Signature:

type Authorization = AuthorizationUpdateRequest & {
    readonly createdAt?: string;
    readonly updatedAt?: string;
    orgID?: string;
    permissions?: Permission[];
    readonly id?: string;
    readonly token?: string;
    readonly userID?: string;
    readonly user?: string;
    readonly org?: string;
    readonly links?: {
        readonly self?: Link;
        readonly user?: Link;
    };
};

References: AuthorizationUpdateRequest, Permission, Link