gogol-dataproc-0.3.0: Google Cloud Dataproc 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.Dataproc.Types

Contents

Description

 

Synopsis

Service Configuration

dataprocService :: ServiceConfig Source #

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

OAuth Scopes

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

View and manage your data across Google Cloud Platform services

JobReference

data JobReference Source #

Encapsulates the full scoping used to reference a job.

See: jobReference smart constructor.

Instances

Eq JobReference Source # 
Data JobReference Source # 

Methods

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

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

toConstr :: JobReference -> Constr #

dataTypeOf :: JobReference -> DataType #

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

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

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

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

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

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

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

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

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

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

Show JobReference Source # 
Generic JobReference Source # 

Associated Types

type Rep JobReference :: * -> * #

ToJSON JobReference Source # 
FromJSON JobReference Source # 
type Rep JobReference Source # 
type Rep JobReference = D1 (MetaData "JobReference" "Network.Google.Dataproc.Types.Product" "gogol-dataproc-0.3.0-3PqxdosnOOKEHgZbCAggSw" False) (C1 (MetaCons "JobReference'" PrefixI True) ((:*:) (S1 (MetaSel (Just Symbol "_jrJobId") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) (S1 (MetaSel (Just Symbol "_jrProjectId") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)))))

jobReference :: JobReference Source #

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

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

jrJobId :: Lens' JobReference (Maybe Text) Source #

Optional
The job ID, which must be unique within the project. The job ID is generated by the server upon job submission or provided by the user as a means to perform retries without creating duplicate jobs. The ID must contain only letters (a-z, A-Z), numbers (0-9), underscores (_), or hyphens (-). The maximum length is 512 characters.

jrProjectId :: Lens' JobReference (Maybe Text) Source #

Required
The ID of the Google Cloud Platform project that the job belongs to.

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.Dataproc.Types.Product" "gogol-dataproc-0.3.0-3PqxdosnOOKEHgZbCAggSw" 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.

OperationSchema

data OperationSchema Source #

Service-specific metadata associated with the operation. It typically contains progress information and common metadata such as create time. Some services might not provide such metadata. Any method that returns a long-running operation should document the metadata type, if any.

See: operationSchema smart constructor.

Instances

Eq OperationSchema Source # 
Data OperationSchema Source # 

Methods

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

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

toConstr :: OperationSchema -> Constr #

dataTypeOf :: OperationSchema -> DataType #

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

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

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

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

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

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

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

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

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

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

Show OperationSchema Source # 
Generic OperationSchema Source # 
ToJSON OperationSchema Source # 
FromJSON OperationSchema Source # 
type Rep OperationSchema Source # 
type Rep OperationSchema = D1 (MetaData "OperationSchema" "Network.Google.Dataproc.Types.Product" "gogol-dataproc-0.3.0-3PqxdosnOOKEHgZbCAggSw" True) (C1 (MetaCons "OperationSchema'" PrefixI True) (S1 (MetaSel (Just Symbol "_osAddtional") NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 (HashMap Text JSONValue))))

operationSchema Source #

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

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

osAddtional :: Lens' OperationSchema (HashMap Text JSONValue) Source #

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

PySparkJobProperties

data PySparkJobProperties Source #

Optional
A mapping of property names to values, used to configure PySpark. Properties that conflict with values set by the Cloud Dataproc API may be overwritten. Can include properties set in /etc/spark/conf/spark-defaults.conf and classes in user code.

See: pySparkJobProperties smart constructor.

Instances

Eq PySparkJobProperties Source # 
Data PySparkJobProperties Source # 

Methods

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

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

toConstr :: PySparkJobProperties -> Constr #

dataTypeOf :: PySparkJobProperties -> DataType #

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

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

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

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

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

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

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

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

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

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

Show PySparkJobProperties Source # 
Generic PySparkJobProperties Source # 
ToJSON PySparkJobProperties Source # 
FromJSON PySparkJobProperties Source # 
type Rep PySparkJobProperties Source # 
type Rep PySparkJobProperties = D1 (MetaData "PySparkJobProperties" "Network.Google.Dataproc.Types.Product" "gogol-dataproc-0.3.0-3PqxdosnOOKEHgZbCAggSw" True) (C1 (MetaCons "PySparkJobProperties'" PrefixI True) (S1 (MetaSel (Just Symbol "_psjpAddtional") NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 (HashMap Text Text))))

pySparkJobProperties Source #

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

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

DiagnoseClusterResults

data DiagnoseClusterResults Source #

The location of diagnostic output.

See: diagnoseClusterResults smart constructor.

Instances

Eq DiagnoseClusterResults Source # 
Data DiagnoseClusterResults Source # 

Methods

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

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

toConstr :: DiagnoseClusterResults -> Constr #

dataTypeOf :: DiagnoseClusterResults -> DataType #

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

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

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

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

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

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

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

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

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

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

Show DiagnoseClusterResults Source # 
Generic DiagnoseClusterResults Source # 
ToJSON DiagnoseClusterResults Source # 
FromJSON DiagnoseClusterResults Source # 
type Rep DiagnoseClusterResults Source # 
type Rep DiagnoseClusterResults = D1 (MetaData "DiagnoseClusterResults" "Network.Google.Dataproc.Types.Product" "gogol-dataproc-0.3.0-3PqxdosnOOKEHgZbCAggSw" True) (C1 (MetaCons "DiagnoseClusterResults'" PrefixI True) (S1 (MetaSel (Just Symbol "_dcrOutputURI") NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 (Maybe Text))))

diagnoseClusterResults :: DiagnoseClusterResults Source #

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

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

dcrOutputURI :: Lens' DiagnoseClusterResults (Maybe Text) Source #

Output-only
The Google Cloud Storage URI of the diagnostic output. The output report is a plain text file with a summary of collected diagnostics.

InstanceGroupConfig

data InstanceGroupConfig Source #

Optional
The config settings for Google Compute Engine resources in an instance group, such as a master or worker group.

See: instanceGroupConfig smart constructor.

Instances

Eq InstanceGroupConfig Source # 
Data InstanceGroupConfig Source # 

Methods

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

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

toConstr :: InstanceGroupConfig -> Constr #

dataTypeOf :: InstanceGroupConfig -> DataType #

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

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

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

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

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

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

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

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

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

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

Show InstanceGroupConfig Source # 
Generic InstanceGroupConfig Source # 
ToJSON InstanceGroupConfig Source # 
FromJSON InstanceGroupConfig Source # 
type Rep InstanceGroupConfig Source # 
type Rep InstanceGroupConfig = D1 (MetaData "InstanceGroupConfig" "Network.Google.Dataproc.Types.Product" "gogol-dataproc-0.3.0-3PqxdosnOOKEHgZbCAggSw" False) (C1 (MetaCons "InstanceGroupConfig'" PrefixI True) ((:*:) ((:*:) (S1 (MetaSel (Just Symbol "_igcNumInstances") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe (Textual Int32)))) ((:*:) (S1 (MetaSel (Just Symbol "_igcDiskConfig") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe DiskConfig))) (S1 (MetaSel (Just Symbol "_igcIsPreemptible") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Bool))))) ((:*:) ((:*:) (S1 (MetaSel (Just Symbol "_igcImageURI") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) (S1 (MetaSel (Just Symbol "_igcInstanceNames") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe [Text])))) ((:*:) (S1 (MetaSel (Just Symbol "_igcManagedGroupConfig") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe ManagedGroupConfig))) (S1 (MetaSel (Just Symbol "_igcMachineTypeURI") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)))))))

instanceGroupConfig :: InstanceGroupConfig Source #

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

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

igcNumInstances :: Lens' InstanceGroupConfig (Maybe Int32) Source #

Required
The number of VM instances in the instance group. For master instance groups, must be set to 1.

igcDiskConfig :: Lens' InstanceGroupConfig (Maybe DiskConfig) Source #

Optional
Disk option config settings.

igcIsPreemptible :: Lens' InstanceGroupConfig (Maybe Bool) Source #

Optional
Specifies that this instance group contains preemptible instances.

igcImageURI :: Lens' InstanceGroupConfig (Maybe Text) Source #

Output-only
The Google Compute Engine image resource used for cluster instances. Inferred from `SoftwareConfig.image_version`.

igcInstanceNames :: Lens' InstanceGroupConfig [Text] Source #

Optional
The list of instance names. Cloud Dataproc derives the names from `cluster_name`, `num_instances`, and the instance group if not set by user (recommended practice is to let Cloud Dataproc derive the name).

igcManagedGroupConfig :: Lens' InstanceGroupConfig (Maybe ManagedGroupConfig) Source #

Output-only
The config for Google Compute Engine Instance Group Manager that manages this group. This is only used for preemptible instance groups.

igcMachineTypeURI :: Lens' InstanceGroupConfig (Maybe Text) Source #

Required
The Google Compute Engine machine type used for cluster instances. Example: `https://www.googleapis.com/compute/v1/projects/[project_id]/zones/us-east1-a/machineTypes/n1-standard-2`.

SparkJob

data SparkJob Source #

A Cloud Dataproc job for running Apache Spark applications on YARN.

See: sparkJob smart constructor.

Instances

Eq SparkJob Source # 
Data SparkJob Source # 

Methods

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

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

toConstr :: SparkJob -> Constr #

dataTypeOf :: SparkJob -> DataType #

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

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

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

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

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

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

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

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

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

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

Show SparkJob Source # 
Generic SparkJob Source # 

Associated Types

type Rep SparkJob :: * -> * #

Methods

from :: SparkJob -> Rep SparkJob x #

to :: Rep SparkJob x -> SparkJob #

ToJSON SparkJob Source # 
FromJSON SparkJob Source # 
type Rep SparkJob Source # 

sparkJob :: SparkJob Source #

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

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

sjArgs :: Lens' SparkJob [Text] Source #

Optional
The arguments to pass to the driver. Do not include arguments, such as `--conf`, that can be set as job properties, since a collision may occur that causes an incorrect job submission.

sjMainJarFileURI :: Lens' SparkJob (Maybe Text) Source #

The HCFS URI of the jar file that contains the main class.

sjJarFileURIs :: Lens' SparkJob [Text] Source #

Optional
HCFS URIs of jar files to add to the CLASSPATHs of the Spark driver and tasks.

sjFileURIs :: Lens' SparkJob [Text] Source #

Optional
HCFS URIs of files to be copied to the working directory of Spark drivers and distributed tasks. Useful for naively parallel tasks.

sjArchiveURIs :: Lens' SparkJob [Text] Source #

Optional
HCFS URIs of archives to be extracted in the working directory of Spark drivers and tasks. Supported file types: .jar, .tar, .tar.gz, .tgz, and .zip.

sjMainClass :: Lens' SparkJob (Maybe Text) Source #

The name of the driver's main class. The jar file that contains the class must be in the default CLASSPATH or specified in `jar_file_uris`.

sjLoggingConfig :: Lens' SparkJob (Maybe LoggingConfig) Source #

Optional
The runtime log config for job execution.

sjProperties :: Lens' SparkJob (Maybe SparkJobProperties) Source #

Optional
A mapping of property names to values, used to configure Spark. Properties that conflict with values set by the Cloud Dataproc API may be overwritten. Can include properties set in /etc/spark/conf/spark-defaults.conf and classes in user code.

SoftwareConfigProperties

data SoftwareConfigProperties Source #

Optional
The properties to set on daemon config files. Property keys are specified in `prefix:property` format, such as `core:fs.defaultFS`. The following are supported prefixes and their mappings: * core: `core-site.xml` * hdfs: `hdfs-site.xml` * mapred: `mapred-site.xml` * yarn: `yarn-site.xml` * hive: `hive-site.xml` * pig: `pig.properties` * spark: `spark-defaults.conf`

See: softwareConfigProperties smart constructor.

Instances

Eq SoftwareConfigProperties Source # 
Data SoftwareConfigProperties Source # 

Methods

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

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

toConstr :: SoftwareConfigProperties -> Constr #

dataTypeOf :: SoftwareConfigProperties -> DataType #

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

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

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

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

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

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

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

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

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

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

Show SoftwareConfigProperties Source # 
Generic SoftwareConfigProperties Source # 
ToJSON SoftwareConfigProperties Source # 
FromJSON SoftwareConfigProperties Source # 
type Rep SoftwareConfigProperties Source # 
type Rep SoftwareConfigProperties = D1 (MetaData "SoftwareConfigProperties" "Network.Google.Dataproc.Types.Product" "gogol-dataproc-0.3.0-3PqxdosnOOKEHgZbCAggSw" True) (C1 (MetaCons "SoftwareConfigProperties'" PrefixI True) (S1 (MetaSel (Just Symbol "_scpAddtional") NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 (HashMap Text Text))))

softwareConfigProperties Source #

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

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

DiskConfig

data DiskConfig Source #

Specifies the config of disk options for a group of VM instances.

See: diskConfig smart constructor.

Instances

Eq DiskConfig Source # 
Data DiskConfig Source # 

Methods

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

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

toConstr :: DiskConfig -> Constr #

dataTypeOf :: DiskConfig -> DataType #

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

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

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

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

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

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

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

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

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

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

Show DiskConfig Source # 
Generic DiskConfig Source # 

Associated Types

type Rep DiskConfig :: * -> * #

ToJSON DiskConfig Source # 
FromJSON DiskConfig Source # 
type Rep DiskConfig Source # 
type Rep DiskConfig = D1 (MetaData "DiskConfig" "Network.Google.Dataproc.Types.Product" "gogol-dataproc-0.3.0-3PqxdosnOOKEHgZbCAggSw" False) (C1 (MetaCons "DiskConfig'" PrefixI True) ((:*:) (S1 (MetaSel (Just Symbol "_dcNumLocalSsds") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe (Textual Int32)))) (S1 (MetaSel (Just Symbol "_dcBootDiskSizeGb") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe (Textual Int32))))))

diskConfig :: DiskConfig Source #

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

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

dcNumLocalSsds :: Lens' DiskConfig (Maybe Int32) Source #

Optional
Number of attached SSDs, from 0 to 4 (default is 0). If SSDs are not attached, the boot disk is used to store runtime logs and
HDFS
(https://hadoop.apache.org/docs/r1.2.1/hdfs_user_guide.html) data. If one or more SSDs are attached, this runtime bulk data is spread across them, and the boot disk contains only basic config and installed binaries.

dcBootDiskSizeGb :: Lens' DiskConfig (Maybe Int32) Source #

Optional
Size in GB of the boot disk (default is 500GB).

ClusterOperationMetadataLabels

data ClusterOperationMetadataLabels Source #

Output-only
labels associated with the operation

See: clusterOperationMetadataLabels smart constructor.

Instances

Eq ClusterOperationMetadataLabels Source # 
Data ClusterOperationMetadataLabels Source # 

Methods

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

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

toConstr :: ClusterOperationMetadataLabels -> Constr #

dataTypeOf :: ClusterOperationMetadataLabels -> DataType #

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

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

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

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

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

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

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

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

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

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

Show ClusterOperationMetadataLabels Source # 
Generic ClusterOperationMetadataLabels Source # 
ToJSON ClusterOperationMetadataLabels Source # 
FromJSON ClusterOperationMetadataLabels Source # 
type Rep ClusterOperationMetadataLabels Source # 
type Rep ClusterOperationMetadataLabels = D1 (MetaData "ClusterOperationMetadataLabels" "Network.Google.Dataproc.Types.Product" "gogol-dataproc-0.3.0-3PqxdosnOOKEHgZbCAggSw" True) (C1 (MetaCons "ClusterOperationMetadataLabels'" PrefixI True) (S1 (MetaSel (Just Symbol "_comlAddtional") NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 (HashMap Text Text))))

clusterOperationMetadataLabels Source #

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

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

ListOperationsResponse

data ListOperationsResponse Source #

The response message for Operations.ListOperations.

See: listOperationsResponse smart constructor.

Instances

Eq ListOperationsResponse Source # 
Data ListOperationsResponse Source # 

Methods

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

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

toConstr :: ListOperationsResponse -> Constr #

dataTypeOf :: ListOperationsResponse -> DataType #

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

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

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

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

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

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

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

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

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

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

Show ListOperationsResponse Source # 
Generic ListOperationsResponse Source # 
ToJSON ListOperationsResponse Source # 
FromJSON ListOperationsResponse Source # 
type Rep ListOperationsResponse Source # 
type Rep ListOperationsResponse = D1 (MetaData "ListOperationsResponse" "Network.Google.Dataproc.Types.Product" "gogol-dataproc-0.3.0-3PqxdosnOOKEHgZbCAggSw" False) (C1 (MetaCons "ListOperationsResponse'" PrefixI True) ((:*:) (S1 (MetaSel (Just Symbol "_lorNextPageToken") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) (S1 (MetaSel (Just Symbol "_lorOperations") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe [Operation])))))

listOperationsResponse :: ListOperationsResponse Source #

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

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

lorNextPageToken :: Lens' ListOperationsResponse (Maybe Text) Source #

The standard List next-page token.

lorOperations :: Lens' ListOperationsResponse [Operation] Source #

A list of operations that matches the specified filter in the request.

HiveJobScriptVariables

data HiveJobScriptVariables Source #

Optional
Mapping of query variable names to values (equivalent to the Hive command: `SET name="value";`).

See: hiveJobScriptVariables smart constructor.

Instances

Eq HiveJobScriptVariables Source # 
Data HiveJobScriptVariables Source # 

Methods

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

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

toConstr :: HiveJobScriptVariables -> Constr #

dataTypeOf :: HiveJobScriptVariables -> DataType #

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

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

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

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

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

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

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

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

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

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

Show HiveJobScriptVariables Source # 
Generic HiveJobScriptVariables Source # 
ToJSON HiveJobScriptVariables Source # 
FromJSON HiveJobScriptVariables Source # 
type Rep HiveJobScriptVariables Source # 
type Rep HiveJobScriptVariables = D1 (MetaData "HiveJobScriptVariables" "Network.Google.Dataproc.Types.Product" "gogol-dataproc-0.3.0-3PqxdosnOOKEHgZbCAggSw" True) (C1 (MetaCons "HiveJobScriptVariables'" PrefixI True) (S1 (MetaSel (Just Symbol "_hjsvAddtional") NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 (HashMap Text Text))))

hiveJobScriptVariables Source #

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

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

Cluster

data Cluster Source #

Describes the identifying information, config, and status of a cluster of Google Compute Engine instances.

See: cluster smart constructor.

Instances

Eq Cluster Source # 

Methods

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

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

Data Cluster Source # 

Methods

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

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

toConstr :: Cluster -> Constr #

dataTypeOf :: Cluster -> DataType #

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

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

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

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

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

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

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

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

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

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

Show Cluster Source # 
Generic Cluster Source # 

Associated Types

type Rep Cluster :: * -> * #

Methods

from :: Cluster -> Rep Cluster x #

to :: Rep Cluster x -> Cluster #

ToJSON Cluster Source # 
FromJSON Cluster Source # 
type Rep Cluster Source # 

cluster :: Cluster Source #

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

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

cStatus :: Lens' Cluster (Maybe ClusterStatus) Source #

Output-only
Cluster status.

cMetrics :: Lens' Cluster (Maybe ClusterMetrics) Source #

Contains cluster daemon metrics such as HDFS and YARN stats. **Beta Feature**: This report is available for testing purposes only. It may be changed before final release.

cClusterUuid :: Lens' Cluster (Maybe Text) Source #

Output-only
A cluster UUID (Unique Universal Identifier). Cloud Dataproc generates this value when it creates the cluster.

cConfig :: Lens' Cluster (Maybe ClusterConfig) Source #

Required
The cluster config. Note that Cloud Dataproc may set default values, and values may change when clusters are updated.

cClusterName :: Lens' Cluster (Maybe Text) Source #

Required
The cluster name. Cluster names within a project must be unique. Names of deleted clusters can be reused.

cLabels :: Lens' Cluster (Maybe ClusterLabels) Source #

Optional
The labels to associate with this cluster. Label **keys** must contain 1 to 63 characters, and must conform to RFC 1035. Label **values** may be empty, but, if present, must contain 1 to 63 characters, and must conform to RFC 1035. No more than 32 labels can be associated with a cluster.

cProjectId :: Lens' Cluster (Maybe Text) Source #

Required
The Google Cloud Platform project ID that the cluster belongs to.

cStatusHistory :: Lens' Cluster [ClusterStatus] Source #

Output-only
The previous cluster status.

JobLabels

data JobLabels Source #

Optional
The labels to associate with this job. Label **keys** must contain 1 to 63 characters, and must conform to RFC 1035. Label **values** may be empty, but, if present, must contain 1 to 63 characters, and must conform to RFC 1035. No more than 32 labels can be associated with a job.

See: jobLabels smart constructor.

Instances

Eq JobLabels Source # 
Data JobLabels Source # 

Methods

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

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

toConstr :: JobLabels -> Constr #

dataTypeOf :: JobLabels -> DataType #

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

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

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

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

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

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

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

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

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

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

Show JobLabels Source # 
Generic JobLabels Source # 

Associated Types

type Rep JobLabels :: * -> * #

ToJSON JobLabels Source # 
FromJSON JobLabels Source # 
type Rep JobLabels Source # 
type Rep JobLabels = D1 (MetaData "JobLabels" "Network.Google.Dataproc.Types.Product" "gogol-dataproc-0.3.0-3PqxdosnOOKEHgZbCAggSw" True) (C1 (MetaCons "JobLabels'" PrefixI True) (S1 (MetaSel (Just Symbol "_jlAddtional") NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 (HashMap Text Text))))

jobLabels Source #

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

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

SubmitJobRequest

data SubmitJobRequest Source #

A request to submit a job.

See: submitJobRequest smart constructor.

Instances

Eq SubmitJobRequest Source # 
Data SubmitJobRequest Source # 

Methods

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

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

toConstr :: SubmitJobRequest -> Constr #

dataTypeOf :: SubmitJobRequest -> DataType #

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

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

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

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

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

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

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

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

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

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

Show SubmitJobRequest Source # 
Generic SubmitJobRequest Source # 
ToJSON SubmitJobRequest Source # 
FromJSON SubmitJobRequest Source # 
type Rep SubmitJobRequest Source # 
type Rep SubmitJobRequest = D1 (MetaData "SubmitJobRequest" "Network.Google.Dataproc.Types.Product" "gogol-dataproc-0.3.0-3PqxdosnOOKEHgZbCAggSw" True) (C1 (MetaCons "SubmitJobRequest'" PrefixI True) (S1 (MetaSel (Just Symbol "_sjrJob") NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 (Maybe Job))))

submitJobRequest :: SubmitJobRequest Source #

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

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

sjrJob :: Lens' SubmitJobRequest (Maybe Job) Source #

Required
The job resource.

ClusterMetrics

data ClusterMetrics Source #

Contains cluster daemon metrics, such as HDFS and YARN stats. **Beta Feature**: This report is available for testing purposes only. It may be changed before final release.

See: clusterMetrics smart constructor.

Instances

Eq ClusterMetrics Source # 
Data ClusterMetrics Source # 

Methods

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

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

toConstr :: ClusterMetrics -> Constr #

dataTypeOf :: ClusterMetrics -> DataType #

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

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

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

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

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

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

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

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

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

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

Show ClusterMetrics Source # 
Generic ClusterMetrics Source # 

Associated Types

type Rep ClusterMetrics :: * -> * #

ToJSON ClusterMetrics Source # 
FromJSON ClusterMetrics Source # 
type Rep ClusterMetrics Source # 
type Rep ClusterMetrics = D1 (MetaData "ClusterMetrics" "Network.Google.Dataproc.Types.Product" "gogol-dataproc-0.3.0-3PqxdosnOOKEHgZbCAggSw" False) (C1 (MetaCons "ClusterMetrics'" PrefixI True) ((:*:) (S1 (MetaSel (Just Symbol "_cmYarnMetrics") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe ClusterMetricsYarnMetrics))) (S1 (MetaSel (Just Symbol "_cmHdfsMetrics") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe ClusterMetricsHdfsMetrics)))))

