1. Packages
  2. Packages
  3. Pulumi Cloud (Pulumi Service provider)
  4. API Docs
  5. api
  6. api/integrations
  7. GitHubIntegration

This provider is currently in preview.

Viewing docs for Pulumi Cloud v1.1.0
published on Thursday, May 21, 2026 by Pulumi
pulumiservice logo

This provider is currently in preview.

Viewing docs for Pulumi Cloud v1.1.0
published on Thursday, May 21, 2026 by Pulumi

    Updates GitHub App integration settings.

    Create GitHubIntegration Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new GitHubIntegration(name: string, args: GitHubIntegrationArgs, opts?: CustomResourceOptions);
    @overload
    def GitHubIntegration(resource_name: str,
                          args: GitHubIntegrationArgs,
                          opts: Optional[ResourceOptions] = None)
    
    @overload
    def GitHubIntegration(resource_name: str,
                          opts: Optional[ResourceOptions] = None,
                          integration_id: Optional[str] = None,
                          org_name: Optional[str] = None,
                          disable_code_access_for_reviews: Optional[bool] = None,
                          disable_detailed_diff: Optional[bool] = None,
                          disable_neo_summaries: Optional[bool] = None,
                          disable_pr_comments: Optional[bool] = None)
    func NewGitHubIntegration(ctx *Context, name string, args GitHubIntegrationArgs, opts ...ResourceOption) (*GitHubIntegration, error)
    public GitHubIntegration(string name, GitHubIntegrationArgs args, CustomResourceOptions? opts = null)
    public GitHubIntegration(String name, GitHubIntegrationArgs args)
    public GitHubIntegration(String name, GitHubIntegrationArgs args, CustomResourceOptions options)
    
    type: pulumiservice:api/integrations:GitHubIntegration
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "pulumiservice_api_integrations_githubintegration" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args GitHubIntegrationArgs
    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 GitHubIntegrationArgs
    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 GitHubIntegrationArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args GitHubIntegrationArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args GitHubIntegrationArgs
    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 gitHubIntegrationResource = new PulumiService.Api.Integrations.GitHubIntegration("gitHubIntegrationResource", new()
    {
        IntegrationId = "string",
        OrgName = "string",
        DisableCodeAccessForReviews = false,
        DisableDetailedDiff = false,
        DisableNeoSummaries = false,
        DisablePRComments = false,
    });
    
    example, err := integrations.NewGitHubIntegration(ctx, "gitHubIntegrationResource", &integrations.GitHubIntegrationArgs{
    	IntegrationId:               pulumi.String("string"),
    	OrgName:                     pulumi.String("string"),
    	DisableCodeAccessForReviews: pulumi.Bool(false),
    	DisableDetailedDiff:         pulumi.Bool(false),
    	DisableNeoSummaries:         pulumi.Bool(false),
    	DisablePRComments:           pulumi.Bool(false),
    })
    
    resource "pulumiservice_api_integrations_githubintegration" "gitHubIntegrationResource" {
      integration_id                  = "string"
      org_name                        = "string"
      disable_code_access_for_reviews = false
      disable_detailed_diff           = false
      disable_neo_summaries           = false
      disable_pr_comments             = false
    }
    
    var gitHubIntegrationResource = new GitHubIntegration("gitHubIntegrationResource", GitHubIntegrationArgs.builder()
        .integrationId("string")
        .orgName("string")
        .disableCodeAccessForReviews(false)
        .disableDetailedDiff(false)
        .disableNeoSummaries(false)
        .disablePRComments(false)
        .build());
    
    git_hub_integration_resource = pulumiservice.api.integrations.GitHubIntegration("gitHubIntegrationResource",
        integration_id="string",
        org_name="string",
        disable_code_access_for_reviews=False,
        disable_detailed_diff=False,
        disable_neo_summaries=False,
        disable_pr_comments=False)
    
    const gitHubIntegrationResource = new pulumiservice.api.integrations.GitHubIntegration("gitHubIntegrationResource", {
        integrationId: "string",
        orgName: "string",
        disableCodeAccessForReviews: false,
        disableDetailedDiff: false,
        disableNeoSummaries: false,
        disablePRComments: false,
    });
    
    type: pulumiservice:api/integrations:GitHubIntegration
    properties:
        disableCodeAccessForReviews: false
        disableDetailedDiff: false
        disableNeoSummaries: false
        disablePRComments: false
        integrationId: string
        orgName: string
    

    GitHubIntegration 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 GitHubIntegration resource accepts the following input properties:

    IntegrationId string
    The GitHub App integration identifier
    OrgName string
    The organization name
    DisableCodeAccessForReviews bool
    Whether to disable code access for AI reviews
    DisableDetailedDiff bool
    Whether to disable detailed property-level diffs in PR comments
    DisableNeoSummaries bool
    Whether to disable Neo AI summaries on PRs
    DisablePRComments bool
    Whether to disable PR comments from the Pulumi GitHub App
    IntegrationId string
    The GitHub App integration identifier
    OrgName string
    The organization name
    DisableCodeAccessForReviews bool
    Whether to disable code access for AI reviews
    DisableDetailedDiff bool
    Whether to disable detailed property-level diffs in PR comments
    DisableNeoSummaries bool
    Whether to disable Neo AI summaries on PRs
    DisablePRComments bool
    Whether to disable PR comments from the Pulumi GitHub App
    integration_id string
    The GitHub App integration identifier
    org_name string
    The organization name
    disable_code_access_for_reviews bool
    Whether to disable code access for AI reviews
    disable_detailed_diff bool
    Whether to disable detailed property-level diffs in PR comments
    disable_neo_summaries bool
    Whether to disable Neo AI summaries on PRs
    disable_pr_comments bool
    Whether to disable PR comments from the Pulumi GitHub App
    integrationId String
    The GitHub App integration identifier
    orgName String
    The organization name
    disableCodeAccessForReviews Boolean
    Whether to disable code access for AI reviews
    disableDetailedDiff Boolean
    Whether to disable detailed property-level diffs in PR comments
    disableNeoSummaries Boolean
    Whether to disable Neo AI summaries on PRs
    disablePRComments Boolean
    Whether to disable PR comments from the Pulumi GitHub App
    integrationId string
    The GitHub App integration identifier
    orgName string
    The organization name
    disableCodeAccessForReviews boolean
    Whether to disable code access for AI reviews
    disableDetailedDiff boolean
    Whether to disable detailed property-level diffs in PR comments
    disableNeoSummaries boolean
    Whether to disable Neo AI summaries on PRs
    disablePRComments boolean
    Whether to disable PR comments from the Pulumi GitHub App
    integration_id str
    The GitHub App integration identifier
    org_name str
    The organization name
    disable_code_access_for_reviews bool
    Whether to disable code access for AI reviews
    disable_detailed_diff bool
    Whether to disable detailed property-level diffs in PR comments
    disable_neo_summaries bool
    Whether to disable Neo AI summaries on PRs
    disable_pr_comments bool
    Whether to disable PR comments from the Pulumi GitHub App
    integrationId String
    The GitHub App integration identifier
    orgName String
    The organization name
    disableCodeAccessForReviews Boolean
    Whether to disable code access for AI reviews
    disableDetailedDiff Boolean
    Whether to disable detailed property-level diffs in PR comments
    disableNeoSummaries Boolean
    Whether to disable Neo AI summaries on PRs
    disablePRComments Boolean
    Whether to disable PR comments from the Pulumi GitHub App

    Outputs

    All input properties are implicitly available as output properties. Additionally, the GitHubIntegration resource produces the following output properties:

    HasContentsPermission bool
    Whether the installation has the 'contents' permission.
    HasMembersPermission bool
    Whether the installation has the 'members' permission (only relevant for organization accounts).
    Id string
    The provider-assigned unique ID for this managed resource.
    InstallationID int
    The GitHub installation ID.
    IsOrganization bool
    Whether the GitHub account is an organization (as opposed to a personal account).
    IsSelfHosted bool
    Whether this is a self-hosted GitHub Enterprise installation.
    AccountID int
    The GitHub account ID (user or org).
    AccountName string
    The GitHub account name (login).
    AvatarUrl string
    The avatar URL of the GitHub account.
    Created string
    When the installation was created.
    GhUrls object
    URL to configure repository access for this GitHub App installation.
    NeoGitHubAppPermissionRequirements List<object>
    Neo GitHub App permission requirements for this installation.
    HasContentsPermission bool
    Whether the installation has the 'contents' permission.
    HasMembersPermission bool
    Whether the installation has the 'members' permission (only relevant for organization accounts).
    Id string
    The provider-assigned unique ID for this managed resource.
    InstallationID int
    The GitHub installation ID.
    IsOrganization bool
    Whether the GitHub account is an organization (as opposed to a personal account).
    IsSelfHosted bool
    Whether this is a self-hosted GitHub Enterprise installation.
    AccountID int
    The GitHub account ID (user or org).
    AccountName string
    The GitHub account name (login).
    AvatarUrl string
    The avatar URL of the GitHub account.
    Created string
    When the installation was created.
    GhUrls interface{}
    URL to configure repository access for this GitHub App installation.
    NeoGitHubAppPermissionRequirements []interface{}
    Neo GitHub App permission requirements for this installation.
    has_contents_permission bool
    Whether the installation has the 'contents' permission.
    has_members_permission bool
    Whether the installation has the 'members' permission (only relevant for organization accounts).
    id string
    The provider-assigned unique ID for this managed resource.
    installation_id number
    The GitHub installation ID.
    is_organization bool
    Whether the GitHub account is an organization (as opposed to a personal account).
    is_self_hosted bool
    Whether this is a self-hosted GitHub Enterprise installation.
    account_id number
    The GitHub account ID (user or org).
    account_name string
    The GitHub account name (login).
    avatar_url string
    The avatar URL of the GitHub account.
    created string
    When the installation was created.
    gh_urls any
    URL to configure repository access for this GitHub App installation.
    neo_git_hub_app_permission_requirements list(any)
    Neo GitHub App permission requirements for this installation.
    hasContentsPermission Boolean
    Whether the installation has the 'contents' permission.
    hasMembersPermission Boolean
    Whether the installation has the 'members' permission (only relevant for organization accounts).
    id String
    The provider-assigned unique ID for this managed resource.
    installationID Integer
    The GitHub installation ID.
    isOrganization Boolean
    Whether the GitHub account is an organization (as opposed to a personal account).
    isSelfHosted Boolean
    Whether this is a self-hosted GitHub Enterprise installation.
    accountID Integer
    The GitHub account ID (user or org).
    accountName String
    The GitHub account name (login).
    avatarUrl String
    The avatar URL of the GitHub account.
    created String
    When the installation was created.
    ghUrls Object
    URL to configure repository access for this GitHub App installation.
    neoGitHubAppPermissionRequirements List<Object>
    Neo GitHub App permission requirements for this installation.
    hasContentsPermission boolean
    Whether the installation has the 'contents' permission.
    hasMembersPermission boolean
    Whether the installation has the 'members' permission (only relevant for organization accounts).
    id string
    The provider-assigned unique ID for this managed resource.
    installationID number
    The GitHub installation ID.
    isOrganization boolean
    Whether the GitHub account is an organization (as opposed to a personal account).
    isSelfHosted boolean
    Whether this is a self-hosted GitHub Enterprise installation.
    accountID number
    The GitHub account ID (user or org).
    accountName string
    The GitHub account name (login).
    avatarUrl string
    The avatar URL of the GitHub account.
    created string
    When the installation was created.
    ghUrls any
    URL to configure repository access for this GitHub App installation.
    neoGitHubAppPermissionRequirements any[]
    Neo GitHub App permission requirements for this installation.
    has_contents_permission bool
    Whether the installation has the 'contents' permission.
    has_members_permission bool
    Whether the installation has the 'members' permission (only relevant for organization accounts).
    id str
    The provider-assigned unique ID for this managed resource.
    installation_id int
    The GitHub installation ID.
    is_organization bool
    Whether the GitHub account is an organization (as opposed to a personal account).
    is_self_hosted bool
    Whether this is a self-hosted GitHub Enterprise installation.
    account_id int
    The GitHub account ID (user or org).
    account_name str
    The GitHub account name (login).
    avatar_url str
    The avatar URL of the GitHub account.
    created str
    When the installation was created.
    gh_urls Any
    URL to configure repository access for this GitHub App installation.
    neo_git_hub_app_permission_requirements Sequence[Any]
    Neo GitHub App permission requirements for this installation.
    hasContentsPermission Boolean
    Whether the installation has the 'contents' permission.
    hasMembersPermission Boolean
    Whether the installation has the 'members' permission (only relevant for organization accounts).
    id String
    The provider-assigned unique ID for this managed resource.
    installationID Number
    The GitHub installation ID.
    isOrganization Boolean
    Whether the GitHub account is an organization (as opposed to a personal account).
    isSelfHosted Boolean
    Whether this is a self-hosted GitHub Enterprise installation.
    accountID Number
    The GitHub account ID (user or org).
    accountName String
    The GitHub account name (login).
    avatarUrl String
    The avatar URL of the GitHub account.
    created String
    When the installation was created.
    ghUrls Any
    URL to configure repository access for this GitHub App installation.
    neoGitHubAppPermissionRequirements List<Any>
    Neo GitHub App permission requirements for this installation.

    Package Details

    Repository
    pulumiservice pulumi/pulumi-pulumiservice
    License
    Apache-2.0
    pulumiservice logo

    This provider is currently in preview.

    Viewing docs for Pulumi Cloud v1.1.0
    published on Thursday, May 21, 2026 by Pulumi

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial