Skip to content

Latest commit

 

History

History
1563 lines (975 loc) · 73.6 KB

globalLevelNotifications.typescript.md

File metadata and controls

1563 lines (975 loc) · 73.6 KB

globalLevelNotifications Submodule

Constructs

GlobalLevelNotifications

Represents a {@link https://registry.terraform.io/providers/gitlabhq/gitlab/17.0.1/docs/resources/global_level_notifications gitlab_global_level_notifications}.

Initializers

import { globalLevelNotifications } from '@cdktf/provider-gitlab'

new globalLevelNotifications.GlobalLevelNotifications(scope: Construct, id: string, config?: GlobalLevelNotificationsConfig)
Name Type Description
scope constructs.Construct The scope in which to define this construct.
id string The scoped construct ID.
config GlobalLevelNotificationsConfig No description.

scopeRequired
  • Type: constructs.Construct

The scope in which to define this construct.


idRequired
  • Type: string

The scoped construct ID.

Must be unique amongst siblings in the same scope


configOptional

Methods

Name Description
toString Returns a string representation of this construct.
addOverride No description.
overrideLogicalId Overrides the auto-generated logical ID with a specific ID.
resetOverrideLogicalId Resets a previously passed logical Id to use the auto-generated logical id again.
toHclTerraform No description.
toMetadata No description.
toTerraform Adds this resource to the terraform JSON output.
addMoveTarget Adds a user defined moveTarget string to this resource to be later used in .moveTo(moveTarget) to resolve the location of the move.
getAnyMapAttribute No description.
getBooleanAttribute No description.
getBooleanMapAttribute No description.
getListAttribute No description.
getNumberAttribute No description.
getNumberListAttribute No description.
getNumberMapAttribute No description.
getStringAttribute No description.
getStringMapAttribute No description.
hasResourceMove No description.
importFrom No description.
interpolationForAttribute No description.
moveFromId Move the resource corresponding to "id" to this resource.
moveTo Moves this resource to the target resource given by moveTarget.
moveToId Moves this resource to the resource corresponding to "id".
resetCloseIssue No description.
resetCloseMergeRequest No description.
resetFailedPipeline No description.
resetFixedPipeline No description.
resetIssueDue No description.
resetLevel No description.
resetMergeMergeRequest No description.
resetMergeWhenPipelineSucceeds No description.
resetMovedProject No description.
resetNewIssue No description.
resetNewMergeRequest No description.
resetNewNote No description.
resetPushToMergeRequest No description.
resetReassignIssue No description.
resetReassignMergeRequest No description.
resetReopenIssue No description.
resetReopenMergeRequest No description.
resetSuccessPipeline No description.

toString
public toString(): string

Returns a string representation of this construct.

addOverride
public addOverride(path: string, value: any): void
pathRequired
  • Type: string

valueRequired
  • Type: any

overrideLogicalId
public overrideLogicalId(newLogicalId: string): void

Overrides the auto-generated logical ID with a specific ID.

newLogicalIdRequired
  • Type: string

The new logical ID to use for this stack element.


resetOverrideLogicalId
public resetOverrideLogicalId(): void

Resets a previously passed logical Id to use the auto-generated logical id again.

toHclTerraform
public toHclTerraform(): any
toMetadata
public toMetadata(): any
toTerraform
public toTerraform(): any

Adds this resource to the terraform JSON output.

addMoveTarget
public addMoveTarget(moveTarget: string): void

Adds a user defined moveTarget string to this resource to be later used in .moveTo(moveTarget) to resolve the location of the move.

moveTargetRequired
  • Type: string

The string move target that will correspond to this resource.


getAnyMapAttribute
public getAnyMapAttribute(terraformAttribute: string): {[ key: string ]: any}
terraformAttributeRequired
  • Type: string

getBooleanAttribute
public getBooleanAttribute(terraformAttribute: string): IResolvable
terraformAttributeRequired
  • Type: string

getBooleanMapAttribute
public getBooleanMapAttribute(terraformAttribute: string): {[ key: string ]: boolean}
terraformAttributeRequired
  • Type: string

getListAttribute
public getListAttribute(terraformAttribute: string): string[]
terraformAttributeRequired
  • Type: string

getNumberAttribute
public getNumberAttribute(terraformAttribute: string): number
terraformAttributeRequired
  • Type: string

getNumberListAttribute
public getNumberListAttribute(terraformAttribute: string): number[]
terraformAttributeRequired
  • Type: string

getNumberMapAttribute
public getNumberMapAttribute(terraformAttribute: string): {[ key: string ]: number}
terraformAttributeRequired
  • Type: string

getStringAttribute
public getStringAttribute(terraformAttribute: string): string
terraformAttributeRequired
  • Type: string

getStringMapAttribute
public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: string}
terraformAttributeRequired
  • Type: string

