1. Packages
  2. Packages
  3. Gitlab Provider
  4. API Docs
  5. ProjectIntegrationGoogleChat
Viewing docs for GitLab v10.0.0
published on Friday, Jun 26, 2026 by Pulumi
gitlab logo
Viewing docs for GitLab v10.0.0
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/...).
    BranchesToBeNotified string
    Branches to send notifications for. Valid values are: all, default, protected, defaultAndProtected.
    ConfidentialIssuesEvents bool
    Enable notifications for confidential issues events.
    IssuesEvents bool
    Enable notifications for issues events.
    MergeRequestsEvents bool
    Enable notifications for merge requests events.
    NoteEvents bool
    Enable notifications for note events.
    NotifyOnlyBrokenPipelines bool
    Send notifications for broken pipelines only.
    PipelineEvents bool
    Enable notifications for pipeline events.
    PushEvents bool
    Enable notifications for push events.
    TagPushEvents bool
    Enable notifications for tag push events.
    WikiPageEvents bool
    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/...).
    BranchesToBeNotified string
    Branches to send notifications for. Valid values are: all, default, protected, defaultAndProtected.
    ConfidentialIssuesEvents bool
    Enable notifications for confidential issues events.
    IssuesEvents bool
    Enable notifications for issues events.
    MergeRequestsEvents bool
    Enable notifications for merge requests events.
    NoteEvents bool
    Enable notifications for note events.
    NotifyOnlyBrokenPipelines bool
    Send notifications for broken pipelines only.
    PipelineEvents bool
    Enable notifications for pipeline events.
    PushEvents bool
    Enable notifications for push events.
    TagPushEvents bool
    Enable notifications for tag push events.
    WikiPageEvents bool
    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_be_notified string
    Branches to send notifications for. Valid values are: all, default, protected, defaultAndProtected.
    confidential_issues_events bool
    Enable notifications for confidential issues events.
    issues_events bool
    Enable notifications for issues events.
    merge_requests_events bool
    Enable notifications for merge requests events.
    note_events bool
    Enable notifications for note events.
    notify_only_broken_pipelines bool
    Send notifications for broken pipelines only.
    pipeline_events bool
    Enable notifications for pipeline events.
    push_events bool
    Enable notifications for push events.
    tag_push_events bool
    Enable notifications for tag push events.
    wiki_page_events bool
    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/...).
    branchesToBeNotified String
    Branches to send notifications for. Valid values are: all, default, protected, defaultAndProtected.
    confidentialIssuesEvents Boolean
    Enable notifications for confidential issues events.
    issuesEvents Boolean
    Enable notifications for issues events.
    mergeRequestsEvents Boolean
    Enable notifications for merge requests events.
    noteEvents Boolean
    Enable notifications for note events.
    notifyOnlyBrokenPipelines Boolean
    Send notifications for broken pipelines only.
    pipelineEvents Boolean
    Enable notifications for pipeline events.
    pushEvents Boolean
    Enable notifications for push events.
    tagPushEvents Boolean
    Enable notifications for tag push events.
    wikiPageEvents Boolean
    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/...).
    branchesToBeNotified string
    Branches to send notifications for. Valid values are: all, default, protected, defaultAndProtected.
    confidentialIssuesEvents boolean
    Enable notifications for confidential issues events.
    issuesEvents boolean
    Enable notifications for issues events.
    mergeRequestsEvents boolean
    Enable notifications for merge requests events.
    noteEvents boolean
    Enable notifications for note events.
    notifyOnlyBrokenPipelines boolean
    Send notifications for broken pipelines only.
    pipelineEvents boolean
    Enable notifications for pipeline events.
    pushEvents boolean
    Enable notifications for push events.
    tagPushEvents boolean
    Enable notifications for tag push events.
    wikiPageEvents boolean
    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_be_notified str
    Branches to send notifications for. Valid values are: all, default, protected, defaultAndProtected.
    confidential_issues_events bool
    Enable notifications for confidential issues events.
    issues_events bool
    Enable notifications for issues events.
    merge_requests_events bool
    Enable notifications for merge requests events.
    note_events bool
    Enable notifications for note events.
    notify_only_broken_pipelines bool
    Send notifications for broken pipelines only.
    pipeline_events bool
    Enable notifications for pipeline events.
    push_events bool
    Enable notifications for push events.
    tag_push_events bool
    Enable notifications for tag push events.
    wiki_page_events bool
    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/...).
    branchesToBeNotified String
    Branches to send notifications for. Valid values are: all, default, protected, defaultAndProtected.
    confidentialIssuesEvents Boolean
    Enable notifications for confidential issues events.
    issuesEvents Boolean
    Enable notifications for issues events.
    mergeRequestsEvents Boolean
    Enable notifications for merge requests events.
    noteEvents Boolean
    Enable notifications for note events.
    notifyOnlyBrokenPipelines Boolean
    Send notifications for broken pipelines only.
    pipelineEvents Boolean
    Enable notifications for pipeline events.
    pushEvents Boolean
    Enable notifications for push events.
    tagPushEvents Boolean
    Enable notifications for tag push events.
    wikiPageEvents Boolean
    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:

    Active bool
    Whether the integration is active.
    Id string
    The provider-assigned unique ID for this managed resource.
    Active bool
    Whether the integration is active.
    Id string
    The provider-assigned unique ID for this managed resource.
    active bool
    Whether the integration is active.
    id string
    The provider-assigned unique ID for this managed resource.
    active Boolean
    Whether the integration is active.
    id String
    The provider-assigned unique ID for this managed resource.
    active boolean
    Whether the integration is active.
    id string
    The provider-assigned unique ID for this managed resource.
    active bool
    Whether the integration is active.
    id str
    The provider-assigned unique ID for this managed resource.
    active Boolean
    Whether the integration is active.
    id String
    The provider-assigned unique ID for this managed resource.

    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) -> ProjectIntegrationGoogleChat
    func 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.
    The following state arguments are supported:
    Active bool
    Whether the integration is active.
    BranchesToBeNotified string
    Branches to send notifications for. Valid values are: all, default, protected, defaultAndProtected.
    ConfidentialIssuesEvents bool
    Enable notifications for confidential issues events.
    IssuesEvents bool
    Enable notifications for issues events.
    MergeRequestsEvents bool
    Enable notifications for merge requests events.
    NoteEvents bool
    Enable notifications for note events.
    NotifyOnlyBrokenPipelines bool
    Send notifications for broken pipelines only.
    PipelineEvents bool
    Enable notifications for pipeline events.
    Project string
    The ID or full path of the project to integrate with Google Chat.
    PushEvents bool
    Enable notifications for push events.
    TagPushEvents bool
    Enable notifications for tag push events.
    Webhook string
    The Google Chat webhook URL (for example, https://chat.googleapis.com/v1/spaces/...).
    WikiPageEvents bool
    Enable notifications for wiki page events.
    Active bool
    Whether the integration is active.
    BranchesToBeNotified string
    Branches to send notifications for. Valid values are: all, default, protected, defaultAndProtected.
    ConfidentialIssuesEvents bool
    Enable notifications for confidential issues events.
    IssuesEvents bool
    Enable notifications for issues events.
    MergeRequestsEvents bool
    Enable notifications for merge requests events.
    NoteEvents bool
    Enable notifications for note events.
    NotifyOnlyBrokenPipelines bool
    Send notifications for broken pipelines only.
    PipelineEvents bool
    Enable notifications for pipeline events.
    Project string
    The ID or full path of the project to integrate with Google Chat.
    PushEvents bool
    Enable notifications for push events.
    TagPushEvents bool
    Enable notifications for tag push events.
    Webhook string
    The Google Chat webhook URL (for example, https://chat.googleapis.com/v1/spaces/...).
    WikiPageEvents bool
    Enable notifications for wiki page events.
    active bool
    Whether the integration is active.
    branches_to_be_notified string
    Branches to send notifications for. Valid values are: all, default, protected, defaultAndProtected.
    confidential_issues_events bool
    Enable notifications for confidential issues events.
    issues_events bool
    Enable notifications for issues events.
    merge_requests_events bool
    Enable notifications for merge requests events.
    note_events bool
    Enable notifications for note events.
    notify_only_broken_pipelines bool
    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_events bool
    Enable notifications for tag push events.
    webhook string
    The Google Chat webhook URL (for example, https://chat.googleapis.com/v1/spaces/...).
    wiki_page_events bool
    Enable notifications for wiki page events.
    active Boolean
    Whether the integration is active.
    branchesToBeNotified String
    Branches to send notifications for. Valid values are: all, default, protected, defaultAndProtected.
    confidentialIssuesEvents Boolean
    Enable notifications for confidential issues events.
    issuesEvents Boolean
    Enable notifications for issues events.
    mergeRequestsEvents Boolean
    Enable notifications for merge requests events.
    noteEvents Boolean
    Enable notifications for note events.
    notifyOnlyBrokenPipelines Boolean
    Send notifications for broken pipelines only.
    pipelineEvents Boolean
    Enable notifications for pipeline events.
    project String
    The ID or full path of the project to integrate with Google Chat.
    pushEvents Boolean
    Enable notifications for push events.
    tagPushEvents Boolean
    Enable notifications for tag push events.
    webhook String
    The Google Chat webhook URL (for example, https://chat.googleapis.com/v1/spaces/...).
    wikiPageEvents Boolean
    Enable notifications for wiki page events.
    active boolean
    Whether the integration is active.
    branchesToBeNotified string
    Branches to send notifications for. Valid values are: all, default, protected, defaultAndProtected.
    confidentialIssuesEvents boolean
    Enable notifications for confidential issues events.
    issuesEvents boolean
    Enable notifications for issues events.
    mergeRequestsEvents boolean
    Enable notifications for merge requests events.
    noteEvents boolean
    Enable notifications for note events.
    notifyOnlyBrokenPipelines boolean
    Send notifications for broken pipelines only.
    pipelineEvents boolean
    Enable notifications for pipeline events.
    project string
    The ID or full path of the project to integrate with Google Chat.
    pushEvents boolean
    Enable notifications for push events.
    tagPushEvents boolean
    Enable notifications for tag push events.
    webhook string
    The Google Chat webhook URL (for example, https://chat.googleapis.com/v1/spaces/...).
    wikiPageEvents boolean
    Enable notifications for wiki page events.
    active bool
    Whether the integration is active.
    branches_to_be_notified str
    Branches to send notifications for. Valid values are: all, default, protected, defaultAndProtected.
    confidential_issues_events bool
    Enable notifications for confidential issues events.
    issues_events bool
    Enable notifications for issues events.
    merge_requests_events bool
    Enable notifications for merge requests events.
    note_events bool
    Enable notifications for note events.
    notify_only_broken_pipelines bool
    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_events bool
    Enable notifications for tag push events.
    webhook str
    The Google Chat webhook URL (for example, https://chat.googleapis.com/v1/spaces/...).
    wiki_page_events bool
    Enable notifications for wiki page events.
    active Boolean
    Whether the integration is active.
    branchesToBeNotified String
    Branches to send notifications for. Valid values are: all, default, protected, defaultAndProtected.
    confidentialIssuesEvents Boolean
    Enable notifications for confidential issues events.
    issuesEvents Boolean
    Enable notifications for issues events.
    mergeRequestsEvents Boolean
    Enable notifications for merge requests events.
    noteEvents Boolean
    Enable notifications for note events.
    notifyOnlyBrokenPipelines Boolean
    Send notifications for broken pipelines only.
    pipelineEvents Boolean
    Enable notifications for pipeline events.
    project String
    The ID or full path of the project to integrate with Google Chat.
    pushEvents Boolean
    Enable notifications for push events.
    tagPushEvents Boolean
    Enable notifications for tag push events.
    webhook String
    The Google Chat webhook URL (for example, https://chat.googleapis.com/v1/spaces/...).
    wikiPageEvents Boolean
    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 gitlab Terraform Provider.
    gitlab logo
    Viewing docs for GitLab v10.0.0
    published on Friday, Jun 26, 2026 by Pulumi

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial