pulumi-azuredevops 3.6.0a1737523387__py3-none-any.whl → 3.7.0a1738589303__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.
Files changed (119) hide show
  1. pulumi_azuredevops/__init__.py +64 -0
  2. pulumi_azuredevops/_inputs.py +120 -117
  3. pulumi_azuredevops/area_permissions.py +49 -49
  4. pulumi_azuredevops/branch_policy_auto_reviewers.py +7 -7
  5. pulumi_azuredevops/branch_policy_build_validation.py +7 -7
  6. pulumi_azuredevops/branch_policy_comment_resolution.py +7 -7
  7. pulumi_azuredevops/branch_policy_merge_types.py +7 -7
  8. pulumi_azuredevops/branch_policy_status_check.py +7 -7
  9. pulumi_azuredevops/branch_policy_work_item_linking.py +7 -7
  10. pulumi_azuredevops/build_definition.py +7 -7
  11. pulumi_azuredevops/check_branch_control.py +7 -7
  12. pulumi_azuredevops/check_business_hours.py +7 -7
  13. pulumi_azuredevops/check_exclusive_lock.py +7 -7
  14. pulumi_azuredevops/check_rest_api.py +986 -0
  15. pulumi_azuredevops/feed.py +8 -8
  16. pulumi_azuredevops/feed_permission.py +9 -9
  17. pulumi_azuredevops/feed_retention_policy.py +422 -0
  18. pulumi_azuredevops/get_agent_queue.py +2 -2
  19. pulumi_azuredevops/get_area.py +1 -1
  20. pulumi_azuredevops/get_client_config.py +3 -0
  21. pulumi_azuredevops/get_feed.py +4 -4
  22. pulumi_azuredevops/get_git_repository.py +8 -8
  23. pulumi_azuredevops/get_group.py +4 -4
  24. pulumi_azuredevops/get_groups.py +3 -3
  25. pulumi_azuredevops/get_identity_group.py +3 -0
  26. pulumi_azuredevops/get_identity_groups.py +1 -1
  27. pulumi_azuredevops/get_identity_users.py +5 -5
  28. pulumi_azuredevops/get_pool.py +14 -2
  29. pulumi_azuredevops/get_pools.py +3 -3
  30. pulumi_azuredevops/get_project.py +32 -0
  31. pulumi_azuredevops/get_projects.py +4 -4
  32. pulumi_azuredevops/get_repositories.py +7 -3
  33. pulumi_azuredevops/get_securityrole_definitions.py +4 -4
  34. pulumi_azuredevops/get_service_endpoint_azure_rm.py +5 -5
  35. pulumi_azuredevops/get_service_endpoint_github.py +6 -6
  36. pulumi_azuredevops/get_service_principal.py +153 -0
  37. pulumi_azuredevops/get_serviceendpoint_azurecr.py +1 -1
  38. pulumi_azuredevops/get_serviceendpoint_bitbucket.py +6 -6
  39. pulumi_azuredevops/get_serviceendpoint_npm.py +3 -3
  40. pulumi_azuredevops/get_serviceendpoint_sonarcloud.py +2 -2
  41. pulumi_azuredevops/get_team.py +4 -3
  42. pulumi_azuredevops/get_teams.py +2 -3
  43. pulumi_azuredevops/get_users.py +5 -9
  44. pulumi_azuredevops/git.py +7 -7
  45. pulumi_azuredevops/git_permissions.py +14 -21
  46. pulumi_azuredevops/git_repository_file.py +7 -14
  47. pulumi_azuredevops/group.py +21 -7
  48. pulumi_azuredevops/group_entitlement.py +16 -20
  49. pulumi_azuredevops/group_membership.py +35 -50
  50. pulumi_azuredevops/iterative_permissions.py +34 -34
  51. pulumi_azuredevops/library_permissions.py +75 -75
  52. pulumi_azuredevops/outputs.py +129 -102
  53. pulumi_azuredevops/pipeline_authorization.py +7 -7
  54. pulumi_azuredevops/pool.py +4 -4
  55. pulumi_azuredevops/project.py +114 -63
  56. pulumi_azuredevops/project_features.py +87 -45
  57. pulumi_azuredevops/project_permissions.py +7 -7
  58. pulumi_azuredevops/project_pipeline_settings.py +28 -35
  59. pulumi_azuredevops/project_tags.py +263 -0
  60. pulumi_azuredevops/pulumi-plugin.json +1 -1
  61. pulumi_azuredevops/queue.py +7 -14
  62. pulumi_azuredevops/repository_policy_author_email_pattern.py +21 -14
  63. pulumi_azuredevops/repository_policy_max_file_size.py +7 -7
  64. pulumi_azuredevops/resource_authorization.py +35 -35
  65. pulumi_azuredevops/service_endpoint_artifactory.py +24 -18
  66. pulumi_azuredevops/service_endpoint_aws.py +2 -2
  67. pulumi_azuredevops/service_endpoint_azure_ecr.py +13 -15
  68. pulumi_azuredevops/service_endpoint_azure_rm.py +25 -25
  69. pulumi_azuredevops/service_endpoint_bit_bucket.py +2 -2
  70. pulumi_azuredevops/service_endpoint_docker_registry.py +2 -2
  71. pulumi_azuredevops/service_endpoint_generic.py +2 -2
  72. pulumi_azuredevops/service_endpoint_generic_git.py +4 -8
  73. pulumi_azuredevops/service_endpoint_git_hub.py +15 -2
  74. pulumi_azuredevops/service_endpoint_git_hub_enterprise.py +15 -2
  75. pulumi_azuredevops/service_endpoint_kubernetes.py +23 -23
  76. pulumi_azuredevops/service_endpoint_npm.py +4 -4
  77. pulumi_azuredevops/service_endpoint_pipeline.py +4 -4
  78. pulumi_azuredevops/service_endpoint_service_fabric.py +48 -9
  79. pulumi_azuredevops/service_endpoint_sonar_cloud.py +11 -11
  80. pulumi_azuredevops/service_endpoint_sonar_qube.py +11 -11
  81. pulumi_azuredevops/service_endpoint_ssh.py +2 -6
  82. pulumi_azuredevops/service_principal_entitlement.py +386 -0
  83. pulumi_azuredevops/serviceendpoint_argocd.py +2 -2
  84. pulumi_azuredevops/serviceendpoint_azure_service_bus.py +2 -2
  85. pulumi_azuredevops/serviceendpoint_checkmarx_one.py +627 -0
  86. pulumi_azuredevops/serviceendpoint_checkmarx_sast.py +575 -0
  87. pulumi_azuredevops/serviceendpoint_checkmarx_sca.py +674 -0
  88. pulumi_azuredevops/serviceendpoint_dynamics_lifecycle_services.py +2 -2
  89. pulumi_azuredevops/serviceendpoint_externaltfs.py +63 -11
  90. pulumi_azuredevops/serviceendpoint_gcp_terraform.py +2 -2
  91. pulumi_azuredevops/serviceendpoint_incomingwebhook.py +2 -2
  92. pulumi_azuredevops/serviceendpoint_jenkins.py +2 -2
  93. pulumi_azuredevops/serviceendpoint_jfrog_artifactory_v2.py +18 -18
  94. pulumi_azuredevops/serviceendpoint_jfrog_distribution_v2.py +18 -18
  95. pulumi_azuredevops/serviceendpoint_jfrog_platform_v2.py +18 -18
  96. pulumi_azuredevops/serviceendpoint_jfrog_xray_v2.py +18 -18
  97. pulumi_azuredevops/serviceendpoint_maven.py +2 -2
  98. pulumi_azuredevops/serviceendpoint_nexus.py +2 -2
  99. pulumi_azuredevops/serviceendpoint_nuget.py +2 -2
  100. pulumi_azuredevops/serviceendpoint_octopusdeploy.py +2 -2
  101. pulumi_azuredevops/serviceendpoint_permissions.py +40 -40
  102. pulumi_azuredevops/serviceendpoint_snyk.py +2 -2
  103. pulumi_azuredevops/serviceendpoint_visualstudiomarketplace.py +4 -6
  104. pulumi_azuredevops/servicehook_permissions.py +51 -51
  105. pulumi_azuredevops/servicehook_storage_queue_pipelines.py +4 -4
  106. pulumi_azuredevops/tagging_permissions.py +49 -49
  107. pulumi_azuredevops/team.py +76 -56
  108. pulumi_azuredevops/team_administrators.py +83 -56
  109. pulumi_azuredevops/team_members.py +56 -49
  110. pulumi_azuredevops/variable_group.py +4 -2
  111. pulumi_azuredevops/variable_group_permissions.py +75 -75
  112. pulumi_azuredevops/wiki.py +15 -2
  113. pulumi_azuredevops/wiki_page.py +2 -2
  114. pulumi_azuredevops/work_item_query_permissions.py +7 -7
  115. {pulumi_azuredevops-3.6.0a1737523387.dist-info → pulumi_azuredevops-3.7.0a1738589303.dist-info}/METADATA +1 -1
  116. pulumi_azuredevops-3.7.0a1738589303.dist-info/RECORD +148 -0
  117. pulumi_azuredevops-3.6.0a1737523387.dist-info/RECORD +0 -140
  118. {pulumi_azuredevops-3.6.0a1737523387.dist-info → pulumi_azuredevops-3.7.0a1738589303.dist-info}/WHEEL +0 -0
  119. {pulumi_azuredevops-3.6.0a1737523387.dist-info → pulumi_azuredevops-3.7.0a1738589303.dist-info}/top_level.txt +0 -0
@@ -35,8 +35,8 @@ class ServiceendpointJfrogXrayV2Args:
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['ServiceendpointJfrogXrayV2AuthenticationBasicArgs'] authentication_basic: A `authentication_basic` block as documented below.
39
- :param pulumi.Input['ServiceendpointJfrogXrayV2AuthenticationTokenArgs'] authentication_token: A `authentication_token` block as documented below.
38
+ :param pulumi.Input['ServiceendpointJfrogXrayV2AuthenticationBasicArgs'] authentication_basic: An `authentication_basic` block as documented below.
39
+ :param pulumi.Input['ServiceendpointJfrogXrayV2AuthenticationTokenArgs'] 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 ServiceendpointJfrogXrayV2Args:
93
93
  @pulumi.getter(name="authenticationBasic")
94
94
  def authentication_basic(self) -> Optional[pulumi.Input['ServiceendpointJfrogXrayV2AuthenticationBasicArgs']]:
95
95
  """
96
- A `authentication_basic` block as documented below.
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 ServiceendpointJfrogXrayV2Args:
105
105
  @pulumi.getter(name="authenticationToken")
106
106
  def authentication_token(self) -> Optional[pulumi.Input['ServiceendpointJfrogXrayV2AuthenticationTokenArgs']]:
107
107
  """
