gogol-dataflow-0.1.0: Google Dataflow SDK.

Copyright(c) 2015-2016 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay <brendan.g.hay@gmail.com>
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellNone
LanguageHaskell2010

Network.Google.Dataflow

Contents

Description

Develops and executes data processing patterns like ETL, batch computation, and continuous computation.

See: Google Dataflow API Reference

Synopsis

Service Configuration

dataflowService :: ServiceConfig Source #

Default request referring to version v1b3 of the Google Dataflow API. This contains the host and root path used as a starting point for constructing service requests.

OAuth Scopes

userInfoEmailScope :: Proxy '["https://www.googleapis.com/auth/userinfo.email"] Source #

View your email address

cloudPlatformScope :: Proxy '["https://www.googleapis.com/auth/cloud-platform"] Source #

View and manage your data across Google Cloud Platform services

API Declaration

Resources

dataflow.projects.jobs.create

dataflow.projects.jobs.get

dataflow.projects.jobs.getMetrics

dataflow.projects.jobs.list

dataflow.projects.jobs.messages.list

dataflow.projects.jobs.update

dataflow.projects.jobs.workItems.lease

dataflow.projects.jobs.workItems.reportStatus

dataflow.projects.workerMessages

Types

JobExecutionInfoStages

data JobExecutionInfoStages Source #

A mapping from each stage to the information about that stage.

See: jobExecutionInfoStages smart constructor.

Instances

Eq JobExecutionInfoStages Source # 
Data JobExecutionInfoStages Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> JobExecutionInfoStages -> c JobExecutionInfoStages #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c JobExecutionInfoStages #

toConstr :: JobExecutionInfoStages -> Constr #

dataTypeOf :: JobExecutionInfoStages -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c JobExecutionInfoStages) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c JobExecutionInfoStages) #

gmapT :: (forall b. Data b => b -> b) -> JobExecutionInfoStages -> JobExecutionInfoStages #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> JobExecutionInfoStages -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> JobExecutionInfoStages -> r #

gmapQ :: (forall d. Data d => d -> u) -> JobExecutionInfoStages -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> JobExecutionInfoStages -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> JobExecutionInfoStages -> m JobExecutionInfoStages #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> JobExecutionInfoStages -> m JobExecutionInfoStages #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> JobExecutionInfoStages -> m JobExecutionInfoStages #

Show JobExecutionInfoStages Source # 
Generic JobExecutionInfoStages Source # 
ToJSON JobExecutionInfoStages Source # 
FromJSON JobExecutionInfoStages Source # 
type Rep JobExecutionInfoStages Source # 
type Rep JobExecutionInfoStages = D1 (MetaData "JobExecutionInfoStages" "Network.Google.Dataflow.Types.Product" "gogol-dataflow-0.1.0-Hia4fuX0B5YniTo71jkPP" True) (C1 (MetaCons "JobExecutionInfoStages'" PrefixI True) (S1 (MetaSel (Just Symbol "_jeisAddtional") NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 (HashMap Text JobExecutionStageInfo))))

jobExecutionInfoStages Source #

Creates a value of JobExecutionInfoStages with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

ComputationTopology

data ComputationTopology Source #

All configuration data for a particular Computation.

See: computationTopology smart constructor.

Instances

Eq ComputationTopology Source # 
Data ComputationTopology Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> ComputationTopology -> c ComputationTopology #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c ComputationTopology #

toConstr :: ComputationTopology -> Constr #

dataTypeOf :: ComputationTopology -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c ComputationTopology) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c ComputationTopology) #

gmapT :: (forall b. Data b => b -> b) -> ComputationTopology -> ComputationTopology #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> ComputationTopology -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> ComputationTopology -> r #

gmapQ :: (forall d. Data d => d -> u) -> ComputationTopology -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> ComputationTopology -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> ComputationTopology -> m ComputationTopology #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> ComputationTopology -> m ComputationTopology #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> ComputationTopology -> m ComputationTopology #

Show ComputationTopology Source # 
Generic ComputationTopology Source # 
ToJSON ComputationTopology Source # 
FromJSON ComputationTopology Source # 
type Rep ComputationTopology Source # 

computationTopology :: ComputationTopology Source #

Creates a value of ComputationTopology with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

ctInputs :: Lens' ComputationTopology [StreamLocation] Source #

The inputs to the computation.

ctKeyRanges :: Lens' ComputationTopology [KeyRangeLocation] Source #

The key ranges processed by the computation.

ctOutputs :: Lens' ComputationTopology [StreamLocation] Source #

The outputs from the computation.

ctComputationId :: Lens' ComputationTopology (Maybe Text) Source #

The ID of the computation.

SourceSplitResponse

data SourceSplitResponse Source #

The response to a SourceSplitRequest.

See: sourceSplitResponse smart constructor.

Instances

Eq SourceSplitResponse Source # 
Data SourceSplitResponse Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> SourceSplitResponse -> c SourceSplitResponse #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c SourceSplitResponse #

toConstr :: SourceSplitResponse -> Constr #

dataTypeOf :: SourceSplitResponse -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c SourceSplitResponse) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c SourceSplitResponse) #

gmapT :: (forall b. Data b => b -> b) -> SourceSplitResponse -> SourceSplitResponse #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> SourceSplitResponse -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> SourceSplitResponse -> r #

gmapQ :: (forall d. Data d => d -> u) -> SourceSplitResponse -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> SourceSplitResponse -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> SourceSplitResponse -> m SourceSplitResponse #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> SourceSplitResponse -> m SourceSplitResponse #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> SourceSplitResponse -> m SourceSplitResponse #

Show SourceSplitResponse Source # 
Generic SourceSplitResponse Source # 
ToJSON SourceSplitResponse Source # 
FromJSON SourceSplitResponse Source # 
type Rep SourceSplitResponse Source # 
type Rep SourceSplitResponse = D1 (MetaData "SourceSplitResponse" "Network.Google.Dataflow.Types.Product" "gogol-dataflow-0.1.0-Hia4fuX0B5YniTo71jkPP" False) (C1 (MetaCons "SourceSplitResponse'" PrefixI True) ((:*:) (S1 (MetaSel (Just Symbol "_ssrBundles") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe [DerivedSource]))) ((:*:) (S1 (MetaSel (Just Symbol "_ssrShards") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe [SourceSplitShard]))) (S1 (MetaSel (Just Symbol "_ssrOutcome") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))))))

sourceSplitResponse :: SourceSplitResponse Source #

Creates a value of SourceSplitResponse with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

ssrBundles :: Lens' SourceSplitResponse [DerivedSource] Source #

If outcome is SPLITTING_HAPPENED, then this is a list of bundles into which the source was split. Otherwise this field is ignored. This list can be empty, which means the source represents an empty input.

ssrShards :: Lens' SourceSplitResponse [SourceSplitShard] Source #

DEPRECATED in favor of bundles.

ssrOutcome :: Lens' SourceSplitResponse (Maybe Text) Source #

Indicates whether splitting happened and produced a list of bundles. If this is USE_CURRENT_SOURCE_AS_IS, the current source should be processed "as is" without splitting. "bundles" is ignored in this case. If this is SPLITTING_HAPPENED, then "bundles" contains a list of bundles into which the source was split.

Status

data Status Source #

The `Status` type defines a logical error model that is suitable for different programming environments, including REST APIs and RPC APIs. It is used by gRPC. The error model is designed to be: - Simple to use and understand for most users - Flexible enough to meet unexpected needs # Overview The `Status` message contains three pieces of data: error code, error message, and error details. The error code should be an enum value of google.rpc.Code, but it may accept additional error codes if needed. The error message should be a developer-facing English message that helps developers *understand* and *resolve* the error. If a localized user-facing error message is needed, put the localized message in the error details or localize it in the client. The optional error details may contain arbitrary information about the error. There is a predefined set of error detail types in the package `google.rpc` which can be used for common error conditions. # Language mapping The `Status` message is the logical representation of the error model, but it is not necessarily the actual wire format. When the `Status` message is exposed in different client libraries and different wire protocols, it can be mapped differently. For example, it will likely be mapped to some exceptions in Java, but more likely mapped to some error codes in C. # Other uses The error model and the `Status` message can be used in a variety of environments, either with or without APIs, to provide a consistent developer experience across different environments. Example uses of this error model include: - Partial errors. If a service needs to return partial errors to the client, it may embed the `Status` in the normal response to indicate the partial errors. - Workflow errors. A typical workflow has multiple steps. Each step may have a `Status` message for error reporting purpose. - Batch operations. If a client uses batch request and batch response, the `Status` message should be used directly inside batch response, one for each error sub-response. - Asynchronous operations. If an API call embeds asynchronous operation results in its response, the status of those operations should be represented directly using the `Status` message. - Logging. If some API errors are stored in logs, the message `Status` could be used directly after any stripping needed for security/privacy reasons.

See: status smart constructor.

Instances

Eq Status Source # 

Methods

(==) :: Status -> Status -> Bool #

(/=) :: Status -> Status -> Bool #

Data Status Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> Status -> c Status #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c Status #

toConstr :: Status -> Constr #

dataTypeOf :: Status -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c Status) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c Status) #

gmapT :: (forall b. Data b => b -> b) -> Status -> Status #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> Status -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> Status -> r #

gmapQ :: (forall d. Data d => d -> u) -> Status -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> Status -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> Status -> m Status #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> Status -> m Status #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> Status -> m Status #

Show Status Source # 
Generic Status Source # 

Associated Types

type Rep Status :: * -> * #

Methods

from :: Status -> Rep Status x #

to :: Rep Status x -> Status #

ToJSON Status Source # 
FromJSON Status Source # 
type Rep Status Source # 
type Rep Status = D1 (MetaData "Status" "Network.Google.Dataflow.Types.Product" "gogol-dataflow-0.1.0-Hia4fuX0B5YniTo71jkPP" False) (C1 (MetaCons "Status'" PrefixI True) ((:*:) (S1 (MetaSel (Just Symbol "_sDetails") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe [StatusDetailsItem]))) ((:*:) (S1 (MetaSel (Just Symbol "_sCode") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe (Textual Int32)))) (S1 (MetaSel (Just Symbol "_sMessage") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))))))

status :: Status Source #

Creates a value of Status with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

sDetails :: Lens' Status [StatusDetailsItem] Source #

A list of messages that carry the error details. There will be a common set of message types for APIs to use.

sCode :: Lens' Status (Maybe Int32) Source #

The status code, which should be an enum value of google.rpc.Code.

sMessage :: Lens' Status (Maybe Text) Source #

A developer-facing error message, which should be in English. Any user-facing error message should be localized and sent in the google.rpc.Status.details field, or localized by the client.

WorkItem

data WorkItem Source #

WorkItem represents basic information about a WorkItem to be executed in the cloud.

See: workItem smart constructor.

Instances

Eq WorkItem Source # 
Data WorkItem Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> WorkItem -> c WorkItem #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c WorkItem #

toConstr :: WorkItem -> Constr #

dataTypeOf :: WorkItem -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c WorkItem) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c WorkItem) #

gmapT :: (forall b. Data b => b -> b) -> WorkItem -> WorkItem #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> WorkItem -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> WorkItem -> r #

gmapQ :: (forall d. Data d => d -> u) -> WorkItem -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> WorkItem -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> WorkItem -> m WorkItem #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> WorkItem -> m WorkItem #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> WorkItem -> m WorkItem #

Show WorkItem Source # 
Generic WorkItem Source # 

Associated Types

type Rep WorkItem :: * -> * #

Methods

from :: WorkItem -> Rep WorkItem x #

to :: Rep WorkItem x -> WorkItem #

ToJSON WorkItem Source # 
FromJSON WorkItem Source # 
type Rep WorkItem Source # 
type Rep WorkItem = D1 (MetaData "WorkItem" "Network.Google.Dataflow.Types.Product" "gogol-dataflow-0.1.0-Hia4fuX0B5YniTo71jkPP" False) (C1 (MetaCons "WorkItem'" PrefixI True) ((:*:) ((:*:) ((:*:) (S1 (MetaSel (Just Symbol "_wiJobId") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) ((:*:) (S1 (MetaSel (Just Symbol "_wiReportStatusInterval") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) (S1 (MetaSel (Just Symbol "_wiShellTask") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe ShellTask))))) ((:*:) ((:*:) (S1 (MetaSel (Just Symbol "_wiStreamingSetupTask") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe StreamingSetupTask))) (S1 (MetaSel (Just Symbol "_wiInitialReportIndex") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe (Textual Int64))))) ((:*:) (S1 (MetaSel (Just Symbol "_wiMapTask") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe MapTask))) (S1 (MetaSel (Just Symbol "_wiPackages") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe [Package])))))) ((:*:) ((:*:) (S1 (MetaSel (Just Symbol "_wiStreamingComputationTask") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe StreamingComputationTask))) ((:*:) (S1 (MetaSel (Just Symbol "_wiSourceOperationTask") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe SourceOperationRequest))) (S1 (MetaSel (Just Symbol "_wiId") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe (Textual Int64)))))) ((:*:) ((:*:) (S1 (MetaSel (Just Symbol "_wiProjectId") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) (S1 (MetaSel (Just Symbol "_wiLeaseExpireTime") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)))) ((:*:) (S1 (MetaSel (Just Symbol "_wiConfiguration") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) (S1 (MetaSel (Just Symbol "_wiSeqMapTask") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe SeqMapTask))))))))

wiJobId :: Lens' WorkItem (Maybe Text) Source #

Identifies the workflow job this WorkItem belongs to.

wiReportStatusInterval :: Lens' WorkItem (Maybe Text) Source #

Recommended reporting interval.

wiShellTask :: Lens' WorkItem (Maybe ShellTask) Source #

Additional information for ShellTask WorkItems.

wiStreamingSetupTask :: Lens' WorkItem (Maybe StreamingSetupTask) Source #

Additional information for StreamingSetupTask WorkItems.

wiInitialReportIndex :: Lens' WorkItem (Maybe Int64) Source #

The initial index to use when reporting the status of the WorkItem.

wiMapTask :: Lens' WorkItem (Maybe MapTask) Source #

Additional information for MapTask WorkItems.

wiPackages :: Lens' WorkItem [Package] Source #

Any required packages that need to be fetched in order to execute this WorkItem.

wiStreamingComputationTask :: Lens' WorkItem (Maybe StreamingComputationTask) Source #

Additional information for StreamingComputationTask WorkItems.

wiSourceOperationTask :: Lens' WorkItem (Maybe SourceOperationRequest) Source #

Additional information for source operation WorkItems.

wiId :: Lens' WorkItem (Maybe Int64) Source #

Identifies this WorkItem.

wiProjectId :: Lens' WorkItem (Maybe Text) Source #

Identifies the cloud project this WorkItem belongs to.

wiLeaseExpireTime :: Lens' WorkItem (Maybe Text) Source #

Time when the lease on this Work will expire.

wiConfiguration :: Lens' WorkItem (Maybe Text) Source #

Work item-specific configuration as an opaque blob.

wiSeqMapTask :: Lens' WorkItem (Maybe SeqMapTask) Source #

Additional information for SeqMapTask WorkItems.

WorkerHealthReport

data WorkerHealthReport Source #

WorkerHealthReport contains information about the health of a worker. The VM should be identified by the labels attached to the WorkerMessage that this health ping belongs to.

See: workerHealthReport smart constructor.

Instances

Eq WorkerHealthReport Source # 
Data WorkerHealthReport Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> WorkerHealthReport -> c WorkerHealthReport #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c WorkerHealthReport #

toConstr :: WorkerHealthReport -> Constr #

dataTypeOf :: WorkerHealthReport -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c WorkerHealthReport) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c WorkerHealthReport) #

gmapT :: (forall b. Data b => b -> b) -> WorkerHealthReport -> WorkerHealthReport #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> WorkerHealthReport -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> WorkerHealthReport -> r #

gmapQ :: (forall d. Data d => d -> u) -> WorkerHealthReport -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> WorkerHealthReport -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> WorkerHealthReport -> m WorkerHealthReport #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> WorkerHealthReport -> m WorkerHealthReport #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> WorkerHealthReport -> m WorkerHealthReport #

Show WorkerHealthReport Source # 
Generic WorkerHealthReport Source # 
ToJSON WorkerHealthReport Source # 
FromJSON WorkerHealthReport Source # 
type Rep WorkerHealthReport Source # 
type Rep WorkerHealthReport = D1 (MetaData "WorkerHealthReport" "Network.Google.Dataflow.Types.Product" "gogol-dataflow-0.1.0-Hia4fuX0B5YniTo71jkPP" False) (C1 (MetaCons "WorkerHealthReport'" PrefixI True) ((:*:) ((:*:) (S1 (MetaSel (Just Symbol "_whrVMIsHealthy") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Bool))) (S1 (MetaSel (Just Symbol "_whrReportInterval") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)))) ((:*:) (S1 (MetaSel (Just Symbol "_whrPods") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe [WorkerHealthReportPodsItem]))) (S1 (MetaSel (Just Symbol "_whrVMStartupTime") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))))))

workerHealthReport :: WorkerHealthReport Source #

Creates a value of WorkerHealthReport with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

whrVMIsHealthy :: Lens' WorkerHealthReport (Maybe Bool) Source #

Whether the VM is healthy.

whrReportInterval :: Lens' WorkerHealthReport (Maybe Text) Source #

The interval at which the worker is sending health reports. The default value of 0 should be interpreted as the field is not being explicitly set by the worker.

whrPods :: Lens' WorkerHealthReport [WorkerHealthReportPodsItem] Source #

The pods running on the worker. See: http://kubernetes.io/v1.1/docs/api-reference/v1/definitions.html#_v1_pod This field is used by the worker to send the status of the indvidual containers running on each worker.

whrVMStartupTime :: Lens' WorkerHealthReport (Maybe Text) Source #

The time the VM was booted.

SourceSplitOptions

data SourceSplitOptions Source #

Hints for splitting a Source into bundles (parts for parallel processing) using SourceSplitRequest.

See: sourceSplitOptions smart constructor.

Instances

Eq SourceSplitOptions Source # 
Data SourceSplitOptions Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> SourceSplitOptions -> c SourceSplitOptions #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c SourceSplitOptions #

toConstr :: SourceSplitOptions -> Constr #

dataTypeOf :: SourceSplitOptions -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c SourceSplitOptions) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c SourceSplitOptions) #

gmapT :: (forall b. Data b => b -> b) -> SourceSplitOptions -> SourceSplitOptions #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> SourceSplitOptions -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> SourceSplitOptions -> r #

gmapQ :: (forall d. Data d => d -> u) -> SourceSplitOptions -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> SourceSplitOptions -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> SourceSplitOptions -> m SourceSplitOptions #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> SourceSplitOptions -> m SourceSplitOptions #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> SourceSplitOptions -> m SourceSplitOptions #

Show SourceSplitOptions Source # 
Generic SourceSplitOptions Source # 
ToJSON SourceSplitOptions Source # 
FromJSON SourceSplitOptions Source # 
type Rep SourceSplitOptions Source # 
type Rep SourceSplitOptions = D1 (MetaData "SourceSplitOptions" "Network.Google.Dataflow.Types.Product" "gogol-dataflow-0.1.0-Hia4fuX0B5YniTo71jkPP" False) (C1 (MetaCons "SourceSplitOptions'" PrefixI True) ((:*:) (S1 (MetaSel (Just Symbol "_ssoDesiredShardSizeBytes") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe (Textual Int64)))) (S1 (MetaSel (Just Symbol "_ssoDesiredBundleSizeBytes") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe (Textual Int64))))))

sourceSplitOptions :: SourceSplitOptions Source #

Creates a value of SourceSplitOptions with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

ssoDesiredShardSizeBytes :: Lens' SourceSplitOptions (Maybe Int64) Source #

DEPRECATED in favor of desired_bundle_size_bytes.

ssoDesiredBundleSizeBytes :: Lens' SourceSplitOptions (Maybe Int64) Source #

The source should be split into a set of bundles where the estimated size of each is approximately this many bytes.

WorkerPoolMetadata

data WorkerPoolMetadata Source #

Metadata to set on the Google Compute Engine VMs.

See: workerPoolMetadata smart constructor.

Instances

Eq WorkerPoolMetadata Source # 
Data WorkerPoolMetadata Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> WorkerPoolMetadata -> c WorkerPoolMetadata #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c WorkerPoolMetadata #

toConstr :: WorkerPoolMetadata -> Constr #

dataTypeOf :: WorkerPoolMetadata -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c WorkerPoolMetadata) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c WorkerPoolMetadata) #

gmapT :: (forall b. Data b => b -> b) -> WorkerPoolMetadata -> WorkerPoolMetadata #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> WorkerPoolMetadata -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> WorkerPoolMetadata -> r #

gmapQ :: (forall d. Data d => d -> u) -> WorkerPoolMetadata -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> WorkerPoolMetadata -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> WorkerPoolMetadata -> m WorkerPoolMetadata #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> WorkerPoolMetadata -> m WorkerPoolMetadata #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> WorkerPoolMetadata -> m WorkerPoolMetadata #

Show WorkerPoolMetadata Source # 
Generic WorkerPoolMetadata Source # 
ToJSON WorkerPoolMetadata Source # 
FromJSON WorkerPoolMetadata Source # 
type Rep WorkerPoolMetadata Source # 
type Rep WorkerPoolMetadata = D1 (MetaData "WorkerPoolMetadata" "Network.Google.Dataflow.Types.Product" "gogol-dataflow-0.1.0-Hia4fuX0B5YniTo71jkPP" True) (C1 (MetaCons "WorkerPoolMetadata'" PrefixI True) (S1 (MetaSel (Just Symbol "_wpmAddtional") NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 (HashMap Text Text))))

workerPoolMetadata Source #

Creates a value of WorkerPoolMetadata with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

AutoscalingSettings

data AutoscalingSettings Source #

Settings for WorkerPool autoscaling.

See: autoscalingSettings smart constructor.

Instances

Eq AutoscalingSettings Source # 
Data AutoscalingSettings Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> AutoscalingSettings -> c AutoscalingSettings #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c AutoscalingSettings #

toConstr :: AutoscalingSettings -> Constr #

dataTypeOf :: AutoscalingSettings -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c AutoscalingSettings) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c AutoscalingSettings) #

gmapT :: (forall b. Data b => b -> b) -> AutoscalingSettings -> AutoscalingSettings #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> AutoscalingSettings -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> AutoscalingSettings -> r #

gmapQ :: (forall d. Data d => d -> u) -> AutoscalingSettings -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> AutoscalingSettings -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> AutoscalingSettings -> m AutoscalingSettings #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> AutoscalingSettings -> m AutoscalingSettings #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> AutoscalingSettings -> m AutoscalingSettings #

Show AutoscalingSettings Source # 
Generic AutoscalingSettings Source # 
ToJSON AutoscalingSettings Source # 
FromJSON AutoscalingSettings Source # 
type Rep AutoscalingSettings Source # 
type Rep AutoscalingSettings = D1 (MetaData "AutoscalingSettings" "Network.Google.Dataflow.Types.Product" "gogol-dataflow-0.1.0-Hia4fuX0B5YniTo71jkPP" False) (C1 (MetaCons "AutoscalingSettings'" PrefixI True) ((:*:) (S1 (MetaSel (Just Symbol "_asMaxNumWorkers") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe (Textual Int32)))) (S1 (MetaSel (Just Symbol "_asAlgorithm") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)))))

autoscalingSettings :: AutoscalingSettings Source #

Creates a value of AutoscalingSettings with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

asMaxNumWorkers :: Lens' AutoscalingSettings (Maybe Int32) Source #

The maximum number of workers to cap scaling at.

asAlgorithm :: Lens' AutoscalingSettings (Maybe Text) Source #

The algorithm to use for autoscaling.

JobExecutionStageInfo

data JobExecutionStageInfo Source #

Contains information about how a particular google.dataflow.v1beta3.Step will be executed.

See: jobExecutionStageInfo smart constructor.

Instances

Eq JobExecutionStageInfo Source # 
Data JobExecutionStageInfo Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> JobExecutionStageInfo -> c JobExecutionStageInfo #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c JobExecutionStageInfo #

toConstr :: JobExecutionStageInfo -> Constr #

dataTypeOf :: JobExecutionStageInfo -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c JobExecutionStageInfo) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c JobExecutionStageInfo) #

gmapT :: (forall b. Data b => b -> b) -> JobExecutionStageInfo -> JobExecutionStageInfo #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> JobExecutionStageInfo -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> JobExecutionStageInfo -> r #

gmapQ :: (forall d. Data d => d -> u) -> JobExecutionStageInfo -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> JobExecutionStageInfo -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> JobExecutionStageInfo -> m JobExecutionStageInfo #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> JobExecutionStageInfo -> m JobExecutionStageInfo #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> JobExecutionStageInfo -> m JobExecutionStageInfo #

Show JobExecutionStageInfo Source # 
Generic JobExecutionStageInfo Source # 
ToJSON JobExecutionStageInfo Source # 
FromJSON JobExecutionStageInfo Source # 
type Rep JobExecutionStageInfo Source # 
type Rep JobExecutionStageInfo = D1 (MetaData "JobExecutionStageInfo" "Network.Google.Dataflow.Types.Product" "gogol-dataflow-0.1.0-Hia4fuX0B5YniTo71jkPP" True) (C1 (MetaCons "JobExecutionStageInfo'" PrefixI True) (S1 (MetaSel (Just Symbol "_jesiStepName") NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 (Maybe [Text]))))

jobExecutionStageInfo :: JobExecutionStageInfo Source #

Creates a value of JobExecutionStageInfo with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

jesiStepName :: Lens' JobExecutionStageInfo [Text] Source #

The steps associated with the execution stage. Note that stages may have several steps, and that a given step might be run by more than one stage.

InstructionOutput

data InstructionOutput Source #

An output of an instruction.

See: instructionOutput smart constructor.

Instances

Eq InstructionOutput Source # 
Data InstructionOutput Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> InstructionOutput -> c InstructionOutput #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c InstructionOutput #

toConstr :: InstructionOutput -> Constr #

dataTypeOf :: InstructionOutput -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c InstructionOutput) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c InstructionOutput) #

gmapT :: (forall b. Data b => b -> b) -> InstructionOutput -> InstructionOutput #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> InstructionOutput -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> InstructionOutput -> r #

gmapQ :: (forall d. Data d => d -> u) -> InstructionOutput -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> InstructionOutput -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> InstructionOutput -> m InstructionOutput #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> InstructionOutput -> m InstructionOutput #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> InstructionOutput -> m InstructionOutput #

Show InstructionOutput Source # 
Generic InstructionOutput Source # 
ToJSON InstructionOutput Source # 
FromJSON InstructionOutput Source # 
type Rep InstructionOutput Source # 
type Rep InstructionOutput = D1 (MetaData "InstructionOutput" "Network.Google.Dataflow.Types.Product" "gogol-dataflow-0.1.0-Hia4fuX0B5YniTo71jkPP" False) (C1 (MetaCons "InstructionOutput'" PrefixI True) ((:*:) (S1 (MetaSel (Just Symbol "_ioCodec") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe InstructionOutputCodec))) ((:*:) (S1 (MetaSel (Just Symbol "_ioName") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) (S1 (MetaSel (Just Symbol "_ioSystemName") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))))))

instructionOutput :: InstructionOutput Source #

Creates a value of InstructionOutput with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

ioCodec :: Lens' InstructionOutput (Maybe InstructionOutputCodec) Source #

The codec to use to encode data being written via this output.

ioName :: Lens' InstructionOutput (Maybe Text) Source #

The user-provided name of this output.

ioSystemName :: Lens' InstructionOutput (Maybe Text) Source #

System-defined name of this output. Unique across the workflow.

ReportWorkItemStatusRequest

data ReportWorkItemStatusRequest Source #

Request to report the status of WorkItems.

See: reportWorkItemStatusRequest smart constructor.

Instances

Eq ReportWorkItemStatusRequest Source # 
Data ReportWorkItemStatusRequest Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> ReportWorkItemStatusRequest -> c ReportWorkItemStatusRequest #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c ReportWorkItemStatusRequest #

toConstr :: ReportWorkItemStatusRequest -> Constr #

dataTypeOf :: ReportWorkItemStatusRequest -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c ReportWorkItemStatusRequest) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c ReportWorkItemStatusRequest) #

gmapT :: (forall b. Data b => b -> b) -> ReportWorkItemStatusRequest -> ReportWorkItemStatusRequest #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> ReportWorkItemStatusRequest -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> ReportWorkItemStatusRequest -> r #

gmapQ :: (forall d. Data d => d -> u) -> ReportWorkItemStatusRequest -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> ReportWorkItemStatusRequest -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> ReportWorkItemStatusRequest -> m ReportWorkItemStatusRequest #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> ReportWorkItemStatusRequest -> m ReportWorkItemStatusRequest #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> ReportWorkItemStatusRequest -> m ReportWorkItemStatusRequest #

Show ReportWorkItemStatusRequest Source # 
Generic ReportWorkItemStatusRequest Source # 
ToJSON ReportWorkItemStatusRequest Source # 
FromJSON ReportWorkItemStatusRequest Source # 
type Rep ReportWorkItemStatusRequest Source # 
type Rep ReportWorkItemStatusRequest = D1 (MetaData "ReportWorkItemStatusRequest" "Network.Google.Dataflow.Types.Product" "gogol-dataflow-0.1.0-Hia4fuX0B5YniTo71jkPP" False) (C1 (MetaCons "ReportWorkItemStatusRequest'" PrefixI True) ((:*:) (S1 (MetaSel (Just Symbol "_rwisrCurrentWorkerTime") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) ((:*:) (S1 (MetaSel (Just Symbol "_rwisrWorkItemStatuses") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe [WorkItemStatus]))) (S1 (MetaSel (Just Symbol "_rwisrWorkerId") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))))))

reportWorkItemStatusRequest :: ReportWorkItemStatusRequest Source #

Creates a value of ReportWorkItemStatusRequest with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

rwisrCurrentWorkerTime :: Lens' ReportWorkItemStatusRequest (Maybe Text) Source #

The current timestamp at the worker.

rwisrWorkItemStatuses :: Lens' ReportWorkItemStatusRequest [WorkItemStatus] Source #

The order is unimportant, except that the order of the WorkItemServiceState messages in the ReportWorkItemStatusResponse corresponds to the order of WorkItemStatus messages here.

rwisrWorkerId :: Lens' ReportWorkItemStatusRequest (Maybe Text) Source #

The ID of the worker reporting the WorkItem status. If this does not match the ID of the worker which the Dataflow service believes currently has the lease on the WorkItem, the report will be dropped (with an error response).

EnvironmentVersion

data EnvironmentVersion Source #

A structure describing which components and their versions of the service are required in order to run the job.

See: environmentVersion smart constructor.

Instances

Eq EnvironmentVersion Source # 
Data EnvironmentVersion Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> EnvironmentVersion -> c EnvironmentVersion #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c EnvironmentVersion #

toConstr :: EnvironmentVersion -> Constr #

dataTypeOf :: EnvironmentVersion -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c EnvironmentVersion) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c EnvironmentVersion) #

gmapT :: (forall b. Data b => b -> b) -> EnvironmentVersion -> EnvironmentVersion #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> EnvironmentVersion -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> EnvironmentVersion -> r #

gmapQ :: (forall d. Data d => d -> u) -> EnvironmentVersion -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> EnvironmentVersion -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> EnvironmentVersion -> m EnvironmentVersion #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> EnvironmentVersion -> m EnvironmentVersion #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> EnvironmentVersion -> m EnvironmentVersion #

Show EnvironmentVersion Source # 
Generic EnvironmentVersion Source # 
ToJSON EnvironmentVersion Source # 
FromJSON EnvironmentVersion Source # 
type Rep EnvironmentVersion Source # 
type Rep EnvironmentVersion = D1 (MetaData "EnvironmentVersion" "Network.Google.Dataflow.Types.Product" "gogol-dataflow-0.1.0-Hia4fuX0B5YniTo71jkPP" True) (C1 (MetaCons "EnvironmentVersion'" PrefixI True) (S1 (MetaSel (Just Symbol "_evAddtional") NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 (HashMap Text JSONValue))))

environmentVersion Source #

Creates a value of EnvironmentVersion with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

Sink

data Sink Source #

A sink that records can be encoded and written to.

See: sink smart constructor.

Instances

Eq Sink Source # 

Methods

(==) :: Sink -> Sink -> Bool #

(/=) :: Sink -> Sink -> Bool #

Data Sink Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> Sink -> c Sink #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c Sink #

toConstr :: Sink -> Constr #

dataTypeOf :: Sink -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c Sink) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c Sink) #

gmapT :: (forall b. Data b => b -> b) -> Sink -> Sink #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> Sink -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> Sink -> r #

gmapQ :: (forall d. Data d => d -> u) -> Sink -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> Sink -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> Sink -> m Sink #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> Sink -> m Sink #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> Sink -> m Sink #

Show Sink Source # 

Methods

showsPrec :: Int -> Sink -> ShowS #

show :: Sink -> String #

showList :: [Sink] -> ShowS #

Generic Sink Source # 

Associated Types

type Rep Sink :: * -> * #

Methods

from :: Sink -> Rep Sink x #

to :: Rep Sink x -> Sink #

ToJSON Sink Source # 
FromJSON Sink Source # 
type Rep Sink Source # 
type Rep Sink = D1 (MetaData "Sink" "Network.Google.Dataflow.Types.Product" "gogol-dataflow-0.1.0-Hia4fuX0B5YniTo71jkPP" False) (C1 (MetaCons "Sink'" PrefixI True) ((:*:) (S1 (MetaSel (Just Symbol "_sCodec") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe SinkCodec))) (S1 (MetaSel (Just Symbol "_sSpec") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe SinkSpec)))))

sink :: Sink Source #

Creates a value of Sink with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

sCodec :: Lens' Sink (Maybe SinkCodec) Source #

The codec to use to encode data written to the sink.

sSpec :: Lens' Sink (Maybe SinkSpec) Source #

The sink to write to, plus its parameters.

WorkerHealthReportResponse

data WorkerHealthReportResponse Source #

WorkerHealthReportResponse contains information returned to the worker in response to a health ping.

See: workerHealthReportResponse smart constructor.

Instances

Eq WorkerHealthReportResponse Source # 
Data WorkerHealthReportResponse Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> WorkerHealthReportResponse -> c WorkerHealthReportResponse #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c WorkerHealthReportResponse #

toConstr :: WorkerHealthReportResponse -> Constr #

dataTypeOf :: WorkerHealthReportResponse -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c WorkerHealthReportResponse) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c WorkerHealthReportResponse) #

gmapT :: (forall b. Data b => b -> b) -> WorkerHealthReportResponse -> WorkerHealthReportResponse #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> WorkerHealthReportResponse -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> WorkerHealthReportResponse -> r #

gmapQ :: (forall d. Data d => d -> u) -> WorkerHealthReportResponse -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> WorkerHealthReportResponse -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> WorkerHealthReportResponse -> m WorkerHealthReportResponse #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> WorkerHealthReportResponse -> m WorkerHealthReportResponse #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> WorkerHealthReportResponse -> m WorkerHealthReportResponse #

Show WorkerHealthReportResponse Source # 
Generic WorkerHealthReportResponse Source # 
ToJSON WorkerHealthReportResponse Source # 
FromJSON WorkerHealthReportResponse Source # 
type Rep WorkerHealthReportResponse Source # 
type Rep WorkerHealthReportResponse = D1 (MetaData "WorkerHealthReportResponse" "Network.Google.Dataflow.Types.Product" "gogol-dataflow-0.1.0-Hia4fuX0B5YniTo71jkPP" True) (C1 (MetaCons "WorkerHealthReportResponse'" PrefixI True) (S1 (MetaSel (Just Symbol "_whrrReportInterval") NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 (Maybe Text))))

workerHealthReportResponse :: WorkerHealthReportResponse Source #

Creates a value of WorkerHealthReportResponse with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

whrrReportInterval :: Lens' WorkerHealthReportResponse (Maybe Text) Source #

A positive value indicates the worker should change its reporting interval to the specified value. The default value of zero means no change in report rate is requested by the server.

MetricStructuredName

data MetricStructuredName Source #

Identifies a metric, by describing the source which generated the metric.

See: metricStructuredName smart constructor.

Instances

Eq MetricStructuredName Source # 
Data MetricStructuredName Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> MetricStructuredName -> c MetricStructuredName #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c MetricStructuredName #

toConstr :: MetricStructuredName -> Constr #

dataTypeOf :: MetricStructuredName -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c MetricStructuredName) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c MetricStructuredName) #

gmapT :: (forall b. Data b => b -> b) -> MetricStructuredName -> MetricStructuredName #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> MetricStructuredName -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> MetricStructuredName -> r #

gmapQ :: (forall d. Data d => d -> u) -> MetricStructuredName -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> MetricStructuredName -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> MetricStructuredName -> m MetricStructuredName #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> MetricStructuredName -> m MetricStructuredName #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> MetricStructuredName -> m MetricStructuredName #

Show MetricStructuredName Source # 
Generic MetricStructuredName Source # 
ToJSON MetricStructuredName Source # 
FromJSON MetricStructuredName Source # 
type Rep MetricStructuredName Source # 
type Rep MetricStructuredName = D1 (MetaData "MetricStructuredName" "Network.Google.Dataflow.Types.Product" "gogol-dataflow-0.1.0-Hia4fuX0B5YniTo71jkPP" False) (C1 (MetaCons "MetricStructuredName'" PrefixI True) ((:*:) (S1 (MetaSel (Just Symbol "_msnOrigin") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) ((:*:) (S1 (MetaSel (Just Symbol "_msnContext") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe MetricStructuredNameContext))) (S1 (MetaSel (Just Symbol "_msnName") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))))))

metricStructuredName :: MetricStructuredName Source #

Creates a value of MetricStructuredName with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

msnOrigin :: Lens' MetricStructuredName (Maybe Text) Source #

Origin (namespace) of metric name. May be blank for user-define metrics; will be "dataflow" for metrics defined by the Dataflow service or SDK.

msnContext :: Lens' MetricStructuredName (Maybe MetricStructuredNameContext) Source #

Zero or more labeled fields which identify the part of the job this metric is associated with, such as the name of a step or collection. For example, built-in counters associated with steps will have context['step'] = . Counters associated with PCollections in the SDK will have context['pcollection'] = .

msnName :: Lens' MetricStructuredName (Maybe Text) Source #

Worker-defined metric name.

WriteInstruction

data WriteInstruction Source #

An instruction that writes records. Takes one input, produces no outputs.

See: writeInstruction smart constructor.

Instances

Eq WriteInstruction Source # 
Data WriteInstruction Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> WriteInstruction -> c WriteInstruction #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c WriteInstruction #

toConstr :: WriteInstruction -> Constr #

dataTypeOf :: WriteInstruction -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c WriteInstruction) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c WriteInstruction) #

gmapT :: (forall b. Data b => b -> b) -> WriteInstruction -> WriteInstruction #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> WriteInstruction -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> WriteInstruction -> r #

gmapQ :: (forall d. Data d => d -> u) -> WriteInstruction -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> WriteInstruction -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> WriteInstruction -> m WriteInstruction #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> WriteInstruction -> m WriteInstruction #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> WriteInstruction -> m WriteInstruction #

Show WriteInstruction Source # 
Generic WriteInstruction Source # 
ToJSON WriteInstruction Source # 
FromJSON WriteInstruction Source # 
type Rep WriteInstruction Source # 
type Rep WriteInstruction = D1 (MetaData "WriteInstruction" "Network.Google.Dataflow.Types.Product" "gogol-dataflow-0.1.0-Hia4fuX0B5YniTo71jkPP" False) (C1 (MetaCons "WriteInstruction'" PrefixI True) ((:*:) (S1 (MetaSel (Just Symbol "_wiSink") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Sink))) (S1 (MetaSel (Just Symbol "_wiInput") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe InstructionInput)))))

writeInstruction :: WriteInstruction Source #

Creates a value of WriteInstruction with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

wiSink :: Lens' WriteInstruction (Maybe Sink) Source #

The sink to write to.

EnvironmentUserAgent

data EnvironmentUserAgent Source #

A description of the process that generated the request.

See: environmentUserAgent smart constructor.

Instances

Eq EnvironmentUserAgent Source # 
Data EnvironmentUserAgent Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> EnvironmentUserAgent -> c EnvironmentUserAgent #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c EnvironmentUserAgent #

toConstr :: EnvironmentUserAgent -> Constr #

dataTypeOf :: EnvironmentUserAgent -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c EnvironmentUserAgent) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c EnvironmentUserAgent) #

gmapT :: (forall b. Data b => b -> b) -> EnvironmentUserAgent -> EnvironmentUserAgent #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> EnvironmentUserAgent -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> EnvironmentUserAgent -> r #

gmapQ :: (forall d. Data d => d -> u) -> EnvironmentUserAgent -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> EnvironmentUserAgent -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> EnvironmentUserAgent -> m EnvironmentUserAgent #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> EnvironmentUserAgent -> m EnvironmentUserAgent #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> EnvironmentUserAgent -> m EnvironmentUserAgent #

Show EnvironmentUserAgent Source # 
Generic EnvironmentUserAgent Source # 
ToJSON EnvironmentUserAgent Source # 
FromJSON EnvironmentUserAgent Source # 
type Rep EnvironmentUserAgent Source # 
type Rep EnvironmentUserAgent = D1 (MetaData "EnvironmentUserAgent" "Network.Google.Dataflow.Types.Product" "gogol-dataflow-0.1.0-Hia4fuX0B5YniTo71jkPP" True) (C1 (MetaCons "EnvironmentUserAgent'" PrefixI True) (S1 (MetaSel (Just Symbol "_euaAddtional") NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 (HashMap Text JSONValue))))

environmentUserAgent Source #

Creates a value of EnvironmentUserAgent with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

Disk

data Disk Source #

Describes the data disk used by a workflow job.

See: disk smart constructor.

Instances

Eq Disk Source # 

Methods

(==) :: Disk -> Disk -> Bool #

(/=) :: Disk -> Disk -> Bool #

Data Disk Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> Disk -> c Disk #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c Disk #

toConstr :: Disk -> Constr #

dataTypeOf :: Disk -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c Disk) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c Disk) #

gmapT :: (forall b. Data b => b -> b) -> Disk -> Disk #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> Disk -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> Disk -> r #

gmapQ :: (forall d. Data d => d -> u) -> Disk -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> Disk -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> Disk -> m Disk #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> Disk -> m Disk #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> Disk -> m Disk #

Show Disk Source # 

Methods

showsPrec :: Int -> Disk -> ShowS #

show :: Disk -> String #

showList :: [Disk] -> ShowS #

Generic Disk Source # 

Associated Types

type Rep Disk :: * -> * #

Methods

from :: Disk -> Rep Disk x #

to :: Rep Disk x -> Disk #

ToJSON Disk Source # 
FromJSON Disk Source # 
type Rep Disk Source # 
type Rep Disk = D1 (MetaData "Disk" "Network.Google.Dataflow.Types.Product" "gogol-dataflow-0.1.0-Hia4fuX0B5YniTo71jkPP" False) (C1 (MetaCons "Disk'" PrefixI True) ((:*:) (S1 (MetaSel (Just Symbol "_dSizeGb") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe (Textual Int32)))) ((:*:) (S1 (MetaSel (Just Symbol "_dDiskType") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) (S1 (MetaSel (Just Symbol "_dMountPoint") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))))))

disk :: Disk Source #

Creates a value of Disk with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

dSizeGb :: Lens' Disk (Maybe Int32) Source #

Size of disk in GB. If zero or unspecified, the service will attempt to choose a reasonable default.

dDiskType :: Lens' Disk (Maybe Text) Source #

Disk storage type, as defined by Google Compute Engine. This must be a disk type appropriate to the project and zone in which the workers will run. If unknown or unspecified, the service will attempt to choose a reasonable default. For example, the standard persistent disk type is a resource name typically ending in "pd-standard". If SSD persistent disks are available, the resource name typically ends with "pd-ssd". The actual valid values are defined the Google Compute Engine API, not by the Dataflow API; consult the Google Compute Engine documentation for more information about determining the set of available disk types for a particular project and zone. Google Compute Engine Disk types are local to a particular project in a particular zone, and so the resource name will typically look something like this: compute.googleapis.com/projects/ /zones//diskTypes/pd-standard

dMountPoint :: Lens' Disk (Maybe Text) Source #

Directory in a VM where disk is mounted.

MetricUpdate

data MetricUpdate Source #

Describes the state of a metric.

See: metricUpdate smart constructor.

Instances

Eq MetricUpdate Source # 
Data MetricUpdate Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> MetricUpdate -> c MetricUpdate #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c MetricUpdate #

toConstr :: MetricUpdate -> Constr #

dataTypeOf :: MetricUpdate -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c MetricUpdate) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c MetricUpdate) #

gmapT :: (forall b. Data b => b -> b) -> MetricUpdate -> MetricUpdate #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> MetricUpdate -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> MetricUpdate -> r #

gmapQ :: (forall d. Data d => d -> u) -> MetricUpdate -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> MetricUpdate -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> MetricUpdate -> m MetricUpdate #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> MetricUpdate -> m MetricUpdate #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> MetricUpdate -> m MetricUpdate #

Show MetricUpdate Source # 
Generic MetricUpdate Source # 

Associated Types

type Rep MetricUpdate :: * -> * #

ToJSON MetricUpdate Source # 
FromJSON MetricUpdate Source # 
type Rep MetricUpdate Source # 

metricUpdate :: MetricUpdate Source #

Creates a value of MetricUpdate with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

muMeanSum :: Lens' MetricUpdate (Maybe JSONValue) Source #

Worker-computed aggregate value for the "Mean" aggregation kind. This holds the sum of the aggregated values and is used in combination with mean_count below to obtain the actual mean aggregate value. The only possible value types are Long and Double.

muInternal :: Lens' MetricUpdate (Maybe JSONValue) Source #

Worker-computed aggregate value for internal use by the Dataflow service.

muSet :: Lens' MetricUpdate (Maybe JSONValue) Source #

Worker-computed aggregate value for the "Set" aggregation kind. The only possible value type is a list of Values whose type can be Long, Double, or String, according to the metric's type. All Values in the list must be of the same type.

muCumulative :: Lens' MetricUpdate (Maybe Bool) Source #

True if this metric is reported as the total cumulative aggregate value accumulated since the worker started working on this WorkItem. By default this is false, indicating that this metric is reported as a delta that is not associated with any WorkItem.

muKind :: Lens' MetricUpdate (Maybe Text) Source #

Metric aggregation kind. The possible metric aggregation kinds are "Sum", "Max", "Min", "Mean", "Set", "And", and "Or". The specified aggregation kind is case-insensitive. If omitted, this is not an aggregated value but instead a single metric sample value.

muUpdateTime :: Lens' MetricUpdate (Maybe Text) Source #

Timestamp associated with the metric value. Optional when workers are reporting work progress; it will be filled in responses from the metrics API.

muMeanCount :: Lens' MetricUpdate (Maybe JSONValue) Source #

Worker-computed aggregate value for the "Mean" aggregation kind. This holds the count of the aggregated values and is used in combination with mean_sum above to obtain the actual mean aggregate value. The only possible value type is Long.

muScalar :: Lens' MetricUpdate (Maybe JSONValue) Source #

Worker-computed aggregate value for aggregation kinds "Sum", "Max", "Min", "And", and "Or". The possible value types are Long, Double, and Boolean.

SourceGetMetadataResponse

data SourceGetMetadataResponse Source #

The result of a SourceGetMetadataOperation.

See: sourceGetMetadataResponse smart constructor.

Instances

Eq SourceGetMetadataResponse Source # 
Data SourceGetMetadataResponse Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> SourceGetMetadataResponse -> c SourceGetMetadataResponse #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c SourceGetMetadataResponse #

toConstr :: SourceGetMetadataResponse -> Constr #

dataTypeOf :: SourceGetMetadataResponse -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c SourceGetMetadataResponse) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c SourceGetMetadataResponse) #

gmapT :: (forall b. Data b => b -> b) -> SourceGetMetadataResponse -> SourceGetMetadataResponse #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> SourceGetMetadataResponse -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> SourceGetMetadataResponse -> r #

gmapQ :: (forall d. Data d => d -> u) -> SourceGetMetadataResponse -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> SourceGetMetadataResponse -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> SourceGetMetadataResponse -> m SourceGetMetadataResponse #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> SourceGetMetadataResponse -> m SourceGetMetadataResponse #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> SourceGetMetadataResponse -> m SourceGetMetadataResponse #

Show SourceGetMetadataResponse Source # 
Generic SourceGetMetadataResponse Source # 
ToJSON SourceGetMetadataResponse Source # 
FromJSON SourceGetMetadataResponse Source # 
type Rep SourceGetMetadataResponse Source # 
type Rep SourceGetMetadataResponse = D1 (MetaData "SourceGetMetadataResponse" "Network.Google.Dataflow.Types.Product" "gogol-dataflow-0.1.0-Hia4fuX0B5YniTo71jkPP" True) (C1 (MetaCons "SourceGetMetadataResponse'" PrefixI True) (S1 (MetaSel (Just Symbol "_sgmrMetadata") NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 (Maybe SourceMetadata))))

sourceGetMetadataResponse :: SourceGetMetadataResponse Source #

Creates a value of SourceGetMetadataResponse with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

Environment

data Environment Source #

Describes the environment in which a Dataflow Job runs.

See: environment smart constructor.

Instances

Eq Environment Source # 
Data Environment Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> Environment -> c Environment #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c Environment #

toConstr :: Environment -> Constr #

dataTypeOf :: Environment -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c Environment) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c Environment) #

gmapT :: (forall b. Data b => b -> b) -> Environment -> Environment #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> Environment -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> Environment -> r #

gmapQ :: (forall d. Data d => d -> u) -> Environment -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> Environment -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> Environment -> m Environment #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> Environment -> m Environment #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> Environment -> m Environment #

Show Environment Source # 
Generic Environment Source # 

Associated Types

type Rep Environment :: * -> * #

ToJSON Environment Source # 
FromJSON Environment Source # 
type Rep Environment Source # 

environment :: Environment Source #

Creates a value of Environment with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

eDataSet :: Lens' Environment (Maybe Text) Source #

The dataset for the current project where various workflow related tables are stored. The supported resource type is: Google BigQuery: bigquery.googleapis.com/{dataset}

eExperiments :: Lens' Environment [Text] Source #

The list of experiments to enable.

eWorkerPools :: Lens' Environment [WorkerPool] Source #

Worker pools. At least one "harness" worker pool must be specified in order for the job to have workers.

eClusterManagerAPIService :: Lens' Environment (Maybe Text) Source #

The type of cluster manager API to use. If unknown or unspecified, the service will attempt to choose a reasonable default. This should be in the form of the API service name, e.g. "compute.googleapis.com".

eVersion :: Lens' Environment (Maybe EnvironmentVersion) Source #

A structure describing which components and their versions of the service are required in order to run the job.

eTempStoragePrefix :: Lens' Environment (Maybe Text) Source #

The prefix of the resources the system should use for temporary storage. The system will append the suffix "/temp-{JOBNAME} to this resource prefix, where {JOBNAME} is the value of the job_name field. The resulting bucket and object prefix is used as the prefix of the resources used to store temporary data needed during the job execution. NOTE: This will override the value in taskrunner_settings. The supported resource type is: Google Cloud Storage: storage.googleapis.com/{bucket}/{object} bucket.storage.googleapis.com/{object}

eUserAgent :: Lens' Environment (Maybe EnvironmentUserAgent) Source #

A description of the process that generated the request.

eSdkPipelineOptions :: Lens' Environment (Maybe EnvironmentSdkPipelineOptions) Source #

The Dataflow SDK pipeline options specified by the user. These options are passed through the service and are used to recreate the SDK pipeline options on the worker in a language agnostic and platform independent way.

ConcatPosition

data ConcatPosition Source #

A position that encapsulates an inner position and an index for the inner position. A ConcatPosition can be used by a reader of a source that encapsulates a set of other sources.

See: concatPosition smart constructor.

Instances

Eq ConcatPosition Source # 
Data ConcatPosition Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> ConcatPosition -> c ConcatPosition #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c ConcatPosition #

toConstr :: ConcatPosition -> Constr #

dataTypeOf :: ConcatPosition -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c ConcatPosition) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c ConcatPosition) #

gmapT :: (forall b. Data b => b -> b) -> ConcatPosition -> ConcatPosition #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> ConcatPosition -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> ConcatPosition -> r #

gmapQ :: (forall d. Data d => d -> u) -> ConcatPosition -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> ConcatPosition -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> ConcatPosition -> m ConcatPosition #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> ConcatPosition -> m ConcatPosition #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> ConcatPosition -> m ConcatPosition #

Show ConcatPosition Source # 
Generic ConcatPosition Source # 

Associated Types

type Rep ConcatPosition :: * -> * #

ToJSON ConcatPosition Source # 
FromJSON ConcatPosition Source # 
type Rep ConcatPosition Source # 
type Rep ConcatPosition = D1 (MetaData "ConcatPosition" "Network.Google.Dataflow.Types.Product" "gogol-dataflow-0.1.0-Hia4fuX0B5YniTo71jkPP" False) (C1 (MetaCons "ConcatPosition'" PrefixI True) ((:*:) (S1 (MetaSel (Just Symbol "_cpIndex") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe (Textual Int32)))) (S1 (MetaSel (Just Symbol "_cpPosition") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Position)))))

concatPosition :: ConcatPosition Source #

Creates a value of ConcatPosition with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

cpIndex :: Lens' ConcatPosition (Maybe Int32) Source #

Index of the inner source.

cpPosition :: Lens' ConcatPosition (Maybe Position) Source #

Position within the inner source.

MetricStructuredNameContext

data MetricStructuredNameContext Source #

Zero or more labeled fields which identify the part of the job this metric is associated with, such as the name of a step or collection. For example, built-in counters associated with steps will have context['step'] = . Counters associated with PCollections in the SDK will have context['pcollection'] = .

See: metricStructuredNameContext smart constructor.

Instances

Eq MetricStructuredNameContext Source # 
Data MetricStructuredNameContext Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> MetricStructuredNameContext -> c MetricStructuredNameContext #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c MetricStructuredNameContext #

toConstr :: MetricStructuredNameContext -> Constr #

dataTypeOf :: MetricStructuredNameContext -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c MetricStructuredNameContext) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c MetricStructuredNameContext) #

gmapT :: (forall b. Data b => b -> b) -> MetricStructuredNameContext -> MetricStructuredNameContext #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> MetricStructuredNameContext -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> MetricStructuredNameContext -> r #

gmapQ :: (forall d. Data d => d -> u) -> MetricStructuredNameContext -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> MetricStructuredNameContext -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> MetricStructuredNameContext -> m MetricStructuredNameContext #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> MetricStructuredNameContext -> m MetricStructuredNameContext #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> MetricStructuredNameContext -> m MetricStructuredNameContext #

Show MetricStructuredNameContext Source # 
Generic MetricStructuredNameContext Source # 
ToJSON MetricStructuredNameContext Source # 
FromJSON MetricStructuredNameContext Source # 
type Rep MetricStructuredNameContext Source # 
type Rep MetricStructuredNameContext = D1 (MetaData "MetricStructuredNameContext" "Network.Google.Dataflow.Types.Product" "gogol-dataflow-0.1.0-Hia4fuX0B5YniTo71jkPP" True) (C1 (MetaCons "MetricStructuredNameContext'" PrefixI True) (S1 (MetaSel (Just Symbol "_msncAddtional") NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 (HashMap Text Text))))

metricStructuredNameContext Source #

Creates a value of MetricStructuredNameContext with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

StreamingStageLocation

data StreamingStageLocation Source #

Identifies the location of a streaming computation stage, for stage-to-stage communication.

See: streamingStageLocation smart constructor.

Instances

Eq StreamingStageLocation Source # 
Data StreamingStageLocation Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> StreamingStageLocation -> c StreamingStageLocation #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c StreamingStageLocation #

toConstr :: StreamingStageLocation -> Constr #

dataTypeOf :: StreamingStageLocation -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c StreamingStageLocation) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c StreamingStageLocation) #

gmapT :: (forall b. Data b => b -> b) -> StreamingStageLocation -> StreamingStageLocation #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> StreamingStageLocation -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> StreamingStageLocation -> r #

gmapQ :: (forall d. Data d => d -> u) -> StreamingStageLocation -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> StreamingStageLocation -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> StreamingStageLocation -> m StreamingStageLocation #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> StreamingStageLocation -> m StreamingStageLocation #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> StreamingStageLocation -> m StreamingStageLocation #

Show StreamingStageLocation Source # 
Generic StreamingStageLocation Source # 
ToJSON StreamingStageLocation Source # 
FromJSON StreamingStageLocation Source # 
type Rep StreamingStageLocation Source # 
type Rep StreamingStageLocation = D1 (MetaData "StreamingStageLocation" "Network.Google.Dataflow.Types.Product" "gogol-dataflow-0.1.0-Hia4fuX0B5YniTo71jkPP" True) (C1 (MetaCons "StreamingStageLocation'" PrefixI True) (S1 (MetaSel (Just Symbol "_sslStreamId") NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 (Maybe Text))))

streamingStageLocation :: StreamingStageLocation Source #

Creates a value of StreamingStageLocation with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

sslStreamId :: Lens' StreamingStageLocation (Maybe Text) Source #

Identifies the particular stream within the streaming Dataflow job.

DerivedSource

data DerivedSource Source #

Specification of one of the bundles produced as a result of splitting a Source (e.g. when executing a SourceSplitRequest, or when splitting an active task using WorkItemStatus.dynamic_source_split), relative to the source being split.

See: derivedSource smart constructor.

Instances

Eq DerivedSource Source # 
Data DerivedSource Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> DerivedSource -> c DerivedSource #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c DerivedSource #

toConstr :: DerivedSource -> Constr #

dataTypeOf :: DerivedSource -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c DerivedSource) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c DerivedSource) #

gmapT :: (forall b. Data b => b -> b) -> DerivedSource -> DerivedSource #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> DerivedSource -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> DerivedSource -> r #

gmapQ :: (forall d. Data d => d -> u) -> DerivedSource -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> DerivedSource -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> DerivedSource -> m DerivedSource #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> DerivedSource -> m DerivedSource #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> DerivedSource -> m DerivedSource #

Show DerivedSource Source # 
Generic DerivedSource Source # 

Associated Types

type Rep DerivedSource :: * -> * #

ToJSON DerivedSource Source # 
FromJSON DerivedSource Source # 
type Rep DerivedSource Source # 
type Rep DerivedSource = D1 (MetaData "DerivedSource" "Network.Google.Dataflow.Types.Product" "gogol-dataflow-0.1.0-Hia4fuX0B5YniTo71jkPP" False) (C1 (MetaCons "DerivedSource'" PrefixI True) ((:*:) (S1 (MetaSel (Just Symbol "_dsDerivationMode") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) (S1 (MetaSel (Just Symbol "_dsSource") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Source)))))

derivedSource :: DerivedSource Source #

Creates a value of DerivedSource with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

dsDerivationMode :: Lens' DerivedSource (Maybe Text) Source #

What source to base the produced source on (if any).

dsSource :: Lens' DerivedSource (Maybe Source) Source #

Specification of the source.

JobMetrics

data JobMetrics Source #

JobMetrics contains a collection of metrics descibing the detailed progress of a Dataflow job. Metrics correspond to user-defined and system-defined metrics in the job. This resource captures only the most recent values of each metric; time-series data can be queried for them (under the same metric names) from Cloud Monitoring.

See: jobMetrics smart constructor.

Instances

Eq JobMetrics Source # 
Data JobMetrics Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> JobMetrics -> c JobMetrics #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c JobMetrics #

toConstr :: JobMetrics -> Constr #

dataTypeOf :: JobMetrics -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c JobMetrics) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c JobMetrics) #

gmapT :: (forall b. Data b => b -> b) -> JobMetrics -> JobMetrics #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> JobMetrics -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> JobMetrics -> r #

gmapQ :: (forall d. Data d => d -> u) -> JobMetrics -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> JobMetrics -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> JobMetrics -> m JobMetrics #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> JobMetrics -> m JobMetrics #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> JobMetrics -> m JobMetrics #

Show JobMetrics Source # 
Generic JobMetrics Source # 

Associated Types

type Rep JobMetrics :: * -> * #

ToJSON JobMetrics Source # 
FromJSON JobMetrics Source # 
type Rep JobMetrics Source # 
type Rep JobMetrics = D1 (MetaData "JobMetrics" "Network.Google.Dataflow.Types.Product" "gogol-dataflow-0.1.0-Hia4fuX0B5YniTo71jkPP" False) (C1 (MetaCons "JobMetrics'" PrefixI True) ((:*:) (S1 (MetaSel (Just Symbol "_jmMetrics") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe [MetricUpdate]))) (S1 (MetaSel (Just Symbol "_jmMetricTime") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)))))

jobMetrics :: JobMetrics Source #

Creates a value of JobMetrics with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

jmMetrics :: Lens' JobMetrics [MetricUpdate] Source #

All metrics for this job.

jmMetricTime :: Lens' JobMetrics (Maybe Text) Source #

Timestamp as of which metric values are current.

WorkItemStatus

data WorkItemStatus Source #

Conveys a worker's progress through the work described by a WorkItem.

See: workItemStatus smart constructor.

Instances

Eq WorkItemStatus Source # 
Data WorkItemStatus Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> WorkItemStatus -> c WorkItemStatus #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c WorkItemStatus #

toConstr :: WorkItemStatus -> Constr #

dataTypeOf :: WorkItemStatus -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c WorkItemStatus) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c WorkItemStatus) #

gmapT :: (forall b. Data b => b -> b) -> WorkItemStatus -> WorkItemStatus #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> WorkItemStatus -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> WorkItemStatus -> r #

gmapQ :: (forall d. Data d => d -> u) -> WorkItemStatus -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> WorkItemStatus -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> WorkItemStatus -> m WorkItemStatus #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> WorkItemStatus -> m WorkItemStatus #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> WorkItemStatus -> m WorkItemStatus #

Show WorkItemStatus Source # 
Generic WorkItemStatus Source # 

Associated Types

type Rep WorkItemStatus :: * -> * #

