@pulumi/azuredevops 2.7.0 → 2.8.0-alpha.1683661270
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/agent/getPools.d.ts +4 -4
- package/agent/getPools.js +4 -4
- package/core/getProjects.d.ts +9 -9
- package/core/getProjects.js +8 -8
- package/getPools.d.ts +4 -4
- package/getPools.js +4 -4
- package/getProjects.d.ts +9 -9
- package/getProjects.js +8 -8
- package/getTeam.d.ts +4 -0
- package/getTeam.js.map +1 -1
- package/getTeams.d.ts +8 -8
- package/getTeams.js +8 -8
- package/index.d.ts +12 -0
- package/index.js +22 -2
- package/index.js.map +1 -1
- package/package.json +2 -2
- package/package.json.dev +2 -2
- package/pipeline/variableGroup.d.ts +3 -3
- package/serviceEndpointArtifactory.d.ts +1 -1
- package/serviceEndpointArtifactory.js +1 -1
- package/serviceendpointJfrogArtifactoryV2.d.ts +182 -0
- package/serviceendpointJfrogArtifactoryV2.js +133 -0
- package/serviceendpointJfrogArtifactoryV2.js.map +1 -0
- package/serviceendpointJfrogDistributionV2.d.ts +182 -0
- package/serviceendpointJfrogDistributionV2.js +133 -0
- package/serviceendpointJfrogDistributionV2.js.map +1 -0
- package/serviceendpointJfrogPlatformV2.d.ts +182 -0
- package/serviceendpointJfrogPlatformV2.js +133 -0
- package/serviceendpointJfrogPlatformV2.js.map +1 -0
- package/serviceendpointJfrogXrayV2.d.ts +182 -0
- package/serviceendpointJfrogXrayV2.js +133 -0
- package/serviceendpointJfrogXrayV2.js.map +1 -0
- package/types/input.d.ts +64 -6
- package/types/output.d.ts +66 -8
- package/variableGroup.d.ts +3 -3
|
@@ -0,0 +1,182 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as inputs from "./types/input";
|
|
3
|
+
import * as outputs from "./types/output";
|
|
4
|
+
/**
|
|
5
|
+
* Manages a JFrog Artifactory V2 server endpoint within an Azure DevOps organization.
|
|
6
|
+
*
|
|
7
|
+
* > **Note:** Using this service endpoint requires you to first install [JFrog Extension](https://marketplace.visualstudio.com/items?itemName=JFrog.jfrog-azure-devops-extension).
|
|
8
|
+
*
|
|
9
|
+
* ## Example Usage
|
|
10
|
+
*
|
|
11
|
+
* ```typescript
|
|
12
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
13
|
+
* import * as azuredevops from "@pulumi/azuredevops";
|
|
14
|
+
*
|
|
15
|
+
* const exampleProject = new azuredevops.Project("exampleProject", {
|
|
16
|
+
* visibility: "private",
|
|
17
|
+
* versionControl: "Git",
|
|
18
|
+
* workItemTemplate: "Agile",
|
|
19
|
+
* description: "Managed by Terraform",
|
|
20
|
+
* });
|
|
21
|
+
* const exampleServiceendpointJfrogArtifactoryV2 = new azuredevops.ServiceendpointJfrogArtifactoryV2("exampleServiceendpointJfrogArtifactoryV2", {
|
|
22
|
+
* projectId: exampleProject.id,
|
|
23
|
+
* serviceEndpointName: "Example JFrog Artifactory V2",
|
|
24
|
+
* description: "Managed by Terraform",
|
|
25
|
+
* url: "https://artifactory.my.com",
|
|
26
|
+
* authenticationToken: {
|
|
27
|
+
* token: "0000000000000000000000000000000000000000",
|
|
28
|
+
* },
|
|
29
|
+
* });
|
|
30
|
+
* ```
|
|
31
|
+
* Alternatively a username and password may be used.
|
|
32
|
+
*
|
|
33
|
+
* ```typescript
|
|
34
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
35
|
+
* import * as azuredevops from "@pulumi/azuredevops";
|
|
36
|
+
*
|
|
37
|
+
* const exampleProject = new azuredevops.Project("exampleProject", {
|
|
38
|
+
* visibility: "private",
|
|
39
|
+
* versionControl: "Git",
|
|
40
|
+
* workItemTemplate: "Agile",
|
|
41
|
+
* description: "Managed by Terraform",
|
|
42
|
+
* });
|
|
43
|
+
* const exampleServiceendpointJfrogArtifactoryV2 = new azuredevops.ServiceendpointJfrogArtifactoryV2("exampleServiceendpointJfrogArtifactoryV2", {
|
|
44
|
+
* projectId: exampleProject.id,
|
|
45
|
+
* serviceEndpointName: "Example JFrog Artifactory V2",
|
|
46
|
+
* description: "Managed by Terraform",
|
|
47
|
+
* url: "https://artifactory.my.com",
|
|
48
|
+
* authenticationBasic: {
|
|
49
|
+
* username: "username",
|
|
50
|
+
* password: "password",
|
|
51
|
+
* },
|
|
52
|
+
* });
|
|
53
|
+
* ```
|
|
54
|
+
* ## Relevant Links
|
|
55
|
+
*
|
|
56
|
+
* * [Azure DevOps Service Connections](https://docs.microsoft.com/en-us/azure/devops/pipelines/library/service-endpoints?view=azure-devops&tabs=yaml)
|
|
57
|
+
* * [Artifactory User Token](https://docs.artifactory.org/latest/user-guide/user-token/)
|
|
58
|
+
*
|
|
59
|
+
* ## Import
|
|
60
|
+
*
|
|
61
|
+
* Azure DevOps Service Endpoint JFrog Artifactory V2 can be imported using the **projectID/serviceEndpointID**, e.g.
|
|
62
|
+
*
|
|
63
|
+
* ```sh
|
|
64
|
+
* $ pulumi import azuredevops:index/serviceendpointJfrogArtifactoryV2:ServiceendpointJfrogArtifactoryV2 example 00000000-0000-0000-0000-000000000000/00000000-0000-0000-0000-000000000000
|
|
65
|
+
* ```
|
|
66
|
+
*/
|
|
67
|
+
export declare class ServiceendpointJfrogArtifactoryV2 extends pulumi.CustomResource {
|
|
68
|
+
/**
|
|
69
|
+
* Get an existing ServiceendpointJfrogArtifactoryV2 resource's state with the given name, ID, and optional extra
|
|
70
|
+
* properties used to qualify the lookup.
|
|
71
|
+
*
|
|
72
|
+
* @param name The _unique_ name of the resulting resource.
|
|
73
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
74
|
+
* @param state Any extra arguments used during the lookup.
|
|
75
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
76
|
+
*/
|
|
77
|
+
static get(name: string, id: pulumi.Input<pulumi.ID>, state?: ServiceendpointJfrogArtifactoryV2State, opts?: pulumi.CustomResourceOptions): ServiceendpointJfrogArtifactoryV2;
|
|
78
|
+
/**
|
|
79
|
+
* Returns true if the given object is an instance of ServiceendpointJfrogArtifactoryV2. This is designed to work even
|
|
80
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
81
|
+
*/
|
|
82
|
+
static isInstance(obj: any): obj is ServiceendpointJfrogArtifactoryV2;
|
|
83
|
+
/**
|
|
84
|
+
* A `authenticationBasic` block as documented below.
|
|
85
|
+
*/
|
|
86
|
+
readonly authenticationBasic: pulumi.Output<outputs.ServiceendpointJfrogArtifactoryV2AuthenticationBasic | undefined>;
|
|
87
|
+
/**
|
|
88
|
+
* A `authenticationToken` block as documented below.
|
|
89
|
+
*/
|
|
90
|
+
readonly authenticationToken: pulumi.Output<outputs.ServiceendpointJfrogArtifactoryV2AuthenticationToken | undefined>;
|
|
91
|
+
readonly authorization: pulumi.Output<{
|
|
92
|
+
[key: string]: string;
|
|
93
|
+
}>;
|
|
94
|
+
/**
|
|
95
|
+
* The Service Endpoint description.
|
|
96
|
+
*/
|
|
97
|
+
readonly description: pulumi.Output<string | undefined>;
|
|
98
|
+
/**
|
|
99
|
+
* The ID of the project.
|
|
100
|
+
*/
|
|
101
|
+
readonly projectId: pulumi.Output<string>;
|
|
102
|
+
/**
|
|
103
|
+
* The Service Endpoint name.
|
|
104
|
+
*/
|
|
105
|
+
readonly serviceEndpointName: pulumi.Output<string>;
|
|
106
|
+
/**
|
|
107
|
+
* URL of the Artifactory server to connect with.
|
|
108
|
+
*/
|
|
109
|
+
readonly url: pulumi.Output<string>;
|
|
110
|
+
/**
|
|
111
|
+
* Create a ServiceendpointJfrogArtifactoryV2 resource with the given unique name, arguments, and options.
|
|
112
|
+
*
|
|
113
|
+
* @param name The _unique_ name of the resource.
|
|
114
|
+
* @param args The arguments to use to populate this resource's properties.
|
|
115
|
+
* @param opts A bag of options that control this resource's behavior.
|
|
116
|
+
*/
|
|
117
|
+
constructor(name: string, args: ServiceendpointJfrogArtifactoryV2Args, opts?: pulumi.CustomResourceOptions);
|
|
118
|
+
}
|
|
119
|
+
/**
|
|
120
|
+
* Input properties used for looking up and filtering ServiceendpointJfrogArtifactoryV2 resources.
|
|
121
|
+
*/
|
|
122
|
+
export interface ServiceendpointJfrogArtifactoryV2State {
|
|
123
|
+
/**
|
|
124
|
+
* A `authenticationBasic` block as documented below.
|
|
125
|
+
*/
|
|
126
|
+
authenticationBasic?: pulumi.Input<inputs.ServiceendpointJfrogArtifactoryV2AuthenticationBasic>;
|
|
127
|
+
/**
|
|
128
|
+
* A `authenticationToken` block as documented below.
|
|
129
|
+
*/
|
|
130
|
+
authenticationToken?: pulumi.Input<inputs.ServiceendpointJfrogArtifactoryV2AuthenticationToken>;
|
|
131
|
+
authorization?: pulumi.Input<{
|
|
132
|
+
[key: string]: pulumi.Input<string>;
|
|
133
|
+
}>;
|
|
134
|
+
/**
|
|
135
|
+
* The Service Endpoint description.
|
|
136
|
+
*/
|
|
137
|
+
description?: pulumi.Input<string>;
|
|
138
|
+
/**
|
|
139
|
+
* The ID of the project.
|
|
140
|
+
*/
|
|
141
|
+
projectId?: pulumi.Input<string>;
|
|
142
|
+
/**
|
|
143
|
+
* The Service Endpoint name.
|
|
144
|
+
*/
|
|
145
|
+
serviceEndpointName?: pulumi.Input<string>;
|
|
146
|
+
/**
|
|
147
|
+
* URL of the Artifactory server to connect with.
|
|
148
|
+
*/
|
|
149
|
+
url?: pulumi.Input<string>;
|
|
150
|
+
}
|
|
151
|
+
/**
|
|
152
|
+
* The set of arguments for constructing a ServiceendpointJfrogArtifactoryV2 resource.
|
|
153
|
+
*/
|
|
154
|
+
export interface ServiceendpointJfrogArtifactoryV2Args {
|
|
155
|
+
/**
|
|
156
|
+
* A `authenticationBasic` block as documented below.
|
|
157
|
+
*/
|
|
158
|
+
authenticationBasic?: pulumi.Input<inputs.ServiceendpointJfrogArtifactoryV2AuthenticationBasic>;
|
|
159
|
+
/**
|
|
160
|
+
* A `authenticationToken` block as documented below.
|
|
161
|
+
*/
|
|
162
|
+
authenticationToken?: pulumi.Input<inputs.ServiceendpointJfrogArtifactoryV2AuthenticationToken>;
|
|
163
|
+
authorization?: pulumi.Input<{
|
|
164
|
+
[key: string]: pulumi.Input<string>;
|
|
165
|
+
}>;
|
|
166
|
+
/**
|
|
167
|
+
* The Service Endpoint description.
|
|
168
|
+
*/
|
|
169
|
+
description?: pulumi.Input<string>;
|
|
170
|
+
/**
|
|
171
|
+
* The ID of the project.
|
|
172
|
+
*/
|
|
173
|
+
projectId: pulumi.Input<string>;
|
|
174
|
+
/**
|
|
175
|
+
* The Service Endpoint name.
|
|
176
|
+
*/
|
|
177
|
+
serviceEndpointName: pulumi.Input<string>;
|
|
178
|
+
/**
|
|
179
|
+
* URL of the Artifactory server to connect with.
|
|
180
|
+
*/
|
|
181
|
+
url: pulumi.Input<string>;
|
|
182
|
+
}
|
|
@@ -0,0 +1,133 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
|
+
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
+
exports.ServiceendpointJfrogArtifactoryV2 = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Manages a JFrog Artifactory V2 server endpoint within an Azure DevOps organization.
|
|
10
|
+
*
|
|
11
|
+
* > **Note:** Using this service endpoint requires you to first install [JFrog Extension](https://marketplace.visualstudio.com/items?itemName=JFrog.jfrog-azure-devops-extension).
|
|
12
|
+
*
|
|
13
|
+
* ## Example Usage
|
|
14
|
+
*
|
|
15
|
+
* ```typescript
|
|
16
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
17
|
+
* import * as azuredevops from "@pulumi/azuredevops";
|
|
18
|
+
*
|
|
19
|
+
* const exampleProject = new azuredevops.Project("exampleProject", {
|
|
20
|
+
* visibility: "private",
|
|
21
|
+
* versionControl: "Git",
|
|
22
|
+
* workItemTemplate: "Agile",
|
|
23
|
+
* description: "Managed by Terraform",
|
|
24
|
+
* });
|
|
25
|
+
* const exampleServiceendpointJfrogArtifactoryV2 = new azuredevops.ServiceendpointJfrogArtifactoryV2("exampleServiceendpointJfrogArtifactoryV2", {
|
|
26
|
+
* projectId: exampleProject.id,
|
|
27
|
+
* serviceEndpointName: "Example JFrog Artifactory V2",
|
|
28
|
+
* description: "Managed by Terraform",
|
|
29
|
+
* url: "https://artifactory.my.com",
|
|
30
|
+
* authenticationToken: {
|
|
31
|
+
* token: "0000000000000000000000000000000000000000",
|
|
32
|
+
* },
|
|
33
|
+
* });
|
|
34
|
+
* ```
|
|
35
|
+
* Alternatively a username and password may be used.
|
|
36
|
+
*
|
|
37
|
+
* ```typescript
|
|
38
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
39
|
+
* import * as azuredevops from "@pulumi/azuredevops";
|
|
40
|
+
*
|
|
41
|
+
* const exampleProject = new azuredevops.Project("exampleProject", {
|
|
42
|
+
* visibility: "private",
|
|
43
|
+
* versionControl: "Git",
|
|
44
|
+
* workItemTemplate: "Agile",
|
|
45
|
+
* description: "Managed by Terraform",
|
|
46
|
+
* });
|
|
47
|
+
* const exampleServiceendpointJfrogArtifactoryV2 = new azuredevops.ServiceendpointJfrogArtifactoryV2("exampleServiceendpointJfrogArtifactoryV2", {
|
|
48
|
+
* projectId: exampleProject.id,
|
|
49
|
+
* serviceEndpointName: "Example JFrog Artifactory V2",
|
|
50
|
+
* description: "Managed by Terraform",
|
|
51
|
+
* url: "https://artifactory.my.com",
|
|
52
|
+
* authenticationBasic: {
|
|
53
|
+
* username: "username",
|
|
54
|
+
* password: "password",
|
|
55
|
+
* },
|
|
56
|
+
* });
|
|
57
|
+
* ```
|
|
58
|
+
* ## Relevant Links
|
|
59
|
+
*
|
|
60
|
+
* * [Azure DevOps Service Connections](https://docs.microsoft.com/en-us/azure/devops/pipelines/library/service-endpoints?view=azure-devops&tabs=yaml)
|
|
61
|
+
* * [Artifactory User Token](https://docs.artifactory.org/latest/user-guide/user-token/)
|
|
62
|
+
*
|
|
63
|
+
* ## Import
|
|
64
|
+
*
|
|
65
|
+
* Azure DevOps Service Endpoint JFrog Artifactory V2 can be imported using the **projectID/serviceEndpointID**, e.g.
|
|
66
|
+
*
|
|
67
|
+
* ```sh
|
|
68
|
+
* $ pulumi import azuredevops:index/serviceendpointJfrogArtifactoryV2:ServiceendpointJfrogArtifactoryV2 example 00000000-0000-0000-0000-000000000000/00000000-0000-0000-0000-000000000000
|
|
69
|
+
* ```
|
|
70
|
+
*/
|
|
71
|
+
class ServiceendpointJfrogArtifactoryV2 extends pulumi.CustomResource {
|
|
72
|
+
/**
|
|
73
|
+
* Get an existing ServiceendpointJfrogArtifactoryV2 resource's state with the given name, ID, and optional extra
|
|
74
|
+
* properties used to qualify the lookup.
|
|
75
|
+
*
|
|
76
|
+
* @param name The _unique_ name of the resulting resource.
|
|
77
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
78
|
+
* @param state Any extra arguments used during the lookup.
|
|
79
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
80
|
+
*/
|
|
81
|
+
static get(name, id, state, opts) {
|
|
82
|
+
return new ServiceendpointJfrogArtifactoryV2(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
83
|
+
}
|
|
84
|
+
/**
|
|
85
|
+
* Returns true if the given object is an instance of ServiceendpointJfrogArtifactoryV2. This is designed to work even
|
|
86
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
87
|
+
*/
|
|
88
|
+
static isInstance(obj) {
|
|
89
|
+
if (obj === undefined || obj === null) {
|
|
90
|
+
return false;
|
|
91
|
+
}
|
|
92
|
+
return obj['__pulumiType'] === ServiceendpointJfrogArtifactoryV2.__pulumiType;
|
|
93
|
+
}
|
|
94
|
+
constructor(name, argsOrState, opts) {
|
|
95
|
+
let resourceInputs = {};
|
|
96
|
+
opts = opts || {};
|
|
97
|
+
if (opts.id) {
|
|
98
|
+
const state = argsOrState;
|
|
99
|
+
resourceInputs["authenticationBasic"] = state ? state.authenticationBasic : undefined;
|
|
100
|
+
resourceInputs["authenticationToken"] = state ? state.authenticationToken : undefined;
|
|
101
|
+
resourceInputs["authorization"] = state ? state.authorization : undefined;
|
|
102
|
+
resourceInputs["description"] = state ? state.description : undefined;
|
|
103
|
+
resourceInputs["projectId"] = state ? state.projectId : undefined;
|
|
104
|
+
resourceInputs["serviceEndpointName"] = state ? state.serviceEndpointName : undefined;
|
|
105
|
+
resourceInputs["url"] = state ? state.url : undefined;
|
|
106
|
+
}
|
|
107
|
+
else {
|
|
108
|
+
const args = argsOrState;
|
|
109
|
+
if ((!args || args.projectId === undefined) && !opts.urn) {
|
|
110
|
+
throw new Error("Missing required property 'projectId'");
|
|
111
|
+
}
|
|
112
|
+
if ((!args || args.serviceEndpointName === undefined) && !opts.urn) {
|
|
113
|
+
throw new Error("Missing required property 'serviceEndpointName'");
|
|
114
|
+
}
|
|
115
|
+
if ((!args || args.url === undefined) && !opts.urn) {
|
|
116
|
+
throw new Error("Missing required property 'url'");
|
|
117
|
+
}
|
|
118
|
+
resourceInputs["authenticationBasic"] = args ? args.authenticationBasic : undefined;
|
|
119
|
+
resourceInputs["authenticationToken"] = args ? args.authenticationToken : undefined;
|
|
120
|
+
resourceInputs["authorization"] = args ? args.authorization : undefined;
|
|
121
|
+
resourceInputs["description"] = args ? args.description : undefined;
|
|
122
|
+
resourceInputs["projectId"] = args ? args.projectId : undefined;
|
|
123
|
+
resourceInputs["serviceEndpointName"] = args ? args.serviceEndpointName : undefined;
|
|
124
|
+
resourceInputs["url"] = args ? args.url : undefined;
|
|
125
|
+
}
|
|
126
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
127
|
+
super(ServiceendpointJfrogArtifactoryV2.__pulumiType, name, resourceInputs, opts);
|
|
128
|
+
}
|
|
129
|
+
}
|
|
130
|
+
exports.ServiceendpointJfrogArtifactoryV2 = ServiceendpointJfrogArtifactoryV2;
|
|
131
|
+
/** @internal */
|
|
132
|
+
ServiceendpointJfrogArtifactoryV2.__pulumiType = 'azuredevops:index/serviceendpointJfrogArtifactoryV2:ServiceendpointJfrogArtifactoryV2';
|
|
133
|
+
//# sourceMappingURL=serviceendpointJfrogArtifactoryV2.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"serviceendpointJfrogArtifactoryV2.js","sourceRoot":"","sources":["../serviceendpointJfrogArtifactoryV2.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,182 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as inputs from "./types/input";
|
|
3
|
+
import * as outputs from "./types/output";
|
|
4
|
+
/**
|
|
5
|
+
* Manages a JFrog Distribution V2 server endpoint within an Azure DevOps organization.
|
|
6
|
+
*
|
|
7
|
+
* > **Note:** Using this service endpoint requires you to first install [JFrog Extension](https://marketplace.visualstudio.com/items?itemName=JFrog.jfrog-azure-devops-extension).
|
|
8
|
+
*
|
|
9
|
+
* ## Example Usage
|
|
10
|
+
*
|
|
11
|
+
* ```typescript
|
|
12
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
13
|
+
* import * as azuredevops from "@pulumi/azuredevops";
|
|
14
|
+
*
|
|
15
|
+
* const exampleProject = new azuredevops.Project("exampleProject", {
|
|
16
|
+
* visibility: "private",
|
|
17
|
+
* versionControl: "Git",
|
|
18
|
+
* workItemTemplate: "Agile",
|
|
19
|
+
* description: "Managed by Terraform",
|
|
20
|
+
* });
|
|
21
|
+
* const exampleServiceendpointJfrogDistributionV2 = new azuredevops.ServiceendpointJfrogDistributionV2("exampleServiceendpointJfrogDistributionV2", {
|
|
22
|
+
* projectId: exampleProject.id,
|
|
23
|
+
* serviceEndpointName: "Example JFrog Distribution V2",
|
|
24
|
+
* description: "Managed by Terraform",
|
|
25
|
+
* url: "https://artifactory.my.com",
|
|
26
|
+
* authenticationToken: {
|
|
27
|
+
* token: "0000000000000000000000000000000000000000",
|
|
28
|
+
* },
|
|
29
|
+
* });
|
|
30
|
+
* ```
|
|
31
|
+
* Alternatively a username and password may be used.
|
|
32
|
+
*
|
|
33
|
+
* ```typescript
|
|
34
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
35
|
+
* import * as azuredevops from "@pulumi/azuredevops";
|
|
36
|
+
*
|
|
37
|
+
* const exampleProject = new azuredevops.Project("exampleProject", {
|
|
38
|
+
* visibility: "private",
|
|
39
|
+
* versionControl: "Git",
|
|
40
|
+
* workItemTemplate: "Agile",
|
|
41
|
+
* description: "Managed by Terraform",
|
|
42
|
+
* });
|
|
43
|
+
* const exampleServiceendpointJfrogDistributionV2 = new azuredevops.ServiceendpointJfrogDistributionV2("exampleServiceendpointJfrogDistributionV2", {
|
|
44
|
+
* projectId: exampleProject.id,
|
|
45
|
+
* serviceEndpointName: "Example JFrog Distribution V2",
|
|
46
|
+
* description: "Managed by Terraform",
|
|
47
|
+
* url: "https://artifactory.my.com",
|
|
48
|
+
* authenticationBasic: {
|
|
49
|
+
* username: "username",
|
|
50
|
+
* password: "password",
|
|
51
|
+
* },
|
|
52
|
+
* });
|
|
53
|
+
* ```
|
|
54
|
+
* ## Relevant Links
|
|
55
|
+
*
|
|
56
|
+
* * [Azure DevOps Service Connections](https://docs.microsoft.com/en-us/azure/devops/pipelines/library/service-endpoints?view=azure-devops&tabs=yaml)
|
|
57
|
+
* * [Artifactory User Token](https://docs.artifactory.org/latest/user-guide/user-token/)
|
|
58
|
+
*
|
|
59
|
+
* ## Import
|
|
60
|
+
*
|
|
61
|
+
* Azure DevOps Service Endpoint JFrog Distribution V2 can be imported using the **projectID/serviceEndpointID**, e.g.
|
|
62
|
+
*
|
|
63
|
+
* ```sh
|
|
64
|
+
* $ pulumi import azuredevops:index/serviceendpointJfrogDistributionV2:ServiceendpointJfrogDistributionV2 example 00000000-0000-0000-0000-000000000000/00000000-0000-0000-0000-000000000000
|
|
65
|
+
* ```
|
|
66
|
+
*/
|
|
67
|
+
export declare class ServiceendpointJfrogDistributionV2 extends pulumi.CustomResource {
|
|
68
|
+
/**
|
|
69
|
+
* Get an existing ServiceendpointJfrogDistributionV2 resource's state with the given name, ID, and optional extra
|
|
70
|
+
* properties used to qualify the lookup.
|
|
71
|
+
*
|
|
72
|
+
* @param name The _unique_ name of the resulting resource.
|
|
73
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
74
|
+
* @param state Any extra arguments used during the lookup.
|
|
75
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
76
|
+
*/
|
|
77
|
+
static get(name: string, id: pulumi.Input<pulumi.ID>, state?: ServiceendpointJfrogDistributionV2State, opts?: pulumi.CustomResourceOptions): ServiceendpointJfrogDistributionV2;
|
|
78
|
+
/**
|
|
79
|
+
* Returns true if the given object is an instance of ServiceendpointJfrogDistributionV2. This is designed to work even
|
|
80
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
81
|
+
*/
|
|
82
|
+
static isInstance(obj: any): obj is ServiceendpointJfrogDistributionV2;
|
|
83
|
+
/**
|
|
84
|
+
* A `authenticationBasic` block as documented below.
|
|
85
|
+
*/
|
|
86
|
+
readonly authenticationBasic: pulumi.Output<outputs.ServiceendpointJfrogDistributionV2AuthenticationBasic | undefined>;
|
|
87
|
+
/**
|
|
88
|
+
* A `authenticationToken` block as documented below.
|
|
89
|
+
*/
|
|
90
|
+
readonly authenticationToken: pulumi.Output<outputs.ServiceendpointJfrogDistributionV2AuthenticationToken | undefined>;
|
|
91
|
+
readonly authorization: pulumi.Output<{
|
|
92
|
+
[key: string]: string;
|
|
93
|
+
}>;
|
|
94
|
+
/**
|
|
95
|
+
* The Service Endpoint description.
|
|
96
|
+
*/
|
|
97
|
+
readonly description: pulumi.Output<string | undefined>;
|
|
98
|
+
/**
|
|
99
|
+
* The ID of the project.
|
|
100
|
+
*/
|
|
101
|
+
readonly projectId: pulumi.Output<string>;
|
|
102
|
+
/**
|
|
103
|
+
* The Service Endpoint name.
|
|
104
|
+
*/
|
|
105
|
+
readonly serviceEndpointName: pulumi.Output<string>;
|
|
106
|
+
/**
|
|
107
|
+
* URL of the Artifactory server to connect with.
|
|
108
|
+
*/
|
|
109
|
+
readonly url: pulumi.Output<string>;
|
|
110
|
+
/**
|
|
111
|
+
* Create a ServiceendpointJfrogDistributionV2 resource with the given unique name, arguments, and options.
|
|
112
|
+
*
|
|
113
|
+
* @param name The _unique_ name of the resource.
|
|
114
|
+
* @param args The arguments to use to populate this resource's properties.
|
|
115
|
+
* @param opts A bag of options that control this resource's behavior.
|
|
116
|
+
*/
|
|
117
|
+
constructor(name: string, args: ServiceendpointJfrogDistributionV2Args, opts?: pulumi.CustomResourceOptions);
|
|
118
|
+
}
|
|
119
|
+
/**
|
|
120
|
+
* Input properties used for looking up and filtering ServiceendpointJfrogDistributionV2 resources.
|
|
121
|
+
*/
|
|
122
|
+
export interface ServiceendpointJfrogDistributionV2State {
|
|
123
|
+
/**
|
|
124
|
+
* A `authenticationBasic` block as documented below.
|
|
125
|
+
*/
|
|
126
|
+
authenticationBasic?: pulumi.Input<inputs.ServiceendpointJfrogDistributionV2AuthenticationBasic>;
|
|
127
|
+
/**
|
|
128
|
+
* A `authenticationToken` block as documented below.
|
|
129
|
+
*/
|
|
130
|
+
authenticationToken?: pulumi.Input<inputs.ServiceendpointJfrogDistributionV2AuthenticationToken>;
|
|
131
|
+
authorization?: pulumi.Input<{
|
|
132
|
+
[key: string]: pulumi.Input<string>;
|
|
133
|
+
}>;
|
|
134
|
+
/**
|
|
135
|
+
* The Service Endpoint description.
|
|
136
|
+
*/
|
|
137
|
+
description?: pulumi.Input<string>;
|
|
138
|
+
/**
|
|
139
|
+
* The ID of the project.
|
|
140
|
+
*/
|
|
141
|
+
projectId?: pulumi.Input<string>;
|
|
142
|
+
/**
|
|
143
|
+
* The Service Endpoint name.
|
|
144
|
+
*/
|
|
145
|
+
serviceEndpointName?: pulumi.Input<string>;
|
|
146
|
+
/**
|
|
147
|
+
* URL of the Artifactory server to connect with.
|
|
148
|
+
*/
|
|
149
|
+
url?: pulumi.Input<string>;
|
|
150
|
+
}
|
|
151
|
+
/**
|
|
152
|
+
* The set of arguments for constructing a ServiceendpointJfrogDistributionV2 resource.
|
|
153
|
+
*/
|
|
154
|
+
export interface ServiceendpointJfrogDistributionV2Args {
|
|
155
|
+
/**
|
|
156
|
+
* A `authenticationBasic` block as documented below.
|
|
157
|
+
*/
|
|
158
|
+
authenticationBasic?: pulumi.Input<inputs.ServiceendpointJfrogDistributionV2AuthenticationBasic>;
|
|
159
|
+
/**
|
|
160
|
+
* A `authenticationToken` block as documented below.
|
|
161
|
+
*/
|
|
162
|
+
authenticationToken?: pulumi.Input<inputs.ServiceendpointJfrogDistributionV2AuthenticationToken>;
|
|
163
|
+
authorization?: pulumi.Input<{
|
|
164
|
+
[key: string]: pulumi.Input<string>;
|
|
165
|
+
}>;
|
|
166
|
+
/**
|
|
167
|
+
* The Service Endpoint description.
|
|
168
|
+
*/
|
|
169
|
+
description?: pulumi.Input<string>;
|
|
170
|
+
/**
|
|
171
|
+
* The ID of the project.
|
|
172
|
+
*/
|
|
173
|
+
projectId: pulumi.Input<string>;
|
|
174
|
+
/**
|
|
175
|
+
* The Service Endpoint name.
|
|
176
|
+
*/
|
|
177
|
+
serviceEndpointName: pulumi.Input<string>;
|
|
178
|
+
/**
|
|
179
|
+
* URL of the Artifactory server to connect with.
|
|
180
|
+
*/
|
|
181
|
+
url: pulumi.Input<string>;
|
|
182
|
+
}
|
|
@@ -0,0 +1,133 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
|
+
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
+
exports.ServiceendpointJfrogDistributionV2 = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Manages a JFrog Distribution V2 server endpoint within an Azure DevOps organization.
|
|
10
|
+
*
|
|
11
|
+
* > **Note:** Using this service endpoint requires you to first install [JFrog Extension](https://marketplace.visualstudio.com/items?itemName=JFrog.jfrog-azure-devops-extension).
|
|
12
|
+
*
|
|
13
|
+
* ## Example Usage
|
|
14
|
+
*
|
|
15
|
+
* ```typescript
|
|
16
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
17
|
+
* import * as azuredevops from "@pulumi/azuredevops";
|
|
18
|
+
*
|
|
19
|
+
* const exampleProject = new azuredevops.Project("exampleProject", {
|
|
20
|
+
* visibility: "private",
|
|
21
|
+
* versionControl: "Git",
|
|
22
|
+
* workItemTemplate: "Agile",
|
|
23
|
+
* description: "Managed by Terraform",
|
|
24
|
+
* });
|
|
25
|
+
* const exampleServiceendpointJfrogDistributionV2 = new azuredevops.ServiceendpointJfrogDistributionV2("exampleServiceendpointJfrogDistributionV2", {
|
|
26
|
+
* projectId: exampleProject.id,
|
|
27
|
+
* serviceEndpointName: "Example JFrog Distribution V2",
|
|
28
|
+
* description: "Managed by Terraform",
|
|
29
|
+
* url: "https://artifactory.my.com",
|
|
30
|
+
* authenticationToken: {
|
|
31
|
+
* token: "0000000000000000000000000000000000000000",
|
|
32
|
+
* },
|
|
33
|
+
* });
|
|
34
|
+
* ```
|
|
35
|
+
* Alternatively a username and password may be used.
|
|
36
|
+
*
|
|
37
|
+
* ```typescript
|
|
38
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
39
|
+
* import * as azuredevops from "@pulumi/azuredevops";
|
|
40
|
+
*
|
|
41
|
+
* const exampleProject = new azuredevops.Project("exampleProject", {
|
|
42
|
+
* visibility: "private",
|
|
43
|
+
* versionControl: "Git",
|
|
44
|
+
* workItemTemplate: "Agile",
|
|
45
|
+
* description: "Managed by Terraform",
|
|
46
|
+
* });
|
|
47
|
+
* const exampleServiceendpointJfrogDistributionV2 = new azuredevops.ServiceendpointJfrogDistributionV2("exampleServiceendpointJfrogDistributionV2", {
|
|
48
|
+
* projectId: exampleProject.id,
|
|
49
|
+
* serviceEndpointName: "Example JFrog Distribution V2",
|
|
50
|
+
* description: "Managed by Terraform",
|
|
51
|
+
* url: "https://artifactory.my.com",
|
|
52
|
+
* authenticationBasic: {
|
|
53
|
+
* username: "username",
|
|
54
|
+
* password: "password",
|
|
55
|
+
* },
|
|
56
|
+
* });
|
|
57
|
+
* ```
|
|
58
|
+
* ## Relevant Links
|
|
59
|
+
*
|
|
60
|
+
* * [Azure DevOps Service Connections](https://docs.microsoft.com/en-us/azure/devops/pipelines/library/service-endpoints?view=azure-devops&tabs=yaml)
|
|
61
|
+
* * [Artifactory User Token](https://docs.artifactory.org/latest/user-guide/user-token/)
|
|
62
|
+
*
|
|
63
|
+
* ## Import
|
|
64
|
+
*
|
|
65
|
+
* Azure DevOps Service Endpoint JFrog Distribution V2 can be imported using the **projectID/serviceEndpointID**, e.g.
|
|
66
|
+
*
|
|
67
|
+
* ```sh
|
|
68
|
+
* $ pulumi import azuredevops:index/serviceendpointJfrogDistributionV2:ServiceendpointJfrogDistributionV2 example 00000000-0000-0000-0000-000000000000/00000000-0000-0000-0000-000000000000
|
|
69
|
+
* ```
|
|
70
|
+
*/
|
|
71
|
+
class ServiceendpointJfrogDistributionV2 extends pulumi.CustomResource {
|
|
72
|
+
/**
|
|
73
|
+
* Get an existing ServiceendpointJfrogDistributionV2 resource's state with the given name, ID, and optional extra
|
|
74
|
+
* properties used to qualify the lookup.
|
|
75
|
+
*
|
|
76
|
+
* @param name The _unique_ name of the resulting resource.
|
|
77
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
78
|
+
* @param state Any extra arguments used during the lookup.
|
|
79
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
80
|
+
*/
|
|
81
|
+
static get(name, id, state, opts) {
|
|
82
|
+
return new ServiceendpointJfrogDistributionV2(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
83
|
+
}
|
|
84
|
+
/**
|
|
85
|
+
* Returns true if the given object is an instance of ServiceendpointJfrogDistributionV2. This is designed to work even
|
|
86
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
87
|
+
*/
|
|
88
|
+
static isInstance(obj) {
|
|
89
|
+
if (obj === undefined || obj === null) {
|
|
90
|
+
return false;
|
|
91
|
+
}
|
|
92
|
+
return obj['__pulumiType'] === ServiceendpointJfrogDistributionV2.__pulumiType;
|
|
93
|
+
}
|
|
94
|
+
constructor(name, argsOrState, opts) {
|
|
95
|
+
let resourceInputs = {};
|
|
96
|
+
opts = opts || {};
|
|
97
|
+
if (opts.id) {
|
|
98
|
+
const state = argsOrState;
|
|
99
|
+
resourceInputs["authenticationBasic"] = state ? state.authenticationBasic : undefined;
|
|
100
|
+
resourceInputs["authenticationToken"] = state ? state.authenticationToken : undefined;
|
|
101
|
+
resourceInputs["authorization"] = state ? state.authorization : undefined;
|
|
102
|
+
resourceInputs["description"] = state ? state.description : undefined;
|
|
103
|
+
resourceInputs["projectId"] = state ? state.projectId : undefined;
|
|
104
|
+
resourceInputs["serviceEndpointName"] = state ? state.serviceEndpointName : undefined;
|
|
105
|
+
resourceInputs["url"] = state ? state.url : undefined;
|
|
106
|
+
}
|
|
107
|
+
else {
|
|
108
|
+
const args = argsOrState;
|
|
109
|
+
if ((!args || args.projectId === undefined) && !opts.urn) {
|
|
110
|
+
throw new Error("Missing required property 'projectId'");
|
|
111
|
+
}
|
|
112
|
+
if ((!args || args.serviceEndpointName === undefined) && !opts.urn) {
|
|
113
|
+
throw new Error("Missing required property 'serviceEndpointName'");
|
|
114
|
+
}
|
|
115
|
+
if ((!args || args.url === undefined) && !opts.urn) {
|
|
116
|
+
throw new Error("Missing required property 'url'");
|
|
117
|
+
}
|
|
118
|
+
resourceInputs["authenticationBasic"] = args ? args.authenticationBasic : undefined;
|
|
119
|
+
resourceInputs["authenticationToken"] = args ? args.authenticationToken : undefined;
|
|
120
|
+
resourceInputs["authorization"] = args ? args.authorization : undefined;
|
|
121
|
+
resourceInputs["description"] = args ? args.description : undefined;
|
|
122
|
+
resourceInputs["projectId"] = args ? args.projectId : undefined;
|
|
123
|
+
resourceInputs["serviceEndpointName"] = args ? args.serviceEndpointName : undefined;
|
|
124
|
+
resourceInputs["url"] = args ? args.url : undefined;
|
|
125
|
+
}
|
|
126
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
127
|
+
super(ServiceendpointJfrogDistributionV2.__pulumiType, name, resourceInputs, opts);
|
|
128
|
+
}
|
|
129
|
+
}
|
|
130
|
+
exports.ServiceendpointJfrogDistributionV2 = ServiceendpointJfrogDistributionV2;
|
|
131
|
+
/** @internal */
|
|
132
|
+
ServiceendpointJfrogDistributionV2.__pulumiType = 'azuredevops:index/serviceendpointJfrogDistributionV2:ServiceendpointJfrogDistributionV2';
|
|
133
|
+
//# sourceMappingURL=serviceendpointJfrogDistributionV2.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"serviceendpointJfrogDistributionV2.js","sourceRoot":"","sources":["../serviceendpointJfrogDistributionV2.ts"],"names":[],"mappings":"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"}
|