gogol-resourcemanager-0.4.0: Google Cloud Resource Manager 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.ResourceManager.Types

Contents

Description

 
Synopsis

Service Configuration

resourceManagerService :: ServiceConfig Source #

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

OAuth Scopes

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

View your data across Google Cloud Platform services

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

View and manage your data across Google Cloud Platform services

ListFoldersResponse

data ListFoldersResponse Source #

The ListFolders response message.

See: listFoldersResponse smart constructor.

Instances
Eq ListFoldersResponse Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

Data ListFoldersResponse Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

Methods

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

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

toConstr :: ListFoldersResponse -> Constr #

dataTypeOf :: ListFoldersResponse -> DataType #

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

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

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

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

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

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

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

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

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

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

Show ListFoldersResponse Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

Generic ListFoldersResponse Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

Associated Types

type Rep ListFoldersResponse :: Type -> Type #

ToJSON ListFoldersResponse Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

FromJSON ListFoldersResponse Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

type Rep ListFoldersResponse Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

type Rep ListFoldersResponse = D1 (MetaData "ListFoldersResponse" "Network.Google.ResourceManager.Types.Product" "gogol-resourcemanager-0.4.0-UDFVnkFAEA9efzG80swCH" False) (C1 (MetaCons "ListFoldersResponse'" PrefixI True) (S1 (MetaSel (Just "_lfrNextPageToken") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)) :*: S1 (MetaSel (Just "_lfrFolders") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe [Folder]))))

listFoldersResponse :: ListFoldersResponse Source #

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

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

lfrNextPageToken :: Lens' ListFoldersResponse (Maybe Text) Source #

A pagination token returned from a previous call to `ListFolders` that indicates from where listing should continue. This field is optional.

lfrFolders :: Lens' ListFoldersResponse [Folder] Source #