108
- A `authentication_token` block as documented below.
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 _ServiceendpointJfrogXrayV2State:
147
147
  url: Optional[pulumi.Input[str]] = None):
148
148
  """
149
149
  Input properties used for looking up and filtering ServiceendpointJfrogXrayV2 resources.
150
- :param pulumi.Input['ServiceendpointJfrogXrayV2AuthenticationBasicArgs'] authentication_basic: A `authentication_basic` block as documented below.
151
- :param pulumi.Input['ServiceendpointJfrogXrayV2AuthenticationTokenArgs'] authentication_token: A `authentication_token` block as documented below.
150
+ :param pulumi.Input['ServiceendpointJfrogXrayV2AuthenticationBasicArgs'] authentication_basic: An `authentication_basic` block as documented below.
151
+ :param pulumi.Input['ServiceendpointJfrogXrayV2AuthenticationTokenArgs'] 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 _ServiceendpointJfrogXrayV2State:
175
175
  @pulumi.getter(name="authenticationBasic")
176
176
  def authentication_basic(self) -> Optional[pulumi.Input['ServiceendpointJfrogXrayV2AuthenticationBasicArgs']]:
177
177
  """
178
- A `authentication_basic` block as documented below.
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 _ServiceendpointJfrogXrayV2State:
187
187
  @pulumi.getter(name="authenticationToken")
188
188
  def authentication_token(self) -> Optional[pulumi.Input['ServiceendpointJfrogXrayV2AuthenticationTokenArgs']]:
189
189
  """
190
- A `authentication_token` block as documented below.
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 ServiceendpointJfrogXrayV2(pulumi.CustomResource):
269
269
  url: Optional[pulumi.Input[str]] = None,
270
270
  __props__=None):
271
271
  """
272
- Manages an JFrog XRay V2 server endpoint within an Azure DevOps organization.
272
+ Manages an JFrog XRay 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 ServiceendpointJfrogXrayV2(pulumi.CustomResource):
324
324
 
325
325
  ## Import
326
326
 
327
- Azure DevOps Service Endpoint JFrog XRay V2 can be imported using the **projectID/serviceEndpointID**, e.g.
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/serviceendpointJfrogXrayV2:ServiceendpointJfrogXrayV2 example 00000000-0000-0000-0000-000000000000/00000000-0000-0000-0000-000000000000
@@ -332,8 +332,8 @@ class ServiceendpointJfrogXrayV2(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['ServiceendpointJfrogXrayV2AuthenticationBasicArgs', 'ServiceendpointJfrogXrayV2AuthenticationBasicArgsDict']] authentication_basic: A `authentication_basic` block as documented below.
336
- :param pulumi.Input[Union['ServiceendpointJfrogXrayV2AuthenticationTokenArgs', 'ServiceendpointJfrogXrayV2AuthenticationTokenArgsDict']] authentication_token: A `authentication_token` block as documented below.
335
+ :param pulumi.Input[Union['ServiceendpointJfrogXrayV2AuthenticationBasicArgs', 'ServiceendpointJfrogXrayV2AuthenticationBasicArgsDict']] authentication_basic: An `authentication_basic` block as documented below.
336
+ :param pulumi.Input[Union['ServiceendpointJfrogXrayV2AuthenticationTokenArgs', 'ServiceendpointJfrogXrayV2AuthenticationTokenArgsDict']] 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 ServiceendpointJfrogXrayV2(pulumi.CustomResource):
348
348
  args: ServiceendpointJfrogXrayV2Args,
349
349
  opts: Optional[pulumi.ResourceOptions] = None):
350
350
  """
351
- Manages an JFrog XRay V2 server endpoint within an Azure DevOps organization.
351
+ Manages an JFrog XRay 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 ServiceendpointJfrogXrayV2(pulumi.CustomResource):
403
403
 
404
404
  ## Import
405
405
 
406
- Azure DevOps Service Endpoint JFrog XRay V2 can be imported using the **projectID/serviceEndpointID**, e.g.
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/serviceendpointJfrogXrayV2:ServiceendpointJfrogXrayV2 example 00000000-0000-0000-0000-000000000000/00000000-0000-0000-0000-000000000000
@@ -477,8 +477,8 @@ class ServiceendpointJfrogXrayV2(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['ServiceendpointJfrogXrayV2AuthenticationBasicArgs', 'ServiceendpointJfrogXrayV2AuthenticationBasicArgsDict']] authentication_basic: A `authentication_basic` block as documented below.
481
- :param pulumi.Input[Union['ServiceendpointJfrogXrayV2AuthenticationTokenArgs', 'ServiceendpointJfrogXrayV2AuthenticationTokenArgsDict']] authentication_token: A `authentication_token` block as documented below.
480
+ :param pulumi.Input[Union['ServiceendpointJfrogXrayV2AuthenticationBasicArgs', 'ServiceendpointJfrogXrayV2AuthenticationBasicArgsDict']] authentication_basic: An `authentication_basic` block as documented below.
481
+ :param pulumi.Input[Union['ServiceendpointJfrogXrayV2AuthenticationTokenArgs', 'ServiceendpointJfrogXrayV2AuthenticationTokenArgsDict']] 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 ServiceendpointJfrogXrayV2(pulumi.CustomResource):
503
503
  @pulumi.getter(name="authenticationBasic")
504
504
  def authentication_basic(self) -> pulumi.Output[Optional['outputs.ServiceendpointJfrogXrayV2AuthenticationBasic']]:
505
505
  """
506
- A `authentication_basic` block as documented below.
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 ServiceendpointJfrogXrayV2(pulumi.CustomResource):
511
511
  @pulumi.getter(name="authenticationToken")
512
512
  def authentication_token(self) -> pulumi.Output[Optional['outputs.ServiceendpointJfrogXrayV2AuthenticationToken']]:
513
513
  """
514
- A `authentication_token` block as documented below.
514
+ An `authentication_token` block as documented below.
515
515
  """
516
516
  return pulumi.get(self, "authentication_token")
517
517
 
@@ -336,7 +336,7 @@ class ServiceendpointMaven(pulumi.CustomResource):
336
336
 
337
337
  ## Import
338
338
 
339
- Service Connection Maven can be imported using the `projectId/id` or or `projectName/id`, e.g.
339
+ Azure DevOps Maven Service Connection can be imported using the `projectId/id` or `projectName/id`, e.g.
340
340
 
341
341
  ```sh
342
342
  $ pulumi import azuredevops:index/serviceendpointMaven:ServiceendpointMaven example projectName/00000000-0000-0000-0000-000000000000
@@ -409,7 +409,7 @@ class ServiceendpointMaven(pulumi.CustomResource):
409
409
 
410
410
  ## Import
411
411
 
412
- Service Connection Maven can be imported using the `projectId/id` or or `projectName/id`, e.g.
412
+ Azure DevOps Maven Service Connection can be imported using the `projectId/id` or `projectName/id`, e.g.
413
413
 
414
414
  ```sh
415
415
  $ pulumi import azuredevops:index/serviceendpointMaven:ServiceendpointMaven example projectName/00000000-0000-0000-0000-000000000000
@@ -275,7 +275,7 @@ class ServiceendpointNexus(pulumi.CustomResource):
275
275
 
276
276
  ## Import
277
277
 
278
- Service Connection Nexus can be imported using the `projectId/id` or or `projectName/id`, e.g.
278
+ Azure DevOps Nexus Service Connection can be imported using the `projectId/id` or or `projectName/id`, e.g.
279
279
 
280
280
  ```sh
281
281
  $ pulumi import azuredevops:index/serviceendpointNexus:ServiceendpointNexus example projectName/00000000-0000-0000-0000-000000000000
@@ -322,7 +322,7 @@ class ServiceendpointNexus(pulumi.CustomResource):
322
322
 
323
323
  ## Import
324
324
 
325
- Service Connection Nexus can be imported using the `projectId/id` or or `projectName/id`, e.g.
325
+ Azure DevOps Nexus Service Connection can be imported using the `projectId/id` or or `projectName/id`, e.g.
326
326
 
327
327
  ```sh
328
328
  $ pulumi import azuredevops:index/serviceendpointNexus:ServiceendpointNexus example projectName/00000000-0000-0000-0000-000000000000
@@ -352,7 +352,7 @@ class ServiceendpointNuget(pulumi.CustomResource):
352
352
 
353
353
  ## Import
354
354
 
355
- Azure DevOps Service Endpoint NuGet can be imported using **projectID/serviceEndpointID** or **projectName/serviceEndpointID**
355
+ Azure DevOps NuGet Service Endpoint can be imported using **projectID/serviceEndpointID** or **projectName/serviceEndpointID**
356
356
 
357
357
  ```sh
358
358
  $ pulumi import azuredevops:index/serviceendpointNuget:ServiceendpointNuget example 00000000-0000-0000-0000-000000000000/00000000-0000-0000-0000-000000000000
@@ -404,7 +404,7 @@ class ServiceendpointNuget(pulumi.CustomResource):
404
404
 
405
405
  ## Import
406
406
 
407
- Azure DevOps Service Endpoint NuGet can be imported using **projectID/serviceEndpointID** or **projectName/serviceEndpointID**
407
+ Azure DevOps NuGet Service Endpoint can be imported using **projectID/serviceEndpointID** or **projectName/serviceEndpointID**
408
408
 
409
409
  ```sh
410
410
  $ pulumi import azuredevops:index/serviceendpointNuget:ServiceendpointNuget example 00000000-0000-0000-0000-000000000000/00000000-0000-0000-0000-000000000000
@@ -278,7 +278,7 @@ class ServiceendpointOctopusdeploy(pulumi.CustomResource):
278
278
 
279
279
  ## Import
280
280
 
281
- Azure DevOps Service Endpoint Octopus Deploy can be imported using **projectID/serviceEndpointID** or **projectName/serviceEndpointID**
281
+ Azure DevOps Octopus Deploy Service Endpoint can be imported using **projectID/serviceEndpointID** or **projectName/serviceEndpointID**
282
282
 
283
283
  ```sh
284
284
  $ pulumi import azuredevops:index/serviceendpointOctopusdeploy:ServiceendpointOctopusdeploy example 00000000-0000-0000-0000-000000000000/00000000-0000-0000-0000-000000000000
@@ -327,7 +327,7 @@ class ServiceendpointOctopusdeploy(pulumi.CustomResource):
327
327
 
328
328
  ## Import
329
329
 
330
- Azure DevOps Service Endpoint Octopus Deploy can be imported using **projectID/serviceEndpointID** or **projectName/serviceEndpointID**
330
+ Azure DevOps Octopus Deploy Service Endpoint can be imported using **projectID/serviceEndpointID** or **projectName/serviceEndpointID**
331
331
 
332
332
  ```sh
333
333
  $ pulumi import azuredevops:index/serviceendpointOctopusdeploy:ServiceendpointOctopusdeploy example 00000000-0000-0000-0000-000000000000/00000000-0000-0000-0000-000000000000
