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

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 an existing Azure DevOps integration’s settings. Can modify the Azure DevOps organization, project, or authentication configuration.

    Create AzureDevOpsIntegration Resource

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

    Constructor syntax

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

    Parameters

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

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

    IntegrationId string
    The Azure DevOps integration identifier
    OrgName string
    The organization name
    DisableDetailedDiff bool
    Whether detailed property-level diffs are disabled for PR comments
    DisableNeoSummaries bool
    Whether Neo AI summaries are disabled for this integration
    DisablePRComments bool
    Whether PR comments are disabled for this integration
    IntegrationId string
    The Azure DevOps integration identifier
    OrgName string
    The organization name
    DisableDetailedDiff bool
    Whether detailed property-level diffs are disabled for PR comments
    DisableNeoSummaries bool
    Whether Neo AI summaries are disabled for this integration
    DisablePRComments bool
    Whether PR comments are disabled for this integration
    integration_id string
    The Azure DevOps integration identifier
    org_name string
    The organization name
    disable_detailed_diff bool
    Whether detailed property-level diffs are disabled for PR comments
    disable_neo_summaries bool
    Whether Neo AI summaries are disabled for this integration
    disable_pr_comments bool
    Whether PR comments are disabled for this integration
    integrationId String
    The Azure DevOps integration identifier
    orgName String
    The organization name
    disableDetailedDiff Boolean
    Whether detailed property-level diffs are disabled for PR comments
    disableNeoSummaries Boolean
    Whether Neo AI summaries are disabled for this integration
    disablePRComments Boolean
    Whether PR comments are disabled for this integration
    integrationId string
    The Azure DevOps integration identifier
    orgName string
    The organization name
    disableDetailedDiff boolean
    Whether detailed property-level diffs are disabled for PR comments
    disableNeoSummaries boolean
    Whether Neo AI summaries are disabled for this integration
    disablePRComments boolean
    Whether PR comments are disabled for this integration
    integration_id str
    The Azure DevOps integration identifier
    org_name str
    The organization name
    disable_detailed_diff bool
    Whether detailed property-level diffs are disabled for PR comments
    disable_neo_summaries bool
    Whether Neo AI summaries are disabled for this integration
    disable_pr_comments bool
    Whether PR comments are disabled for this integration
    integrationId String
    The Azure DevOps integration identifier
    orgName String
    The organization name
    disableDetailedDiff Boolean
    Whether detailed property-level diffs are disabled for PR comments
    disableNeoSummaries Boolean
    Whether Neo AI summaries are disabled for this integration
    disablePRComments Boolean
    Whether PR comments are disabled for this integration

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    Installed bool
    Does the org have an Azure DevOps app integration configured
    Valid bool
    Is the app integration valid
    AuthUser object
    The Pulumi user whose Azure DevOps authentication token is being used
    Organization object
    Metadata about the Azure DevOps organization linked to the Pulumi organization
    Project object
    Metadata about the Azure DevOps project linked to the Pulumi organization
    Id string
    The provider-assigned unique ID for this managed resource.
    Installed bool
    Does the org have an Azure DevOps app integration configured
    Valid bool
    Is the app integration valid
    AuthUser interface{}
    The Pulumi user whose Azure DevOps authentication token is being used
    Organization interface{}
    Metadata about the Azure DevOps organization linked to the Pulumi organization
    Project interface{}
    Metadata about the Azure DevOps project linked to the Pulumi organization
    id string
    The provider-assigned unique ID for this managed resource.
    installed bool
    Does the org have an Azure DevOps app integration configured
    valid bool
    Is the app integration valid
    auth_user any
    The Pulumi user whose Azure DevOps authentication token is being used
    organization any
    Metadata about the Azure DevOps organization linked to the Pulumi organization
    project any
    Metadata about the Azure DevOps project linked to the Pulumi organization
    id String
    The provider-assigned unique ID for this managed resource.
    installed Boolean
    Does the org have an Azure DevOps app integration configured
    valid Boolean
    Is the app integration valid
    authUser Object
    The Pulumi user whose Azure DevOps authentication token is being used
    organization Object
    Metadata about the Azure DevOps organization linked to the Pulumi organization
    project Object
    Metadata about the Azure DevOps project linked to the Pulumi organization
    id string
    The provider-assigned unique ID for this managed resource.
    installed boolean
    Does the org have an Azure DevOps app integration configured
    valid boolean
    Is the app integration valid
    authUser any
    The Pulumi user whose Azure DevOps authentication token is being used
    organization any
    Metadata about the Azure DevOps organization linked to the Pulumi organization
    project any
    Metadata about the Azure DevOps project linked to the Pulumi organization
    id str
    The provider-assigned unique ID for this managed resource.
    installed bool
    Does the org have an Azure DevOps app integration configured
    valid bool
    Is the app integration valid
    auth_user Any
    The Pulumi user whose Azure DevOps authentication token is being used
    organization Any
    Metadata about the Azure DevOps organization linked to the Pulumi organization
    project Any
    Metadata about the Azure DevOps project linked to the Pulumi organization
    id String
    The provider-assigned unique ID for this managed resource.
    installed Boolean
    Does the org have an Azure DevOps app integration configured
    valid Boolean
    Is the app integration valid
    authUser Any
    The Pulumi user whose Azure DevOps authentication token is being used
    organization Any
    Metadata about the Azure DevOps organization linked to the Pulumi organization
    project Any
    Metadata about the Azure DevOps project linked to the Pulumi organization

    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