ToJSON WorkItemStatus Source # 
FromJSON WorkItemStatus Source # 
type Rep WorkItemStatus Source # 
type Rep WorkItemStatus = D1 (MetaData "WorkItemStatus" "Network.Google.Dataflow.Types.Product" "gogol-dataflow-0.1.0-Hia4fuX0B5YniTo71jkPP" False) (C1 (MetaCons "WorkItemStatus'" PrefixI True) ((:*:) ((:*:) ((:*:) (S1 (MetaSel (Just Symbol "_wisReportedProgress") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe ApproximateReportedProgress))) ((:*:) (S1 (MetaSel (Just Symbol "_wisProgress") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe ApproximateProgress))) (S1 (MetaSel (Just Symbol "_wisSourceOperationResponse") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe SourceOperationResponse))))) ((:*:) (S1 (MetaSel (Just Symbol "_wisStopPosition") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Position))) ((:*:) (S1 (MetaSel (Just Symbol "_wisDynamicSourceSplit") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe DynamicSourceSplit))) (S1 (MetaSel (Just Symbol "_wisCompleted") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Bool)))))) ((:*:) ((:*:) (S1 (MetaSel (Just Symbol "_wisSourceFork") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe SourceFork))) ((:*:) (S1 (MetaSel (Just Symbol "_wisReportIndex") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe (Textual Int64)))) (S1 (MetaSel (Just Symbol "_wisRequestedLeaseDuration") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))))) ((:*:) (S1 (MetaSel (Just Symbol "_wisErrors") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe [Status]))) ((:*:) (S1 (MetaSel (Just Symbol "_wisMetricUpdates") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe [MetricUpdate]))) (S1 (MetaSel (Just Symbol "_wisWorkItemId") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))))))))

wisReportedProgress :: Lens' WorkItemStatus (Maybe ApproximateReportedProgress) Source #

The worker's progress through this WorkItem.

wisProgress :: Lens' WorkItemStatus (Maybe ApproximateProgress) Source #

DEPRECATED in favor of reported_progress.

wisSourceOperationResponse :: Lens' WorkItemStatus (Maybe SourceOperationResponse) Source #

If the work item represented a SourceOperationRequest, and the work is completed, contains the result of the operation.

wisStopPosition :: Lens' WorkItemStatus (Maybe Position) Source #

A worker may split an active map task in two parts, "primary" and "residual", continuing to process the primary part and returning the residual part into the pool of available work. This event is called a "dynamic split" and is critical to the dynamic work rebalancing feature. The two obtained sub-tasks are called "parts" of the split. The parts, if concatenated, must represent the same input as would be read by the current task if the split did not happen. The exact way in which the original task is decomposed into the two parts is specified either as a position demarcating them (stop_position), or explicitly as two DerivedSources, if this task consumes a user-defined source type (dynamic_source_split). The "current" task is adjusted as a result of the split: after a task with range [A, B) sends a stop_position update at C, its range is considered to be [A, C), e.g.: * Progress should be interpreted relative to the new range, e.g. "75% completed" means "75% of [A, C) completed" * The worker should interpret proposed_stop_position relative to the new range, e.g. "split at 68%" should be interpreted as "split at 68% of [A, C)". * If the worker chooses to split again using stop_position, only stop_positions in [A, C) will be accepted. * Etc. dynamic_source_split has similar semantics: e.g., if a task with source S splits using dynamic_source_split into {P, R} (where P and R must be together equivalent to S), then subsequent progress and proposed_stop_position should be interpreted relative to P, and in a potential subsequent dynamic_source_split into {P', R'}, P' and R' must be together equivalent to P, etc.

wisCompleted :: Lens' WorkItemStatus (Maybe Bool) Source #

True if the WorkItem was completed (successfully or unsuccessfully).

wisSourceFork :: Lens' WorkItemStatus (Maybe SourceFork) Source #

DEPRECATED in favor of dynamic_source_split.

wisReportIndex :: Lens' WorkItemStatus (Maybe Int64) Source #

The report index. When a WorkItem is leased, the lease will contain an initial report index. When a WorkItem's status is reported to the system, the report should be sent with that report index, and the response will contain the index the worker should use for the next report. Reports received with unexpected index values will be rejected by the service. In order to preserve idempotency, the worker should not alter the contents of a report, even if the worker must submit the same report multiple times before getting back a response. The worker should not submit a subsequent report until the response for the previous report had been received from the service.

wisRequestedLeaseDuration :: Lens' WorkItemStatus (Maybe Text) Source #

Amount of time the worker requests for its lease.

wisErrors :: Lens' WorkItemStatus [Status] Source #

Specifies errors which occurred during processing. If errors are provided, and completed = true, then the WorkItem is considered to have failed.

wisMetricUpdates :: Lens' WorkItemStatus [MetricUpdate] Source #

Worker output metrics (counters) for this WorkItem.

wisWorkItemId :: Lens' WorkItemStatus (Maybe Text) Source #

Identifies the WorkItem.

WorkerMessageLabels

data WorkerMessageLabels Source #

Labels are used to group WorkerMessages. For example, a worker_message about a particular container might have the labels: { "JOB_ID": "2015-04-22", "WORKER_ID": "wordcount-vm-2015…" "CONTAINER_TYPE": "worker", "CONTAINER_ID": "ac1234def"} Label tags typically correspond to Label enum values. However, for ease of development other strings can be used as tags. LABEL_UNSPECIFIED should not be used here.

See: workerMessageLabels smart constructor.

Instances

Eq WorkerMessageLabels Source # 
Data WorkerMessageLabels Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> WorkerMessageLabels -> c WorkerMessageLabels #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c WorkerMessageLabels #

toConstr :: WorkerMessageLabels -> Constr #

dataTypeOf :: WorkerMessageLabels -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c WorkerMessageLabels) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c WorkerMessageLabels) #

gmapT :: (forall b. Data b => b -> b) -> WorkerMessageLabels -> WorkerMessageLabels #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> WorkerMessageLabels -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> WorkerMessageLabels -> r #

gmapQ :: (forall d. Data d => d -> u) -> WorkerMessageLabels -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> WorkerMessageLabels -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> WorkerMessageLabels -> m WorkerMessageLabels #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> WorkerMessageLabels -> m WorkerMessageLabels #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> WorkerMessageLabels -> m WorkerMessageLabels #

Show WorkerMessageLabels Source # 
Generic WorkerMessageLabels Source # 
ToJSON WorkerMessageLabels Source # 
FromJSON WorkerMessageLabels Source # 
type Rep WorkerMessageLabels Source # 
type Rep WorkerMessageLabels = D1 (MetaData "WorkerMessageLabels" "Network.Google.Dataflow.Types.Product" "gogol-dataflow-0.1.0-Hia4fuX0B5YniTo71jkPP" True) (C1 (MetaCons "WorkerMessageLabels'" PrefixI True) (S1 (MetaSel (Just Symbol "_wmlAddtional") NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 (HashMap Text Text))))

workerMessageLabels Source #

Creates a value of WorkerMessageLabels with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

FlattenInstruction

data FlattenInstruction Source #

An instruction that copies its inputs (zero or more) to its (single) output.

See: flattenInstruction smart constructor.

Instances

Eq FlattenInstruction Source # 
Data FlattenInstruction Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> FlattenInstruction -> c FlattenInstruction #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c FlattenInstruction #

toConstr :: FlattenInstruction -> Constr #

dataTypeOf :: FlattenInstruction -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c FlattenInstruction) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c FlattenInstruction) #

gmapT :: (forall b. Data b => b -> b) -> FlattenInstruction -> FlattenInstruction #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> FlattenInstruction -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> FlattenInstruction -> r #

gmapQ :: (forall d. Data d => d -> u) -> FlattenInstruction -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> FlattenInstruction -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> FlattenInstruction -> m FlattenInstruction #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> FlattenInstruction -> m FlattenInstruction #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> FlattenInstruction -> m FlattenInstruction #

Show FlattenInstruction Source # 
Generic FlattenInstruction Source # 
ToJSON FlattenInstruction Source # 
FromJSON FlattenInstruction Source # 
type Rep FlattenInstruction Source # 
type Rep FlattenInstruction = D1 (MetaData "FlattenInstruction" "Network.Google.Dataflow.Types.Product" "gogol-dataflow-0.1.0-Hia4fuX0B5YniTo71jkPP" True) (C1 (MetaCons "FlattenInstruction'" PrefixI True) (S1 (MetaSel (Just Symbol "_fiInputs") NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 (Maybe [InstructionInput]))))

flattenInstruction :: FlattenInstruction Source #

Creates a value of FlattenInstruction with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

fiInputs :: Lens' FlattenInstruction [InstructionInput] Source #

Describes the inputs to the flatten instruction.

WorkerMessageCode

data WorkerMessageCode Source #

A message code is used to report status and error messages to the service. The message codes are intended to be machine readable. The service will take care of translating these into user understandable messages if necessary. Example use cases: 1. Worker processes reporting successful startup. 2. Worker processes reporting specific errors (e.g. package staging failure).

See: workerMessageCode smart constructor.

Instances

Eq WorkerMessageCode Source # 
Data WorkerMessageCode Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> WorkerMessageCode -> c WorkerMessageCode #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c WorkerMessageCode #

toConstr :: WorkerMessageCode -> Constr #

dataTypeOf :: WorkerMessageCode -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c WorkerMessageCode) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c WorkerMessageCode) #

gmapT :: (forall b. Data b => b -> b) -> WorkerMessageCode -> WorkerMessageCode #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> WorkerMessageCode -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> WorkerMessageCode -> r #

gmapQ :: (forall d. Data d => d -> u) -> WorkerMessageCode -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> WorkerMessageCode -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> WorkerMessageCode -> m WorkerMessageCode #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> WorkerMessageCode -> m WorkerMessageCode #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> WorkerMessageCode -> m WorkerMessageCode #

Show WorkerMessageCode Source # 
Generic WorkerMessageCode Source # 
ToJSON WorkerMessageCode Source # 
FromJSON WorkerMessageCode Source # 
type Rep WorkerMessageCode Source # 
type Rep WorkerMessageCode = D1 (MetaData "WorkerMessageCode" "Network.Google.Dataflow.Types.Product" "gogol-dataflow-0.1.0-Hia4fuX0B5YniTo71jkPP" False) (C1 (MetaCons "WorkerMessageCode'" PrefixI True) ((:*:) (S1 (MetaSel (Just Symbol "_wmcParameters") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe WorkerMessageCodeParameters))) (S1 (MetaSel (Just Symbol "_wmcCode") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)))))

workerMessageCode :: WorkerMessageCode Source #

Creates a value of WorkerMessageCode with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

wmcParameters :: Lens' WorkerMessageCode (Maybe WorkerMessageCodeParameters) Source #

Parameters contains specific information about the code. This is a struct to allow parameters of different types. Examples: 1. For a "HARNESS_STARTED" message parameters might provide the name of the worker and additional data like timing information. 2. For a "GCS_DOWNLOAD_ERROR" parameters might contain fields listing the GCS objects being downloaded and fields containing errors. In general complex data structures should be avoided. If a worker needs to send a specific and complicated data structure then please consider defining a new proto and adding it to the data oneof in WorkerMessageResponse. Conventions: Parameters should only be used for information that isn't typically passed as a label. hostname and other worker identifiers should almost always be passed as labels since they will be included on most messages.

wmcCode :: Lens' WorkerMessageCode (Maybe Text) Source #

The code is a string intended for consumption by a machine that identifies the type of message being sent. Examples: 1. "HARNESS_STARTED" might be used to indicate the worker harness has started. 2. "GCS_DOWNLOAD_ERROR" might be used to indicate an error downloading a GCS file as part of the boot process of one of the worker containers. This is a string and not an enum to make it easy to add new codes without waiting for an API change.

JobTransformNameMApping

data JobTransformNameMApping Source #

Map of transform name prefixes of the job to be replaced to the corresponding name prefixes of the new job.

See: jobTransformNameMApping smart constructor.

Instances

Eq JobTransformNameMApping Source # 
Data JobTransformNameMApping Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> JobTransformNameMApping -> c JobTransformNameMApping #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c JobTransformNameMApping #

toConstr :: JobTransformNameMApping -> Constr #

dataTypeOf :: JobTransformNameMApping -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c JobTransformNameMApping) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c JobTransformNameMApping) #

gmapT :: (forall b. Data b => b -> b) -> JobTransformNameMApping -> JobTransformNameMApping #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> JobTransformNameMApping -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> JobTransformNameMApping -> r #

gmapQ :: (forall d. Data d => d -> u) -> JobTransformNameMApping -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> JobTransformNameMApping -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> JobTransformNameMApping -> m JobTransformNameMApping #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> JobTransformNameMApping -> m JobTransformNameMApping #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> JobTransformNameMApping -> m JobTransformNameMApping #

Show JobTransformNameMApping Source # 
Generic JobTransformNameMApping Source # 
ToJSON JobTransformNameMApping Source # 
FromJSON JobTransformNameMApping Source # 
type Rep JobTransformNameMApping Source # 
type Rep JobTransformNameMApping = D1 (MetaData "JobTransformNameMApping" "Network.Google.Dataflow.Types.Product" "gogol-dataflow-0.1.0-Hia4fuX0B5YniTo71jkPP" True) (C1 (MetaCons "JobTransformNameMApping'" PrefixI True) (S1 (MetaSel (Just Symbol "_jtnmaAddtional") NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 (HashMap Text Text))))

jobTransformNameMApping Source #

Creates a value of JobTransformNameMApping with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

SourceSpec

data SourceSpec Source #

The source to read from, plus its parameters.

See: sourceSpec smart constructor.

Instances

Eq SourceSpec Source # 
Data SourceSpec Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> SourceSpec -> c SourceSpec #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c SourceSpec #

toConstr :: SourceSpec -> Constr #

dataTypeOf :: SourceSpec -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c SourceSpec) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c SourceSpec) #

gmapT :: (forall b. Data b => b -> b) -> SourceSpec -> SourceSpec #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> SourceSpec -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> SourceSpec -> r #

gmapQ :: (forall d. Data d => d -> u) -> SourceSpec -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> SourceSpec -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> SourceSpec -> m SourceSpec #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> SourceSpec -> m SourceSpec #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> SourceSpec -> m SourceSpec #

Show SourceSpec Source # 
Generic SourceSpec Source # 

Associated Types

type Rep SourceSpec :: * -> * #

ToJSON SourceSpec Source # 
FromJSON SourceSpec Source # 
type Rep SourceSpec Source # 
type Rep SourceSpec = D1 (MetaData "SourceSpec" "Network.Google.Dataflow.Types.Product" "gogol-dataflow-0.1.0-Hia4fuX0B5YniTo71jkPP" True) (C1 (MetaCons "SourceSpec'" PrefixI True) (S1 (MetaSel (Just Symbol "_ssAddtional") NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 (HashMap Text JSONValue))))

sourceSpec Source #

Creates a value of SourceSpec with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

ssAddtional :: Lens' SourceSpec (HashMap Text JSONValue) Source #

Properties of the object.

SourceMetadata

data SourceMetadata Source #

Metadata about a Source useful for automatically optimizing and tuning the pipeline, etc.

See: sourceMetadata smart constructor.

Instances

Eq SourceMetadata Source # 
Data SourceMetadata Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> SourceMetadata -> c SourceMetadata #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c SourceMetadata #

toConstr :: SourceMetadata -> Constr #

dataTypeOf :: SourceMetadata -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c SourceMetadata) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c SourceMetadata) #

gmapT :: (forall b. Data b => b -> b) -> SourceMetadata -> SourceMetadata #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> SourceMetadata -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> SourceMetadata -> r #

gmapQ :: (forall d. Data d => d -> u) -> SourceMetadata -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> SourceMetadata -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> SourceMetadata -> m SourceMetadata #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> SourceMetadata -> m SourceMetadata #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> SourceMetadata -> m SourceMetadata #

Show SourceMetadata Source # 
Generic SourceMetadata Source # 

Associated Types

type Rep SourceMetadata :: * -> * #

ToJSON SourceMetadata Source # 
FromJSON SourceMetadata Source # 
type Rep SourceMetadata Source # 
type Rep SourceMetadata = D1 (MetaData "SourceMetadata" "Network.Google.Dataflow.Types.Product" "gogol-dataflow-0.1.0-Hia4fuX0B5YniTo71jkPP" False) (C1 (MetaCons "SourceMetadata'" PrefixI True) ((:*:) (S1 (MetaSel (Just Symbol "_smEstimatedSizeBytes") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe (Textual Int64)))) ((:*:) (S1 (MetaSel (Just Symbol "_smProducesSortedKeys") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Bool))) (S1 (MetaSel (Just Symbol "_smInfinite") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Bool))))))

sourceMetadata :: SourceMetadata Source #

Creates a value of SourceMetadata with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

smEstimatedSizeBytes :: Lens' SourceMetadata (Maybe Int64) Source #

An estimate of the total size (in bytes) of the data that would be read from this source. This estimate is in terms of external storage size, before any decompression or other processing done by the reader.

smProducesSortedKeys :: Lens' SourceMetadata (Maybe Bool) Source #

Whether this source is known to produce key/value pairs with the (encoded) keys in lexicographically sorted order.

smInfinite :: Lens' SourceMetadata (Maybe Bool) Source #

Specifies that the size of this source is known to be infinite (this is a streaming source).

EnvironmentInternalExperiments

data EnvironmentInternalExperiments Source #

Experimental settings.

See: environmentInternalExperiments smart constructor.

Instances

Eq EnvironmentInternalExperiments Source # 
Data EnvironmentInternalExperiments Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> EnvironmentInternalExperiments -> c EnvironmentInternalExperiments #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c EnvironmentInternalExperiments #

toConstr :: EnvironmentInternalExperiments -> Constr #

dataTypeOf :: EnvironmentInternalExperiments -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c EnvironmentInternalExperiments) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c EnvironmentInternalExperiments) #

gmapT :: (forall b. Data b => b -> b) -> EnvironmentInternalExperiments -> EnvironmentInternalExperiments #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> EnvironmentInternalExperiments -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> EnvironmentInternalExperiments -> r #

gmapQ :: (forall d. Data d => d -> u) -> EnvironmentInternalExperiments -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> EnvironmentInternalExperiments -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> EnvironmentInternalExperiments -> m EnvironmentInternalExperiments #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> EnvironmentInternalExperiments -> m EnvironmentInternalExperiments #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> EnvironmentInternalExperiments -> m EnvironmentInternalExperiments #

Show EnvironmentInternalExperiments Source # 
Generic EnvironmentInternalExperiments Source # 
ToJSON EnvironmentInternalExperiments Source # 
FromJSON EnvironmentInternalExperiments Source # 
type Rep EnvironmentInternalExperiments Source # 
type Rep EnvironmentInternalExperiments = D1 (MetaData "EnvironmentInternalExperiments" "Network.Google.Dataflow.Types.Product" "gogol-dataflow-0.1.0-Hia4fuX0B5YniTo71jkPP" True) (C1 (MetaCons "EnvironmentInternalExperiments'" PrefixI True) (S1 (MetaSel (Just Symbol "_eieAddtional") NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 (HashMap Text JSONValue))))

environmentInternalExperiments Source #

Creates a value of EnvironmentInternalExperiments with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

eieAddtional :: Lens' EnvironmentInternalExperiments (HashMap Text JSONValue) Source #

Properties of the object. Contains field 'ype with type URL.

TaskRunnerSettings

data TaskRunnerSettings Source #

Taskrunner configuration settings.

See: taskRunnerSettings smart constructor.

Instances

Eq TaskRunnerSettings Source # 
Data TaskRunnerSettings Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> TaskRunnerSettings -> c TaskRunnerSettings #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c TaskRunnerSettings #

toConstr :: TaskRunnerSettings -> Constr #

dataTypeOf :: TaskRunnerSettings -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c TaskRunnerSettings) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c TaskRunnerSettings) #

gmapT :: (forall b. Data b => b -> b) -> TaskRunnerSettings -> TaskRunnerSettings #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> TaskRunnerSettings -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> TaskRunnerSettings -> r #

gmapQ :: (forall d. Data d => d -> u) -> TaskRunnerSettings -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> TaskRunnerSettings -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> TaskRunnerSettings -> m TaskRunnerSettings #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> TaskRunnerSettings -> m TaskRunnerSettings #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> TaskRunnerSettings -> m TaskRunnerSettings #

Show TaskRunnerSettings Source # 
Generic TaskRunnerSettings Source # 
ToJSON TaskRunnerSettings Source # 
FromJSON TaskRunnerSettings Source # 
type Rep TaskRunnerSettings Source # 
type Rep TaskRunnerSettings = D1 (MetaData "TaskRunnerSettings" "Network.Google.Dataflow.Types.Product" "gogol-dataflow-0.1.0-Hia4fuX0B5YniTo71jkPP" False) (C1 (MetaCons "TaskRunnerSettings'" PrefixI True) ((:*:) ((:*:) ((:*:) ((:*:) (S1 (MetaSel (Just Symbol "_trsContinueOnException") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Bool))) (S1 (MetaSel (Just Symbol "_trsHarnessCommand") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)))) ((:*:) (S1 (MetaSel (Just Symbol "_trsWorkflowFileName") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) (S1 (MetaSel (Just Symbol "_trsTaskGroup") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))))) ((:*:) ((:*:) (S1 (MetaSel (Just Symbol "_trsAlsologtostderr") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Bool))) (S1 (MetaSel (Just Symbol "_trsDataflowAPIVersion") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)))) ((:*:) (S1 (MetaSel (Just Symbol "_trsLogDir") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) ((:*:) (S1 (MetaSel (Just Symbol "_trsCommandlinesFileName") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) (S1 (MetaSel (Just Symbol "_trsVMId") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))))))) ((:*:) ((:*:) ((:*:) (S1 (MetaSel (Just Symbol "_trsBaseURL") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) (S1 (MetaSel (Just Symbol "_trsOAuthScopes") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe [Text])))) ((:*:) (S1 (MetaSel (Just Symbol "_trsTaskUser") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) ((:*:) (S1 (MetaSel (Just Symbol "_trsStreamingWorkerMainClass") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) (S1 (MetaSel (Just Symbol "_trsBaseTaskDir") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)))))) ((:*:) ((:*:) (S1 (MetaSel (Just Symbol "_trsLogUploadLocation") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) (S1 (MetaSel (Just Symbol "_trsTempStoragePrefix") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)))) ((:*:) (S1 (MetaSel (Just Symbol "_trsLogToSerialconsole") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Bool))) ((:*:) (S1 (MetaSel (Just Symbol "_trsParallelWorkerSettings") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe WorkerSettings))) (S1 (MetaSel (Just Symbol "_trsLanguageHint") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)))))))))

trsContinueOnException :: Lens' TaskRunnerSettings (Maybe Bool) Source #

Do we continue taskrunner if an exception is hit?

trsHarnessCommand :: Lens' TaskRunnerSettings (Maybe Text) Source #

Command to launch the worker harness.

trsWorkflowFileName :: Lens' TaskRunnerSettings (Maybe Text) Source #

Store the workflow in this file.

trsTaskGroup :: Lens' TaskRunnerSettings (Maybe Text) Source #

The UNIX group ID on the worker VM to use for tasks launched by taskrunner; e.g. "wheel".

trsAlsologtostderr :: Lens' TaskRunnerSettings (Maybe Bool) Source #

Also send taskrunner log info to stderr?

trsDataflowAPIVersion :: Lens' TaskRunnerSettings (Maybe Text) Source #

API version of endpoint, e.g. "v1b3"

trsLogDir :: Lens' TaskRunnerSettings (Maybe Text) Source #

Directory on the VM to store logs.

trsCommandlinesFileName :: Lens' TaskRunnerSettings (Maybe Text) Source #

Store preprocessing commands in this file.

trsBaseURL :: Lens' TaskRunnerSettings (Maybe Text) Source #

The base URL for the taskrunner to use when accessing Google Cloud APIs. When workers access Google Cloud APIs, they logically do so via relative URLs. If this field is specified, it supplies the base URL to use for resolving these relative URLs. The normative algorithm used is defined by RFC 1808, "Relative Uniform Resource Locators". If not specified, the default value is "http://www.googleapis.com/"

trsOAuthScopes :: Lens' TaskRunnerSettings [Text] Source #

OAuth2 scopes to be requested by the taskrunner in order to access the dataflow API.

trsTaskUser :: Lens' TaskRunnerSettings (Maybe Text) Source #

The UNIX user ID on the worker VM to use for tasks launched by taskrunner; e.g. "root".

trsStreamingWorkerMainClass :: Lens' TaskRunnerSettings (Maybe Text) Source #

Streaming worker main class name.

trsBaseTaskDir :: Lens' TaskRunnerSettings (Maybe Text) Source #

Location on the worker for task-specific subdirectories.

trsLogUploadLocation :: Lens' TaskRunnerSettings (Maybe Text) Source #

Indicates where to put logs. If this is not specified, the logs will not be uploaded. The supported resource type is: Google Cloud Storage: storage.googleapis.com/{bucket}/{object} bucket.storage.googleapis.com/{object}

trsTempStoragePrefix :: Lens' TaskRunnerSettings (Maybe Text) Source #

The prefix of the resources the taskrunner should use for temporary storage. The supported resource type is: Google Cloud Storage: storage.googleapis.com/{bucket}/{object} bucket.storage.googleapis.com/{object}

trsLogToSerialconsole :: Lens' TaskRunnerSettings (Maybe Bool) Source #

Send taskrunner log into to Google Compute Engine VM serial console?

trsParallelWorkerSettings :: Lens' TaskRunnerSettings (Maybe WorkerSettings) Source #

Settings to pass to the parallel worker harness.

trsLanguageHint :: Lens' TaskRunnerSettings (Maybe Text) Source #

Suggested backend language.

EnvironmentSdkPipelineOptions

data EnvironmentSdkPipelineOptions Source #

The Dataflow SDK pipeline options specified by the user. These options are passed through the service and are used to recreate the SDK pipeline options on the worker in a language agnostic and platform independent way.

See: environmentSdkPipelineOptions smart constructor.

Instances

Eq EnvironmentSdkPipelineOptions Source # 
Data EnvironmentSdkPipelineOptions Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> EnvironmentSdkPipelineOptions -> c EnvironmentSdkPipelineOptions #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c EnvironmentSdkPipelineOptions #

toConstr :: EnvironmentSdkPipelineOptions -> Constr #

dataTypeOf :: EnvironmentSdkPipelineOptions -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c EnvironmentSdkPipelineOptions) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c EnvironmentSdkPipelineOptions) #

gmapT :: (forall b. Data b => b -> b) -> EnvironmentSdkPipelineOptions -> EnvironmentSdkPipelineOptions #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> EnvironmentSdkPipelineOptions -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> EnvironmentSdkPipelineOptions -> r #

gmapQ :: (forall d. Data d => d -> u) -> EnvironmentSdkPipelineOptions -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> EnvironmentSdkPipelineOptions -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> EnvironmentSdkPipelineOptions -> m EnvironmentSdkPipelineOptions #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> EnvironmentSdkPipelineOptions -> m EnvironmentSdkPipelineOptions #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> EnvironmentSdkPipelineOptions -> m EnvironmentSdkPipelineOptions #

Show EnvironmentSdkPipelineOptions Source # 
Generic EnvironmentSdkPipelineOptions Source # 
ToJSON EnvironmentSdkPipelineOptions Source # 
FromJSON EnvironmentSdkPipelineOptions Source # 
type Rep EnvironmentSdkPipelineOptions Source # 
type Rep EnvironmentSdkPipelineOptions = D1 (MetaData "EnvironmentSdkPipelineOptions" "Network.Google.Dataflow.Types.Product" "gogol-dataflow-0.1.0-Hia4fuX0B5YniTo71jkPP" True) (C1 (MetaCons "EnvironmentSdkPipelineOptions'" PrefixI True) (S1 (MetaSel (Just Symbol "_espoAddtional") NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 (HashMap Text JSONValue))))

environmentSdkPipelineOptions Source #

Creates a value of EnvironmentSdkPipelineOptions with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

LeaseWorkItemRequest

data LeaseWorkItemRequest Source #

Request to lease WorkItems.

See: leaseWorkItemRequest smart constructor.

Instances

Eq LeaseWorkItemRequest Source # 
Data LeaseWorkItemRequest Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> LeaseWorkItemRequest -> c LeaseWorkItemRequest #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c LeaseWorkItemRequest #

toConstr :: LeaseWorkItemRequest -> Constr #

dataTypeOf :: LeaseWorkItemRequest -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c LeaseWorkItemRequest) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c LeaseWorkItemRequest) #

gmapT :: (forall b. Data b => b -> b) -> LeaseWorkItemRequest -> LeaseWorkItemRequest #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> LeaseWorkItemRequest -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> LeaseWorkItemRequest -> r #

gmapQ :: (forall d. Data d => d -> u) -> LeaseWorkItemRequest -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> LeaseWorkItemRequest -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> LeaseWorkItemRequest -> m LeaseWorkItemRequest #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> LeaseWorkItemRequest -> m LeaseWorkItemRequest #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> LeaseWorkItemRequest -> m LeaseWorkItemRequest #

Show LeaseWorkItemRequest Source # 
Generic LeaseWorkItemRequest Source # 
ToJSON LeaseWorkItemRequest Source # 
FromJSON LeaseWorkItemRequest Source # 
type Rep LeaseWorkItemRequest Source # 
type Rep LeaseWorkItemRequest = D1 (MetaData "LeaseWorkItemRequest" "Network.Google.Dataflow.Types.Product" "gogol-dataflow-0.1.0-Hia4fuX0B5YniTo71jkPP" False) (C1 (MetaCons "LeaseWorkItemRequest'" PrefixI True) ((:*:) ((:*:) (S1 (MetaSel (Just Symbol "_lwirWorkItemTypes") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe [Text]))) (S1 (MetaSel (Just Symbol "_lwirCurrentWorkerTime") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)))) ((:*:) (S1 (MetaSel (Just Symbol "_lwirWorkerCapabilities") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe [Text]))) ((:*:) (S1 (MetaSel (Just Symbol "_lwirRequestedLeaseDuration") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) (S1 (MetaSel (Just Symbol "_lwirWorkerId") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)))))))

leaseWorkItemRequest :: LeaseWorkItemRequest Source #

Creates a value of LeaseWorkItemRequest with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

lwirCurrentWorkerTime :: Lens' LeaseWorkItemRequest (Maybe Text) Source #

The current timestamp at the worker.

lwirWorkerCapabilities :: Lens' LeaseWorkItemRequest [Text] Source #

Worker capabilities. WorkItems might be limited to workers with specific capabilities.

lwirWorkerId :: Lens' LeaseWorkItemRequest (Maybe Text) Source #

Identifies the worker leasing work -- typically the ID of the virtual machine running the worker.

SourceOperationResponse

data SourceOperationResponse Source #

The result of a SourceOperationRequest, specified in ReportWorkItemStatusRequest.source_operation when the work item is completed.

See: sourceOperationResponse smart constructor.

Instances

Eq SourceOperationResponse Source # 
Data SourceOperationResponse Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> SourceOperationResponse -> c SourceOperationResponse #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c SourceOperationResponse #

toConstr :: SourceOperationResponse -> Constr #

dataTypeOf :: SourceOperationResponse -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c SourceOperationResponse) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c SourceOperationResponse) #

gmapT :: (forall b. Data b => b -> b) -> SourceOperationResponse -> SourceOperationResponse #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> SourceOperationResponse -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> SourceOperationResponse -> r #

gmapQ :: (forall d. Data d => d -> u) -> SourceOperationResponse -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> SourceOperationResponse -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> SourceOperationResponse -> m SourceOperationResponse #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> SourceOperationResponse -> m SourceOperationResponse #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> SourceOperationResponse -> m SourceOperationResponse #

