1. Packages
  2. Azure DevOps Provider
  3. API Docs
  4. ServiceEndpointArtifactory
Azure DevOps v3.8.0 published on Monday, Mar 17, 2025 by Pulumi

azuredevops.ServiceEndpointArtifactory

Explore with Pulumi AI

Manages an JFrog Artifactory server endpoint within an Azure DevOps organization. Using this service endpoint requires you to first install JFrog Artifactory Extension.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as azuredevops from "@pulumi/azuredevops";

const example = new azuredevops.Project("example", {
    name: "Example Project",
    visibility: "private",
    versionControl: "Git",
    workItemTemplate: "Agile",
    description: "Managed by Pulumi",
});
const exampleServiceEndpointArtifactory = new azuredevops.ServiceEndpointArtifactory("example", {
    projectId: example.id,
    serviceEndpointName: "Example Artifactory",
    description: "Managed by Pulumi",
    url: "https://artifactory.my.com",
    authenticationToken: {
        token: "0000000000000000000000000000000000000000",
    },
});
Copy
import pulumi
import pulumi_azuredevops as azuredevops

example = azuredevops.Project("example",
    name="Example Project",
    visibility="private",
    version_control="Git",
    work_item_template="Agile",
    description="Managed by Pulumi")
example_service_endpoint_artifactory = azuredevops.ServiceEndpointArtifactory("example",
    project_id=example.id,
    service_endpoint_name="Example Artifactory",
    description="Managed by Pulumi",
    url="https://artifactory.my.com",
    authentication_token={
        "token": "0000000000000000000000000000000000000000",
    })
Copy
package main

