Safe Haskell | None |
---|---|
Language | Haskell2010 |
GitHub.Data.Deployments
Documentation
data DeploymentQueryOption Source #
Constructors
DeploymentQuerySha !Text | |
DeploymentQueryRef !Text | |
DeploymentQueryTask !Text | |
DeploymentQueryEnvironment !Text |
Instances
Eq DeploymentQueryOption Source # | |
Defined in GitHub.Data.Deployments Methods (==) :: DeploymentQueryOption -> DeploymentQueryOption -> Bool (/=) :: DeploymentQueryOption -> DeploymentQueryOption -> Bool | |
Data DeploymentQueryOption Source # | |
Defined in GitHub.Data.Deployments Methods gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> DeploymentQueryOption -> c DeploymentQueryOption gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c DeploymentQueryOption toConstr :: DeploymentQueryOption -> Constr dataTypeOf :: DeploymentQueryOption -> DataType dataCast1 :: Typeable t => (forall d. Data d => c (t d)) -> Maybe (c DeploymentQueryOption) dataCast2 :: Typeable t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c DeploymentQueryOption) gmapT :: (forall b. Data b => b -> b) -> DeploymentQueryOption -> DeploymentQueryOption gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> DeploymentQueryOption -> r gmapQr :: forall r r'. (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> DeploymentQueryOption -> r gmapQ :: (forall d. Data d => d -> u) -> DeploymentQueryOption -> [u] gmapQi :: Int -> (forall d. Data d => d -> u) -> DeploymentQueryOption -> u gmapM :: Monad m => (forall d. Data d => d -> m d) -> DeploymentQueryOption -> m DeploymentQueryOption gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> DeploymentQueryOption -> m DeploymentQueryOption gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> DeploymentQueryOption -> m DeploymentQueryOption | |
Ord DeploymentQueryOption Source # | |
Defined in GitHub.Data.Deployments Methods compare :: DeploymentQueryOption -> DeploymentQueryOption -> Ordering (<) :: DeploymentQueryOption -> DeploymentQueryOption -> Bool (<=) :: DeploymentQueryOption -> DeploymentQueryOption -> Bool (>) :: DeploymentQueryOption -> DeploymentQueryOption -> Bool (>=) :: DeploymentQueryOption -> DeploymentQueryOption -> Bool max :: DeploymentQueryOption -> DeploymentQueryOption -> DeploymentQueryOption min :: DeploymentQueryOption -> DeploymentQueryOption -> DeploymentQueryOption | |
Show DeploymentQueryOption Source # | |
Defined in GitHub.Data.Deployments Methods showsPrec :: Int -> DeploymentQueryOption -> ShowS show :: DeploymentQueryOption -> String showList :: [DeploymentQueryOption] -> ShowS | |
Generic DeploymentQueryOption Source # | |
Defined in GitHub.Data.Deployments Associated Types type Rep DeploymentQueryOption :: Type -> Type Methods from :: DeploymentQueryOption -> Rep DeploymentQueryOption x to :: Rep DeploymentQueryOption x -> DeploymentQueryOption | |
NFData DeploymentQueryOption Source # | |
Defined in GitHub.Data.Deployments Methods rnf :: DeploymentQueryOption -> () # | |
Binary DeploymentQueryOption Source # | |
Defined in GitHub.Data.Deployments Methods put :: DeploymentQueryOption -> Put get :: Get DeploymentQueryOption putList :: [DeploymentQueryOption] -> Put | |
type Rep DeploymentQueryOption Source # | |
Defined in GitHub.Data.Deployments type Rep DeploymentQueryOption = D1 ('MetaData "DeploymentQueryOption" "GitHub.Data.Deployments" "github-0.23-K3uQMQDn7B7DXfUjYtDWP8" 'False) ((C1 ('MetaCons "DeploymentQuerySha" 'PrefixI 'False) (S1 ('MetaSel ('Nothing :: Maybe Symbol) 'NoSourceUnpackedness 'SourceStrict 'DecidedStrict) (Rec0 Text)) :+: C1 ('MetaCons "DeploymentQueryRef" 'PrefixI 'False) (S1 ('MetaSel ('Nothing :: Maybe Symbol) 'NoSourceUnpackedness 'SourceStrict 'DecidedStrict) (Rec0 Text))) :+: (C1 ('MetaCons "DeploymentQueryTask" 'PrefixI 'False) (S1 ('MetaSel ('Nothing :: Maybe Symbol) 'NoSourceUnpackedness 'SourceStrict 'DecidedStrict) (Rec0 Text)) :+: C1 ('MetaCons "DeploymentQueryEnvironment" 'PrefixI 'False) (S1 ('MetaSel ('Nothing :: Maybe Symbol) 'NoSourceUnpackedness 'SourceStrict 'DecidedStrict) (Rec0 Text)))) |
renderDeploymentQueryOption :: DeploymentQueryOption -> (ByteString, ByteString) Source #
data Deployment a Source #
Constructors
Deployment | |
Fields
|
Instances
Eq a => Eq (Deployment a) Source # | |
Defined in GitHub.Data.Deployments | |
Data a => Data (Deployment a) Source # | |
Defined in GitHub.Data.Deployments Methods gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> Deployment a -> c (Deployment a) gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c (Deployment a) toConstr :: Deployment a -> Constr dataTypeOf :: Deployment a -> DataType dataCast1 :: Typeable t => (forall d. Data d => c (t d)) -> Maybe (c (Deployment a)) dataCast2 :: Typeable t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c (Deployment a)) gmapT :: (forall b. Data b => b -> b) -> Deployment a -> Deployment a gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> Deployment a -> r gmapQr :: forall r r'. (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> Deployment a -> r gmapQ :: (forall d. Data d => d -> u) -> Deployment a -> [u] gmapQi :: Int -> (forall d. Data d => d -> u) -> Deployment a -> u gmapM :: Monad m => (forall d. Data d => d -> m d) -> Deployment a -> m (Deployment a) gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> Deployment a -> m (Deployment a) gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> Deployment a -> m (Deployment a) | |
Ord a => Ord (Deployment a) Source # | |
Defined in GitHub.Data.Deployments Methods compare :: Deployment a -> Deployment a -> Ordering (<) :: Deployment a -> Deployment a -> Bool (<=) :: Deployment a -> Deployment a -> Bool (>) :: Deployment a -> Deployment a -> Bool (>=) :: Deployment a -> Deployment a -> Bool max :: Deployment a -> Deployment a -> Deployment a min :: Deployment a -> Deployment a -> Deployment a | |
Show a => Show (Deployment a) Source # | |
Defined in GitHub.Data.Deployments Methods showsPrec :: Int -> Deployment a -> ShowS show :: Deployment a -> String showList :: [Deployment a] -> ShowS | |
Generic (Deployment a) Source # | |
Defined in GitHub.Data.Deployments Associated Types type Rep (Deployment a) :: Type -> Type | |
NFData a => NFData (Deployment a) Source # | |
Defined in GitHub.Data.Deployments Methods rnf :: Deployment a -> () # | |
FromJSON a => FromJSON (Deployment a) Source # | |
Defined in GitHub.Data.Deployments Methods parseJSON :: Value -> Parser (Deployment a) # parseJSONList :: Value -> Parser [Deployment a] # | |
Binary a => Binary (Deployment a) Source # | |
Defined in GitHub.Data.Deployments | |
type Rep (Deployment a) Source # | |
Defined in GitHub.Data.Deployments type Rep (Deployment a) = D1 ('MetaData "Deployment" "GitHub.Data.Deployments" "github-0.23-K3uQMQDn7B7DXfUjYtDWP8" 'False) (C1 ('MetaCons "Deployment" 'PrefixI 'True) (((S1 ('MetaSel ('Just "deploymentUrl") 'NoSourceUnpackedness 'SourceStrict 'DecidedStrict) (Rec0 URL) :*: (S1 ('MetaSel ('Just "deploymentId") 'NoSourceUnpackedness 'SourceStrict 'DecidedStrict) (Rec0 (Id (Deployment a))) :*: S1 ('MetaSel ('Just "deploymentSha") 'NoSourceUnpackedness 'SourceStrict 'DecidedStrict) (Rec0 (Name (Deployment a))))) :*: (S1 ('MetaSel ('Just "deploymentRef") 'NoSourceUnpackedness 'SourceStrict 'DecidedStrict) (Rec0 Text) :*: (S1 ('MetaSel ('Just "deploymentTask") 'NoSourceUnpackedness 'SourceStrict 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "deploymentPayload") 'NoSourceUnpackedness 'SourceStrict 'DecidedStrict) (Rec0 (Maybe a))))) :*: ((S1 ('MetaSel ('Just "deploymentEnvironment") 'NoSourceUnpackedness 'SourceStrict 'DecidedStrict) (Rec0 Text) :*: (S1 ('MetaSel ('Just "deploymentDescription") 'NoSourceUnpackedness 'SourceStrict 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "deploymentCreator") 'NoSourceUnpackedness 'SourceStrict 'DecidedStrict) (Rec0 SimpleUser))) :*: ((S1 ('MetaSel ('Just "deploymentCreatedAt") 'NoSourceUnpackedness 'SourceStrict 'DecidedStrict) (Rec0 UTCTime) :*: S1 ('MetaSel ('Just "deploymentUpdatedAt") 'NoSourceUnpackedness 'SourceStrict 'DecidedStrict) (Rec0 UTCTime)) :*: (S1 ('MetaSel ('Just "deploymentStatusesUrl") 'NoSourceUnpackedness 'SourceStrict 'DecidedStrict) (Rec0 URL) :*: S1 ('MetaSel ('Just "deploymentRepositoryUrl") 'NoSourceUnpackedness 'SourceStrict 'DecidedStrict) (Rec0 URL)))))) |
data CreateDeployment a Source #
Constructors
CreateDeployment | |
Fields
|
Instances
Eq a => Eq (CreateDeployment a) Source # | |
Defined in GitHub.Data.Deployments Methods (==) :: CreateDeployment a -> CreateDeployment a -> Bool (/=) :: CreateDeployment a -> CreateDeployment a -> Bool | |
Data a => Data (CreateDeployment a) Source # | |
Defined in GitHub.Data.Deployments Methods gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> CreateDeployment a -> c (CreateDeployment a) gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c (CreateDeployment a) toConstr :: CreateDeployment a -> Constr dataTypeOf :: CreateDeployment a -> DataType dataCast1 :: Typeable t => (forall d. Data d => c (t d)) -> Maybe (c (CreateDeployment a)) dataCast2 :: Typeable t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c (CreateDeployment a)) gmapT :: (forall b. Data b => b -> b) -> CreateDeployment a -> CreateDeployment a gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> CreateDeployment a -> r gmapQr :: forall r r'. (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> CreateDeployment a -> r gmapQ :: (forall d. Data d => d -> u) -> CreateDeployment a -> [u] gmapQi :: Int -> (forall d. Data d => d -> u) -> CreateDeployment a -> u gmapM :: Monad m => (forall d. Data d => d -> m d) -> CreateDeployment a -> m (CreateDeployment a) gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> CreateDeployment a -> m (CreateDeployment a) gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> CreateDeployment a -> m (CreateDeployment a) | |
Ord a => Ord (CreateDeployment a) Source # | |
Defined in GitHub.Data.Deployments Methods compare :: CreateDeployment a -> CreateDeployment a -> Ordering (<) :: CreateDeployment a -> CreateDeployment a -> Bool (<=) :: CreateDeployment a -> CreateDeployment a -> Bool (>) :: CreateDeployment a -> CreateDeployment a -> Bool (>=) :: CreateDeployment a -> CreateDeployment a -> Bool max :: CreateDeployment a -> CreateDeployment a -> CreateDeployment a min :: CreateDeployment a -> CreateDeployment a -> CreateDeployment a | |
Show a => Show (CreateDeployment a) Source # | |
Defined in GitHub.Data.Deployments Methods showsPrec :: Int -> CreateDeployment a -> ShowS show :: CreateDeployment a -> String showList :: [CreateDeployment a] -> ShowS | |
Generic (CreateDeployment a) Source # | |
Defined in GitHub.Data.Deployments Associated Types type Rep (CreateDeployment a) :: Type -> Type Methods from :: CreateDeployment a -> Rep (CreateDeployment a) x to :: Rep (CreateDeployment a) x -> CreateDeployment a | |
NFData a => NFData (CreateDeployment a) Source # | |
Defined in GitHub.Data.Deployments Methods rnf :: CreateDeployment a -> () # | |
ToJSON a => ToJSON (CreateDeployment a) Source # | |
Defined in GitHub.Data.Deployments Methods toJSON :: CreateDeployment a -> Value # toEncoding :: CreateDeployment a -> Encoding # toJSONList :: [CreateDeployment a] -> Value # toEncodingList :: [CreateDeployment a] -> Encoding # | |
Binary a => Binary (CreateDeployment a) Source # | |
Defined in GitHub.Data.Deployments Methods put :: CreateDeployment a -> Put get :: Get (CreateDeployment a) putList :: [CreateDeployment a] -> Put | |
type Rep (CreateDeployment a) Source # | |
Defined in GitHub.Data.Deployments type Rep (CreateDeployment a) = D1 ('MetaData "CreateDeployment" "GitHub.Data.Deployments" "github-0.23-K3uQMQDn7B7DXfUjYtDWP8" 'False) (C1 ('MetaCons "CreateDeployment" 'PrefixI 'True) ((S1 ('MetaSel ('Just "createDeploymentRef") 'NoSourceUnpackedness 'SourceStrict 'DecidedStrict) (Rec0 Text) :*: (S1 ('MetaSel ('Just "createDeploymentTask") 'NoSourceUnpackedness 'SourceStrict 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "createDeploymentAutoMerge") 'NoSourceUnpackedness 'SourceStrict 'DecidedStrict) (Rec0 (Maybe Bool)))) :*: ((S1 ('MetaSel ('Just "createDeploymentRequiredContexts") 'NoSourceUnpackedness 'SourceStrict 'DecidedStrict) (Rec0 (Maybe (Vector Text))) :*: S1 ('MetaSel ('Just "createDeploymentPayload") 'NoSourceUnpackedness 'SourceStrict 'DecidedStrict) (Rec0 (Maybe a))) :*: (S1 ('MetaSel ('Just "createDeploymentEnvironment") 'NoSourceUnpackedness 'SourceStrict 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "createDeploymentDescription") 'NoSourceUnpackedness 'SourceStrict 'DecidedStrict) (Rec0 (Maybe Text)))))) |
data DeploymentStatus Source #
Constructors
Instances
Eq DeploymentStatus Source # | |
Defined in GitHub.Data.Deployments Methods (==) :: DeploymentStatus -> DeploymentStatus -> Bool (/=) :: DeploymentStatus -> DeploymentStatus -> Bool | |
Data DeploymentStatus Source # | |
Defined in GitHub.Data.Deployments Methods gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> DeploymentStatus -> c DeploymentStatus gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c DeploymentStatus toConstr :: DeploymentStatus -> Constr dataTypeOf :: DeploymentStatus -> DataType dataCast1 :: Typeable t => (forall d. Data d => c (t d)) -> Maybe (c DeploymentStatus) dataCast2 :: Typeable t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c DeploymentStatus) gmapT :: (forall b. Data b => b -> b) -> DeploymentStatus -> DeploymentStatus gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> DeploymentStatus -> r gmapQr :: forall r r'. (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> DeploymentStatus -> r gmapQ :: (forall d. Data d => d -> u) -> DeploymentStatus -> [u] gmapQi :: Int -> (forall d. Data d => d -> u) -> DeploymentStatus -> u gmapM :: Monad m => (forall d. Data d => d -> m d) -> DeploymentStatus -> m DeploymentStatus gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> DeploymentStatus -> m DeploymentStatus gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> DeploymentStatus -> m DeploymentStatus | |
Ord DeploymentStatus Source # | |
Defined in GitHub.Data.Deployments Methods compare :: DeploymentStatus -> DeploymentStatus -> Ordering (<) :: DeploymentStatus -> DeploymentStatus -> Bool (<=) :: DeploymentStatus -> DeploymentStatus -> Bool (>) :: DeploymentStatus -> DeploymentStatus -> Bool (>=) :: DeploymentStatus -> DeploymentStatus -> Bool max :: DeploymentStatus -> DeploymentStatus -> DeploymentStatus min :: DeploymentStatus -> DeploymentStatus -> DeploymentStatus | |
Show DeploymentStatus Source # | |
Defined in GitHub.Data.Deployments Methods showsPrec :: Int -> DeploymentStatus -> ShowS show :: DeploymentStatus -> String showList :: [DeploymentStatus] -> ShowS | |
Generic DeploymentStatus Source # | |
Defined in GitHub.Data.Deployments Associated Types type Rep DeploymentStatus :: Type -> Type Methods from :: DeploymentStatus -> Rep DeploymentStatus x to :: Rep DeploymentStatus x -> DeploymentStatus | |
NFData DeploymentStatus Source # | |
Defined in GitHub.Data.Deployments Methods rnf :: DeploymentStatus -> () # | |
FromJSON DeploymentStatus Source # | |
Defined in GitHub.Data.Deployments Methods parseJSON :: Value -> Parser DeploymentStatus # parseJSONList :: Value -> Parser [DeploymentStatus] # | |
Binary DeploymentStatus Source # | |
Defined in GitHub.Data.Deployments Methods put :: DeploymentStatus -> Put get :: Get DeploymentStatus putList :: [DeploymentStatus] -> Put | |
type Rep DeploymentStatus Source # | |
Defined in GitHub.Data.Deployments type Rep DeploymentStatus = D1 ('MetaData "DeploymentStatus" "GitHub.Data.Deployments" "github-0.23-K3uQMQDn7B7DXfUjYtDWP8" 'False) (C1 ('MetaCons "DeploymentStatus" 'PrefixI 'True) (((S1 ('MetaSel ('Just "deploymentStatusUrl") 'NoSourceUnpackedness 'SourceStrict 'DecidedStrict) (Rec0 URL) :*: S1 ('MetaSel ('Just "deploymentStatusId") 'NoSourceUnpackedness 'SourceStrict 'DecidedStrict) (Rec0 (Id DeploymentStatus))) :*: (S1 ('MetaSel ('Just "deploymentStatusState") 'NoSourceUnpackedness 'SourceStrict 'DecidedStrict) (Rec0 DeploymentStatusState) :*: (S1 ('MetaSel ('Just "deploymentStatusCreator") 'NoSourceUnpackedness 'SourceStrict 'DecidedStrict) (Rec0 SimpleUser) :*: S1 ('MetaSel ('Just "deploymentStatusDescription") 'NoSourceUnpackedness 'SourceStrict 'DecidedStrict) (Rec0 Text)))) :*: ((S1 ('MetaSel ('Just "deploymentStatusTargetUrl") 'NoSourceUnpackedness 'SourceStrict 'DecidedStrict) (Rec0 URL) :*: S1 ('MetaSel ('Just "deploymentStatusCreatedAt") 'NoSourceUnpackedness 'SourceStrict 'DecidedStrict) (Rec0 UTCTime)) :*: (S1 ('MetaSel ('Just "deploymentStatusUpdatedAt") 'NoSourceUnpackedness 'SourceStrict 'DecidedStrict) (Rec0 UTCTime) :*: (S1 ('MetaSel ('Just "deploymentStatusDeploymentUrl") 'NoSourceUnpackedness 'SourceStrict 'DecidedStrict) (Rec0 URL) :*: S1 ('MetaSel ('Just "deploymentStatusRepositoryUrl") 'NoSourceUnpackedness 'SourceStrict 'DecidedStrict) (Rec0 URL)))))) |
data DeploymentStatusState Source #
Constructors
DeploymentStatusError | |
DeploymentStatusFailure | |
DeploymentStatusPending | |
DeploymentStatusSuccess | |
DeploymentStatusInactive |
Instances
data CreateDeploymentStatus Source #
Constructors
CreateDeploymentStatus | |
Fields
|