Show SourceOperationResponse Source # 
Generic SourceOperationResponse Source # 
ToJSON SourceOperationResponse Source # 
FromJSON SourceOperationResponse Source # 
type Rep SourceOperationResponse Source # 
type Rep SourceOperationResponse = D1 (MetaData "SourceOperationResponse" "Network.Google.Dataflow.Types.Product" "gogol-dataflow-0.1.0-Hia4fuX0B5YniTo71jkPP" False) (C1 (MetaCons "SourceOperationResponse'" PrefixI True) ((:*:) (S1 (MetaSel (Just Symbol "_sorSplit") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe SourceSplitResponse))) (S1 (MetaSel (Just Symbol "_sorGetMetadata") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe SourceGetMetadataResponse)))))

sourceOperationResponse :: SourceOperationResponse Source #

Creates a value of SourceOperationResponse with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

sorSplit :: Lens' SourceOperationResponse (Maybe SourceSplitResponse) Source #

A response to a request to split a source.

sorGetMetadata :: Lens' SourceOperationResponse (Maybe SourceGetMetadataResponse) Source #

A response to a request to get metadata about a source.

TopologyConfigUserStageToComputationNameMap

data TopologyConfigUserStageToComputationNameMap Source #

Maps user stage names to stable computation names.

See: topologyConfigUserStageToComputationNameMap smart constructor.

Instances

Eq TopologyConfigUserStageToComputationNameMap Source # 
Data TopologyConfigUserStageToComputationNameMap Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> TopologyConfigUserStageToComputationNameMap -> c TopologyConfigUserStageToComputationNameMap #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c TopologyConfigUserStageToComputationNameMap #

toConstr :: TopologyConfigUserStageToComputationNameMap -> Constr #

dataTypeOf :: TopologyConfigUserStageToComputationNameMap -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c TopologyConfigUserStageToComputationNameMap) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c TopologyConfigUserStageToComputationNameMap) #

gmapT :: (forall b. Data b => b -> b) -> TopologyConfigUserStageToComputationNameMap -> TopologyConfigUserStageToComputationNameMap #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> TopologyConfigUserStageToComputationNameMap -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> TopologyConfigUserStageToComputationNameMap -> r #

gmapQ :: (forall d. Data d => d -> u) -> TopologyConfigUserStageToComputationNameMap -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> TopologyConfigUserStageToComputationNameMap -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> TopologyConfigUserStageToComputationNameMap -> m TopologyConfigUserStageToComputationNameMap #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> TopologyConfigUserStageToComputationNameMap -> m TopologyConfigUserStageToComputationNameMap #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> TopologyConfigUserStageToComputationNameMap -> m TopologyConfigUserStageToComputationNameMap #

Show TopologyConfigUserStageToComputationNameMap Source # 
Generic TopologyConfigUserStageToComputationNameMap Source # 
ToJSON TopologyConfigUserStageToComputationNameMap Source # 
FromJSON TopologyConfigUserStageToComputationNameMap Source # 
type Rep TopologyConfigUserStageToComputationNameMap Source # 
type Rep TopologyConfigUserStageToComputationNameMap = D1 (MetaData "TopologyConfigUserStageToComputationNameMap" "Network.Google.Dataflow.Types.Product" "gogol-dataflow-0.1.0-Hia4fuX0B5YniTo71jkPP" True) (C1 (MetaCons "TopologyConfigUserStageToComputationNameMap'" PrefixI True) (S1 (MetaSel (Just Symbol "_tcustcnmAddtional") NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 (HashMap Text Text))))

topologyConfigUserStageToComputationNameMap Source #

Creates a value of TopologyConfigUserStageToComputationNameMap with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

ShellTask

data ShellTask Source #

A task which consists of a shell command for the worker to execute.

See: shellTask smart constructor.

Instances

Eq ShellTask Source # 
Data ShellTask Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> ShellTask -> c ShellTask #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c ShellTask #

toConstr :: ShellTask -> Constr #

dataTypeOf :: ShellTask -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c ShellTask) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c ShellTask) #

gmapT :: (forall b. Data b => b -> b) -> ShellTask -> ShellTask #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> ShellTask -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> ShellTask -> r #

gmapQ :: (forall d. Data d => d -> u) -> ShellTask -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> ShellTask -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> ShellTask -> m ShellTask #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> ShellTask -> m ShellTask #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> ShellTask -> m ShellTask #

Show ShellTask Source # 
Generic ShellTask Source # 

Associated Types

type Rep ShellTask :: * -> * #

ToJSON ShellTask Source # 
FromJSON ShellTask Source # 
type Rep ShellTask Source # 
type Rep ShellTask = D1 (MetaData "ShellTask" "Network.Google.Dataflow.Types.Product" "gogol-dataflow-0.1.0-Hia4fuX0B5YniTo71jkPP" False) (C1 (MetaCons "ShellTask'" PrefixI True) ((:*:) (S1 (MetaSel (Just Symbol "_stCommand") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) (S1 (MetaSel (Just Symbol "_stExitCode") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe (Textual Int32))))))

shellTask :: ShellTask Source #

Creates a value of ShellTask with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

stCommand :: Lens' ShellTask (Maybe Text) Source #

The shell command to run.

stExitCode :: Lens' ShellTask (Maybe Int32) Source #

Exit code for the task.

StatusDetailsItem

data StatusDetailsItem Source #

Instances

Eq StatusDetailsItem Source # 
Data StatusDetailsItem Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> StatusDetailsItem -> c StatusDetailsItem #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c StatusDetailsItem #

toConstr :: StatusDetailsItem -> Constr #

dataTypeOf :: StatusDetailsItem -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c StatusDetailsItem) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c StatusDetailsItem) #

gmapT :: (forall b. Data b => b -> b) -> StatusDetailsItem -> StatusDetailsItem #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> StatusDetailsItem -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> StatusDetailsItem -> r #

gmapQ :: (forall d. Data d => d -> u) -> StatusDetailsItem -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> StatusDetailsItem -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> StatusDetailsItem -> m StatusDetailsItem #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> StatusDetailsItem -> m StatusDetailsItem #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> StatusDetailsItem -> m StatusDetailsItem #

Show StatusDetailsItem Source # 
Generic StatusDetailsItem Source # 
ToJSON StatusDetailsItem Source # 
FromJSON StatusDetailsItem Source # 
type Rep StatusDetailsItem Source # 
type Rep StatusDetailsItem = D1 (MetaData "StatusDetailsItem" "Network.Google.Dataflow.Types.Product" "gogol-dataflow-0.1.0-Hia4fuX0B5YniTo71jkPP" True) (C1 (MetaCons "StatusDetailsItem'" PrefixI True) (S1 (MetaSel (Just Symbol "_sdiAddtional") NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 (HashMap Text JSONValue))))

statusDetailsItem Source #

Creates a value of StatusDetailsItem with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

sdiAddtional :: Lens' StatusDetailsItem (HashMap Text JSONValue) Source #

Properties of the object. Contains field 'ype with type URL.

ReportedParallelism

data ReportedParallelism Source #

Represents the level of parallelism in a WorkItem's input, reported by the worker.

See: reportedParallelism smart constructor.

Instances

Eq ReportedParallelism Source # 
Data ReportedParallelism Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> ReportedParallelism -> c ReportedParallelism #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c ReportedParallelism #

toConstr :: ReportedParallelism -> Constr #

dataTypeOf :: ReportedParallelism -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c ReportedParallelism) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c ReportedParallelism) #

gmapT :: (forall b. Data b => b -> b) -> ReportedParallelism -> ReportedParallelism #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> ReportedParallelism -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> ReportedParallelism -> r #

gmapQ :: (forall d. Data d => d -> u) -> ReportedParallelism -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> ReportedParallelism -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> ReportedParallelism -> m ReportedParallelism #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> ReportedParallelism -> m ReportedParallelism #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> ReportedParallelism -> m ReportedParallelism #

Show ReportedParallelism Source # 
Generic ReportedParallelism Source # 
ToJSON ReportedParallelism Source # 
FromJSON ReportedParallelism Source # 
type Rep ReportedParallelism Source # 
type Rep ReportedParallelism = D1 (MetaData "ReportedParallelism" "Network.Google.Dataflow.Types.Product" "gogol-dataflow-0.1.0-Hia4fuX0B5YniTo71jkPP" False) (C1 (MetaCons "ReportedParallelism'" PrefixI True) ((:*:) (S1 (MetaSel (Just Symbol "_rpValue") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe (Textual Double)))) (S1 (MetaSel (Just Symbol "_rpIsInfinite") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Bool)))))

reportedParallelism :: ReportedParallelism Source #

Creates a value of ReportedParallelism with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

rpValue :: Lens' ReportedParallelism (Maybe Double) Source #

Specifies the level of parallelism in case it is finite.

rpIsInfinite :: Lens' ReportedParallelism (Maybe Bool) Source #

Specifies whether the parallelism is infinite. If true, "value" is ignored. Infinite parallelism means the service will assume that the work item can always be split into more non-empty work items by dynamic splitting. This is a work-around for lack of support for infinity by the current JSON-based Java RPC stack.

StepProperties

data StepProperties Source #

Named properties associated with the step. Each kind of predefined step has its own required set of properties.

See: stepProperties smart constructor.

Instances

Eq StepProperties Source # 
Data StepProperties Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> StepProperties -> c StepProperties #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c StepProperties #

toConstr :: StepProperties -> Constr #

dataTypeOf :: StepProperties -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c StepProperties) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c StepProperties) #

gmapT :: (forall b. Data b => b -> b) -> StepProperties -> StepProperties #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> StepProperties -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> StepProperties -> r #

gmapQ :: (forall d. Data d => d -> u) -> StepProperties -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> StepProperties -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> StepProperties -> m StepProperties #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> StepProperties -> m StepProperties #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> StepProperties -> m StepProperties #

Show StepProperties Source # 
Generic StepProperties Source # 

Associated Types

type Rep StepProperties :: * -> * #

ToJSON StepProperties Source # 
FromJSON StepProperties Source # 
type Rep StepProperties Source # 
type Rep StepProperties = D1 (MetaData "StepProperties" "Network.Google.Dataflow.Types.Product" "gogol-dataflow-0.1.0-Hia4fuX0B5YniTo71jkPP" True) (C1 (MetaCons "StepProperties'" PrefixI True) (S1 (MetaSel (Just Symbol "_spAddtional") NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 (HashMap Text JSONValue))))

stepProperties Source #

Creates a value of StepProperties with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

TopologyConfig

data TopologyConfig Source #

Global topology of the streaming Dataflow job, including all computations and their sharded locations.

See: topologyConfig smart constructor.

Instances

Eq TopologyConfig Source # 
Data TopologyConfig Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> TopologyConfig -> c TopologyConfig #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c TopologyConfig #

toConstr :: TopologyConfig -> Constr #

dataTypeOf :: TopologyConfig -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c TopologyConfig) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c TopologyConfig) #

gmapT :: (forall b. Data b => b -> b) -> TopologyConfig -> TopologyConfig #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> TopologyConfig -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> TopologyConfig -> r #

gmapQ :: (forall d. Data d => d -> u) -> TopologyConfig -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> TopologyConfig -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> TopologyConfig -> m TopologyConfig #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> TopologyConfig -> m TopologyConfig #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> TopologyConfig -> m TopologyConfig #

Show TopologyConfig Source # 
Generic TopologyConfig Source # 

Associated Types

type Rep TopologyConfig :: * -> * #

ToJSON TopologyConfig Source # 
FromJSON TopologyConfig Source # 
type Rep TopologyConfig Source # 
type Rep TopologyConfig = D1 (MetaData "TopologyConfig" "Network.Google.Dataflow.Types.Product" "gogol-dataflow-0.1.0-Hia4fuX0B5YniTo71jkPP" False) (C1 (MetaCons "TopologyConfig'" PrefixI True) ((:*:) ((:*:) (S1 (MetaSel (Just Symbol "_tcDataDiskAssignments") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe [DataDiskAssignment]))) (S1 (MetaSel (Just Symbol "_tcPersistentStateVersion") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe (Textual Int32))))) ((:*:) (S1 (MetaSel (Just Symbol "_tcForwardingKeyBits") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe (Textual Int32)))) ((:*:) (S1 (MetaSel (Just Symbol "_tcUserStageToComputationNameMap") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe TopologyConfigUserStageToComputationNameMap))) (S1 (MetaSel (Just Symbol "_tcComputations") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe [ComputationTopology])))))))

topologyConfig :: TopologyConfig Source #

Creates a value of TopologyConfig with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

tcDataDiskAssignments :: Lens' TopologyConfig [DataDiskAssignment] Source #

The disks assigned to a streaming Dataflow job.

tcPersistentStateVersion :: Lens' TopologyConfig (Maybe Int32) Source #

Version number for persistent state.

tcForwardingKeyBits :: Lens' TopologyConfig (Maybe Int32) Source #

The size (in bits) of keys that will be assigned to source messages.

tcComputations :: Lens' TopologyConfig [ComputationTopology] Source #

The computations associated with a streaming Dataflow job.

ApproximateSplitRequest

data ApproximateSplitRequest Source #

A suggestion by the service to the worker to dynamically split the WorkItem.

See: approximateSplitRequest smart constructor.

Instances

Eq ApproximateSplitRequest Source # 
Data ApproximateSplitRequest Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> ApproximateSplitRequest -> c ApproximateSplitRequest #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c ApproximateSplitRequest #

toConstr :: ApproximateSplitRequest -> Constr #

dataTypeOf :: ApproximateSplitRequest -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c ApproximateSplitRequest) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c ApproximateSplitRequest) #

gmapT :: (forall b. Data b => b -> b) -> ApproximateSplitRequest -> ApproximateSplitRequest #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> ApproximateSplitRequest -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> ApproximateSplitRequest -> r #

gmapQ :: (forall d. Data d => d -> u) -> ApproximateSplitRequest -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> ApproximateSplitRequest -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> ApproximateSplitRequest -> m ApproximateSplitRequest #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> ApproximateSplitRequest -> m ApproximateSplitRequest #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> ApproximateSplitRequest -> m ApproximateSplitRequest #

Show ApproximateSplitRequest Source # 
Generic ApproximateSplitRequest Source # 
ToJSON ApproximateSplitRequest Source # 
FromJSON ApproximateSplitRequest Source # 
type Rep ApproximateSplitRequest Source # 
type Rep ApproximateSplitRequest = D1 (MetaData "ApproximateSplitRequest" "Network.Google.Dataflow.Types.Product" "gogol-dataflow-0.1.0-Hia4fuX0B5YniTo71jkPP" False) (C1 (MetaCons "ApproximateSplitRequest'" PrefixI True) ((:*:) (S1 (MetaSel (Just Symbol "_asrFractionConsumed") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe (Textual Double)))) (S1 (MetaSel (Just Symbol "_asrPosition") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Position)))))

approximateSplitRequest :: ApproximateSplitRequest Source #

Creates a value of ApproximateSplitRequest with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

asrFractionConsumed :: Lens' ApproximateSplitRequest (Maybe Double) Source #

A fraction at which to split the work item, from 0.0 (beginning of the input) to 1.0 (end of the input).

asrPosition :: Lens' ApproximateSplitRequest (Maybe Position) Source #

A Position at which to split the work item.

WorkerSettings

data WorkerSettings Source #

Provides data to pass through to the worker harness.

See: workerSettings smart constructor.

Instances

Eq WorkerSettings Source # 
Data WorkerSettings Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> WorkerSettings -> c WorkerSettings #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c WorkerSettings #

toConstr :: WorkerSettings -> Constr #

dataTypeOf :: WorkerSettings -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c WorkerSettings) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c WorkerSettings) #

gmapT :: (forall b. Data b => b -> b) -> WorkerSettings -> WorkerSettings #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> WorkerSettings -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> WorkerSettings -> r #

gmapQ :: (forall d. Data d => d -> u) -> WorkerSettings -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> WorkerSettings -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> WorkerSettings -> m WorkerSettings #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> WorkerSettings -> m WorkerSettings #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> WorkerSettings -> m WorkerSettings #

Show WorkerSettings Source # 
Generic WorkerSettings Source # 

Associated Types

type Rep WorkerSettings :: * -> * #

ToJSON WorkerSettings Source # 
FromJSON WorkerSettings Source # 
type Rep WorkerSettings Source # 
type Rep WorkerSettings = D1 (MetaData "WorkerSettings" "Network.Google.Dataflow.Types.Product" "gogol-dataflow-0.1.0-Hia4fuX0B5YniTo71jkPP" False) (C1 (MetaCons "WorkerSettings'" PrefixI True) ((:*:) ((:*:) (S1 (MetaSel (Just Symbol "_wsServicePath") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) ((:*:) (S1 (MetaSel (Just Symbol "_wsBaseURL") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) (S1 (MetaSel (Just Symbol "_wsShuffleServicePath") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))))) ((:*:) (S1 (MetaSel (Just Symbol "_wsTempStoragePrefix") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) ((:*:) (S1 (MetaSel (Just Symbol "_wsReportingEnabled") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Bool))) (S1 (MetaSel (Just Symbol "_wsWorkerId") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)))))))

workerSettings :: WorkerSettings Source #

Creates a value of WorkerSettings with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

wsServicePath :: Lens' WorkerSettings (Maybe Text) Source #

The Dataflow service path relative to the root URL, for example, "dataflow/v1b3/projects".

wsBaseURL :: Lens' WorkerSettings (Maybe Text) Source #

The base URL for accessing Google Cloud APIs. When workers access Google Cloud APIs, they logically do so via relative URLs. If this field is specified, it supplies the base URL to use for resolving these relative URLs. The normative algorithm used is defined by RFC 1808, "Relative Uniform Resource Locators". If not specified, the default value is "http://www.googleapis.com/"

wsShuffleServicePath :: Lens' WorkerSettings (Maybe Text) Source #

The Shuffle service path relative to the root URL, for example, "shuffle/v1beta1".

wsTempStoragePrefix :: Lens' WorkerSettings (Maybe Text) Source #

The prefix of the resources the system should use for temporary storage. The supported resource type is: Google Cloud Storage: storage.googleapis.com/{bucket}/{object} bucket.storage.googleapis.com/{object}

wsReportingEnabled :: Lens' WorkerSettings (Maybe Bool) Source #

Send work progress updates to service.

wsWorkerId :: Lens' WorkerSettings (Maybe Text) Source #

ID of the worker running this pipeline.

WorkItemServiceStateHarnessData

data WorkItemServiceStateHarnessData Source #

Other data returned by the service, specific to the particular worker harness.

See: workItemServiceStateHarnessData smart constructor.

Instances

Eq WorkItemServiceStateHarnessData Source # 
Data WorkItemServiceStateHarnessData Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> WorkItemServiceStateHarnessData -> c WorkItemServiceStateHarnessData #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c WorkItemServiceStateHarnessData #

toConstr :: WorkItemServiceStateHarnessData -> Constr #

dataTypeOf :: WorkItemServiceStateHarnessData -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c WorkItemServiceStateHarnessData) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c WorkItemServiceStateHarnessData) #

gmapT :: (forall b. Data b => b -> b) -> WorkItemServiceStateHarnessData -> WorkItemServiceStateHarnessData #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> WorkItemServiceStateHarnessData -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> WorkItemServiceStateHarnessData -> r #

gmapQ :: (forall d. Data d => d -> u) -> WorkItemServiceStateHarnessData -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> WorkItemServiceStateHarnessData -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> WorkItemServiceStateHarnessData -> m WorkItemServiceStateHarnessData #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> WorkItemServiceStateHarnessData -> m WorkItemServiceStateHarnessData #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> WorkItemServiceStateHarnessData -> m WorkItemServiceStateHarnessData #

Show WorkItemServiceStateHarnessData Source # 
Generic WorkItemServiceStateHarnessData Source # 
ToJSON WorkItemServiceStateHarnessData Source # 
FromJSON WorkItemServiceStateHarnessData Source # 
type Rep WorkItemServiceStateHarnessData Source # 
type Rep WorkItemServiceStateHarnessData = D1 (MetaData "WorkItemServiceStateHarnessData" "Network.Google.Dataflow.Types.Product" "gogol-dataflow-0.1.0-Hia4fuX0B5YniTo71jkPP" True) (C1 (MetaCons "WorkItemServiceStateHarnessData'" PrefixI True) (S1 (MetaSel (Just Symbol "_wisshdAddtional") NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 (HashMap Text JSONValue))))

workItemServiceStateHarnessData Source #

Creates a value of WorkItemServiceStateHarnessData with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

DataDiskAssignment

data DataDiskAssignment Source #

Data disk assignment for a given VM instance.

See: dataDiskAssignment smart constructor.

Instances

Eq DataDiskAssignment Source # 
Data DataDiskAssignment Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> DataDiskAssignment -> c DataDiskAssignment #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c DataDiskAssignment #

toConstr :: DataDiskAssignment -> Constr #

dataTypeOf :: DataDiskAssignment -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c DataDiskAssignment) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c DataDiskAssignment) #

gmapT :: (forall b. Data b => b -> b) -> DataDiskAssignment -> DataDiskAssignment #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> DataDiskAssignment -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> DataDiskAssignment -> r #

gmapQ :: (forall d. Data d => d -> u) -> DataDiskAssignment -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> DataDiskAssignment -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> DataDiskAssignment -> m DataDiskAssignment #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> DataDiskAssignment -> m DataDiskAssignment #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> DataDiskAssignment -> m DataDiskAssignment #

Show DataDiskAssignment Source # 
Generic DataDiskAssignment Source # 
ToJSON DataDiskAssignment Source # 
FromJSON DataDiskAssignment Source # 
type Rep DataDiskAssignment Source # 
type Rep DataDiskAssignment = D1 (MetaData "DataDiskAssignment" "Network.Google.Dataflow.Types.Product" "gogol-dataflow-0.1.0-Hia4fuX0B5YniTo71jkPP" False) (C1 (MetaCons "DataDiskAssignment'" PrefixI True) ((:*:) (S1 (MetaSel (Just Symbol "_ddaVMInstance") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) (S1 (MetaSel (Just Symbol "_ddaDataDisks") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe [Text])))))

dataDiskAssignment :: DataDiskAssignment Source #

Creates a value of DataDiskAssignment with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

ddaVMInstance :: Lens' DataDiskAssignment (Maybe Text) Source #

VM instance name the data disks mounted to, for example "myproject-1014-104817-4c2-harness-0".

ddaDataDisks :: Lens' DataDiskAssignment [Text] Source #

Mounted data disks. The order is important a data disk's 0-based index in this list defines which persistent directory the disk is mounted to, for example the list of { "myproject-1014-104817-4c2-harness-0-disk-0" }, { "myproject-1014-104817-4c2-harness-0-disk-1" }.

WorkerMessageResponse

data WorkerMessageResponse Source #

A worker_message response allows the server to pass information to the sender.

See: workerMessageResponse smart constructor.

Instances

Eq WorkerMessageResponse Source # 
Data WorkerMessageResponse Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> WorkerMessageResponse -> c WorkerMessageResponse #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c WorkerMessageResponse #

toConstr :: WorkerMessageResponse -> Constr #

dataTypeOf :: WorkerMessageResponse -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c WorkerMessageResponse) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c WorkerMessageResponse) #

gmapT :: (forall b. Data b => b -> b) -> WorkerMessageResponse -> WorkerMessageResponse #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> WorkerMessageResponse -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> WorkerMessageResponse -> r #

gmapQ :: (forall d. Data d => d -> u) -> WorkerMessageResponse -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> WorkerMessageResponse -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> WorkerMessageResponse -> m WorkerMessageResponse #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> WorkerMessageResponse -> m WorkerMessageResponse #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> WorkerMessageResponse -> m WorkerMessageResponse #

Show WorkerMessageResponse Source # 
Generic WorkerMessageResponse Source # 
ToJSON WorkerMessageResponse Source # 
FromJSON WorkerMessageResponse Source # 
type Rep WorkerMessageResponse Source # 
type Rep WorkerMessageResponse = D1 (MetaData "WorkerMessageResponse" "Network.Google.Dataflow.Types.Product" "gogol-dataflow-0.1.0-Hia4fuX0B5YniTo71jkPP" True) (C1 (MetaCons "WorkerMessageResponse'" PrefixI True) (S1 (MetaSel (Just Symbol "_wmrWorkerHealthReportResponse") NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 (Maybe WorkerHealthReportResponse))))

workerMessageResponse :: WorkerMessageResponse Source #

Creates a value of WorkerMessageResponse with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

wmrWorkerHealthReportResponse :: Lens' WorkerMessageResponse (Maybe WorkerHealthReportResponse) Source #

The service's response to a worker's health report.

WorkItemServiceState

data WorkItemServiceState Source #

The Dataflow service's idea of the current state of a WorkItem being processed by a worker.

See: workItemServiceState smart constructor.

Instances

Eq WorkItemServiceState Source # 
Data WorkItemServiceState Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> WorkItemServiceState -> c WorkItemServiceState #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c WorkItemServiceState #

toConstr :: WorkItemServiceState -> Constr #

dataTypeOf :: WorkItemServiceState -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c WorkItemServiceState) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c WorkItemServiceState) #

gmapT :: (forall b. Data b => b -> b) -> WorkItemServiceState -> WorkItemServiceState #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> WorkItemServiceState -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> WorkItemServiceState -> r #

gmapQ :: (forall d. Data d => d -> u) -> WorkItemServiceState -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> WorkItemServiceState -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> WorkItemServiceState -> m WorkItemServiceState #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> WorkItemServiceState -> m WorkItemServiceState #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> WorkItemServiceState -> m WorkItemServiceState #

Show WorkItemServiceState Source # 
Generic WorkItemServiceState Source # 
ToJSON WorkItemServiceState Source # 
FromJSON WorkItemServiceState Source # 
type Rep WorkItemServiceState Source # 
type Rep WorkItemServiceState = D1 (MetaData "WorkItemServiceState" "Network.Google.Dataflow.Types.Product" "gogol-dataflow-0.1.0-Hia4fuX0B5YniTo71jkPP" False) (C1 (MetaCons "WorkItemServiceState'" PrefixI True) ((:*:) ((:*:) (S1 (MetaSel (Just Symbol "_wissNextReportIndex") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe (Textual Int64)))) ((:*:) (S1 (MetaSel (Just Symbol "_wissReportStatusInterval") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) (S1 (MetaSel (Just Symbol "_wissHarnessData") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe WorkItemServiceStateHarnessData))))) ((:*:) ((:*:) (S1 (MetaSel (Just Symbol "_wissSuggestedStopPoint") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe ApproximateProgress))) (S1 (MetaSel (Just Symbol "_wissSuggestedStopPosition") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Position)))) ((:*:) (S1 (MetaSel (Just Symbol "_wissLeaseExpireTime") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) (S1 (MetaSel (Just Symbol "_wissSplitRequest") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe ApproximateSplitRequest)))))))

workItemServiceState :: WorkItemServiceState Source #

Creates a value of WorkItemServiceState with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

wissNextReportIndex :: Lens' WorkItemServiceState (Maybe Int64) Source #

The index value to use for the next report sent by the worker. Note: If the report call fails for whatever reason, the worker should reuse this index for subsequent report attempts.

wissReportStatusInterval :: Lens' WorkItemServiceState (Maybe Text) Source #

New recommended reporting interval.

wissHarnessData :: Lens' WorkItemServiceState (Maybe WorkItemServiceStateHarnessData) Source #

Other data returned by the service, specific to the particular worker harness.

wissLeaseExpireTime :: Lens' WorkItemServiceState (Maybe Text) Source #

Time at which the current lease will expire.

wissSplitRequest :: Lens' WorkItemServiceState (Maybe ApproximateSplitRequest) Source #

The progress point in the WorkItem where the Dataflow service suggests that the worker truncate the task.

StreamingSetupTask

data StreamingSetupTask Source #

A task which initializes part of a streaming Dataflow job.

See: streamingSetupTask smart constructor.

Instances

Eq StreamingSetupTask Source # 
Data StreamingSetupTask Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> StreamingSetupTask -> c StreamingSetupTask #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c StreamingSetupTask #

toConstr :: StreamingSetupTask -> Constr #

dataTypeOf :: StreamingSetupTask -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c StreamingSetupTask) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c StreamingSetupTask) #

gmapT :: (forall b. Data b => b -> b) -> StreamingSetupTask -> StreamingSetupTask #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> StreamingSetupTask -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> StreamingSetupTask -> r #

gmapQ :: (forall d. Data d => d -> u) -> StreamingSetupTask -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> StreamingSetupTask -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> StreamingSetupTask -> m StreamingSetupTask #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> StreamingSetupTask -> m StreamingSetupTask #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> StreamingSetupTask -> m StreamingSetupTask #

Show StreamingSetupTask Source # 
Generic StreamingSetupTask Source # 
ToJSON StreamingSetupTask Source # 
FromJSON StreamingSetupTask Source # 
type Rep StreamingSetupTask Source # 
type Rep StreamingSetupTask = D1 (MetaData "StreamingSetupTask" "Network.Google.Dataflow.Types.Product" "gogol-dataflow-0.1.0-Hia4fuX0B5YniTo71jkPP" False) (C1 (MetaCons "StreamingSetupTask'" PrefixI True) ((:*:) ((:*:) (S1 (MetaSel (Just Symbol "_sstStreamingComputationTopology") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe TopologyConfig))) (S1 (MetaSel (Just Symbol "_sstReceiveWorkPort") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe (Textual Int32))))) ((:*:) (S1 (MetaSel (Just Symbol "_sstWorkerHarnessPort") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe (Textual Int32)))) (S1 (MetaSel (Just Symbol "_sstDrain") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Bool))))))

streamingSetupTask :: StreamingSetupTask Source #

Creates a value of StreamingSetupTask with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

sstStreamingComputationTopology :: Lens' StreamingSetupTask (Maybe TopologyConfig) Source #

The global topology of the streaming Dataflow job.

sstReceiveWorkPort :: Lens' StreamingSetupTask (Maybe Int32) Source #

The TCP port on which the worker should listen for messages from other streaming computation workers.

sstWorkerHarnessPort :: Lens' StreamingSetupTask (Maybe Int32) Source #

The TCP port used by the worker to communicate with the Dataflow worker harness.

sstDrain :: Lens' StreamingSetupTask (Maybe Bool) Source #

The user has requested drain.

PartialGroupByKeyInstructionInputElementCodec

data PartialGroupByKeyInstructionInputElementCodec Source #

The codec to use for interpreting an element in the input PTable.

See: partialGroupByKeyInstructionInputElementCodec smart constructor.

Instances

Eq PartialGroupByKeyInstructionInputElementCodec Source # 
Data PartialGroupByKeyInstructionInputElementCodec Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> PartialGroupByKeyInstructionInputElementCodec -> c PartialGroupByKeyInstructionInputElementCodec #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c PartialGroupByKeyInstructionInputElementCodec #

toConstr :: PartialGroupByKeyInstructionInputElementCodec -> Constr #

dataTypeOf :: PartialGroupByKeyInstructionInputElementCodec -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c PartialGroupByKeyInstructionInputElementCodec) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c PartialGroupByKeyInstructionInputElementCodec) #

gmapT :: (forall b. Data b => b -> b) -> PartialGroupByKeyInstructionInputElementCodec -> PartialGroupByKeyInstructionInputElementCodec #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> PartialGroupByKeyInstructionInputElementCodec -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> PartialGroupByKeyInstructionInputElementCodec -> r #

