Skip to content

Latest commit

 

History

History
28 lines (21 loc) · 1.5 KB

File metadata and controls

28 lines (21 loc) · 1.5 KB

FlagCopyConfigPost

Properties

Name Type Description Notes
source FlagCopyConfigEnvironment [default to undefined]
target FlagCopyConfigEnvironment [default to undefined]
comment string Optional comment [optional] [default to undefined]
includedActions Array<string> Optional list of the flag changes to copy from the source environment to the target environment. You may include either <code>includedActions</code> or <code>excludedActions</code>, but not both. If you include neither, then all flag changes will be copied. [optional] [default to undefined]
excludedActions Array<string> Optional list of the flag changes NOT to copy from the source environment to the target environment. You may include either <code>includedActions</code> or <code>excludedActions</code>, but not both. If you include neither, then all flag changes will be copied. [optional] [default to undefined]

Example

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

const instance: FlagCopyConfigPost = {
    source,
    target,
    comment,
    includedActions,
    excludedActions,
};

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