pulumi-azuredevops 3.6.0a1737523387__py3-none-any.whl → 3.7.0__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 (126) hide show
  1. pulumi_azuredevops/__init__.py +76 -0
  2. pulumi_azuredevops/_inputs.py +120 -117
  3. pulumi_azuredevops/_utilities.py +8 -4
  4. pulumi_azuredevops/area_permissions.py +49 -49
  5. pulumi_azuredevops/branch_policy_auto_reviewers.py +7 -7
  6. pulumi_azuredevops/branch_policy_build_validation.py +7 -7
  7. pulumi_azuredevops/branch_policy_comment_resolution.py +7 -7
  8. pulumi_azuredevops/branch_policy_merge_types.py +7 -7
  9. pulumi_azuredevops/branch_policy_status_check.py +7 -7
  10. pulumi_azuredevops/branch_policy_work_item_linking.py +7 -7
  11. pulumi_azuredevops/build_definition.py +7 -7
  12. pulumi_azuredevops/check_branch_control.py +7 -7
  13. pulumi_azuredevops/check_business_hours.py +7 -7
  14. pulumi_azuredevops/check_exclusive_lock.py +7 -7
  15. pulumi_azuredevops/check_rest_api.py +986 -0
  16. pulumi_azuredevops/dashboard.py +475 -0
  17. pulumi_azuredevops/feed.py +8 -8
  18. pulumi_azuredevops/feed_permission.py +9 -9
  19. pulumi_azuredevops/feed_retention_policy.py +400 -0
  20. pulumi_azuredevops/get_agent_queue.py +2 -2
  21. pulumi_azuredevops/get_area.py +1 -1
  22. pulumi_azuredevops/get_client_config.py +3 -0
  23. pulumi_azuredevops/get_descriptor.py +133 -0
  24. pulumi_azuredevops/get_feed.py +4 -4
  25. pulumi_azuredevops/get_git_repository.py +8 -8
  26. pulumi_azuredevops/get_group.py +4 -4
  27. pulumi_azuredevops/get_groups.py +3 -3
  28. pulumi_azuredevops/get_identity_group.py +23 -6
  29. pulumi_azuredevops/get_identity_groups.py +3 -3
  30. pulumi_azuredevops/get_identity_users.py +23 -9
  31. pulumi_azuredevops/get_pool.py +14 -2
  32. pulumi_azuredevops/get_pools.py +3 -3
  33. pulumi_azuredevops/get_project.py +32 -0
  34. pulumi_azuredevops/get_projects.py +4 -4
  35. pulumi_azuredevops/get_repositories.py +7 -3
  36. pulumi_azuredevops/get_securityrole_definitions.py +4 -4
  37. pulumi_azuredevops/get_service_endpoint_azure_rm.py +5 -5
  38. pulumi_azuredevops/get_service_endpoint_github.py +6 -6
  39. pulumi_azuredevops/get_service_principal.py +153 -0
  40. pulumi_azuredevops/get_serviceendpoint_azurecr.py +1 -1
  41. pulumi_azuredevops/get_serviceendpoint_bitbucket.py +6 -6
  42. pulumi_azuredevops/get_serviceendpoint_npm.py +3 -3
  43. pulumi_azuredevops/get_serviceendpoint_sonarcloud.py +2 -2
  44. pulumi_azuredevops/get_storage_key.py +133 -0
  45. pulumi_azuredevops/get_team.py +4 -3
  46. pulumi_azuredevops/get_teams.py +2 -3
  47. pulumi_azuredevops/get_user.py +193 -0
  48. pulumi_azuredevops/get_users.py +5 -9
  49. pulumi_azuredevops/git.py +7 -7
  50. pulumi_azuredevops/git_permissions.py +14 -21
  51. pulumi_azuredevops/git_repository_file.py +7 -14
  52. pulumi_azuredevops/group.py +21 -7
  53. pulumi_azuredevops/group_entitlement.py +16 -20
  54. pulumi_azuredevops/group_membership.py +35 -50
  55. pulumi_azuredevops/iterative_permissions.py +34 -34
  56. pulumi_azuredevops/library_permissions.py +75 -75
  57. pulumi_azuredevops/outputs.py +141 -103
  58. pulumi_azuredevops/pipeline_authorization.py +7 -7
  59. pulumi_azuredevops/pool.py +4 -4
  60. pulumi_azuredevops/project.py +114 -63
  61. pulumi_azuredevops/project_features.py +87 -45
  62. pulumi_azuredevops/project_permissions.py +7 -7
  63. pulumi_azuredevops/project_pipeline_settings.py +28 -35
  64. pulumi_azuredevops/project_tags.py +263 -0
  65. pulumi_azuredevops/pulumi-plugin.json +1 -1
  66. pulumi_azuredevops/queue.py +7 -14
  67. pulumi_azuredevops/repository_policy_author_email_pattern.py +21 -14
  68. pulumi_azuredevops/repository_policy_max_file_size.py +7 -7
  69. pulumi_azuredevops/resource_authorization.py +35 -35
  70. pulumi_azuredevops/service_endpoint_artifactory.py +25 -33
  71. pulumi_azuredevops/service_endpoint_aws.py +3 -17
  72. pulumi_azuredevops/service_endpoint_azure_dev_ops.py +1 -15
  73. pulumi_azuredevops/service_endpoint_azure_ecr.py +14 -30
  74. pulumi_azuredevops/service_endpoint_azure_rm.py +26 -40
  75. pulumi_azuredevops/service_endpoint_bit_bucket.py +3 -17
  76. pulumi_azuredevops/service_endpoint_docker_registry.py +3 -17
  77. pulumi_azuredevops/service_endpoint_generic.py +3 -17
  78. pulumi_azuredevops/service_endpoint_generic_git.py +5 -23
  79. pulumi_azuredevops/service_endpoint_git_hub.py +16 -17
  80. pulumi_azuredevops/service_endpoint_git_hub_enterprise.py +16 -17
  81. pulumi_azuredevops/service_endpoint_git_lab.py +1 -15
  82. pulumi_azuredevops/service_endpoint_kubernetes.py +24 -38
  83. pulumi_azuredevops/service_endpoint_npm.py +5 -19
  84. pulumi_azuredevops/service_endpoint_pipeline.py +5 -19
  85. pulumi_azuredevops/service_endpoint_service_fabric.py +49 -24
  86. pulumi_azuredevops/service_endpoint_sonar_cloud.py +12 -26
  87. pulumi_azuredevops/service_endpoint_sonar_qube.py +12 -26
  88. pulumi_azuredevops/service_endpoint_ssh.py +3 -21
  89. pulumi_azuredevops/service_principal_entitlement.py +386 -0
  90. pulumi_azuredevops/serviceendpoint_argocd.py +3 -17
  91. pulumi_azuredevops/serviceendpoint_azure_service_bus.py +3 -17
  92. pulumi_azuredevops/serviceendpoint_checkmarx_one.py +613 -0
  93. pulumi_azuredevops/serviceendpoint_checkmarx_sast.py +561 -0
  94. pulumi_azuredevops/serviceendpoint_checkmarx_sca.py +660 -0
  95. pulumi_azuredevops/serviceendpoint_dynamics_lifecycle_services.py +3 -17
  96. pulumi_azuredevops/serviceendpoint_externaltfs.py +64 -26
  97. pulumi_azuredevops/serviceendpoint_gcp_terraform.py +3 -17
  98. pulumi_azuredevops/serviceendpoint_incomingwebhook.py +3 -17
  99. pulumi_azuredevops/serviceendpoint_jenkins.py +3 -17
  100. pulumi_azuredevops/serviceendpoint_jfrog_artifactory_v2.py +19 -33
  101. pulumi_azuredevops/serviceendpoint_jfrog_distribution_v2.py +19 -33
  102. pulumi_azuredevops/serviceendpoint_jfrog_platform_v2.py +19 -33
  103. pulumi_azuredevops/serviceendpoint_jfrog_xray_v2.py +19 -33
  104. pulumi_azuredevops/serviceendpoint_maven.py +3 -17
  105. pulumi_azuredevops/serviceendpoint_nexus.py +3 -17
  106. pulumi_azuredevops/serviceendpoint_nuget.py +3 -17
  107. pulumi_azuredevops/serviceendpoint_octopusdeploy.py +3 -17
  108. pulumi_azuredevops/serviceendpoint_permissions.py +40 -40
  109. pulumi_azuredevops/serviceendpoint_snyk.py +3 -17
  110. pulumi_azuredevops/serviceendpoint_visualstudiomarketplace.py +5 -21
  111. pulumi_azuredevops/servicehook_permissions.py +51 -51
  112. pulumi_azuredevops/servicehook_storage_queue_pipelines.py +4 -4
  113. pulumi_azuredevops/tagging_permissions.py +49 -49
  114. pulumi_azuredevops/team.py +76 -56
  115. pulumi_azuredevops/team_administrators.py +83 -56
  116. pulumi_azuredevops/team_members.py +56 -49
  117. pulumi_azuredevops/variable_group.py +4 -2
  118. pulumi_azuredevops/variable_group_permissions.py +75 -75
  119. pulumi_azuredevops/wiki.py +15 -2
  120. pulumi_azuredevops/wiki_page.py +2 -2
  121. pulumi_azuredevops/work_item_query_permissions.py +7 -7
  122. {pulumi_azuredevops-3.6.0a1737523387.dist-info → pulumi_azuredevops-3.7.0.dist-info}/METADATA +1 -1
  123. pulumi_azuredevops-3.7.0.dist-info/RECORD +152 -0
  124. {pulumi_azuredevops-3.6.0a1737523387.dist-info → pulumi_azuredevops-3.7.0.dist-info}/WHEEL +1 -1
  125. pulumi_azuredevops-3.6.0a1737523387.dist-info/RECORD +0 -140
  126. {pulumi_azuredevops-3.6.0a1737523387.dist-info → pulumi_azuredevops-3.7.0.dist-info}/top_level.txt +0 -0