gmapQ :: (forall d. Data d => d -> u) -> PartialGroupByKeyInstructionInputElementCodec -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> PartialGroupByKeyInstructionInputElementCodec -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> PartialGroupByKeyInstructionInputElementCodec -> m PartialGroupByKeyInstructionInputElementCodec #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> PartialGroupByKeyInstructionInputElementCodec -> m PartialGroupByKeyInstructionInputElementCodec #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> PartialGroupByKeyInstructionInputElementCodec -> m PartialGroupByKeyInstructionInputElementCodec #

Show PartialGroupByKeyInstructionInputElementCodec Source # 
Generic PartialGroupByKeyInstructionInputElementCodec Source # 
ToJSON PartialGroupByKeyInstructionInputElementCodec Source # 
FromJSON PartialGroupByKeyInstructionInputElementCodec Source # 
type Rep PartialGroupByKeyInstructionInputElementCodec Source # 
type Rep PartialGroupByKeyInstructionInputElementCodec = D1 (MetaData "PartialGroupByKeyInstructionInputElementCodec" "Network.Google.Dataflow.Types.Product" "gogol-dataflow-0.1.0-Hia4fuX0B5YniTo71jkPP" True) (C1 (MetaCons "PartialGroupByKeyInstructionInputElementCodec'" PrefixI True) (S1 (MetaSel (Just Symbol "_pgbkiiecAddtional") NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 (HashMap Text JSONValue))))

partialGroupByKeyInstructionInputElementCodec Source #

Creates a value of PartialGroupByKeyInstructionInputElementCodec with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

MapTask

data MapTask Source #

MapTask consists of an ordered set of instructions, each of which describes one particular low-level operation for the worker to perform in order to accomplish the MapTask's WorkItem. Each instruction must appear in the list before any instructions which depends on its output.

See: mapTask smart constructor.

Instances

Eq MapTask Source # 

Methods

(==) :: MapTask -> MapTask -> Bool #

(/=) :: MapTask -> MapTask -> Bool #

Data MapTask Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> MapTask -> c MapTask #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c MapTask #

toConstr :: MapTask -> Constr #

dataTypeOf :: MapTask -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c MapTask) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c MapTask) #

gmapT :: (forall b. Data b => b -> b) -> MapTask -> MapTask #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> MapTask -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> MapTask -> r #

gmapQ :: (forall d. Data d => d -> u) -> MapTask -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> MapTask -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> MapTask -> m MapTask #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> MapTask -> m MapTask #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> MapTask -> m MapTask #

Show MapTask Source # 
Generic MapTask Source # 

Associated Types

type Rep MapTask :: * -> * #

Methods

from :: MapTask -> Rep MapTask x #

to :: Rep MapTask x -> MapTask #

ToJSON MapTask Source # 
FromJSON MapTask Source # 
type Rep MapTask Source # 
type Rep MapTask = D1 (MetaData "MapTask" "Network.Google.Dataflow.Types.Product" "gogol-dataflow-0.1.0-Hia4fuX0B5YniTo71jkPP" False) (C1 (MetaCons "MapTask'" PrefixI True) ((:*:) (S1 (MetaSel (Just Symbol "_mtInstructions") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe [ParallelInstruction]))) ((:*:) (S1 (MetaSel (Just Symbol "_mtSystemName") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) (S1 (MetaSel (Just Symbol "_mtStageName") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))))))

mapTask :: MapTask Source #

Creates a value of MapTask with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

mtInstructions :: Lens' MapTask [ParallelInstruction] Source #

The instructions in the MapTask.

mtSystemName :: Lens' MapTask (Maybe Text) Source #

System-defined name of this MapTask. Unique across the workflow.

mtStageName :: Lens' MapTask (Maybe Text) Source #

System-defined name of the stage containing this MapTask. Unique across the workflow.

MountedDataDisk

data MountedDataDisk Source #

Describes mounted data disk.

See: mountedDataDisk smart constructor.

Instances

Eq MountedDataDisk Source # 
Data MountedDataDisk Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> MountedDataDisk -> c MountedDataDisk #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c MountedDataDisk #

toConstr :: MountedDataDisk -> Constr #

dataTypeOf :: MountedDataDisk -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c MountedDataDisk) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c MountedDataDisk) #

gmapT :: (forall b. Data b => b -> b) -> MountedDataDisk -> MountedDataDisk #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> MountedDataDisk -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> MountedDataDisk -> r #

gmapQ :: (forall d. Data d => d -> u) -> MountedDataDisk -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> MountedDataDisk -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> MountedDataDisk -> m MountedDataDisk #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> MountedDataDisk -> m MountedDataDisk #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> MountedDataDisk -> m MountedDataDisk #

Show MountedDataDisk Source # 
Generic MountedDataDisk Source # 
ToJSON MountedDataDisk Source # 
FromJSON MountedDataDisk Source # 
type Rep MountedDataDisk Source # 
type Rep MountedDataDisk = D1 (MetaData "MountedDataDisk" "Network.Google.Dataflow.Types.Product" "gogol-dataflow-0.1.0-Hia4fuX0B5YniTo71jkPP" True) (C1 (MetaCons "MountedDataDisk'" PrefixI True) (S1 (MetaSel (Just Symbol "_mddDataDisk") NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 (Maybe Text))))

mountedDataDisk :: MountedDataDisk Source #

Creates a value of MountedDataDisk with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

mddDataDisk :: Lens' MountedDataDisk (Maybe Text) Source #

The name of the data disk. This name is local to the Google Cloud Platform project and uniquely identifies the disk within that project, for example "myproject-1014-104817-4c2-harness-0-disk-1".

SinkCodec

data SinkCodec Source #

The codec to use to encode data written to the sink.

See: sinkCodec smart constructor.

Instances

Eq SinkCodec Source # 
Data SinkCodec Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> SinkCodec -> c SinkCodec #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c SinkCodec #

toConstr :: SinkCodec -> Constr #

dataTypeOf :: SinkCodec -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c SinkCodec) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c SinkCodec) #

gmapT :: (forall b. Data b => b -> b) -> SinkCodec -> SinkCodec #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> SinkCodec -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> SinkCodec -> r #

gmapQ :: (forall d. Data d => d -> u) -> SinkCodec -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> SinkCodec -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> SinkCodec -> m SinkCodec #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> SinkCodec -> m SinkCodec #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> SinkCodec -> m SinkCodec #

Show SinkCodec Source # 
Generic SinkCodec Source # 

Associated Types

type Rep SinkCodec :: * -> * #

ToJSON SinkCodec Source # 
FromJSON SinkCodec Source # 
type Rep SinkCodec Source # 
type Rep SinkCodec = D1 (MetaData "SinkCodec" "Network.Google.Dataflow.Types.Product" "gogol-dataflow-0.1.0-Hia4fuX0B5YniTo71jkPP" True) (C1 (MetaCons "SinkCodec'" PrefixI True) (S1 (MetaSel (Just Symbol "_scAddtional") NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 (HashMap Text JSONValue))))

sinkCodec Source #

Creates a value of SinkCodec with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

scAddtional :: Lens' SinkCodec (HashMap Text JSONValue) Source #

Properties of the object.

WorkerHealthReportPodsItem

data WorkerHealthReportPodsItem Source #

Instances

Eq WorkerHealthReportPodsItem Source # 
Data WorkerHealthReportPodsItem Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> WorkerHealthReportPodsItem -> c WorkerHealthReportPodsItem #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c WorkerHealthReportPodsItem #

toConstr :: WorkerHealthReportPodsItem -> Constr #

dataTypeOf :: WorkerHealthReportPodsItem -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c WorkerHealthReportPodsItem) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c WorkerHealthReportPodsItem) #

gmapT :: (forall b. Data b => b -> b) -> WorkerHealthReportPodsItem -> WorkerHealthReportPodsItem #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> WorkerHealthReportPodsItem -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> WorkerHealthReportPodsItem -> r #

gmapQ :: (forall d. Data d => d -> u) -> WorkerHealthReportPodsItem -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> WorkerHealthReportPodsItem -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> WorkerHealthReportPodsItem -> m WorkerHealthReportPodsItem #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> WorkerHealthReportPodsItem -> m WorkerHealthReportPodsItem #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> WorkerHealthReportPodsItem -> m WorkerHealthReportPodsItem #

Show WorkerHealthReportPodsItem Source # 
Generic WorkerHealthReportPodsItem Source # 
ToJSON WorkerHealthReportPodsItem Source # 
FromJSON WorkerHealthReportPodsItem Source # 
type Rep WorkerHealthReportPodsItem Source # 
type Rep WorkerHealthReportPodsItem = D1 (MetaData "WorkerHealthReportPodsItem" "Network.Google.Dataflow.Types.Product" "gogol-dataflow-0.1.0-Hia4fuX0B5YniTo71jkPP" True) (C1 (MetaCons "WorkerHealthReportPodsItem'" PrefixI True) (S1 (MetaSel (Just Symbol "_whrpiAddtional") NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 (HashMap Text JSONValue))))

workerHealthReportPodsItem Source #

Creates a value of WorkerHealthReportPodsItem with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

ParDoInstructionUserFn

data ParDoInstructionUserFn Source #

The user function to invoke.

See: parDoInstructionUserFn smart constructor.

Instances

Eq ParDoInstructionUserFn Source # 
Data ParDoInstructionUserFn Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> ParDoInstructionUserFn -> c ParDoInstructionUserFn #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c ParDoInstructionUserFn #

toConstr :: ParDoInstructionUserFn -> Constr #

dataTypeOf :: ParDoInstructionUserFn -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c ParDoInstructionUserFn) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c ParDoInstructionUserFn) #

gmapT :: (forall b. Data b => b -> b) -> ParDoInstructionUserFn -> ParDoInstructionUserFn #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> ParDoInstructionUserFn -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> ParDoInstructionUserFn -> r #

gmapQ :: (forall d. Data d => d -> u) -> ParDoInstructionUserFn -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> ParDoInstructionUserFn -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> ParDoInstructionUserFn -> m ParDoInstructionUserFn #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> ParDoInstructionUserFn -> m ParDoInstructionUserFn #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> ParDoInstructionUserFn -> m ParDoInstructionUserFn #

Show ParDoInstructionUserFn Source # 
Generic ParDoInstructionUserFn Source # 
ToJSON ParDoInstructionUserFn Source # 
FromJSON ParDoInstructionUserFn Source # 
type Rep ParDoInstructionUserFn Source # 
type Rep ParDoInstructionUserFn = D1 (MetaData "ParDoInstructionUserFn" "Network.Google.Dataflow.Types.Product" "gogol-dataflow-0.1.0-Hia4fuX0B5YniTo71jkPP" True) (C1 (MetaCons "ParDoInstructionUserFn'" PrefixI True) (S1 (MetaSel (Just Symbol "_pdiufAddtional") NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 (HashMap Text JSONValue))))

parDoInstructionUserFn Source #

Creates a value of ParDoInstructionUserFn with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

InstructionOutputCodec

data InstructionOutputCodec Source #

The codec to use to encode data being written via this output.

See: instructionOutputCodec smart constructor.

Instances

Eq InstructionOutputCodec Source # 
Data InstructionOutputCodec Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> InstructionOutputCodec -> c InstructionOutputCodec #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c InstructionOutputCodec #

toConstr :: InstructionOutputCodec -> Constr #

dataTypeOf :: InstructionOutputCodec -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c InstructionOutputCodec) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c InstructionOutputCodec) #

gmapT :: (forall b. Data b => b -> b) -> InstructionOutputCodec -> InstructionOutputCodec #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> InstructionOutputCodec -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> InstructionOutputCodec -> r #

gmapQ :: (forall d. Data d => d -> u) -> InstructionOutputCodec -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> InstructionOutputCodec -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> InstructionOutputCodec -> m InstructionOutputCodec #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> InstructionOutputCodec -> m InstructionOutputCodec #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> InstructionOutputCodec -> m InstructionOutputCodec #

Show InstructionOutputCodec Source # 
Generic InstructionOutputCodec Source # 
ToJSON InstructionOutputCodec Source # 
FromJSON InstructionOutputCodec Source # 
type Rep InstructionOutputCodec Source # 
type Rep InstructionOutputCodec = D1 (MetaData "InstructionOutputCodec" "Network.Google.Dataflow.Types.Product" "gogol-dataflow-0.1.0-Hia4fuX0B5YniTo71jkPP" True) (C1 (MetaCons "InstructionOutputCodec'" PrefixI True) (S1 (MetaSel (Just Symbol "_iocAddtional") NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 (HashMap Text JSONValue))))

instructionOutputCodec Source #

Creates a value of InstructionOutputCodec with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

StreamLocation

data StreamLocation Source #

Describes a stream of data, either as input to be processed or as output of a streaming Dataflow job.

See: streamLocation smart constructor.

Instances

Eq StreamLocation Source # 
Data StreamLocation Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> StreamLocation -> c StreamLocation #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c StreamLocation #

toConstr :: StreamLocation -> Constr #

dataTypeOf :: StreamLocation -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c StreamLocation) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c StreamLocation) #

gmapT :: (forall b. Data b => b -> b) -> StreamLocation -> StreamLocation #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> StreamLocation -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> StreamLocation -> r #

gmapQ :: (forall d. Data d => d -> u) -> StreamLocation -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> StreamLocation -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> StreamLocation -> m StreamLocation #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> StreamLocation -> m StreamLocation #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> StreamLocation -> m StreamLocation #

Show StreamLocation Source # 
Generic StreamLocation Source # 

Associated Types

type Rep StreamLocation :: * -> * #

ToJSON StreamLocation Source # 
FromJSON StreamLocation Source # 
type Rep StreamLocation Source # 
type Rep StreamLocation = D1 (MetaData "StreamLocation" "Network.Google.Dataflow.Types.Product" "gogol-dataflow-0.1.0-Hia4fuX0B5YniTo71jkPP" False) (C1 (MetaCons "StreamLocation'" PrefixI True) ((:*:) ((:*:) (S1 (MetaSel (Just Symbol "_slStreamingStageLocation") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe StreamingStageLocation))) (S1 (MetaSel (Just Symbol "_slSideInputLocation") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe StreamingSideInputLocation)))) ((:*:) (S1 (MetaSel (Just Symbol "_slCustomSourceLocation") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe CustomSourceLocation))) (S1 (MetaSel (Just Symbol "_slPubsubLocation") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe PubsubLocation))))))

streamLocation :: StreamLocation Source #

Creates a value of StreamLocation with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

slStreamingStageLocation :: Lens' StreamLocation (Maybe StreamingStageLocation) Source #

The stream is part of another computation within the current streaming Dataflow job.

slPubsubLocation :: Lens' StreamLocation (Maybe PubsubLocation) Source #

The stream is a pubsub stream.

WorkerPoolPoolArgs

data WorkerPoolPoolArgs Source #

Extra arguments for this worker pool.

See: workerPoolPoolArgs smart constructor.

Instances

Eq WorkerPoolPoolArgs Source # 
Data WorkerPoolPoolArgs Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> WorkerPoolPoolArgs -> c WorkerPoolPoolArgs #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c WorkerPoolPoolArgs #

toConstr :: WorkerPoolPoolArgs -> Constr #

dataTypeOf :: WorkerPoolPoolArgs -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c WorkerPoolPoolArgs) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c WorkerPoolPoolArgs) #

gmapT :: (forall b. Data b => b -> b) -> WorkerPoolPoolArgs -> WorkerPoolPoolArgs #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> WorkerPoolPoolArgs -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> WorkerPoolPoolArgs -> r #

gmapQ :: (forall d. Data d => d -> u) -> WorkerPoolPoolArgs -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> WorkerPoolPoolArgs -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> WorkerPoolPoolArgs -> m WorkerPoolPoolArgs #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> WorkerPoolPoolArgs -> m WorkerPoolPoolArgs #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> WorkerPoolPoolArgs -> m WorkerPoolPoolArgs #

Show WorkerPoolPoolArgs Source # 
Generic WorkerPoolPoolArgs Source # 
ToJSON WorkerPoolPoolArgs Source # 
FromJSON WorkerPoolPoolArgs Source # 
type Rep WorkerPoolPoolArgs Source # 
type Rep WorkerPoolPoolArgs = D1 (MetaData "WorkerPoolPoolArgs" "Network.Google.Dataflow.Types.Product" "gogol-dataflow-0.1.0-Hia4fuX0B5YniTo71jkPP" True) (C1 (MetaCons "WorkerPoolPoolArgs'" PrefixI True) (S1 (MetaSel (Just Symbol "_wppaAddtional") NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 (HashMap Text JSONValue))))

workerPoolPoolArgs Source #

Creates a value of WorkerPoolPoolArgs with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

wppaAddtional :: Lens' WorkerPoolPoolArgs (HashMap Text JSONValue) Source #

Properties of the object. Contains field 'ype with type URL.

SendWorkerMessagesResponse

data SendWorkerMessagesResponse Source #

The response to the worker messages.

See: sendWorkerMessagesResponse smart constructor.

Instances

Eq SendWorkerMessagesResponse Source # 
Data SendWorkerMessagesResponse Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> SendWorkerMessagesResponse -> c SendWorkerMessagesResponse #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c SendWorkerMessagesResponse #

toConstr :: SendWorkerMessagesResponse -> Constr #

dataTypeOf :: SendWorkerMessagesResponse -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c SendWorkerMessagesResponse) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c SendWorkerMessagesResponse) #

gmapT :: (forall b. Data b => b -> b) -> SendWorkerMessagesResponse -> SendWorkerMessagesResponse #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> SendWorkerMessagesResponse -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> SendWorkerMessagesResponse -> r #

gmapQ :: (forall d. Data d => d -> u) -> SendWorkerMessagesResponse -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> SendWorkerMessagesResponse -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> SendWorkerMessagesResponse -> m SendWorkerMessagesResponse #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> SendWorkerMessagesResponse -> m SendWorkerMessagesResponse #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> SendWorkerMessagesResponse -> m SendWorkerMessagesResponse #

Show SendWorkerMessagesResponse Source # 
Generic SendWorkerMessagesResponse Source # 
ToJSON SendWorkerMessagesResponse Source # 
FromJSON SendWorkerMessagesResponse Source # 
type Rep SendWorkerMessagesResponse Source # 
type Rep SendWorkerMessagesResponse = D1 (MetaData "SendWorkerMessagesResponse" "Network.Google.Dataflow.Types.Product" "gogol-dataflow-0.1.0-Hia4fuX0B5YniTo71jkPP" True) (C1 (MetaCons "SendWorkerMessagesResponse'" PrefixI True) (S1 (MetaSel (Just Symbol "_swmrWorkerMessageResponses") NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 (Maybe [WorkerMessageResponse]))))

sendWorkerMessagesResponse :: SendWorkerMessagesResponse Source #

Creates a value of SendWorkerMessagesResponse with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

StreamingSideInputLocation

data StreamingSideInputLocation Source #

Identifies the location of a streaming side input.

See: streamingSideInputLocation smart constructor.

Instances

Eq StreamingSideInputLocation Source # 
Data StreamingSideInputLocation Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> StreamingSideInputLocation -> c StreamingSideInputLocation #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c StreamingSideInputLocation #

toConstr :: StreamingSideInputLocation -> Constr #

dataTypeOf :: StreamingSideInputLocation -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c StreamingSideInputLocation) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c StreamingSideInputLocation) #

gmapT :: (forall b. Data b => b -> b) -> StreamingSideInputLocation -> StreamingSideInputLocation #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> StreamingSideInputLocation -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> StreamingSideInputLocation -> r #

gmapQ :: (forall d. Data d => d -> u) -> StreamingSideInputLocation -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> StreamingSideInputLocation -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> StreamingSideInputLocation -> m StreamingSideInputLocation #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> StreamingSideInputLocation -> m StreamingSideInputLocation #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> StreamingSideInputLocation -> m StreamingSideInputLocation #

Show StreamingSideInputLocation Source # 
Generic StreamingSideInputLocation Source # 
ToJSON StreamingSideInputLocation Source # 
FromJSON StreamingSideInputLocation Source # 
type Rep StreamingSideInputLocation Source # 
type Rep StreamingSideInputLocation = D1 (MetaData "StreamingSideInputLocation" "Network.Google.Dataflow.Types.Product" "gogol-dataflow-0.1.0-Hia4fuX0B5YniTo71jkPP" False) (C1 (MetaCons "StreamingSideInputLocation'" PrefixI True) ((:*:) (S1 (MetaSel (Just Symbol "_ssilTag") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) (S1 (MetaSel (Just Symbol "_ssilStateFamily") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)))))

streamingSideInputLocation :: StreamingSideInputLocation Source #

Creates a value of StreamingSideInputLocation with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

ssilTag :: Lens' StreamingSideInputLocation (Maybe Text) Source #

Identifies the particular side input within the streaming Dataflow job.

ssilStateFamily :: Lens' StreamingSideInputLocation (Maybe Text) Source #

Identifies the state family where this side input is stored.

StreamingComputationTask

data StreamingComputationTask Source #

A task which describes what action should be performed for the specified streaming computation ranges.

See: streamingComputationTask smart constructor.

Instances

Eq StreamingComputationTask Source # 
Data StreamingComputationTask Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> StreamingComputationTask -> c StreamingComputationTask #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c StreamingComputationTask #

toConstr :: StreamingComputationTask -> Constr #

dataTypeOf :: StreamingComputationTask -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c StreamingComputationTask) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c StreamingComputationTask) #

gmapT :: (forall b. Data b => b -> b) -> StreamingComputationTask -> StreamingComputationTask #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> StreamingComputationTask -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> StreamingComputationTask -> r #

gmapQ :: (forall d. Data d => d -> u) -> StreamingComputationTask -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> StreamingComputationTask -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> StreamingComputationTask -> m StreamingComputationTask #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> StreamingComputationTask -> m StreamingComputationTask #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> StreamingComputationTask -> m StreamingComputationTask #

Show StreamingComputationTask Source # 
Generic StreamingComputationTask Source # 
ToJSON StreamingComputationTask Source # 
FromJSON StreamingComputationTask Source # 
type Rep StreamingComputationTask Source # 
type Rep StreamingComputationTask = D1 (MetaData "StreamingComputationTask" "Network.Google.Dataflow.Types.Product" "gogol-dataflow-0.1.0-Hia4fuX0B5YniTo71jkPP" False) (C1 (MetaCons "StreamingComputationTask'" PrefixI True) ((:*:) (S1 (MetaSel (Just Symbol "_sctTaskType") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) ((:*:) (S1 (MetaSel (Just Symbol "_sctDataDisks") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe [MountedDataDisk]))) (S1 (MetaSel (Just Symbol "_sctComputationRanges") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe [StreamingComputationRanges]))))))

streamingComputationTask :: StreamingComputationTask Source #

Creates a value of StreamingComputationTask with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

sctTaskType :: Lens' StreamingComputationTask (Maybe Text) Source #

A type of streaming computation task.

sctDataDisks :: Lens' StreamingComputationTask [MountedDataDisk] Source #

Describes the set of data disks this task should apply to.

sctComputationRanges :: Lens' StreamingComputationTask [StreamingComputationRanges] Source #

Contains ranges of a streaming computation this task should apply to.

JobMessage

data JobMessage Source #

A particular message pertaining to a Dataflow job.

See: jobMessage smart constructor.

Instances

Eq JobMessage Source # 
Data JobMessage Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> JobMessage -> c JobMessage #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c JobMessage #

toConstr :: JobMessage -> Constr #

dataTypeOf :: JobMessage -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c JobMessage) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c JobMessage) #

gmapT :: (forall b. Data b => b -> b) -> JobMessage -> JobMessage #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> JobMessage -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> JobMessage -> r #

gmapQ :: (forall d. Data d => d -> u) -> JobMessage -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> JobMessage -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> JobMessage -> m JobMessage #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> JobMessage -> m JobMessage #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> JobMessage -> m JobMessage #

Show JobMessage Source # 
Generic JobMessage Source # 

Associated Types

type Rep JobMessage :: * -> * #

ToJSON JobMessage Source # 
FromJSON JobMessage Source # 
type Rep JobMessage Source # 
type Rep JobMessage = D1 (MetaData "JobMessage" "Network.Google.Dataflow.Types.Product" "gogol-dataflow-0.1.0-Hia4fuX0B5YniTo71jkPP" False) (C1 (MetaCons "JobMessage'" PrefixI True) ((:*:) ((:*:) (S1 (MetaSel (Just Symbol "_jmTime") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) (S1 (MetaSel (Just Symbol "_jmMessageText") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)))) ((:*:) (S1 (MetaSel (Just Symbol "_jmMessageImportance") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) (S1 (MetaSel (Just Symbol "_jmId") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))))))

jobMessage :: JobMessage Source #

Creates a value of JobMessage with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

jmTime :: Lens' JobMessage (Maybe Text) Source #

The timestamp of the message.

jmMessageText :: Lens' JobMessage (Maybe Text) Source #

The text of the message.

jmMessageImportance :: Lens' JobMessage (Maybe Text) Source #

Importance level of the message.

jmId :: Lens' JobMessage (Maybe Text) Source #

Identifies the message. This is automatically generated by the service; the caller should treat it as an opaque string.

SeqMapTaskOutputInfo

data SeqMapTaskOutputInfo Source #

Information about an output of a SeqMapTask.

See: seqMapTaskOutputInfo smart constructor.

Instances

Eq SeqMapTaskOutputInfo Source # 
Data SeqMapTaskOutputInfo Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> SeqMapTaskOutputInfo -> c SeqMapTaskOutputInfo #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c SeqMapTaskOutputInfo #

toConstr :: SeqMapTaskOutputInfo -> Constr #

dataTypeOf :: SeqMapTaskOutputInfo -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c SeqMapTaskOutputInfo) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c SeqMapTaskOutputInfo) #

gmapT :: (forall b. Data b => b -> b) -> SeqMapTaskOutputInfo -> SeqMapTaskOutputInfo #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> SeqMapTaskOutputInfo -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> SeqMapTaskOutputInfo -> r #

gmapQ :: (forall d. Data d => d -> u) -> SeqMapTaskOutputInfo -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> SeqMapTaskOutputInfo -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> SeqMapTaskOutputInfo -> m SeqMapTaskOutputInfo #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> SeqMapTaskOutputInfo -> m SeqMapTaskOutputInfo #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> SeqMapTaskOutputInfo -> m SeqMapTaskOutputInfo #

Show SeqMapTaskOutputInfo Source # 
Generic SeqMapTaskOutputInfo Source # 
ToJSON SeqMapTaskOutputInfo Source # 
FromJSON SeqMapTaskOutputInfo Source # 
type Rep SeqMapTaskOutputInfo Source # 
type Rep SeqMapTaskOutputInfo = D1 (MetaData "SeqMapTaskOutputInfo" "Network.Google.Dataflow.Types.Product" "gogol-dataflow-0.1.0-Hia4fuX0B5YniTo71jkPP" False) (C1 (MetaCons "SeqMapTaskOutputInfo'" PrefixI True) ((:*:) (S1 (MetaSel (Just Symbol "_smtoiSink") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Sink))) (S1 (MetaSel (Just Symbol "_smtoiTag") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)))))

seqMapTaskOutputInfo :: SeqMapTaskOutputInfo Source #

Creates a value of SeqMapTaskOutputInfo with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

smtoiSink :: Lens' SeqMapTaskOutputInfo (Maybe Sink) Source #

The sink to write the output value to.

smtoiTag :: Lens' SeqMapTaskOutputInfo (Maybe Text) Source #

The id of the TupleTag the user code will tag the output value by.

SourceGetMetadataRequest

data SourceGetMetadataRequest Source #

A request to compute the SourceMetadata of a Source.

See: sourceGetMetadataRequest smart constructor.

Instances

Eq SourceGetMetadataRequest Source # 
Data SourceGetMetadataRequest Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> SourceGetMetadataRequest -> c SourceGetMetadataRequest #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c SourceGetMetadataRequest #

toConstr :: SourceGetMetadataRequest -> Constr #

dataTypeOf :: SourceGetMetadataRequest -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c SourceGetMetadataRequest) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c SourceGetMetadataRequest) #

gmapT :: (forall b. Data b => b -> b) -> SourceGetMetadataRequest -> SourceGetMetadataRequest #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> SourceGetMetadataRequest -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> SourceGetMetadataRequest -> r #

gmapQ :: (forall d. Data d => d -> u) -> SourceGetMetadataRequest -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> SourceGetMetadataRequest -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> SourceGetMetadataRequest -> m SourceGetMetadataRequest #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> SourceGetMetadataRequest -> m SourceGetMetadataRequest #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> SourceGetMetadataRequest -> m SourceGetMetadataRequest #

Show SourceGetMetadataRequest Source # 
Generic SourceGetMetadataRequest Source # 
ToJSON SourceGetMetadataRequest Source # 
FromJSON SourceGetMetadataRequest Source # 
type Rep SourceGetMetadataRequest Source # 
type Rep SourceGetMetadataRequest = D1 (MetaData "SourceGetMetadataRequest" "Network.Google.Dataflow.Types.Product" "gogol-dataflow-0.1.0-Hia4fuX0B5YniTo71jkPP" True) (C1 (MetaCons "SourceGetMetadataRequest'" PrefixI True) (S1 (MetaSel (Just Symbol "_sgmrSource") NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 (Maybe Source))))

sourceGetMetadataRequest :: SourceGetMetadataRequest Source #

Creates a value of SourceGetMetadataRequest with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

sgmrSource :: Lens' SourceGetMetadataRequest (Maybe Source) Source #

Specification of the source whose metadata should be computed.

SeqMapTaskUserFn

data SeqMapTaskUserFn Source #

The user function to invoke.

See: seqMapTaskUserFn smart constructor.

Instances

Eq SeqMapTaskUserFn Source # 
Data SeqMapTaskUserFn Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> SeqMapTaskUserFn -> c SeqMapTaskUserFn #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c SeqMapTaskUserFn #

toConstr :: SeqMapTaskUserFn -> Constr #

dataTypeOf :: SeqMapTaskUserFn -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c SeqMapTaskUserFn) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c SeqMapTaskUserFn) #

gmapT :: (forall b. Data b => b -> b) -> SeqMapTaskUserFn -> SeqMapTaskUserFn #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> SeqMapTaskUserFn -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> SeqMapTaskUserFn -> r #

gmapQ :: (forall d. Data d => d -> u) -> SeqMapTaskUserFn -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> SeqMapTaskUserFn -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> SeqMapTaskUserFn -> m SeqMapTaskUserFn #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> SeqMapTaskUserFn -> m SeqMapTaskUserFn #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> SeqMapTaskUserFn -> m SeqMapTaskUserFn #

Show SeqMapTaskUserFn Source # 
Generic SeqMapTaskUserFn Source # 
ToJSON SeqMapTaskUserFn Source # 
FromJSON SeqMapTaskUserFn Source # 
type Rep SeqMapTaskUserFn Source # 
type Rep SeqMapTaskUserFn = D1 (MetaData "SeqMapTaskUserFn" "Network.Google.Dataflow.Types.Product" "gogol-dataflow-0.1.0-Hia4fuX0B5YniTo71jkPP" True) (C1 (MetaCons "SeqMapTaskUserFn'" PrefixI True) (S1 (MetaSel (Just Symbol "_smtufAddtional") NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 (HashMap Text JSONValue))))

seqMapTaskUserFn Source #

Creates a value of SeqMapTaskUserFn with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

PartialGroupByKeyInstructionValueCombiningFn

data PartialGroupByKeyInstructionValueCombiningFn Source #

The value combining function to invoke.

See: partialGroupByKeyInstructionValueCombiningFn smart constructor.

Instances

