Skip to content

Latest commit

 

History

History
36 lines (29 loc) · 1.42 KB

File metadata and controls

36 lines (29 loc) · 1.42 KB

ReleasePolicy

Properties

Name Type Description Notes
_access ReleasePoliciesAccessRep [optional] [default to undefined]
_id string The unique identifier of the release policy [default to undefined]
scope ReleasePolicyScope [optional] [default to undefined]
rank number The rank/priority of the release policy [default to undefined]
releaseMethod ReleaseMethod [default to undefined]
guardedReleaseConfig GuardedReleaseConfig [optional] [default to undefined]
progressiveReleaseConfig ProgressiveReleaseConfig [optional] [default to undefined]
name string The name of the release policy [default to undefined]
key string The human-readable key of the release policy [default to undefined]

Example

import { ReleasePolicy } from 'launchdarkly-api-typescript';

const instance: ReleasePolicy = {
    _access,
    _id,
    scope,
    rank,
    releaseMethod,
    guardedReleaseConfig,
    progressiveReleaseConfig,
    name,
    key,
};

[Back to Model list] [Back to API list] [Back to README]