import (
	"github.com/pulumi/pulumi-azuredevops/sdk/v3/go/azuredevops"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		example, err := azuredevops.NewProject(ctx, "example", &azuredevops.ProjectArgs{
			Name:             pulumi.String("Example Project"),
			Visibility:       pulumi.String("private"),
			VersionControl:   pulumi.String("Git"),
			WorkItemTemplate: pulumi.String("Agile"),
			Description:      pulumi.String("Managed by Pulumi"),
		})
		if err != nil {
			return err
		}
		_, err = azuredevops.NewServiceEndpointArtifactory(ctx, "example", &azuredevops.ServiceEndpointArtifactoryArgs{
			ProjectId:           example.ID(),
			ServiceEndpointName: pulumi.String("Example Artifactory"),
			Description:         pulumi.String("Managed by Pulumi"),
			Url:                 pulumi.String("https://artifactory.my.com"),
			AuthenticationToken: &azuredevops.ServiceEndpointArtifactoryAuthenticationTokenArgs{
				Token: pulumi.String("0000000000000000000000000000000000000000"),
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureDevOps = Pulumi.AzureDevOps;

return await Deployment.RunAsync(() => 
{
    var example = new AzureDevOps.Project("example", new()
    {
        Name = "Example Project",
        Visibility = "private",
        VersionControl = "Git",
        WorkItemTemplate = "Agile",
        Description = "Managed by Pulumi",
    });

    var exampleServiceEndpointArtifactory = new AzureDevOps.ServiceEndpointArtifactory("example", new()
    {
        ProjectId = example.Id,
        ServiceEndpointName = "Example Artifactory",
        Description = "Managed by Pulumi",
        Url = "https://artifactory.my.com",
        AuthenticationToken = new AzureDevOps.Inputs.ServiceEndpointArtifactoryAuthenticationTokenArgs
        {
            Token = "0000000000000000000000000000000000000000",
        },
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azuredevops.Project;
import com.pulumi.azuredevops.ProjectArgs;
import com.pulumi.azuredevops.ServiceEndpointArtifactory;
import com.pulumi.azuredevops.ServiceEndpointArtifactoryArgs;
import com.pulumi.azuredevops.inputs.ServiceEndpointArtifactoryAuthenticationTokenArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;

public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }

    public static void stack(Context ctx) {
        var example = new Project("example", ProjectArgs.builder()
            .name("Example Project")
            .visibility("private")
            .versionControl("Git")
            .workItemTemplate("Agile")
            .description("Managed by Pulumi")
            .build());

        var exampleServiceEndpointArtifactory = new ServiceEndpointArtifactory("exampleServiceEndpointArtifactory", ServiceEndpointArtifactoryArgs.builder()
            .projectId(example.id())
            .serviceEndpointName("Example Artifactory")
            .description("Managed by Pulumi")
            .url("https://artifactory.my.com")
            .authenticationToken(ServiceEndpointArtifactoryAuthenticationTokenArgs.builder()
                .token("0000000000000000000000000000000000000000")
                .build())
            .build());

    }
}
Copy
resources:
  example:
    type: azuredevops:Project
    properties:
      name: Example Project
      visibility: private
      versionControl: Git
      workItemTemplate: Agile
      description: Managed by Pulumi
  exampleServiceEndpointArtifactory:
    type: azuredevops:ServiceEndpointArtifactory
    name: example
    properties:
      projectId: ${example.id}
      serviceEndpointName: Example Artifactory
      description: Managed by Pulumi
      url: https://artifactory.my.com
      authenticationToken:
        token: '0000000000000000000000000000000000000000'
Copy

Alternatively a username and password may be used.

import * as pulumi from "@pulumi/pulumi";
import * as azuredevops from "@pulumi/azuredevops";

const example = new azuredevops.Project("example", {
    name: "Example Project",
    visibility: "private",
    versionControl: "Git",
    workItemTemplate: "Agile",
    description: "Managed by Pulumi",
});
const exampleServiceEndpointArtifactory = new azuredevops.ServiceEndpointArtifactory("example", {
    projectId: example.id,
    serviceEndpointName: "Example Artifactory",
    description: "Managed by Pulumi",
    url: "https://artifactory.my.com",
    authenticationBasic: {
        username: "username",
        password: "password",
    },
});
Copy
import pulumi
import pulumi_azuredevops as azuredevops

example = azuredevops.Project("example",
    name="Example Project",
    visibility="private",
    version_control="Git",
    work_item_template="Agile",
    description="Managed by Pulumi")
example_service_endpoint_artifactory = azuredevops.ServiceEndpointArtifactory("example",
    project_id=example.id,
    service_endpoint_name="Example Artifactory",
    description="Managed by Pulumi",
    url="https://artifactory.my.com",
    authentication_basic={
        "username": "username",
        "password": "password",
    })
Copy
package main

import (
	"github.com/pulumi/pulumi-azuredevops/sdk/v3/go/azuredevops"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		example, err := azuredevops.NewProject(ctx, "example", &azuredevops.ProjectArgs{
			Name:             pulumi.String("Example Project"),
			Visibility:       pulumi.String("private"),
			VersionControl:   pulumi.String("Git"),
			WorkItemTemplate: pulumi.String("Agile"),
			Description:      pulumi.String("Managed by Pulumi"),
		})
		if err != nil {
			return err
		}
		_, err = azuredevops.NewServiceEndpointArtifactory(ctx, "example", &azuredevops.ServiceEndpointArtifactoryArgs{
			ProjectId:           example.ID(),
			ServiceEndpointName: pulumi.String("Example Artifactory"),
			Description:         pulumi.String("Managed by Pulumi"),
			Url:                 pulumi.String("https://artifactory.my.com"),
			AuthenticationBasic: &azuredevops.ServiceEndpointArtifactoryAuthenticationBasicArgs{
				Username: pulumi.String("username"),
				Password: pulumi.String("password"),
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureDevOps = Pulumi.AzureDevOps;

return await Deployment.RunAsync(() => 
{
    var example = new AzureDevOps.Project("example", new()
    {
        Name = "Example Project",
        Visibility = "private",
        VersionControl = "Git",
        WorkItemTemplate = "Agile",
        Description = "Managed by Pulumi",
    });

    var exampleServiceEndpointArtifactory = new AzureDevOps.ServiceEndpointArtifactory("example", new()
    {
        ProjectId = example.Id,
        ServiceEndpointName = "Example Artifactory",
        Description = "Managed by Pulumi",
        Url = "https://artifactory.my.com",
        AuthenticationBasic = new AzureDevOps.Inputs.ServiceEndpointArtifactoryAuthenticationBasicArgs
        {
            Username = "username",
            Password = "password",
        },
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azuredevops.Project;
import com.pulumi.azuredevops.ProjectArgs;
import com.pulumi.azuredevops.ServiceEndpointArtifactory;
import com.pulumi.azuredevops.ServiceEndpointArtifactoryArgs;
import com.pulumi.azuredevops.inputs.ServiceEndpointArtifactoryAuthenticationBasicArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;

public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }

    public static void stack(Context ctx) {
        var example = new Project("example", ProjectArgs.builder()
            .name("Example Project")
            .visibility("private")
            .versionControl("Git")
            .workItemTemplate("Agile")
            .description("Managed by Pulumi")
            .build());

        var exampleServiceEndpointArtifactory = new ServiceEndpointArtifactory("exampleServiceEndpointArtifactory", ServiceEndpointArtifactoryArgs.builder()
            .projectId(example.id())
            .serviceEndpointName("Example Artifactory")
            .description("Managed by Pulumi")
            .url("https://artifactory.my.com")
            .authenticationBasic(ServiceEndpointArtifactoryAuthenticationBasicArgs.builder()
                .username("username")
                .password("password")
                .build())
            .build());

    }
}
Copy
resources:
  example:
    type: azuredevops:Project
    properties:
      name: Example Project
      visibility: private
      versionControl: Git
      workItemTemplate: Agile
      description: Managed by Pulumi
  exampleServiceEndpointArtifactory:
    type: azuredevops:ServiceEndpointArtifactory
    name: example
    properties:
      projectId: ${example.id}
      serviceEndpointName: Example Artifactory
      description: Managed by Pulumi
      url: https://artifactory.my.com
      authenticationBasic:
        username: username
        password: password
Copy

Create ServiceEndpointArtifactory Resource

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

Constructor syntax

new ServiceEndpointArtifactory(name: string, args: ServiceEndpointArtifactoryArgs, opts?: CustomResourceOptions);
@overload
def ServiceEndpointArtifactory(resource_name: str,
                               args: ServiceEndpointArtifactoryArgs,
                               opts: Optional[ResourceOptions] = None)

@overload
def ServiceEndpointArtifactory(resource_name: str,
                               opts: Optional[ResourceOptions] = None,
                               project_id: Optional[str] = None,
                               service_endpoint_name: Optional[str] = None,
                               url: Optional[str] = None,
                               authentication_basic: Optional[ServiceEndpointArtifactoryAuthenticationBasicArgs] = None,
                               authentication_token: Optional[ServiceEndpointArtifactoryAuthenticationTokenArgs] = None,
                               description: Optional[str] = None)
func NewServiceEndpointArtifactory(ctx *Context, name string, args ServiceEndpointArtifactoryArgs, opts ...ResourceOption) (*ServiceEndpointArtifactory, error)
public ServiceEndpointArtifactory(string name, ServiceEndpointArtifactoryArgs args, CustomResourceOptions? opts = null)
public ServiceEndpointArtifactory(String name, ServiceEndpointArtifactoryArgs args)
public ServiceEndpointArtifactory(String name, ServiceEndpointArtifactoryArgs args, CustomResourceOptions options)
type: azuredevops:ServiceEndpointArtifactory
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. ServiceEndpointArtifactoryArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. ServiceEndpointArtifactoryArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. ServiceEndpointArtifactoryArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. ServiceEndpointArtifactoryArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. ServiceEndpointArtifactoryArgs
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 serviceEndpointArtifactoryResource = new AzureDevOps.ServiceEndpointArtifactory("serviceEndpointArtifactoryResource", new()
{
    ProjectId = "string",
    ServiceEndpointName = "string",
    Url = "string",
    AuthenticationBasic = new AzureDevOps.Inputs.ServiceEndpointArtifactoryAuthenticationBasicArgs
    {
        Password = "string",
        Username = "string",
    },
    AuthenticationToken = new AzureDevOps.Inputs.ServiceEndpointArtifactoryAuthenticationTokenArgs
    {
        Token = "string",
    },
    Description = "string",
});
Copy
example, err := azuredevops.NewServiceEndpointArtifactory(ctx, "serviceEndpointArtifactoryResource", &azuredevops.ServiceEndpointArtifactoryArgs{
	ProjectId:           pulumi.String("string"),
	ServiceEndpointName: pulumi.String("string"),
	Url:                 pulumi.String("string"),
	AuthenticationBasic: &azuredevops.ServiceEndpointArtifactoryAuthenticationBasicArgs{
		Password: pulumi.String("string"),
		Username: pulumi.String("string"),
	},
	AuthenticationToken: &azuredevops.ServiceEndpointArtifactoryAuthenticationTokenArgs{
		Token: pulumi.String("string"),
	},
	Description: pulumi.String("string"),
})
Copy
var serviceEndpointArtifactoryResource = new ServiceEndpointArtifactory("serviceEndpointArtifactoryResource", ServiceEndpointArtifactoryArgs.builder()
    .projectId("string")
    .serviceEndpointName("string")
    .url("string")
    .authenticationBasic(ServiceEndpointArtifactoryAuthenticationBasicArgs.builder()
        .password("string")
        .username("string")
        .build())
    .authenticationToken(ServiceEndpointArtifactoryAuthenticationTokenArgs.builder()
        .token("string")
        .build())
    .description("string")
    .build());
Copy
service_endpoint_artifactory_resource = azuredevops.ServiceEndpointArtifactory("serviceEndpointArtifactoryResource",
    project_id="string",
    service_endpoint_name="string",
    url="string",
    authentication_basic={
        "password": "string",
        "username": "string",
    },
    authentication_token={
        "token": "string",
    },
    description="string")
Copy
const serviceEndpointArtifactoryResource = new azuredevops.ServiceEndpointArtifactory("serviceEndpointArtifactoryResource", {
    projectId: "string",
    serviceEndpointName: "string",
    url: "string",
    authenticationBasic: {
        password: "string",
        username: "string",
    },
    authenticationToken: {
        token: "string",
    },
    description: "string",
});
Copy
type: azuredevops:ServiceEndpointArtifactory
properties:
    authenticationBasic:
        password: string
        username: string
    authenticationToken:
        token: string
    description: string
    projectId: string
    serviceEndpointName: string
    url: string
Copy

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

ProjectId
This property is required.
Changes to this property will trigger replacement.
string
The ID of the project.
ServiceEndpointName This property is required. string
The Service Endpoint name.
Url This property is required. string

URL of the Artifactory server to connect with.

Note: URL should not end in a slash character.

AuthenticationBasic Pulumi.AzureDevOps.Inputs.ServiceEndpointArtifactoryAuthenticationBasic
AuthenticationToken Pulumi.AzureDevOps.Inputs.ServiceEndpointArtifactoryAuthenticationToken
A authentication_basic block as defined below.
Description string
The Service Endpoint description.
ProjectId
This property is required.
Changes to this property will trigger replacement.
string
The ID of the project.
ServiceEndpointName This property is required. string
The Service Endpoint name.
Url This property is required. string

URL of the Artifactory server to connect with.

Note: URL should not end in a slash character.

AuthenticationBasic ServiceEndpointArtifactoryAuthenticationBasicArgs
AuthenticationToken ServiceEndpointArtifactoryAuthenticationTokenArgs
A authentication_basic block as defined below.
Description string
The Service Endpoint description.
projectId
This property is required.
Changes to this property will trigger replacement.
String
The ID of the project.
serviceEndpointName This property is required. String
The Service Endpoint name.
url This property is required. String

URL of the Artifactory server to connect with.

Note: URL should not end in a slash character.

authenticationBasic ServiceEndpointArtifactoryAuthenticationBasic
authenticationToken ServiceEndpointArtifactoryAuthenticationToken
A authentication_basic block as defined below.
description String
The Service Endpoint description.
projectId
This property is required.
Changes to this property will trigger replacement.
string
The ID of the project.
serviceEndpointName This property is required. string
The Service Endpoint name.
url This property is required. string

URL of the Artifactory server to connect with.

Note: URL should not end in a slash character.

authenticationBasic ServiceEndpointArtifactoryAuthenticationBasic
authenticationToken ServiceEndpointArtifactoryAuthenticationToken
A authentication_basic block as defined below.
description string
The Service Endpoint description.
project_id
This property is required.
Changes to this property will trigger replacement.
str
The ID of the project.
service_endpoint_name This property is required. str
The Service Endpoint name.
url This property is required. str

URL of the Artifactory server to connect with.

Note: URL should not end in a slash character.

authentication_basic ServiceEndpointArtifactoryAuthenticationBasicArgs
authentication_token ServiceEndpointArtifactoryAuthenticationTokenArgs
A authentication_basic block as defined below.
description str
The Service Endpoint description.
projectId
This property is required.
Changes to this property will trigger replacement.
String
The ID of the project.
serviceEndpointName This property is required. String
The Service Endpoint name.
url This property is required. String

URL of the Artifactory server to connect with.

Note: URL should not end in a slash character.

authenticationBasic Property Map
authenticationToken Property Map
A authentication_basic block as defined below.
description String
The Service Endpoint description.

Outputs

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

Authorization Dictionary<string, string>
Id string
The provider-assigned unique ID for this managed resource.
Authorization map[string]string
Id string
The provider-assigned unique ID for this managed resource.
authorization Map<String,String>
id String
The provider-assigned unique ID for this managed resource.
authorization {[key: string]: string}
id string
The provider-assigned unique ID for this managed resource.
authorization Mapping[str, str]
id str
The provider-assigned unique ID for this managed resource.
authorization Map<String>
id String
The provider-assigned unique ID for this managed resource.

Look up Existing ServiceEndpointArtifactory Resource

Get an existing ServiceEndpointArtifactory 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?: ServiceEndpointArtifactoryState, opts?: CustomResourceOptions): ServiceEndpointArtifactory
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        authentication_basic: Optional[ServiceEndpointArtifactoryAuthenticationBasicArgs] = None,
        authentication_token: Optional[ServiceEndpointArtifactoryAuthenticationTokenArgs] = None,
        authorization: Optional[Mapping[str, str]] = None,
        description: Optional[str] = None,
        project_id: Optional[str] = None,
        service_endpoint_name: Optional[str] = None,
        url: Optional[str] = None) -> ServiceEndpointArtifactory
func GetServiceEndpointArtifactory(ctx *Context, name string, id IDInput, state *ServiceEndpointArtifactoryState, opts ...ResourceOption) (*ServiceEndpointArtifactory, error)
public static ServiceEndpointArtifactory Get(string name, Input<string> id, ServiceEndpointArtifactoryState? state, CustomResourceOptions? opts = null)
public static ServiceEndpointArtifactory get(String name, Output<String> id, ServiceEndpointArtifactoryState state, CustomResourceOptions options)
resources:  _:    type: azuredevops:ServiceEndpointArtifactory    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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:
AuthenticationBasic Pulumi.AzureDevOps.Inputs.ServiceEndpointArtifactoryAuthenticationBasic
AuthenticationToken Pulumi.AzureDevOps.Inputs.ServiceEndpointArtifactoryAuthenticationToken
A authentication_basic block as defined below.
Authorization Dictionary<string, string>
Description string
The Service Endpoint description.
ProjectId Changes to this property will trigger replacement. string
The ID of the project.
ServiceEndpointName string
The Service Endpoint name.
Url string

URL of the Artifactory server to connect with.

Note: URL should not end in a slash character.

AuthenticationBasic ServiceEndpointArtifactoryAuthenticationBasicArgs
AuthenticationToken ServiceEndpointArtifactoryAuthenticationTokenArgs
A authentication_basic block as defined below.
Authorization map[string]string
Description string
The Service Endpoint description.
ProjectId Changes to this property will trigger replacement. string
The ID of the project.
ServiceEndpointName string
The Service Endpoint name.
Url string

URL of the Artifactory server to connect with.

Note: URL should not end in a slash character.

authenticationBasic ServiceEndpointArtifactoryAuthenticationBasic
authenticationToken ServiceEndpointArtifactoryAuthenticationToken
A authentication_basic block as defined below.
authorization Map<String,String>
description String
The Service Endpoint description.
projectId Changes to this property will trigger replacement. String
The ID of the project.
serviceEndpointName String
The Service Endpoint name.
url String

URL of the Artifactory server to connect with.

Note: URL should not end in a slash character.

authenticationBasic ServiceEndpointArtifactoryAuthenticationBasic
authenticationToken ServiceEndpointArtifactoryAuthenticationToken
A authentication_basic block as defined below.
authorization {[key: string]: string}
description string
The Service Endpoint description.
projectId Changes to this property will trigger replacement. string
The ID of the project.
serviceEndpointName string
The Service Endpoint name.
url string

URL of the Artifactory server to connect with.

Note: URL should not end in a slash character.

authentication_basic ServiceEndpointArtifactoryAuthenticationBasicArgs
authentication_token ServiceEndpointArtifactoryAuthenticationTokenArgs
A authentication_basic block as defined below.
authorization Mapping[str, str]
description str
The Service Endpoint description.
project_id Changes to this property will trigger replacement. str
The ID of the project.
service_endpoint_name str
The Service Endpoint name.
url str

URL of the Artifactory server to connect with.

Note: URL should not end in a slash character.

authenticationBasic Property Map
authenticationToken Property Map
A authentication_basic block as defined below.
authorization Map<String>
description String
The Service Endpoint description.
projectId Changes to this property will trigger replacement. String
The ID of the project.
serviceEndpointName String
The Service Endpoint name.
url String

URL of the Artifactory server to connect with.

Note: URL should not end in a slash character.

Supporting Types

ServiceEndpointArtifactoryAuthenticationBasic
, ServiceEndpointArtifactoryAuthenticationBasicArgs

Password This property is required. string
The Password of the Artifactory.
Username This property is required. string
The Username of the Artifactory.
Password This property is required. string
The Password of the Artifactory.
Username This property is required. string
The Username of the Artifactory.
password This property is required. String
The Password of the Artifactory.
username This property is required. String
The Username of the Artifactory.
password This property is required. string
The Password of the Artifactory.
username This property is required. string
The Username of the Artifactory.
password This property is required. str
The Password of the Artifactory.
username This property is required. str
The Username of the Artifactory.
password This property is required. String
The Password of the Artifactory.
username This property is required. String
The Username of the Artifactory.

ServiceEndpointArtifactoryAuthenticationToken
, ServiceEndpointArtifactoryAuthenticationTokenArgs

Token This property is required. string
Authentication Token generated through Artifactory.
Token This property is required. string
Authentication Token generated through Artifactory.
token This property is required. String
Authentication Token generated through Artifactory.
token This property is required. string
Authentication Token generated through Artifactory.
token This property is required. str
Authentication Token generated through Artifactory.
token This property is required. String
Authentication Token generated through Artifactory.

Import

Azure DevOps JFrog Artifactory Service Endpoint can be imported using the projectID/serviceEndpointID, e.g.

$ pulumi import azuredevops:index/serviceEndpointArtifactory:ServiceEndpointArtifactory example 00000000-0000-0000-0000-000000000000/00000000-0000-0000-0000-000000000000
Copy

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
Azure DevOps pulumi/pulumi-azuredevops
License
Apache-2.0
Notes
This Pulumi package is based on the azuredevops Terraform Provider.