@@ -26,7 +26,6 @@ class ServiceendpointJfrogArtifactoryV2Args:
26
26
  url: pulumi.Input[str],
27
27
  authentication_basic: Optional[pulumi.Input['ServiceendpointJfrogArtifactoryV2AuthenticationBasicArgs']] = None,
28
28
  authentication_token: Optional[pulumi.Input['ServiceendpointJfrogArtifactoryV2AuthenticationTokenArgs']] = None,
29
- authorization: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
30
29
  description: Optional[pulumi.Input[str]] = None):
31
30
  """
32
31
  The set of arguments for constructing a ServiceendpointJfrogArtifactoryV2 resource.
@@ -35,8 +34,8 @@ class ServiceendpointJfrogArtifactoryV2Args:
35
34
  :param pulumi.Input[str] url: URL of the Artifactory server to connect with.
36
35
 
37
36
  > **NOTE:** URL should not end in a slash character.
38
- :param pulumi.Input['ServiceendpointJfrogArtifactoryV2AuthenticationBasicArgs'] authentication_basic: A `authentication_basic` block as documented below.
39
- :param pulumi.Input['ServiceendpointJfrogArtifactoryV2AuthenticationTokenArgs'] authentication_token: A `authentication_token` block as documented below.
37
+ :param pulumi.Input['ServiceendpointJfrogArtifactoryV2AuthenticationBasicArgs'] authentication_basic: An `authentication_basic` block as documented below.
38
+ :param pulumi.Input['ServiceendpointJfrogArtifactoryV2AuthenticationTokenArgs'] authentication_token: An `authentication_token` block as documented below.
40
39
  :param pulumi.Input[str] description: The Service Endpoint description.
41
40
  """
42
41
  pulumi.set(__self__, "project_id", project_id)
@@ -46,8 +45,6 @@ class ServiceendpointJfrogArtifactoryV2Args:
46
45
  pulumi.set(__self__, "authentication_basic", authentication_basic)
47
46
  if authentication_token is not None:
48
47
  pulumi.set(__self__, "authentication_token", authentication_token)
49
- if authorization is not None:
50
- pulumi.set(__self__, "authorization", authorization)
51
48
  if description is not None:
52
49
  pulumi.set(__self__, "description", description)
53
50
 
@@ -93,7 +90,7 @@ class ServiceendpointJfrogArtifactoryV2Args:
93
90
  @pulumi.getter(name="authenticationBasic")
94
91
  def authentication_basic(self) -> Optional[pulumi.Input['ServiceendpointJfrogArtifactoryV2AuthenticationBasicArgs']]:
95
92
  """
96
- A `authentication_basic` block as documented below.
93
+ An `authentication_basic` block as documented below.
97
94
  """
98
95
  return pulumi.get(self, "authentication_basic")
99
96
 
@@ -105,7 +102,7 @@ class ServiceendpointJfrogArtifactoryV2Args:
105
102
  @pulumi.getter(name="authenticationToken")
106
103
  def authentication_token(self) -> Optional[pulumi.Input['ServiceendpointJfrogArtifactoryV2AuthenticationTokenArgs']]:
107
104
  """
108
- A `authentication_token` block as documented below.
105
+ An `authentication_token` block as documented below.
109
106
  """
110
107
  return pulumi.get(self, "authentication_token")
111
108
 
@@ -113,15 +110,6 @@ class ServiceendpointJfrogArtifactoryV2Args:
113
110
  def authentication_token(self, value: Optional[pulumi.Input['ServiceendpointJfrogArtifactoryV2AuthenticationTokenArgs']]):
114
111
  pulumi.set(self, "authentication_token", value)
115
112
 
116
- @property
117
- @pulumi.getter
118
- def authorization(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
119
- return pulumi.get(self, "authorization")
120
-
121
- @authorization.setter
122
- def authorization(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
123
- pulumi.set(self, "authorization", value)
124
-
125
113
  @property
126
114
  @pulumi.getter
127
115
  def description(self) -> Optional[pulumi.Input[str]]:
@@ -147,8 +135,8 @@ class _ServiceendpointJfrogArtifactoryV2State:
147
135
  url: Optional[pulumi.Input[str]] = None):
148
136
  """
149
137
  Input properties used for looking up and filtering ServiceendpointJfrogArtifactoryV2 resources.
150
- :param pulumi.Input['ServiceendpointJfrogArtifactoryV2AuthenticationBasicArgs'] authentication_basic: A `authentication_basic` block as documented below.
151
- :param pulumi.Input['ServiceendpointJfrogArtifactoryV2AuthenticationTokenArgs'] authentication_token: A `authentication_token` block as documented below.
138
+ :param pulumi.Input['ServiceendpointJfrogArtifactoryV2AuthenticationBasicArgs'] authentication_basic: An `authentication_basic` block as documented below.
139
+ :param pulumi.Input['ServiceendpointJfrogArtifactoryV2AuthenticationTokenArgs'] authentication_token: An `authentication_token` block as documented below.
152
140
  :param pulumi.Input[str] description: The Service Endpoint description.
153
141
  :param pulumi.Input[str] project_id: The ID of the project.
154
142
  :param pulumi.Input[str] service_endpoint_name: The Service Endpoint name.
@@ -175,7 +163,7 @@ class _ServiceendpointJfrogArtifactoryV2State:
175
163
  @pulumi.getter(name="authenticationBasic")
176
164
  def authentication_basic(self) -> Optional[pulumi.Input['ServiceendpointJfrogArtifactoryV2AuthenticationBasicArgs']]:
177
165
  """
178
- A `authentication_basic` block as documented below.
166
+ An `authentication_basic` block as documented below.
179
167
  """
180
168
  return pulumi.get(self, "authentication_basic")
181
169
 
@@ -187,7 +175,7 @@ class _ServiceendpointJfrogArtifactoryV2State:
187
175
  @pulumi.getter(name="authenticationToken")
188
176
  def authentication_token(self) -> Optional[pulumi.Input['ServiceendpointJfrogArtifactoryV2AuthenticationTokenArgs']]:
189
177
  """
190
- A `authentication_token` block as documented below.
178
+ An `authentication_token` block as documented below.
191
179
  """
192
180
  return pulumi.get(self, "authentication_token")
193
181
 
@@ -262,14 +250,13 @@ class ServiceendpointJfrogArtifactoryV2(pulumi.CustomResource):
262
250
  opts: Optional[pulumi.ResourceOptions] = None,
263
251
  authentication_basic: Optional[pulumi.Input[Union['ServiceendpointJfrogArtifactoryV2AuthenticationBasicArgs', 'ServiceendpointJfrogArtifactoryV2AuthenticationBasicArgsDict']]] = None,
264
252
  authentication_token: Optional[pulumi.Input[Union['ServiceendpointJfrogArtifactoryV2AuthenticationTokenArgs', 'ServiceendpointJfrogArtifactoryV2AuthenticationTokenArgsDict']]] = None,
265
- authorization: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
266
253
  description: Optional[pulumi.Input[str]] = None,
267
254
  project_id: Optional[pulumi.Input[str]] = None,
268
255
  service_endpoint_name: Optional[pulumi.Input[str]] = None,
269
256
  url: Optional[pulumi.Input[str]] = None,
270
257
  __props__=None):
271
258
  """
272
- Manages a JFrog Artifactory V2 server endpoint within an Azure DevOps organization.
259
+ Manages a JFrog Artifactory V2 service endpoint within an Azure DevOps organization.
273
260
 
274
261
  > **Note:** Using this service endpoint requires you to first install [JFrog Extension](https://marketplace.visualstudio.com/items?itemName=JFrog.jfrog-azure-devops-extension).
275
262
 
@@ -324,7 +311,7 @@ class ServiceendpointJfrogArtifactoryV2(pulumi.CustomResource):
324
311
 
325
312
  ## Import
326
313
 
327
- Azure DevOps Service Endpoint JFrog Artifactory V2 can be imported using the **projectID/serviceEndpointID**, e.g.
314
+ Azure DevOps JFrog Artifactory V2 Service Endpoint can be imported using the **projectID/serviceEndpointID**, e.g.
328
315
 
329
316
  ```sh
330
317
  $ pulumi import azuredevops:index/serviceendpointJfrogArtifactoryV2:ServiceendpointJfrogArtifactoryV2 example 00000000-0000-0000-0000-000000000000/00000000-0000-0000-0000-000000000000
@@ -332,8 +319,8 @@ class ServiceendpointJfrogArtifactoryV2(pulumi.CustomResource):
332
319
 
333
320
  :param str resource_name: The name of the resource.
334
321
  :param pulumi.ResourceOptions opts: Options for the resource.
335
- :param pulumi.Input[Union['ServiceendpointJfrogArtifactoryV2AuthenticationBasicArgs', 'ServiceendpointJfrogArtifactoryV2AuthenticationBasicArgsDict']] authentication_basic: A `authentication_basic` block as documented below.
336
- :param pulumi.Input[Union['ServiceendpointJfrogArtifactoryV2AuthenticationTokenArgs', 'ServiceendpointJfrogArtifactoryV2AuthenticationTokenArgsDict']] authentication_token: A `authentication_token` block as documented below.
322
+ :param pulumi.Input[Union['ServiceendpointJfrogArtifactoryV2AuthenticationBasicArgs', 'ServiceendpointJfrogArtifactoryV2AuthenticationBasicArgsDict']] authentication_basic: An `authentication_basic` block as documented below.
323
+ :param pulumi.Input[Union['ServiceendpointJfrogArtifactoryV2AuthenticationTokenArgs', 'ServiceendpointJfrogArtifactoryV2AuthenticationTokenArgsDict']] authentication_token: An `authentication_token` block as documented below.
337
324
  :param pulumi.Input[str] description: The Service Endpoint description.
338
325
  :param pulumi.Input[str] project_id: The ID of the project.
339
326
  :param pulumi.Input[str] service_endpoint_name: The Service Endpoint name.
@@ -348,7 +335,7 @@ class ServiceendpointJfrogArtifactoryV2(pulumi.CustomResource):
348
335
  args: ServiceendpointJfrogArtifactoryV2Args,
349
336
  opts: Optional[pulumi.ResourceOptions] = None):
350
337
  """
351
- Manages a JFrog Artifactory V2 server endpoint within an Azure DevOps organization.
338
+ Manages a JFrog Artifactory V2 service endpoint within an Azure DevOps organization.
352
339
 
353
340
  > **Note:** Using this service endpoint requires you to first install [JFrog Extension](https://marketplace.visualstudio.com/items?itemName=JFrog.jfrog-azure-devops-extension).
354
341
 
@@ -403,7 +390,7 @@ class ServiceendpointJfrogArtifactoryV2(pulumi.CustomResource):
403
390
 
404
391
  ## Import
405
392
 
406
- Azure DevOps Service Endpoint JFrog Artifactory V2 can be imported using the **projectID/serviceEndpointID**, e.g.
393
+ Azure DevOps JFrog Artifactory V2 Service Endpoint can be imported using the **projectID/serviceEndpointID**, e.g.
407
394
 
408
395
  ```sh
409
396
  $ pulumi import azuredevops:index/serviceendpointJfrogArtifactoryV2:ServiceendpointJfrogArtifactoryV2 example 00000000-0000-0000-0000-000000000000/00000000-0000-0000-0000-000000000000
@@ -426,7 +413,6 @@ class ServiceendpointJfrogArtifactoryV2(pulumi.CustomResource):
426
413
  opts: Optional[pulumi.ResourceOptions] = None,
427
414
  authentication_basic: Optional[pulumi.Input[Union['ServiceendpointJfrogArtifactoryV2AuthenticationBasicArgs', 'ServiceendpointJfrogArtifactoryV2AuthenticationBasicArgsDict']]] = None,
428
415
  authentication_token: Optional[pulumi.Input[Union['ServiceendpointJfrogArtifactoryV2AuthenticationTokenArgs', 'ServiceendpointJfrogArtifactoryV2AuthenticationTokenArgsDict']]] = None,
429
- authorization: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
430
416
  description: Optional[pulumi.Input[str]] = None,
431
417
  project_id: Optional[pulumi.Input[str]] = None,
432
418
  service_endpoint_name: Optional[pulumi.Input[str]] = None,
@@ -442,7 +428,6 @@ class ServiceendpointJfrogArtifactoryV2(pulumi.CustomResource):
442
428
 
443
429
  __props__.__dict__["authentication_basic"] = authentication_basic
444
430
  __props__.__dict__["authentication_token"] = authentication_token
445
- __props__.__dict__["authorization"] = authorization
446
431
  __props__.__dict__["description"] = description
447
432
  if project_id is None and not opts.urn:
448
433
  raise TypeError("Missing required property 'project_id'")
@@ -453,6 +438,7 @@ class ServiceendpointJfrogArtifactoryV2(pulumi.CustomResource):
453
438
  if url is None and not opts.urn:
454
439
  raise TypeError("Missing required property 'url'")
455
440
  __props__.__dict__["url"] = url
441
+ __props__.__dict__["authorization"] = None
456
442
  super(ServiceendpointJfrogArtifactoryV2, __self__).__init__(
457
443
  'azuredevops:index/serviceendpointJfrogArtifactoryV2:ServiceendpointJfrogArtifactoryV2',
458
444
  resource_name,
@@ -477,8 +463,8 @@ class ServiceendpointJfrogArtifactoryV2(pulumi.CustomResource):
477
463
  :param str resource_name: The unique name of the resulting resource.
478
464
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
479
465
  :param pulumi.ResourceOptions opts: Options for the resource.
480
- :param pulumi.Input[Union['ServiceendpointJfrogArtifactoryV2AuthenticationBasicArgs', 'ServiceendpointJfrogArtifactoryV2AuthenticationBasicArgsDict']] authentication_basic: A `authentication_basic` block as documented below.
481
- :param pulumi.Input[Union['ServiceendpointJfrogArtifactoryV2AuthenticationTokenArgs', 'ServiceendpointJfrogArtifactoryV2AuthenticationTokenArgsDict']] authentication_token: A `authentication_token` block as documented below.
466
+ :param pulumi.Input[Union['ServiceendpointJfrogArtifactoryV2AuthenticationBasicArgs', 'ServiceendpointJfrogArtifactoryV2AuthenticationBasicArgsDict']] authentication_basic: An `authentication_basic` block as documented below.
467
+ :param pulumi.Input[Union['ServiceendpointJfrogArtifactoryV2AuthenticationTokenArgs', 'ServiceendpointJfrogArtifactoryV2AuthenticationTokenArgsDict']] authentication_token: An `authentication_token` block as documented below.
482
468
  :param pulumi.Input[str] description: The Service Endpoint description.
483
469
  :param pulumi.Input[str] project_id: The ID of the project.
484
470
  :param pulumi.Input[str] service_endpoint_name: The Service Endpoint name.
@@ -503,7 +489,7 @@ class ServiceendpointJfrogArtifactoryV2(pulumi.CustomResource):
503
489
  @pulumi.getter(name="authenticationBasic")
504
490
  def authentication_basic(self) -> pulumi.Output[Optional['outputs.ServiceendpointJfrogArtifactoryV2AuthenticationBasic']]:
505
491
  """
506
- A `authentication_basic` block as documented below.
492
+ An `authentication_basic` block as documented below.
507
493
  """
508
494
  return pulumi.get(self, "authentication_basic")
509
495
 
@@ -511,7 +497,7 @@ class ServiceendpointJfrogArtifactoryV2(pulumi.CustomResource):
511
497
  @pulumi.getter(name="authenticationToken")
512
498
  def authentication_token(self) -> pulumi.Output[Optional['outputs.ServiceendpointJfrogArtifactoryV2AuthenticationToken']]:
513
499
  """
514
- A `authentication_token` block as documented below.
500
+ An `authentication_token` block as documented below.
515
501
  """
516
502
  return pulumi.get(self, "authentication_token")
517
503
 
@@ -26,7 +26,6 @@ class ServiceendpointJfrogDistributionV2Args:
26
26
  url: pulumi.Input[str],
27
27
  authentication_basic: Optional[pulumi.Input['ServiceendpointJfrogDistributionV2AuthenticationBasicArgs']] = None,
28
28
  authentication_token: Optional[pulumi.Input['ServiceendpointJfrogDistributionV2AuthenticationTokenArgs']] = None,
29
- authorization: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
30
29
  description: Optional[pulumi.Input[str]] = None):
31
30
  """
32
31
  The set of arguments for constructing a ServiceendpointJfrogDistributionV2 resource.
@@ -35,8 +34,8 @@ class ServiceendpointJfrogDistributionV2Args:
35
34
  :param pulumi.Input[str] url: URL of the Artifactory server to connect with.
36
35
 
37
36
  > **NOTE:** URL should not end in a slash character.
38
- :param pulumi.Input['ServiceendpointJfrogDistributionV2AuthenticationBasicArgs'] authentication_basic: A `authentication_basic` block as documented below.
39
- :param pulumi.Input['ServiceendpointJfrogDistributionV2AuthenticationTokenArgs'] authentication_token: A `authentication_token` block as documented below.
37
+ :param pulumi.Input['ServiceendpointJfrogDistributionV2AuthenticationBasicArgs'] authentication_basic: An `authentication_basic` block as documented below.
38
+ :param pulumi.Input['ServiceendpointJfrogDistributionV2AuthenticationTokenArgs'] authentication_token: An `authentication_token` block as documented below.
40
39
  :param pulumi.Input[str] description: The Service Endpoint description.
41
40
  """
42
41
  pulumi.set(__self__, "project_id", project_id)
@@ -46,8 +45,6 @@ class ServiceendpointJfrogDistributionV2Args:
46
45
  pulumi.set(__self__, "authentication_basic", authentication_basic)
47
46
  if authentication_token is not None:
48
47
  pulumi.set(__self__, "authentication_token", authentication_token)
49
- if authorization is not None:
50
- pulumi.set(__self__, "authorization", authorization)
51
48
  if description is not None:
52
49
  pulumi.set(__self__, "description", description)
53
50
 
@@ -93,7 +90,7 @@ class ServiceendpointJfrogDistributionV2Args:
93
90
  @pulumi.getter(name="authenticationBasic")
94
91
  def authentication_basic(self) -> Optional[pulumi.Input['ServiceendpointJfrogDistributionV2AuthenticationBasicArgs']]:
95
92
  """
96
- A `authentication_basic` block as documented below.
93
+ An `authentication_basic` block as documented below.
97
94
  """
98
95
  return pulumi.get(self, "authentication_basic")
99
96
 
@@ -105,7 +102,7 @@ class ServiceendpointJfrogDistributionV2Args:
105
102
  @pulumi.getter(name="authenticationToken")
106
103
  def authentication_token(self) -> Optional[pulumi.Input['ServiceendpointJfrogDistributionV2AuthenticationTokenArgs']]:
107
104
  """
108
- A `authentication_token` block as documented below.
105
+ An `authentication_token` block as documented below.
109
106
  """
110
107
  return pulumi.get(self, "authentication_token")
111
108
 
@@ -113,15 +110,6 @@ class ServiceendpointJfrogDistributionV2Args:
113
110
  def authentication_token(self, value: Optional[pulumi.Input['ServiceendpointJfrogDistributionV2AuthenticationTokenArgs']]):
114
111
  pulumi.set(self, "authentication_token", value)
115
112
 
116
- @property
117
- @pulumi.getter
118
- def authorization(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
119
- return pulumi.get(self, "authorization")
120
-
121
- @authorization.setter
122
- def authorization(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
123
- pulumi.set(self, "authorization", value)
124
-
125
113
  @property
126
114
  @pulumi.getter
127
115
  def description(self) -> Optional[pulumi.Input[str]]:
@@ -147,8 +135,8 @@ class _ServiceendpointJfrogDistributionV2State:
147
135
  url: Optional[pulumi.Input[str]] = None):
148
136
  """
149
137
  Input properties used for looking up and filtering ServiceendpointJfrogDistributionV2 resources.
150
- :param pulumi.Input['ServiceendpointJfrogDistributionV2AuthenticationBasicArgs'] authentication_basic: A `authentication_basic` block as documented below.
151
- :param pulumi.Input['ServiceendpointJfrogDistributionV2AuthenticationTokenArgs'] authentication_token: A `authentication_token` block as documented below.
138
+ :param pulumi.Input['ServiceendpointJfrogDistributionV2AuthenticationBasicArgs'] authentication_basic: An `authentication_basic` block as documented below.
139
+ :param pulumi.Input['ServiceendpointJfrogDistributionV2AuthenticationTokenArgs'] authentication_token: An `authentication_token` block as documented below.
152
140
  :param pulumi.Input[str] description: The Service Endpoint description.
153
141
  :param pulumi.Input[str] project_id: The ID of the project.
154
142
  :param pulumi.Input[str] service_endpoint_name: The Service Endpoint name.
@@ -175,7 +163,7 @@ class _ServiceendpointJfrogDistributionV2State:
175
163
  @pulumi.getter(name="authenticationBasic")
176
164
  def authentication_basic(self) -> Optional[pulumi.Input['ServiceendpointJfrogDistributionV2AuthenticationBasicArgs']]:
177
165
  """
178
- A `authentication_basic` block as documented below.
166
+ An `authentication_basic` block as documented below.
179
167
  """
180
168
  return pulumi.get(self, "authentication_basic")
181
169
 
@@ -187,7 +175,7 @@ class _ServiceendpointJfrogDistributionV2State:
187
175
  @pulumi.getter(name="authenticationToken")
188
176
  def authentication_token(self) -> Optional[pulumi.Input['ServiceendpointJfrogDistributionV2AuthenticationTokenArgs']]:
189
177
  """
190
- A `authentication_token` block as documented below.
178
+ An `authentication_token` block as documented below.
191
179
  """
192
180
  return pulumi.get(self, "authentication_token")
193
181
 
@@ -262,14 +250,13 @@ class ServiceendpointJfrogDistributionV2(pulumi.CustomResource):
262
250
  opts: Optional[pulumi.ResourceOptions] = None,
263
251
  authentication_basic: Optional[pulumi.Input[Union['ServiceendpointJfrogDistributionV2AuthenticationBasicArgs', 'ServiceendpointJfrogDistributionV2AuthenticationBasicArgsDict']]] = None,
264
252
  authentication_token: Optional[pulumi.Input[Union['ServiceendpointJfrogDistributionV2AuthenticationTokenArgs', 'ServiceendpointJfrogDistributionV2AuthenticationTokenArgsDict']]] = None,
265
- authorization: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
266
253
  description: Optional[pulumi.Input[str]] = None,
267
254
  project_id: Optional[pulumi.Input[str]] = None,
268
255
  service_endpoint_name: Optional[pulumi.Input[str]] = None,
269
256
  url: Optional[pulumi.Input[str]] = None,
270
257
  __props__=None):
271
258
  """
272
- Manages a JFrog Distribution V2 server endpoint within an Azure DevOps organization.
259
+ Manages a JFrog Distribution V2 service endpoint within an Azure DevOps organization.
273
260
 
274
261
  > **Note:** Using this service endpoint requires you to first install [JFrog Extension](https://marketplace.visualstudio.com/items?itemName=JFrog.jfrog-azure-devops-extension).
275
262
 
@@ -324,7 +311,7 @@ class ServiceendpointJfrogDistributionV2(pulumi.CustomResource):
324
311
 
325
312
  ## Import
326
313
 
327
- Azure DevOps Service Endpoint JFrog Distribution V2 can be imported using the **projectID/serviceEndpointID**, e.g.
314
+ Azure DevOps JFrog Distribution V2 Service Endpoint can be imported using the **projectID/serviceEndpointID**, e.g.
328
315
 
329
316
  ```sh
330
317
  $ pulumi import azuredevops:index/serviceendpointJfrogDistributionV2:ServiceendpointJfrogDistributionV2 example 00000000-0000-0000-0000-000000000000/00000000-0000-0000-0000-000000000000
@@ -332,8 +319,8 @@ class ServiceendpointJfrogDistributionV2(pulumi.CustomResource):
332
319
 
333
320
  :param str resource_name: The name of the resource.
334
321
  :param pulumi.ResourceOptions opts: Options for the resource.
335
- :param pulumi.Input[Union['ServiceendpointJfrogDistributionV2AuthenticationBasicArgs', 'ServiceendpointJfrogDistributionV2AuthenticationBasicArgsDict']] authentication_basic: A `authentication_basic` block as documented below.
336
- :param pulumi.Input[Union['ServiceendpointJfrogDistributionV2AuthenticationTokenArgs', 'ServiceendpointJfrogDistributionV2AuthenticationTokenArgsDict']] authentication_token: A `authentication_token` block as documented below.
322
+ :param pulumi.Input[Union['ServiceendpointJfrogDistributionV2AuthenticationBasicArgs', 'ServiceendpointJfrogDistributionV2AuthenticationBasicArgsDict']] authentication_basic: An `authentication_basic` block as documented below.
323
+ :param pulumi.Input[Union['ServiceendpointJfrogDistributionV2AuthenticationTokenArgs', 'ServiceendpointJfrogDistributionV2AuthenticationTokenArgsDict']] authentication_token: An `authentication_token` block as documented below.
337
324
  :param pulumi.Input[str] description: The Service Endpoint description.
338
325
  :param pulumi.Input[str] project_id: The ID of the project.
339
326
  :param pulumi.Input[str] service_endpoint_name: The Service Endpoint name.
@@ -348,7 +335,7 @@ class ServiceendpointJfrogDistributionV2(pulumi.CustomResource):
348
335
  args: ServiceendpointJfrogDistributionV2Args,
349
336
  opts: Optional[pulumi.ResourceOptions] = None):
350
337
  """
351
- Manages a JFrog Distribution V2 server endpoint within an Azure DevOps organization.
338
+ Manages a JFrog Distribution V2 service endpoint within an Azure DevOps organization.
352
339
 
353
340
  > **Note:** Using this service endpoint requires you to first install [JFrog Extension](https://marketplace.visualstudio.com/items?itemName=JFrog.jfrog-azure-devops-extension).
354
341
 
@@ -403,7 +390,7 @@ class ServiceendpointJfrogDistributionV2(pulumi.CustomResource):
403
390
 
404
391
  ## Import
405
392
 
406
- Azure DevOps Service Endpoint JFrog Distribution V2 can be imported using the **projectID/serviceEndpointID**, e.g.
393
+ Azure DevOps JFrog Distribution V2 Service Endpoint can be imported using the **projectID/serviceEndpointID**, e.g.
407
394
 
408
395
  ```sh
409
396
  $ pulumi import azuredevops:index/serviceendpointJfrogDistributionV2:ServiceendpointJfrogDistributionV2 example 00000000-0000-0000-0000-000000000000/00000000-0000-0000-0000-000000000000
@@ -426,7 +413,6 @@ class ServiceendpointJfrogDistributionV2(pulumi.CustomResource):
426
413
  opts: Optional[pulumi.ResourceOptions] = None,
427
414
  authentication_basic: Optional[pulumi.Input[Union['ServiceendpointJfrogDistributionV2AuthenticationBasicArgs', 'ServiceendpointJfrogDistributionV2AuthenticationBasicArgsDict']]] = None,
428
415
  authentication_token: Optional[pulumi.Input[Union['ServiceendpointJfrogDistributionV2AuthenticationTokenArgs', 'ServiceendpointJfrogDistributionV2AuthenticationTokenArgsDict']]] = None,
429
- authorization: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
430
416
  description: Optional[pulumi.Input[str]] = None,
431
417
  project_id: Optional[pulumi.Input[str]] = None,
432
418
  service_endpoint_name: Optional[pulumi.Input[str]] = None,
@@ -442,7 +428,6 @@ class ServiceendpointJfrogDistributionV2(pulumi.CustomResource):
442
428
 
443
429
  __props__.__dict__["authentication_basic"] = authentication_basic
444
430
  __props__.__dict__["authentication_token"] = authentication_token
445
- __props__.__dict__["authorization"] = authorization
446
431
  __props__.__dict__["description"] = description
447
432
  if project_id is None and not opts.urn:
448
433
  raise TypeError("Missing required property 'project_id'")
@@ -453,6 +438,7 @@ class ServiceendpointJfrogDistributionV2(pulumi.CustomResource):
453
438
  if url is None and not opts.urn:
454
439
  raise TypeError("Missing required property 'url'")
455
440
  __props__.__dict__["url"] = url
441
+ __props__.__dict__["authorization"] = None
456
442
  super(ServiceendpointJfrogDistributionV2, __self__).__init__(
457
443
  'azuredevops:index/serviceendpointJfrogDistributionV2:ServiceendpointJfrogDistributionV2',
458
444
  resource_name,
@@ -477,8 +463,8 @@ class ServiceendpointJfrogDistributionV2(pulumi.CustomResource):
477
463
  :param str resource_name: The unique name of the resulting resource.
478
464
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
479
465
  :param pulumi.ResourceOptions opts: Options for the resource.
480
- :param pulumi.Input[Union['ServiceendpointJfrogDistributionV2AuthenticationBasicArgs', 'ServiceendpointJfrogDistributionV2AuthenticationBasicArgsDict']] authentication_basic: A `authentication_basic` block as documented below.
481
- :param pulumi.Input[Union['ServiceendpointJfrogDistributionV2AuthenticationTokenArgs', 'ServiceendpointJfrogDistributionV2AuthenticationTokenArgsDict']] authentication_token: A `authentication_token` block as documented below.
466
+ :param pulumi.Input[Union['ServiceendpointJfrogDistributionV2AuthenticationBasicArgs', 'ServiceendpointJfrogDistributionV2AuthenticationBasicArgsDict']] authentication_basic: An `authentication_basic` block as documented below.
467
+ :param pulumi.Input[Union['ServiceendpointJfrogDistributionV2AuthenticationTokenArgs', 'ServiceendpointJfrogDistributionV2AuthenticationTokenArgsDict']] authentication_token: An `authentication_token` block as documented below.
482
468
  :param pulumi.Input[str] description: The Service Endpoint description.
483
469
  :param pulumi.Input[str] project_id: The ID of the project.
484
470
  :param pulumi.Input[str] service_endpoint_name: The Service Endpoint name.
@@ -503,7 +489,7 @@ class ServiceendpointJfrogDistributionV2(pulumi.CustomResource):
503
489
  @pulumi.getter(name="authenticationBasic")
504
490
  def authentication_basic(self) -> pulumi.Output[Optional['outputs.ServiceendpointJfrogDistributionV2AuthenticationBasic']]:
505
491
  """
506
- A `authentication_basic` block as documented below.
492
+ An `authentication_basic` block as documented below.
507
493
  """
508
494
  return pulumi.get(self, "authentication_basic")
509
495
 
@@ -511,7 +497,7 @@ class ServiceendpointJfrogDistributionV2(pulumi.CustomResource):
511
497
  @pulumi.getter(name="authenticationToken")
512
498
  def authentication_token(self) -> pulumi.Output[Optional['outputs.ServiceendpointJfrogDistributionV2AuthenticationToken']]:
513
499
  """
514
- A `authentication_token` block as documented below.
500
+ An `authentication_token` block as documented below.
515
501
  """
516
502
  return pulumi.get(self, "authentication_token")
517
503
 
@@ -26,7 +26,6 @@ class ServiceendpointJfrogPlatformV2Args:
26
26
  url: pulumi.Input[str],
27
27
  authentication_basic: Optional[pulumi.Input['ServiceendpointJfrogPlatformV2AuthenticationBasicArgs']] = None,
28
28
  authentication_token: Optional[pulumi.Input['ServiceendpointJfrogPlatformV2AuthenticationTokenArgs']] = None,
29
- authorization: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
30
29
  description: Optional[pulumi.Input[str]] = None):
31
30
  """
32
31
  The set of arguments for constructing a ServiceendpointJfrogPlatformV2 resource.
@@ -35,8 +34,8 @@ class ServiceendpointJfrogPlatformV2Args:
35
34
  :param pulumi.Input[str] url: URL of the Artifactory server to connect with.
36
35
 
37
36
  > **NOTE:** URL should not end in a slash character.
38
- :param pulumi.Input['ServiceendpointJfrogPlatformV2AuthenticationBasicArgs'] authentication_basic: A `authentication_basic` block as documented below.
39
- :param pulumi.Input['ServiceendpointJfrogPlatformV2AuthenticationTokenArgs'] authentication_token: A `authentication_token` block as documented below.
37
+ :param pulumi.Input['ServiceendpointJfrogPlatformV2AuthenticationBasicArgs'] authentication_basic: An `authentication_basic` block as documented below.
38
+ :param pulumi.Input['ServiceendpointJfrogPlatformV2AuthenticationTokenArgs'] authentication_token: An `authentication_token` block as documented below.
40
39
  :param pulumi.Input[str] description: The Service Endpoint description.
41
40
  """
42
41
  pulumi.set(__self__, "project_id", project_id)
@@ -46,8 +45,6 @@ class ServiceendpointJfrogPlatformV2Args:
46
45
  pulumi.set(__self__, "authentication_basic", authentication_basic)
47
46
  if authentication_token is not None:
48
47
  pulumi.set(__self__, "authentication_token", authentication_token)
49
- if authorization is not None:
50
- pulumi.set(__self__, "authorization", authorization)
51
48
  if description is not None:
52
49
  pulumi.set(__self__, "description", description)
53
50
 
@@ -93,7 +90,7 @@ class ServiceendpointJfrogPlatformV2Args:
93
90
  @pulumi.getter(name="authenticationBasic")
94
91
  def authentication_basic(self) -> Optional[pulumi.Input['ServiceendpointJfrogPlatformV2AuthenticationBasicArgs']]:
95
92
  """
96
- A `authentication_basic` block as documented below.
93
+ An `authentication_basic` block as documented below.
97
94
  """
98
95
  return pulumi.get(self, "authentication_basic")
99
96
 
@@ -105,7 +102,7 @@ class ServiceendpointJfrogPlatformV2Args:
105
102
  @pulumi.getter(name="authenticationToken")
106
103
  def authentication_token(self) -> Optional[pulumi.Input['ServiceendpointJfrogPlatformV2AuthenticationTokenArgs']]:
107
104
  """
108
- A `authentication_token` block as documented below.
105
+ An `authentication_token` block as documented below.
109
106
  """
110
107
  return pulumi.get(self, "authentication_token")
111
108
 
@@ -113,15 +110,6 @@ class ServiceendpointJfrogPlatformV2Args:
113
110
  def authentication_token(self, value: Optional[pulumi.Input['ServiceendpointJfrogPlatformV2AuthenticationTokenArgs']]):
114
111
  pulumi.set(self, "authentication_token", value)
115
112
 
116
- @property
117
- @pulumi.getter
118
- def authorization(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
119
- return pulumi.get(self, "authorization")
120
-
121
- @authorization.setter
122
- def authorization(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
123
- pulumi.set(self, "authorization", value)
124
-
125
113
  @property
126
114
  @pulumi.getter
127
115
  def description(self) -> Optional[pulumi.Input[str]]:
@@ -147,8 +135,8 @@ class _ServiceendpointJfrogPlatformV2State:
147
135
  url: Optional[pulumi.Input[str]] = None):
148
136
  """
149
137
  Input properties used for looking up and filtering ServiceendpointJfrogPlatformV2 resources.
150
- :param pulumi.Input['ServiceendpointJfrogPlatformV2AuthenticationBasicArgs'] authentication_basic: A `authentication_basic` block as documented below.
151
- :param pulumi.Input['ServiceendpointJfrogPlatformV2AuthenticationTokenArgs'] authentication_token: A `authentication_token` block as documented below.
138
+ :param pulumi.Input['ServiceendpointJfrogPlatformV2AuthenticationBasicArgs'] authentication_basic: An `authentication_basic` block as documented below.
139
+ :param pulumi.Input['ServiceendpointJfrogPlatformV2AuthenticationTokenArgs'] authentication_token: An `authentication_token` block as documented below.
152
140
  :param pulumi.Input[str] description: The Service Endpoint description.
153
141
  :param pulumi.Input[str] project_id: The ID of the project.
154
142
  :param pulumi.Input[str] service_endpoint_name: The Service Endpoint name.
@@ -175,7 +163,7 @@ class _ServiceendpointJfrogPlatformV2State:
175
163
  @pulumi.getter(name="authenticationBasic")
176
164
  def authentication_basic(self) -> Optional[pulumi.Input['ServiceendpointJfrogPlatformV2AuthenticationBasicArgs']]:
177
165
  """
178
- A `authentication_basic` block as documented below.
166
+ An `authentication_basic` block as documented below.
179
167
  """
180
168
  return pulumi.get(self, "authentication_basic")
181
169
 
@@ -187,7 +175,7 @@ class _ServiceendpointJfrogPlatformV2State:
187
175
  @pulumi.getter(name="authenticationToken")
188
176
  def authentication_token(self) -> Optional[pulumi.Input['ServiceendpointJfrogPlatformV2AuthenticationTokenArgs']]:
189
177
  """
190
- A `authentication_token` block as documented below.
178
+ An `authentication_token` block as documented below.
191
179
  """
192
180
  return pulumi.get(self, "authentication_token")
193
181
 
@@ -262,14 +250,13 @@ class ServiceendpointJfrogPlatformV2(pulumi.CustomResource):
262
250
  opts: Optional[pulumi.ResourceOptions] = None,
263
251
  authentication_basic: Optional[pulumi.Input[Union['ServiceendpointJfrogPlatformV2AuthenticationBasicArgs', 'ServiceendpointJfrogPlatformV2AuthenticationBasicArgsDict']]] = None,
264
252
  authentication_token: Optional[pulumi.Input[Union['ServiceendpointJfrogPlatformV2AuthenticationTokenArgs', 'ServiceendpointJfrogPlatformV2AuthenticationTokenArgsDict']]] = None,
265
- authorization: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
266
253
  description: Optional[pulumi.Input[str]] = None,
267
254
  project_id: Optional[pulumi.Input[str]] = None,
268
255
  service_endpoint_name: Optional[pulumi.Input[str]] = None,
269
256
  url: Optional[pulumi.Input[str]] = None,
270
257
  __props__=None):
271
258
  """
272
- Manages a JFrog Platform V2 server endpoint within an Azure DevOps organization.
259
+ Manages a JFrog Platform V2 service endpoint within an Azure DevOps organization.
273
260
 
274
261
  > **Note:** Using this service endpoint requires you to first install [JFrog Extension](https://marketplace.visualstudio.com/items?itemName=JFrog.jfrog-azure-devops-extension).
275
262
 
@@ -324,7 +311,7 @@ class ServiceendpointJfrogPlatformV2(pulumi.CustomResource):
324
311
 
325
312
  ## Import
326
313
 
327
- Azure DevOps Service Endpoint JFrog Platform V2 can be imported using the **projectID/serviceEndpointID**, e.g.
314
+ Azure DevOps JFrog Platform V2 Service Endpoint can be imported using the **projectID/serviceEndpointID**, e.g.
328
315
 
329
316
  ```sh
330
317
  $ pulumi import azuredevops:index/serviceendpointJfrogPlatformV2:ServiceendpointJfrogPlatformV2 example 00000000-0000-0000-0000-000000000000/00000000-0000-0000-0000-000000000000
@@ -332,8 +319,8 @@ class ServiceendpointJfrogPlatformV2(pulumi.CustomResource):
332
319
 
333
320
  :param str resource_name: The name of the resource.
334
321
  :param pulumi.ResourceOptions opts: Options for the resource.
335
- :param pulumi.Input[Union['ServiceendpointJfrogPlatformV2AuthenticationBasicArgs', 'ServiceendpointJfrogPlatformV2AuthenticationBasicArgsDict']] authentication_basic: A `authentication_basic` block as documented below.
336
- :param pulumi.Input[Union['ServiceendpointJfrogPlatformV2AuthenticationTokenArgs', 'ServiceendpointJfrogPlatformV2AuthenticationTokenArgsDict']] authentication_token: A `authentication_token` block as documented below.
322
+ :param pulumi.Input[Union['ServiceendpointJfrogPlatformV2AuthenticationBasicArgs', 'ServiceendpointJfrogPlatformV2AuthenticationBasicArgsDict']] authentication_basic: An `authentication_basic` block as documented below.
323
+ :param pulumi.Input[Union['ServiceendpointJfrogPlatformV2AuthenticationTokenArgs', 'ServiceendpointJfrogPlatformV2AuthenticationTokenArgsDict']] authentication_token: An `authentication_token` block as documented below.
337
324
  :param pulumi.Input[str] description: The Service Endpoint description.
338
325
  :param pulumi.Input[str] project_id: The ID of the project.
339
326
  :param pulumi.Input[str] service_endpoint_name: The Service Endpoint name.
@@ -348,7 +335,7 @@ class ServiceendpointJfrogPlatformV2(pulumi.CustomResource):
348
335
  args: ServiceendpointJfrogPlatformV2Args,
349
336
  opts: Optional[pulumi.ResourceOptions] = None):
350
337
  """
351
- Manages a JFrog Platform V2 server endpoint within an Azure DevOps organization.
338
+ Manages a JFrog Platform V2 service endpoint within an Azure DevOps organization.
352
339
 
353
340
  > **Note:** Using this service endpoint requires you to first install [JFrog Extension](https://marketplace.visualstudio.com/items?itemName=JFrog.jfrog-azure-devops-extension).
354
341
 
@@ -403,7 +390,7 @@ class ServiceendpointJfrogPlatformV2(pulumi.CustomResource):
403
390
 
404
391
  ## Import
405
392
 
406
- Azure DevOps Service Endpoint JFrog Platform V2 can be imported using the **projectID/serviceEndpointID**, e.g.
393
+ Azure DevOps JFrog Platform V2 Service Endpoint can be imported using the **projectID/serviceEndpointID**, e.g.
407
394
 
408
395
  ```sh
409
396
  $ pulumi import azuredevops:index/serviceendpointJfrogPlatformV2:ServiceendpointJfrogPlatformV2 example 00000000-0000-0000-0000-000000000000/00000000-0000-0000-0000-000000000000
@@ -426,7 +413,6 @@ class ServiceendpointJfrogPlatformV2(pulumi.CustomResource):
426
413
  opts: Optional[pulumi.ResourceOptions] = None,
427
414
  authentication_basic: Optional[pulumi.Input[Union['ServiceendpointJfrogPlatformV2AuthenticationBasicArgs', 'ServiceendpointJfrogPlatformV2AuthenticationBasicArgsDict']]] = None,
428
415
  authentication_token: Optional[pulumi.Input[Union['ServiceendpointJfrogPlatformV2AuthenticationTokenArgs', 'ServiceendpointJfrogPlatformV2AuthenticationTokenArgsDict']]] = None,
429
- authorization: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
430
416
  description: Optional[pulumi.Input[str]] = None,
431
417
  project_id: Optional[pulumi.Input[str]] = None,
432
418
  service_endpoint_name: Optional[pulumi.Input[str]] = None,
@@ -442,7 +428,6 @@ class ServiceendpointJfrogPlatformV2(pulumi.CustomResource):
442
428
 
443
429
  __props__.__dict__["authentication_basic"] = authentication_basic
444
430
  __props__.__dict__["authentication_token"] = authentication_token
445
- __props__.__dict__["authorization"] = authorization
446
431
  __props__.__dict__["description"] = description
447
432
  if project_id is None and not opts.urn:
448
433
  raise TypeError("Missing required property 'project_id'")
@@ -453,6 +438,7 @@ class ServiceendpointJfrogPlatformV2(pulumi.CustomResource):
453
438
  if url is None and not opts.urn:
454
439
  raise TypeError("Missing required property 'url'")
455
440
  __props__.__dict__["url"] = url
441
+ __props__.__dict__["authorization"] = None
456
442
  super(ServiceendpointJfrogPlatformV2, __self__).__init__(
457
443
  'azuredevops:index/serviceendpointJfrogPlatformV2:ServiceendpointJfrogPlatformV2',
458
444
  resource_name,
@@ -477,8 +463,8 @@ class ServiceendpointJfrogPlatformV2(pulumi.CustomResource):
477
463
  :param str resource_name: The unique name of the resulting resource.
478
464
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
479
465
  :param pulumi.ResourceOptions opts: Options for the resource.
480
- :param pulumi.Input[Union['ServiceendpointJfrogPlatformV2AuthenticationBasicArgs', 'ServiceendpointJfrogPlatformV2AuthenticationBasicArgsDict']] authentication_basic: A `authentication_basic` block as documented below.
481
- :param pulumi.Input[Union['ServiceendpointJfrogPlatformV2AuthenticationTokenArgs', 'ServiceendpointJfrogPlatformV2AuthenticationTokenArgsDict']] authentication_token: A `authentication_token` block as documented below.
466
+ :param pulumi.Input[Union['ServiceendpointJfrogPlatformV2AuthenticationBasicArgs', 'ServiceendpointJfrogPlatformV2AuthenticationBasicArgsDict']] authentication_basic: An `authentication_basic` block as documented below.
467
+ :param pulumi.Input[Union['ServiceendpointJfrogPlatformV2AuthenticationTokenArgs', 'ServiceendpointJfrogPlatformV2AuthenticationTokenArgsDict']] authentication_token: An `authentication_token` block as documented below.
482
468
  :param pulumi.Input[str] description: The Service Endpoint description.
483
469
  :param pulumi.Input[str] project_id: The ID of the project.
484
470
  :param pulumi.Input[str] service_endpoint_name: The Service Endpoint name.
@@ -503,7 +489,7 @@ class ServiceendpointJfrogPlatformV2(pulumi.CustomResource):
503
489
  @pulumi.getter(name="authenticationBasic")
504
490
  def authentication_basic(self) -> pulumi.Output[Optional['outputs.ServiceendpointJfrogPlatformV2AuthenticationBasic']]:
505
491
  """
506
- A `authentication_basic` block as documented below.
492
+ An `authentication_basic` block as documented below.
507
493
  """
508
494
  return pulumi.get(self, "authentication_basic")
509
495
 
@@ -511,7 +497,7 @@ class ServiceendpointJfrogPlatformV2(pulumi.CustomResource):
511
497
  @pulumi.getter(name="authenticationToken")
512
498
  def authentication_token(self) -> pulumi.Output[Optional['outputs.ServiceendpointJfrogPlatformV2AuthenticationToken']]:
513
499
  """
514
- A `authentication_token` block as documented below.
500
+ An `authentication_token` block as documented below.
515
501
  """
516
502
  return pulumi.get(self, "authentication_token")
517
503