clusterMetrics :: ClusterMetrics Source #

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

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

Operation

data Operation Source #

This resource represents a long-running operation that is the result of a network API call.

See: operation smart constructor.

Instances

Eq Operation Source # 
Data Operation Source # 

Methods

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

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

toConstr :: Operation -> Constr #

dataTypeOf :: Operation -> DataType #

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

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

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

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

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

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

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

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

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

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

Show Operation Source # 
Generic Operation Source # 

Associated Types

type Rep Operation :: * -> * #

ToJSON Operation Source # 
FromJSON Operation Source # 
type Rep Operation Source # 

operation :: Operation Source #

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

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

oDone :: Lens' Operation (Maybe Bool) Source #

If the value is `false`, it means the operation is still in progress. If true, the operation is completed, and either `error` or `response` is available.

oError :: Lens' Operation (Maybe Status) Source #

The error result of the operation in case of failure or cancellation.

oResponse :: Lens' Operation (Maybe OperationResponse) Source #

The normal response of the operation in case of success. If the original method returns no data on success, such as `Delete`, the response is `google.protobuf.Empty`. If the original method is standard `Get`/`Create`/`Update`, the response should be the resource. For other methods, the response should have the type `XxxResponse`, where `Xxx` is the original method name. For example, if the original method name is `TakeSnapshot()`, the inferred response type is `TakeSnapshotResponse`.

oName :: Lens' Operation (Maybe Text) Source #

The server-assigned name, which is only unique within the same service that originally returns it. If you use the default HTTP mapping, the `name` should have the format of `operations/some/unique/name`.

oMetadata :: Lens' Operation (Maybe OperationSchema) Source #

Service-specific metadata associated with the operation. It typically contains progress information and common metadata such as create time. Some services might not provide such metadata. Any method that returns a long-running operation should document the metadata type, if any.

Empty

data Empty Source #

A generic empty message that you can re-use to avoid defining duplicated empty messages in your APIs. A typical example is to use it as the request or the response type of an API method. For instance: service Foo { rpc Bar(google.protobuf.Empty) returns (google.protobuf.Empty); } The JSON representation for `Empty` is empty JSON object `{}`.

See: empty smart constructor.

Instances

Eq Empty Source # 

Methods

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

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

Data Empty Source # 

Methods

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

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

toConstr :: Empty -> Constr #

dataTypeOf :: Empty -> DataType #

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

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

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

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

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

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

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

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

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

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

Show Empty Source # 

Methods

showsPrec :: Int -> Empty -> ShowS #

show :: Empty -> String #

showList :: [Empty] -> ShowS #

Generic Empty Source # 

Associated Types

type Rep Empty :: * -> * #

Methods

from :: Empty -> Rep Empty x #

to :: Rep Empty x -> Empty #

ToJSON Empty Source # 
FromJSON Empty Source # 
type Rep Empty Source # 
type Rep Empty = D1 (MetaData "Empty" "Network.Google.Dataproc.Types.Product" "gogol-dataproc-0.3.0-3PqxdosnOOKEHgZbCAggSw" False) (C1 (MetaCons "Empty'" PrefixI False) U1)

empty :: Empty Source #

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

HiveJob

data HiveJob Source #

A Cloud Dataproc job for running Apache Hive queries on YARN.

See: hiveJob smart constructor.

Instances

Eq HiveJob Source # 

Methods

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

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

Data HiveJob Source # 

Methods

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

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

toConstr :: HiveJob -> Constr #

dataTypeOf :: HiveJob -> DataType #

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

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

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

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

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

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

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

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

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

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

Show HiveJob Source # 
Generic HiveJob Source # 

Associated Types

type Rep HiveJob :: * -> * #

Methods

from :: HiveJob -> Rep HiveJob x #

to :: Rep HiveJob x -> HiveJob #

ToJSON HiveJob Source # 
FromJSON HiveJob Source # 
type Rep HiveJob Source # 

hiveJob :: HiveJob Source #

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

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

hjQueryFileURI :: Lens' HiveJob (Maybe Text) Source #

The HCFS URI of the script that contains Hive queries.

hjJarFileURIs :: Lens' HiveJob [Text] Source #

Optional
HCFS URIs of jar files to add to the CLASSPATH of the Hive server and Hadoop MapReduce (MR) tasks. Can contain Hive SerDes and UDFs.

hjScriptVariables :: Lens' HiveJob (Maybe HiveJobScriptVariables) Source #

Optional
Mapping of query variable names to values (equivalent to the Hive command: `SET name="value";`).

hjContinueOnFailure :: Lens' HiveJob (Maybe Bool) Source #

Optional
Whether to continue executing queries if a query fails. The default value is `false`. Setting to `true` can be useful when executing independent parallel queries.

hjProperties :: Lens' HiveJob (Maybe HiveJobProperties) Source #

