Package version:

Interface UserAccessPolicy

Get Data Plane read only token request definition.

interface UserAccessPolicy {
    accessResourcePath?: string;
    expireTime?: string;
    permissions?: string;
    profileName?: string;
    startTime?: string;
}

Properties

accessResourcePath?: string

The resource path to get access relative to factory. Currently only empty string is supported which corresponds to the factory resource.

expireTime?: string

Expiration time for the token. Maximum duration for the token is eight hours and by default the token will expire in eight hours.

permissions?: string

The string with permissions for Data Plane access. Currently only 'r' is supported which grants read only access.

profileName?: string

The name of the profile. Currently only the default is supported. The default value is DefaultProfile.

startTime?: string

Start time for the token. If not specified the current time will be used.