Eq PartialGroupByKeyInstructionValueCombiningFn Source # 
Data PartialGroupByKeyInstructionValueCombiningFn Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> PartialGroupByKeyInstructionValueCombiningFn -> c PartialGroupByKeyInstructionValueCombiningFn #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c PartialGroupByKeyInstructionValueCombiningFn #

toConstr :: PartialGroupByKeyInstructionValueCombiningFn -> Constr #

dataTypeOf :: PartialGroupByKeyInstructionValueCombiningFn -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c PartialGroupByKeyInstructionValueCombiningFn) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c PartialGroupByKeyInstructionValueCombiningFn) #

gmapT :: (forall b. Data b => b -> b) -> PartialGroupByKeyInstructionValueCombiningFn -> PartialGroupByKeyInstructionValueCombiningFn #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> PartialGroupByKeyInstructionValueCombiningFn -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> PartialGroupByKeyInstructionValueCombiningFn -> r #

gmapQ :: (forall d. Data d => d -> u) -> PartialGroupByKeyInstructionValueCombiningFn -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> PartialGroupByKeyInstructionValueCombiningFn -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> PartialGroupByKeyInstructionValueCombiningFn -> m PartialGroupByKeyInstructionValueCombiningFn #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> PartialGroupByKeyInstructionValueCombiningFn -> m PartialGroupByKeyInstructionValueCombiningFn #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> PartialGroupByKeyInstructionValueCombiningFn -> m PartialGroupByKeyInstructionValueCombiningFn #

Show PartialGroupByKeyInstructionValueCombiningFn Source # 
Generic PartialGroupByKeyInstructionValueCombiningFn Source # 
ToJSON PartialGroupByKeyInstructionValueCombiningFn Source # 
FromJSON PartialGroupByKeyInstructionValueCombiningFn Source # 
type Rep PartialGroupByKeyInstructionValueCombiningFn Source # 
type Rep PartialGroupByKeyInstructionValueCombiningFn = D1 (MetaData "PartialGroupByKeyInstructionValueCombiningFn" "Network.Google.Dataflow.Types.Product" "gogol-dataflow-0.1.0-Hia4fuX0B5YniTo71jkPP" True) (C1 (MetaCons "PartialGroupByKeyInstructionValueCombiningFn'" PrefixI True) (S1 (MetaSel (Just Symbol "_pgbkivcfAddtional") NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 (HashMap Text JSONValue))))

partialGroupByKeyInstructionValueCombiningFn Source #

Creates a value of PartialGroupByKeyInstructionValueCombiningFn with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

Job

data Job Source #

Defines a job to be run by the Dataflow service.

See: job smart constructor.

Instances

Eq Job Source # 

Methods

(==) :: Job -> Job -> Bool #

(/=) :: Job -> Job -> Bool #

Data Job Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> Job -> c Job #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c Job #

toConstr :: Job -> Constr #

dataTypeOf :: Job -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c Job) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c Job) #

gmapT :: (forall b. Data b => b -> b) -> Job -> Job #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> Job -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> Job -> r #

gmapQ :: (forall d. Data d => d -> u) -> Job -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> Job -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> Job -> m Job #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> Job -> m Job #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> Job -> m Job #

Show Job Source # 

Methods

showsPrec :: Int -> Job -> ShowS #

show :: Job -> String #

showList :: [Job] -> ShowS #

Generic Job Source # 

Associated Types

type Rep Job :: * -> * #

Methods

from :: Job -> Rep Job x #

to :: Rep Job x -> Job #

ToJSON Job Source # 
FromJSON Job Source # 
type Rep Job Source # 
type Rep Job = D1 (MetaData "Job" "Network.Google.Dataflow.Types.Product" "gogol-dataflow-0.1.0-Hia4fuX0B5YniTo71jkPP" False) (C1 (MetaCons "Job'" PrefixI True) ((:*:) ((:*:) ((:*:) ((:*:) (S1 (MetaSel (Just Symbol "_jRequestedState") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) (S1 (MetaSel (Just Symbol "_jEnvironment") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Environment)))) ((:*:) (S1 (MetaSel (Just Symbol "_jClientRequestId") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) (S1 (MetaSel (Just Symbol "_jCurrentState") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))))) ((:*:) ((:*:) (S1 (MetaSel (Just Symbol "_jReplacedByJobId") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) (S1 (MetaSel (Just Symbol "_jTempFiles") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe [Text])))) ((:*:) (S1 (MetaSel (Just Symbol "_jSteps") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe [Step]))) (S1 (MetaSel (Just Symbol "_jExecutionInfo") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe JobExecutionInfo)))))) ((:*:) ((:*:) ((:*:) (S1 (MetaSel (Just Symbol "_jName") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) (S1 (MetaSel (Just Symbol "_jTransformNameMApping") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe JobTransformNameMApping)))) ((:*:) (S1 (MetaSel (Just Symbol "_jId") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) (S1 (MetaSel (Just Symbol "_jProjectId") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))))) ((:*:) ((:*:) (S1 (MetaSel (Just Symbol "_jType") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) (S1 (MetaSel (Just Symbol "_jCurrentStateTime") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)))) ((:*:) (S1 (MetaSel (Just Symbol "_jReplaceJobId") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) (S1 (MetaSel (Just Symbol "_jCreateTime") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))))))))

job :: Job Source #

Creates a value of Job with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

jRequestedState :: Lens' Job (Maybe Text) Source #

The job's requested state. UpdateJob may be used to switch between the JOB_STATE_STOPPED and JOB_STATE_RUNNING states, by setting requested_state. UpdateJob may also be used to directly set a job's requested state to JOB_STATE_CANCELLED or JOB_STATE_DONE, irrevocably terminating the job if it has not already reached a terminal state.

jEnvironment :: Lens' Job (Maybe Environment) Source #

Environment for the job.

jClientRequestId :: Lens' Job (Maybe Text) Source #

Client's unique identifier of the job, re-used by SDK across retried attempts. If this field is set, the service will ensure its uniqueness. That is, the request to create a job will fail if the service has knowledge of a previously submitted job with the same client's id and job name. The caller may, for example, use this field to ensure idempotence of job creation across retried attempts to create a job. By default, the field is empty and, in that case, the service ignores it.

jCurrentState :: Lens' Job (Maybe Text) Source #

The current state of the job. Jobs are created in the JOB_STATE_STOPPED state unless otherwise specified. A job in the JOB_STATE_RUNNING state may asynchronously enter a terminal state. Once a job has reached a terminal state, no further state updates may be made. This field may be mutated by the Dataflow service; callers cannot mutate it.

jReplacedByJobId :: Lens' Job (Maybe Text) Source #

If another job is an update of this job (and thus, this job is in JOB_STATE_UPDATED), this field will contain the ID of that job.

jTempFiles :: Lens' Job [Text] Source #

A set of files the system should be aware of that are used for temporary storage. These temporary files will be removed on job completion. No duplicates are allowed. No file patterns are supported. The supported files are: Google Cloud Storage: storage.googleapis.com/{bucket}/{object} bucket.storage.googleapis.com/{object}

jSteps :: Lens' Job [Step] Source #

The top-level steps that constitute the entire job.

jExecutionInfo :: Lens' Job (Maybe JobExecutionInfo) Source #

Information about how the Dataflow service will actually run the job.

jName :: Lens' Job (Maybe Text) Source #

The user-specified Dataflow job name. Only one Job with a given name may exist in a project at any given time. If a caller attempts to create a Job with the same name as an already-existing Job, the attempt will return the existing Job. The name must match the regular expression a-z?

jTransformNameMApping :: Lens' Job (Maybe JobTransformNameMApping) Source #

Map of transform name prefixes of the job to be replaced to the corresponding name prefixes of the new job.

jId :: Lens' Job (Maybe Text) Source #

The unique ID of this job. This field is set by the Dataflow service when the Job is created, and is immutable for the life of the Job.

jProjectId :: Lens' Job (Maybe Text) Source #

The project which owns the job.

jType :: Lens' Job (Maybe Text) Source #

The type of dataflow job.

jCurrentStateTime :: Lens' Job (Maybe Text) Source #

The timestamp associated with the current state.

jReplaceJobId :: Lens' Job (Maybe Text) Source #

If this job is an update of an existing job, this field will be the ID of the job it replaced. When sending a CreateJobRequest, you can update a job by specifying it here. The job named here will be stopped, and its intermediate state transferred to this job.

jCreateTime :: Lens' Job (Maybe Text) Source #

Timestamp when job was initially created. Immutable, set by the Dataflow service.

ReadInstruction

data ReadInstruction Source #

An instruction that reads records. Takes no inputs, produces one output.

See: readInstruction smart constructor.

Instances

Eq ReadInstruction Source # 
Data ReadInstruction Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> ReadInstruction -> c ReadInstruction #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c ReadInstruction #

toConstr :: ReadInstruction -> Constr #

dataTypeOf :: ReadInstruction -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c ReadInstruction) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c ReadInstruction) #

gmapT :: (forall b. Data b => b -> b) -> ReadInstruction -> ReadInstruction #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> ReadInstruction -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> ReadInstruction -> r #

gmapQ :: (forall d. Data d => d -> u) -> ReadInstruction -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> ReadInstruction -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> ReadInstruction -> m ReadInstruction #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> ReadInstruction -> m ReadInstruction #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> ReadInstruction -> m ReadInstruction #

Show ReadInstruction Source # 
Generic ReadInstruction Source # 
ToJSON ReadInstruction Source # 
FromJSON ReadInstruction Source # 
type Rep ReadInstruction Source # 
type Rep ReadInstruction = D1 (MetaData "ReadInstruction" "Network.Google.Dataflow.Types.Product" "gogol-dataflow-0.1.0-Hia4fuX0B5YniTo71jkPP" True) (C1 (MetaCons "ReadInstruction'" PrefixI True) (S1 (MetaSel (Just Symbol "_riSource") NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 (Maybe Source))))

readInstruction :: ReadInstruction Source #

Creates a value of ReadInstruction with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

riSource :: Lens' ReadInstruction (Maybe Source) Source #

The source to read from.

ApproximateReportedProgress

data ApproximateReportedProgress Source #

A progress measurement of a WorkItem by a worker.

See: approximateReportedProgress smart constructor.

Instances

Eq ApproximateReportedProgress Source # 
Data ApproximateReportedProgress Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> ApproximateReportedProgress -> c ApproximateReportedProgress #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c ApproximateReportedProgress #

toConstr :: ApproximateReportedProgress -> Constr #

dataTypeOf :: ApproximateReportedProgress -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c ApproximateReportedProgress) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c ApproximateReportedProgress) #

gmapT :: (forall b. Data b => b -> b) -> ApproximateReportedProgress -> ApproximateReportedProgress #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> ApproximateReportedProgress -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> ApproximateReportedProgress -> r #

gmapQ :: (forall d. Data d => d -> u) -> ApproximateReportedProgress -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> ApproximateReportedProgress -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> ApproximateReportedProgress -> m ApproximateReportedProgress #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> ApproximateReportedProgress -> m ApproximateReportedProgress #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> ApproximateReportedProgress -> m ApproximateReportedProgress #

Show ApproximateReportedProgress Source # 
Generic ApproximateReportedProgress Source # 
ToJSON ApproximateReportedProgress Source # 
FromJSON ApproximateReportedProgress Source # 
type Rep ApproximateReportedProgress Source # 
type Rep ApproximateReportedProgress = D1 (MetaData "ApproximateReportedProgress" "Network.Google.Dataflow.Types.Product" "gogol-dataflow-0.1.0-Hia4fuX0B5YniTo71jkPP" False) (C1 (MetaCons "ApproximateReportedProgress'" PrefixI True) ((:*:) ((:*:) (S1 (MetaSel (Just Symbol "_arpFractionConsumed") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe (Textual Double)))) (S1 (MetaSel (Just Symbol "_arpConsumedParallelism") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe ReportedParallelism)))) ((:*:) (S1 (MetaSel (Just Symbol "_arpRemainingParallelism") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe ReportedParallelism))) (S1 (MetaSel (Just Symbol "_arpPosition") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Position))))))

approximateReportedProgress :: ApproximateReportedProgress Source #

Creates a value of ApproximateReportedProgress with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

arpFractionConsumed :: Lens' ApproximateReportedProgress (Maybe Double) Source #

Completion as fraction of the input consumed, from 0.0 (beginning, nothing consumed), to 1.0 (end of the input, entire input consumed).

arpConsumedParallelism :: Lens' ApproximateReportedProgress (Maybe ReportedParallelism) Source #

Total amount of parallelism in the portion of input of this work item that has already been consumed. In the first two examples above (see remaining_parallelism), the value should be 30 or 3 respectively. The sum of remaining_parallelism and consumed_parallelism should equal the total amount of parallelism in this work item. If specified, must be finite.

arpRemainingParallelism :: Lens' ApproximateReportedProgress (Maybe ReportedParallelism) Source #

Total amount of parallelism in the input of this WorkItem that has not been consumed yet (i.e. can be delegated to a new WorkItem via dynamic splitting). "Amount of parallelism" refers to how many non-empty parts of the input can be read in parallel. This does not necessarily equal number of records. An input that can be read in parallel down to the individual records is called "perfectly splittable". An example of non-perfectly parallelizable input is a block-compressed file format where a block of records has to be read as a whole, but different blocks can be read in parallel. Examples: * If we have read 30 records out of 50 in a perfectly splittable 50-record input, this value should be 20. * If we are reading through block 3 in a block-compressed file consisting of 5 blocks, this value should be 2 (since blocks 4 and 5 can be processed in parallel by new work items via dynamic splitting). * If we are reading through the last block in a block-compressed file, or reading or processing the last record in a perfectly splittable input, this value should be 0, because the remainder of the work item cannot be further split.

arpPosition :: Lens' ApproximateReportedProgress (Maybe Position) Source #

A Position within the work to represent a progress.

SinkSpec

data SinkSpec Source #

The sink to write to, plus its parameters.

See: sinkSpec smart constructor.

Instances

Eq SinkSpec Source # 
Data SinkSpec Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> SinkSpec -> c SinkSpec #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c SinkSpec #

toConstr :: SinkSpec -> Constr #

dataTypeOf :: SinkSpec -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c SinkSpec) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c SinkSpec) #

gmapT :: (forall b. Data b => b -> b) -> SinkSpec -> SinkSpec #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> SinkSpec -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> SinkSpec -> r #

gmapQ :: (forall d. Data d => d -> u) -> SinkSpec -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> SinkSpec -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> SinkSpec -> m SinkSpec #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> SinkSpec -> m SinkSpec #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> SinkSpec -> m SinkSpec #

Show SinkSpec Source # 
Generic SinkSpec Source # 

Associated Types

type Rep SinkSpec :: * -> * #

Methods

from :: SinkSpec -> Rep SinkSpec x #

to :: Rep SinkSpec x -> SinkSpec #

ToJSON SinkSpec Source # 
FromJSON SinkSpec Source # 
type Rep SinkSpec Source # 
type Rep SinkSpec = D1 (MetaData "SinkSpec" "Network.Google.Dataflow.Types.Product" "gogol-dataflow-0.1.0-Hia4fuX0B5YniTo71jkPP" True) (C1 (MetaCons "SinkSpec'" PrefixI True) (S1 (MetaSel (Just Symbol "_sAddtional") NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 (HashMap Text JSONValue))))

sinkSpec Source #

Creates a value of SinkSpec with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

sAddtional :: Lens' SinkSpec (HashMap Text JSONValue) Source #

Properties of the object.

WorkerPool

data WorkerPool Source #

Describes one particular pool of Dataflow workers to be instantiated by the Dataflow service in order to perform the computations required by a job. Note that a workflow job may use multiple pools, in order to match the various computational requirements of the various stages of the job.

See: workerPool smart constructor.

Instances

Eq WorkerPool Source # 
Data WorkerPool Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> WorkerPool -> c WorkerPool #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c WorkerPool #

toConstr :: WorkerPool -> Constr #

dataTypeOf :: WorkerPool -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c WorkerPool) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c WorkerPool) #

gmapT :: (forall b. Data b => b -> b) -> WorkerPool -> WorkerPool #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> WorkerPool -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> WorkerPool -> r #

gmapQ :: (forall d. Data d => d -> u) -> WorkerPool -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> WorkerPool -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> WorkerPool -> m WorkerPool #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> WorkerPool -> m WorkerPool #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> WorkerPool -> m WorkerPool #

Show WorkerPool Source # 
Generic WorkerPool Source # 

Associated Types

type Rep WorkerPool :: * -> * #

ToJSON WorkerPool Source # 
FromJSON WorkerPool Source # 
type Rep WorkerPool Source # 
type Rep WorkerPool = D1 (MetaData "WorkerPool" "Network.Google.Dataflow.Types.Product" "gogol-dataflow-0.1.0-Hia4fuX0B5YniTo71jkPP" False) (C1 (MetaCons "WorkerPool'" PrefixI True) ((:*:) ((:*:) ((:*:) ((:*:) (S1 (MetaSel (Just Symbol "_wpAutoscalingSettings") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe AutoscalingSettings))) (S1 (MetaSel (Just Symbol "_wpNumThreadsPerWorker") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe (Textual Int32))))) ((:*:) (S1 (MetaSel (Just Symbol "_wpDiskSizeGb") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe (Textual Int32)))) ((:*:) (S1 (MetaSel (Just Symbol "_wpKind") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) (S1 (MetaSel (Just Symbol "_wpTaskrunnerSettings") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe TaskRunnerSettings)))))) ((:*:) ((:*:) (S1 (MetaSel (Just Symbol "_wpNumWorkers") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe (Textual Int32)))) (S1 (MetaSel (Just Symbol "_wpNetwork") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)))) ((:*:) (S1 (MetaSel (Just Symbol "_wpZone") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) ((:*:) (S1 (MetaSel (Just Symbol "_wpPackages") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe [Package]))) (S1 (MetaSel (Just Symbol "_wpOnHostMaintenance") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))))))) ((:*:) ((:*:) ((:*:) (S1 (MetaSel (Just Symbol "_wpDiskSourceImage") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) (S1 (MetaSel (Just Symbol "_wpSubnetwork") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)))) ((:*:) (S1 (MetaSel (Just Symbol "_wpMachineType") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) ((:*:) (S1 (MetaSel (Just Symbol "_wpMetadata") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe WorkerPoolMetadata))) (S1 (MetaSel (Just Symbol "_wpDiskType") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)))))) ((:*:) ((:*:) (S1 (MetaSel (Just Symbol "_wpTeardownPolicy") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) (S1 (MetaSel (Just Symbol "_wpDefaultPackageSet") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)))) ((:*:) (S1 (MetaSel (Just Symbol "_wpPoolArgs") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe WorkerPoolPoolArgs))) ((:*:) (S1 (MetaSel (Just Symbol "_wpWorkerHarnessContainerImage") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) (S1 (MetaSel (Just Symbol "_wpDataDisks") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe [Disk])))))))))

wpAutoscalingSettings :: Lens' WorkerPool (Maybe AutoscalingSettings) Source #

Settings for autoscaling of this WorkerPool.

wpNumThreadsPerWorker :: Lens' WorkerPool (Maybe Int32) Source #

The number of threads per worker harness. If empty or unspecified, the service will choose a number of threads (according to the number of cores on the selected machine type for batch, or 1 by convention for streaming).

wpDiskSizeGb :: Lens' WorkerPool (Maybe Int32) Source #

Size of root disk for VMs, in GB. If zero or unspecified, the service will attempt to choose a reasonable default.

wpKind :: Lens' WorkerPool (Maybe Text) Source #

The kind of the worker pool; currently only 'harness' and 'shuffle' are supported.

wpTaskrunnerSettings :: Lens' WorkerPool (Maybe TaskRunnerSettings) Source #

Settings passed through to Google Compute Engine workers when using the standard Dataflow task runner. Users should ignore this field.

wpNumWorkers :: Lens' WorkerPool (Maybe Int32) Source #

Number of Google Compute Engine workers in this pool needed to execute the job. If zero or unspecified, the service will attempt to choose a reasonable default.

wpNetwork :: Lens' WorkerPool (Maybe Text) Source #

Network to which VMs will be assigned. If empty or unspecified, the service will use the network "default".

wpZone :: Lens' WorkerPool (Maybe Text) Source #

Zone to run the worker pools in. If empty or unspecified, the service will attempt to choose a reasonable default.

wpPackages :: Lens' WorkerPool [Package] Source #

Packages to be installed on workers.

wpOnHostMaintenance :: Lens' WorkerPool (Maybe Text) Source #

The action to take on host maintenance, as defined by the Google Compute Engine API.

wpDiskSourceImage :: Lens' WorkerPool (Maybe Text) Source #

Fully qualified source image for disks.

wpSubnetwork :: Lens' WorkerPool (Maybe Text) Source #

Subnetwork to which VMs will be assigned, if desired. Expected to be of the form "zones/ZONE/subnetworks/SUBNETWORK".

wpMachineType :: Lens' WorkerPool (Maybe Text) Source #

Machine type (e.g. "n1-standard-1"). If empty or unspecified, the service will attempt to choose a reasonable default.

wpMetadata :: Lens' WorkerPool (Maybe WorkerPoolMetadata) Source #

Metadata to set on the Google Compute Engine VMs.

wpDiskType :: Lens' WorkerPool (Maybe Text) Source #

Type of root disk for VMs. If empty or unspecified, the service will attempt to choose a reasonable default.

wpTeardownPolicy :: Lens' WorkerPool (Maybe Text) Source #

Sets the policy for determining when to turndown worker pool. Allowed values are: TEARDOWN_ALWAYS, TEARDOWN_ON_SUCCESS, and TEARDOWN_NEVER. TEARDOWN_ALWAYS means workers are always torn down regardless of whether the job succeeds. TEARDOWN_ON_SUCCESS means workers are torn down if the job succeeds. TEARDOWN_NEVER means the workers are never torn down. If the workers are not torn down by the service, they will continue to run and use Google Compute Engine VM resources in the user's project until they are explicitly terminated by the user. Because of this, Google recommends using the TEARDOWN_ALWAYS policy except for small, manually supervised test jobs. If unknown or unspecified, the service will attempt to choose a reasonable default.

wpDefaultPackageSet :: Lens' WorkerPool (Maybe Text) Source #

The default package set to install. This allows the service to select a default set of packages which are useful to worker harnesses written in a particular language.

wpPoolArgs :: Lens' WorkerPool (Maybe WorkerPoolPoolArgs) Source #

Extra arguments for this worker pool.

wpWorkerHarnessContainerImage :: Lens' WorkerPool (Maybe Text) Source #

Docker container image that executes Dataflow worker harness, residing in Google Container Registry. Required.

wpDataDisks :: Lens' WorkerPool [Disk] Source #

Data disks that are used by a VM in this workflow.

Step

data Step Source #

Defines a particular step within a Dataflow job. A job consists of multiple steps, each of which performs some specific operation as part of the overall job. Data is typically passed from one step to another as part of the job. Here's an example of a sequence of steps which together implement a Map-Reduce job: * Read a collection of data from some source, parsing the collection's elements. * Validate the elements. * Apply a user-defined function to map each element to some value and extract an element-specific key value. * Group elements with the same key into a single element with that key, transforming a multiply-keyed collection into a uniquely-keyed collection. * Write the elements out to some data sink. (Note that the Dataflow service may be used to run many different types of jobs, not just Map-Reduce).

See: step smart constructor.

Instances

Eq Step Source # 

Methods

(==) :: Step -> Step -> Bool #

(/=) :: Step -> Step -> Bool #

Data Step Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> Step -> c Step #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c Step #

toConstr :: Step -> Constr #

dataTypeOf :: Step -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c Step) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c Step) #

gmapT :: (forall b. Data b => b -> b) -> Step -> Step #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> Step -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> Step -> r #

gmapQ :: (forall d. Data d => d -> u) -> Step -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> Step -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> Step -> m Step #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> Step -> m Step #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> Step -> m Step #

Show Step Source # 

Methods

showsPrec :: Int -> Step -> ShowS #

show :: Step -> String #

showList :: [Step] -> ShowS #

Generic Step Source # 

Associated Types

type Rep Step :: * -> * #

Methods

from :: Step -> Rep Step x #

to :: Rep Step x -> Step #

ToJSON Step Source # 
FromJSON Step Source # 
type Rep Step Source # 
type Rep Step = D1 (MetaData "Step" "Network.Google.Dataflow.Types.Product" "gogol-dataflow-0.1.0-Hia4fuX0B5YniTo71jkPP" False) (C1 (MetaCons "Step'" PrefixI True) ((:*:) (S1 (MetaSel (Just Symbol "_sKind") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) ((:*:) (S1 (MetaSel (Just Symbol "_sName") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) (S1 (MetaSel (Just Symbol "_sProperties") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe StepProperties))))))

step :: Step Source #

Creates a value of Step with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

sKind :: Lens' Step (Maybe Text) Source #

The kind of step in the dataflow Job.

sName :: Lens' Step (Maybe Text) Source #

Name identifying the step. This must be unique for each step with respect to all other steps in the dataflow Job.

sProperties :: Lens' Step (Maybe StepProperties) Source #

Named properties associated with the step. Each kind of predefined step has its own required set of properties.

Package

data Package Source #

Packages that need to be installed in order for a worker to run the steps of the Dataflow job which will be assigned to its worker pool. This is the mechanism by which the SDK causes code to be loaded onto the workers. For example, the Dataflow Java SDK might use this to install jars containing the user's code and all of the various dependencies (libraries, data files, etc) required in order for that code to run.

See: package smart constructor.

Instances

Eq Package Source # 

Methods

(==) :: Package -> Package -> Bool #

(/=) :: Package -> Package -> Bool #

Data Package Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> Package -> c Package #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c Package #

toConstr :: Package -> Constr #

dataTypeOf :: Package -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c Package) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c Package) #

gmapT :: (forall b. Data b => b -> b) -> Package -> Package #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> Package -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> Package -> r #

gmapQ :: (forall d. Data d => d -> u) -> Package -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> Package -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> Package -> m Package #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> Package -> m Package #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> Package -> m Package #

Show Package Source # 
Generic Package Source # 

Associated Types

type Rep Package :: * -> * #

Methods

from :: Package -> Rep Package x #

to :: Rep Package x -> Package #

ToJSON Package Source # 
FromJSON Package Source # 
type Rep Package Source # 
type Rep Package = D1 (MetaData "Package" "Network.Google.Dataflow.Types.Product" "gogol-dataflow-0.1.0-Hia4fuX0B5YniTo71jkPP" False) (C1 (MetaCons "Package'" PrefixI True) ((:*:) (S1 (MetaSel (Just Symbol "_pLocation") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) (S1 (MetaSel (Just Symbol "_pName") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)))))

package :: Package Source #

Creates a value of Package with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

pLocation :: Lens' Package (Maybe Text) Source #

The resource to read the package from. The supported resource type is: Google Cloud Storage: storage.googleapis.com/{bucket} bucket.storage.googleapis.com/

pName :: Lens' Package (Maybe Text) Source #

The name of the package.

WorkerMessageCodeParameters

data WorkerMessageCodeParameters Source #

Parameters contains specific information about the code. This is a struct to allow parameters of different types. Examples: 1. For a "HARNESS_STARTED" message parameters might provide the name of the worker and additional data like timing information. 2. For a "GCS_DOWNLOAD_ERROR" parameters might contain fields listing the GCS objects being downloaded and fields containing errors. In general complex data structures should be avoided. If a worker needs to send a specific and complicated data structure then please consider defining a new proto and adding it to the data oneof in WorkerMessageResponse. Conventions: Parameters should only be used for information that isn't typically passed as a label. hostname and other worker identifiers should almost always be passed as labels since they will be included on most messages.

See: workerMessageCodeParameters smart constructor.

Instances

Eq WorkerMessageCodeParameters Source # 
Data WorkerMessageCodeParameters Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> WorkerMessageCodeParameters -> c WorkerMessageCodeParameters #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c WorkerMessageCodeParameters #

toConstr :: WorkerMessageCodeParameters -> Constr #

dataTypeOf :: WorkerMessageCodeParameters -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c WorkerMessageCodeParameters) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c WorkerMessageCodeParameters) #

gmapT :: (forall b. Data b => b -> b) -> WorkerMessageCodeParameters -> WorkerMessageCodeParameters #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> WorkerMessageCodeParameters -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> WorkerMessageCodeParameters -> r #

gmapQ :: (forall d. Data d => d -> u) -> WorkerMessageCodeParameters -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> WorkerMessageCodeParameters -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> WorkerMessageCodeParameters -> m WorkerMessageCodeParameters #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> WorkerMessageCodeParameters -> m WorkerMessageCodeParameters #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> WorkerMessageCodeParameters -> m WorkerMessageCodeParameters #

Show WorkerMessageCodeParameters Source # 
Generic WorkerMessageCodeParameters Source # 
ToJSON WorkerMessageCodeParameters Source # 
FromJSON WorkerMessageCodeParameters Source # 
type Rep WorkerMessageCodeParameters Source # 
type Rep WorkerMessageCodeParameters = D1 (MetaData "WorkerMessageCodeParameters" "Network.Google.Dataflow.Types.Product" "gogol-dataflow-0.1.0-Hia4fuX0B5YniTo71jkPP" True) (C1 (MetaCons "WorkerMessageCodeParameters'" PrefixI True) (S1 (MetaSel (Just Symbol "_wmcpAddtional") NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 (HashMap Text JSONValue))))

workerMessageCodeParameters Source #

Creates a value of WorkerMessageCodeParameters with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

DynamicSourceSplit

data DynamicSourceSplit Source #

When a task splits using WorkItemStatus.dynamic_source_split, this message describes the two parts of the split relative to the description of the current task's input.

See: dynamicSourceSplit smart constructor.

Instances

Eq DynamicSourceSplit Source # 
Data DynamicSourceSplit Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> DynamicSourceSplit -> c DynamicSourceSplit #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c DynamicSourceSplit #

toConstr :: DynamicSourceSplit -> Constr #

dataTypeOf :: DynamicSourceSplit -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c DynamicSourceSplit) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c DynamicSourceSplit) #

gmapT :: (forall b. Data b => b -> b) -> DynamicSourceSplit -> DynamicSourceSplit #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> DynamicSourceSplit -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> DynamicSourceSplit -> r #

gmapQ :: (forall d. Data d => d -> u) -> DynamicSourceSplit -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> DynamicSourceSplit -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> DynamicSourceSplit -> m DynamicSourceSplit #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> DynamicSourceSplit -> m DynamicSourceSplit #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> DynamicSourceSplit -> m DynamicSourceSplit #

Show DynamicSourceSplit Source # 
Generic DynamicSourceSplit Source # 
ToJSON DynamicSourceSplit Source # 
FromJSON DynamicSourceSplit Source # 
type Rep DynamicSourceSplit Source # 
type Rep DynamicSourceSplit = D1 (MetaData "DynamicSourceSplit" "Network.Google.Dataflow.Types.Product" "gogol-dataflow-0.1.0-Hia4fuX0B5YniTo71jkPP" False) (C1 (MetaCons "DynamicSourceSplit'" PrefixI True) ((:*:) (S1 (MetaSel (Just Symbol "_dssResidual") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe DerivedSource))) (S1 (MetaSel (Just Symbol "_dssPrimary") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe DerivedSource)))))

dynamicSourceSplit :: DynamicSourceSplit Source #

Creates a value of DynamicSourceSplit with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

dssResidual :: Lens' DynamicSourceSplit (Maybe DerivedSource) Source #

Residual part (returned to the pool of work). Specified relative to the previously-current source.

dssPrimary :: Lens' DynamicSourceSplit (Maybe DerivedSource) Source #

Primary part (continued to be processed by worker). Specified relative to the previously-current source. Becomes current.

ReportWorkItemStatusResponse

data ReportWorkItemStatusResponse Source #

Response from a request to report the status of WorkItems.

See: reportWorkItemStatusResponse smart constructor.

Instances

Eq ReportWorkItemStatusResponse Source # 
Data ReportWorkItemStatusResponse Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> ReportWorkItemStatusResponse -> c ReportWorkItemStatusResponse #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c ReportWorkItemStatusResponse #

toConstr :: ReportWorkItemStatusResponse -> Constr #

dataTypeOf :: ReportWorkItemStatusResponse -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c ReportWorkItemStatusResponse) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c ReportWorkItemStatusResponse) #

gmapT :: (forall b. Data b => b -> b) -> ReportWorkItemStatusResponse -> ReportWorkItemStatusResponse #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> ReportWorkItemStatusResponse -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> ReportWorkItemStatusResponse -> r #

gmapQ :: (forall d. Data d => d -> u) -> ReportWorkItemStatusResponse -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> ReportWorkItemStatusResponse -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> ReportWorkItemStatusResponse -> m ReportWorkItemStatusResponse #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> ReportWorkItemStatusResponse -> m ReportWorkItemStatusResponse #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> ReportWorkItemStatusResponse -> m ReportWorkItemStatusResponse #

Show ReportWorkItemStatusResponse Source # 
Generic ReportWorkItemStatusResponse Source # 
ToJSON ReportWorkItemStatusResponse Source # 
FromJSON ReportWorkItemStatusResponse Source # 
type Rep ReportWorkItemStatusResponse Source # 
type Rep ReportWorkItemStatusResponse = D1 (MetaData "ReportWorkItemStatusResponse" "Network.Google.Dataflow.Types.Product" "gogol-dataflow-0.1.0-Hia4fuX0B5YniTo71jkPP" True) (C1 (MetaCons "ReportWorkItemStatusResponse'" PrefixI True) (S1 (MetaSel (Just Symbol "_rwisrWorkItemServiceStates") NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 (Maybe [WorkItemServiceState]))))

reportWorkItemStatusResponse :: ReportWorkItemStatusResponse Source #

Creates a value of ReportWorkItemStatusResponse with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

rwisrWorkItemServiceStates :: Lens' ReportWorkItemStatusResponse [WorkItemServiceState] Source #

A set of messages indicating the service-side state for each WorkItem whose status was reported, in the same order as the WorkItemStatus messages in the ReportWorkItemStatusRequest which resulting in this response.

SourceFork

data SourceFork Source #

DEPRECATED in favor of DynamicSourceSplit.

See: sourceFork smart constructor.

Instances

Eq SourceFork Source # 
Data SourceFork Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> SourceFork -> c SourceFork #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c SourceFork #

toConstr :: SourceFork -> Constr #

dataTypeOf :: SourceFork -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c SourceFork) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c SourceFork) #

gmapT :: (forall b. Data b => b -> b) -> SourceFork -> SourceFork #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> SourceFork -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> SourceFork -> r #

gmapQ :: (forall d. Data d => d -> u) -> SourceFork -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> SourceFork -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> SourceFork -> m SourceFork #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> SourceFork -> m SourceFork #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> SourceFork -> m SourceFork #

Show SourceFork Source # 
Generic SourceFork Source # 

Associated Types

type Rep SourceFork :: * -> * #

ToJSON SourceFork Source # 
FromJSON SourceFork Source # 
type Rep SourceFork Source # 
type Rep SourceFork = D1 (MetaData "SourceFork" "Network.Google.Dataflow.Types.Product" "gogol-dataflow-0.1.0-Hia4fuX0B5YniTo71jkPP" False) (C1 (MetaCons "SourceFork'" PrefixI True) ((:*:) ((:*:) (S1 (MetaSel (Just Symbol "_sfResidual") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe SourceSplitShard))) (S1 (MetaSel (Just Symbol "_sfPrimarySource") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe DerivedSource)))) ((:*:) (S1 (MetaSel (Just Symbol "_sfPrimary") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe SourceSplitShard))) (S1 (MetaSel (Just Symbol "_sfResidualSource") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe DerivedSource))))))

sourceFork :: SourceFork Source #

Creates a value of SourceFork with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

StreamingComputationRanges

data StreamingComputationRanges Source #

Describes full or partial data disk assignment information of the computation ranges.

See: streamingComputationRanges smart constructor.

Instances

Eq StreamingComputationRanges Source # 
Data StreamingComputationRanges Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> StreamingComputationRanges -> c StreamingComputationRanges #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c StreamingComputationRanges #

toConstr :: StreamingComputationRanges -> Constr #

dataTypeOf :: StreamingComputationRanges -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c StreamingComputationRanges) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c StreamingComputationRanges) #

gmapT :: (forall b. Data b => b -> b) -> StreamingComputationRanges -> StreamingComputationRanges #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> StreamingComputationRanges -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> StreamingComputationRanges -> r #

gmapQ :: (forall d. Data d => d -> u) -> StreamingComputationRanges -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> StreamingComputationRanges -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> StreamingComputationRanges -> m StreamingComputationRanges #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> StreamingComputationRanges -> m StreamingComputationRanges #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> StreamingComputationRanges -> m StreamingComputationRanges #

Show StreamingComputationRanges Source # 
Generic StreamingComputationRanges Source # 
ToJSON StreamingComputationRanges Source # 
FromJSON StreamingComputationRanges Source # 
type Rep StreamingComputationRanges Source # 
type Rep StreamingComputationRanges = D1 (MetaData "StreamingComputationRanges" "Network.Google.Dataflow.Types.Product" "gogol-dataflow-0.1.0-Hia4fuX0B5YniTo71jkPP" False) (C1 (MetaCons "StreamingComputationRanges'" PrefixI True) ((:*:) (S1 (MetaSel (Just Symbol "_scrRangeAssignments") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe [KeyRangeDataDiskAssignment]))) (S1 (MetaSel (Just Symbol "_scrComputationId") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)))))

streamingComputationRanges :: StreamingComputationRanges Source #

Creates a value of StreamingComputationRanges with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

scrRangeAssignments :: Lens' StreamingComputationRanges [KeyRangeDataDiskAssignment] Source #

Data disk assignments for ranges from this computation.

ListJobsResponse

data ListJobsResponse Source #

Response to a request to list Dataflow jobs. This may be a partial response, depending on the page size in the ListJobsRequest.

See: listJobsResponse smart constructor.

Instances

Eq ListJobsResponse Source # 
Data ListJobsResponse Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> ListJobsResponse -> c ListJobsResponse #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c ListJobsResponse #

toConstr :: ListJobsResponse -> Constr #

dataTypeOf :: ListJobsResponse -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c ListJobsResponse) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c ListJobsResponse) #

gmapT :: (forall b. Data b => b -> b) -> ListJobsResponse -> ListJobsResponse #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> ListJobsResponse -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> ListJobsResponse -> r #

gmapQ :: (forall d. Data d => d -> u) -> ListJobsResponse -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> ListJobsResponse -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> ListJobsResponse -> m ListJobsResponse #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> ListJobsResponse -> m ListJobsResponse #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> ListJobsResponse -> m ListJobsResponse #

Show ListJobsResponse Source # 
Generic ListJobsResponse Source # 
ToJSON ListJobsResponse Source # 
FromJSON ListJobsResponse Source # 
type Rep ListJobsResponse Source # 
type Rep ListJobsResponse = D1 (MetaData "ListJobsResponse" "Network.Google.Dataflow.Types.Product" "gogol-dataflow-0.1.0-Hia4fuX0B5YniTo71jkPP" False) (C1 (MetaCons "ListJobsResponse'" PrefixI True) ((:*:) (S1 (MetaSel (Just Symbol "_ljrNextPageToken") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) (S1 (MetaSel (Just Symbol "_ljrJobs") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe [Job])))))

listJobsResponse :: ListJobsResponse Source #

Creates a value of ListJobsResponse with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

ljrNextPageToken :: Lens' ListJobsResponse (Maybe Text) Source #

Set if there may be more results than fit in this response.

ljrJobs :: Lens' ListJobsResponse [Job] Source #

A subset of the requested job information.

Source

data Source Source #

A source that records can be read and decoded from.

See: source smart constructor.

Instances

Eq Source Source # 

Methods

(==) :: Source -> Source -> Bool #

(/=) :: Source -> Source -> Bool #

Data Source Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> Source -> c Source #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c Source #

toConstr :: Source -> Constr #

dataTypeOf :: Source -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c Source) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c Source) #

gmapT :: (forall b. Data b => b -> b) -> Source -> Source #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> Source -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> Source -> r #

gmapQ :: (forall d. Data d => d -> u) -> Source -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> Source -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> Source -> m Source #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> Source -> m Source #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> Source -> m Source #

Show Source Source # 
Generic Source Source # 

Associated Types

type Rep Source :: * -> * #

Methods

from :: Source -> Rep Source x #

to :: Rep Source x -> Source #

ToJSON Source Source # 
FromJSON Source Source # 
type Rep Source Source # 

source :: Source Source #

Creates a value of Source with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

souDoesNotNeedSplitting :: Lens' Source (Maybe Bool) Source #

Setting this value to true hints to the framework that the source doesn't need splitting, and using SourceSplitRequest on it would yield SOURCE_SPLIT_OUTCOME_USE_CURRENT. E.g. a file splitter may set this to true when splitting a single file into a set of byte ranges of appropriate size, and set this to false when splitting a filepattern into individual files. However, for efficiency, a file splitter may decide to produce file subranges directly from the filepattern to avoid a splitting round-trip. See SourceSplitRequest for an overview of the splitting process. This field is meaningful only in the Source objects populated by the user (e.g. when filling in a DerivedSource). Source objects supplied by the framework to the user don't have this field populated.

souBaseSpecs :: Lens' Source [SourceBaseSpecsItem] Source #

While splitting, sources may specify the produced bundles as differences against another source, in order to save backend-side memory and allow bigger jobs. For details, see SourceSplitRequest. To support this use case, the full set of parameters of the source is logically obtained by taking the latest explicitly specified value of each parameter in the order: base_specs (later items win), spec (overrides anything in base_specs).

souCodec :: Lens' Source (Maybe SourceCodec) Source #

The codec to use to decode data read from the source.

souSpec :: Lens' Source (Maybe SourceSpec) Source #

The source to read from, plus its parameters.

souMetadata :: Lens' Source (Maybe SourceMetadata) Source #

Optionally, metadata for this source can be supplied right away, avoiding a SourceGetMetadataOperation roundtrip (see SourceOperationRequest). This field is meaningful only in the Source objects populated by the user (e.g. when filling in a DerivedSource). Source objects supplied by the framework to the user don't have this field populated.

ApproximateProgress

data ApproximateProgress Source #

Obsolete in favor of ApproximateReportedProgress and ApproximateSplitRequest.

See: approximateProgress smart constructor.

Instances

Eq ApproximateProgress Source # 
Data ApproximateProgress Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> ApproximateProgress -> c ApproximateProgress #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c ApproximateProgress #

toConstr :: ApproximateProgress -> Constr #

dataTypeOf :: ApproximateProgress -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c ApproximateProgress) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c ApproximateProgress) #

gmapT :: (forall b. Data b => b -> b) -> ApproximateProgress -> ApproximateProgress #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> ApproximateProgress -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> ApproximateProgress -> r #

gmapQ :: (forall d. Data d => d -> u) -> ApproximateProgress -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> ApproximateProgress -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> ApproximateProgress -> m ApproximateProgress #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> ApproximateProgress -> m ApproximateProgress #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> ApproximateProgress -> m ApproximateProgress #

Show ApproximateProgress Source # 
Generic ApproximateProgress Source # 
ToJSON ApproximateProgress Source # 
FromJSON ApproximateProgress Source # 
type Rep ApproximateProgress Source # 
type Rep ApproximateProgress = D1 (MetaData "ApproximateProgress" "Network.Google.Dataflow.Types.Product" "gogol-dataflow-0.1.0-Hia4fuX0B5YniTo71jkPP" False) (C1 (MetaCons "ApproximateProgress'" PrefixI True) ((:*:) (S1 (MetaSel (Just Symbol "_apRemainingTime") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) ((:*:) (S1 (MetaSel (Just Symbol "_apPercentComplete") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe (Textual Double)))) (S1 (MetaSel (Just Symbol "_apPosition") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Position))))))

approximateProgress :: ApproximateProgress Source #

Creates a value of ApproximateProgress with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

WorkerMessage

data WorkerMessage Source #

WorkerMessage provides information to the backend about a worker.

See: workerMessage smart constructor.

Instances

Eq WorkerMessage Source # 
Data WorkerMessage Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> WorkerMessage -> c WorkerMessage #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c WorkerMessage #

toConstr :: WorkerMessage -> Constr #

dataTypeOf :: WorkerMessage -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c WorkerMessage) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c WorkerMessage) #

gmapT :: (forall b. Data b => b -> b) -> WorkerMessage -> WorkerMessage #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> WorkerMessage -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> WorkerMessage -> r #

gmapQ :: (forall d. Data d => d -> u) -> WorkerMessage -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> WorkerMessage -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> WorkerMessage -> m WorkerMessage #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> WorkerMessage -> m WorkerMessage #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> WorkerMessage -> m WorkerMessage #

Show WorkerMessage Source # 
Generic WorkerMessage Source # 

Associated Types

type Rep WorkerMessage :: * -> * #

ToJSON WorkerMessage Source # 
FromJSON WorkerMessage Source # 
type Rep WorkerMessage Source # 
type Rep WorkerMessage = D1 (MetaData "WorkerMessage" "Network.Google.Dataflow.Types.Product" "gogol-dataflow-0.1.0-Hia4fuX0B5YniTo71jkPP" False) (C1 (MetaCons "WorkerMessage'" PrefixI True) ((:*:) ((:*:) (S1 (MetaSel (Just Symbol "_wmWorkerHealthReport") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe WorkerHealthReport))) (S1 (MetaSel (Just Symbol "_wmTime") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)))) ((:*:) (S1 (MetaSel (Just Symbol "_wmWorkerMessageCode") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe WorkerMessageCode))) (S1 (MetaSel (Just Symbol "_wmLabels") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe WorkerMessageLabels))))))

workerMessage :: WorkerMessage Source #

Creates a value of WorkerMessage with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

wmTime :: Lens' WorkerMessage (Maybe Text) Source #

The timestamp of the worker_message.

wmLabels :: Lens' WorkerMessage (Maybe WorkerMessageLabels) Source #

Labels are used to group WorkerMessages. For example, a worker_message about a particular container might have the labels: { "JOB_ID": "2015-04-22", "WORKER_ID": "wordcount-vm-2015…" "CONTAINER_TYPE": "worker", "CONTAINER_ID": "ac1234def"} Label tags typically correspond to Label enum values. However, for ease of development other strings can be used as tags. LABEL_UNSPECIFIED should not be used here.

KeyRangeLocation

data KeyRangeLocation Source #

Location information for a specific key-range of a sharded computation. Currently we only support UTF-8 character splits to simplify encoding into JSON.

See: keyRangeLocation smart constructor.

Instances

Eq KeyRangeLocation Source # 
Data KeyRangeLocation Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> KeyRangeLocation -> c KeyRangeLocation #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c KeyRangeLocation #

toConstr :: KeyRangeLocation -> Constr #

dataTypeOf :: KeyRangeLocation -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c KeyRangeLocation) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c KeyRangeLocation) #

gmapT :: (forall b. Data b => b -> b) -> KeyRangeLocation -> KeyRangeLocation #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> KeyRangeLocation -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> KeyRangeLocation -> r #

gmapQ :: (forall d. Data d => d -> u) -> KeyRangeLocation -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> KeyRangeLocation -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> KeyRangeLocation -> m KeyRangeLocation #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> KeyRangeLocation -> m KeyRangeLocation #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> KeyRangeLocation -> m KeyRangeLocation #

Show KeyRangeLocation Source # 
Generic KeyRangeLocation Source # 
ToJSON KeyRangeLocation Source # 
FromJSON KeyRangeLocation Source # 
type Rep KeyRangeLocation Source # 
type Rep KeyRangeLocation = D1 (MetaData "KeyRangeLocation" "Network.Google.Dataflow.Types.Product" "gogol-dataflow-0.1.0-Hia4fuX0B5YniTo71jkPP" False) (C1 (MetaCons "KeyRangeLocation'" PrefixI True) ((:*:) ((:*:) (S1 (MetaSel (Just Symbol "_krlPersistentDirectory") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) (S1 (MetaSel (Just Symbol "_krlDataDisk") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)))) ((:*:) (S1 (MetaSel (Just Symbol "_krlStart") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) ((:*:) (S1 (MetaSel (Just Symbol "_krlDeliveryEndpoint") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) (S1 (MetaSel (Just Symbol "_krlEnd") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)))))))

keyRangeLocation :: KeyRangeLocation Source #

Creates a value of KeyRangeLocation with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

krlPersistentDirectory :: Lens' KeyRangeLocation (Maybe Text) Source #

The location of the persistent state for this range, as a persistent directory in the worker local filesystem.

krlDataDisk :: Lens' KeyRangeLocation (Maybe Text) Source #

The name of the data disk where data for this range is stored. This name is local to the Google Cloud Platform project and uniquely identifies the disk within that project, for example "myproject-1014-104817-4c2-harness-0-disk-1".

krlStart :: Lens' KeyRangeLocation (Maybe Text) Source #

The start (inclusive) of the key range.

krlDeliveryEndpoint :: Lens' KeyRangeLocation (Maybe Text) Source #

The physical location of this range assignment to be used for streaming computation cross-worker message delivery.

krlEnd :: Lens' KeyRangeLocation (Maybe Text) Source #

The end (exclusive) of the key range.

MultiOutputInfo

data MultiOutputInfo Source #

Information about an output of a multi-output DoFn.

See: multiOutputInfo smart constructor.

Instances

Eq MultiOutputInfo Source # 
Data MultiOutputInfo Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> MultiOutputInfo -> c MultiOutputInfo #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c MultiOutputInfo #

toConstr :: MultiOutputInfo -> Constr #

dataTypeOf :: MultiOutputInfo -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c MultiOutputInfo) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c MultiOutputInfo) #

gmapT :: (forall b. Data b => b -> b) -> MultiOutputInfo -> MultiOutputInfo #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> MultiOutputInfo -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> MultiOutputInfo -> r #

gmapQ :: (forall d. Data d => d -> u) -> MultiOutputInfo -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> MultiOutputInfo -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> MultiOutputInfo -> m MultiOutputInfo #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> MultiOutputInfo -> m MultiOutputInfo #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> MultiOutputInfo -> m MultiOutputInfo #

Show MultiOutputInfo Source # 
Generic MultiOutputInfo Source # 
ToJSON MultiOutputInfo Source # 
FromJSON MultiOutputInfo Source # 
type Rep MultiOutputInfo Source # 
type Rep MultiOutputInfo = D1 (MetaData "MultiOutputInfo" "Network.Google.Dataflow.Types.Product" "gogol-dataflow-0.1.0-Hia4fuX0B5YniTo71jkPP" True) (C1 (MetaCons "MultiOutputInfo'" PrefixI True) (S1 (MetaSel (Just Symbol "_moiTag") NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 (Maybe Text))))

multiOutputInfo :: MultiOutputInfo Source #

Creates a value of MultiOutputInfo with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

moiTag :: Lens' MultiOutputInfo (Maybe Text) Source #

The id of the tag the user code will emit to this output by; this should correspond to the tag of some SideInputInfo.

PartialGroupByKeyInstruction

data PartialGroupByKeyInstruction Source #

An instruction that does a partial group-by-key. One input and one output.

See: partialGroupByKeyInstruction smart constructor.

Instances

Eq PartialGroupByKeyInstruction Source # 
Data PartialGroupByKeyInstruction Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> PartialGroupByKeyInstruction -> c PartialGroupByKeyInstruction #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c PartialGroupByKeyInstruction #

toConstr :: PartialGroupByKeyInstruction -> Constr #

dataTypeOf :: PartialGroupByKeyInstruction -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c PartialGroupByKeyInstruction) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c PartialGroupByKeyInstruction) #

gmapT :: (forall b. Data b => b -> b) -> PartialGroupByKeyInstruction -> PartialGroupByKeyInstruction #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> PartialGroupByKeyInstruction -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> PartialGroupByKeyInstruction -> r #

gmapQ :: (forall d. Data d => d -> u) -> PartialGroupByKeyInstruction -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> PartialGroupByKeyInstruction -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> PartialGroupByKeyInstruction -> m PartialGroupByKeyInstruction #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> PartialGroupByKeyInstruction -> m PartialGroupByKeyInstruction #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> PartialGroupByKeyInstruction -> m PartialGroupByKeyInstruction #

Show PartialGroupByKeyInstruction Source # 
Generic PartialGroupByKeyInstruction Source # 
ToJSON PartialGroupByKeyInstruction Source # 
FromJSON PartialGroupByKeyInstruction Source # 
type Rep PartialGroupByKeyInstruction Source # 
type Rep PartialGroupByKeyInstruction = D1 (MetaData "PartialGroupByKeyInstruction" "Network.Google.Dataflow.Types.Product" "gogol-dataflow-0.1.0-Hia4fuX0B5YniTo71jkPP" False) (C1 (MetaCons "PartialGroupByKeyInstruction'" PrefixI True) ((:*:) ((:*:) (S1 (MetaSel (Just Symbol "_pgbkiValueCombiningFn") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe PartialGroupByKeyInstructionValueCombiningFn))) (S1 (MetaSel (Just Symbol "_pgbkiSideInputs") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe [SideInputInfo])))) ((:*:) (S1 (MetaSel (Just Symbol "_pgbkiInput") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe InstructionInput))) (S1 (MetaSel (Just Symbol "_pgbkiInputElementCodec") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe PartialGroupByKeyInstructionInputElementCodec))))))

partialGroupByKeyInstruction :: PartialGroupByKeyInstruction Source #

Creates a value of PartialGroupByKeyInstruction with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

pgbkiInput :: Lens' PartialGroupByKeyInstruction (Maybe InstructionInput) Source #

Describes the input to the partial group-by-key instruction.

pgbkiInputElementCodec :: Lens' PartialGroupByKeyInstruction (Maybe PartialGroupByKeyInstructionInputElementCodec) Source #

The codec to use for interpreting an element in the input PTable.

ParDoInstruction

data ParDoInstruction Source #

An instruction that does a ParDo operation. Takes one main input and zero or more side inputs, and produces zero or more outputs. Runs user code.

See: parDoInstruction smart constructor.

Instances

Eq ParDoInstruction Source # 
Data ParDoInstruction Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> ParDoInstruction -> c ParDoInstruction #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c ParDoInstruction #

toConstr :: ParDoInstruction -> Constr #

dataTypeOf :: ParDoInstruction -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c ParDoInstruction) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c ParDoInstruction) #

gmapT :: (forall b. Data b => b -> b) -> ParDoInstruction -> ParDoInstruction #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> ParDoInstruction -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> ParDoInstruction -> r #

gmapQ :: (forall d. Data d => d -> u) -> ParDoInstruction -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> ParDoInstruction -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> ParDoInstruction -> m ParDoInstruction #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> ParDoInstruction -> m ParDoInstruction #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> ParDoInstruction -> m ParDoInstruction #

Show ParDoInstruction Source # 
Generic ParDoInstruction Source # 
ToJSON ParDoInstruction Source # 
FromJSON ParDoInstruction Source # 
type Rep ParDoInstruction Source # 
type Rep ParDoInstruction = D1 (MetaData "ParDoInstruction" "Network.Google.Dataflow.Types.Product" "gogol-dataflow-0.1.0-Hia4fuX0B5YniTo71jkPP" False) (C1 (MetaCons "ParDoInstruction'" PrefixI True) ((:*:) ((:*:) (S1 (MetaSel (Just Symbol "_pdiNumOutputs") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe (Textual Int32)))) (S1 (MetaSel (Just Symbol "_pdiMultiOutputInfos") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe [MultiOutputInfo])))) ((:*:) (S1 (MetaSel (Just Symbol "_pdiSideInputs") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe [SideInputInfo]))) ((:*:) (S1 (MetaSel (Just Symbol "_pdiInput") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe InstructionInput))) (S1 (MetaSel (Just Symbol "_pdiUserFn") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe ParDoInstructionUserFn)))))))

parDoInstruction :: ParDoInstruction Source #

Creates a value of ParDoInstruction with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

pdiMultiOutputInfos :: Lens' ParDoInstruction [MultiOutputInfo] Source #

Information about each of the outputs, if user_fn is a MultiDoFn.

CustomSourceLocation

data CustomSourceLocation Source #

Identifies the location of a custom souce.

See: customSourceLocation smart constructor.

Instances

Eq CustomSourceLocation Source # 
Data CustomSourceLocation Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> CustomSourceLocation -> c CustomSourceLocation #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c CustomSourceLocation #

toConstr :: CustomSourceLocation -> Constr #

dataTypeOf :: CustomSourceLocation -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c CustomSourceLocation) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c CustomSourceLocation) #

gmapT :: (forall b. Data b => b -> b) -> CustomSourceLocation -> CustomSourceLocation #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> CustomSourceLocation -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> CustomSourceLocation -> r #

gmapQ :: (forall d. Data d => d -> u) -> CustomSourceLocation -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> CustomSourceLocation -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> CustomSourceLocation -> m CustomSourceLocation #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> CustomSourceLocation -> m CustomSourceLocation #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> CustomSourceLocation -> m CustomSourceLocation #

Show CustomSourceLocation Source # 
Generic CustomSourceLocation Source # 
ToJSON CustomSourceLocation Source # 
FromJSON CustomSourceLocation Source # 
type Rep CustomSourceLocation Source # 
type Rep CustomSourceLocation = D1 (MetaData "CustomSourceLocation" "Network.Google.Dataflow.Types.Product" "gogol-dataflow-0.1.0-Hia4fuX0B5YniTo71jkPP" True) (C1 (MetaCons "CustomSourceLocation'" PrefixI True) (S1 (MetaSel (Just Symbol "_cslStateful") NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 (Maybe Bool))))

customSourceLocation :: CustomSourceLocation Source #

Creates a value of CustomSourceLocation with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

cslStateful :: Lens' CustomSourceLocation (Maybe Bool) Source #

Whether this source is stateful.

SourceBaseSpecsItem

data SourceBaseSpecsItem Source #

Instances

Eq SourceBaseSpecsItem Source # 
Data SourceBaseSpecsItem Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> SourceBaseSpecsItem -> c SourceBaseSpecsItem #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c SourceBaseSpecsItem #

toConstr :: SourceBaseSpecsItem -> Constr #

dataTypeOf :: SourceBaseSpecsItem -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c SourceBaseSpecsItem) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c SourceBaseSpecsItem) #

gmapT :: (forall b. Data b => b -> b) -> SourceBaseSpecsItem -> SourceBaseSpecsItem #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> SourceBaseSpecsItem -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> SourceBaseSpecsItem -> r #

gmapQ :: (forall d. Data d => d -> u) -> SourceBaseSpecsItem -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> SourceBaseSpecsItem -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> SourceBaseSpecsItem -> m SourceBaseSpecsItem #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> SourceBaseSpecsItem -> m SourceBaseSpecsItem #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> SourceBaseSpecsItem -> m SourceBaseSpecsItem #

Show SourceBaseSpecsItem Source # 
Generic SourceBaseSpecsItem Source # 
ToJSON SourceBaseSpecsItem Source # 
FromJSON SourceBaseSpecsItem Source # 
type Rep SourceBaseSpecsItem Source # 
type Rep SourceBaseSpecsItem = D1 (MetaData "SourceBaseSpecsItem" "Network.Google.Dataflow.Types.Product" "gogol-dataflow-0.1.0-Hia4fuX0B5YniTo71jkPP" True) (C1 (MetaCons "SourceBaseSpecsItem'" PrefixI True) (S1 (MetaSel (Just Symbol "_sbsiAddtional") NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 (HashMap Text JSONValue))))

sourceBaseSpecsItem Source #

Creates a value of SourceBaseSpecsItem with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

ParallelInstruction

data ParallelInstruction Source #

Describes a particular operation comprising a MapTask.

See: parallelInstruction smart constructor.

Instances

Eq ParallelInstruction Source # 
Data ParallelInstruction Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> ParallelInstruction -> c ParallelInstruction #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c ParallelInstruction #

toConstr :: ParallelInstruction -> Constr #

dataTypeOf :: ParallelInstruction -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c ParallelInstruction) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c ParallelInstruction) #

gmapT :: (forall b. Data b => b -> b) -> ParallelInstruction -> ParallelInstruction #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> ParallelInstruction -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> ParallelInstruction -> r #

gmapQ :: (forall d. Data d => d -> u) -> ParallelInstruction -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> ParallelInstruction -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> ParallelInstruction -> m ParallelInstruction #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> ParallelInstruction -> m ParallelInstruction #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> ParallelInstruction -> m ParallelInstruction #

Show ParallelInstruction Source # 
Generic ParallelInstruction Source # 
ToJSON ParallelInstruction Source # 
FromJSON ParallelInstruction Source # 
type Rep ParallelInstruction Source # 

parallelInstruction :: ParallelInstruction Source #

Creates a value of ParallelInstruction with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

piRead :: Lens' ParallelInstruction (Maybe ReadInstruction) Source #

Additional information for Read instructions.

piWrite :: Lens' ParallelInstruction (Maybe WriteInstruction) Source #

Additional information for Write instructions.

piParDo :: Lens' ParallelInstruction (Maybe ParDoInstruction) Source #

Additional information for ParDo instructions.

piPartialGroupByKey :: Lens' ParallelInstruction (Maybe PartialGroupByKeyInstruction) Source #

Additional information for PartialGroupByKey instructions.

piOutputs :: Lens' ParallelInstruction [InstructionOutput] Source #

Describes the outputs of the instruction.

piName :: Lens' ParallelInstruction (Maybe Text) Source #

User-provided name of this operation.

piSystemName :: Lens' ParallelInstruction (Maybe Text) Source #

System-defined name of this operation. Unique across the workflow.

piFlatten :: Lens' ParallelInstruction (Maybe FlattenInstruction) Source #

Additional information for Flatten instructions.

SideInputInfoKind

data SideInputInfoKind Source #

How to interpret the source element(s) as a side input value.

See: sideInputInfoKind smart constructor.

Instances

Eq SideInputInfoKind Source # 
Data SideInputInfoKind Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> SideInputInfoKind -> c SideInputInfoKind #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c SideInputInfoKind #

toConstr :: SideInputInfoKind -> Constr #

dataTypeOf :: SideInputInfoKind -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c SideInputInfoKind) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c SideInputInfoKind) #

gmapT :: (forall b. Data b => b -> b) -> SideInputInfoKind -> SideInputInfoKind #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> SideInputInfoKind -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> SideInputInfoKind -> r #

gmapQ :: (forall d. Data d => d -> u) -> SideInputInfoKind -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> SideInputInfoKind -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> SideInputInfoKind -> m SideInputInfoKind #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> SideInputInfoKind -> m SideInputInfoKind #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> SideInputInfoKind -> m SideInputInfoKind #