hasResourceMove
public hasResourceMove(): TerraformResourceMoveByTarget | TerraformResourceMoveById
importFrom
public importFrom(id: string, provider?: TerraformProvider): void
idRequired
  • Type: string

providerOptional
  • Type: cdktf.TerraformProvider

interpolationForAttribute
public interpolationForAttribute(terraformAttribute: string): IResolvable
terraformAttributeRequired
  • Type: string

moveFromId
public moveFromId(id: string): void

Move the resource corresponding to "id" to this resource.

Note that the resource being moved from must be marked as moved using it's instance function.

idRequired
  • Type: string

Full id of resource being moved from, e.g. "aws_s3_bucket.example".


moveTo
public moveTo(moveTarget: string, index?: string | number): void

Moves this resource to the target resource given by moveTarget.

moveTargetRequired
  • Type: string

The previously set user defined string set by .addMoveTarget() corresponding to the resource to move to.


indexOptional
  • Type: string | number

Optional The index corresponding to the key the resource is to appear in the foreach of a resource to move to.


moveToId
public moveToId(id: string): void

Moves this resource to the resource corresponding to "id".

idRequired
  • Type: string

Full id of resource to move to, e.g. "aws_s3_bucket.example".


resetCloseIssue
public resetCloseIssue(): void
resetCloseMergeRequest
public resetCloseMergeRequest(): void
resetFailedPipeline
public resetFailedPipeline(): void
resetFixedPipeline
public resetFixedPipeline(): void
resetIssueDue
public resetIssueDue(): void
resetLevel
public resetLevel(): void
resetMergeMergeRequest
public resetMergeMergeRequest(): void
resetMergeWhenPipelineSucceeds
public resetMergeWhenPipelineSucceeds(): void
resetMovedProject
public resetMovedProject(): void
resetNewIssue
public resetNewIssue(): void
resetNewMergeRequest
public resetNewMergeRequest(): void
resetNewNote
public resetNewNote(): void
resetPushToMergeRequest
public resetPushToMergeRequest(): void
resetReassignIssue
public resetReassignIssue(): void
resetReassignMergeRequest
public resetReassignMergeRequest(): void
resetReopenIssue
public resetReopenIssue(): void
resetReopenMergeRequest
public resetReopenMergeRequest(): void
resetSuccessPipeline
public resetSuccessPipeline(): void

Static Functions

Name Description
isConstruct Checks if x is a construct.
isTerraformElement No description.
isTerraformResource No description.
generateConfigForImport Generates CDKTF code for importing a GlobalLevelNotifications resource upon running "cdktf plan ".

isConstruct
import { globalLevelNotifications } from '@cdktf/provider-gitlab'

globalLevelNotifications.GlobalLevelNotifications.isConstruct(x: any)

Checks if x is a construct.

Use this method instead of instanceof to properly detect Construct instances, even when the construct library is symlinked.

Explanation: in JavaScript, multiple copies of the constructs library on disk are seen as independent, completely different libraries. As a consequence, the class Construct in each copy of the constructs library is seen as a different class, and an instance of one class will not test as instanceof the other class. npm install will not create installations like this, but users may manually symlink construct libraries together or use a monorepo tool: in those cases, multiple copies of the constructs library can be accidentally installed, and instanceof will behave unpredictably. It is safest to avoid using instanceof, and using this type-testing method instead.

xRequired
  • Type: any

Any object.


isTerraformElement
import { globalLevelNotifications } from '@cdktf/provider-gitlab'

globalLevelNotifications.GlobalLevelNotifications.isTerraformElement(x: any)
xRequired
  • Type: any

isTerraformResource
import { globalLevelNotifications } from '@cdktf/provider-gitlab'