@@ -27,17 +27,17 @@ class ServiceendpointPermissionsArgs:
27
27
  """
28
28
  The set of arguments for constructing a ServiceendpointPermissions resource.
29
29
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] permissions: the permissions to assign. The following permissions are available.
30
- :param pulumi.Input[str] principal: The **group** principal to assign the permissions.
31
- :param pulumi.Input[str] project_id: The ID of the project.
32
- :param pulumi.Input[bool] replace: Replace (`true`) or merge (`false`) the permissions. Default: `true`
33
30
 
34
31
  | Permission | Description |
35
- | ----------------- | ----------------------------------- |
32
+ |-------------------|-------------------------------------|
36
33
  | Use | Use service endpoint |
37
34
  | Administer | Full control over service endpoints |
38
35
  | Create | Create service endpoints |
39
36
  | ViewAuthorization | View authorizations |
40
37
  | ViewEndpoint | View service endpoint properties |
38
+ :param pulumi.Input[str] principal: The **group** principal to assign the permissions.
39
+ :param pulumi.Input[str] project_id: The ID of the project.
40
+ :param pulumi.Input[bool] replace: Replace (`true`) or merge (`false`) the permissions. Default: `true`
41
41
  :param pulumi.Input[str] serviceendpoint_id: The id of the service endpoint to assign the permissions.
42
42
  """
43
43
  pulumi.set(__self__, "permissions", permissions)
@@ -53,6 +53,14 @@ class ServiceendpointPermissionsArgs:
53
53
  def permissions(self) -> pulumi.Input[Mapping[str, pulumi.Input[str]]]:
54
54
  """
55
55
  the permissions to assign. The following permissions are available.
56
+
57
+ | Permission | Description |
58
+ |-------------------|-------------------------------------|
59
+ | Use | Use service endpoint |
60
+ | Administer | Full control over service endpoints |
61
+ | Create | Create service endpoints |
62
+ | ViewAuthorization | View authorizations |
63
+ | ViewEndpoint | View service endpoint properties |
56
64
  """
57
65
  return pulumi.get(self, "permissions")
58
66
 
@@ -89,14 +97,6 @@ class ServiceendpointPermissionsArgs:
89
97
  def replace(self) -> Optional[pulumi.Input[bool]]:
90
98
  """
91
99
  Replace (`true`) or merge (`false`) the permissions. Default: `true`
92
-
93
- | Permission | Description |
94
- | ----------------- | ----------------------------------- |
95
- | Use | Use service endpoint |
96
- | Administer | Full control over service endpoints |
97
- | Create | Create service endpoints |
98
- | ViewAuthorization | View authorizations |
99
- | ViewEndpoint | View service endpoint properties |
100
100
  """
101
101
  return pulumi.get(self, "replace")
102
102
 
@@ -128,17 +128,17 @@ class _ServiceendpointPermissionsState:
128
128
  """
129
129
  Input properties used for looking up and filtering ServiceendpointPermissions resources.
130
130
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] permissions: the permissions to assign. The following permissions are available.
131
- :param pulumi.Input[str] principal: The **group** principal to assign the permissions.
132
- :param pulumi.Input[str] project_id: The ID of the project.
133
- :param pulumi.Input[bool] replace: Replace (`true`) or merge (`false`) the permissions. Default: `true`
134
131
 
135
132
  | Permission | Description |
136
- | ----------------- | ----------------------------------- |
133
+ |-------------------|-------------------------------------|
137
134
  | Use | Use service endpoint |
138
135
  | Administer | Full control over service endpoints |
139
136
  | Create | Create service endpoints |
140
137
  | ViewAuthorization | View authorizations |
141
138
  | ViewEndpoint | View service endpoint properties |
139
+ :param pulumi.Input[str] principal: The **group** principal to assign the permissions.
140
+ :param pulumi.Input[str] project_id: The ID of the project.
141
+ :param pulumi.Input[bool] replace: Replace (`true`) or merge (`false`) the permissions. Default: `true`
142
142
  :param pulumi.Input[str] serviceendpoint_id: The id of the service endpoint to assign the permissions.
143
143
  """
144
144
  if permissions is not None:
@@ -157,6 +157,14 @@ class _ServiceendpointPermissionsState:
157
157
  def permissions(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
158
158
  """
159
159
  the permissions to assign. The following permissions are available.
160
+
161
+ | Permission | Description |
162
+ |-------------------|-------------------------------------|
163
+ | Use | Use service endpoint |
164
+ | Administer | Full control over service endpoints |
165
+ | Create | Create service endpoints |
166
+ | ViewAuthorization | View authorizations |
167
+ | ViewEndpoint | View service endpoint properties |
160
168
  """
161
169
  return pulumi.get(self, "permissions")
162
170
 
@@ -193,14 +201,6 @@ class _ServiceendpointPermissionsState:
193
201
  def replace(self) -> Optional[pulumi.Input[bool]]:
194
202
  """
195
203
  Replace (`true`) or merge (`false`) the permissions. Default: `true`
196
-
197
- | Permission | Description |
198
- | ----------------- | ----------------------------------- |
199
- | Use | Use service endpoint |
200
- | Administer | Full control over service endpoints |
201
- | Create | Create service endpoints |
202
- | ViewAuthorization | View authorizations |
203
- | ViewEndpoint | View service endpoint properties |
204
204
  """
205
205
  return pulumi.get(self, "replace")
206
206
 
@@ -301,17 +301,17 @@ class ServiceendpointPermissions(pulumi.CustomResource):
301
301
  :param str resource_name: The name of the resource.
302
302
  :param pulumi.ResourceOptions opts: Options for the resource.
303
303
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] permissions: the permissions to assign. The following permissions are available.
304
- :param pulumi.Input[str] principal: The **group** principal to assign the permissions.
305
- :param pulumi.Input[str] project_id: The ID of the project.
306
- :param pulumi.Input[bool] replace: Replace (`true`) or merge (`false`) the permissions. Default: `true`
307
304
 