Show SideInputInfoKind Source # 
Generic SideInputInfoKind Source # 
ToJSON SideInputInfoKind Source # 
FromJSON SideInputInfoKind Source # 
type Rep SideInputInfoKind Source # 
type Rep SideInputInfoKind = D1 (MetaData "SideInputInfoKind" "Network.Google.Dataflow.Types.Product" "gogol-dataflow-0.1.0-Hia4fuX0B5YniTo71jkPP" True) (C1 (MetaCons "SideInputInfoKind'" PrefixI True) (S1 (MetaSel (Just Symbol "_siikAddtional") NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 (HashMap Text JSONValue))))

sideInputInfoKind Source #

Creates a value of SideInputInfoKind with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

SendWorkerMessagesRequest

data SendWorkerMessagesRequest Source #

A request for sending worker messages to the service.

See: sendWorkerMessagesRequest smart constructor.

Instances

Eq SendWorkerMessagesRequest Source # 
Data SendWorkerMessagesRequest Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> SendWorkerMessagesRequest -> c SendWorkerMessagesRequest #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c SendWorkerMessagesRequest #

toConstr :: SendWorkerMessagesRequest -> Constr #

dataTypeOf :: SendWorkerMessagesRequest -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c SendWorkerMessagesRequest) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c SendWorkerMessagesRequest) #

gmapT :: (forall b. Data b => b -> b) -> SendWorkerMessagesRequest -> SendWorkerMessagesRequest #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> SendWorkerMessagesRequest -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> SendWorkerMessagesRequest -> r #

gmapQ :: (forall d. Data d => d -> u) -> SendWorkerMessagesRequest -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> SendWorkerMessagesRequest -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> SendWorkerMessagesRequest -> m SendWorkerMessagesRequest #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> SendWorkerMessagesRequest -> m SendWorkerMessagesRequest #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> SendWorkerMessagesRequest -> m SendWorkerMessagesRequest #

Show SendWorkerMessagesRequest Source # 
Generic SendWorkerMessagesRequest Source # 
ToJSON SendWorkerMessagesRequest Source # 
FromJSON SendWorkerMessagesRequest Source # 
type Rep SendWorkerMessagesRequest Source # 
type Rep SendWorkerMessagesRequest = D1 (MetaData "SendWorkerMessagesRequest" "Network.Google.Dataflow.Types.Product" "gogol-dataflow-0.1.0-Hia4fuX0B5YniTo71jkPP" True) (C1 (MetaCons "SendWorkerMessagesRequest'" PrefixI True) (S1 (MetaSel (Just Symbol "_swmrWorkerMessages") NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 (Maybe [WorkerMessage]))))

sendWorkerMessagesRequest :: SendWorkerMessagesRequest Source #

Creates a value of SendWorkerMessagesRequest with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

SourceSplitShard

data SourceSplitShard Source #

DEPRECATED in favor of DerivedSource.

See: sourceSplitShard smart constructor.

Instances

Eq SourceSplitShard Source # 
Data SourceSplitShard Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> SourceSplitShard -> c SourceSplitShard #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c SourceSplitShard #

toConstr :: SourceSplitShard -> Constr #

dataTypeOf :: SourceSplitShard -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c SourceSplitShard) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c SourceSplitShard) #

gmapT :: (forall b. Data b => b -> b) -> SourceSplitShard -> SourceSplitShard #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> SourceSplitShard -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> SourceSplitShard -> r #

gmapQ :: (forall d. Data d => d -> u) -> SourceSplitShard -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> SourceSplitShard -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> SourceSplitShard -> m SourceSplitShard #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> SourceSplitShard -> m SourceSplitShard #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> SourceSplitShard -> m SourceSplitShard #

Show SourceSplitShard Source # 
Generic SourceSplitShard Source # 
ToJSON SourceSplitShard Source # 
FromJSON SourceSplitShard Source # 
type Rep SourceSplitShard Source # 
type Rep SourceSplitShard = D1 (MetaData "SourceSplitShard" "Network.Google.Dataflow.Types.Product" "gogol-dataflow-0.1.0-Hia4fuX0B5YniTo71jkPP" False) (C1 (MetaCons "SourceSplitShard'" PrefixI True) ((:*:) (S1 (MetaSel (Just Symbol "_sssDerivationMode") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) (S1 (MetaSel (Just Symbol "_sssSource") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Source)))))

sourceSplitShard :: SourceSplitShard Source #

Creates a value of SourceSplitShard with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

SideInputInfo

data SideInputInfo Source #

Information about a side input of a DoFn or an input of a SeqDoFn.

See: sideInputInfo smart constructor.

Instances

Eq SideInputInfo Source # 
Data SideInputInfo Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> SideInputInfo -> c SideInputInfo #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c SideInputInfo #

toConstr :: SideInputInfo -> Constr #

dataTypeOf :: SideInputInfo -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c SideInputInfo) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c SideInputInfo) #

gmapT :: (forall b. Data b => b -> b) -> SideInputInfo -> SideInputInfo #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> SideInputInfo -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> SideInputInfo -> r #

gmapQ :: (forall d. Data d => d -> u) -> SideInputInfo -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> SideInputInfo -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> SideInputInfo -> m SideInputInfo #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> SideInputInfo -> m SideInputInfo #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> SideInputInfo -> m SideInputInfo #

Show SideInputInfo Source # 
Generic SideInputInfo Source # 

Associated Types

type Rep SideInputInfo :: * -> * #

ToJSON SideInputInfo Source # 
FromJSON SideInputInfo Source # 
type Rep SideInputInfo Source # 
type Rep SideInputInfo = D1 (MetaData "SideInputInfo" "Network.Google.Dataflow.Types.Product" "gogol-dataflow-0.1.0-Hia4fuX0B5YniTo71jkPP" False) (C1 (MetaCons "SideInputInfo'" PrefixI True) ((:*:) (S1 (MetaSel (Just Symbol "_siiTag") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) ((:*:) (S1 (MetaSel (Just Symbol "_siiKind") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe SideInputInfoKind))) (S1 (MetaSel (Just Symbol "_siiSources") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe [Source]))))))

sideInputInfo :: SideInputInfo Source #

Creates a value of SideInputInfo with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

siiTag :: Lens' SideInputInfo (Maybe Text) Source #

The id of the tag the user code will access this side input by; this should correspond to the tag of some MultiOutputInfo.

siiKind :: Lens' SideInputInfo (Maybe SideInputInfoKind) Source #

How to interpret the source element(s) as a side input value.

siiSources :: Lens' SideInputInfo [Source] Source #

The source(s) to read element(s) from to get the value of this side input. If more than one source, then the elements are taken from the sources, in the specified order if order matters. At least one source is required.

JobExecutionInfo

data JobExecutionInfo Source #

Additional information about how a Dataflow job will be executed which isn’t contained in the submitted job.

See: jobExecutionInfo smart constructor.

Instances

Eq JobExecutionInfo Source # 
Data JobExecutionInfo Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> JobExecutionInfo -> c JobExecutionInfo #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c JobExecutionInfo #

toConstr :: JobExecutionInfo -> Constr #

dataTypeOf :: JobExecutionInfo -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c JobExecutionInfo) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c JobExecutionInfo) #

gmapT :: (forall b. Data b => b -> b) -> JobExecutionInfo -> JobExecutionInfo #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> JobExecutionInfo -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> JobExecutionInfo -> r #

gmapQ :: (forall d. Data d => d -> u) -> JobExecutionInfo -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> JobExecutionInfo -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> JobExecutionInfo -> m JobExecutionInfo #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> JobExecutionInfo -> m JobExecutionInfo #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> JobExecutionInfo -> m JobExecutionInfo #

Show JobExecutionInfo Source # 
Generic JobExecutionInfo Source # 
ToJSON JobExecutionInfo Source # 
FromJSON JobExecutionInfo Source # 
type Rep JobExecutionInfo Source # 
type Rep JobExecutionInfo = D1 (MetaData "JobExecutionInfo" "Network.Google.Dataflow.Types.Product" "gogol-dataflow-0.1.0-Hia4fuX0B5YniTo71jkPP" True) (C1 (MetaCons "JobExecutionInfo'" PrefixI True) (S1 (MetaSel (Just Symbol "_jeiStages") NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 (Maybe JobExecutionInfoStages))))

jobExecutionInfo :: JobExecutionInfo Source #

Creates a value of JobExecutionInfo with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

jeiStages :: Lens' JobExecutionInfo (Maybe JobExecutionInfoStages) Source #

A mapping from each stage to the information about that stage.

SourceCodec

data SourceCodec Source #

The codec to use to decode data read from the source.

See: sourceCodec smart constructor.

Instances

Eq SourceCodec Source # 
Data SourceCodec Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> SourceCodec -> c SourceCodec #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c SourceCodec #

toConstr :: SourceCodec -> Constr #

dataTypeOf :: SourceCodec -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c SourceCodec) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c SourceCodec) #

gmapT :: (forall b. Data b => b -> b) -> SourceCodec -> SourceCodec #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> SourceCodec -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> SourceCodec -> r #

gmapQ :: (forall d. Data d => d -> u) -> SourceCodec -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> SourceCodec -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> SourceCodec -> m SourceCodec #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> SourceCodec -> m SourceCodec #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> SourceCodec -> m SourceCodec #

Show SourceCodec Source # 
Generic SourceCodec Source # 

Associated Types

type Rep SourceCodec :: * -> * #

ToJSON SourceCodec Source # 
FromJSON SourceCodec Source # 
type Rep SourceCodec Source # 
type Rep SourceCodec = D1 (MetaData "SourceCodec" "Network.Google.Dataflow.Types.Product" "gogol-dataflow-0.1.0-Hia4fuX0B5YniTo71jkPP" True) (C1 (MetaCons "SourceCodec'" PrefixI True) (S1 (MetaSel (Just Symbol "_souAddtional") NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 (HashMap Text JSONValue))))

sourceCodec Source #

Creates a value of SourceCodec with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

souAddtional :: Lens' SourceCodec (HashMap Text JSONValue) Source #

Properties of the object.

StateFamilyConfig

data StateFamilyConfig Source #

State family configuration.

See: stateFamilyConfig smart constructor.

Instances

Eq StateFamilyConfig Source # 
Data StateFamilyConfig Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> StateFamilyConfig -> c StateFamilyConfig #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c StateFamilyConfig #

toConstr :: StateFamilyConfig -> Constr #

dataTypeOf :: StateFamilyConfig -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c StateFamilyConfig) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c StateFamilyConfig) #

gmapT :: (forall b. Data b => b -> b) -> StateFamilyConfig -> StateFamilyConfig #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> StateFamilyConfig -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> StateFamilyConfig -> r #

gmapQ :: (forall d. Data d => d -> u) -> StateFamilyConfig -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> StateFamilyConfig -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> StateFamilyConfig -> m StateFamilyConfig #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> StateFamilyConfig -> m StateFamilyConfig #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> StateFamilyConfig -> m StateFamilyConfig #

Show StateFamilyConfig Source # 
Generic StateFamilyConfig Source # 
ToJSON StateFamilyConfig Source # 
FromJSON StateFamilyConfig Source # 
type Rep StateFamilyConfig Source # 
type Rep StateFamilyConfig = D1 (MetaData "StateFamilyConfig" "Network.Google.Dataflow.Types.Product" "gogol-dataflow-0.1.0-Hia4fuX0B5YniTo71jkPP" False) (C1 (MetaCons "StateFamilyConfig'" PrefixI True) ((:*:) (S1 (MetaSel (Just Symbol "_sfcIsRead") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Bool))) (S1 (MetaSel (Just Symbol "_sfcStateFamily") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)))))

stateFamilyConfig :: StateFamilyConfig Source #

Creates a value of StateFamilyConfig with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

sfcIsRead :: Lens' StateFamilyConfig (Maybe Bool) Source #

If true, this family corresponds to a read operation.

KeyRangeDataDiskAssignment

data KeyRangeDataDiskAssignment Source #

Data disk assignment information for a specific key-range of a sharded computation. Currently we only support UTF-8 character splits to simplify encoding into JSON.

See: keyRangeDataDiskAssignment smart constructor.

Instances

Eq KeyRangeDataDiskAssignment Source # 
Data KeyRangeDataDiskAssignment Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> KeyRangeDataDiskAssignment -> c KeyRangeDataDiskAssignment #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c KeyRangeDataDiskAssignment #

toConstr :: KeyRangeDataDiskAssignment -> Constr #

dataTypeOf :: KeyRangeDataDiskAssignment -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c KeyRangeDataDiskAssignment) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c KeyRangeDataDiskAssignment) #

gmapT :: (forall b. Data b => b -> b) -> KeyRangeDataDiskAssignment -> KeyRangeDataDiskAssignment #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> KeyRangeDataDiskAssignment -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> KeyRangeDataDiskAssignment -> r #

gmapQ :: (forall d. Data d => d -> u) -> KeyRangeDataDiskAssignment -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> KeyRangeDataDiskAssignment -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> KeyRangeDataDiskAssignment -> m KeyRangeDataDiskAssignment #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> KeyRangeDataDiskAssignment -> m KeyRangeDataDiskAssignment #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> KeyRangeDataDiskAssignment -> m KeyRangeDataDiskAssignment #

Show KeyRangeDataDiskAssignment Source # 
Generic KeyRangeDataDiskAssignment Source # 
ToJSON KeyRangeDataDiskAssignment Source # 
FromJSON KeyRangeDataDiskAssignment Source # 
type Rep KeyRangeDataDiskAssignment Source # 
type Rep KeyRangeDataDiskAssignment = D1 (MetaData "KeyRangeDataDiskAssignment" "Network.Google.Dataflow.Types.Product" "gogol-dataflow-0.1.0-Hia4fuX0B5YniTo71jkPP" False) (C1 (MetaCons "KeyRangeDataDiskAssignment'" PrefixI True) ((:*:) (S1 (MetaSel (Just Symbol "_krddaDataDisk") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) ((:*:) (S1 (MetaSel (Just Symbol "_krddaStart") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) (S1 (MetaSel (Just Symbol "_krddaEnd") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))))))

keyRangeDataDiskAssignment :: KeyRangeDataDiskAssignment Source #

Creates a value of KeyRangeDataDiskAssignment with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

krddaDataDisk :: Lens' KeyRangeDataDiskAssignment (Maybe Text) Source #

The name of the data disk where data for this range is stored. This name is local to the Google Cloud Platform project and uniquely identifies the disk within that project, for example "myproject-1014-104817-4c2-harness-0-disk-1".

krddaStart :: Lens' KeyRangeDataDiskAssignment (Maybe Text) Source #

The start (inclusive) of the key range.

krddaEnd :: Lens' KeyRangeDataDiskAssignment (Maybe Text) Source #

The end (exclusive) of the key range.

SourceSplitRequest

data SourceSplitRequest Source #

Represents the operation to split a high-level Source specification into bundles (parts for parallel processing). At a high level, splitting of a source into bundles happens as follows: SourceSplitRequest is applied to the source. If it returns SOURCE_SPLIT_OUTCOME_USE_CURRENT, no further splitting happens and the source is used "as is". Otherwise, splitting is applied recursively to each produced DerivedSource. As an optimization, for any Source, if its does_not_need_splitting is true, the framework assumes that splitting this source would return SOURCE_SPLIT_OUTCOME_USE_CURRENT, and doesn't initiate a SourceSplitRequest. This applies both to the initial source being split and to bundles produced from it.

See: sourceSplitRequest smart constructor.

Instances

Eq SourceSplitRequest Source # 
Data SourceSplitRequest Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> SourceSplitRequest -> c SourceSplitRequest #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c SourceSplitRequest #

toConstr :: SourceSplitRequest -> Constr #

dataTypeOf :: SourceSplitRequest -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c SourceSplitRequest) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c SourceSplitRequest) #

gmapT :: (forall b. Data b => b -> b) -> SourceSplitRequest -> SourceSplitRequest #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> SourceSplitRequest -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> SourceSplitRequest -> r #

gmapQ :: (forall d. Data d => d -> u) -> SourceSplitRequest -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> SourceSplitRequest -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> SourceSplitRequest -> m SourceSplitRequest #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> SourceSplitRequest -> m SourceSplitRequest #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> SourceSplitRequest -> m SourceSplitRequest #

Show SourceSplitRequest Source # 
Generic SourceSplitRequest Source # 
ToJSON SourceSplitRequest Source # 
FromJSON SourceSplitRequest Source # 
type Rep SourceSplitRequest Source # 
type Rep SourceSplitRequest = D1 (MetaData "SourceSplitRequest" "Network.Google.Dataflow.Types.Product" "gogol-dataflow-0.1.0-Hia4fuX0B5YniTo71jkPP" False) (C1 (MetaCons "SourceSplitRequest'" PrefixI True) ((:*:) (S1 (MetaSel (Just Symbol "_ssrSource") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Source))) (S1 (MetaSel (Just Symbol "_ssrOptions") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe SourceSplitOptions)))))

sourceSplitRequest :: SourceSplitRequest Source #

Creates a value of SourceSplitRequest with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

ssrSource :: Lens' SourceSplitRequest (Maybe Source) Source #

Specification of the source to be split.

ssrOptions :: Lens' SourceSplitRequest (Maybe SourceSplitOptions) Source #

Hints for tuning the splitting process.

ListJobMessagesResponse

data ListJobMessagesResponse Source #

Response to a request to list job messages.

See: listJobMessagesResponse smart constructor.

Instances

Eq ListJobMessagesResponse Source # 
Data ListJobMessagesResponse Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> ListJobMessagesResponse -> c ListJobMessagesResponse #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c ListJobMessagesResponse #

toConstr :: ListJobMessagesResponse -> Constr #

dataTypeOf :: ListJobMessagesResponse -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c ListJobMessagesResponse) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c ListJobMessagesResponse) #

gmapT :: (forall b. Data b => b -> b) -> ListJobMessagesResponse -> ListJobMessagesResponse #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> ListJobMessagesResponse -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> ListJobMessagesResponse -> r #

gmapQ :: (forall d. Data d => d -> u) -> ListJobMessagesResponse -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> ListJobMessagesResponse -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> ListJobMessagesResponse -> m ListJobMessagesResponse #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> ListJobMessagesResponse -> m ListJobMessagesResponse #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> ListJobMessagesResponse -> m ListJobMessagesResponse #

Show ListJobMessagesResponse Source # 
Generic ListJobMessagesResponse Source # 
ToJSON ListJobMessagesResponse Source # 
FromJSON ListJobMessagesResponse Source # 
type Rep ListJobMessagesResponse Source # 
type Rep ListJobMessagesResponse = D1 (MetaData "ListJobMessagesResponse" "Network.Google.Dataflow.Types.Product" "gogol-dataflow-0.1.0-Hia4fuX0B5YniTo71jkPP" False) (C1 (MetaCons "ListJobMessagesResponse'" PrefixI True) ((:*:) (S1 (MetaSel (Just Symbol "_ljmrJobMessages") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe [JobMessage]))) (S1 (MetaSel (Just Symbol "_ljmrNextPageToken") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)))))

listJobMessagesResponse :: ListJobMessagesResponse Source #

Creates a value of ListJobMessagesResponse with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

ljmrJobMessages :: Lens' ListJobMessagesResponse [JobMessage] Source #

Messages in ascending timestamp order.

ljmrNextPageToken :: Lens' ListJobMessagesResponse (Maybe Text) Source #

The token to obtain the next page of results if there are more.

PubsubLocation

data PubsubLocation Source #

Identifies a pubsub location to use for transferring data into or out of a streaming Dataflow job.

See: pubsubLocation smart constructor.

Instances

Eq PubsubLocation Source # 
Data PubsubLocation Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> PubsubLocation -> c PubsubLocation #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c PubsubLocation #

toConstr :: PubsubLocation -> Constr #

dataTypeOf :: PubsubLocation -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c PubsubLocation) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c PubsubLocation) #

gmapT :: (forall b. Data b => b -> b) -> PubsubLocation -> PubsubLocation #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> PubsubLocation -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> PubsubLocation -> r #

gmapQ :: (forall d. Data d => d -> u) -> PubsubLocation -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> PubsubLocation -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> PubsubLocation -> m PubsubLocation #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> PubsubLocation -> m PubsubLocation #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> PubsubLocation -> m PubsubLocation #

Show PubsubLocation Source # 
Generic PubsubLocation Source # 

Associated Types

type Rep PubsubLocation :: * -> * #

ToJSON PubsubLocation Source # 
FromJSON PubsubLocation Source # 
type Rep PubsubLocation Source # 
type Rep PubsubLocation = D1 (MetaData "PubsubLocation" "Network.Google.Dataflow.Types.Product" "gogol-dataflow-0.1.0-Hia4fuX0B5YniTo71jkPP" False) (C1 (MetaCons "PubsubLocation'" PrefixI True) ((:*:) ((:*:) (S1 (MetaSel (Just Symbol "_plTrackingSubscription") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) ((:*:) (S1 (MetaSel (Just Symbol "_plDropLateData") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Bool))) (S1 (MetaSel (Just Symbol "_plTimestampLabel") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))))) ((:*:) (S1 (MetaSel (Just Symbol "_plIdLabel") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) ((:*:) (S1 (MetaSel (Just Symbol "_plTopic") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) (S1 (MetaSel (Just Symbol "_plSubscription") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)))))))

pubsubLocation :: PubsubLocation Source #

Creates a value of PubsubLocation with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

plTrackingSubscription :: Lens' PubsubLocation (Maybe Text) Source #

If set, specifies the pubsub subscription that will be used for tracking custom time timestamps for watermark estimation.

plDropLateData :: Lens' PubsubLocation (Maybe Bool) Source #

Indicates whether the pipeline allows late-arriving data.

plTimestampLabel :: Lens' PubsubLocation (Maybe Text) Source #

If set, contains a pubsub label from which to extract record timestamps. If left empty, record timestamps will be generated upon arrival.

plIdLabel :: Lens' PubsubLocation (Maybe Text) Source #

If set, contains a pubsub label from which to extract record ids. If left empty, record deduplication will be strictly best effort.

plTopic :: Lens' PubsubLocation (Maybe Text) Source #

A pubsub topic, in the form of "pubsub.googleapis.com/topics/ /"

plSubscription :: Lens' PubsubLocation (Maybe Text) Source #

A pubsub subscription, in the form of "pubsub.googleapis.com/subscriptions/ /"

InstructionInput

data InstructionInput Source #

An input of an instruction, as a reference to an output of a producer instruction.

See: instructionInput smart constructor.

Instances

Eq InstructionInput Source # 
Data InstructionInput Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> InstructionInput -> c InstructionInput #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c InstructionInput #

toConstr :: InstructionInput -> Constr #

dataTypeOf :: InstructionInput -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c InstructionInput) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c InstructionInput) #

gmapT :: (forall b. Data b => b -> b) -> InstructionInput -> InstructionInput #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> InstructionInput -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> InstructionInput -> r #

gmapQ :: (forall d. Data d => d -> u) -> InstructionInput -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> InstructionInput -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> InstructionInput -> m InstructionInput #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> InstructionInput -> m InstructionInput #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> InstructionInput -> m InstructionInput #

Show InstructionInput Source # 
Generic InstructionInput Source # 
ToJSON InstructionInput Source # 
FromJSON InstructionInput Source # 
type Rep InstructionInput Source # 
type Rep InstructionInput = D1 (MetaData "InstructionInput" "Network.Google.Dataflow.Types.Product" "gogol-dataflow-0.1.0-Hia4fuX0B5YniTo71jkPP" False) (C1 (MetaCons "InstructionInput'" PrefixI True) ((:*:) (S1 (MetaSel (Just Symbol "_iiProducerInstructionIndex") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe (Textual Int32)))) (S1 (MetaSel (Just Symbol "_iiOutputNum") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe (Textual Int32))))))

instructionInput :: InstructionInput Source #

Creates a value of InstructionInput with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

iiProducerInstructionIndex :: Lens' InstructionInput (Maybe Int32) Source #

The index (origin zero) of the parallel instruction that produces the output to be consumed by this input. This index is relative to the list of instructions in this input's instruction's containing MapTask.

iiOutputNum :: Lens' InstructionInput (Maybe Int32) Source #

The output index (origin zero) within the producer.

SeqMapTask

data SeqMapTask Source #

Describes a particular function to invoke.

See: seqMapTask smart constructor.

Instances

Eq SeqMapTask Source # 
Data SeqMapTask Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> SeqMapTask -> c SeqMapTask #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c SeqMapTask #

toConstr :: SeqMapTask -> Constr #

dataTypeOf :: SeqMapTask -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c SeqMapTask) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c SeqMapTask) #

gmapT :: (forall b. Data b => b -> b) -> SeqMapTask -> SeqMapTask #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> SeqMapTask -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> SeqMapTask -> r #

gmapQ :: (forall d. Data d => d -> u) -> SeqMapTask -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> SeqMapTask -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> SeqMapTask -> m SeqMapTask #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> SeqMapTask -> m SeqMapTask #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> SeqMapTask -> m SeqMapTask #

Show SeqMapTask Source # 
Generic SeqMapTask Source # 

Associated Types

type Rep SeqMapTask :: * -> * #

ToJSON SeqMapTask Source # 
FromJSON SeqMapTask Source # 
type Rep SeqMapTask Source # 

seqMapTask :: SeqMapTask Source #

Creates a value of SeqMapTask with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

smtInputs :: Lens' SeqMapTask [SideInputInfo] Source #

Information about each of the inputs.

smtName :: Lens' SeqMapTask (Maybe Text) Source #

The user-provided name of the SeqDo operation.

smtOutputInfos :: Lens' SeqMapTask [SeqMapTaskOutputInfo] Source #

Information about each of the outputs.

smtSystemName :: Lens' SeqMapTask (Maybe Text) Source #

System-defined name of the SeqDo operation. Unique across the workflow.

smtStageName :: Lens' SeqMapTask (Maybe Text) Source #

System-defined name of the stage containing the SeqDo operation. Unique across the workflow.

smtUserFn :: Lens' SeqMapTask (Maybe SeqMapTaskUserFn) Source #

The user function to invoke.

SourceOperationRequest

data SourceOperationRequest Source #

A work item that represents the different operations that can be performed on a user-defined Source specification.

See: sourceOperationRequest smart constructor.

Instances

Eq SourceOperationRequest Source # 
Data SourceOperationRequest Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> SourceOperationRequest -> c SourceOperationRequest #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c SourceOperationRequest #

toConstr :: SourceOperationRequest -> Constr #

dataTypeOf :: SourceOperationRequest -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c SourceOperationRequest) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c SourceOperationRequest) #

gmapT :: (forall b. Data b => b -> b) -> SourceOperationRequest -> SourceOperationRequest #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> SourceOperationRequest -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> SourceOperationRequest -> r #

gmapQ :: (forall d. Data d => d -> u) -> SourceOperationRequest -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> SourceOperationRequest -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> SourceOperationRequest -> m SourceOperationRequest #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> SourceOperationRequest -> m SourceOperationRequest #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> SourceOperationRequest -> m SourceOperationRequest #

Show SourceOperationRequest Source # 
Generic SourceOperationRequest Source # 
ToJSON SourceOperationRequest Source # 
FromJSON SourceOperationRequest Source # 
type Rep SourceOperationRequest Source # 
type Rep SourceOperationRequest = D1 (MetaData "SourceOperationRequest" "Network.Google.Dataflow.Types.Product" "gogol-dataflow-0.1.0-Hia4fuX0B5YniTo71jkPP" False) (C1 (MetaCons "SourceOperationRequest'" PrefixI True) ((:*:) (S1 (MetaSel (Just Symbol "_sSplit") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe SourceSplitRequest))) (S1 (MetaSel (Just Symbol "_sGetMetadata") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe SourceGetMetadataRequest)))))

sourceOperationRequest :: SourceOperationRequest Source #

Creates a value of SourceOperationRequest with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

sSplit :: Lens' SourceOperationRequest (Maybe SourceSplitRequest) Source #

Information about a request to split a source.

sGetMetadata :: Lens' SourceOperationRequest (Maybe SourceGetMetadataRequest) Source #

Information about a request to get metadata about a source.

LeaseWorkItemResponse

data LeaseWorkItemResponse Source #

Response to a request to lease WorkItems.

See: leaseWorkItemResponse smart constructor.

Instances

Eq LeaseWorkItemResponse Source # 
Data LeaseWorkItemResponse Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> LeaseWorkItemResponse -> c LeaseWorkItemResponse #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c LeaseWorkItemResponse #

toConstr :: LeaseWorkItemResponse -> Constr #

dataTypeOf :: LeaseWorkItemResponse -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c LeaseWorkItemResponse) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c LeaseWorkItemResponse) #

gmapT :: (forall b. Data b => b -> b) -> LeaseWorkItemResponse -> LeaseWorkItemResponse #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> LeaseWorkItemResponse -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> LeaseWorkItemResponse -> r #

gmapQ :: (forall d. Data d => d -> u) -> LeaseWorkItemResponse -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> LeaseWorkItemResponse -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> LeaseWorkItemResponse -> m LeaseWorkItemResponse #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> LeaseWorkItemResponse -> m LeaseWorkItemResponse #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> LeaseWorkItemResponse -> m LeaseWorkItemResponse #

Show LeaseWorkItemResponse Source # 
Generic LeaseWorkItemResponse Source # 
ToJSON LeaseWorkItemResponse Source # 
FromJSON LeaseWorkItemResponse Source # 
type Rep LeaseWorkItemResponse Source # 
type Rep LeaseWorkItemResponse = D1 (MetaData "LeaseWorkItemResponse" "Network.Google.Dataflow.Types.Product" "gogol-dataflow-0.1.0-Hia4fuX0B5YniTo71jkPP" True) (C1 (MetaCons "LeaseWorkItemResponse'" PrefixI True) (S1 (MetaSel (Just Symbol "_lwirWorkItems") NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 (Maybe [WorkItem]))))

leaseWorkItemResponse :: LeaseWorkItemResponse Source #

Creates a value of LeaseWorkItemResponse with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

lwirWorkItems :: Lens' LeaseWorkItemResponse [WorkItem] Source #

A list of the leased WorkItems.

Position

data Position Source #

Position defines a position within a collection of data. The value can be either the end position, a key (used with ordered collections), a byte offset, or a record index.

See: position smart constructor.

Instances

Eq Position Source # 
Data Position Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> Position -> c Position #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c Position #

toConstr :: Position -> Constr #

dataTypeOf :: Position -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c Position) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c Position) #

gmapT :: (forall b. Data b => b -> b) -> Position -> Position #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> Position -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> Position -> r #

gmapQ :: (forall d. Data d => d -> u) -> Position -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> Position -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> Position -> m Position #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> Position -> m Position #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> Position -> m Position #

Show Position Source # 
Generic Position Source # 

Associated Types

type Rep Position :: * -> * #

Methods

from :: Position -> Rep Position x #

to :: Rep Position x -> Position #

ToJSON Position Source # 
FromJSON Position Source # 
type Rep Position Source # 

position :: Position Source #

Creates a value of Position with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

pByteOffSet :: Lens' Position (Maybe Int64) Source #

Position is a byte offset.

pConcatPosition :: Lens' Position (Maybe ConcatPosition) Source #

CloudPosition is a concat position.

pRecordIndex :: Lens' Position (Maybe Int64) Source #

Position is a record index.

pShufflePosition :: Lens' Position (Maybe Text) Source #

CloudPosition is a base64 encoded BatchShufflePosition (with FIXED sharding).

pKey :: Lens' Position (Maybe Text) Source #

Position is a string key, ordered lexicographically.

pEnd :: Lens' Position (Maybe Bool) Source #

Position is past all other positions. Also useful for the end position of an unbounded range.