pulumi-azuredevops 3.6.0a1737091250__py3-none-any.whl → 3.6.0a1737710622__py3-none-any.whl
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.
- pulumi_azuredevops/__init__.py +64 -0
- pulumi_azuredevops/_inputs.py +120 -117
- pulumi_azuredevops/area_permissions.py +49 -49
- pulumi_azuredevops/branch_policy_auto_reviewers.py +7 -7
- pulumi_azuredevops/branch_policy_build_validation.py +7 -7
- pulumi_azuredevops/branch_policy_comment_resolution.py +7 -7
- pulumi_azuredevops/branch_policy_merge_types.py +7 -7
- pulumi_azuredevops/branch_policy_status_check.py +7 -7
- pulumi_azuredevops/branch_policy_work_item_linking.py +7 -7
- pulumi_azuredevops/build_definition.py +7 -7
- pulumi_azuredevops/check_branch_control.py +7 -7
- pulumi_azuredevops/check_business_hours.py +7 -7
- pulumi_azuredevops/check_exclusive_lock.py +7 -7
- pulumi_azuredevops/check_rest_api.py +986 -0
- pulumi_azuredevops/feed.py +8 -8
- pulumi_azuredevops/feed_permission.py +9 -9
- pulumi_azuredevops/feed_retention_policy.py +422 -0
- pulumi_azuredevops/get_agent_queue.py +2 -2
- pulumi_azuredevops/get_area.py +1 -1
- pulumi_azuredevops/get_client_config.py +3 -0
- pulumi_azuredevops/get_feed.py +4 -4
- pulumi_azuredevops/get_git_repository.py +8 -8
- pulumi_azuredevops/get_group.py +4 -4
- pulumi_azuredevops/get_groups.py +3 -3
- pulumi_azuredevops/get_identity_group.py +3 -0
- pulumi_azuredevops/get_identity_groups.py +1 -1
- pulumi_azuredevops/get_identity_users.py +5 -5
- pulumi_azuredevops/get_pool.py +14 -2
- pulumi_azuredevops/get_pools.py +3 -3
- pulumi_azuredevops/get_project.py +32 -0
- pulumi_azuredevops/get_projects.py +4 -4
- pulumi_azuredevops/get_repositories.py +7 -3
- pulumi_azuredevops/get_securityrole_definitions.py +4 -4
- pulumi_azuredevops/get_service_endpoint_azure_rm.py +5 -5
- pulumi_azuredevops/get_service_endpoint_github.py +6 -6
- pulumi_azuredevops/get_service_principal.py +153 -0
- pulumi_azuredevops/get_serviceendpoint_azurecr.py +1 -1
- pulumi_azuredevops/get_serviceendpoint_bitbucket.py +6 -6
- pulumi_azuredevops/get_serviceendpoint_npm.py +3 -3
- pulumi_azuredevops/get_serviceendpoint_sonarcloud.py +2 -2
- pulumi_azuredevops/get_team.py +4 -3
- pulumi_azuredevops/get_teams.py +2 -3
- pulumi_azuredevops/get_users.py +5 -9
- pulumi_azuredevops/git.py +7 -7
- pulumi_azuredevops/git_permissions.py +14 -21
- pulumi_azuredevops/git_repository_file.py +7 -14
- pulumi_azuredevops/group.py +21 -7
- pulumi_azuredevops/group_entitlement.py +16 -20
- pulumi_azuredevops/group_membership.py +35 -50
- pulumi_azuredevops/iterative_permissions.py +34 -34
- pulumi_azuredevops/library_permissions.py +75 -75
- pulumi_azuredevops/outputs.py +129 -102
- pulumi_azuredevops/pipeline_authorization.py +7 -7
- pulumi_azuredevops/pool.py +4 -4
- pulumi_azuredevops/project.py +114 -63
- pulumi_azuredevops/project_features.py +87 -45
- pulumi_azuredevops/project_permissions.py +7 -7
- pulumi_azuredevops/project_pipeline_settings.py +28 -35
- pulumi_azuredevops/project_tags.py +263 -0
- pulumi_azuredevops/pulumi-plugin.json +1 -1
- pulumi_azuredevops/queue.py +7 -14
- pulumi_azuredevops/repository_policy_author_email_pattern.py +21 -14
- pulumi_azuredevops/repository_policy_max_file_size.py +7 -7
- pulumi_azuredevops/resource_authorization.py +35 -35
- pulumi_azuredevops/service_endpoint_artifactory.py +24 -18
- pulumi_azuredevops/service_endpoint_aws.py +2 -2
- pulumi_azuredevops/service_endpoint_azure_ecr.py +13 -15
- pulumi_azuredevops/service_endpoint_azure_rm.py +25 -25
- pulumi_azuredevops/service_endpoint_bit_bucket.py +2 -2
- pulumi_azuredevops/service_endpoint_docker_registry.py +2 -2
- pulumi_azuredevops/service_endpoint_generic.py +2 -2
- pulumi_azuredevops/service_endpoint_generic_git.py +4 -8
- pulumi_azuredevops/service_endpoint_git_hub.py +15 -2
- pulumi_azuredevops/service_endpoint_git_hub_enterprise.py +15 -2
- pulumi_azuredevops/service_endpoint_kubernetes.py +23 -23
- pulumi_azuredevops/service_endpoint_npm.py +4 -4
- pulumi_azuredevops/service_endpoint_pipeline.py +4 -4
- pulumi_azuredevops/service_endpoint_service_fabric.py +48 -9
- pulumi_azuredevops/service_endpoint_sonar_cloud.py +11 -11
- pulumi_azuredevops/service_endpoint_sonar_qube.py +11 -11
- pulumi_azuredevops/service_endpoint_ssh.py +2 -6
- pulumi_azuredevops/service_principal_entitlement.py +386 -0
- pulumi_azuredevops/serviceendpoint_argocd.py +2 -2
- pulumi_azuredevops/serviceendpoint_azure_service_bus.py +2 -2
- pulumi_azuredevops/serviceendpoint_checkmarx_one.py +627 -0
- pulumi_azuredevops/serviceendpoint_checkmarx_sast.py +575 -0
- pulumi_azuredevops/serviceendpoint_checkmarx_sca.py +674 -0
- pulumi_azuredevops/serviceendpoint_dynamics_lifecycle_services.py +2 -2
- pulumi_azuredevops/serviceendpoint_externaltfs.py +63 -11
- pulumi_azuredevops/serviceendpoint_gcp_terraform.py +2 -2
- pulumi_azuredevops/serviceendpoint_incomingwebhook.py +2 -2
- pulumi_azuredevops/serviceendpoint_jenkins.py +2 -2
- pulumi_azuredevops/serviceendpoint_jfrog_artifactory_v2.py +18 -18
- pulumi_azuredevops/serviceendpoint_jfrog_distribution_v2.py +18 -18
- pulumi_azuredevops/serviceendpoint_jfrog_platform_v2.py +18 -18
- pulumi_azuredevops/serviceendpoint_jfrog_xray_v2.py +18 -18
- pulumi_azuredevops/serviceendpoint_maven.py +2 -2
- pulumi_azuredevops/serviceendpoint_nexus.py +2 -2
- pulumi_azuredevops/serviceendpoint_nuget.py +2 -2
- pulumi_azuredevops/serviceendpoint_octopusdeploy.py +2 -2
- pulumi_azuredevops/serviceendpoint_permissions.py +40 -40
- pulumi_azuredevops/serviceendpoint_snyk.py +2 -2
- pulumi_azuredevops/serviceendpoint_visualstudiomarketplace.py +4 -6
- pulumi_azuredevops/servicehook_permissions.py +51 -51
- pulumi_azuredevops/servicehook_storage_queue_pipelines.py +4 -4
- pulumi_azuredevops/tagging_permissions.py +49 -49
- pulumi_azuredevops/team.py +76 -56
- pulumi_azuredevops/team_administrators.py +83 -56
- pulumi_azuredevops/team_members.py +56 -49
- pulumi_azuredevops/variable_group.py +4 -2
- pulumi_azuredevops/variable_group_permissions.py +75 -75
- pulumi_azuredevops/wiki.py +15 -2
- pulumi_azuredevops/wiki_page.py +2 -2
- pulumi_azuredevops/work_item_query_permissions.py +7 -7
- {pulumi_azuredevops-3.6.0a1737091250.dist-info → pulumi_azuredevops-3.6.0a1737710622.dist-info}/METADATA +1 -1
- pulumi_azuredevops-3.6.0a1737710622.dist-info/RECORD +148 -0
- pulumi_azuredevops-3.6.0a1737091250.dist-info/RECORD +0 -140
- {pulumi_azuredevops-3.6.0a1737091250.dist-info → pulumi_azuredevops-3.6.0a1737710622.dist-info}/WHEEL +0 -0
- {pulumi_azuredevops-3.6.0a1737091250.dist-info → pulumi_azuredevops-3.6.0a1737710622.dist-info}/top_level.txt +0 -0
@@ -30,7 +30,7 @@ class ServiceendpointExternaltfsArgs:
|
|
30
30
|
"""
|
31
31
|
The set of arguments for constructing a ServiceendpointExternaltfs resource.
|
32
32
|
:param pulumi.Input['ServiceendpointExternaltfsAuthPersonalArgs'] auth_personal: An `auth_personal` block as documented below. Allows connecting using a personal access token.
|
33
|
-
:param pulumi.Input[str] connection_url:
|
33
|
+
:param pulumi.Input[str] connection_url: Azure DevOps Organization or TFS Project Collection Url.
|
34
34
|
:param pulumi.Input[str] project_id: The ID of the project.
|
35
35
|
:param pulumi.Input[str] service_endpoint_name: The Service Endpoint name.
|
36
36
|
"""
|
@@ -59,7 +59,7 @@ class ServiceendpointExternaltfsArgs:
|
|
59
59
|
@pulumi.getter(name="connectionUrl")
|
60
60
|
def connection_url(self) -> pulumi.Input[str]:
|
61
61
|
"""
|
62
|
-
|
62
|
+
Azure DevOps Organization or TFS Project Collection Url.
|
63
63
|
"""
|
64
64
|
return pulumi.get(self, "connection_url")
|
65
65
|
|
@@ -122,7 +122,7 @@ class _ServiceendpointExternaltfsState:
|
|
122
122
|
"""
|
123
123
|
Input properties used for looking up and filtering ServiceendpointExternaltfs resources.
|
124
124
|
:param pulumi.Input['ServiceendpointExternaltfsAuthPersonalArgs'] auth_personal: An `auth_personal` block as documented below. Allows connecting using a personal access token.
|
125
|
-
:param pulumi.Input[str] connection_url:
|
125
|
+
:param pulumi.Input[str] connection_url: Azure DevOps Organization or TFS Project Collection Url.
|
126
126
|
:param pulumi.Input[str] project_id: The ID of the project.
|
127
127
|
:param pulumi.Input[str] service_endpoint_name: The Service Endpoint name.
|
128
128
|
"""
|
@@ -164,7 +164,7 @@ class _ServiceendpointExternaltfsState:
|
|
164
164
|
@pulumi.getter(name="connectionUrl")
|
165
165
|
def connection_url(self) -> Optional[pulumi.Input[str]]:
|
166
166
|
"""
|
167
|
-
|
167
|
+
Azure DevOps Organization or TFS Project Collection Url.
|
168
168
|
"""
|
169
169
|
return pulumi.get(self, "connection_url")
|
170
170
|
|
@@ -219,11 +219,37 @@ class ServiceendpointExternaltfs(pulumi.CustomResource):
|
|
219
219
|
service_endpoint_name: Optional[pulumi.Input[str]] = None,
|
220
220
|
__props__=None):
|
221
221
|
"""
|
222
|
-
Manages an Azure
|
222
|
+
Manages an Azure Repository/Team Foundation Server service endpoint within Azure DevOps.
|
223
|
+
|
224
|
+
## Example Usage
|
225
|
+
|
226
|
+
```python
|
227
|
+
import pulumi
|
228
|
+
import pulumi_azuredevops as azuredevops
|
229
|
+
|
230
|
+
example = azuredevops.Project("example",
|
231
|
+
name="Example Project",
|
232
|
+
visibility="private",
|
233
|
+
version_control="Git",
|
234
|
+
work_item_template="Agile",
|
235
|
+
description="Managed by Pulumi")
|
236
|
+
example_serviceendpoint_externaltfs = azuredevops.ServiceendpointExternaltfs("example",
|
237
|
+
project_id=example.id,
|
238
|
+
service_endpoint_name="Example External TFS Name",
|
239
|
+
connection_url="https://dev.azure.com/myorganization",
|
240
|
+
description="Managed by Pulumi",
|
241
|
+
auth_personal={
|
242
|
+
"personal_access_token": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
|
243
|
+
})
|
244
|
+
```
|
245
|
+
|
246
|
+
## Relevant Links
|
247
|
+
|
248
|
+
- [Azure DevOps Service REST API 7.0 - Service Endpoints](https://docs.microsoft.com/en-us/rest/api/azure/devops/serviceendpoint/endpoints?view=azure-devops-rest-7.0)
|
223
249
|
|
224
250
|
## Import
|
225
251
|
|
226
|
-
Azure DevOps Service Endpoint
|
252
|
+
Azure DevOps Azure Repository/Team Foundation Server Service Endpoint can be imported using **projectID/serviceEndpointID** or **projectName/serviceEndpointID**
|
227
253
|
|
228
254
|
```sh
|
229
255
|
$ pulumi import azuredevops:index/serviceendpointExternaltfs:ServiceendpointExternaltfs example 00000000-0000-0000-0000-000000000000/00000000-0000-0000-0000-000000000000
|
@@ -232,7 +258,7 @@ class ServiceendpointExternaltfs(pulumi.CustomResource):
|
|
232
258
|
:param str resource_name: The name of the resource.
|
233
259
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
234
260
|
:param pulumi.Input[Union['ServiceendpointExternaltfsAuthPersonalArgs', 'ServiceendpointExternaltfsAuthPersonalArgsDict']] auth_personal: An `auth_personal` block as documented below. Allows connecting using a personal access token.
|
235
|
-
:param pulumi.Input[str] connection_url:
|
261
|
+
:param pulumi.Input[str] connection_url: Azure DevOps Organization or TFS Project Collection Url.
|
236
262
|
:param pulumi.Input[str] project_id: The ID of the project.
|
237
263
|
:param pulumi.Input[str] service_endpoint_name: The Service Endpoint name.
|
238
264
|
"""
|
@@ -243,11 +269,37 @@ class ServiceendpointExternaltfs(pulumi.CustomResource):
|
|
243
269
|
args: ServiceendpointExternaltfsArgs,
|
244
270
|
opts: Optional[pulumi.ResourceOptions] = None):
|
245
271
|
"""
|
246
|
-
Manages an Azure
|
272
|
+
Manages an Azure Repository/Team Foundation Server service endpoint within Azure DevOps.
|
273
|
+
|
274
|
+
## Example Usage
|
275
|
+
|
276
|
+
```python
|
277
|
+
import pulumi
|
278
|
+
import pulumi_azuredevops as azuredevops
|
279
|
+
|
280
|
+
example = azuredevops.Project("example",
|
281
|
+
name="Example Project",
|
282
|
+
visibility="private",
|
283
|
+
version_control="Git",
|
284
|
+
work_item_template="Agile",
|
285
|
+
description="Managed by Pulumi")
|
286
|
+
example_serviceendpoint_externaltfs = azuredevops.ServiceendpointExternaltfs("example",
|
287
|
+
project_id=example.id,
|
288
|
+
service_endpoint_name="Example External TFS Name",
|
289
|
+
connection_url="https://dev.azure.com/myorganization",
|
290
|
+
description="Managed by Pulumi",
|
291
|
+
auth_personal={
|
292
|
+
"personal_access_token": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
|
293
|
+
})
|
294
|
+
```
|
295
|
+
|
296
|
+
## Relevant Links
|
297
|
+
|
298
|
+
- [Azure DevOps Service REST API 7.0 - Service Endpoints](https://docs.microsoft.com/en-us/rest/api/azure/devops/serviceendpoint/endpoints?view=azure-devops-rest-7.0)
|
247
299
|
|
248
300
|
## Import
|
249
301
|
|
250
|
-
Azure DevOps Service Endpoint
|
302
|
+
Azure DevOps Azure Repository/Team Foundation Server Service Endpoint can be imported using **projectID/serviceEndpointID** or **projectName/serviceEndpointID**
|
251
303
|
|
252
304
|
```sh
|
253
305
|
$ pulumi import azuredevops:index/serviceendpointExternaltfs:ServiceendpointExternaltfs example 00000000-0000-0000-0000-000000000000/00000000-0000-0000-0000-000000000000
|
@@ -321,7 +373,7 @@ class ServiceendpointExternaltfs(pulumi.CustomResource):
|
|
321
373
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
322
374
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
323
375
|
:param pulumi.Input[Union['ServiceendpointExternaltfsAuthPersonalArgs', 'ServiceendpointExternaltfsAuthPersonalArgsDict']] auth_personal: An `auth_personal` block as documented below. Allows connecting using a personal access token.
|
324
|
-
:param pulumi.Input[str] connection_url:
|
376
|
+
:param pulumi.Input[str] connection_url: Azure DevOps Organization or TFS Project Collection Url.
|
325
377
|
:param pulumi.Input[str] project_id: The ID of the project.
|
326
378
|
:param pulumi.Input[str] service_endpoint_name: The Service Endpoint name.
|
327
379
|
"""
|
@@ -354,7 +406,7 @@ class ServiceendpointExternaltfs(pulumi.CustomResource):
|
|
354
406
|
@pulumi.getter(name="connectionUrl")
|
355
407
|
def connection_url(self) -> pulumi.Output[str]:
|
356
408
|
"""
|
357
|
-
|
409
|
+
Azure DevOps Organization or TFS Project Collection Url.
|
358
410
|
"""
|
359
411
|
return pulumi.get(self, "connection_url")
|
360
412
|
|
@@ -343,7 +343,7 @@ class ServiceendpointGcpTerraform(pulumi.CustomResource):
|
|
343
343
|
|
344
344
|
## Import
|
345
345
|
|
346
|
-
Azure DevOps Service Endpoint
|
346
|
+
Azure DevOps GCP for Terraform Service Endpoint can be imported using **projectID/serviceEndpointID** or **projectName/serviceEndpointID**
|
347
347
|
|
348
348
|
```sh
|
349
349
|
$ pulumi import azuredevops:index/serviceendpointGcpTerraform:ServiceendpointGcpTerraform azuredevops_serviceendpoint_gcp_terraform.example 00000000-0000-0000-0000-000000000000/00000000-0000-0000-0000-000000000000
|
@@ -394,7 +394,7 @@ class ServiceendpointGcpTerraform(pulumi.CustomResource):
|
|
394
394
|
|
395
395
|
## Import
|
396
396
|
|
397
|
-
Azure DevOps Service Endpoint
|
397
|
+
Azure DevOps GCP for Terraform Service Endpoint can be imported using **projectID/serviceEndpointID** or **projectName/serviceEndpointID**
|
398
398
|
|
399
399
|
```sh
|
400
400
|
$ pulumi import azuredevops:index/serviceendpointGcpTerraform:ServiceendpointGcpTerraform azuredevops_serviceendpoint_gcp_terraform.example 00000000-0000-0000-0000-000000000000/00000000-0000-0000-0000-000000000000
|
@@ -276,7 +276,7 @@ class ServiceendpointIncomingwebhook(pulumi.CustomResource):
|
|
276
276
|
|
277
277
|
## Import
|
278
278
|
|
279
|
-
Azure DevOps Service Endpoint
|
279
|
+
Azure DevOps Incoming WebHook Service Endpoint can be imported using **projectID/serviceEndpointID** or **projectName/serviceEndpointID**
|
280
280
|
|
281
281
|
```sh
|
282
282
|
$ pulumi import azuredevops:index/serviceendpointIncomingwebhook:ServiceendpointIncomingwebhook example 00000000-0000-0000-0000-000000000000/00000000-0000-0000-0000-000000000000
|
@@ -322,7 +322,7 @@ class ServiceendpointIncomingwebhook(pulumi.CustomResource):
|
|
322
322
|
|
323
323
|
## Import
|
324
324
|
|
325
|
-
Azure DevOps Service Endpoint
|
325
|
+
Azure DevOps Incoming WebHook Service Endpoint can be imported using **projectID/serviceEndpointID** or **projectName/serviceEndpointID**
|
326
326
|
|
327
327
|
```sh
|
328
328
|
$ pulumi import azuredevops:index/serviceendpointIncomingwebhook:ServiceendpointIncomingwebhook example 00000000-0000-0000-0000-000000000000/00000000-0000-0000-0000-000000000000
|
@@ -308,7 +308,7 @@ class ServiceendpointJenkins(pulumi.CustomResource):
|
|
308
308
|
|
309
309
|
## Import
|
310
310
|
|
311
|
-
|
311
|
+
Azure DevOps Jenkins Service Endpoint can be imported using the `projectId/id` or `projectName/id`, e.g.
|
312
312
|
|
313
313
|
```sh
|
314
314
|
$ pulumi import azuredevops:index/serviceendpointJenkins:ServiceendpointJenkins example projectName/00000000-0000-0000-0000-000000000000
|
@@ -356,7 +356,7 @@ class ServiceendpointJenkins(pulumi.CustomResource):
|
|
356
356
|
|
357
357
|
## Import
|
358
358
|
|
359
|
-
|
359
|
+
Azure DevOps Jenkins Service Endpoint can be imported using the `projectId/id` or `projectName/id`, e.g.
|
360
360
|
|
361
361
|
```sh
|
362
362
|
$ pulumi import azuredevops:index/serviceendpointJenkins:ServiceendpointJenkins example projectName/00000000-0000-0000-0000-000000000000
|
@@ -35,8 +35,8 @@ class ServiceendpointJfrogArtifactoryV2Args:
|
|
35
35
|
:param pulumi.Input[str] url: URL of the Artifactory server to connect with.
|
36
36
|
|
37
37
|
> **NOTE:** URL should not end in a slash character.
|
38
|
-
:param pulumi.Input['ServiceendpointJfrogArtifactoryV2AuthenticationBasicArgs'] authentication_basic:
|
39
|
-
:param pulumi.Input['ServiceendpointJfrogArtifactoryV2AuthenticationTokenArgs'] authentication_token:
|
38
|
+
:param pulumi.Input['ServiceendpointJfrogArtifactoryV2AuthenticationBasicArgs'] authentication_basic: An `authentication_basic` block as documented below.
|
39
|
+
:param pulumi.Input['ServiceendpointJfrogArtifactoryV2AuthenticationTokenArgs'] authentication_token: An `authentication_token` block as documented below.
|
40
40
|
:param pulumi.Input[str] description: The Service Endpoint description.
|
41
41
|
"""
|
42
42
|
pulumi.set(__self__, "project_id", project_id)
|
@@ -93,7 +93,7 @@ class ServiceendpointJfrogArtifactoryV2Args:
|
|
93
93
|
@pulumi.getter(name="authenticationBasic")
|
94
94
|
def authentication_basic(self) -> Optional[pulumi.Input['ServiceendpointJfrogArtifactoryV2AuthenticationBasicArgs']]:
|
95
95
|
"""
|
96
|
-
|
96
|
+
An `authentication_basic` block as documented below.
|
97
97
|
"""
|
98
98
|
return pulumi.get(self, "authentication_basic")
|
99
99
|
|
@@ -105,7 +105,7 @@ class ServiceendpointJfrogArtifactoryV2Args:
|
|
105
105
|
@pulumi.getter(name="authenticationToken")
|
106
106
|
def authentication_token(self) -> Optional[pulumi.Input['ServiceendpointJfrogArtifactoryV2AuthenticationTokenArgs']]:
|
107
107
|
"""
|
108
|
-
|
108
|
+
An `authentication_token` block as documented below.
|
109
109
|
"""
|
110
110
|
return pulumi.get(self, "authentication_token")
|
111
111
|
|
@@ -147,8 +147,8 @@ class _ServiceendpointJfrogArtifactoryV2State:
|
|
147
147
|
url: Optional[pulumi.Input[str]] = None):
|
148
148
|
"""
|
149
149
|
Input properties used for looking up and filtering ServiceendpointJfrogArtifactoryV2 resources.
|
150
|
-
:param pulumi.Input['ServiceendpointJfrogArtifactoryV2AuthenticationBasicArgs'] authentication_basic:
|
151
|
-
:param pulumi.Input['ServiceendpointJfrogArtifactoryV2AuthenticationTokenArgs'] authentication_token:
|
150
|
+
:param pulumi.Input['ServiceendpointJfrogArtifactoryV2AuthenticationBasicArgs'] authentication_basic: An `authentication_basic` block as documented below.
|
151
|
+
:param pulumi.Input['ServiceendpointJfrogArtifactoryV2AuthenticationTokenArgs'] authentication_token: An `authentication_token` block as documented below.
|
152
152
|
:param pulumi.Input[str] description: The Service Endpoint description.
|
153
153
|
:param pulumi.Input[str] project_id: The ID of the project.
|
154
154
|
:param pulumi.Input[str] service_endpoint_name: The Service Endpoint name.
|
@@ -175,7 +175,7 @@ class _ServiceendpointJfrogArtifactoryV2State:
|
|
175
175
|
@pulumi.getter(name="authenticationBasic")
|
176
176
|
def authentication_basic(self) -> Optional[pulumi.Input['ServiceendpointJfrogArtifactoryV2AuthenticationBasicArgs']]:
|
177
177
|
"""
|
178
|
-
|
178
|
+
An `authentication_basic` block as documented below.
|
179
179
|
"""
|
180
180
|
return pulumi.get(self, "authentication_basic")
|
181
181
|
|
@@ -187,7 +187,7 @@ class _ServiceendpointJfrogArtifactoryV2State:
|
|
187
187
|
@pulumi.getter(name="authenticationToken")
|
188
188
|
def authentication_token(self) -> Optional[pulumi.Input['ServiceendpointJfrogArtifactoryV2AuthenticationTokenArgs']]:
|
189
189
|
"""
|
190
|
-
|
190
|
+
An `authentication_token` block as documented below.
|
191
191
|
"""
|
192
192
|
return pulumi.get(self, "authentication_token")
|
193
193
|
|
@@ -269,7 +269,7 @@ class ServiceendpointJfrogArtifactoryV2(pulumi.CustomResource):
|
|
269
269
|
url: Optional[pulumi.Input[str]] = None,
|
270
270
|
__props__=None):
|
271
271
|
"""
|
272
|
-
Manages a JFrog Artifactory V2
|
272
|
+
Manages a JFrog Artifactory V2 service endpoint within an Azure DevOps organization.
|
273
273
|
|
274
274
|
> **Note:** Using this service endpoint requires you to first install [JFrog Extension](https://marketplace.visualstudio.com/items?itemName=JFrog.jfrog-azure-devops-extension).
|
275
275
|
|
@@ -324,7 +324,7 @@ class ServiceendpointJfrogArtifactoryV2(pulumi.CustomResource):
|
|
324
324
|
|
325
325
|
## Import
|
326
326
|
|
327
|
-
Azure DevOps
|
327
|
+
Azure DevOps JFrog Artifactory V2 Service Endpoint can be imported using the **projectID/serviceEndpointID**, e.g.
|
328
328
|
|
329
329
|
```sh
|
330
330
|
$ pulumi import azuredevops:index/serviceendpointJfrogArtifactoryV2:ServiceendpointJfrogArtifactoryV2 example 00000000-0000-0000-0000-000000000000/00000000-0000-0000-0000-000000000000
|
@@ -332,8 +332,8 @@ class ServiceendpointJfrogArtifactoryV2(pulumi.CustomResource):
|
|
332
332
|
|
333
333
|
:param str resource_name: The name of the resource.
|
334
334
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
335
|
-
:param pulumi.Input[Union['ServiceendpointJfrogArtifactoryV2AuthenticationBasicArgs', 'ServiceendpointJfrogArtifactoryV2AuthenticationBasicArgsDict']] authentication_basic:
|
336
|
-
:param pulumi.Input[Union['ServiceendpointJfrogArtifactoryV2AuthenticationTokenArgs', 'ServiceendpointJfrogArtifactoryV2AuthenticationTokenArgsDict']] authentication_token:
|
335
|
+
:param pulumi.Input[Union['ServiceendpointJfrogArtifactoryV2AuthenticationBasicArgs', 'ServiceendpointJfrogArtifactoryV2AuthenticationBasicArgsDict']] authentication_basic: An `authentication_basic` block as documented below.
|
336
|
+
:param pulumi.Input[Union['ServiceendpointJfrogArtifactoryV2AuthenticationTokenArgs', 'ServiceendpointJfrogArtifactoryV2AuthenticationTokenArgsDict']] authentication_token: An `authentication_token` block as documented below.
|
337
337
|
:param pulumi.Input[str] description: The Service Endpoint description.
|
338
338
|
:param pulumi.Input[str] project_id: The ID of the project.
|
339
339
|
:param pulumi.Input[str] service_endpoint_name: The Service Endpoint name.
|
@@ -348,7 +348,7 @@ class ServiceendpointJfrogArtifactoryV2(pulumi.CustomResource):
|
|
348
348
|
args: ServiceendpointJfrogArtifactoryV2Args,
|
349
349
|
opts: Optional[pulumi.ResourceOptions] = None):
|
350
350
|
"""
|
351
|
-
Manages a JFrog Artifactory V2
|
351
|
+
Manages a JFrog Artifactory V2 service endpoint within an Azure DevOps organization.
|
352
352
|
|
353
353
|
> **Note:** Using this service endpoint requires you to first install [JFrog Extension](https://marketplace.visualstudio.com/items?itemName=JFrog.jfrog-azure-devops-extension).
|
354
354
|
|
@@ -403,7 +403,7 @@ class ServiceendpointJfrogArtifactoryV2(pulumi.CustomResource):
|
|
403
403
|
|
404
404
|
## Import
|
405
405
|
|
406
|
-
Azure DevOps
|
406
|
+
Azure DevOps JFrog Artifactory V2 Service Endpoint can be imported using the **projectID/serviceEndpointID**, e.g.
|
407
407
|
|
408
408
|
```sh
|
409
409
|
$ pulumi import azuredevops:index/serviceendpointJfrogArtifactoryV2:ServiceendpointJfrogArtifactoryV2 example 00000000-0000-0000-0000-000000000000/00000000-0000-0000-0000-000000000000
|
@@ -477,8 +477,8 @@ class ServiceendpointJfrogArtifactoryV2(pulumi.CustomResource):
|
|
477
477
|
:param str resource_name: The unique name of the resulting resource.
|
478
478
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
479
479
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
480
|
-
:param pulumi.Input[Union['ServiceendpointJfrogArtifactoryV2AuthenticationBasicArgs', 'ServiceendpointJfrogArtifactoryV2AuthenticationBasicArgsDict']] authentication_basic:
|
481
|
-
:param pulumi.Input[Union['ServiceendpointJfrogArtifactoryV2AuthenticationTokenArgs', 'ServiceendpointJfrogArtifactoryV2AuthenticationTokenArgsDict']] authentication_token:
|
480
|
+
:param pulumi.Input[Union['ServiceendpointJfrogArtifactoryV2AuthenticationBasicArgs', 'ServiceendpointJfrogArtifactoryV2AuthenticationBasicArgsDict']] authentication_basic: An `authentication_basic` block as documented below.
|
481
|
+
:param pulumi.Input[Union['ServiceendpointJfrogArtifactoryV2AuthenticationTokenArgs', 'ServiceendpointJfrogArtifactoryV2AuthenticationTokenArgsDict']] authentication_token: An `authentication_token` block as documented below.
|
482
482
|
:param pulumi.Input[str] description: The Service Endpoint description.
|
483
483
|
:param pulumi.Input[str] project_id: The ID of the project.
|
484
484
|
:param pulumi.Input[str] service_endpoint_name: The Service Endpoint name.
|
@@ -503,7 +503,7 @@ class ServiceendpointJfrogArtifactoryV2(pulumi.CustomResource):
|
|
503
503
|
@pulumi.getter(name="authenticationBasic")
|
504
504
|
def authentication_basic(self) -> pulumi.Output[Optional['outputs.ServiceendpointJfrogArtifactoryV2AuthenticationBasic']]:
|
505
505
|
"""
|
506
|
-
|
506
|
+
An `authentication_basic` block as documented below.
|
507
507
|
"""
|
508
508
|
return pulumi.get(self, "authentication_basic")
|
509
509
|
|
@@ -511,7 +511,7 @@ class ServiceendpointJfrogArtifactoryV2(pulumi.CustomResource):
|
|
511
511
|
@pulumi.getter(name="authenticationToken")
|
512
512
|
def authentication_token(self) -> pulumi.Output[Optional['outputs.ServiceendpointJfrogArtifactoryV2AuthenticationToken']]:
|
513
513
|
"""
|
514
|
-
|
514
|
+
An `authentication_token` block as documented below.
|
515
515
|
"""
|
516
516
|
return pulumi.get(self, "authentication_token")
|
517
517
|
|
@@ -35,8 +35,8 @@ class ServiceendpointJfrogDistributionV2Args:
|
|
35
35
|
:param pulumi.Input[str] url: URL of the Artifactory server to connect with.
|
36
36
|
|
37
37
|
> **NOTE:** URL should not end in a slash character.
|
38
|
-
:param pulumi.Input['ServiceendpointJfrogDistributionV2AuthenticationBasicArgs'] authentication_basic:
|
39
|
-
:param pulumi.Input['ServiceendpointJfrogDistributionV2AuthenticationTokenArgs'] authentication_token:
|
38
|
+
:param pulumi.Input['ServiceendpointJfrogDistributionV2AuthenticationBasicArgs'] authentication_basic: An `authentication_basic` block as documented below.
|
39
|
+
:param pulumi.Input['ServiceendpointJfrogDistributionV2AuthenticationTokenArgs'] authentication_token: An `authentication_token` block as documented below.
|
40
40
|
:param pulumi.Input[str] description: The Service Endpoint description.
|
41
41
|
"""
|
42
42
|
pulumi.set(__self__, "project_id", project_id)
|
@@ -93,7 +93,7 @@ class ServiceendpointJfrogDistributionV2Args:
|
|
93
93
|
@pulumi.getter(name="authenticationBasic")
|
94
94
|
def authentication_basic(self) -> Optional[pulumi.Input['ServiceendpointJfrogDistributionV2AuthenticationBasicArgs']]:
|
95
95
|
"""
|
96
|
-
|
96
|
+
An `authentication_basic` block as documented below.
|
97
97
|
"""
|
98
98
|
return pulumi.get(self, "authentication_basic")
|
99
99
|
|
@@ -105,7 +105,7 @@ class ServiceendpointJfrogDistributionV2Args:
|
|
105
105
|
@pulumi.getter(name="authenticationToken")
|
106
106
|
def authentication_token(self) -> Optional[pulumi.Input['ServiceendpointJfrogDistributionV2AuthenticationTokenArgs']]:
|
107
107
|
"""
|
108
|
-
|
108
|
+
An `authentication_token` block as documented below.
|
109
109
|
"""
|
110
110
|
return pulumi.get(self, "authentication_token")
|
111
111
|
|
@@ -147,8 +147,8 @@ class _ServiceendpointJfrogDistributionV2State:
|
|
147
147
|
url: Optional[pulumi.Input[str]] = None):
|
148
148
|
"""
|
149
149
|
Input properties used for looking up and filtering ServiceendpointJfrogDistributionV2 resources.
|
150
|
-
:param pulumi.Input['ServiceendpointJfrogDistributionV2AuthenticationBasicArgs'] authentication_basic:
|
151
|
-
:param pulumi.Input['ServiceendpointJfrogDistributionV2AuthenticationTokenArgs'] authentication_token:
|
150
|
+
:param pulumi.Input['ServiceendpointJfrogDistributionV2AuthenticationBasicArgs'] authentication_basic: An `authentication_basic` block as documented below.
|
151
|
+
:param pulumi.Input['ServiceendpointJfrogDistributionV2AuthenticationTokenArgs'] authentication_token: An `authentication_token` block as documented below.
|
152
152
|
:param pulumi.Input[str] description: The Service Endpoint description.
|
153
153
|
:param pulumi.Input[str] project_id: The ID of the project.
|
154
154
|
:param pulumi.Input[str] service_endpoint_name: The Service Endpoint name.
|
@@ -175,7 +175,7 @@ class _ServiceendpointJfrogDistributionV2State:
|
|
175
175
|
@pulumi.getter(name="authenticationBasic")
|
176
176
|
def authentication_basic(self) -> Optional[pulumi.Input['ServiceendpointJfrogDistributionV2AuthenticationBasicArgs']]:
|
177
177
|
"""
|
178
|
-
|
178
|
+
An `authentication_basic` block as documented below.
|
179
179
|
"""
|
180
180
|
return pulumi.get(self, "authentication_basic")
|
181
181
|
|
@@ -187,7 +187,7 @@ class _ServiceendpointJfrogDistributionV2State:
|
|
187
187
|
@pulumi.getter(name="authenticationToken")
|
188
188
|
def authentication_token(self) -> Optional[pulumi.Input['ServiceendpointJfrogDistributionV2AuthenticationTokenArgs']]:
|
189
189
|
"""
|
190
|
-
|
190
|
+
An `authentication_token` block as documented below.
|
191
191
|
"""
|
192
192
|
return pulumi.get(self, "authentication_token")
|
193
193
|
|
@@ -269,7 +269,7 @@ class ServiceendpointJfrogDistributionV2(pulumi.CustomResource):
|
|
269
269
|
url: Optional[pulumi.Input[str]] = None,
|
270
270
|
__props__=None):
|
271
271
|
"""
|
272
|
-
Manages a JFrog Distribution V2
|
272
|
+
Manages a JFrog Distribution V2 service endpoint within an Azure DevOps organization.
|
273
273
|
|
274
274
|
> **Note:** Using this service endpoint requires you to first install [JFrog Extension](https://marketplace.visualstudio.com/items?itemName=JFrog.jfrog-azure-devops-extension).
|
275
275
|
|
@@ -324,7 +324,7 @@ class ServiceendpointJfrogDistributionV2(pulumi.CustomResource):
|
|
324
324
|
|
325
325
|
## Import
|
326
326
|
|
327
|
-
Azure DevOps
|
327
|
+
Azure DevOps JFrog Distribution V2 Service Endpoint can be imported using the **projectID/serviceEndpointID**, e.g.
|
328
328
|
|
329
329
|
```sh
|
330
330
|
$ pulumi import azuredevops:index/serviceendpointJfrogDistributionV2:ServiceendpointJfrogDistributionV2 example 00000000-0000-0000-0000-000000000000/00000000-0000-0000-0000-000000000000
|
@@ -332,8 +332,8 @@ class ServiceendpointJfrogDistributionV2(pulumi.CustomResource):
|
|
332
332
|
|
333
333
|
:param str resource_name: The name of the resource.
|
334
334
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
335
|
-
:param pulumi.Input[Union['ServiceendpointJfrogDistributionV2AuthenticationBasicArgs', 'ServiceendpointJfrogDistributionV2AuthenticationBasicArgsDict']] authentication_basic:
|
336
|
-
:param pulumi.Input[Union['ServiceendpointJfrogDistributionV2AuthenticationTokenArgs', 'ServiceendpointJfrogDistributionV2AuthenticationTokenArgsDict']] authentication_token:
|
335
|
+
:param pulumi.Input[Union['ServiceendpointJfrogDistributionV2AuthenticationBasicArgs', 'ServiceendpointJfrogDistributionV2AuthenticationBasicArgsDict']] authentication_basic: An `authentication_basic` block as documented below.
|
336
|
+
:param pulumi.Input[Union['ServiceendpointJfrogDistributionV2AuthenticationTokenArgs', 'ServiceendpointJfrogDistributionV2AuthenticationTokenArgsDict']] authentication_token: An `authentication_token` block as documented below.
|
337
337
|
:param pulumi.Input[str] description: The Service Endpoint description.
|
338
338
|
:param pulumi.Input[str] project_id: The ID of the project.
|
339
339
|
:param pulumi.Input[str] service_endpoint_name: The Service Endpoint name.
|
@@ -348,7 +348,7 @@ class ServiceendpointJfrogDistributionV2(pulumi.CustomResource):
|
|
348
348
|
args: ServiceendpointJfrogDistributionV2Args,
|
349
349
|
opts: Optional[pulumi.ResourceOptions] = None):
|
350
350
|
"""
|
351
|
-
Manages a JFrog Distribution V2
|
351
|
+
Manages a JFrog Distribution V2 service endpoint within an Azure DevOps organization.
|
352
352
|
|
353
353
|
> **Note:** Using this service endpoint requires you to first install [JFrog Extension](https://marketplace.visualstudio.com/items?itemName=JFrog.jfrog-azure-devops-extension).
|
354
354
|
|
@@ -403,7 +403,7 @@ class ServiceendpointJfrogDistributionV2(pulumi.CustomResource):
|
|
403
403
|
|
404
404
|
## Import
|
405
405
|
|
406
|
-
Azure DevOps
|
406
|
+
Azure DevOps JFrog Distribution V2 Service Endpoint can be imported using the **projectID/serviceEndpointID**, e.g.
|
407
407
|
|
408
408
|
```sh
|
409
409
|
$ pulumi import azuredevops:index/serviceendpointJfrogDistributionV2:ServiceendpointJfrogDistributionV2 example 00000000-0000-0000-0000-000000000000/00000000-0000-0000-0000-000000000000
|
@@ -477,8 +477,8 @@ class ServiceendpointJfrogDistributionV2(pulumi.CustomResource):
|
|
477
477
|
:param str resource_name: The unique name of the resulting resource.
|
478
478
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
479
479
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
480
|
-
:param pulumi.Input[Union['ServiceendpointJfrogDistributionV2AuthenticationBasicArgs', 'ServiceendpointJfrogDistributionV2AuthenticationBasicArgsDict']] authentication_basic:
|
481
|
-
:param pulumi.Input[Union['ServiceendpointJfrogDistributionV2AuthenticationTokenArgs', 'ServiceendpointJfrogDistributionV2AuthenticationTokenArgsDict']] authentication_token:
|
480
|
+
:param pulumi.Input[Union['ServiceendpointJfrogDistributionV2AuthenticationBasicArgs', 'ServiceendpointJfrogDistributionV2AuthenticationBasicArgsDict']] authentication_basic: An `authentication_basic` block as documented below.
|
481
|
+
:param pulumi.Input[Union['ServiceendpointJfrogDistributionV2AuthenticationTokenArgs', 'ServiceendpointJfrogDistributionV2AuthenticationTokenArgsDict']] authentication_token: An `authentication_token` block as documented below.
|
482
482
|
:param pulumi.Input[str] description: The Service Endpoint description.
|
483
483
|
:param pulumi.Input[str] project_id: The ID of the project.
|
484
484
|
:param pulumi.Input[str] service_endpoint_name: The Service Endpoint name.
|
@@ -503,7 +503,7 @@ class ServiceendpointJfrogDistributionV2(pulumi.CustomResource):
|
|
503
503
|
@pulumi.getter(name="authenticationBasic")
|
504
504
|
def authentication_basic(self) -> pulumi.Output[Optional['outputs.ServiceendpointJfrogDistributionV2AuthenticationBasic']]:
|
505
505
|
"""
|
506
|
-
|
506
|
+
An `authentication_basic` block as documented below.
|
507
507
|
"""
|
508
508
|
return pulumi.get(self, "authentication_basic")
|
509
509
|
|
@@ -511,7 +511,7 @@ class ServiceendpointJfrogDistributionV2(pulumi.CustomResource):
|
|
511
511
|
@pulumi.getter(name="authenticationToken")
|
512
512
|
def authentication_token(self) -> pulumi.Output[Optional['outputs.ServiceendpointJfrogDistributionV2AuthenticationToken']]:
|
513
513
|
"""
|
514
|
-
|
514
|
+
An `authentication_token` block as documented below.
|
515
515
|
"""
|
516
516
|
return pulumi.get(self, "authentication_token")
|
517
517
|
|
@@ -35,8 +35,8 @@ class ServiceendpointJfrogPlatformV2Args:
|
|
35
35
|
:param pulumi.Input[str] url: URL of the Artifactory server to connect with.
|
36
36
|
|
37
37
|
> **NOTE:** URL should not end in a slash character.
|
38
|
-
:param pulumi.Input['ServiceendpointJfrogPlatformV2AuthenticationBasicArgs'] authentication_basic:
|
39
|
-
:param pulumi.Input['ServiceendpointJfrogPlatformV2AuthenticationTokenArgs'] authentication_token:
|
38
|
+
:param pulumi.Input['ServiceendpointJfrogPlatformV2AuthenticationBasicArgs'] authentication_basic: An `authentication_basic` block as documented below.
|
39
|
+
:param pulumi.Input['ServiceendpointJfrogPlatformV2AuthenticationTokenArgs'] authentication_token: An `authentication_token` block as documented below.
|
40
40
|
:param pulumi.Input[str] description: The Service Endpoint description.
|
41
41
|
"""
|
42
42
|
pulumi.set(__self__, "project_id", project_id)
|
@@ -93,7 +93,7 @@ class ServiceendpointJfrogPlatformV2Args:
|
|
93
93
|
@pulumi.getter(name="authenticationBasic")
|
94
94
|
def authentication_basic(self) -> Optional[pulumi.Input['ServiceendpointJfrogPlatformV2AuthenticationBasicArgs']]:
|
95
95
|
"""
|
96
|
-
|
96
|
+
An `authentication_basic` block as documented below.
|
97
97
|
"""
|
98
98
|
return pulumi.get(self, "authentication_basic")
|
99
99
|
|
@@ -105,7 +105,7 @@ class ServiceendpointJfrogPlatformV2Args:
|
|
105
105
|
@pulumi.getter(name="authenticationToken")
|
106
106
|
def authentication_token(self) -> Optional[pulumi.Input['ServiceendpointJfrogPlatformV2AuthenticationTokenArgs']]:
|
107
107
|
"""
|
108
|
-
|
108
|
+
An `authentication_token` block as documented below.
|
109
109
|
"""
|
110
110
|
return pulumi.get(self, "authentication_token")
|
111
111
|
|
@@ -147,8 +147,8 @@ class _ServiceendpointJfrogPlatformV2State:
|
|
147
147
|
url: Optional[pulumi.Input[str]] = None):
|
148
148
|
"""
|
149
149
|
Input properties used for looking up and filtering ServiceendpointJfrogPlatformV2 resources.
|
150
|
-
:param pulumi.Input['ServiceendpointJfrogPlatformV2AuthenticationBasicArgs'] authentication_basic:
|
151
|
-
:param pulumi.Input['ServiceendpointJfrogPlatformV2AuthenticationTokenArgs'] authentication_token:
|
150
|
+
:param pulumi.Input['ServiceendpointJfrogPlatformV2AuthenticationBasicArgs'] authentication_basic: An `authentication_basic` block as documented below.
|
151
|
+
:param pulumi.Input['ServiceendpointJfrogPlatformV2AuthenticationTokenArgs'] authentication_token: An `authentication_token` block as documented below.
|
152
152
|
:param pulumi.Input[str] description: The Service Endpoint description.
|
153
153
|
:param pulumi.Input[str] project_id: The ID of the project.
|
154
154
|
:param pulumi.Input[str] service_endpoint_name: The Service Endpoint name.
|
@@ -175,7 +175,7 @@ class _ServiceendpointJfrogPlatformV2State:
|
|
175
175
|
@pulumi.getter(name="authenticationBasic")
|
176
176
|
def authentication_basic(self) -> Optional[pulumi.Input['ServiceendpointJfrogPlatformV2AuthenticationBasicArgs']]:
|
177
177
|
"""
|
178
|
-
|
178
|
+
An `authentication_basic` block as documented below.
|
179
179
|
"""
|
180
180
|
return pulumi.get(self, "authentication_basic")
|
181
181
|
|
@@ -187,7 +187,7 @@ class _ServiceendpointJfrogPlatformV2State:
|
|
187
187
|
@pulumi.getter(name="authenticationToken")
|
188
188
|
def authentication_token(self) -> Optional[pulumi.Input['ServiceendpointJfrogPlatformV2AuthenticationTokenArgs']]:
|
189
189
|
"""
|
190
|
-
|
190
|
+
An `authentication_token` block as documented below.
|
191
191
|
"""
|
192
192
|
return pulumi.get(self, "authentication_token")
|
193
193
|
|
@@ -269,7 +269,7 @@ class ServiceendpointJfrogPlatformV2(pulumi.CustomResource):
|
|
269
269
|
url: Optional[pulumi.Input[str]] = None,
|
270
270
|
__props__=None):
|
271
271
|
"""
|
272
|
-
Manages a JFrog Platform V2
|
272
|
+
Manages a JFrog Platform V2 service endpoint within an Azure DevOps organization.
|
273
273
|
|
274
274
|
> **Note:** Using this service endpoint requires you to first install [JFrog Extension](https://marketplace.visualstudio.com/items?itemName=JFrog.jfrog-azure-devops-extension).
|
275
275
|
|
@@ -324,7 +324,7 @@ class ServiceendpointJfrogPlatformV2(pulumi.CustomResource):
|
|
324
324
|
|
325
325
|
## Import
|
326
326
|
|
327
|
-
Azure DevOps
|
327
|
+
Azure DevOps JFrog Platform V2 Service Endpoint can be imported using the **projectID/serviceEndpointID**, e.g.
|
328
328
|
|
329
329
|
```sh
|
330
330
|
$ pulumi import azuredevops:index/serviceendpointJfrogPlatformV2:ServiceendpointJfrogPlatformV2 example 00000000-0000-0000-0000-000000000000/00000000-0000-0000-0000-000000000000
|
@@ -332,8 +332,8 @@ class ServiceendpointJfrogPlatformV2(pulumi.CustomResource):
|
|
332
332
|
|
333
333
|
:param str resource_name: The name of the resource.
|
334
334
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
335
|
-
:param pulumi.Input[Union['ServiceendpointJfrogPlatformV2AuthenticationBasicArgs', 'ServiceendpointJfrogPlatformV2AuthenticationBasicArgsDict']] authentication_basic:
|
336
|
-
:param pulumi.Input[Union['ServiceendpointJfrogPlatformV2AuthenticationTokenArgs', 'ServiceendpointJfrogPlatformV2AuthenticationTokenArgsDict']] authentication_token:
|
335
|
+
:param pulumi.Input[Union['ServiceendpointJfrogPlatformV2AuthenticationBasicArgs', 'ServiceendpointJfrogPlatformV2AuthenticationBasicArgsDict']] authentication_basic: An `authentication_basic` block as documented below.
|
336
|
+
:param pulumi.Input[Union['ServiceendpointJfrogPlatformV2AuthenticationTokenArgs', 'ServiceendpointJfrogPlatformV2AuthenticationTokenArgsDict']] authentication_token: An `authentication_token` block as documented below.
|
337
337
|
:param pulumi.Input[str] description: The Service Endpoint description.
|
338
338
|
:param pulumi.Input[str] project_id: The ID of the project.
|
339
339
|
:param pulumi.Input[str] service_endpoint_name: The Service Endpoint name.
|
@@ -348,7 +348,7 @@ class ServiceendpointJfrogPlatformV2(pulumi.CustomResource):
|
|
348
348
|
args: ServiceendpointJfrogPlatformV2Args,
|
349
349
|
opts: Optional[pulumi.ResourceOptions] = None):
|
350
350
|
"""
|
351
|
-
Manages a JFrog Platform V2
|
351
|
+
Manages a JFrog Platform V2 service endpoint within an Azure DevOps organization.
|
352
352
|
|
353
353
|
> **Note:** Using this service endpoint requires you to first install [JFrog Extension](https://marketplace.visualstudio.com/items?itemName=JFrog.jfrog-azure-devops-extension).
|
354
354
|
|
@@ -403,7 +403,7 @@ class ServiceendpointJfrogPlatformV2(pulumi.CustomResource):
|
|
403
403
|
|
404
404
|
## Import
|
405
405
|
|
406
|
-
Azure DevOps
|
406
|
+
Azure DevOps JFrog Platform V2 Service Endpoint can be imported using the **projectID/serviceEndpointID**, e.g.
|
407
407
|
|
408
408
|
```sh
|
409
409
|
$ pulumi import azuredevops:index/serviceendpointJfrogPlatformV2:ServiceendpointJfrogPlatformV2 example 00000000-0000-0000-0000-000000000000/00000000-0000-0000-0000-000000000000
|
@@ -477,8 +477,8 @@ class ServiceendpointJfrogPlatformV2(pulumi.CustomResource):
|
|
477
477
|
:param str resource_name: The unique name of the resulting resource.
|
478
478
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
479
479
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
480
|
-
:param pulumi.Input[Union['ServiceendpointJfrogPlatformV2AuthenticationBasicArgs', 'ServiceendpointJfrogPlatformV2AuthenticationBasicArgsDict']] authentication_basic:
|
481
|
-
:param pulumi.Input[Union['ServiceendpointJfrogPlatformV2AuthenticationTokenArgs', 'ServiceendpointJfrogPlatformV2AuthenticationTokenArgsDict']] authentication_token:
|
480
|
+
:param pulumi.Input[Union['ServiceendpointJfrogPlatformV2AuthenticationBasicArgs', 'ServiceendpointJfrogPlatformV2AuthenticationBasicArgsDict']] authentication_basic: An `authentication_basic` block as documented below.
|
481
|
+
:param pulumi.Input[Union['ServiceendpointJfrogPlatformV2AuthenticationTokenArgs', 'ServiceendpointJfrogPlatformV2AuthenticationTokenArgsDict']] authentication_token: An `authentication_token` block as documented below.
|
482
482
|
:param pulumi.Input[str] description: The Service Endpoint description.
|
483
483
|
:param pulumi.Input[str] project_id: The ID of the project.
|
484
484
|
:param pulumi.Input[str] service_endpoint_name: The Service Endpoint name.
|
@@ -503,7 +503,7 @@ class ServiceendpointJfrogPlatformV2(pulumi.CustomResource):
|
|
503
503
|
@pulumi.getter(name="authenticationBasic")
|
504
504
|
def authentication_basic(self) -> pulumi.Output[Optional['outputs.ServiceendpointJfrogPlatformV2AuthenticationBasic']]:
|
505
505
|
"""
|
506
|
-
|
506
|
+
An `authentication_basic` block as documented below.
|
507
507
|
"""
|
508
508
|
return pulumi.get(self, "authentication_basic")
|
509
509
|
|
@@ -511,7 +511,7 @@ class ServiceendpointJfrogPlatformV2(pulumi.CustomResource):
|
|
511
511
|
@pulumi.getter(name="authenticationToken")
|
512
512
|
def authentication_token(self) -> pulumi.Output[Optional['outputs.ServiceendpointJfrogPlatformV2AuthenticationToken']]:
|
513
513
|
"""
|
514
|
-
|
514
|
+
An `authentication_token` block as documented below.
|
515
515
|
"""
|
516
516
|
return pulumi.get(self, "authentication_token")
|
517
517
|
|