308
305
  | Permission | Description |
309
- | ----------------- | ----------------------------------- |
306
+ |-------------------|-------------------------------------|
310
307
  | Use | Use service endpoint |
311
308
  | Administer | Full control over service endpoints |
312
309
  | Create | Create service endpoints |
313
310
  | ViewAuthorization | View authorizations |
314
311
  | ViewEndpoint | View service endpoint properties |
312
+ :param pulumi.Input[str] principal: The **group** principal to assign the permissions.
313
+ :param pulumi.Input[str] project_id: The ID of the project.
314
+ :param pulumi.Input[bool] replace: Replace (`true`) or merge (`false`) the permissions. Default: `true`
315
315
  :param pulumi.Input[str] serviceendpoint_id: The id of the service endpoint to assign the permissions.
316
316
  """
317
317
  ...
@@ -449,17 +449,17 @@ class ServiceendpointPermissions(pulumi.CustomResource):
449
449
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
450
450
  :param pulumi.ResourceOptions opts: Options for the resource.
451
451
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] permissions: the permissions to assign. The following permissions are available.
452
- :param pulumi.Input[str] principal: The **group** principal to assign the permissions.
453
- :param pulumi.Input[str] project_id: The ID of the project.
454
- :param pulumi.Input[bool] replace: Replace (`true`) or merge (`false`) the permissions. Default: `true`
455
452
 
456
453
  | Permission | Description |
457
- | ----------------- | ----------------------------------- |
454
+ |-------------------|-------------------------------------|
458
455
  | Use | Use service endpoint |
459
456
  | Administer | Full control over service endpoints |
460
457
  | Create | Create service endpoints |
461
458
  | ViewAuthorization | View authorizations |
462
459
  | ViewEndpoint | View service endpoint properties |
460
+ :param pulumi.Input[str] principal: The **group** principal to assign the permissions.
461
+ :param pulumi.Input[str] project_id: The ID of the project.
462
+ :param pulumi.Input[bool] replace: Replace (`true`) or merge (`false`) the permissions. Default: `true`
463
463
  :param pulumi.Input[str] serviceendpoint_id: The id of the service endpoint to assign the permissions.
464
464
  """
465
465
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
@@ -478,6 +478,14 @@ class ServiceendpointPermissions(pulumi.CustomResource):
478
478
  def permissions(self) -> pulumi.Output[Mapping[str, str]]:
479
479
  """
480
480
  the permissions to assign. The following permissions are available.
481
+
482
+ | Permission | Description |
483
+ |-------------------|-------------------------------------|
484
+ | Use | Use service endpoint |
485
+ | Administer | Full control over service endpoints |
486
+ | Create | Create service endpoints |
487
+ | ViewAuthorization | View authorizations |
488
+ | ViewEndpoint | View service endpoint properties |
481
489
  """
482
490
  return pulumi.get(self, "permissions")
483
491
 
@@ -502,14 +510,6 @@ class ServiceendpointPermissions(pulumi.CustomResource):
502
510
  def replace(self) -> pulumi.Output[Optional[bool]]:
503
511
  """
504
512
  Replace (`true`) or merge (`false`) the permissions. Default: `true`
505
-
506
- | Permission | Description |
507
- | ----------------- | ----------------------------------- |
508
- | Use | Use service endpoint |
509
- | Administer | Full control over service endpoints |
510
- | Create | Create service endpoints |
511
- | ViewAuthorization | View authorizations |
512
- | ViewEndpoint | View service endpoint properties |
513
513
  """
514
514
  return pulumi.get(self, "replace")
515
515
 
@@ -245,7 +245,7 @@ class ServiceendpointSnyk(pulumi.CustomResource):
245
245
 
246
246
  ## Import
247
247
 
248
- Azure DevOps Service Endpoint Snyk can be imported using **projectID/serviceEndpointID** or **projectName/serviceEndpointID**
248
+ Azure DevOps Snyk Service Endpoint can be imported using **projectID/serviceEndpointID** or **projectName/serviceEndpointID**
249
249
 
250
250
  ```sh
251
251
  $ pulumi import azuredevops:index/serviceendpointSnyk:ServiceendpointSnyk example 00000000-0000-0000-0000-000000000000/00000000-0000-0000-0000-000000000000
@@ -293,7 +293,7 @@ class ServiceendpointSnyk(pulumi.CustomResource):
293
293
 
294
294
  ## Import
295
295
 
296
- Azure DevOps Service Endpoint Snyk can be imported using **projectID/serviceEndpointID** or **projectName/serviceEndpointID**
296
+ Azure DevOps Snyk Service Endpoint can be imported using **projectID/serviceEndpointID** or **projectName/serviceEndpointID**
297
297
 
298
298
  ```sh
299
299
  $ pulumi import azuredevops:index/serviceendpointSnyk:ServiceendpointSnyk example 00000000-0000-0000-0000-000000000000/00000000-0000-0000-0000-000000000000
@@ -265,8 +265,7 @@ class ServiceendpointVisualstudiomarketplace(pulumi.CustomResource):
265
265
 
