Skip to content

Latest commit

 

History

History
28 lines (22 loc) · 911 Bytes

File metadata and controls

28 lines (22 loc) · 911 Bytes

LaunchDarklyApi::PostReleasePolicyRequest

Properties

Name Type Description Notes
scope ReleasePolicyScope [optional]
release_method ReleaseMethod
guarded_release_config GuardedReleaseConfig [optional]
progressive_release_config ProgressiveReleaseConfig [optional]
name String The name of the release policy
key String The human-readable key of the release policy

Example

require 'launchdarkly_api'

instance = LaunchDarklyApi::PostReleasePolicyRequest.new(
  scope: null,
  release_method: null,
  guarded_release_config: null,
  progressive_release_config: null,
  name: Production Release,
  key: production-release
)