Manages a Generic Service Endpoint (v2) within Azure DevOps, which can be used to connect to various external services with custom authentication mechanisms.
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",
});
// Basic username/password authentication
const exampleServiceendpointGenericV2 = new azuredevops.ServiceendpointGenericV2("example", {
projectId: example.id,
name: "Example Generic Service Endpoint",
description: "Managed by Pulumi",
serviceEndpointType: "generic",
serverUrl: "https://example.com",
authorizationScheme: "UsernamePassword",
authorizationParameters: {
username: "username",
password: "password",
},
});
// Token-based authentication
const tokenExample = new azuredevops.ServiceendpointGenericV2("token_example", {
projectId: example.id,
name: "Token-based Service Endpoint",
description: "Managed by Pulumi",
serviceEndpointType: "generic",
serverUrl: "https://api.example.com",
authorizationScheme: "Token",
authorizationParameters: {
apitoken: "your-api-token",
},
parameters: {
releaseUrl: "https://releases.example.com",
},
});
import pulumi
import pulumi_azuredevops as azuredevops
example = azuredevops.Project("example",
name="Example Project",
visibility="private",
version_control="Git",
work_item_template="Agile")
# Basic username/password authentication
example_serviceendpoint_generic_v2 = azuredevops.ServiceendpointGenericV2("example",
project_id=example.id,
name="Example Generic Service Endpoint",
description="Managed by Pulumi",
service_endpoint_type="generic",
server_url="https://example.com",
authorization_scheme="UsernamePassword",
authorization_parameters={
"username": "username",
"password": "password",
})
# Token-based authentication
token_example = azuredevops.ServiceendpointGenericV2("token_example",
project_id=example.id,
name="Token-based Service Endpoint",
description="Managed by Pulumi",
service_endpoint_type="generic",
server_url="https://api.example.com",
authorization_scheme="Token",
authorization_parameters={
"apitoken": "your-api-token",
},
parameters={
"releaseUrl": "https://releases.example.com",
})
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"),
})
if err != nil {
return err
}
// Basic username/password authentication
_, err = azuredevops.NewServiceendpointGenericV2(ctx, "example", &azuredevops.ServiceendpointGenericV2Args{
ProjectId: example.ID(),
Name: pulumi.String("Example Generic Service Endpoint"),
Description: pulumi.String("Managed by Pulumi"),
ServiceEndpointType: "generic",
ServerUrl: pulumi.String("https://example.com"),
AuthorizationScheme: pulumi.String("UsernamePassword"),
AuthorizationParameters: pulumi.StringMap{
"username": pulumi.String("username"),
"password": pulumi.String("password"),
},
})
if err != nil {
return err
}
// Token-based authentication
_, err = azuredevops.NewServiceendpointGenericV2(ctx, "token_example", &azuredevops.ServiceendpointGenericV2Args{
ProjectId: example.ID(),
Name: pulumi.String("Token-based Service Endpoint"),
Description: pulumi.String("Managed by Pulumi"),
ServiceEndpointType: "generic",
ServerUrl: pulumi.String("https://api.example.com"),
AuthorizationScheme: pulumi.String("Token"),
AuthorizationParameters: pulumi.StringMap{
"apitoken": pulumi.String("your-api-token"),
},
Parameters: pulumi.StringMap{
"releaseUrl": pulumi.String("https://releases.example.com"),
},
})
if err != nil {
return err
}
return nil
})
}
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",
});
// Basic username/password authentication
var exampleServiceendpointGenericV2 = new AzureDevOps.ServiceendpointGenericV2("example", new()
{
ProjectId = example.Id,
Name = "Example Generic Service Endpoint",
Description = "Managed by Pulumi",
ServiceEndpointType = "generic",
ServerUrl = "https://example.com",
AuthorizationScheme = "UsernamePassword",
AuthorizationParameters =
{
{ "username", "username" },
{ "password", "password" },
},
});
// Token-based authentication
var tokenExample = new AzureDevOps.ServiceendpointGenericV2("token_example", new()
{
ProjectId = example.Id,
Name = "Token-based Service Endpoint",
Description = "Managed by Pulumi",
ServiceEndpointType = "generic",
ServerUrl = "https://api.example.com",
AuthorizationScheme = "Token",
AuthorizationParameters =
{
{ "apitoken", "your-api-token" },
},
Parameters =
{
{ "releaseUrl", "https://releases.example.com" },
},
});
});
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.ServiceendpointGenericV2;
import com.pulumi.azuredevops.ServiceendpointGenericV2Args;
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")
.build());
// Basic username/password authentication
var exampleServiceendpointGenericV2 = new ServiceendpointGenericV2("exampleServiceendpointGenericV2", ServiceendpointGenericV2Args.builder()
.projectId(example.id())
.name("Example Generic Service Endpoint")
.description("Managed by Pulumi")
.serviceEndpointType("generic")
.serverUrl("https://example.com")
.authorizationScheme("UsernamePassword")
.authorizationParameters(Map.ofEntries(
Map.entry("username", "username"),
Map.entry("password", "password")
))
.build());
// Token-based authentication
var tokenExample = new ServiceendpointGenericV2("tokenExample", ServiceendpointGenericV2Args.builder()
.projectId(example.id())
.name("Token-based Service Endpoint")
.description("Managed by Pulumi")
.serviceEndpointType("generic")
.serverUrl("https://api.example.com")
.authorizationScheme("Token")
.authorizationParameters(Map.of("apitoken", "your-api-token"))
.parameters(Map.of("releaseUrl", "https://releases.example.com"))
.build());
}
}
resources:
example:
type: azuredevops:Project
properties:
name: Example Project
visibility: private
versionControl: Git
workItemTemplate: Agile
# Basic username/password authentication
exampleServiceendpointGenericV2:
type: azuredevops:ServiceendpointGenericV2
name: example
properties:
projectId: ${example.id}
name: Example Generic Service Endpoint
description: Managed by Pulumi
serviceEndpointType: generic
serverUrl: https://example.com
authorizationScheme: UsernamePassword
authorizationParameters:
username: username
password: password
# Token-based authentication
tokenExample:
type: azuredevops:ServiceendpointGenericV2
name: token_example
properties:
projectId: ${example.id}
name: Token-based Service Endpoint
description: Managed by Pulumi
serviceEndpointType: generic
serverUrl: https://api.example.com
authorizationScheme: Token
authorizationParameters:
apitoken: your-api-token
parameters:
releaseUrl: https://releases.example.com
Create ServiceendpointGenericV2 Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ServiceendpointGenericV2(name: string, args: ServiceendpointGenericV2Args, opts?: CustomResourceOptions);@overload
def ServiceendpointGenericV2(resource_name: str,
args: ServiceendpointGenericV2Args,
opts: Optional[ResourceOptions] = None)
@overload
def ServiceendpointGenericV2(resource_name: str,
opts: Optional[ResourceOptions] = None,
authorization_scheme: Optional[str] = None,
project_id: Optional[str] = None,
server_url: Optional[str] = None,
type: Optional[str] = None,
authorization_parameters: Optional[Mapping[str, str]] = None,
description: Optional[str] = None,
name: Optional[str] = None,
parameters: Optional[Mapping[str, str]] = None,
shared_project_ids: Optional[Sequence[str]] = None)func NewServiceendpointGenericV2(ctx *Context, name string, args ServiceendpointGenericV2Args, opts ...ResourceOption) (*ServiceendpointGenericV2, error)public ServiceendpointGenericV2(string name, ServiceendpointGenericV2Args args, CustomResourceOptions? opts = null)
public ServiceendpointGenericV2(String name, ServiceendpointGenericV2Args args)
public ServiceendpointGenericV2(String name, ServiceendpointGenericV2Args args, CustomResourceOptions options)
type: azuredevops:ServiceendpointGenericV2
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args ServiceendpointGenericV2Args
- 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 ServiceendpointGenericV2Args
- 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 ServiceendpointGenericV2Args
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ServiceendpointGenericV2Args
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ServiceendpointGenericV2Args
- 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 serviceendpointGenericV2Resource = new AzureDevOps.ServiceendpointGenericV2("serviceendpointGenericV2Resource", new()
{
AuthorizationScheme = "string",
ProjectId = "string",
ServerUrl = "string",
Type = "string",
AuthorizationParameters =
{
{ "string", "string" },
},
Description = "string",
Name = "string",
Parameters =
{
{ "string", "string" },
},
SharedProjectIds = new[]
{
"string",
},
});
example, err := azuredevops.NewServiceendpointGenericV2(ctx, "serviceendpointGenericV2Resource", &azuredevops.ServiceendpointGenericV2Args{
AuthorizationScheme: pulumi.String("string"),
ProjectId: pulumi.String("string"),
ServerUrl: pulumi.String("string"),
Type: pulumi.String("string"),
AuthorizationParameters: pulumi.StringMap{
"string": pulumi.String("string"),
},
Description: pulumi.String("string"),
Name: pulumi.String("string"),
Parameters: pulumi.StringMap{
"string": pulumi.String("string"),
},
SharedProjectIds: pulumi.StringArray{
pulumi.String("string"),
},
})
var serviceendpointGenericV2Resource = new ServiceendpointGenericV2("serviceendpointGenericV2Resource", ServiceendpointGenericV2Args.builder()
.authorizationScheme("string")
.projectId("string")
.serverUrl("string")
.type("string")
.authorizationParameters(Map.of("string", "string"))
.description("string")
.name("string")
.parameters(Map.of("string", "string"))
.sharedProjectIds("string")
.build());
serviceendpoint_generic_v2_resource = azuredevops.ServiceendpointGenericV2("serviceendpointGenericV2Resource",
authorization_scheme="string",
project_id="string",
server_url="string",
type="string",
authorization_parameters={
"string": "string",
},
description="string",
name="string",
parameters={
"string": "string",
},
shared_project_ids=["string"])
const serviceendpointGenericV2Resource = new azuredevops.ServiceendpointGenericV2("serviceendpointGenericV2Resource", {
authorizationScheme: "string",
projectId: "string",
serverUrl: "string",
type: "string",
authorizationParameters: {
string: "string",
},
description: "string",
name: "string",
parameters: {
string: "string",
},
sharedProjectIds: ["string"],
});
type: azuredevops:ServiceendpointGenericV2
properties:
authorizationParameters:
string: string
authorizationScheme: string
description: string
name: string
parameters:
string: string
projectId: string
serverUrl: string
sharedProjectIds:
- string
type: string
ServiceendpointGenericV2 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 ServiceendpointGenericV2 resource accepts the following input properties:
- string
- The authorization scheme to use. Common values include "UsernamePassword", "Token", "OAuth", etc.
- Project
Id string - The ID of the project to which the service endpoint belongs.
- Server
Url string - The URL of the server associated with the service endpoint.
- Type string
- The type of the service endpoint. This can be any valid service endpoint type, such as "generic", "artifactory", etc.
- Dictionary<string, string>
- Map of key/value pairs for the specific authorization scheme. These often include sensitive data like tokens, usernames, and passwords.
- Description string
- The description of the service endpoint. Defaults to "Managed by Pulumi".
- Name string
- The name of the service endpoint.
- Parameters Dictionary<string, string>
- Additional data associated with the service endpoint. This is a map of key/value pairs.
- List<string>
- A list of project IDs where the service endpoint should be shared.
- string
- The authorization scheme to use. Common values include "UsernamePassword", "Token", "OAuth", etc.
- Project
Id string - The ID of the project to which the service endpoint belongs.
- Server
Url string - The URL of the server associated with the service endpoint.
- Type string
- The type of the service endpoint. This can be any valid service endpoint type, such as "generic", "artifactory", etc.
- map[string]string
- Map of key/value pairs for the specific authorization scheme. These often include sensitive data like tokens, usernames, and passwords.
- Description string
- The description of the service endpoint. Defaults to "Managed by Pulumi".
- Name string
- The name of the service endpoint.
- Parameters map[string]string
- Additional data associated with the service endpoint. This is a map of key/value pairs.
- []string
- A list of project IDs where the service endpoint should be shared.
- String
- The authorization scheme to use. Common values include "UsernamePassword", "Token", "OAuth", etc.
- project
Id String - The ID of the project to which the service endpoint belongs.
- server
Url String - The URL of the server associated with the service endpoint.
- type String
- The type of the service endpoint. This can be any valid service endpoint type, such as "generic", "artifactory", etc.
- Map<String,String>
- Map of key/value pairs for the specific authorization scheme. These often include sensitive data like tokens, usernames, and passwords.
- description String
- The description of the service endpoint. Defaults to "Managed by Pulumi".
- name String
- The name of the service endpoint.
- parameters Map<String,String>
- Additional data associated with the service endpoint. This is a map of key/value pairs.
- List<String>
- A list of project IDs where the service endpoint should be shared.
- string
- The authorization scheme to use. Common values include "UsernamePassword", "Token", "OAuth", etc.
- project
Id string - The ID of the project to which the service endpoint belongs.
- server
Url string - The URL of the server associated with the service endpoint.
- type string
- The type of the service endpoint. This can be any valid service endpoint type, such as "generic", "artifactory", etc.
- {[key: string]: string}
- Map of key/value pairs for the specific authorization scheme. These often include sensitive data like tokens, usernames, and passwords.
- description string
- The description of the service endpoint. Defaults to "Managed by Pulumi".
- name string
- The name of the service endpoint.
- parameters {[key: string]: string}
- Additional data associated with the service endpoint. This is a map of key/value pairs.
- string[]
- A list of project IDs where the service endpoint should be shared.
- str
- The authorization scheme to use. Common values include "UsernamePassword", "Token", "OAuth", etc.
- project_
id str - The ID of the project to which the service endpoint belongs.
- server_
url str - The URL of the server associated with the service endpoint.
- type str
- The type of the service endpoint. This can be any valid service endpoint type, such as "generic", "artifactory", etc.
- Mapping[str, str]
- Map of key/value pairs for the specific authorization scheme. These often include sensitive data like tokens, usernames, and passwords.
- description str
- The description of the service endpoint. Defaults to "Managed by Pulumi".
- name str
- The name of the service endpoint.
- parameters Mapping[str, str]
- Additional data associated with the service endpoint. This is a map of key/value pairs.
- Sequence[str]
- A list of project IDs where the service endpoint should be shared.
- String
- The authorization scheme to use. Common values include "UsernamePassword", "Token", "OAuth", etc.
- project
Id String - The ID of the project to which the service endpoint belongs.
- server
Url String - The URL of the server associated with the service endpoint.
- type String
- The type of the service endpoint. This can be any valid service endpoint type, such as "generic", "artifactory", etc.
- Map<String>
- Map of key/value pairs for the specific authorization scheme. These often include sensitive data like tokens, usernames, and passwords.
- description String
- The description of the service endpoint. Defaults to "Managed by Pulumi".
- name String
- The name of the service endpoint.
- parameters Map<String>
- Additional data associated with the service endpoint. This is a map of key/value pairs.
- List<String>
- A list of project IDs where the service endpoint should be shared.
Outputs
All input properties are implicitly available as output properties. Additionally, the ServiceendpointGenericV2 resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing ServiceendpointGenericV2 Resource
Get an existing ServiceendpointGenericV2 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?: ServiceendpointGenericV2State, opts?: CustomResourceOptions): ServiceendpointGenericV2@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
authorization_parameters: Optional[Mapping[str, str]] = None,
authorization_scheme: Optional[str] = None,
description: Optional[str] = None,
name: Optional[str] = None,
parameters: Optional[Mapping[str, str]] = None,
project_id: Optional[str] = None,
server_url: Optional[str] = None,
shared_project_ids: Optional[Sequence[str]] = None,
type: Optional[str] = None) -> ServiceendpointGenericV2func GetServiceendpointGenericV2(ctx *Context, name string, id IDInput, state *ServiceendpointGenericV2State, opts ...ResourceOption) (*ServiceendpointGenericV2, error)public static ServiceendpointGenericV2 Get(string name, Input<string> id, ServiceendpointGenericV2State? state, CustomResourceOptions? opts = null)public static ServiceendpointGenericV2 get(String name, Output<String> id, ServiceendpointGenericV2State state, CustomResourceOptions options)resources: _: type: azuredevops:ServiceendpointGenericV2 get: 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.
- Dictionary<string, string>
- Map of key/value pairs for the specific authorization scheme. These often include sensitive data like tokens, usernames, and passwords.
- string
- The authorization scheme to use. Common values include "UsernamePassword", "Token", "OAuth", etc.
- Description string
- The description of the service endpoint. Defaults to "Managed by Pulumi".
- Name string
- The name of the service endpoint.
- Parameters Dictionary<string, string>
- Additional data associated with the service endpoint. This is a map of key/value pairs.
- Project
Id string - The ID of the project to which the service endpoint belongs.
- Server
Url string - The URL of the server associated with the service endpoint.
- List<string>
- A list of project IDs where the service endpoint should be shared.
- Type string
- The type of the service endpoint. This can be any valid service endpoint type, such as "generic", "artifactory", etc.
- map[string]string
- Map of key/value pairs for the specific authorization scheme. These often include sensitive data like tokens, usernames, and passwords.
- string
- The authorization scheme to use. Common values include "UsernamePassword", "Token", "OAuth", etc.
- Description string
- The description of the service endpoint. Defaults to "Managed by Pulumi".
- Name string
- The name of the service endpoint.
- Parameters map[string]string
- Additional data associated with the service endpoint. This is a map of key/value pairs.
- Project
Id string - The ID of the project to which the service endpoint belongs.
- Server
Url string - The URL of the server associated with the service endpoint.
- []string
- A list of project IDs where the service endpoint should be shared.
- Type string
- The type of the service endpoint. This can be any valid service endpoint type, such as "generic", "artifactory", etc.
- Map<String,String>
- Map of key/value pairs for the specific authorization scheme. These often include sensitive data like tokens, usernames, and passwords.
- String
- The authorization scheme to use. Common values include "UsernamePassword", "Token", "OAuth", etc.
- description String
- The description of the service endpoint. Defaults to "Managed by Pulumi".
- name String
- The name of the service endpoint.
- parameters Map<String,String>
- Additional data associated with the service endpoint. This is a map of key/value pairs.
- project
Id String - The ID of the project to which the service endpoint belongs.
- server
Url String - The URL of the server associated with the service endpoint.
- List<String>
- A list of project IDs where the service endpoint should be shared.
- type String
- The type of the service endpoint. This can be any valid service endpoint type, such as "generic", "artifactory", etc.
- {[key: string]: string}
- Map of key/value pairs for the specific authorization scheme. These often include sensitive data like tokens, usernames, and passwords.
- string
- The authorization scheme to use. Common values include "UsernamePassword", "Token", "OAuth", etc.
- description string
- The description of the service endpoint. Defaults to "Managed by Pulumi".
- name string
- The name of the service endpoint.
- parameters {[key: string]: string}
- Additional data associated with the service endpoint. This is a map of key/value pairs.
- project
Id string - The ID of the project to which the service endpoint belongs.
- server
Url string - The URL of the server associated with the service endpoint.
- string[]
- A list of project IDs where the service endpoint should be shared.
- type string
- The type of the service endpoint. This can be any valid service endpoint type, such as "generic", "artifactory", etc.
- Mapping[str, str]
- Map of key/value pairs for the specific authorization scheme. These often include sensitive data like tokens, usernames, and passwords.
- str
- The authorization scheme to use. Common values include "UsernamePassword", "Token", "OAuth", etc.
- description str
- The description of the service endpoint. Defaults to "Managed by Pulumi".
- name str
- The name of the service endpoint.
- parameters Mapping[str, str]
- Additional data associated with the service endpoint. This is a map of key/value pairs.
- project_
id str - The ID of the project to which the service endpoint belongs.
- server_
url str - The URL of the server associated with the service endpoint.
- Sequence[str]
- A list of project IDs where the service endpoint should be shared.
- type str
- The type of the service endpoint. This can be any valid service endpoint type, such as "generic", "artifactory", etc.
- Map<String>
- Map of key/value pairs for the specific authorization scheme. These often include sensitive data like tokens, usernames, and passwords.
- String
- The authorization scheme to use. Common values include "UsernamePassword", "Token", "OAuth", etc.
- description String
- The description of the service endpoint. Defaults to "Managed by Pulumi".
- name String
- The name of the service endpoint.
- parameters Map<String>
- Additional data associated with the service endpoint. This is a map of key/value pairs.
- project
Id String - The ID of the project to which the service endpoint belongs.
- server
Url String - The URL of the server associated with the service endpoint.
- List<String>
- A list of project IDs where the service endpoint should be shared.
- type String
- The type of the service endpoint. This can be any valid service endpoint type, such as "generic", "artifactory", etc.
Import
Service endpoints can be imported using the project ID and service endpoint ID:
$ pulumi import azuredevops:index/serviceendpointGenericV2:ServiceendpointGenericV2 example <project_id>/<id>
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
azuredevopsTerraform Provider.