266
266
  ## Example Usage
267
267
 
268
- ### With Token
269
-
268
+ ### Authorize with token
270
269
  ```python
271
270
  import pulumi
272
271
  import pulumi_azuredevops as azuredevops
@@ -287,7 +286,7 @@ class ServiceendpointVisualstudiomarketplace(pulumi.CustomResource):
287
286
  description="Managed by Pulumi")
288
287
  ```
289
288
 
290
- ### With Username And Password
289
+ ### Authorize with username and password
291
290
 
292
291
  ```python
293
292
  import pulumi
@@ -343,8 +342,7 @@ class ServiceendpointVisualstudiomarketplace(pulumi.CustomResource):
343
342
 
344
343
  ## Example Usage
345
344
 
346
- ### With Token
347
-
345
+ ### Authorize with token
348
346
  ```python
349
347
  import pulumi
350
348
  import pulumi_azuredevops as azuredevops
@@ -365,7 +363,7 @@ class ServiceendpointVisualstudiomarketplace(pulumi.CustomResource):
365
363
  description="Managed by Pulumi")
366
364
  ```
367
365
 
368
- ### With Username And Password
366
+ ### Authorize with username and password
369
367
 
370
368
  ```python
371
369
  import pulumi
@@ -26,16 +26,16 @@ class ServicehookPermissionsArgs:
26
26
  """
27
27
  The set of arguments for constructing a ServicehookPermissions resource.
28
28
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] permissions: the permissions to assign. The following permissions are available.
29
+
30
+ | Name | Permission Description |
31
+ |---------------------|------------------------|
32
+ | ViewSubscriptions | View Subscriptions |
33
+ | EditSubscriptions | Edit Subscription |
34
+ | DeleteSubscriptions | Delete Subscriptions |
35
+ | PublishEvents | Publish Events |
29
36
  :param pulumi.Input[str] principal: The **group** principal to assign the permissions.
30
37
  :param pulumi.Input[str] project_id: The ID of the project.
31
38
  :param pulumi.Input[bool] replace: Replace (`true`) or merge (`false`) the permissions. Default: `true`
32
-
33
- | Name | Permission Description |
34
- | ------------------ | ------------------------ |
35
- | ViewSubscriptions | View Subscriptions |
36
- | EditSubscriptions | Edit Subscription |
37
- | DeleteSubscriptions| Delete Subscriptions |
38
- | PublishEvents | Publish Events |
39
39
  """
40
40
  pulumi.set(__self__, "permissions", permissions)
41
41
  pulumi.set(__self__, "principal", principal)
@@ -49,6 +49,13 @@ class ServicehookPermissionsArgs:
49
49
  def permissions(self) -> pulumi.Input[Mapping[str, pulumi.Input[str]]]:
50
50
  """
51
51
  the permissions to assign. The following permissions are available.
52
+
53
+ | Name | Permission Description |
54
+ |---------------------|------------------------|
55
+ | ViewSubscriptions | View Subscriptions |
56
+ | EditSubscriptions | Edit Subscription |
57
+ | DeleteSubscriptions | Delete Subscriptions |
58
+ | PublishEvents | Publish Events |
52
59
  """
53
60
  return pulumi.get(self, "permissions")
54
61
 
@@ -85,13 +92,6 @@ class ServicehookPermissionsArgs:
85
92
  def replace(self) -> Optional[pulumi.Input[bool]]:
86
93
  """
87
94
  Replace (`true`) or merge (`false`) the permissions. Default: `true`
88
-
89
- | Name | Permission Description |
90
- | ------------------ | ------------------------ |
91
- | ViewSubscriptions | View Subscriptions |
92
- | EditSubscriptions | Edit Subscription |
93
- | DeleteSubscriptions| Delete Subscriptions |
94
- | PublishEvents | Publish Events |
95
95
  """
96
96
  return pulumi.get(self, "replace")
97
97
 
@@ -110,16 +110,16 @@ class _ServicehookPermissionsState:
110
110
  """
111
111
  Input properties used for looking up and filtering ServicehookPermissions resources.
112
112
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] permissions: the permissions to assign. The following permissions are available.
113
+
114
+ | Name | Permission Description |
115
+ |---------------------|------------------------|
116
+ | ViewSubscriptions | View Subscriptions |
117
+ | EditSubscriptions | Edit Subscription |
118
+ | DeleteSubscriptions | Delete Subscriptions |
119
+ | PublishEvents | Publish Events |
113
120
  :param pulumi.Input[str] principal: The **group** principal to assign the permissions.
114
121
  :param pulumi.Input[str] project_id: The ID of the project.
115
122
  :param pulumi.Input[bool] replace: Replace (`true`) or merge (`false`) the permissions. Default: `true`
116
-
117
- | Name | Permission Description |
118
- | ------------------ | ------------------------ |
119
- | ViewSubscriptions | View Subscriptions |
120
- | EditSubscriptions | Edit Subscription |
121
- | DeleteSubscriptions| Delete Subscriptions |
122
- | PublishEvents | Publish Events |
123
123
  """
124
124
  if permissions is not None:
125
125
  pulumi.set(__self__, "permissions", permissions)
