published on Friday, Jun 26, 2026 by Pulumi
published on Friday, Jun 26, 2026 by Pulumi
The gitlab.ProjectIntegrationGoogleChat resource manages the lifecycle of a project integration with Google Chat.
Upstream API: GitLab REST API docs
Create ProjectIntegrationGoogleChat Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ProjectIntegrationGoogleChat(name: string, args: ProjectIntegrationGoogleChatArgs, opts?: CustomResourceOptions);@overload
def ProjectIntegrationGoogleChat(resource_name: str,
args: ProjectIntegrationGoogleChatArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ProjectIntegrationGoogleChat(resource_name: str,
opts: Optional[ResourceOptions] = None,
project: Optional[str] = None,
webhook: Optional[str] = None,
branches_to_be_notified: Optional[str] = None,
confidential_issues_events: Optional[bool] = None,
issues_events: Optional[bool] = None,
merge_requests_events: Optional[bool] = None,
note_events: Optional[bool] = None,
notify_only_broken_pipelines: Optional[bool] = None,
pipeline_events: Optional[bool] = None,
push_events: Optional[bool] = None,
tag_push_events: Optional[bool] = None,
wiki_page_events: Optional[bool] = None)func NewProjectIntegrationGoogleChat(ctx *Context, name string, args ProjectIntegrationGoogleChatArgs, opts ...ResourceOption) (*ProjectIntegrationGoogleChat, error)public ProjectIntegrationGoogleChat(string name, ProjectIntegrationGoogleChatArgs args, CustomResourceOptions? opts = null)
public ProjectIntegrationGoogleChat(String name, ProjectIntegrationGoogleChatArgs args)
public ProjectIntegrationGoogleChat(String name, ProjectIntegrationGoogleChatArgs args, CustomResourceOptions options)
type: gitlab:ProjectIntegrationGoogleChat
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "gitlab_projectintegrationgooglechat" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args ProjectIntegrationGoogleChatArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args ProjectIntegrationGoogleChatArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args ProjectIntegrationGoogleChatArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ProjectIntegrationGoogleChatArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ProjectIntegrationGoogleChatArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var projectIntegrationGoogleChatResource = new GitLab.ProjectIntegrationGoogleChat("projectIntegrationGoogleChatResource", new()
{
Project = "string",
Webhook = "string",
BranchesToBeNotified = "string",
ConfidentialIssuesEvents = false,
IssuesEvents = false,
MergeRequestsEvents = false,
NoteEvents = false,
NotifyOnlyBrokenPipelines = false,
PipelineEvents = false,
PushEvents = false,
TagPushEvents = false,
WikiPageEvents = false,
});
example, err := gitlab.NewProjectIntegrationGoogleChat(ctx, "projectIntegrationGoogleChatResource", &gitlab.ProjectIntegrationGoogleChatArgs{
Project: pulumi.String("string"),
Webhook: pulumi.String("string"),
BranchesToBeNotified: pulumi.String("string"),
ConfidentialIssuesEvents: pulumi.Bool(false),
IssuesEvents: pulumi.Bool(false),
MergeRequestsEvents: pulumi.Bool(false),
NoteEvents: pulumi.Bool(false),
NotifyOnlyBrokenPipelines: pulumi.Bool(false),
PipelineEvents: pulumi.Bool(false),
PushEvents: pulumi.Bool(false),
TagPushEvents: pulumi.Bool(false),
WikiPageEvents: pulumi.Bool(false),
})
resource "gitlab_projectintegrationgooglechat" "projectIntegrationGoogleChatResource" {
project = "string"
webhook = "string"
branches_to_be_notified = "string"
confidential_issues_events = false
issues_events = false
merge_requests_events = false
note_events = false
notify_only_broken_pipelines = false
pipeline_events = false
push_events = false
tag_push_events = false
wiki_page_events = false
}
var projectIntegrationGoogleChatResource = new ProjectIntegrationGoogleChat("projectIntegrationGoogleChatResource", ProjectIntegrationGoogleChatArgs.builder()
.project("string")
.webhook("string")
.branchesToBeNotified("string")
.confidentialIssuesEvents(false)
.issuesEvents(false)
.mergeRequestsEvents(false)
.noteEvents(false)
.notifyOnlyBrokenPipelines(false)
.pipelineEvents(false)
.pushEvents(false)
.tagPushEvents(false)
.wikiPageEvents(false)
.build());
project_integration_google_chat_resource = gitlab.ProjectIntegrationGoogleChat("projectIntegrationGoogleChatResource",
project="string",
webhook="string",
branches_to_be_notified="string",
confidential_issues_events=False,
issues_events=False,
merge_requests_events=False,
note_events=False,
notify_only_broken_pipelines=False,
pipeline_events=False,
push_events=False,
tag_push_events=False,
wiki_page_events=False)
const projectIntegrationGoogleChatResource = new gitlab.ProjectIntegrationGoogleChat("projectIntegrationGoogleChatResource", {
project: "string",
webhook: "string",
branchesToBeNotified: "string",
confidentialIssuesEvents: false,
issuesEvents: false,
mergeRequestsEvents: false,
noteEvents: false,
notifyOnlyBrokenPipelines: false,
pipelineEvents: false,
pushEvents: false,
tagPushEvents: false,
wikiPageEvents: false,
});
type: gitlab:ProjectIntegrationGoogleChat
properties:
branchesToBeNotified: string
confidentialIssuesEvents: false
issuesEvents: false
mergeRequestsEvents: false
noteEvents: false
notifyOnlyBrokenPipelines: false
pipelineEvents: false
project: string
pushEvents: false
tagPushEvents: false
webhook: string
wikiPageEvents: false
ProjectIntegrationGoogleChat Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The ProjectIntegrationGoogleChat resource accepts the following input properties:
- Project string
- The ID or full path of the project to integrate with Google Chat.
- Webhook string
- The Google Chat webhook URL (for example, https://chat.googleapis.com/v1/spaces/...).
- Branches
To stringBe Notified - Branches to send notifications for. Valid values are:
all,default,protected,defaultAndProtected. - Confidential
Issues boolEvents - Enable notifications for confidential issues events.
- Issues
Events bool - Enable notifications for issues events.
- Merge
Requests boolEvents - Enable notifications for merge requests events.
- Note
Events bool - Enable notifications for note events.
- Notify
Only boolBroken Pipelines - Send notifications for broken pipelines only.
- Pipeline
Events bool - Enable notifications for pipeline events.
- Push
Events bool - Enable notifications for push events.
- Tag
Push boolEvents - Enable notifications for tag push events.
- Wiki
Page boolEvents - Enable notifications for wiki page events.
- Project string
- The ID or full path of the project to integrate with Google Chat.
- Webhook string
- The Google Chat webhook URL (for example, https://chat.googleapis.com/v1/spaces/...).
- Branches
To stringBe Notified - Branches to send notifications for. Valid values are:
all,default,protected,defaultAndProtected. - Confidential
Issues boolEvents - Enable notifications for confidential issues events.
- Issues
Events bool - Enable notifications for issues events.
- Merge
Requests boolEvents - Enable notifications for merge requests events.
- Note
Events bool - Enable notifications for note events.
- Notify
Only boolBroken Pipelines - Send notifications for broken pipelines only.
- Pipeline
Events bool - Enable notifications for pipeline events.
- Push
Events bool - Enable notifications for push events.
- Tag
Push boolEvents - Enable notifications for tag push events.
- Wiki
Page boolEvents - Enable notifications for wiki page events.
- project string
- The ID or full path of the project to integrate with Google Chat.
- webhook string
- The Google Chat webhook URL (for example, https://chat.googleapis.com/v1/spaces/...).
- branches_
to_ stringbe_ notified - Branches to send notifications for. Valid values are:
all,default,protected,defaultAndProtected. - confidential_
issues_ boolevents - Enable notifications for confidential issues events.
- issues_
events bool - Enable notifications for issues events.
- merge_
requests_ boolevents - Enable notifications for merge requests events.
- note_
events bool - Enable notifications for note events.
- notify_
only_ boolbroken_ pipelines - Send notifications for broken pipelines only.
- pipeline_
events bool - Enable notifications for pipeline events.
- push_
events bool - Enable notifications for push events.
- tag_
push_ boolevents - Enable notifications for tag push events.
- wiki_
page_ boolevents - Enable notifications for wiki page events.
- project String
- The ID or full path of the project to integrate with Google Chat.
- webhook String
- The Google Chat webhook URL (for example, https://chat.googleapis.com/v1/spaces/...).
- branches
To StringBe Notified - Branches to send notifications for. Valid values are:
all,default,protected,defaultAndProtected. - confidential
Issues BooleanEvents - Enable notifications for confidential issues events.
- issues
Events Boolean - Enable notifications for issues events.
- merge
Requests BooleanEvents - Enable notifications for merge requests events.
- note
Events Boolean - Enable notifications for note events.
- notify
Only BooleanBroken Pipelines - Send notifications for broken pipelines only.
- pipeline
Events Boolean - Enable notifications for pipeline events.
- push
Events Boolean - Enable notifications for push events.
- tag
Push BooleanEvents - Enable notifications for tag push events.
- wiki
Page BooleanEvents - Enable notifications for wiki page events.
- project string
- The ID or full path of the project to integrate with Google Chat.
- webhook string
- The Google Chat webhook URL (for example, https://chat.googleapis.com/v1/spaces/...).
- branches
To stringBe Notified - Branches to send notifications for. Valid values are:
all,default,protected,defaultAndProtected. - confidential
Issues booleanEvents - Enable notifications for confidential issues events.
- issues
Events boolean - Enable notifications for issues events.
- merge
Requests booleanEvents - Enable notifications for merge requests events.
- note
Events boolean - Enable notifications for note events.
- notify
Only booleanBroken Pipelines - Send notifications for broken pipelines only.
- pipeline
Events boolean - Enable notifications for pipeline events.
- push
Events boolean - Enable notifications for push events.
- tag
Push booleanEvents - Enable notifications for tag push events.
- wiki
Page booleanEvents - Enable notifications for wiki page events.
- project str
- The ID or full path of the project to integrate with Google Chat.
- webhook str
- The Google Chat webhook URL (for example, https://chat.googleapis.com/v1/spaces/...).
- branches_
to_ strbe_ notified - Branches to send notifications for. Valid values are:
all,default,protected,defaultAndProtected. - confidential_
issues_ boolevents - Enable notifications for confidential issues events.
- issues_
events bool - Enable notifications for issues events.
- merge_
requests_ boolevents - Enable notifications for merge requests events.
- note_
events bool - Enable notifications for note events.
- notify_
only_ boolbroken_ pipelines - Send notifications for broken pipelines only.
- pipeline_
events bool - Enable notifications for pipeline events.
- push_
events bool - Enable notifications for push events.
- tag_
push_ boolevents - Enable notifications for tag push events.
- wiki_
page_ boolevents - Enable notifications for wiki page events.
- project String
- The ID or full path of the project to integrate with Google Chat.
- webhook String
- The Google Chat webhook URL (for example, https://chat.googleapis.com/v1/spaces/...).
- branches
To StringBe Notified - Branches to send notifications for. Valid values are:
all,default,protected,defaultAndProtected. - confidential
Issues BooleanEvents - Enable notifications for confidential issues events.
- issues
Events Boolean - Enable notifications for issues events.
- merge
Requests BooleanEvents - Enable notifications for merge requests events.
- note
Events Boolean - Enable notifications for note events.
- notify
Only BooleanBroken Pipelines - Send notifications for broken pipelines only.
- pipeline
Events Boolean - Enable notifications for pipeline events.
- push
Events Boolean - Enable notifications for push events.
- tag
Push BooleanEvents - Enable notifications for tag push events.
- wiki
Page BooleanEvents - Enable notifications for wiki page events.
Outputs
All input properties are implicitly available as output properties. Additionally, the ProjectIntegrationGoogleChat resource produces the following output properties:
Look up Existing ProjectIntegrationGoogleChat Resource
Get an existing ProjectIntegrationGoogleChat resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: ProjectIntegrationGoogleChatState, opts?: CustomResourceOptions): ProjectIntegrationGoogleChat@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
active: Optional[bool] = None,
branches_to_be_notified: Optional[str] = None,
confidential_issues_events: Optional[bool] = None,
issues_events: Optional[bool] = None,
merge_requests_events: Optional[bool] = None,
note_events: Optional[bool] = None,
notify_only_broken_pipelines: Optional[bool] = None,
pipeline_events: Optional[bool] = None,
project: Optional[str] = None,
push_events: Optional[bool] = None,
tag_push_events: Optional[bool] = None,
webhook: Optional[str] = None,
wiki_page_events: Optional[bool] = None) -> ProjectIntegrationGoogleChatfunc GetProjectIntegrationGoogleChat(ctx *Context, name string, id IDInput, state *ProjectIntegrationGoogleChatState, opts ...ResourceOption) (*ProjectIntegrationGoogleChat, error)public static ProjectIntegrationGoogleChat Get(string name, Input<string> id, ProjectIntegrationGoogleChatState? state, CustomResourceOptions? opts = null)public static ProjectIntegrationGoogleChat get(String name, Output<String> id, ProjectIntegrationGoogleChatState state, CustomResourceOptions options)resources: _: type: gitlab:ProjectIntegrationGoogleChat get: id: ${id}import {
to = gitlab_projectintegrationgooglechat.example
id = "${id}"
}
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Active bool
- Whether the integration is active.
- Branches
To stringBe Notified - Branches to send notifications for. Valid values are:
all,default,protected,defaultAndProtected. - Confidential
Issues boolEvents - Enable notifications for confidential issues events.
- Issues
Events bool - Enable notifications for issues events.
- Merge
Requests boolEvents - Enable notifications for merge requests events.
- Note
Events bool - Enable notifications for note events.
- Notify
Only boolBroken Pipelines - Send notifications for broken pipelines only.
- Pipeline
Events bool - Enable notifications for pipeline events.
- Project string
- The ID or full path of the project to integrate with Google Chat.
- Push
Events bool - Enable notifications for push events.
- Tag
Push boolEvents - Enable notifications for tag push events.
- Webhook string
- The Google Chat webhook URL (for example, https://chat.googleapis.com/v1/spaces/...).
- Wiki
Page boolEvents - Enable notifications for wiki page events.
- Active bool
- Whether the integration is active.
- Branches
To stringBe Notified - Branches to send notifications for. Valid values are:
all,default,protected,defaultAndProtected. - Confidential
Issues boolEvents - Enable notifications for confidential issues events.
- Issues
Events bool - Enable notifications for issues events.
- Merge
Requests boolEvents - Enable notifications for merge requests events.
- Note
Events bool - Enable notifications for note events.
- Notify
Only boolBroken Pipelines - Send notifications for broken pipelines only.
- Pipeline
Events bool - Enable notifications for pipeline events.
- Project string
- The ID or full path of the project to integrate with Google Chat.
- Push
Events bool - Enable notifications for push events.
- Tag
Push boolEvents - Enable notifications for tag push events.
- Webhook string
- The Google Chat webhook URL (for example, https://chat.googleapis.com/v1/spaces/...).
- Wiki
Page boolEvents - Enable notifications for wiki page events.
- active bool
- Whether the integration is active.
- branches_
to_ stringbe_ notified - Branches to send notifications for. Valid values are:
all,default,protected,defaultAndProtected. - confidential_
issues_ boolevents - Enable notifications for confidential issues events.
- issues_
events bool - Enable notifications for issues events.
- merge_
requests_ boolevents - Enable notifications for merge requests events.
- note_
events bool - Enable notifications for note events.
- notify_
only_ boolbroken_ pipelines - Send notifications for broken pipelines only.
- pipeline_
events bool - Enable notifications for pipeline events.
- project string
- The ID or full path of the project to integrate with Google Chat.
- push_
events bool - Enable notifications for push events.
- tag_
push_ boolevents - Enable notifications for tag push events.
- webhook string
- The Google Chat webhook URL (for example, https://chat.googleapis.com/v1/spaces/...).
- wiki_
page_ boolevents - Enable notifications for wiki page events.
- active Boolean
- Whether the integration is active.
- branches
To StringBe Notified - Branches to send notifications for. Valid values are:
all,default,protected,defaultAndProtected. - confidential
Issues BooleanEvents - Enable notifications for confidential issues events.
- issues
Events Boolean - Enable notifications for issues events.
- merge
Requests BooleanEvents - Enable notifications for merge requests events.
- note
Events Boolean - Enable notifications for note events.
- notify
Only BooleanBroken Pipelines - Send notifications for broken pipelines only.
- pipeline
Events Boolean - Enable notifications for pipeline events.
- project String
- The ID or full path of the project to integrate with Google Chat.
- push
Events Boolean - Enable notifications for push events.
- tag
Push BooleanEvents - Enable notifications for tag push events.
- webhook String
- The Google Chat webhook URL (for example, https://chat.googleapis.com/v1/spaces/...).
- wiki
Page BooleanEvents - Enable notifications for wiki page events.
- active boolean
- Whether the integration is active.
- branches
To stringBe Notified - Branches to send notifications for. Valid values are:
all,default,protected,defaultAndProtected. - confidential
Issues booleanEvents - Enable notifications for confidential issues events.
- issues
Events boolean - Enable notifications for issues events.
- merge
Requests booleanEvents - Enable notifications for merge requests events.
- note
Events boolean - Enable notifications for note events.
- notify
Only booleanBroken Pipelines - Send notifications for broken pipelines only.
- pipeline
Events boolean - Enable notifications for pipeline events.
- project string
- The ID or full path of the project to integrate with Google Chat.
- push
Events boolean - Enable notifications for push events.
- tag
Push booleanEvents - Enable notifications for tag push events.
- webhook string
- The Google Chat webhook URL (for example, https://chat.googleapis.com/v1/spaces/...).
- wiki
Page booleanEvents - Enable notifications for wiki page events.
- active bool
- Whether the integration is active.
- branches_
to_ strbe_ notified - Branches to send notifications for. Valid values are:
all,default,protected,defaultAndProtected. - confidential_
issues_ boolevents - Enable notifications for confidential issues events.
- issues_
events bool - Enable notifications for issues events.
- merge_
requests_ boolevents - Enable notifications for merge requests events.
- note_
events bool - Enable notifications for note events.
- notify_
only_ boolbroken_ pipelines - Send notifications for broken pipelines only.
- pipeline_
events bool - Enable notifications for pipeline events.
- project str
- The ID or full path of the project to integrate with Google Chat.
- push_
events bool - Enable notifications for push events.
- tag_
push_ boolevents - Enable notifications for tag push events.
- webhook str
- The Google Chat webhook URL (for example, https://chat.googleapis.com/v1/spaces/...).
- wiki_
page_ boolevents - Enable notifications for wiki page events.
- active Boolean
- Whether the integration is active.
- branches
To StringBe Notified - Branches to send notifications for. Valid values are:
all,default,protected,defaultAndProtected. - confidential
Issues BooleanEvents - Enable notifications for confidential issues events.
- issues
Events Boolean - Enable notifications for issues events.
- merge
Requests BooleanEvents - Enable notifications for merge requests events.
- note
Events Boolean - Enable notifications for note events.
- notify
Only BooleanBroken Pipelines - Send notifications for broken pipelines only.
- pipeline
Events Boolean - Enable notifications for pipeline events.
- project String
- The ID or full path of the project to integrate with Google Chat.
- push
Events Boolean - Enable notifications for push events.
- tag
Push BooleanEvents - Enable notifications for tag push events.
- webhook String
- The Google Chat webhook URL (for example, https://chat.googleapis.com/v1/spaces/...).
- wiki
Page BooleanEvents - Enable notifications for wiki page events.
Package Details
- Repository
- GitLab pulumi/pulumi-gitlab
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
gitlabTerraform Provider.
published on Friday, Jun 26, 2026 by Pulumi