A possibly paginated list of Folders that are direct descendants of the specified parent resource.

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` that 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. - 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 # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

Methods

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

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

Data Status Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

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 # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

Generic Status Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

Associated Types

type Rep Status :: Type -> Type #

Methods

from :: Status -> Rep Status x #

to :: Rep Status x -> Status #

ToJSON Status Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

FromJSON Status Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

type Rep Status Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

type Rep Status = D1 (MetaData "Status" "Network.Google.ResourceManager.Types.Product" "gogol-resourcemanager-0.4.0-UDFVnkFAEA9efzG80swCH" False) (C1 (MetaCons "Status'" PrefixI True) (S1 (MetaSel (Just "_sDetails") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe [StatusDetailsItem])) :*: (S1 (MetaSel (Just "_sCode") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe (Textual Int32))) :*: S1 (MetaSel (Just "_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 is 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.

FolderLifecycleState

data FolderLifecycleState Source #

Output only. The lifecycle state of the folder. Updates to the lifecycle_state must be performed via DeleteFolder and UndeleteFolder.

Constructors

LifecycleStateUnspecified

LIFECYCLE_STATE_UNSPECIFIED Unspecified state.

Active

ACTIVE The normal and active state.

DeleteRequested

DELETE_REQUESTED The folder has been marked for deletion by the user.

Instances
Enum FolderLifecycleState Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Sum

Eq FolderLifecycleState Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Sum

Data FolderLifecycleState Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Sum

Methods

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

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

toConstr :: FolderLifecycleState -> Constr #

dataTypeOf :: FolderLifecycleState -> DataType #

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

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

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

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

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

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

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

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

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

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

Ord FolderLifecycleState Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Sum

Read FolderLifecycleState Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Sum

Show FolderLifecycleState Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Sum

Generic FolderLifecycleState Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Sum

Associated Types

type Rep FolderLifecycleState :: Type -> Type #

Hashable FolderLifecycleState Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Sum

ToJSON FolderLifecycleState Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Sum

FromJSON FolderLifecycleState Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Sum

FromHttpApiData FolderLifecycleState Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Sum

ToHttpApiData FolderLifecycleState Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Sum

type Rep FolderLifecycleState Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Sum

type Rep FolderLifecycleState = D1 (MetaData "FolderLifecycleState" "Network.Google.ResourceManager.Types.Sum" "gogol-resourcemanager-0.4.0-UDFVnkFAEA9efzG80swCH" False) (C1 (MetaCons "LifecycleStateUnspecified" PrefixI False) (U1 :: Type -> Type) :+: (C1 (MetaCons "Active" PrefixI False) (U1 :: Type -> Type) :+: C1 (MetaCons "DeleteRequested" PrefixI False) (U1 :: Type -> Type)))

AuditConfig

data AuditConfig Source #

Specifies the audit configuration for a service. The configuration determines which permission types are logged, and what identities, if any, are exempted from logging. An AuditConfig must have one or more AuditLogConfigs. If there are AuditConfigs for both `allServices` and a specific service, the union of the two AuditConfigs is used for that service: the log_types specified in each AuditConfig are enabled, and the exempted_members in each AuditLogConfig are exempted. Example Policy with multiple AuditConfigs: { "audit_configs": [ { "service": "allServices" "audit_log_configs": [ { "log_type": "DATA_READ", "exempted_members": [ "user:foo'gmail.com" ] }, { "log_type": "DATA_WRITE", }, { "log_type": "ADMIN_READ", } ] }, { "service": "fooservice.googleapis.com" "audit_log_configs": [ { "log_type": "DATA_READ", }, { "log_type": "DATA_WRITE", "exempted_members": [ "user:bar'gmail.com" ] } ] } ] } For fooservice, this policy enables DATA_READ, DATA_WRITE and ADMIN_READ logging. It also exempts foo'gmail.com from DATA_READ logging, and bar'gmail.com from DATA_WRITE logging.

See: auditConfig smart constructor.

Instances
Eq AuditConfig Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

Data AuditConfig Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

Methods

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

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

toConstr :: AuditConfig -> Constr #

dataTypeOf :: AuditConfig -> DataType #

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

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

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

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

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

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

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

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

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

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

Show AuditConfig Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

Generic AuditConfig Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

Associated Types

type Rep AuditConfig :: Type -> Type #

ToJSON AuditConfig Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

FromJSON AuditConfig Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

type Rep AuditConfig Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

type Rep AuditConfig = D1 (MetaData "AuditConfig" "Network.Google.ResourceManager.Types.Product" "gogol-resourcemanager-0.4.0-UDFVnkFAEA9efzG80swCH" False) (C1 (MetaCons "AuditConfig'" PrefixI True) (S1 (MetaSel (Just "_acService") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)) :*: S1 (MetaSel (Just "_acAuditLogConfigs") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe [AuditLogConfig]))))

auditConfig :: AuditConfig Source #

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

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

acService :: Lens' AuditConfig (Maybe Text) Source #

Specifies a service that will be enabled for audit logging. For example, `storage.googleapis.com`, `cloudsql.googleapis.com`. `allServices` is a special value that covers all services.

acAuditLogConfigs :: Lens' AuditConfig [AuditLogConfig] Source #

The configuration for logging of each type of permission.

Expr

data Expr Source #

Represents an expression text. Example: title: "User account presence" description: "Determines whether the request has a user account" expression: "size(request.user) > 0"

See: expr smart constructor.

Instances
Eq Expr Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

Methods

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

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

Data Expr Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

Methods

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

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

toConstr :: Expr -> Constr #

dataTypeOf :: Expr -> DataType #

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

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

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

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

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

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

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

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

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

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

Show Expr Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

Methods

showsPrec :: Int -> Expr -> ShowS #

show :: Expr -> String #

showList :: [Expr] -> ShowS #

Generic Expr Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

Associated Types

type Rep Expr :: Type -> Type #

Methods

from :: Expr -> Rep Expr x #

to :: Rep Expr x -> Expr #

ToJSON Expr Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

FromJSON Expr Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

type Rep Expr Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

type Rep Expr = D1 (MetaData "Expr" "Network.Google.ResourceManager.Types.Product" "gogol-resourcemanager-0.4.0-UDFVnkFAEA9efzG80swCH" False) (C1 (MetaCons "Expr'" PrefixI True) ((S1 (MetaSel (Just "_eLocation") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)) :*: S1 (MetaSel (Just "_eExpression") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) :*: (S1 (MetaSel (Just "_eTitle") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)) :*: S1 (MetaSel (Just "_eDescription") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)))))

expr :: Expr Source #

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

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

eLocation :: Lens' Expr (Maybe Text) Source #

An optional string indicating the location of the expression for error reporting, e.g. a file name and a position in the file.

eExpression :: Lens' Expr (Maybe Text) Source #

Textual representation of an expression in Common Expression Language syntax. The application context of the containing message determines which well-known feature set of CEL is supported.

eTitle :: Lens' Expr (Maybe Text) Source #

An optional title for the expression, i.e. a short string describing its purpose. This can be used e.g. in UIs which allow to enter the expression.

eDescription :: Lens' Expr (Maybe Text) Source #

An optional description of the expression. This is a longer text which describes the expression, e.g. when hovered over it in a UI.

GetIAMPolicyRequest

data GetIAMPolicyRequest Source #

Request message for `GetIamPolicy` method.

See: getIAMPolicyRequest smart constructor.

Instances
Eq GetIAMPolicyRequest Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

Data GetIAMPolicyRequest Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

Methods

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

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

toConstr :: GetIAMPolicyRequest -> Constr #

dataTypeOf :: GetIAMPolicyRequest -> DataType #

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

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

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

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

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

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

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

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

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

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

Show GetIAMPolicyRequest Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

Generic GetIAMPolicyRequest Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

Associated Types

type Rep GetIAMPolicyRequest :: Type -> Type #

ToJSON GetIAMPolicyRequest Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

FromJSON GetIAMPolicyRequest Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

type Rep GetIAMPolicyRequest Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

type Rep GetIAMPolicyRequest = D1 (MetaData "GetIAMPolicyRequest" "Network.Google.ResourceManager.Types.Product" "gogol-resourcemanager-0.4.0-UDFVnkFAEA9efzG80swCH" False) (C1 (MetaCons "GetIAMPolicyRequest'" PrefixI False) (U1 :: Type -> Type))

getIAMPolicyRequest :: GetIAMPolicyRequest Source #

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

SearchFoldersRequest

data SearchFoldersRequest Source #

The request message for searching folders.

See: searchFoldersRequest smart constructor.

Instances
Eq SearchFoldersRequest Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

Data SearchFoldersRequest Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

Methods

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

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

toConstr :: SearchFoldersRequest -> Constr #

dataTypeOf :: SearchFoldersRequest -> DataType #

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

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

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

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

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

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

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

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

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

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

Show SearchFoldersRequest Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

Generic SearchFoldersRequest Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

Associated Types

type Rep SearchFoldersRequest :: Type -> Type #

ToJSON SearchFoldersRequest Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

FromJSON SearchFoldersRequest Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

type Rep SearchFoldersRequest Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

type Rep SearchFoldersRequest = D1 (MetaData "SearchFoldersRequest" "Network.Google.ResourceManager.Types.Product" "gogol-resourcemanager-0.4.0-UDFVnkFAEA9efzG80swCH" False) (C1 (MetaCons "SearchFoldersRequest'" PrefixI True) (S1 (MetaSel (Just "_sfrQuery") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 (MetaSel (Just "_sfrPageToken") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)) :*: S1 (MetaSel (Just "_sfrPageSize") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe (Textual Int32))))))

searchFoldersRequest :: SearchFoldersRequest Source #

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

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

sfrQuery :: Lens' SearchFoldersRequest (Maybe Text) Source #

Search criteria used to select the Folders to return. If no search criteria is specified then all accessible folders will be returned. Query expressions can be used to restrict results based upon displayName, lifecycleState and parent, where the operators `=`, `NOT`, `AND` and `OR` can be used along with the suffix wildcard symbol `*`. The displayName field in a query expression should use escaped quotes for values that include whitespace to prevent unexpected behavior. Some example queries are: |Query | Description| |----- | -----------| |displayName=Test* | Folders whose display name starts with "Test".| |lifecycleState=ACTIVE | Folders whose lifecycleState is ACTIVE.| |parent=folders/123 | Folders whose parent is "folders/123".| |parent=folders/123 AND lifecycleState=ACTIVE | Active folders whose parent is "folders/123".| |displayName=\\"Test String\\"|Folders whose display name includes both "Test" and "String".|

sfrPageToken :: Lens' SearchFoldersRequest (Maybe Text) Source #

A pagination token returned from a previous call to `SearchFolders` that indicates from where search should continue. This field is optional.

sfrPageSize :: Lens' SearchFoldersRequest (Maybe Int32) Source #

The maximum number of folders to return in the response. This field is optional.

UndeleteFolderRequest

data UndeleteFolderRequest Source #

The UndeleteFolder request message.

See: undeleteFolderRequest smart constructor.

Instances
Eq UndeleteFolderRequest Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

Data UndeleteFolderRequest Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

Methods

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

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

toConstr :: UndeleteFolderRequest -> Constr #

dataTypeOf :: UndeleteFolderRequest -> DataType #

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

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

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

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

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

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

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

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

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

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

Show UndeleteFolderRequest Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

Generic UndeleteFolderRequest Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

Associated Types

type Rep UndeleteFolderRequest :: Type -> Type #

ToJSON UndeleteFolderRequest Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

FromJSON UndeleteFolderRequest Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

type Rep UndeleteFolderRequest Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

type Rep UndeleteFolderRequest = D1 (MetaData "UndeleteFolderRequest" "Network.Google.ResourceManager.Types.Product" "gogol-resourcemanager-0.4.0-UDFVnkFAEA9efzG80swCH" False) (C1 (MetaCons "UndeleteFolderRequest'" PrefixI False) (U1 :: Type -> Type))

undeleteFolderRequest :: UndeleteFolderRequest Source #

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

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 # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

Data Operation Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

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 # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

Generic Operation Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

Associated Types

type Rep Operation :: Type -> Type #

ToJSON Operation Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

FromJSON Operation Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

type Rep Operation Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

type Rep Operation = D1 (MetaData "Operation" "Network.Google.ResourceManager.Types.Product" "gogol-resourcemanager-0.4.0-UDFVnkFAEA9efzG80swCH" False) (C1 (MetaCons "Operation'" PrefixI True) ((S1 (MetaSel (Just "_oDone") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Bool)) :*: S1 (MetaSel (Just "_oError") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Status))) :*: (S1 (MetaSel (Just "_oResponse") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe OperationResponse)) :*: (S1 (MetaSel (Just "_oName") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)) :*: S1 (MetaSel (Just "_oMetadata") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe OperationMetadata))))))

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 OperationMetadata) 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.

FolderOperationErrorErrorMessageId

data FolderOperationErrorErrorMessageId Source #

The type of operation error experienced.

Constructors

ErrorTypeUnspecified

ERROR_TYPE_UNSPECIFIED The error type was unrecognized or unspecified.

ActiveFolderHeightViolation

ACTIVE_FOLDER_HEIGHT_VIOLATION The attempted action would violate the max folder depth constraint.

MaxChildFoldersViolation

MAX_CHILD_FOLDERS_VIOLATION The attempted action would violate the max child folders constraint.

FolderNameUniquenessViolation

FOLDER_NAME_UNIQUENESS_VIOLATION The attempted action would violate the locally-unique folder display_name constraint.

ResourceDeletedViolation

RESOURCE_DELETED_VIOLATION The resource being moved has been deleted.

ParentDeletedViolation

PARENT_DELETED_VIOLATION The resource a folder was being added to has been deleted.

CycleIntroducedViolation

CYCLE_INTRODUCED_VIOLATION The attempted action would introduce cycle in resource path.

FolderBeingMovedViolation

FOLDER_BEING_MOVED_VIOLATION The attempted action would move a folder that is already being moved.

FolderToDeleteNonEmptyViolation

FOLDER_TO_DELETE_NON_EMPTY_VIOLATION The folder the caller is trying to delete contains active resources.

DeletedFolderHeightViolation

DELETED_FOLDER_HEIGHT_VIOLATION The attempted action would violate the max deleted folder depth constraint.

Instances
Enum FolderOperationErrorErrorMessageId Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Sum

Eq FolderOperationErrorErrorMessageId Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Sum

Data FolderOperationErrorErrorMessageId Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Sum

Methods

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

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

toConstr :: FolderOperationErrorErrorMessageId -> Constr #

dataTypeOf :: FolderOperationErrorErrorMessageId -> DataType #

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

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

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

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

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

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

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

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

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

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

Ord FolderOperationErrorErrorMessageId Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Sum

Read FolderOperationErrorErrorMessageId Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Sum

Show FolderOperationErrorErrorMessageId Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Sum

Generic FolderOperationErrorErrorMessageId Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Sum

Associated Types

type Rep FolderOperationErrorErrorMessageId :: Type -> Type #

Hashable FolderOperationErrorErrorMessageId Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Sum

ToJSON FolderOperationErrorErrorMessageId Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Sum

FromJSON FolderOperationErrorErrorMessageId Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Sum

FromHttpApiData FolderOperationErrorErrorMessageId Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Sum

ToHttpApiData FolderOperationErrorErrorMessageId Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Sum

type Rep FolderOperationErrorErrorMessageId Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Sum

type Rep FolderOperationErrorErrorMessageId = D1 (MetaData "FolderOperationErrorErrorMessageId" "Network.Google.ResourceManager.Types.Sum" "gogol-resourcemanager-0.4.0-UDFVnkFAEA9efzG80swCH" False) (((C1 (MetaCons "ErrorTypeUnspecified" PrefixI False) (U1 :: Type -> Type) :+: C1 (MetaCons "ActiveFolderHeightViolation" PrefixI False) (U1 :: Type -> Type)) :+: (C1 (MetaCons "MaxChildFoldersViolation" PrefixI False) (U1 :: Type -> Type) :+: (C1 (MetaCons "FolderNameUniquenessViolation" PrefixI False) (U1 :: Type -> Type) :+: C1 (MetaCons "ResourceDeletedViolation" PrefixI False) (U1 :: Type -> Type)))) :+: ((C1 (MetaCons "ParentDeletedViolation" PrefixI False) (U1 :: Type -> Type) :+: C1 (MetaCons "CycleIntroducedViolation" PrefixI False) (U1 :: Type -> Type)) :+: (C1 (MetaCons "FolderBeingMovedViolation" PrefixI False) (U1 :: Type -> Type) :+: (C1 (MetaCons "FolderToDeleteNonEmptyViolation" PrefixI False) (U1 :: Type -> Type) :+: C1 (MetaCons "DeletedFolderHeightViolation" PrefixI False) (U1 :: Type -> Type)))))

SearchFoldersResponse

data SearchFoldersResponse Source #

The response message for searching folders.

See: searchFoldersResponse smart constructor.

Instances
Eq SearchFoldersResponse Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

Data SearchFoldersResponse Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

Methods

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

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

toConstr :: SearchFoldersResponse -> Constr #

dataTypeOf :: SearchFoldersResponse -> DataType #

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

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

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

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

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

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

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

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

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

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

Show SearchFoldersResponse Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

Generic SearchFoldersResponse Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

Associated Types

type Rep SearchFoldersResponse :: Type -> Type #

ToJSON SearchFoldersResponse Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

FromJSON SearchFoldersResponse Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

type Rep SearchFoldersResponse Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

type Rep SearchFoldersResponse = D1 (MetaData "SearchFoldersResponse" "Network.Google.ResourceManager.Types.Product" "gogol-resourcemanager-0.4.0-UDFVnkFAEA9efzG80swCH" False) (C1 (MetaCons "SearchFoldersResponse'" PrefixI True) (S1 (MetaSel (Just "_sfrNextPageToken") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)) :*: S1 (MetaSel (Just "_sfrFolders") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe [Folder]))))

searchFoldersResponse :: SearchFoldersResponse Source #

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

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

sfrNextPageToken :: Lens' SearchFoldersResponse (Maybe Text) Source #

A pagination token returned from a previous call to `SearchFolders` that indicates from where searching should continue. This field is optional.

sfrFolders :: Lens' SearchFoldersResponse [Folder] Source #

A possibly paginated folder search results. the specified parent resource.

ProjectCreationStatus

data ProjectCreationStatus Source #

A status object which is used as the `metadata` field for the Operation returned by CreateProject. It provides insight for when significant phases of Project creation have completed.

See: projectCreationStatus smart constructor.

Instances
Eq ProjectCreationStatus Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

Data ProjectCreationStatus Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

Methods

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

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

toConstr :: ProjectCreationStatus -> Constr #

dataTypeOf :: ProjectCreationStatus -> DataType #

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

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

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

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

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

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

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

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

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

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

Show ProjectCreationStatus Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

Generic ProjectCreationStatus Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

Associated Types

type Rep ProjectCreationStatus :: Type -> Type #

ToJSON ProjectCreationStatus Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

FromJSON ProjectCreationStatus Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

type Rep ProjectCreationStatus Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

type Rep ProjectCreationStatus = D1 (MetaData "ProjectCreationStatus" "Network.Google.ResourceManager.Types.Product" "gogol-resourcemanager-0.4.0-UDFVnkFAEA9efzG80swCH" False) (C1 (MetaCons "ProjectCreationStatus'" PrefixI True) (S1 (MetaSel (Just "_pcsGettable") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Bool)) :*: (S1 (MetaSel (Just "_pcsReady") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Bool)) :*: S1 (MetaSel (Just "_pcsCreateTime") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe DateTime')))))

projectCreationStatus :: ProjectCreationStatus Source #

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

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

pcsGettable :: Lens' ProjectCreationStatus (Maybe Bool) Source #

True if the project can be retrieved using GetProject. No other operations on the project are guaranteed to work until the project creation is complete.

pcsReady :: Lens' ProjectCreationStatus (Maybe Bool) Source #

True if the project creation process is complete.

pcsCreateTime :: Lens' ProjectCreationStatus (Maybe UTCTime) Source #

Creation time of the project creation workflow.

StatusDetailsItem

data StatusDetailsItem Source #

Instances
Eq StatusDetailsItem Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

Data StatusDetailsItem Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

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 # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

Generic StatusDetailsItem Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

Associated Types

type Rep StatusDetailsItem :: Type -> Type #

ToJSON StatusDetailsItem Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

FromJSON StatusDetailsItem Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

type Rep StatusDetailsItem Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

type Rep StatusDetailsItem = D1 (MetaData "StatusDetailsItem" "Network.Google.ResourceManager.Types.Product" "gogol-resourcemanager-0.4.0-UDFVnkFAEA9efzG80swCH" True) (C1 (MetaCons "StatusDetailsItem'" PrefixI True) (S1 (MetaSel (Just "_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.

FolderOperationError

data FolderOperationError Source #

A classification of the Folder Operation error.

See: folderOperationError smart constructor.

Instances
Eq FolderOperationError Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

Data FolderOperationError Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

Methods

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

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

toConstr :: FolderOperationError -> Constr #

dataTypeOf :: FolderOperationError -> DataType #

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

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

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

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

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

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

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

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

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

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

Show FolderOperationError Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

Generic FolderOperationError Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

Associated Types

type Rep FolderOperationError :: Type -> Type #

ToJSON FolderOperationError Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

FromJSON FolderOperationError Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

type Rep FolderOperationError Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

type Rep FolderOperationError = D1 (MetaData "FolderOperationError" "Network.Google.ResourceManager.Types.Product" "gogol-resourcemanager-0.4.0-UDFVnkFAEA9efzG80swCH" True) (C1 (MetaCons "FolderOperationError'" PrefixI True) (S1 (MetaSel (Just "_foeErrorMessageId") NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 (Maybe FolderOperationErrorErrorMessageId))))

folderOperationError :: FolderOperationError Source #

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

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

Folder

data Folder Source #

A Folder in an Organization's resource hierarchy, used to organize that Organization's resources.

See: folder smart constructor.

Instances
Eq Folder Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

Methods

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

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

Data Folder Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

Methods

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

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

toConstr :: Folder -> Constr #

dataTypeOf :: Folder -> DataType #

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

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

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

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

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

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

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

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

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

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

Show Folder Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

Generic Folder Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

Associated Types

type Rep Folder :: Type -> Type #

Methods

from :: Folder -> Rep Folder x #

to :: Rep Folder x -> Folder #

ToJSON Folder Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

FromJSON Folder Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

type Rep Folder Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

type Rep Folder = D1 (MetaData "Folder" "Network.Google.ResourceManager.Types.Product" "gogol-resourcemanager-0.4.0-UDFVnkFAEA9efzG80swCH" False) (C1 (MetaCons "Folder'" PrefixI True) ((S1 (MetaSel (Just "_fParent") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)) :*: S1 (MetaSel (Just "_fName") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) :*: (S1 (MetaSel (Just "_fDisplayName") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 (MetaSel (Just "_fLifecycleState") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe FolderLifecycleState)) :*: S1 (MetaSel (Just "_fCreateTime") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe DateTime'))))))

folder :: Folder Source #

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

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

fParent :: Lens' Folder (Maybe Text) Source #

The Folder’s parent's resource name. Updates to the folder's parent must be performed via MoveFolder.

fName :: Lens' Folder (Maybe Text) Source #

Output only. The resource name of the Folder. Its format is `folders/{folder_id}`, for example: "folders/1234".

fDisplayName :: Lens' Folder (Maybe Text) Source #

The folder’s display name. A folder’s display name must be unique amongst its siblings, e.g. no two folders with the same parent can share the same display name. The display name must start and end with a letter or digit, may contain letters, digits, spaces, hyphens and underscores and can be no longer than 30 characters. This is captured by the regular expression: [\p{L}\p{N}]([\p{L}\p{N}_- ]{0,28}[\p{L}\p{N}])?.

fLifecycleState :: Lens' Folder (Maybe FolderLifecycleState) Source #

Output only. The lifecycle state of the folder. Updates to the lifecycle_state must be performed via DeleteFolder and UndeleteFolder.

fCreateTime :: Lens' Folder (Maybe UTCTime) Source #

Output only. Timestamp when the Folder was created. Assigned by the server.

FolderOperationOperationType

data FolderOperationOperationType Source #

The type of this operation.

Constructors

OperationTypeUnspecified

OPERATION_TYPE_UNSPECIFIED Operation type not specified.

Create

CREATE A create folder operation.

Move

MOVE A move folder operation.

Instances
Enum FolderOperationOperationType Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Sum

Eq FolderOperationOperationType Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Sum

Data FolderOperationOperationType Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Sum

Methods

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

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

toConstr :: FolderOperationOperationType -> Constr #

dataTypeOf :: FolderOperationOperationType -> DataType #

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

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

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

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

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

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

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

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

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

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

Ord FolderOperationOperationType Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Sum

Read FolderOperationOperationType Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Sum

Show FolderOperationOperationType Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Sum

Generic FolderOperationOperationType Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Sum

Associated Types

type Rep FolderOperationOperationType :: Type -> Type #

Hashable FolderOperationOperationType Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Sum

ToJSON FolderOperationOperationType Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Sum

FromJSON FolderOperationOperationType Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Sum

FromHttpApiData FolderOperationOperationType Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Sum

ToHttpApiData FolderOperationOperationType Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Sum

type Rep FolderOperationOperationType Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Sum

type Rep FolderOperationOperationType = D1 (MetaData "FolderOperationOperationType" "Network.Google.ResourceManager.Types.Sum" "gogol-resourcemanager-0.4.0-UDFVnkFAEA9efzG80swCH" False) (C1 (MetaCons "OperationTypeUnspecified" PrefixI False) (U1 :: Type -> Type) :+: (C1 (MetaCons "Create" PrefixI False) (U1 :: Type -> Type) :+: C1 (MetaCons "Move" PrefixI False) (U1 :: Type -> Type)))

SetIAMPolicyRequest

data SetIAMPolicyRequest Source #

Request message for `SetIamPolicy` method.

See: setIAMPolicyRequest smart constructor.

Instances
Eq SetIAMPolicyRequest Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

Data SetIAMPolicyRequest Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

Methods

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

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

toConstr :: SetIAMPolicyRequest -> Constr #

dataTypeOf :: SetIAMPolicyRequest -> DataType #

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

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

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

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

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

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

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

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

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

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

Show SetIAMPolicyRequest Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

Generic SetIAMPolicyRequest Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

Associated Types

type Rep SetIAMPolicyRequest :: Type -> Type #

ToJSON SetIAMPolicyRequest Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

FromJSON SetIAMPolicyRequest Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

type Rep SetIAMPolicyRequest Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

type Rep SetIAMPolicyRequest = D1 (MetaData "SetIAMPolicyRequest" "Network.Google.ResourceManager.Types.Product" "gogol-resourcemanager-0.4.0-UDFVnkFAEA9efzG80swCH" False) (C1 (MetaCons "SetIAMPolicyRequest'" PrefixI True) (S1 (MetaSel (Just "_siprUpdateMask") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe GFieldMask)) :*: S1 (MetaSel (Just "_siprPolicy") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Policy))))

setIAMPolicyRequest :: SetIAMPolicyRequest Source #

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

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

siprUpdateMask :: Lens' SetIAMPolicyRequest (Maybe GFieldMask) Source #

OPTIONAL: A FieldMask specifying which fields of the policy to modify. Only the fields in the mask will be modified. If no mask is provided, the following default mask is used: paths: "bindings, etag" This field is only used by Cloud IAM.

siprPolicy :: Lens' SetIAMPolicyRequest (Maybe Policy) Source #

REQUIRED: The complete policy to be applied to the `resource`. The size of the policy is limited to a few 10s of KB. An empty policy is a valid policy but certain Cloud Platform services (such as Projects) might reject them.

AuditLogConfigLogType

data AuditLogConfigLogType Source #

The log type that this config enables.

Constructors

LogTypeUnspecified

LOG_TYPE_UNSPECIFIED Default case. Should never be this.

AdminRead

ADMIN_READ Admin reads. Example: CloudIAM getIamPolicy

DataWrite

DATA_WRITE Data writes. Example: CloudSQL Users create

DataRead

DATA_READ Data reads. Example: CloudSQL Users list

Instances
Enum AuditLogConfigLogType Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Sum

Eq AuditLogConfigLogType Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Sum

Data AuditLogConfigLogType Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Sum

Methods

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

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

toConstr :: AuditLogConfigLogType -> Constr #

dataTypeOf :: AuditLogConfigLogType -> DataType #

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

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

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

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

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

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

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

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

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

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

Ord AuditLogConfigLogType Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Sum

Read AuditLogConfigLogType Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Sum

Show AuditLogConfigLogType Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Sum

Generic AuditLogConfigLogType Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Sum

Associated Types

type Rep AuditLogConfigLogType :: Type -> Type #

Hashable AuditLogConfigLogType Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Sum

ToJSON AuditLogConfigLogType Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Sum

FromJSON AuditLogConfigLogType Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Sum

FromHttpApiData AuditLogConfigLogType Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Sum

ToHttpApiData AuditLogConfigLogType Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Sum

type Rep AuditLogConfigLogType Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Sum

type Rep AuditLogConfigLogType = D1 (MetaData "AuditLogConfigLogType" "Network.Google.ResourceManager.Types.Sum" "gogol-resourcemanager-0.4.0-UDFVnkFAEA9efzG80swCH" False) ((C1 (MetaCons "LogTypeUnspecified" PrefixI False) (U1 :: Type -> Type) :+: C1 (MetaCons "AdminRead" PrefixI False) (U1 :: Type -> Type)) :+: (C1 (MetaCons "DataWrite" PrefixI False) (U1 :: Type -> Type) :+: C1 (MetaCons "DataRead" PrefixI False) (U1 :: Type -> Type)))

Xgafv

data Xgafv Source #

V1 error format.

Constructors

X1

1 v1 error format

X2

2 v2 error format

Instances
Enum Xgafv Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Sum

Eq Xgafv Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Sum

Methods

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

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

Data Xgafv Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Sum

Methods

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

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

toConstr :: Xgafv -> Constr #

dataTypeOf :: Xgafv -> DataType #

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

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

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

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

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

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

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

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

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

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

Ord Xgafv Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Sum

Methods

compare :: Xgafv -> Xgafv -> Ordering #

(<) :: Xgafv -> Xgafv -> Bool #

(<=) :: Xgafv -> Xgafv -> Bool #

(>) :: Xgafv -> Xgafv -> Bool #

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

max :: Xgafv -> Xgafv -> Xgafv #

min :: Xgafv -> Xgafv -> Xgafv #

Read Xgafv Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Sum

Show Xgafv Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Sum

Methods

showsPrec :: Int -> Xgafv -> ShowS #

show :: Xgafv -> String #

showList :: [Xgafv] -> ShowS #

Generic Xgafv Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Sum

Associated Types

type Rep Xgafv :: Type -> Type #

Methods

from :: Xgafv -> Rep Xgafv x #

to :: Rep Xgafv x -> Xgafv #

Hashable Xgafv Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Sum

Methods

hashWithSalt :: Int -> Xgafv -> Int #

hash :: Xgafv -> Int #

ToJSON Xgafv Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Sum

FromJSON Xgafv Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Sum

FromHttpApiData Xgafv Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Sum

ToHttpApiData Xgafv Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Sum

type Rep Xgafv Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Sum

type Rep Xgafv = D1 (MetaData "Xgafv" "Network.Google.ResourceManager.Types.Sum" "gogol-resourcemanager-0.4.0-UDFVnkFAEA9efzG80swCH" False) (C1 (MetaCons "X1" PrefixI False) (U1 :: Type -> Type) :+: C1 (MetaCons "X2" PrefixI False) (U1 :: Type -> Type))

TestIAMPermissionsRequest

data TestIAMPermissionsRequest Source #

Request message for `TestIamPermissions` method.

See: testIAMPermissionsRequest smart constructor.

Instances
Eq TestIAMPermissionsRequest Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

Data TestIAMPermissionsRequest Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

Methods

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

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

toConstr :: TestIAMPermissionsRequest -> Constr #

dataTypeOf :: TestIAMPermissionsRequest -> DataType #

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

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

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

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

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

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

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

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

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

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

Show TestIAMPermissionsRequest Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

Generic TestIAMPermissionsRequest Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

Associated Types

type Rep TestIAMPermissionsRequest :: Type -> Type #

ToJSON TestIAMPermissionsRequest Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

FromJSON TestIAMPermissionsRequest Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

type Rep TestIAMPermissionsRequest Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

type Rep TestIAMPermissionsRequest = D1 (MetaData "TestIAMPermissionsRequest" "Network.Google.ResourceManager.Types.Product" "gogol-resourcemanager-0.4.0-UDFVnkFAEA9efzG80swCH" True) (C1 (MetaCons "TestIAMPermissionsRequest'" PrefixI True) (S1 (MetaSel (Just "_tiprPermissions") NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 (Maybe [Text]))))

testIAMPermissionsRequest :: TestIAMPermissionsRequest Source #

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

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

tiprPermissions :: Lens' TestIAMPermissionsRequest [Text] Source #

The set of permissions to check for the `resource`. Permissions with wildcards (such as '*' or 'storage.*') are not allowed. For more information see IAM Overview.

TestIAMPermissionsResponse

data TestIAMPermissionsResponse Source #

Response message for `TestIamPermissions` method.

See: testIAMPermissionsResponse smart constructor.

Instances
Eq TestIAMPermissionsResponse Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

Data TestIAMPermissionsResponse Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

Methods

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

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

toConstr :: TestIAMPermissionsResponse -> Constr #

dataTypeOf :: TestIAMPermissionsResponse -> DataType #

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

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

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

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

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

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

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

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

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

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

Show TestIAMPermissionsResponse Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

Generic TestIAMPermissionsResponse Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

Associated Types

type Rep TestIAMPermissionsResponse :: Type -> Type #

ToJSON TestIAMPermissionsResponse Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

FromJSON TestIAMPermissionsResponse Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

type Rep TestIAMPermissionsResponse Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

type Rep TestIAMPermissionsResponse = D1 (MetaData "TestIAMPermissionsResponse" "Network.Google.ResourceManager.Types.Product" "gogol-resourcemanager-0.4.0-UDFVnkFAEA9efzG80swCH" True) (C1 (MetaCons "TestIAMPermissionsResponse'" PrefixI True) (S1 (MetaSel (Just "_tiamprPermissions") NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 (Maybe [Text]))))

testIAMPermissionsResponse :: TestIAMPermissionsResponse Source #

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

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

tiamprPermissions :: Lens' TestIAMPermissionsResponse [Text] Source #

A subset of `TestPermissionsRequest.permissions` that the caller is allowed.

Policy

data Policy Source #

Defines an Identity and Access Management (IAM) policy. It is used to specify access control policies for Cloud Platform resources. A `Policy` consists of a list of `bindings`. A `binding` binds a list of `members` to a `role`, where the members can be user accounts, Google groups, Google domains, and service accounts. A `role` is a named list of permissions defined by IAM. **JSON Example** { "bindings": [ { "role": "roles/owner", "members": [ "user:mike'example.com", "group:admins'example.com", "domain:google.com", "serviceAccount:my-other-app'appspot.gserviceaccount.com" ] }, { "role": "roles/viewer", "members": ["user:sean'example.com"] } ] } **YAML Example** bindings: - members: - user:mike'example.com - group:admins'example.com - domain:google.com - serviceAccount:my-other-app'appspot.gserviceaccount.com role: roles/owner - members: - user:sean'example.com role: roles/viewer For a description of IAM and its features, see the IAM developer's guide.

See: policy smart constructor.

Instances
Eq Policy Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

Methods

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

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

Data Policy Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

Methods

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

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

toConstr :: Policy -> Constr #

dataTypeOf :: Policy -> DataType #

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

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

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

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

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

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

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

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

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

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

Show Policy Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

Generic Policy Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

Associated Types

type Rep Policy :: Type -> Type #

Methods

from :: Policy -> Rep Policy x #

to :: Rep Policy x -> Policy #

ToJSON Policy Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

FromJSON Policy Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

type Rep Policy Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

type Rep Policy = D1 (MetaData "Policy" "Network.Google.ResourceManager.Types.Product" "gogol-resourcemanager-0.4.0-UDFVnkFAEA9efzG80swCH" False) (C1 (MetaCons "Policy'" PrefixI True) ((S1 (MetaSel (Just "_pAuditConfigs") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe [AuditConfig])) :*: S1 (MetaSel (Just "_pEtag") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Bytes))) :*: (S1 (MetaSel (Just "_pVersion") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe (Textual Int32))) :*: S1 (MetaSel (Just "_pBindings") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe [Binding])))))

policy :: Policy Source #

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

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

pAuditConfigs :: Lens' Policy [AuditConfig] Source #

Specifies cloud audit logging configuration for this policy.

pEtag :: Lens' Policy (Maybe ByteString) Source #

`etag` is used for optimistic concurrency control as a way to help prevent simultaneous updates of a policy from overwriting each other. It is strongly suggested that systems make use of the `etag` in the read-modify-write cycle to perform policy updates in order to avoid race conditions: An `etag` is returned in the response to `getIamPolicy`, and systems are expected to put that etag in the request to `setIamPolicy` to ensure that their change will be applied to the same version of the policy. If no `etag` is provided in the call to `setIamPolicy`, then the existing policy is overwritten blindly.

pBindings :: Lens' Policy [Binding] Source #

Associates a list of `members` to a `role`. `bindings` with no members will result in an error.

OperationMetadata

data OperationMetadata 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: operationMetadata smart constructor.

Instances
Eq OperationMetadata Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

Data OperationMetadata Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

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 # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

Generic OperationMetadata Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

Associated Types

type Rep OperationMetadata :: Type -> Type #

ToJSON OperationMetadata Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

FromJSON OperationMetadata Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

type Rep OperationMetadata Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

type Rep OperationMetadata = D1 (MetaData "OperationMetadata" "Network.Google.ResourceManager.Types.Product" "gogol-resourcemanager-0.4.0-UDFVnkFAEA9efzG80swCH" True) (C1 (MetaCons "OperationMetadata'" PrefixI True) (S1 (MetaSel (Just "_omAddtional") NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 (HashMap Text JSONValue))))

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:

omAddtional :: Lens' OperationMetadata (HashMap Text JSONValue) Source #

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

FolderOperation

data FolderOperation Source #

Metadata describing a long running folder operation

See: folderOperation smart constructor.

Instances
Eq FolderOperation Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

Data FolderOperation Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

Methods

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

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

toConstr :: FolderOperation -> Constr #

dataTypeOf :: FolderOperation -> DataType #

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

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

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

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

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

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

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

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

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

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

Show FolderOperation Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

Generic FolderOperation Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

Associated Types

type Rep FolderOperation :: Type -> Type #

ToJSON FolderOperation Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

FromJSON FolderOperation Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

type Rep FolderOperation Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

type Rep FolderOperation = D1 (MetaData "FolderOperation" "Network.Google.ResourceManager.Types.Product" "gogol-resourcemanager-0.4.0-UDFVnkFAEA9efzG80swCH" False) (C1 (MetaCons "FolderOperation'" PrefixI True) ((S1 (MetaSel (Just "_foDestinationParent") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)) :*: S1 (MetaSel (Just "_foDisplayName") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) :*: (S1 (MetaSel (Just "_foOperationType") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe FolderOperationOperationType)) :*: S1 (MetaSel (Just "_foSourceParent") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)))))

folderOperation :: FolderOperation Source #

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

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

foDestinationParent :: Lens' FolderOperation (Maybe Text) Source #

The resource name of the folder or organization we are either creating the folder under or moving the folder to.

foDisplayName :: Lens' FolderOperation (Maybe Text) Source #

The display name of the folder.

foSourceParent :: Lens' FolderOperation (Maybe Text) Source #

The resource name of the folder's parent. Only applicable when the operation_type is MOVE.

AuditLogConfig

data AuditLogConfig Source #

Provides the configuration for logging a type of permissions. Example: { "audit_log_configs": [ { "log_type": "DATA_READ", "exempted_members": [ "user:foo'gmail.com" ] }, { "log_type": "DATA_WRITE", } ] } This enables 'DATA_READ' and 'DATA_WRITE' logging, while exempting foo'gmail.com from DATA_READ logging.

See: auditLogConfig smart constructor.

Instances
Eq AuditLogConfig Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

Data AuditLogConfig Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

Methods

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

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

toConstr :: AuditLogConfig -> Constr #

dataTypeOf :: AuditLogConfig -> DataType #

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

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

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

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

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

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

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

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

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

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

Show AuditLogConfig Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

Generic AuditLogConfig Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

Associated Types

type Rep AuditLogConfig :: Type -> Type #

ToJSON AuditLogConfig Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

FromJSON AuditLogConfig Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

type Rep AuditLogConfig Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

type Rep AuditLogConfig = D1 (MetaData "AuditLogConfig" "Network.Google.ResourceManager.Types.Product" "gogol-resourcemanager-0.4.0-UDFVnkFAEA9efzG80swCH" False) (C1 (MetaCons "AuditLogConfig'" PrefixI True) (S1 (MetaSel (Just "_alcLogType") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe AuditLogConfigLogType)) :*: S1 (MetaSel (Just "_alcExemptedMembers") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe [Text]))))

auditLogConfig :: AuditLogConfig Source #

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

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

alcLogType :: Lens' AuditLogConfig (Maybe AuditLogConfigLogType) Source #

The log type that this config enables.

alcExemptedMembers :: Lens' AuditLogConfig [Text] Source #

Specifies the identities that do not cause logging for this type of permission. Follows the same format of Binding.members.

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 # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

Data OperationResponse Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

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 # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

Generic OperationResponse Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

Associated Types

type Rep OperationResponse :: Type -> Type #

ToJSON OperationResponse Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

FromJSON OperationResponse Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

type Rep OperationResponse Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

type Rep OperationResponse = D1 (MetaData "OperationResponse" "Network.Google.ResourceManager.Types.Product" "gogol-resourcemanager-0.4.0-UDFVnkFAEA9efzG80swCH" True) (C1 (MetaCons "OperationResponse'" PrefixI True) (S1 (MetaSel (Just "_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.

MoveFolderRequest

data MoveFolderRequest Source #

The MoveFolder request message.

See: moveFolderRequest smart constructor.

Instances
Eq MoveFolderRequest Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

Data MoveFolderRequest Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

Methods

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

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

toConstr :: MoveFolderRequest -> Constr #

dataTypeOf :: MoveFolderRequest -> DataType #

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

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

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

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

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

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

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

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

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

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

Show MoveFolderRequest Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

Generic MoveFolderRequest Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

Associated Types

type Rep MoveFolderRequest :: Type -> Type #

ToJSON MoveFolderRequest Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

FromJSON MoveFolderRequest Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

type Rep MoveFolderRequest Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

type Rep MoveFolderRequest = D1 (MetaData "MoveFolderRequest" "Network.Google.ResourceManager.Types.Product" "gogol-resourcemanager-0.4.0-UDFVnkFAEA9efzG80swCH" True) (C1 (MetaCons "MoveFolderRequest'" PrefixI True) (S1 (MetaSel (Just "_mfrDestinationParent") NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 (Maybe Text))))

moveFolderRequest :: MoveFolderRequest Source #

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

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

mfrDestinationParent :: Lens' MoveFolderRequest (Maybe Text) Source #

The resource name of the Folder or Organization to reparent the folder under. Must be of the form `folders/{folder_id}` or `organizations/{org_id}`.

Binding

data Binding Source #

Associates `members` with a `role`.

See: binding smart constructor.

Instances
Eq Binding Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

Methods

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

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

Data Binding Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

Methods

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

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

toConstr :: Binding -> Constr #

dataTypeOf :: Binding -> DataType #

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

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

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

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

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

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

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

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

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

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

Show Binding Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

Generic Binding Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

Associated Types

type Rep Binding :: Type -> Type #

Methods

from :: Binding -> Rep Binding x #

to :: Rep Binding x -> Binding #

ToJSON Binding Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

FromJSON Binding Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

type Rep Binding Source # 
Instance details

Defined in Network.Google.ResourceManager.Types.Product

type Rep Binding = D1 (MetaData "Binding" "Network.Google.ResourceManager.Types.Product" "gogol-resourcemanager-0.4.0-UDFVnkFAEA9efzG80swCH" False) (C1 (MetaCons "Binding'" PrefixI True) (S1 (MetaSel (Just "_bMembers") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe [Text])) :*: (S1 (MetaSel (Just "_bRole") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)) :*: S1 (MetaSel (Just "_bCondition") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Expr)))))

binding :: Binding Source #

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

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

bMembers :: Lens' Binding [Text] Source #

Specifies the identities requesting access for a Cloud Platform resource. `members` can have the following values: * `allUsers`: A special identifier that represents anyone who is on the internet; with or without a Google account. * `allAuthenticatedUsers`: A special identifier that represents anyone who is authenticated with a Google account or a service account. * `user:{emailid}`: An email address that represents a specific Google account. For example, `alice'gmail.com` . * `serviceAccount:{emailid}`: An email address that represents a service account. For example, `my-other-app'appspot.gserviceaccount.com`. * `group:{emailid}`: An email address that represents a Google group. For example, `admins'example.com`. * `domain:{domain}`: A Google Apps domain name that represents all the users of that domain. For example, `google.com` or `example.com`.

bRole :: Lens' Binding (Maybe Text) Source #

Role that is assigned to `members`. For example, `roles/viewer`, `roles/editor`, or `roles/owner`.

bCondition :: Lens' Binding (Maybe Expr) Source #

Unimplemented. The condition that is associated with this binding. NOTE: an unsatisfied condition will not allow user access via current binding. Different bindings, including their conditions, are examined independently.