Represents a {@link https://registry.terraform.io/providers/gitlabhq/gitlab/17.6.1/docs/resources/integration_mattermost gitlab_integration_mattermost}.
import { integrationMattermost } from '@cdktf/provider-gitlab'
new integrationMattermost.IntegrationMattermost(scope: Construct, id: string, config: IntegrationMattermostConfig)
Name | Type | Description |
---|---|---|
scope |
constructs.Construct |
The scope in which to define this construct. |
id |
string |
The scoped construct ID. |
config |
IntegrationMattermostConfig |
No description. |
- Type: constructs.Construct
The scope in which to define this construct.
- Type: string
The scoped construct ID.
Must be unique amongst siblings in the same scope
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". |
resetBranchesToBeNotified |
No description. |
resetConfidentialIssueChannel |
No description. |
resetConfidentialIssuesEvents |
No description. |
resetConfidentialNoteChannel |
No description. |
resetConfidentialNoteEvents |
No description. |
resetId |
No description. |
resetIssueChannel |
No description. |
resetIssuesEvents |
No description. |
resetMergeRequestChannel |
No description. |
resetMergeRequestsEvents |
No description. |
resetNoteChannel |
No description. |
resetNoteEvents |
No description. |
resetNotifyOnlyBrokenPipelines |
No description. |
resetPipelineChannel |
No description. |
resetPipelineEvents |
No description. |
resetPushChannel |
No description. |
resetPushEvents |
No description. |
resetTagPushChannel |
No description. |
resetTagPushEvents |
No description. |
resetUsername |
No description. |
resetWikiPageChannel |
No description. |
resetWikiPageEvents |
No description. |
public toString(): string
Returns a string representation of this construct.
public addOverride(path: string, value: any): void
- Type: string
- Type: any
public overrideLogicalId(newLogicalId: string): void
Overrides the auto-generated logical ID with a specific ID.
- Type: string
The new logical ID to use for this stack element.
public resetOverrideLogicalId(): void
Resets a previously passed logical Id to use the auto-generated logical id again.
public toHclTerraform(): any
public toMetadata(): any
public toTerraform(): any
Adds this resource to the terraform JSON output.
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.
- Type: string
The string move target that will correspond to this resource.
public getAnyMapAttribute(terraformAttribute: string): {[ key: string ]: any}
- Type: string
public getBooleanAttribute(terraformAttribute: string): IResolvable
- Type: string
public getBooleanMapAttribute(terraformAttribute: string): {[ key: string ]: boolean}
- Type: string
public getListAttribute(terraformAttribute: string): string[]
- Type: string
public getNumberAttribute(terraformAttribute: string): number
- Type: string
public getNumberListAttribute(terraformAttribute: string): number[]
- Type: string
public getNumberMapAttribute(terraformAttribute: string): {[ key: string ]: number}
- Type: string
public getStringAttribute(terraformAttribute: string): string
- Type: string
public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: string}
- Type: string
public hasResourceMove(): TerraformResourceMoveByTarget | TerraformResourceMoveById
public importFrom(id: string, provider?: TerraformProvider): void
- Type: string
- Type: cdktf.TerraformProvider
public interpolationForAttribute(terraformAttribute: string): IResolvable
- Type: string
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.
- Type: string
Full id of resource being moved from, e.g. "aws_s3_bucket.example".
public moveTo(moveTarget: string, index?: string | number): void
Moves this resource to the target resource given by moveTarget.
- Type: string
The previously set user defined string set by .addMoveTarget() corresponding to the resource to move to.
- Type: string | number
Optional The index corresponding to the key the resource is to appear in the foreach of a resource to move to.
public moveToId(id: string): void
Moves this resource to the resource corresponding to "id".
- Type: string
Full id of resource to move to, e.g. "aws_s3_bucket.example".
public resetBranchesToBeNotified(): void
public resetConfidentialIssueChannel(): void
public resetConfidentialIssuesEvents(): void
public resetConfidentialNoteChannel(): void
public resetConfidentialNoteEvents(): void
public resetId(): void
public resetIssueChannel(): void
public resetIssuesEvents(): void
public resetMergeRequestChannel(): void
public resetMergeRequestsEvents(): void
public resetNoteChannel(): void
public resetNoteEvents(): void
public resetNotifyOnlyBrokenPipelines(): void
public resetPipelineChannel(): void
public resetPipelineEvents(): void
public resetPushChannel(): void
public resetPushEvents(): void
public resetTagPushChannel(): void
public resetTagPushEvents(): void
public resetUsername(): void
public resetWikiPageChannel(): void
public resetWikiPageEvents(): void
Name | Description |
---|---|
isConstruct |
Checks if x is a construct. |
isTerraformElement |
No description. |
isTerraformResource |
No description. |
generateConfigForImport |
Generates CDKTF code for importing a IntegrationMattermost resource upon running "cdktf plan ". |
import { integrationMattermost } from '@cdktf/provider-gitlab'
integrationMattermost.IntegrationMattermost.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.
- Type: any
Any object.
import { integrationMattermost } from '@cdktf/provider-gitlab'
integrationMattermost.IntegrationMattermost.isTerraformElement(x: any)
- Type: any
import { integrationMattermost } from '@cdktf/provider-gitlab'
integrationMattermost.IntegrationMattermost.isTerraformResource(x: any)
- Type: any
import { integrationMattermost } from '@cdktf/provider-gitlab'
integrationMattermost.IntegrationMattermost.generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: TerraformProvider)
Generates CDKTF code for importing a IntegrationMattermost resource upon running "cdktf plan ".
- Type: constructs.Construct
The scope in which to define this construct.
- Type: string
The construct id used in the generated config for the IntegrationMattermost to import.
- Type: string
The id of the existing IntegrationMattermost that should be imported.
Refer to the {@link https://registry.terraform.io/providers/gitlabhq/gitlab/17.6.1/docs/resources/integration_mattermost#import import section} in the documentation of this resource for the id to use
- Type: cdktf.TerraformProvider
? Optional instance of the provider where the IntegrationMattermost to import is found.
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. |
branchesToBeNotifiedInput |
string |
No description. |
confidentialIssueChannelInput |
string |
No description. |
confidentialIssuesEventsInput |
boolean | cdktf.IResolvable |
No description. |
confidentialNoteChannelInput |
string |
No description. |
confidentialNoteEventsInput |
boolean | cdktf.IResolvable |
No description. |
idInput |
string |
No description. |
issueChannelInput |
string |
No description. |
issuesEventsInput |
boolean | cdktf.IResolvable |
No description. |
mergeRequestChannelInput |
string |
No description. |
mergeRequestsEventsInput |
boolean | cdktf.IResolvable |
No description. |
noteChannelInput |
string |
No description. |
noteEventsInput |
boolean | cdktf.IResolvable |
No description. |
notifyOnlyBrokenPipelinesInput |
boolean | cdktf.IResolvable |
No description. |
pipelineChannelInput |
string |
No description. |
pipelineEventsInput |
boolean | cdktf.IResolvable |
No description. |
projectInput |
string |
No description. |
pushChannelInput |
string |
No description. |
pushEventsInput |
boolean | cdktf.IResolvable |
No description. |
tagPushChannelInput |
string |
No description. |
tagPushEventsInput |
boolean | cdktf.IResolvable |
No description. |
usernameInput |
string |
No description. |
webhookInput |
string |
No description. |
wikiPageChannelInput |
string |
No description. |
wikiPageEventsInput |
boolean | cdktf.IResolvable |
No description. |
branchesToBeNotified |
string |
No description. |
confidentialIssueChannel |
string |
No description. |
confidentialIssuesEvents |
boolean | cdktf.IResolvable |
No description. |
confidentialNoteChannel |
string |
No description. |
confidentialNoteEvents |
boolean | cdktf.IResolvable |
No description. |
id |
string |
No description. |
issueChannel |
string |
No description. |
issuesEvents |
boolean | cdktf.IResolvable |
No description. |
mergeRequestChannel |
string |
No description. |
mergeRequestsEvents |
boolean | cdktf.IResolvable |
No description. |
noteChannel |
string |
No description. |
noteEvents |
boolean | cdktf.IResolvable |
No description. |
notifyOnlyBrokenPipelines |
boolean | cdktf.IResolvable |
No description. |
pipelineChannel |
string |
No description. |
pipelineEvents |
boolean | cdktf.IResolvable |
No description. |
project |
string |
No description. |
pushChannel |
string |
No description. |
pushEvents |
boolean | cdktf.IResolvable |
No description. |
tagPushChannel |
string |
No description. |
tagPushEvents |
boolean | cdktf.IResolvable |
No description. |
username |
string |
No description. |
webhook |
string |
No description. |
wikiPageChannel |
string |
No description. |
wikiPageEvents |
boolean | cdktf.IResolvable |
No description. |
public readonly node: Node;
- Type: constructs.Node
The tree node.
public readonly cdktfStack: TerraformStack;
- Type: cdktf.TerraformStack
public readonly fqn: string;
- Type: string
public readonly friendlyUniqueId: string;
- Type: string
public readonly terraformMetaArguments: {[ key: string ]: any};
- Type: {[ key: string ]: any}
public readonly terraformResourceType: string;
- Type: string
public readonly terraformGeneratorMetadata: TerraformProviderGeneratorMetadata;
- Type: cdktf.TerraformProviderGeneratorMetadata
public readonly connection: SSHProvisionerConnection | WinrmProvisionerConnection;
- Type: cdktf.SSHProvisionerConnection | cdktf.WinrmProvisionerConnection
public readonly count: number | TerraformCount;
- Type: number | cdktf.TerraformCount
public readonly dependsOn: string[];
- Type: string[]
public readonly forEach: ITerraformIterator;
- Type: cdktf.ITerraformIterator
public readonly lifecycle: TerraformResourceLifecycle;
- Type: cdktf.TerraformResourceLifecycle
public readonly provider: TerraformProvider;
- Type: cdktf.TerraformProvider
public readonly provisioners: FileProvisioner | LocalExecProvisioner | RemoteExecProvisioner[];
- Type: cdktf.FileProvisioner | cdktf.LocalExecProvisioner | cdktf.RemoteExecProvisioner[]
public readonly branchesToBeNotifiedInput: string;
- Type: string
public readonly confidentialIssueChannelInput: string;
- Type: string
public readonly confidentialIssuesEventsInput: boolean | IResolvable;
- Type: boolean | cdktf.IResolvable
public readonly confidentialNoteChannelInput: string;
- Type: string
public readonly confidentialNoteEventsInput: boolean | IResolvable;
- Type: boolean | cdktf.IResolvable
public readonly idInput: string;
- Type: string
public readonly issueChannelInput: string;
- Type: string
public readonly issuesEventsInput: boolean | IResolvable;
- Type: boolean | cdktf.IResolvable
public readonly mergeRequestChannelInput: string;
- Type: string
public readonly mergeRequestsEventsInput: boolean | IResolvable;
- Type: boolean | cdktf.IResolvable
public readonly noteChannelInput: string;
- Type: string
public readonly noteEventsInput: boolean | IResolvable;
- Type: boolean | cdktf.IResolvable
public readonly notifyOnlyBrokenPipelinesInput: boolean | IResolvable;
- Type: boolean | cdktf.IResolvable
public readonly pipelineChannelInput: string;
- Type: string
public readonly pipelineEventsInput: boolean | IResolvable;
- Type: boolean | cdktf.IResolvable
public readonly projectInput: string;
- Type: string
public readonly pushChannelInput: string;
- Type: string
public readonly pushEventsInput: boolean | IResolvable;
- Type: boolean | cdktf.IResolvable
public readonly tagPushChannelInput: string;
- Type: string
public readonly tagPushEventsInput: boolean | IResolvable;
- Type: boolean | cdktf.IResolvable
public readonly usernameInput: string;
- Type: string
public readonly webhookInput: string;
- Type: string
public readonly wikiPageChannelInput: string;
- Type: string
public readonly wikiPageEventsInput: boolean | IResolvable;
- Type: boolean | cdktf.IResolvable
public readonly branchesToBeNotified: string;
- Type: string
public readonly confidentialIssueChannel: string;
- Type: string
public readonly confidentialIssuesEvents: boolean | IResolvable;
- Type: boolean | cdktf.IResolvable
public readonly confidentialNoteChannel: string;
- Type: string
public readonly confidentialNoteEvents: boolean | IResolvable;
- Type: boolean | cdktf.IResolvable
public readonly id: string;
- Type: string
public readonly issueChannel: string;
- Type: string
public readonly issuesEvents: boolean | IResolvable;
- Type: boolean | cdktf.IResolvable
public readonly mergeRequestChannel: string;
- Type: string
public readonly mergeRequestsEvents: boolean | IResolvable;
- Type: boolean | cdktf.IResolvable
public readonly noteChannel: string;
- Type: string
public readonly noteEvents: boolean | IResolvable;
- Type: boolean | cdktf.IResolvable
public readonly notifyOnlyBrokenPipelines: boolean | IResolvable;
- Type: boolean | cdktf.IResolvable
public readonly pipelineChannel: string;
- Type: string
public readonly pipelineEvents: boolean | IResolvable;
- Type: boolean | cdktf.IResolvable
public readonly project: string;
- Type: string
public readonly pushChannel: string;
- Type: string
public readonly pushEvents: boolean | IResolvable;
- Type: boolean | cdktf.IResolvable
public readonly tagPushChannel: string;
- Type: string
public readonly tagPushEvents: boolean | IResolvable;
- Type: boolean | cdktf.IResolvable
public readonly username: string;
- Type: string
public readonly webhook: string;
- Type: string
public readonly wikiPageChannel: string;
- Type: string
public readonly wikiPageEvents: boolean | IResolvable;
- Type: boolean | cdktf.IResolvable
Name | Type | Description |
---|---|---|
tfResourceType |
string |
No description. |
public readonly tfResourceType: string;
- Type: string
import { integrationMattermost } from '@cdktf/provider-gitlab'
const integrationMattermostConfig: integrationMattermost.IntegrationMattermostConfig = { ... }
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. |
project |
string |
ID of the project you want to activate integration on. |
webhook |
string |
Webhook URL (Example, https://mattermost.yourdomain.com/hooks/...). This value cannot be imported. |
branchesToBeNotified |
string |
Branches to send notifications for. Valid options are "all", "default", "protected", and "default_and_protected". |
confidentialIssueChannel |
string |
The name of the channel to receive confidential issue events notifications. |
confidentialIssuesEvents |
boolean | cdktf.IResolvable |
Enable notifications for confidential issues events. |
confidentialNoteChannel |
string |
The name of the channel to receive confidential note events notifications. |
confidentialNoteEvents |
boolean | cdktf.IResolvable |
Enable notifications for confidential note events. |
id |
string |
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/gitlabhq/gitlab/17.6.1/docs/resources/integration_mattermost#id IntegrationMattermost#id}. |
issueChannel |
string |
The name of the channel to receive issue events notifications. |
issuesEvents |
boolean | cdktf.IResolvable |
Enable notifications for issues events. |
mergeRequestChannel |
string |
The name of the channel to receive merge request events notifications. |
mergeRequestsEvents |
boolean | cdktf.IResolvable |
Enable notifications for merge requests events. |
noteChannel |
string |
The name of the channel to receive note events notifications. |
noteEvents |
boolean | cdktf.IResolvable |
Enable notifications for note events. |
notifyOnlyBrokenPipelines |
boolean | cdktf.IResolvable |
Send notifications for broken pipelines. |
pipelineChannel |
string |
The name of the channel to receive pipeline events notifications. |
pipelineEvents |
boolean | cdktf.IResolvable |
Enable notifications for pipeline events. |
pushChannel |
string |
The name of the channel to receive push events notifications. |
pushEvents |
boolean | cdktf.IResolvable |
Enable notifications for push events. |
tagPushChannel |
string |
The name of the channel to receive tag push events notifications. |
tagPushEvents |
boolean | cdktf.IResolvable |
Enable notifications for tag push events. |
username |
string |
Username to use. |
wikiPageChannel |
string |
The name of the channel to receive wiki page events notifications. |
wikiPageEvents |
boolean | cdktf.IResolvable |
Enable notifications for wiki page events. |
public readonly connection: SSHProvisionerConnection | WinrmProvisionerConnection;
- Type: cdktf.SSHProvisionerConnection | cdktf.WinrmProvisionerConnection
public readonly count: number | TerraformCount;
- Type: number | cdktf.TerraformCount
public readonly dependsOn: ITerraformDependable[];
- Type: cdktf.ITerraformDependable[]
public readonly forEach: ITerraformIterator;
- Type: cdktf.ITerraformIterator
public readonly lifecycle: TerraformResourceLifecycle;
- Type: cdktf.TerraformResourceLifecycle
public readonly provider: TerraformProvider;
- Type: cdktf.TerraformProvider
public readonly provisioners: FileProvisioner | LocalExecProvisioner | RemoteExecProvisioner[];
- Type: cdktf.FileProvisioner | cdktf.LocalExecProvisioner | cdktf.RemoteExecProvisioner[]
public readonly project: string;
- Type: string
ID of the project you want to activate integration on.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/gitlabhq/gitlab/17.6.1/docs/resources/integration_mattermost#project IntegrationMattermost#project}
public readonly webhook: string;
- Type: string
Webhook URL (Example, https://mattermost.yourdomain.com/hooks/...). This value cannot be imported.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/gitlabhq/gitlab/17.6.1/docs/resources/integration_mattermost#webhook IntegrationMattermost#webhook}
public readonly branchesToBeNotified: string;
- Type: string
Branches to send notifications for. Valid options are "all", "default", "protected", and "default_and_protected".
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/gitlabhq/gitlab/17.6.1/docs/resources/integration_mattermost#branches_to_be_notified IntegrationMattermost#branches_to_be_notified}
public readonly confidentialIssueChannel: string;
- Type: string
The name of the channel to receive confidential issue events notifications.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/gitlabhq/gitlab/17.6.1/docs/resources/integration_mattermost#confidential_issue_channel IntegrationMattermost#confidential_issue_channel}
public readonly confidentialIssuesEvents: boolean | IResolvable;
- Type: boolean | cdktf.IResolvable
Enable notifications for confidential issues events.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/gitlabhq/gitlab/17.6.1/docs/resources/integration_mattermost#confidential_issues_events IntegrationMattermost#confidential_issues_events}
public readonly confidentialNoteChannel: string;
- Type: string
The name of the channel to receive confidential note events notifications.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/gitlabhq/gitlab/17.6.1/docs/resources/integration_mattermost#confidential_note_channel IntegrationMattermost#confidential_note_channel}
public readonly confidentialNoteEvents: boolean | IResolvable;
- Type: boolean | cdktf.IResolvable
Enable notifications for confidential note events.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/gitlabhq/gitlab/17.6.1/docs/resources/integration_mattermost#confidential_note_events IntegrationMattermost#confidential_note_events}
public readonly id: string;
- Type: string
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/gitlabhq/gitlab/17.6.1/docs/resources/integration_mattermost#id IntegrationMattermost#id}.
Please be aware that the id field is automatically added to all resources in Terraform providers using a Terraform provider SDK version below 2. If you experience problems setting this value it might not be settable. Please take a look at the provider documentation to ensure it should be settable.
public readonly issueChannel: string;
- Type: string
The name of the channel to receive issue events notifications.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/gitlabhq/gitlab/17.6.1/docs/resources/integration_mattermost#issue_channel IntegrationMattermost#issue_channel}
public readonly issuesEvents: boolean | IResolvable;
- Type: boolean | cdktf.IResolvable
Enable notifications for issues events.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/gitlabhq/gitlab/17.6.1/docs/resources/integration_mattermost#issues_events IntegrationMattermost#issues_events}
public readonly mergeRequestChannel: string;
- Type: string
The name of the channel to receive merge request events notifications.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/gitlabhq/gitlab/17.6.1/docs/resources/integration_mattermost#merge_request_channel IntegrationMattermost#merge_request_channel}
public readonly mergeRequestsEvents: boolean | IResolvable;
- Type: boolean | cdktf.IResolvable
Enable notifications for merge requests events.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/gitlabhq/gitlab/17.6.1/docs/resources/integration_mattermost#merge_requests_events IntegrationMattermost#merge_requests_events}
public readonly noteChannel: string;
- Type: string
The name of the channel to receive note events notifications.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/gitlabhq/gitlab/17.6.1/docs/resources/integration_mattermost#note_channel IntegrationMattermost#note_channel}
public readonly noteEvents: boolean | IResolvable;
- Type: boolean | cdktf.IResolvable
Enable notifications for note events.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/gitlabhq/gitlab/17.6.1/docs/resources/integration_mattermost#note_events IntegrationMattermost#note_events}
public readonly notifyOnlyBrokenPipelines: boolean | IResolvable;
- Type: boolean | cdktf.IResolvable
Send notifications for broken pipelines.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/gitlabhq/gitlab/17.6.1/docs/resources/integration_mattermost#notify_only_broken_pipelines IntegrationMattermost#notify_only_broken_pipelines}
public readonly pipelineChannel: string;
- Type: string
The name of the channel to receive pipeline events notifications.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/gitlabhq/gitlab/17.6.1/docs/resources/integration_mattermost#pipeline_channel IntegrationMattermost#pipeline_channel}
public readonly pipelineEvents: boolean | IResolvable;
- Type: boolean | cdktf.IResolvable
Enable notifications for pipeline events.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/gitlabhq/gitlab/17.6.1/docs/resources/integration_mattermost#pipeline_events IntegrationMattermost#pipeline_events}
public readonly pushChannel: string;
- Type: string
The name of the channel to receive push events notifications.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/gitlabhq/gitlab/17.6.1/docs/resources/integration_mattermost#push_channel IntegrationMattermost#push_channel}
public readonly pushEvents: boolean | IResolvable;
- Type: boolean | cdktf.IResolvable
Enable notifications for push events.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/gitlabhq/gitlab/17.6.1/docs/resources/integration_mattermost#push_events IntegrationMattermost#push_events}
public readonly tagPushChannel: string;
- Type: string
The name of the channel to receive tag push events notifications.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/gitlabhq/gitlab/17.6.1/docs/resources/integration_mattermost#tag_push_channel IntegrationMattermost#tag_push_channel}
public readonly tagPushEvents: boolean | IResolvable;
- Type: boolean | cdktf.IResolvable
Enable notifications for tag push events.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/gitlabhq/gitlab/17.6.1/docs/resources/integration_mattermost#tag_push_events IntegrationMattermost#tag_push_events}
public readonly username: string;
- Type: string
Username to use.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/gitlabhq/gitlab/17.6.1/docs/resources/integration_mattermost#username IntegrationMattermost#username}
public readonly wikiPageChannel: string;
- Type: string
The name of the channel to receive wiki page events notifications.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/gitlabhq/gitlab/17.6.1/docs/resources/integration_mattermost#wiki_page_channel IntegrationMattermost#wiki_page_channel}
public readonly wikiPageEvents: boolean | IResolvable;
- Type: boolean | cdktf.IResolvable
Enable notifications for wiki page events.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/gitlabhq/gitlab/17.6.1/docs/resources/integration_mattermost#wiki_page_events IntegrationMattermost#wiki_page_events}