globalLevelNotifications.GlobalLevelNotifications.isTerraformResource(x: any)
xRequired
  • Type: any

generateConfigForImport
import { globalLevelNotifications } from '@cdktf/provider-gitlab'

globalLevelNotifications.GlobalLevelNotifications.generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: TerraformProvider)

Generates CDKTF code for importing a GlobalLevelNotifications resource upon running "cdktf plan ".

scopeRequired
  • Type: constructs.Construct

The scope in which to define this construct.


importToIdRequired
  • Type: string

The construct id used in the generated config for the GlobalLevelNotifications to import.


importFromIdRequired
  • Type: string

The id of the existing GlobalLevelNotifications that should be imported.

Refer to the {@link https://registry.terraform.io/providers/gitlabhq/gitlab/17.0.1/docs/resources/global_level_notifications#import import section} in the documentation of this resource for the id to use


providerOptional
  • Type: cdktf.TerraformProvider

? Optional instance of the provider where the GlobalLevelNotifications to import is found.


Properties

Name Type Description
node constructs.Node The tree node.
cdktfStack cdktf.TerraformStack No description.
fqn string No description.
friendlyUniqueId string No description.
terraformMetaArguments {[ key: string ]: any} No description.
terraformResourceType string No description.
terraformGeneratorMetadata cdktf.TerraformProviderGeneratorMetadata No description.
connection cdktf.SSHProvisionerConnection | cdktf.WinrmProvisionerConnection No description.
count number | cdktf.TerraformCount No description.
dependsOn string[] No description.
forEach cdktf.ITerraformIterator No description.
lifecycle cdktf.TerraformResourceLifecycle No description.
provider cdktf.TerraformProvider No description.
provisioners cdktf.FileProvisioner | cdktf.LocalExecProvisioner | cdktf.RemoteExecProvisioner[] No description.
id string No description.
closeIssueInput boolean | cdktf.IResolvable No description.
closeMergeRequestInput boolean | cdktf.IResolvable No description.
failedPipelineInput boolean | cdktf.IResolvable No description.
fixedPipelineInput boolean | cdktf.IResolvable No description.
issueDueInput boolean | cdktf.IResolvable No description.
levelInput string No description.
mergeMergeRequestInput boolean | cdktf.IResolvable No description.
mergeWhenPipelineSucceedsInput boolean | cdktf.IResolvable No description.
movedProjectInput boolean | cdktf.IResolvable No description.
newIssueInput boolean | cdktf.IResolvable No description.
newMergeRequestInput boolean | cdktf.IResolvable No description.
newNoteInput boolean | cdktf.IResolvable No description.
pushToMergeRequestInput boolean | cdktf.IResolvable No description.
reassignIssueInput boolean | cdktf.IResolvable No description.
reassignMergeRequestInput boolean | cdktf.IResolvable No description.
reopenIssueInput boolean | cdktf.IResolvable No description.
reopenMergeRequestInput boolean | cdktf.IResolvable No description.
successPipelineInput boolean | cdktf.IResolvable No description.
closeIssue boolean | cdktf.IResolvable No description.
closeMergeRequest boolean | cdktf.IResolvable No description.
failedPipeline boolean | cdktf.IResolvable No description.
fixedPipeline boolean | cdktf.IResolvable No description.
issueDue boolean | cdktf.IResolvable No description.
level string No description.
mergeMergeRequest boolean | cdktf.IResolvable No description.
mergeWhenPipelineSucceeds boolean | cdktf.IResolvable No description.
movedProject boolean | cdktf.IResolvable No description.
newIssue boolean | cdktf.IResolvable No description.
newMergeRequest boolean | cdktf.IResolvable No description.
newNote boolean | cdktf.IResolvable No description.
pushToMergeRequest boolean | cdktf.IResolvable No description.
reassignIssue boolean | cdktf.IResolvable No description.
reassignMergeRequest boolean | cdktf.IResolvable No description.
reopenIssue boolean | cdktf.IResolvable No description.
reopenMergeRequest boolean | cdktf.IResolvable No description.
successPipeline boolean | cdktf.IResolvable No description.

nodeRequired
public readonly node: Node;
  • Type: constructs.Node

The tree node.


cdktfStackRequired
public readonly cdktfStack: TerraformStack;
  • Type: cdktf.TerraformStack

fqnRequired
public readonly fqn: string;
  • Type: string

friendlyUniqueIdRequired
public readonly friendlyUniqueId: string;
  • Type: string

terraformMetaArgumentsRequired
public readonly terraformMetaArguments: {[ key: string ]: any};
  • Type: {[ key: string ]: any}

terraformResourceTypeRequired
public readonly terraformResourceType: string;
  • Type: string

terraformGeneratorMetadataOptional
public readonly terraformGeneratorMetadata: TerraformProviderGeneratorMetadata;
  • Type: cdktf.TerraformProviderGeneratorMetadata

connectionOptional
public readonly connection: SSHProvisionerConnection | WinrmProvisionerConnection;
  • Type: cdktf.SSHProvisionerConnection | cdktf.WinrmProvisionerConnection

countOptional
public readonly count: number | TerraformCount;
  • Type: number | cdktf.TerraformCount

dependsOnOptional
public readonly dependsOn: string[];
  • Type: string[]

forEachOptional
public readonly forEach: ITerraformIterator;
  • Type: cdktf.ITerraformIterator

lifecycleOptional
public readonly lifecycle: TerraformResourceLifecycle;
  • Type: cdktf.TerraformResourceLifecycle

providerOptional
public readonly provider: TerraformProvider;
  • Type: cdktf.TerraformProvider

provisionersOptional
public readonly provisioners: FileProvisioner | LocalExecProvisioner | RemoteExecProvisioner[];
  • Type: cdktf.FileProvisioner | cdktf.LocalExecProvisioner | cdktf.RemoteExecProvisioner[]

idRequired
public readonly id: string;
  • Type: string

closeIssueInputOptional
public readonly closeIssueInput: boolean | IResolvable;
  • Type: boolean | cdktf.IResolvable

closeMergeRequestInputOptional
public readonly closeMergeRequestInput: boolean | IResolvable;
  • Type: boolean | cdktf.IResolvable

failedPipelineInputOptional
public readonly failedPipelineInput: boolean | IResolvable;
  • Type: boolean | cdktf.IResolvable

fixedPipelineInputOptional
public readonly fixedPipelineInput: boolean | IResolvable;
  • Type: boolean | cdktf.IResolvable

issueDueInputOptional
public readonly issueDueInput: boolean | IResolvable;
  • Type: boolean | cdktf.IResolvable

levelInputOptional
public readonly levelInput: string;
  • Type: string

mergeMergeRequestInputOptional
public readonly mergeMergeRequestInput: boolean | IResolvable;
  • Type: boolean | cdktf.IResolvable

mergeWhenPipelineSucceedsInputOptional
public readonly mergeWhenPipelineSucceedsInput: boolean | IResolvable;
  • Type: boolean | cdktf.IResolvable

movedProjectInputOptional
public readonly movedProjectInput: boolean | IResolvable;
  • Type: boolean | cdktf.IResolvable

newIssueInputOptional
public readonly newIssueInput: boolean | IResolvable;
  • Type: boolean | cdktf.IResolvable

newMergeRequestInputOptional
public readonly newMergeRequestInput: boolean | IResolvable;
  • Type: boolean | cdktf.IResolvable

newNoteInputOptional
public readonly newNoteInput: boolean | IResolvable;
  • Type: boolean | cdktf.IResolvable

pushToMergeRequestInputOptional
public readonly pushToMergeRequestInput: boolean | IResolvable;
  • Type: boolean | cdktf.IResolvable

reassignIssueInputOptional
public readonly reassignIssueInput: boolean | IResolvable;
  • Type: boolean | cdktf.IResolvable

reassignMergeRequestInputOptional
public readonly reassignMergeRequestInput: boolean | IResolvable;
  • Type: boolean | cdktf.IResolvable

reopenIssueInputOptional
public readonly reopenIssueInput: boolean | IResolvable;
  • Type: boolean | cdktf.IResolvable

reopenMergeRequestInputOptional
public readonly reopenMergeRequestInput: boolean | IResolvable;
  • Type: boolean | cdktf.IResolvable

successPipelineInputOptional
public readonly successPipelineInput: boolean | IResolvable;
  • Type: boolean | cdktf.IResolvable

closeIssueRequired
public readonly closeIssue: boolean | IResolvable;
  • Type: boolean | cdktf.IResolvable

closeMergeRequestRequired
public readonly closeMergeRequest: boolean | IResolvable;
  • Type: boolean | cdktf.IResolvable

failedPipelineRequired
public readonly failedPipeline: boolean | IResolvable;
  • Type: boolean | cdktf.IResolvable

fixedPipelineRequired
public readonly fixedPipeline: boolean | IResolvable;
  • Type: boolean | cdktf.IResolvable

issueDueRequired
public readonly issueDue: boolean | IResolvable;
  • Type: boolean | cdktf.IResolvable

levelRequired
public readonly level: string;
  • Type: string

mergeMergeRequestRequired
public readonly mergeMergeRequest: boolean | IResolvable;
  • Type: boolean | cdktf.IResolvable

mergeWhenPipelineSucceedsRequired
public readonly mergeWhenPipelineSucceeds: boolean | IResolvable;
  • Type: boolean | cdktf.IResolvable

movedProjectRequired
public readonly movedProject: boolean | IResolvable;
  • Type: boolean | cdktf.IResolvable

newIssueRequired
public readonly newIssue: boolean | IResolvable;
  • Type: boolean | cdktf.IResolvable

newMergeRequestRequired
public readonly newMergeRequest: boolean | IResolvable;
  • Type: boolean | cdktf.IResolvable

newNoteRequired
public readonly newNote: boolean | IResolvable;
  • Type: boolean | cdktf.IResolvable

pushToMergeRequestRequired
public readonly pushToMergeRequest: boolean | IResolvable;
  • Type: boolean | cdktf.IResolvable

reassignIssueRequired
public readonly reassignIssue: boolean | IResolvable;
  • Type: boolean | cdktf.IResolvable

reassignMergeRequestRequired
public readonly reassignMergeRequest: boolean | IResolvable;
  • Type: boolean | cdktf.IResolvable

reopenIssueRequired
public readonly reopenIssue: boolean | IResolvable;
  • Type: boolean | cdktf.IResolvable

reopenMergeRequestRequired
public readonly reopenMergeRequest: boolean | IResolvable;
  • Type: boolean | cdktf.IResolvable

successPipelineRequired
public readonly successPipeline: boolean | IResolvable;
  • Type: boolean | cdktf.IResolvable

Constants

Name Type Description
tfResourceType string No description.

tfResourceTypeRequired
public readonly tfResourceType: string;
  • Type: string

Structs

GlobalLevelNotificationsConfig

Initializer

import { globalLevelNotifications } from '@cdktf/provider-gitlab'

const globalLevelNotificationsConfig: globalLevelNotifications.GlobalLevelNotificationsConfig = { ... }

Properties

Name Type Description
connection cdktf.SSHProvisionerConnection | cdktf.WinrmProvisionerConnection No description.
count number | cdktf.TerraformCount No description.
dependsOn cdktf.ITerraformDependable[] No description.
forEach cdktf.ITerraformIterator No description.
lifecycle cdktf.TerraformResourceLifecycle No description.
provider cdktf.TerraformProvider No description.
provisioners cdktf.FileProvisioner | cdktf.LocalExecProvisioner | cdktf.RemoteExecProvisioner[] No description.
closeIssue boolean | cdktf.IResolvable Enable notifications for closed issues. Can only be used when level is custom.
closeMergeRequest boolean | cdktf.IResolvable Enable notifications for closed merge requests. Can only be used when level is custom.
failedPipeline boolean | cdktf.IResolvable Enable notifications for failed pipelines. Can only be used when level is custom.
fixedPipeline boolean | cdktf.IResolvable Enable notifications for fixed pipelines. Can only be used when level is custom.
issueDue boolean | cdktf.IResolvable Enable notifications for due issues. Can only be used when level is custom.
level string The level of the notification. Valid values are: disabled, participating, watch, global, mention, custom.
mergeMergeRequest boolean | cdktf.IResolvable Enable notifications for merged merge requests. Can only be used when level is custom.
mergeWhenPipelineSucceeds boolean | cdktf.IResolvable Enable notifications for merged merge requests when the pipeline succeeds. Can only be used when level is custom.
movedProject boolean | cdktf.IResolvable Enable notifications for moved projects. Can only be used when level is custom.
newIssue boolean | cdktf.IResolvable Enable notifications for new issues. Can only be used when level is custom.
newMergeRequest boolean | cdktf.IResolvable Enable notifications for new merge requests. Can only be used when level is custom.
newNote boolean | cdktf.IResolvable Enable notifications for new notes on merge requests. Can only be used when level is custom.
pushToMergeRequest boolean | cdktf.IResolvable Enable notifications for push to merge request branches. Can only be used when level is custom.
reassignIssue boolean | cdktf.IResolvable Enable notifications for issue reassignments. Can only be used when level is custom.
reassignMergeRequest boolean | cdktf.IResolvable Enable notifications for merge request reassignments. Can only be used when level is custom.
reopenIssue boolean | cdktf.IResolvable Enable notifications for reopened issues. Can only be used when level is custom.
reopenMergeRequest boolean | cdktf.IResolvable Enable notifications for reopened merge requests. Can only be used when level is custom.
successPipeline boolean | cdktf.IResolvable Enable notifications for successful pipelines. Can only be used when level is custom.

connectionOptional
public readonly connection: SSHProvisionerConnection | WinrmProvisionerConnection;
  • Type: cdktf.SSHProvisionerConnection | cdktf.WinrmProvisionerConnection

countOptional
public readonly count: number | TerraformCount;
  • Type: number | cdktf.TerraformCount

dependsOnOptional
public readonly dependsOn: ITerraformDependable[];
  • Type: cdktf.ITerraformDependable[]

forEachOptional
public readonly forEach: ITerraformIterator;
  • Type: cdktf.ITerraformIterator

lifecycleOptional
public readonly lifecycle: TerraformResourceLifecycle;
  • Type: cdktf.TerraformResourceLifecycle

providerOptional
public readonly provider: TerraformProvider;
  • Type: cdktf.TerraformProvider

provisionersOptional
public readonly provisioners: FileProvisioner | LocalExecProvisioner | RemoteExecProvisioner[];
  • Type: cdktf.FileProvisioner | cdktf.LocalExecProvisioner | cdktf.RemoteExecProvisioner[]

closeIssueOptional
public readonly closeIssue: boolean | IResolvable;
  • Type: boolean | cdktf.IResolvable

Enable notifications for closed issues. Can only be used when level is custom.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/gitlabhq/gitlab/17.0.1/docs/resources/global_level_notifications#close_issue GlobalLevelNotifications#close_issue}


closeMergeRequestOptional
public readonly closeMergeRequest: boolean | IResolvable;
  • Type: boolean | cdktf.IResolvable

Enable notifications for closed merge requests. Can only be used when level is custom.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/gitlabhq/gitlab/17.0.1/docs/resources/global_level_notifications#close_merge_request GlobalLevelNotifications#close_merge_request}


failedPipelineOptional
public readonly failedPipeline: boolean | IResolvable;
  • Type: boolean | cdktf.IResolvable

Enable notifications for failed pipelines. Can only be used when level is custom.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/gitlabhq/gitlab/17.0.1/docs/resources/global_level_notifications#failed_pipeline GlobalLevelNotifications#failed_pipeline}


fixedPipelineOptional
public readonly fixedPipeline: boolean | IResolvable;
  • Type: boolean | cdktf.IResolvable

Enable notifications for fixed pipelines. Can only be used when level is custom.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/gitlabhq/gitlab/17.0.1/docs/resources/global_level_notifications#fixed_pipeline GlobalLevelNotifications#fixed_pipeline}


issueDueOptional
public readonly issueDue: boolean | IResolvable;
  • Type: boolean | cdktf.IResolvable

Enable notifications for due issues. Can only be used when level is custom.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/gitlabhq/gitlab/17.0.1/docs/resources/global_level_notifications#issue_due GlobalLevelNotifications#issue_due}


levelOptional
public readonly level: string;
  • Type: string

The level of the notification. Valid values are: disabled, participating, watch, global, mention, custom.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/gitlabhq/gitlab/17.0.1/docs/resources/global_level_notifications#level GlobalLevelNotifications#level}


mergeMergeRequestOptional
public readonly mergeMergeRequest: boolean | IResolvable;
  • Type: boolean | cdktf.IResolvable

Enable notifications for merged merge requests. Can only be used when level is custom.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/gitlabhq/gitlab/17.0.1/docs/resources/global_level_notifications#merge_merge_request GlobalLevelNotifications#merge_merge_request}


mergeWhenPipelineSucceedsOptional
public readonly mergeWhenPipelineSucceeds: boolean | IResolvable;
  • Type: boolean | cdktf.IResolvable

Enable notifications for merged merge requests when the pipeline succeeds. Can only be used when level is custom.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/gitlabhq/gitlab/17.0.1/docs/resources/global_level_notifications#merge_when_pipeline_succeeds GlobalLevelNotifications#merge_when_pipeline_succeeds}


movedProjectOptional
public readonly movedProject: boolean | IResolvable;
  • Type: boolean | cdktf.IResolvable

Enable notifications for moved projects. Can only be used when level is custom.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/gitlabhq/gitlab/17.0.1/docs/resources/global_level_notifications#moved_project GlobalLevelNotifications#moved_project}


newIssueOptional
public readonly newIssue: boolean | IResolvable;
  • Type: boolean | cdktf.IResolvable

Enable notifications for new issues. Can only be used when level is custom.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/gitlabhq/gitlab/17.0.1/docs/resources/global_level_notifications#new_issue GlobalLevelNotifications#new_issue}


newMergeRequestOptional
public readonly newMergeRequest: boolean | IResolvable;
  • Type: boolean | cdktf.IResolvable

Enable notifications for new merge requests. Can only be used when level is custom.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/gitlabhq/gitlab/17.0.1/docs/resources/global_level_notifications#new_merge_request GlobalLevelNotifications#new_merge_request}


newNoteOptional
public readonly newNote: boolean | IResolvable;
  • Type: boolean | cdktf.IResolvable

Enable notifications for new notes on merge requests. Can only be used when level is custom.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/gitlabhq/gitlab/17.0.1/docs/resources/global_level_notifications#new_note GlobalLevelNotifications#new_note}


pushToMergeRequestOptional
public readonly pushToMergeRequest: boolean | IResolvable;
  • Type: boolean | cdktf.IResolvable

Enable notifications for push to merge request branches. Can only be used when level is custom.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/gitlabhq/gitlab/17.0.1/docs/resources/global_level_notifications#push_to_merge_request GlobalLevelNotifications#push_to_merge_request}


reassignIssueOptional
public readonly reassignIssue: boolean | IResolvable;
  • Type: boolean | cdktf.IResolvable

Enable notifications for issue reassignments. Can only be used when level is custom.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/gitlabhq/gitlab/17.0.1/docs/resources/global_level_notifications#reassign_issue GlobalLevelNotifications#reassign_issue}


reassignMergeRequestOptional
public readonly reassignMergeRequest: boolean | IResolvable;
  • Type: boolean | cdktf.IResolvable

Enable notifications for merge request reassignments. Can only be used when level is custom.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/gitlabhq/gitlab/17.0.1/docs/resources/global_level_notifications#reassign_merge_request GlobalLevelNotifications#reassign_merge_request}


reopenIssueOptional
public readonly reopenIssue: boolean | IResolvable;
  • Type: boolean | cdktf.IResolvable

Enable notifications for reopened issues. Can only be used when level is custom.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/gitlabhq/gitlab/17.0.1/docs/resources/global_level_notifications#reopen_issue GlobalLevelNotifications#reopen_issue}


reopenMergeRequestOptional
public readonly reopenMergeRequest: boolean | IResolvable;
  • Type: boolean | cdktf.IResolvable

Enable notifications for reopened merge requests. Can only be used when level is custom.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/gitlabhq/gitlab/17.0.1/docs/resources/global_level_notifications#reopen_merge_request GlobalLevelNotifications#reopen_merge_request}


successPipelineOptional
public readonly successPipeline: boolean | IResolvable;
  • Type: boolean | cdktf.IResolvable

Enable notifications for successful pipelines. Can only be used when level is custom.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/gitlabhq/gitlab/17.0.1/docs/resources/global_level_notifications#success_pipeline GlobalLevelNotifications#success_pipeline}