@@ -135,6 +135,13 @@ class _ServicehookPermissionsState:
135
135
  def permissions(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
136
136
  """
137
137
  the permissions to assign. The following permissions are available.
138
+
139
+ | Name | Permission Description |
140
+ |---------------------|------------------------|
141
+ | ViewSubscriptions | View Subscriptions |
142
+ | EditSubscriptions | Edit Subscription |
143
+ | DeleteSubscriptions | Delete Subscriptions |
144
+ | PublishEvents | Publish Events |
138
145
  """
139
146
  return pulumi.get(self, "permissions")
140
147
 
@@ -171,13 +178,6 @@ class _ServicehookPermissionsState:
171
178
  def replace(self) -> Optional[pulumi.Input[bool]]:
172
179
  """
173
180
  Replace (`true`) or merge (`false`) the permissions. Default: `true`
174
-
175
- | Name | Permission Description |
176
- | ------------------ | ------------------------ |
177
- | ViewSubscriptions | View Subscriptions |
178
- | EditSubscriptions | Edit Subscription |
179
- | DeleteSubscriptions| Delete Subscriptions |
180
- | PublishEvents | Publish Events |
181
181
  """
182
182
  return pulumi.get(self, "replace")
183
183
 
@@ -197,7 +197,7 @@ class ServicehookPermissions(pulumi.CustomResource):
197
197
  replace: Optional[pulumi.Input[bool]] = None,
198
198
  __props__=None):
199
199
  """
200
- Manages permissions for service hooks
200
+ Manages permissions for Service Hook permissions.
201
201
 
202
202
  ## Permission levels
203
203
 
@@ -244,16 +244,16 @@ class ServicehookPermissions(pulumi.CustomResource):
244
244
  :param str resource_name: The name of the resource.
245
245
  :param pulumi.ResourceOptions opts: Options for the resource.
246
246
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] permissions: the permissions to assign. The following permissions are available.
247
+
248
+ | Name | Permission Description |
249
+ |---------------------|------------------------|
250
+ | ViewSubscriptions | View Subscriptions |
251
+ | EditSubscriptions | Edit Subscription |
252
+ | DeleteSubscriptions | Delete Subscriptions |
253
+ | PublishEvents | Publish Events |
247
254
  :param pulumi.Input[str] principal: The **group** principal to assign the permissions.
248
255
  :param pulumi.Input[str] project_id: The ID of the project.
249
256
  :param pulumi.Input[bool] replace: Replace (`true`) or merge (`false`) the permissions. Default: `true`
250
-
251
- | Name | Permission Description |
252
- | ------------------ | ------------------------ |
253
- | ViewSubscriptions | View Subscriptions |
254
- | EditSubscriptions | Edit Subscription |
255
- | DeleteSubscriptions| Delete Subscriptions |
256
- | PublishEvents | Publish Events |
257
257
  """
258
258
  ...
259
259
  @overload
@@ -262,7 +262,7 @@ class ServicehookPermissions(pulumi.CustomResource):
262
262
  args: ServicehookPermissionsArgs,
263
263
  opts: Optional[pulumi.ResourceOptions] = None):
264
264
  """
265
- Manages permissions for service hooks
265
+ Manages permissions for Service Hook permissions.
266
266
 
267
267
  ## Permission levels
268
268
 
@@ -364,16 +364,16 @@ class ServicehookPermissions(pulumi.CustomResource):
364
364
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
365
365
  :param pulumi.ResourceOptions opts: Options for the resource.
366
366
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] permissions: the permissions to assign. The following permissions are available.
367
+
368
+ | Name | Permission Description |
369
+ |---------------------|------------------------|
370
+ | ViewSubscriptions | View Subscriptions |
371
+ | EditSubscriptions | Edit Subscription |
372
+ | DeleteSubscriptions | Delete Subscriptions |
373
+ | PublishEvents | Publish Events |
367
374
  :param pulumi.Input[str] principal: The **group** principal to assign the permissions.
368
375
  :param pulumi.Input[str] project_id: The ID of the project.
369
376
  :param pulumi.Input[bool] replace: Replace (`true`) or merge (`false`) the permissions. Default: `true`
370
-
371
- | Name | Permission Description |
372
- | ------------------ | ------------------------ |
373
- | ViewSubscriptions | View Subscriptions |
374
- | EditSubscriptions | Edit Subscription |
375
- | DeleteSubscriptions| Delete Subscriptions |
376
- | PublishEvents | Publish Events |
377
377
  """
378
378
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
379
379
 
@@ -390,6 +390,13 @@ class ServicehookPermissions(pulumi.CustomResource):
390
390
  def permissions(self) -> pulumi.Output[Mapping[str, str]]:
391
391
  """
392
392
  the permissions to assign. The following permissions are available.
393
+
394
+ | Name | Permission Description |
395
+ |---------------------|------------------------|
396
+ | ViewSubscriptions | View Subscriptions |
397
+ | EditSubscriptions | Edit Subscription |
398
+ | DeleteSubscriptions | Delete Subscriptions |
399
+ | PublishEvents | Publish Events |
393
400
  """
394
401
  return pulumi.get(self, "permissions")
395
402
 
@@ -414,13 +421,6 @@ class ServicehookPermissions(pulumi.CustomResource):
414
421
  def replace(self) -> pulumi.Output[Optional[bool]]:
415
422
  """
416
423
  Replace (`true`) or merge (`false`) the permissions. Default: `true`
417
-
418
- | Name | Permission Description |
419
- | ------------------ | ------------------------ |
420
- | ViewSubscriptions | View Subscriptions |
421
- | EditSubscriptions | Edit Subscription |
422
- | DeleteSubscriptions| Delete Subscriptions |
423
- | PublishEvents | Publish Events |
424
424
  """
425
425
  return pulumi.get(self, "replace")
426
426