Optional
A mapping of property names and values, used to configure Hive. Properties that conflict with values set by the Cloud Dataproc API may be overwritten. Can include properties set in /etc/hadoop/conf/*-site.xml, /etc/hive/conf/hive-site.xml, and classes in user code.

SparkSQLJobScriptVariables

data SparkSQLJobScriptVariables Source #

Optional
Mapping of query variable names to values (equivalent to the Spark SQL command: SET `name="value";`).

See: sparkSQLJobScriptVariables smart constructor.

Instances

Eq SparkSQLJobScriptVariables Source # 
Data SparkSQLJobScriptVariables Source # 

Methods

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

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

toConstr :: SparkSQLJobScriptVariables -> Constr #

dataTypeOf :: SparkSQLJobScriptVariables -> DataType #

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

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

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

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

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

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

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

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

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

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

Show SparkSQLJobScriptVariables Source # 
Generic SparkSQLJobScriptVariables Source # 
ToJSON SparkSQLJobScriptVariables Source # 
FromJSON SparkSQLJobScriptVariables Source # 
type Rep SparkSQLJobScriptVariables Source # 
type Rep SparkSQLJobScriptVariables = D1 (MetaData "SparkSQLJobScriptVariables" "Network.Google.Dataproc.Types.Product" "gogol-dataproc-0.3.0-3PqxdosnOOKEHgZbCAggSw" True) (C1 (MetaCons "SparkSQLJobScriptVariables'" PrefixI True) (S1 (MetaSel (Just Symbol "_ssqljsvAddtional") NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 (HashMap Text Text))))

sparkSQLJobScriptVariables Source #

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

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

PigJobProperties

data PigJobProperties Source #

Optional
A mapping of property names to values, used to configure Pig. Properties that conflict with values set by the Cloud Dataproc API may be overwritten. Can include properties set in /etc/hadoop/conf/*-site.xml, /etc/pig/conf/pig.properties, and classes in user code.

See: pigJobProperties smart constructor.

Instances

Eq PigJobProperties Source # 
Data PigJobProperties Source # 

Methods

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

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

toConstr :: PigJobProperties -> Constr #

dataTypeOf :: PigJobProperties -> DataType #

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

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

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

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

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

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

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

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

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

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

Show PigJobProperties Source # 
Generic PigJobProperties Source # 
ToJSON PigJobProperties Source # 
FromJSON PigJobProperties Source # 
type Rep PigJobProperties Source # 
type Rep PigJobProperties = D1 (MetaData "PigJobProperties" "Network.Google.Dataproc.Types.Product" "gogol-dataproc-0.3.0-3PqxdosnOOKEHgZbCAggSw" True) (C1 (MetaCons "PigJobProperties'" PrefixI True) (S1 (MetaSel (Just Symbol "_pjpAddtional") NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 (HashMap Text Text))))

pigJobProperties Source #

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

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

ClusterConfig

data ClusterConfig Source #

The cluster config.

See: clusterConfig smart constructor.

Instances

Eq ClusterConfig Source # 
Data ClusterConfig Source # 

Methods

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

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

toConstr :: ClusterConfig -> Constr #

dataTypeOf :: ClusterConfig -> DataType #

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

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

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

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

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

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

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

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

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

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

Show ClusterConfig Source # 
Generic ClusterConfig Source # 

Associated Types

type Rep ClusterConfig :: * -> * #

ToJSON ClusterConfig Source # 
FromJSON ClusterConfig Source # 
type Rep ClusterConfig Source # 

clusterConfig :: ClusterConfig Source #

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

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

ccWorkerConfig :: Lens' ClusterConfig (Maybe InstanceGroupConfig) Source #

Optional
The Google Compute Engine config settings for worker instances in a cluster.

ccInitializationActions :: Lens' ClusterConfig [NodeInitializationAction] Source #

Optional
Commands to execute on each node after config is completed. By default, executables are run on master and all worker nodes. You can test a node's role metadata to run an executable on a master or worker node, as shown below using `curl` (you can also use `wget`): ROLE=$(curl -H Metadata-Flavor:Google http://metadata/computeMetadata/v1/instance/attributes/dataproc-role) if [[ "${ROLE}" == 'Master' ]]; then ... master specific actions ... else ... worker specific actions ... fi

ccMasterConfig :: Lens' ClusterConfig (Maybe InstanceGroupConfig) Source #

Optional
The Google Compute Engine config settings for the master instance in a cluster.

ccGceClusterConfig :: Lens' ClusterConfig (Maybe GceClusterConfig) Source #

Required
The shared Google Compute Engine config settings for all instances in a cluster.

ccConfigBucket :: Lens' ClusterConfig (Maybe Text) Source #

Optional
A Google Cloud Storage staging bucket used for sharing generated SSH keys and config. If you do not specify a staging bucket, Cloud Dataproc will determine an appropriate Cloud Storage location (US, ASIA, or EU) for your cluster's staging bucket according to the Google Compute Engine zone where your cluster is deployed, and then it will create and manage this project-level, per-location bucket for you.

ccSoftwareConfig :: Lens' ClusterConfig (Maybe SoftwareConfig) Source #

Optional
The config settings for software inside the cluster.

ccSecondaryWorkerConfig :: Lens' ClusterConfig (Maybe InstanceGroupConfig) Source #

Optional
The Google Compute Engine config settings for additional worker instances in a cluster.

HadoopJobProperties

data HadoopJobProperties Source #

Optional
A mapping of property names to values, used to configure Hadoop. Properties that conflict with values set by the Cloud Dataproc API may be overwritten. Can include properties set in /etc/hadoop/conf/*-site and classes in user code.

See: hadoopJobProperties smart constructor.

Instances

Eq HadoopJobProperties Source # 
Data HadoopJobProperties Source # 

Methods

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

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

toConstr :: HadoopJobProperties -> Constr #

dataTypeOf :: HadoopJobProperties -> DataType #

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

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

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

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

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

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

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

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

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

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

Show HadoopJobProperties Source # 
Generic HadoopJobProperties Source # 
ToJSON HadoopJobProperties Source # 
FromJSON HadoopJobProperties Source # 
type Rep HadoopJobProperties Source # 
type Rep HadoopJobProperties = D1 (MetaData "HadoopJobProperties" "Network.Google.Dataproc.Types.Product" "gogol-dataproc-0.3.0-3PqxdosnOOKEHgZbCAggSw" True) (C1 (MetaCons "HadoopJobProperties'" PrefixI True) (S1 (MetaSel (Just Symbol "_hjpAddtional") NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 (HashMap Text Text))))

hadoopJobProperties Source #

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

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

ClusterOperationStatus

data ClusterOperationStatus Source #

The status of the operation.

See: clusterOperationStatus smart constructor.

Instances

Eq ClusterOperationStatus Source # 
Data ClusterOperationStatus Source # 

Methods

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

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

toConstr :: ClusterOperationStatus -> Constr #

dataTypeOf :: ClusterOperationStatus -> DataType #

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

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

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

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

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

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

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

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

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

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

Show ClusterOperationStatus Source # 
Generic ClusterOperationStatus Source # 
ToJSON ClusterOperationStatus Source # 
FromJSON ClusterOperationStatus Source # 
type Rep ClusterOperationStatus Source # 
type Rep ClusterOperationStatus = D1 (MetaData "ClusterOperationStatus" "Network.Google.Dataproc.Types.Product" "gogol-dataproc-0.3.0-3PqxdosnOOKEHgZbCAggSw" False) (C1 (MetaCons "ClusterOperationStatus'" PrefixI True) ((:*:) ((:*:) (S1 (MetaSel (Just Symbol "_cosState") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) (S1 (MetaSel (Just Symbol "_cosInnerState") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)))) ((:*:) (S1 (MetaSel (Just Symbol "_cosStateStartTime") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) (S1 (MetaSel (Just Symbol "_cosDetails") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))))))

clusterOperationStatus :: ClusterOperationStatus Source #

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

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

cosState :: Lens' ClusterOperationStatus (Maybe Text) Source #

Output-only
A message containing the operation state.

cosInnerState :: Lens' ClusterOperationStatus (Maybe Text) Source #

Output-only
A message containing the detailed operation state.

cosStateStartTime :: Lens' ClusterOperationStatus (Maybe Text) Source #

Output-only
The time this state was entered.

cosDetails :: Lens' ClusterOperationStatus (Maybe Text) Source #

Output-only
A message containing any operation metadata details.

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.Dataproc.Types.Product" "gogol-dataproc-0.3.0-3PqxdosnOOKEHgZbCAggSw" 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 'type with type URL.

SparkSQLJobProperties

data SparkSQLJobProperties Source #

Optional
A mapping of property names to values, used to configure Spark SQL's SparkConf. Properties that conflict with values set by the Cloud Dataproc API may be overwritten.

See: sparkSQLJobProperties smart constructor.

Instances

Eq SparkSQLJobProperties Source # 
Data SparkSQLJobProperties Source # 

Methods

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

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

toConstr :: SparkSQLJobProperties -> Constr #

dataTypeOf :: SparkSQLJobProperties -> DataType #

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

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

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

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

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

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

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

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

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

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

Show SparkSQLJobProperties Source # 
Generic SparkSQLJobProperties Source # 
ToJSON SparkSQLJobProperties Source # 
FromJSON SparkSQLJobProperties Source # 
type Rep SparkSQLJobProperties Source # 
type Rep SparkSQLJobProperties = D1 (MetaData "SparkSQLJobProperties" "Network.Google.Dataproc.Types.Product" "gogol-dataproc-0.3.0-3PqxdosnOOKEHgZbCAggSw" True) (C1 (MetaCons "SparkSQLJobProperties'" PrefixI True) (S1 (MetaSel (Just Symbol "_ssqljpAddtional") NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 (HashMap Text Text))))

sparkSQLJobProperties Source #

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

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

NodeInitializationAction

data NodeInitializationAction Source #

Specifies an executable to run on a fully configured node and a timeout period for executable completion.

See: nodeInitializationAction smart constructor.

Instances

Eq NodeInitializationAction Source # 
Data NodeInitializationAction Source # 

Methods

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

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

toConstr :: NodeInitializationAction -> Constr #

dataTypeOf :: NodeInitializationAction -> DataType #

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

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

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

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

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

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

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

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

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

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

Show NodeInitializationAction Source # 
Generic NodeInitializationAction Source # 
ToJSON NodeInitializationAction Source # 
FromJSON NodeInitializationAction Source # 
type Rep NodeInitializationAction Source # 
type Rep NodeInitializationAction = D1 (MetaData "NodeInitializationAction" "Network.Google.Dataproc.Types.Product" "gogol-dataproc-0.3.0-3PqxdosnOOKEHgZbCAggSw" False) (C1 (MetaCons "NodeInitializationAction'" PrefixI True) ((:*:) (S1 (MetaSel (Just Symbol "_niaExecutionTimeout") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) (S1 (MetaSel (Just Symbol "_niaExecutableFile") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)))))

nodeInitializationAction :: NodeInitializationAction Source #

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

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

niaExecutionTimeout :: Lens' NodeInitializationAction (Maybe Text) Source #

Optional
Amount of time executable has to complete. Default is 10 minutes. Cluster creation fails with an explanatory error message (the name of the executable that caused the error and the exceeded timeout period) if the executable is not completed at end of the timeout period.

niaExecutableFile :: Lens' NodeInitializationAction (Maybe Text) Source #

Required
Google Cloud Storage URI of executable file.

ClusterMetricsYarnMetrics

data ClusterMetricsYarnMetrics Source #

The YARN metrics.

See: clusterMetricsYarnMetrics smart constructor.

Instances

Eq ClusterMetricsYarnMetrics Source # 
Data ClusterMetricsYarnMetrics Source # 

Methods

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

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

toConstr :: ClusterMetricsYarnMetrics -> Constr #

dataTypeOf :: ClusterMetricsYarnMetrics -> DataType #

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

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

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

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

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

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

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

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

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

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

Show ClusterMetricsYarnMetrics Source # 
Generic ClusterMetricsYarnMetrics Source # 
ToJSON ClusterMetricsYarnMetrics Source # 
FromJSON ClusterMetricsYarnMetrics Source # 
type Rep ClusterMetricsYarnMetrics Source # 
type Rep ClusterMetricsYarnMetrics = D1 (MetaData "ClusterMetricsYarnMetrics" "Network.Google.Dataproc.Types.Product" "gogol-dataproc-0.3.0-3PqxdosnOOKEHgZbCAggSw" True) (C1 (MetaCons "ClusterMetricsYarnMetrics'" PrefixI True) (S1 (MetaSel (Just Symbol "_cmymAddtional") NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 (HashMap Text (Textual Int64)))))

clusterMetricsYarnMetrics Source #

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

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

JobPlacement

data JobPlacement Source #

Cloud Dataproc job config.

See: jobPlacement smart constructor.

Instances

Eq JobPlacement Source # 
Data JobPlacement Source # 

Methods

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

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

toConstr :: JobPlacement -> Constr #

dataTypeOf :: JobPlacement -> DataType #

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

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

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

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

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

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

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

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

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

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

Show JobPlacement Source # 
Generic JobPlacement Source # 

Associated Types

type Rep JobPlacement :: * -> * #

ToJSON JobPlacement Source # 
FromJSON JobPlacement Source # 
type Rep JobPlacement Source # 
type Rep JobPlacement = D1 (MetaData "JobPlacement" "Network.Google.Dataproc.Types.Product" "gogol-dataproc-0.3.0-3PqxdosnOOKEHgZbCAggSw" False) (C1 (MetaCons "JobPlacement'" PrefixI True) ((:*:) (S1 (MetaSel (Just Symbol "_jpClusterUuid") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) (S1 (MetaSel (Just Symbol "_jpClusterName") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)))))

jobPlacement :: JobPlacement Source #

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

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

jpClusterUuid :: Lens' JobPlacement (Maybe Text) Source #

Output-only
A cluster UUID generated by the Cloud Dataproc service when the job is submitted.

jpClusterName :: Lens' JobPlacement (Maybe Text) Source #

Required
The name of the cluster where the job will be submitted.

GceClusterConfig

data GceClusterConfig Source #

Common config settings for resources of Google Compute Engine cluster instances, applicable to all instances in the cluster.

See: gceClusterConfig smart constructor.

Instances

Eq GceClusterConfig Source # 
Data GceClusterConfig Source # 

Methods

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

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

toConstr :: GceClusterConfig -> Constr #

dataTypeOf :: GceClusterConfig -> DataType #

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

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

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

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

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

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

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

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

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

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

Show GceClusterConfig Source # 
Generic GceClusterConfig Source # 
ToJSON GceClusterConfig Source # 
FromJSON GceClusterConfig Source # 
type Rep GceClusterConfig Source # 
type Rep GceClusterConfig = D1 (MetaData "GceClusterConfig" "Network.Google.Dataproc.Types.Product" "gogol-dataproc-0.3.0-3PqxdosnOOKEHgZbCAggSw" False) (C1 (MetaCons "GceClusterConfig'" PrefixI True) ((:*:) ((:*:) (S1 (MetaSel (Just Symbol "_gccSubnetworkURI") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) ((:*:) (S1 (MetaSel (Just Symbol "_gccInternalIPOnly") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Bool))) (S1 (MetaSel (Just Symbol "_gccNetworkURI") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))))) ((:*:) ((:*:) (S1 (MetaSel (Just Symbol "_gccZoneURI") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) (S1 (MetaSel (Just Symbol "_gccMetadata") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe GceClusterConfigMetadata)))) ((:*:) (S1 (MetaSel (Just Symbol "_gccServiceAccountScopes") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe [Text]))) (S1 (MetaSel (Just Symbol "_gccTags") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe [Text])))))))

gceClusterConfig :: GceClusterConfig Source #

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

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

gccSubnetworkURI :: Lens' GceClusterConfig (Maybe Text) Source #

Optional
The Google Compute Engine subnetwork to be used for machine communications. Cannot be specified with network_uri. Example: `https://www.googleapis.com/compute/v1/projects/[project_id]/regions/us-east1/sub0`.

gccInternalIPOnly :: Lens' GceClusterConfig (Maybe Bool) Source #

Optional
If true, all instances in the cluster will only have internal IP addresses. By default, clusters are not restricted to internal IP addresses, and will have ephemeral external IP addresses assigned to each instance. This `internal_ip_only` restriction can only be enabled for subnetwork enabled networks, and all off-cluster dependencies must be configured to be accessible without external IP addresses.

gccNetworkURI :: Lens' GceClusterConfig (Maybe Text) Source #

Optional
The Google Compute Engine network to be used for machine communications. Cannot be specified with subnetwork_uri. If neither `network_uri` nor `subnetwork_uri` is specified, the "default" network of the project is used, if it exists. Cannot be a "Custom Subnet Network" (see Using Subnetworks for more information). Example: `https://www.googleapis.com/compute/v1/projects/[project_id]/regions/global/default`.

gccZoneURI :: Lens' GceClusterConfig (Maybe Text) Source #

Required
The zone where the Google Compute Engine cluster will be located. Example: `https://www.googleapis.com/compute/v1/projects/[project_id]/zones/[zone]`.

gccMetadata :: Lens' GceClusterConfig (Maybe GceClusterConfigMetadata) Source #

The Google Compute Engine metadata entries to add to all instances (see Project and instance metadata).

gccServiceAccountScopes :: Lens' GceClusterConfig [Text] Source #

Optional
The URIs of service account scopes to be included in Google Compute Engine instances. The following base set of scopes is always included: * https://www.googleapis.com/auth/cloud.useraccounts.readonly * https://www.googleapis.com/auth/devstorage.read_write * https://www.googleapis.com/auth/logging.write If no scopes are specified, the following defaults are also provided: * https://www.googleapis.com/auth/bigquery * https://www.googleapis.com/auth/bigtable.admin.table * https://www.googleapis.com/auth/bigtable.data * https://www.googleapis.com/auth/devstorage.full_control

gccTags :: Lens' GceClusterConfig [Text] Source #

The Google Compute Engine tags to add to all instances (see Tagging instances).

OperationStatus

data OperationStatus Source #

The status of the operation.

See: operationStatus smart constructor.

Instances

Eq OperationStatus Source # 
Data OperationStatus Source # 

Methods

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

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

toConstr :: OperationStatus -> Constr #

dataTypeOf :: OperationStatus -> DataType #

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

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

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

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

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

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

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

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

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

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

Show OperationStatus Source # 
Generic OperationStatus Source # 
ToJSON OperationStatus Source # 
FromJSON OperationStatus Source # 
type Rep OperationStatus Source # 
type Rep OperationStatus = D1 (MetaData "OperationStatus" "Network.Google.Dataproc.Types.Product" "gogol-dataproc-0.3.0-3PqxdosnOOKEHgZbCAggSw" False) (C1 (MetaCons "OperationStatus'" PrefixI True) ((:*:) ((:*:) (S1 (MetaSel (Just Symbol "_osState") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) (S1 (MetaSel (Just Symbol "_osInnerState") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)))) ((:*:) (S1 (MetaSel (Just Symbol "_osStateStartTime") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) (S1 (MetaSel (Just Symbol "_osDetails") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))))))

operationStatus :: OperationStatus Source #

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

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

osState :: Lens' OperationStatus (Maybe Text) Source #

A message containing the operation state.

osInnerState :: Lens' OperationStatus (Maybe Text) Source #

A message containing the detailed operation state.

osStateStartTime :: Lens' OperationStatus (Maybe Text) Source #

The time this state was entered.

osDetails :: Lens' OperationStatus (Maybe Text) Source #

A message containing any operation metadata details.

GceClusterConfigMetadata

data GceClusterConfigMetadata Source #

The Google Compute Engine metadata entries to add to all instances (see Project and instance metadata).

See: gceClusterConfigMetadata smart constructor.

Instances

Eq GceClusterConfigMetadata Source # 
Data GceClusterConfigMetadata Source # 

Methods

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

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

toConstr :: GceClusterConfigMetadata -> Constr #

dataTypeOf :: GceClusterConfigMetadata -> DataType #

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

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

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

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

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

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

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

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

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

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

Show GceClusterConfigMetadata Source # 
Generic GceClusterConfigMetadata Source # 
ToJSON GceClusterConfigMetadata Source # 
FromJSON GceClusterConfigMetadata Source # 
type Rep GceClusterConfigMetadata Source # 
type Rep GceClusterConfigMetadata = D1 (MetaData "GceClusterConfigMetadata" "Network.Google.Dataproc.Types.Product" "gogol-dataproc-0.3.0-3PqxdosnOOKEHgZbCAggSw" True) (C1 (MetaCons "GceClusterConfigMetadata'" PrefixI True) (S1 (MetaSel (Just Symbol "_gccmAddtional") NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 (HashMap Text Text))))

gceClusterConfigMetadata Source #

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

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

HiveJobProperties

data HiveJobProperties Source #

Optional
A mapping of property names and values, used to configure Hive. Properties that conflict with values set by the Cloud Dataproc API may be overwritten. Can include properties set in /etc/hadoop/conf/*-site.xml, /etc/hive/conf/hive-site.xml, and classes in user code.

See: hiveJobProperties smart constructor.

Instances

Eq HiveJobProperties Source # 
Data HiveJobProperties Source # 

Methods

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

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

toConstr :: HiveJobProperties -> Constr #

dataTypeOf :: HiveJobProperties -> DataType #

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

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

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

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

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

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

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

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

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

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

Show HiveJobProperties Source # 
Generic HiveJobProperties Source # 
ToJSON HiveJobProperties Source # 
FromJSON HiveJobProperties Source # 
type Rep HiveJobProperties Source # 
type Rep HiveJobProperties = D1 (MetaData "HiveJobProperties" "Network.Google.Dataproc.Types.Product" "gogol-dataproc-0.3.0-3PqxdosnOOKEHgZbCAggSw" True) (C1 (MetaCons "HiveJobProperties'" PrefixI True) (S1 (MetaSel (Just Symbol "_hAddtional") NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 (HashMap Text Text))))

hiveJobProperties Source #

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

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

DiagnoseClusterOutputLocation

data DiagnoseClusterOutputLocation Source #

The location where output from diagnostic command can be found.

See: diagnoseClusterOutputLocation smart constructor.

Instances

Eq DiagnoseClusterOutputLocation Source # 
Data DiagnoseClusterOutputLocation Source # 

Methods

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

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

toConstr :: DiagnoseClusterOutputLocation -> Constr #

dataTypeOf :: DiagnoseClusterOutputLocation -> DataType #

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

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

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

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

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

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

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

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

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

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

Show DiagnoseClusterOutputLocation Source # 
Generic DiagnoseClusterOutputLocation Source # 
ToJSON DiagnoseClusterOutputLocation Source # 
FromJSON DiagnoseClusterOutputLocation Source # 
type Rep DiagnoseClusterOutputLocation Source # 
type Rep DiagnoseClusterOutputLocation = D1 (MetaData "DiagnoseClusterOutputLocation" "Network.Google.Dataproc.Types.Product" "gogol-dataproc-0.3.0-3PqxdosnOOKEHgZbCAggSw" True) (C1 (MetaCons "DiagnoseClusterOutputLocation'" PrefixI True) (S1 (MetaSel (Just Symbol "_dcolOutputURI") NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 (Maybe Text))))

diagnoseClusterOutputLocation :: DiagnoseClusterOutputLocation Source #

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

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

dcolOutputURI :: Lens' DiagnoseClusterOutputLocation (Maybe Text) Source #

Output-only
The Google Cloud Storage URI of the diagnostic output. This will be a plain text file with summary of collected diagnostics.

ClusterLabels

data ClusterLabels Source #

Optional
The labels to associate with this cluster. Label **keys** must contain 1 to 63 characters, and must conform to RFC 1035. Label **values** may be empty, but, if present, must contain 1 to 63 characters, and must conform to RFC 1035. No more than 32 labels can be associated with a cluster.

See: clusterLabels smart constructor.

Instances

Eq ClusterLabels Source # 
Data ClusterLabels Source # 

Methods

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

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

toConstr :: ClusterLabels -> Constr #

dataTypeOf :: ClusterLabels -> DataType #

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

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

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

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

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

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

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

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

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

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

Show ClusterLabels Source # 
Generic ClusterLabels Source # 

Associated Types

type Rep ClusterLabels :: * -> * #

ToJSON ClusterLabels Source # 
FromJSON ClusterLabels Source # 
type Rep ClusterLabels Source # 
type Rep ClusterLabels = D1 (MetaData "ClusterLabels" "Network.Google.Dataproc.Types.Product" "gogol-dataproc-0.3.0-3PqxdosnOOKEHgZbCAggSw" True) (C1 (MetaCons "ClusterLabels'" PrefixI True) (S1 (MetaSel (Just Symbol "_clAddtional") NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 (HashMap Text Text))))

clusterLabels Source #

Creates a value of ClusterLabels 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 #

A Cloud Dataproc job resource.

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.Dataproc.Types.Product" "gogol-dataproc-0.3.0-3PqxdosnOOKEHgZbCAggSw" False) (C1 (MetaCons "Job'" PrefixI True) ((:*:) ((:*:) ((:*:) (S1 (MetaSel (Just Symbol "_jSparkJob") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe SparkJob))) ((:*:) (S1 (MetaSel (Just Symbol "_jStatus") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe JobStatus))) (S1 (MetaSel (Just Symbol "_jDriverControlFilesURI") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))))) ((:*:) ((:*:) (S1 (MetaSel (Just Symbol "_jHiveJob") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe HiveJob))) (S1 (MetaSel (Just Symbol "_jReference") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe JobReference)))) ((:*:) (S1 (MetaSel (Just Symbol "_jSparkSQLJob") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe SparkSQLJob))) (S1 (MetaSel (Just Symbol "_jHadoopJob") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe HadoopJob)))))) ((:*:) ((:*:) (S1 (MetaSel (Just Symbol "_jYarnApplications") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe [YarnApplication]))) ((:*:) (S1 (MetaSel (Just Symbol "_jLabels") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe JobLabels))) (S1 (MetaSel (Just Symbol "_jPysparkJob") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe PySparkJob))))) ((:*:) ((:*:) (S1 (MetaSel (Just Symbol "_jDriverOutputResourceURI") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) (S1 (MetaSel (Just Symbol "_jStatusHistory") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe [JobStatus])))) ((:*:) (S1 (MetaSel (Just Symbol "_jPlacement") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe JobPlacement))) (S1 (MetaSel (Just Symbol "_jPigJob") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe PigJob))))))))

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:

jSparkJob :: Lens' Job (Maybe SparkJob) Source #

Job is a Spark job.

jStatus :: Lens' Job (Maybe JobStatus) Source #

Output-only
The job status. Additional application-specific status information may be contained in the type_job and yarn_applications fields.

jDriverControlFilesURI :: Lens' Job (Maybe Text) Source #

Output-only
If present, the location of miscellaneous control files which may be used as part of job setup and handling. If not present, control files may be placed in the same location as `driver_output_uri`.

jHiveJob :: Lens' Job (Maybe HiveJob) Source #

Job is a Hive job.

jReference :: Lens' Job (Maybe JobReference) Source #

Optional
The fully qualified reference to the job, which can be used to obtain the equivalent REST path of the job resource. If this property is not specified when a job is created, the server generates a job_id.

jSparkSQLJob :: Lens' Job (Maybe SparkSQLJob) Source #

Job is a SparkSql job.

jHadoopJob :: Lens' Job (Maybe HadoopJob) Source #

Job is a Hadoop job.

jYarnApplications :: Lens' Job [YarnApplication] Source #

Output-only
The collection of YARN applications spun up by this job. **Beta** Feature: This report is available for testing purposes only. It may be changed before final release.

jLabels :: Lens' Job (Maybe JobLabels) Source #

Optional
The labels to associate with this job. Label **keys** must contain 1 to 63 characters, and must conform to RFC 1035. Label **values** may be empty, but, if present, must contain 1 to 63 characters, and must conform to RFC 1035. No more than 32 labels can be associated with a job.

jPysparkJob :: Lens' Job (Maybe PySparkJob) Source #

Job is a Pyspark job.

jDriverOutputResourceURI :: Lens' Job (Maybe Text) Source #

Output-only
A URI pointing to the location of the stdout of the job's driver program.

jStatusHistory :: Lens' Job [JobStatus] Source #

Output-only
The previous job status.

jPlacement :: Lens' Job (Maybe JobPlacement) Source #

Required
Job information, including how, when, and where to run the job.

jPigJob :: Lens' Job (Maybe PigJob) Source #

Job is a Pig job.

DiagnoseClusterRequest

data DiagnoseClusterRequest Source #

A request to collect cluster diagnostic information.

See: diagnoseClusterRequest smart constructor.

Instances

Eq DiagnoseClusterRequest Source # 
Data DiagnoseClusterRequest Source # 

Methods

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

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

toConstr :: DiagnoseClusterRequest -> Constr #

dataTypeOf :: DiagnoseClusterRequest -> DataType #

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

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

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

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

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

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

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

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

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

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

Show DiagnoseClusterRequest Source # 
Generic DiagnoseClusterRequest Source # 
ToJSON DiagnoseClusterRequest Source # 
FromJSON DiagnoseClusterRequest Source # 
type Rep DiagnoseClusterRequest Source # 
type Rep DiagnoseClusterRequest = D1 (MetaData "DiagnoseClusterRequest" "Network.Google.Dataproc.Types.Product" "gogol-dataproc-0.3.0-3PqxdosnOOKEHgZbCAggSw" False) (C1 (MetaCons "DiagnoseClusterRequest'" PrefixI False) U1)

diagnoseClusterRequest :: DiagnoseClusterRequest Source #

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

HadoopJob

data HadoopJob Source #

A Cloud Dataproc job for running Apache Hadoop MapReduce jobs on Apache Hadoop YARN.

See: hadoopJob smart constructor.

Instances

Eq HadoopJob Source # 
Data HadoopJob Source # 

Methods

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

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

toConstr :: HadoopJob -> Constr #

dataTypeOf :: HadoopJob -> DataType #

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

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

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

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

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

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

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

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

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

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

Show HadoopJob Source # 
Generic HadoopJob Source # 

Associated Types

type Rep HadoopJob :: * -> * #

ToJSON HadoopJob Source # 
FromJSON HadoopJob Source # 
type Rep HadoopJob Source # 

hadoopJob :: HadoopJob Source #

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

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

hArgs :: Lens' HadoopJob [Text] Source #

Optional
The arguments to pass to the driver. Do not include arguments, such as `-libjars` or `-Dfoo=bar`, that can be set as job properties, since a collision may occur that causes an incorrect job submission.

hMainJarFileURI :: Lens' HadoopJob (Maybe Text) Source #

The HCFS URI of the jar file containing the main class. Examples: 'gs://foo-bucket/analytics-binaries/extract-useful-metrics-mr.jar' 'hdfs:/tmp/test-samples/custom-wordcount.jar' 'file:///home/usr/lib/hadoop-mapreduce/hadoop-mapreduce-examples.jar'

hJarFileURIs :: Lens' HadoopJob [Text] Source #

Optional
Jar file URIs to add to the CLASSPATHs of the Hadoop driver and tasks.

hFileURIs :: Lens' HadoopJob [Text] Source #

Optional
HCFS (Hadoop Compatible Filesystem) URIs of files to be copied to the working directory of Hadoop drivers and distributed tasks. Useful for naively parallel tasks.

hArchiveURIs :: Lens' HadoopJob [Text] Source #

Optional
HCFS URIs of archives to be extracted in the working directory of Hadoop drivers and tasks. Supported file types: .jar, .tar, .tar.gz, .tgz, or .zip.

hMainClass :: Lens' HadoopJob (Maybe Text) Source #

The name of the driver's main class. The jar file containing the class must be in the default CLASSPATH or specified in `jar_file_uris`.

hLoggingConfig :: Lens' HadoopJob (Maybe LoggingConfig) Source #

Optional
The runtime log config for job execution.

hProperties :: Lens' HadoopJob (Maybe HadoopJobProperties) Source #

Optional
A mapping of property names to values, used to configure Hadoop. Properties that conflict with values set by the Cloud Dataproc API may be overwritten. Can include properties set in /etc/hadoop/conf/*-site and classes in user code.

ClusterOperationMetadata

data ClusterOperationMetadata Source #

Metadata describing the operation.

See: clusterOperationMetadata smart constructor.

Instances

Eq ClusterOperationMetadata Source # 
Data ClusterOperationMetadata Source # 

Methods

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

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

toConstr :: ClusterOperationMetadata -> Constr #

dataTypeOf :: ClusterOperationMetadata -> DataType #

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

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

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

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

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

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

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

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

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

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

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

clusterOperationMetadata :: ClusterOperationMetadata Source #

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

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

comClusterUuid :: Lens' ClusterOperationMetadata (Maybe Text) Source #

Output-only
Cluster UUID for the operation.

comClusterName :: Lens' ClusterOperationMetadata (Maybe Text) Source #

Output-only
Name of the cluster for the operation.

comLabels :: Lens' ClusterOperationMetadata (Maybe ClusterOperationMetadataLabels) Source #

Output-only
labels associated with the operation

comOperationType :: Lens' ClusterOperationMetadata (Maybe Text) Source #

Output-only
The operation type.

comStatusHistory :: Lens' ClusterOperationMetadata [ClusterOperationStatus] Source #

Output-only
The previous operation status.

comDescription :: Lens' ClusterOperationMetadata (Maybe Text) Source #

Output-only
Short description of operation.

SparkSQLJob

data SparkSQLJob Source #

A Cloud Dataproc job for running Apache Spark SQL queries.

See: sparkSQLJob smart constructor.

Instances

Eq SparkSQLJob Source # 
Data SparkSQLJob Source # 

Methods

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

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

toConstr :: SparkSQLJob -> Constr #

dataTypeOf :: SparkSQLJob -> DataType #

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

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

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

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

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

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

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

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

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

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

Show SparkSQLJob Source # 
Generic SparkSQLJob Source # 

Associated Types

type Rep SparkSQLJob :: * -> * #

ToJSON SparkSQLJob Source # 
FromJSON SparkSQLJob Source # 
type Rep SparkSQLJob Source # 
type Rep SparkSQLJob = D1 (MetaData "SparkSQLJob" "Network.Google.Dataproc.Types.Product" "gogol-dataproc-0.3.0-3PqxdosnOOKEHgZbCAggSw" False) (C1 (MetaCons "SparkSQLJob'" PrefixI True) ((:*:) ((:*:) (S1 (MetaSel (Just Symbol "_ssqljQueryFileURI") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) ((:*:) (S1 (MetaSel (Just Symbol "_ssqljJarFileURIs") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe [Text]))) (S1 (MetaSel (Just Symbol "_ssqljScriptVariables") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe SparkSQLJobScriptVariables))))) ((:*:) (S1 (MetaSel (Just Symbol "_ssqljQueryList") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe QueryList))) ((:*:) (S1 (MetaSel (Just Symbol "_ssqljLoggingConfig") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe LoggingConfig))) (S1 (MetaSel (Just Symbol "_ssqljProperties") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe SparkSQLJobProperties)))))))

sparkSQLJob :: SparkSQLJob Source #

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

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

ssqljQueryFileURI :: Lens' SparkSQLJob (Maybe Text) Source #

The HCFS URI of the script that contains SQL queries.

ssqljJarFileURIs :: Lens' SparkSQLJob [Text] Source #

Optional
HCFS URIs of jar files to be added to the Spark CLASSPATH.

ssqljScriptVariables :: Lens' SparkSQLJob (Maybe SparkSQLJobScriptVariables) Source #

Optional
Mapping of query variable names to values (equivalent to the Spark SQL command: SET `name="value";`).

ssqljLoggingConfig :: Lens' SparkSQLJob (Maybe LoggingConfig) Source #

Optional
The runtime log config for job execution.

ssqljProperties :: Lens' SparkSQLJob (Maybe SparkSQLJobProperties) Source #

Optional
A mapping of property names to values, used to configure Spark SQL's SparkConf. Properties that conflict with values set by the Cloud Dataproc API may be overwritten.

SoftwareConfig

data SoftwareConfig Source #

Specifies the selection and config of software inside the cluster.

See: softwareConfig smart constructor.

Instances

Eq SoftwareConfig Source # 
Data SoftwareConfig Source # 

Methods

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

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

toConstr :: SoftwareConfig -> Constr #

dataTypeOf :: SoftwareConfig -> DataType #

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

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

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

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

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

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

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

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

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

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

Show SoftwareConfig Source # 
Generic SoftwareConfig Source # 

Associated Types

type Rep SoftwareConfig :: * -> * #

ToJSON SoftwareConfig Source # 
FromJSON SoftwareConfig Source # 
type Rep SoftwareConfig Source # 
type Rep SoftwareConfig = D1 (MetaData "SoftwareConfig" "Network.Google.Dataproc.Types.Product" "gogol-dataproc-0.3.0-3PqxdosnOOKEHgZbCAggSw" False) (C1 (MetaCons "SoftwareConfig'" PrefixI True) ((:*:) (S1 (MetaSel (Just Symbol "_scImageVersion") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) (S1 (MetaSel (Just Symbol "_scProperties") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe SoftwareConfigProperties)))))

softwareConfig :: SoftwareConfig Source #

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

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

scImageVersion :: Lens' SoftwareConfig (Maybe Text) Source #

Optional
The version of software inside the cluster. It must match the regular expression `[0-9]+\.[0-9]+`. If unspecified, it defaults to the latest version (see Cloud Dataproc Versioning).

scProperties :: Lens' SoftwareConfig (Maybe SoftwareConfigProperties) Source #

Optional
The properties to set on daemon config files. Property keys are specified in `prefix:property` format, such as `core:fs.defaultFS`. The following are supported prefixes and their mappings: * core: `core-site.xml` * hdfs: `hdfs-site.xml` * mapred: `mapred-site.xml` * yarn: `yarn-site.xml` * hive: `hive-site.xml` * pig: `pig.properties` * spark: `spark-defaults.conf`

ListJobsResponse

data ListJobsResponse Source #

A list of jobs in a project.

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.Dataproc.Types.Product" "gogol-dataproc-0.3.0-3PqxdosnOOKEHgZbCAggSw" 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 #

Optional
This token is included in the response if there are more results to fetch. To fetch additional results, provide this value as the `page_token` in a subsequent ListJobsRequest.

ljrJobs :: Lens' ListJobsResponse [Job] Source #

Output-only
Jobs list.

SparkJobProperties

data SparkJobProperties Source #

Optional
A mapping of property names to values, used to configure Spark. Properties that conflict with values set by the Cloud Dataproc API may be overwritten. Can include properties set in /etc/spark/conf/spark-defaults.conf and classes in user code.

See: sparkJobProperties smart constructor.

Instances

Eq SparkJobProperties Source # 
Data SparkJobProperties Source # 

Methods

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

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

toConstr :: SparkJobProperties -> Constr #

dataTypeOf :: SparkJobProperties -> DataType #

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

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

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

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

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

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

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

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

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

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

Show SparkJobProperties Source # 
Generic SparkJobProperties Source # 
ToJSON SparkJobProperties Source # 
FromJSON SparkJobProperties Source # 
type Rep SparkJobProperties Source # 
type Rep SparkJobProperties = D1 (MetaData "SparkJobProperties" "Network.Google.Dataproc.Types.Product" "gogol-dataproc-0.3.0-3PqxdosnOOKEHgZbCAggSw" True) (C1 (MetaCons "SparkJobProperties'" PrefixI True) (S1 (MetaSel (Just Symbol "_sjpAddtional") NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 (HashMap Text Text))))

sparkJobProperties Source #

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

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

PySparkJob

data PySparkJob Source #

A Cloud Dataproc job for running Apache PySpark applications on YARN.

See: pySparkJob smart constructor.

Instances

Eq PySparkJob Source # 
Data PySparkJob Source # 

Methods

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

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

toConstr :: PySparkJob -> Constr #

dataTypeOf :: PySparkJob -> DataType #

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

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

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

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

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

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

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

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

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

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

Show PySparkJob Source # 
Generic PySparkJob Source # 

Associated Types

type Rep PySparkJob :: * -> * #

ToJSON PySparkJob Source # 
FromJSON PySparkJob Source # 
type Rep PySparkJob Source # 

pySparkJob :: PySparkJob Source #

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

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

psjPythonFileURIs :: Lens' PySparkJob [Text] Source #

Optional
HCFS file URIs of Python files to pass to the PySpark framework. Supported file types: .py, .egg, and .zip.

psjMainPythonFileURI :: Lens' PySparkJob (Maybe Text) Source #

Required
The HCFS URI of the main Python file to use as the driver. Must be a .py file.

psjArgs :: Lens' PySparkJob [Text] Source #

Optional
The arguments to pass to the driver. Do not include arguments, such as `--conf`, that can be set as job properties, since a collision may occur that causes an incorrect job submission.

psjJarFileURIs :: Lens' PySparkJob [Text] Source #

Optional
HCFS URIs of jar files to add to the CLASSPATHs of the Python driver and tasks.

psjFileURIs :: Lens' PySparkJob [Text] Source #

Optional
HCFS URIs of files to be copied to the working directory of Python drivers and distributed tasks. Useful for naively parallel tasks.

psjArchiveURIs :: Lens' PySparkJob [Text] Source #

Optional
HCFS URIs of archives to be extracted in the working directory of .jar, .tar, .tar.gz, .tgz, and .zip.

psjLoggingConfig :: Lens' PySparkJob (Maybe LoggingConfig) Source #

Optional
The runtime log config for job execution.

psjProperties :: Lens' PySparkJob (Maybe PySparkJobProperties) Source #

Optional
A mapping of property names to values, used to configure PySpark. Properties that conflict with values set by the Cloud Dataproc API may be overwritten. Can include properties set in /etc/spark/conf/spark-defaults.conf and classes in user code.

ManagedGroupConfig

data ManagedGroupConfig Source #

Specifies the resources used to actively manage an instance group.

See: managedGroupConfig smart constructor.

Instances

Eq ManagedGroupConfig Source # 
Data ManagedGroupConfig Source # 

Methods

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

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

toConstr :: ManagedGroupConfig -> Constr #

dataTypeOf :: ManagedGroupConfig -> DataType #

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

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

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

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

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

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

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

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

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

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

Show ManagedGroupConfig Source # 
Generic ManagedGroupConfig Source # 
ToJSON ManagedGroupConfig Source # 
FromJSON ManagedGroupConfig Source # 
type Rep ManagedGroupConfig Source # 
type Rep ManagedGroupConfig = D1 (MetaData "ManagedGroupConfig" "Network.Google.Dataproc.Types.Product" "gogol-dataproc-0.3.0-3PqxdosnOOKEHgZbCAggSw" False) (C1 (MetaCons "ManagedGroupConfig'" PrefixI True) ((:*:) (S1 (MetaSel (Just Symbol "_mgcInstanceTemplateName") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) (S1 (MetaSel (Just Symbol "_mgcInstanceGroupManagerName") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)))))

managedGroupConfig :: ManagedGroupConfig Source #

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

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

mgcInstanceTemplateName :: Lens' ManagedGroupConfig (Maybe Text) Source #

Output-only
The name of the Instance Template used for the Managed Instance Group.

mgcInstanceGroupManagerName :: Lens' ManagedGroupConfig (Maybe Text) Source #

Output-only
The name of the Instance Group Manager for this group.

ListClustersResponse

data ListClustersResponse Source #

The list of all clusters in a project.

See: listClustersResponse smart constructor.

Instances

Eq ListClustersResponse Source # 
Data ListClustersResponse Source # 

Methods

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

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

toConstr :: ListClustersResponse -> Constr #

dataTypeOf :: ListClustersResponse -> DataType #

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

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

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

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

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

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

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

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

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

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

Show ListClustersResponse Source # 
Generic ListClustersResponse Source # 
ToJSON ListClustersResponse Source # 
FromJSON ListClustersResponse Source # 
type Rep ListClustersResponse Source # 
type Rep ListClustersResponse = D1 (MetaData "ListClustersResponse" "Network.Google.Dataproc.Types.Product" "gogol-dataproc-0.3.0-3PqxdosnOOKEHgZbCAggSw" False) (C1 (MetaCons "ListClustersResponse'" PrefixI True) ((:*:) (S1 (MetaSel (Just Symbol "_lcrNextPageToken") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) (S1 (MetaSel (Just Symbol "_lcrClusters") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe [Cluster])))))

listClustersResponse :: ListClustersResponse Source #

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

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

lcrNextPageToken :: Lens' ListClustersResponse (Maybe Text) Source #

Output-only
This token is included in the response if there are more results to fetch. To fetch additional results, provide this value as the `page_token` in a subsequent ListClustersRequest.

lcrClusters :: Lens' ListClustersResponse [Cluster] Source #

Output-only
The clusters in the project.

CancelJobRequest

data CancelJobRequest Source #

A request to cancel a job.

See: cancelJobRequest smart constructor.

Instances

Eq CancelJobRequest Source # 
Data CancelJobRequest Source # 

Methods

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

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

toConstr :: CancelJobRequest -> Constr #

dataTypeOf :: CancelJobRequest -> DataType #

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

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

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

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

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

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

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

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

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

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

Show CancelJobRequest Source # 
Generic CancelJobRequest Source # 
ToJSON CancelJobRequest Source # 
FromJSON CancelJobRequest Source # 
type Rep CancelJobRequest Source # 
type Rep CancelJobRequest = D1 (MetaData "CancelJobRequest" "Network.Google.Dataproc.Types.Product" "gogol-dataproc-0.3.0-3PqxdosnOOKEHgZbCAggSw" False) (C1 (MetaCons "CancelJobRequest'" PrefixI False) U1)

cancelJobRequest :: CancelJobRequest Source #

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

QueryList

data QueryList Source #

A list of queries to run on a cluster.

See: queryList smart constructor.

Instances

Eq QueryList Source # 
Data QueryList Source # 

Methods

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

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

toConstr :: QueryList -> Constr #

dataTypeOf :: QueryList -> DataType #

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

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

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

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

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

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

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

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

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

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

Show QueryList Source # 
Generic QueryList Source # 

Associated Types

type Rep QueryList :: * -> * #

ToJSON QueryList Source # 
FromJSON QueryList Source # 
type Rep QueryList Source # 
type Rep QueryList = D1 (MetaData "QueryList" "Network.Google.Dataproc.Types.Product" "gogol-dataproc-0.3.0-3PqxdosnOOKEHgZbCAggSw" True) (C1 (MetaCons "QueryList'" PrefixI True) (S1 (MetaSel (Just Symbol "_qlQueries") NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 (Maybe [Text]))))

queryList :: QueryList Source #

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

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

qlQueries :: Lens' QueryList [Text] Source #

Required
The queries to execute. You do not need to terminate a query with a semicolon. Multiple queries can be specified in one string by separating each with a semicolon. Here is an example of an Cloud Dataproc API snippet that uses a QueryList to specify a HiveJob: "hiveJob": { "queryList": { "queries": [ "query1", "query2", "query3;query4", ] } }

OperationMetadata

data OperationMetadata Source #

Metadata describing the operation.

See: operationMetadata smart constructor.

Instances

Eq OperationMetadata Source # 
Data OperationMetadata Source # 

Methods

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

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

toConstr :: OperationMetadata -> Constr #

dataTypeOf :: OperationMetadata -> DataType #

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

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

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

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

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

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

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

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

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

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

Show OperationMetadata Source # 
Generic OperationMetadata Source # 
ToJSON OperationMetadata Source # 
FromJSON OperationMetadata Source # 
type Rep OperationMetadata Source # 
type Rep OperationMetadata = D1 (MetaData "OperationMetadata" "Network.Google.Dataproc.Types.Product" "gogol-dataproc-0.3.0-3PqxdosnOOKEHgZbCAggSw" False) (C1 (MetaCons "OperationMetadata'" PrefixI True) ((:*:) ((:*:) ((:*:) (S1 (MetaSel (Just Symbol "_omStatus") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe OperationStatus))) ((:*:) (S1 (MetaSel (Just Symbol "_omState") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) (S1 (MetaSel (Just Symbol "_omClusterUuid") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))))) ((:*:) (S1 (MetaSel (Just Symbol "_omInsertTime") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) ((:*:) (S1 (MetaSel (Just Symbol "_omStartTime") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) (S1 (MetaSel (Just Symbol "_omInnerState") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)))))) ((:*:) ((:*:) (S1 (MetaSel (Just Symbol "_omEndTime") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) ((:*:) (S1 (MetaSel (Just Symbol "_omDetails") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) (S1 (MetaSel (Just Symbol "_omClusterName") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))))) ((:*:) (S1 (MetaSel (Just Symbol "_omOperationType") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) ((:*:) (S1 (MetaSel (Just Symbol "_omStatusHistory") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe [OperationStatus]))) (S1 (MetaSel (Just Symbol "_omDescription") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))))))))

operationMetadata :: OperationMetadata Source #

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

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

omStatus :: Lens' OperationMetadata (Maybe OperationStatus) Source #

Output-only
Current operation status.

omState :: Lens' OperationMetadata (Maybe Text) Source #

A message containing the operation state.

omClusterUuid :: Lens' OperationMetadata (Maybe Text) Source #

Cluster UUId for the operation.

omInsertTime :: Lens' OperationMetadata (Maybe Text) Source #

The time that the operation was requested.

omStartTime :: Lens' OperationMetadata (Maybe Text) Source #

The time that the operation was started by the server.

omInnerState :: Lens' OperationMetadata (Maybe Text) Source #

A message containing the detailed operation state.

omEndTime :: Lens' OperationMetadata (Maybe Text) Source #

The time that the operation completed.

omDetails :: Lens' OperationMetadata (Maybe Text) Source #

A message containing any operation metadata details.

omClusterName :: Lens' OperationMetadata (Maybe Text) Source #

Name of the cluster for the operation.

omOperationType :: Lens' OperationMetadata (Maybe Text) Source #

Output-only
The operation type.

omStatusHistory :: Lens' OperationMetadata [OperationStatus] Source #

Output-only
Previous operation status.

omDescription :: Lens' OperationMetadata (Maybe Text) Source #

Output-only
Short description of operation.

JobStatus

data JobStatus Source #

Cloud Dataproc job status.

See: jobStatus smart constructor.

Instances

Eq JobStatus Source # 
Data JobStatus Source # 

Methods

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

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

toConstr :: JobStatus -> Constr #

dataTypeOf :: JobStatus -> DataType #

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

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

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

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

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

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

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

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

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

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

Show JobStatus Source # 
Generic JobStatus Source # 

Associated Types

type Rep JobStatus :: * -> * #

ToJSON JobStatus Source # 
FromJSON JobStatus Source # 
type Rep JobStatus Source # 
type Rep JobStatus = D1 (MetaData "JobStatus" "Network.Google.Dataproc.Types.Product" "gogol-dataproc-0.3.0-3PqxdosnOOKEHgZbCAggSw" False) (C1 (MetaCons "JobStatus'" PrefixI True) ((:*:) (S1 (MetaSel (Just Symbol "_jsState") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) ((:*:) (S1 (MetaSel (Just Symbol "_jsStateStartTime") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) (S1 (MetaSel (Just Symbol "_jsDetails") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))))))

jobStatus :: JobStatus Source #

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

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

jsState :: Lens' JobStatus (Maybe Text) Source #

Output-only
A state message specifying the overall job state.

jsStateStartTime :: Lens' JobStatus (Maybe Text) Source #

Output-only
The time when this state was entered.

jsDetails :: Lens' JobStatus (Maybe Text) Source #

Output-only
Optional job state details, such as an error description if the state is ERROR.

PigJobScriptVariables

data PigJobScriptVariables Source #

Optional
Mapping of query variable names to values (equivalent to the Pig command: `name=[value]`).

See: pigJobScriptVariables smart constructor.

Instances

Eq PigJobScriptVariables Source # 
Data PigJobScriptVariables Source # 

Methods

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

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

toConstr :: PigJobScriptVariables -> Constr #

dataTypeOf :: PigJobScriptVariables -> DataType #

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

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

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

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

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

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

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

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

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

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

Show PigJobScriptVariables Source # 
Generic PigJobScriptVariables Source # 
ToJSON PigJobScriptVariables Source # 
FromJSON PigJobScriptVariables Source # 
type Rep PigJobScriptVariables Source # 
type Rep PigJobScriptVariables = D1 (MetaData "PigJobScriptVariables" "Network.Google.Dataproc.Types.Product" "gogol-dataproc-0.3.0-3PqxdosnOOKEHgZbCAggSw" True) (C1 (MetaCons "PigJobScriptVariables'" PrefixI True) (S1 (MetaSel (Just Symbol "_pjsvAddtional") NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 (HashMap Text Text))))

pigJobScriptVariables Source #

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

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

ClusterMetricsHdfsMetrics

data ClusterMetricsHdfsMetrics Source #

The HDFS metrics.

See: clusterMetricsHdfsMetrics smart constructor.

Instances

Eq ClusterMetricsHdfsMetrics Source # 
Data ClusterMetricsHdfsMetrics Source # 

Methods

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

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

toConstr :: ClusterMetricsHdfsMetrics -> Constr #

dataTypeOf :: ClusterMetricsHdfsMetrics -> DataType #

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

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

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

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

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

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

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

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

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

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

Show ClusterMetricsHdfsMetrics Source # 
Generic ClusterMetricsHdfsMetrics Source # 
ToJSON ClusterMetricsHdfsMetrics Source # 
FromJSON ClusterMetricsHdfsMetrics Source # 
type Rep ClusterMetricsHdfsMetrics Source # 
type Rep ClusterMetricsHdfsMetrics = D1 (MetaData "ClusterMetricsHdfsMetrics" "Network.Google.Dataproc.Types.Product" "gogol-dataproc-0.3.0-3PqxdosnOOKEHgZbCAggSw" True) (C1 (MetaCons "ClusterMetricsHdfsMetrics'" PrefixI True) (S1 (MetaSel (Just Symbol "_cmhmAddtional") NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 (HashMap Text (Textual Int64)))))

clusterMetricsHdfsMetrics Source #

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

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

OperationResponse

data OperationResponse Source #

The normal response of the operation in case of success. If the original method returns no data on success, such as `Delete`, the response is `google.protobuf.Empty`. If the original method is standard `Get`/`Create`/`Update`, the response should be the resource. For other methods, the response should have the type `XxxResponse`, where `Xxx` is the original method name. For example, if the original method name is `TakeSnapshot()`, the inferred response type is `TakeSnapshotResponse`.

See: operationResponse smart constructor.

Instances

Eq OperationResponse Source # 
Data OperationResponse Source # 

Methods

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

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

toConstr :: OperationResponse -> Constr #

dataTypeOf :: OperationResponse -> DataType #

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

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

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

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

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

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

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

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

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

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

Show OperationResponse Source # 
Generic OperationResponse Source # 
ToJSON OperationResponse Source # 
FromJSON OperationResponse Source # 
type Rep OperationResponse Source # 
type Rep OperationResponse = D1 (MetaData "OperationResponse" "Network.Google.Dataproc.Types.Product" "gogol-dataproc-0.3.0-3PqxdosnOOKEHgZbCAggSw" True) (C1 (MetaCons "OperationResponse'" PrefixI True) (S1 (MetaSel (Just Symbol "_orAddtional") NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 (HashMap Text JSONValue))))

operationResponse Source #

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

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

orAddtional :: Lens' OperationResponse (HashMap Text JSONValue) Source #

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

LoggingConfigDriverLogLevels

data LoggingConfigDriverLogLevels Source #

The per-package log levels for the driver. This may include "root" package name to configure rootLogger. Examples: 'com.google = FATAL', 'root = INFO', 'org.apache = DEBUG'

See: loggingConfigDriverLogLevels smart constructor.

Instances

Eq LoggingConfigDriverLogLevels Source # 
Data LoggingConfigDriverLogLevels Source # 

Methods

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

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

toConstr :: LoggingConfigDriverLogLevels -> Constr #

dataTypeOf :: LoggingConfigDriverLogLevels -> DataType #

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

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

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

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

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

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

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

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

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

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

Show LoggingConfigDriverLogLevels Source # 
Generic LoggingConfigDriverLogLevels Source # 
ToJSON LoggingConfigDriverLogLevels Source # 
FromJSON LoggingConfigDriverLogLevels Source # 
type Rep LoggingConfigDriverLogLevels Source # 
type Rep LoggingConfigDriverLogLevels = D1 (MetaData "LoggingConfigDriverLogLevels" "Network.Google.Dataproc.Types.Product" "gogol-dataproc-0.3.0-3PqxdosnOOKEHgZbCAggSw" True) (C1 (MetaCons "LoggingConfigDriverLogLevels'" PrefixI True) (S1 (MetaSel (Just Symbol "_lcdllAddtional") NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 (HashMap Text Text))))

loggingConfigDriverLogLevels Source #

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

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

ClusterStatus

data ClusterStatus Source #

The status of a cluster and its instances.

See: clusterStatus smart constructor.

Instances

Eq ClusterStatus Source # 
Data ClusterStatus Source # 

Methods

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

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

toConstr :: ClusterStatus -> Constr #

dataTypeOf :: ClusterStatus -> DataType #

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

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

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

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

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

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

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

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

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

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

Show ClusterStatus Source # 
Generic ClusterStatus Source # 

Associated Types

type Rep ClusterStatus :: * -> * #

ToJSON ClusterStatus Source # 
FromJSON ClusterStatus Source # 
type Rep ClusterStatus Source # 
type Rep ClusterStatus = D1 (MetaData "ClusterStatus" "Network.Google.Dataproc.Types.Product" "gogol-dataproc-0.3.0-3PqxdosnOOKEHgZbCAggSw" False) (C1 (MetaCons "ClusterStatus'" PrefixI True) ((:*:) (S1 (MetaSel (Just Symbol "_csState") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) ((:*:) (S1 (MetaSel (Just Symbol "_csStateStartTime") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) (S1 (MetaSel (Just Symbol "_csDetail") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))))))

clusterStatus :: ClusterStatus Source #

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

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

csState :: Lens' ClusterStatus (Maybe Text) Source #

Output-only
The cluster's state.

csStateStartTime :: Lens' ClusterStatus (Maybe Text) Source #

Output-only
Time when this state was entered.

csDetail :: Lens' ClusterStatus (Maybe Text) Source #

Output-only
Optional details of cluster's state.

YarnApplication

data YarnApplication Source #

A YARN application created by a job. Application information is a subset of org.apache.hadoop.yarn.proto.YarnProtos.ApplicationReportProto. **Beta Feature**: This report is available for testing purposes only. It may be changed before final release.

See: yarnApplication smart constructor.

Instances

Eq YarnApplication Source # 
Data YarnApplication Source # 

Methods

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

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

toConstr :: YarnApplication -> Constr #

dataTypeOf :: YarnApplication -> DataType #

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

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

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

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

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

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

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

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

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

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

Show YarnApplication Source # 
Generic YarnApplication Source # 
ToJSON YarnApplication Source # 
FromJSON YarnApplication Source # 
type Rep YarnApplication Source # 
type Rep YarnApplication = D1 (MetaData "YarnApplication" "Network.Google.Dataproc.Types.Product" "gogol-dataproc-0.3.0-3PqxdosnOOKEHgZbCAggSw" False) (C1 (MetaCons "YarnApplication'" PrefixI True) ((:*:) ((:*:) (S1 (MetaSel (Just Symbol "_yaTrackingURL") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) (S1 (MetaSel (Just Symbol "_yaState") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)))) ((:*:) (S1 (MetaSel (Just Symbol "_yaProgress") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe (Textual Double)))) (S1 (MetaSel (Just Symbol "_yaName") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))))))

yarnApplication :: YarnApplication Source #

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

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

yaTrackingURL :: Lens' YarnApplication (Maybe Text) Source #

Optional
The HTTP URL of the ApplicationMaster, HistoryServer, or TimelineServer that provides application-specific information. The URL uses the internal hostname, and requires a proxy server for resolution and, possibly, access.

yaState :: Lens' YarnApplication (Maybe Text) Source #

Required
The application state.

yaProgress :: Lens' YarnApplication (Maybe Double) Source #

Required
The numerical progress of the application, from 1 to 100.

yaName :: Lens' YarnApplication (Maybe Text) Source #

Required
The application name.

PigJob

data PigJob Source #

A Cloud Dataproc job for running Apache Pig queries on YARN.

See: pigJob smart constructor.

Instances

Eq PigJob Source # 

Methods

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

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

Data PigJob Source # 

Methods

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

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

toConstr :: PigJob -> Constr #

dataTypeOf :: PigJob -> DataType #

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

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

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

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

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

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

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

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

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

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

Show PigJob Source # 
Generic PigJob Source # 

Associated Types

type Rep PigJob :: * -> * #

Methods

from :: PigJob -> Rep PigJob x #

to :: Rep PigJob x -> PigJob #

ToJSON PigJob Source # 
FromJSON PigJob Source # 
type Rep PigJob Source # 

pigJob :: PigJob Source #

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

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

pjQueryFileURI :: Lens' PigJob (Maybe Text) Source #

The HCFS URI of the script that contains the Pig queries.

pjJarFileURIs :: Lens' PigJob [Text] Source #

Optional
HCFS URIs of jar files to add to the CLASSPATH of the Pig Client and Hadoop MapReduce (MR) tasks. Can contain Pig UDFs.

pjScriptVariables :: Lens' PigJob (Maybe PigJobScriptVariables) Source #

Optional
Mapping of query variable names to values (equivalent to the Pig command: `name=[value]`).

pjQueryList :: Lens' PigJob (Maybe QueryList) Source #

A list of queries.

pjContinueOnFailure :: Lens' PigJob (Maybe Bool) Source #

Optional
Whether to continue executing queries if a query fails. The default value is `false`. Setting to `true` can be useful when executing independent parallel queries.

pjLoggingConfig :: Lens' PigJob (Maybe LoggingConfig) Source #

Optional
The runtime log config for job execution.

pjProperties :: Lens' PigJob (Maybe PigJobProperties) Source #

Optional
A mapping of property names to values, used to configure Pig. Properties that conflict with values set by the Cloud Dataproc API may be overwritten. Can include properties set in /etc/hadoop/conf/*-site.xml, /etc/pig/conf/pig.properties, and classes in user code.

LoggingConfig

data LoggingConfig Source #

The runtime logging config of the job.

See: loggingConfig smart constructor.

Instances

Eq LoggingConfig Source # 
Data LoggingConfig Source # 

Methods

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

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

toConstr :: LoggingConfig -> Constr #

dataTypeOf :: LoggingConfig -> DataType #

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

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

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

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

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

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

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

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

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

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

Show LoggingConfig Source # 
Generic LoggingConfig Source # 

Associated Types

type Rep LoggingConfig :: * -> * #

ToJSON LoggingConfig Source # 
FromJSON LoggingConfig Source # 
type Rep LoggingConfig Source # 
type Rep LoggingConfig = D1 (MetaData "LoggingConfig" "Network.Google.Dataproc.Types.Product" "gogol-dataproc-0.3.0-3PqxdosnOOKEHgZbCAggSw" True) (C1 (MetaCons "LoggingConfig'" PrefixI True) (S1 (MetaSel (Just Symbol "_lcDriverLogLevels") NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 (Maybe LoggingConfigDriverLogLevels))))

loggingConfig :: LoggingConfig Source #

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

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

lcDriverLogLevels :: Lens' LoggingConfig (Maybe LoggingConfigDriverLogLevels) Source #

The per-package log levels for the driver. This may include "root" package name to configure rootLogger. Examples: 'com.google = FATAL', 'root = INFO', 'org.apache = DEBUG'