pulumi-azuredevops 3.6.0a1737091250__py3-none-any.whl → 3.6.0a1737710622__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
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.0a1737091250.dist-info → pulumi_azuredevops-3.6.0a1737710622.dist-info}/METADATA +1 -1
  116. pulumi_azuredevops-3.6.0a1737710622.dist-info/RECORD +148 -0
  117. pulumi_azuredevops-3.6.0a1737091250.dist-info/RECORD +0 -140
  118. {pulumi_azuredevops-3.6.0a1737091250.dist-info → pulumi_azuredevops-3.6.0a1737710622.dist-info}/WHEEL +0 -0
  119. {pulumi_azuredevops-3.6.0a1737091250.dist-info → pulumi_azuredevops-3.6.0a1737710622.dist-info}/top_level.txt +0 -0
@@ -45,15 +45,15 @@ class ServiceEndpointAzureRMArgs:
45
45
  :param pulumi.Input[str] azurerm_management_group_name: The Management group Name of the targets.
46
46
  :param pulumi.Input[str] azurerm_subscription_id: The Subscription ID of the Azure targets.
47
47
  :param pulumi.Input[str] azurerm_subscription_name: The Subscription Name of the targets.
48
- :param pulumi.Input['ServiceEndpointAzureRMCredentialsArgs'] credentials: A `credentials` block.
48
+ :param pulumi.Input['ServiceEndpointAzureRMCredentialsArgs'] credentials: A `credentials` block as defined below.
49
49
  :param pulumi.Input[str] description: Service connection description.
50
50
  :param pulumi.Input[str] environment: The Cloud Environment to use. Defaults to `AzureCloud`. Possible values are `AzureCloud`, `AzureChinaCloud`, `AzureUSGovernment`, `AzureGermanCloud` and `AzureStack`. Changing this forces a new resource to be created.
51
- :param pulumi.Input['ServiceEndpointAzureRMFeaturesArgs'] features: A `features` block.
51
+ :param pulumi.Input['ServiceEndpointAzureRMFeaturesArgs'] features: A `features` block as defined below.
52
52
  :param pulumi.Input[str] resource_group: The resource group used for scope of automatic service endpoint.
53
53
  :param pulumi.Input[str] server_url: The server URL of the service endpoint. Changing this forces a new resource to be created.
54
54
 
55
55
  > **NOTE:** One of either `Subscription` scoped i.e. `azurerm_subscription_id`, `azurerm_subscription_name` or `ManagementGroup` scoped i.e. `azurerm_management_group_id`, `azurerm_management_group_name` values must be specified.
56
- :param pulumi.Input[str] service_endpoint_authentication_scheme: Specifies the type of azurerm endpoint, either `WorkloadIdentityFederation`, `ManagedServiceIdentity` or `ServicePrincipal`. Defaults to `ServicePrincipal` for backwards compatibility.
56
+ :param pulumi.Input[str] service_endpoint_authentication_scheme: Specifies the type of Azure Resource Manager Service Endpoint. Possible values are `WorkloadIdentityFederation`, `ManagedServiceIdentity` or `ServicePrincipal`. Defaults to `ServicePrincipal` for backwards compatibility.
57
57
 
58
58
  > **NOTE:** The `WorkloadIdentityFederation` authentication scheme is currently in private preview. Your organisation must be part of the preview and the feature toggle must be turned on to use it. More details can be found [here](https://aka.ms/azdo-rm-workload-identity).
59
59
  """
@@ -182,7 +182,7 @@ class ServiceEndpointAzureRMArgs:
182
182
  @pulumi.getter
183
183
  def credentials(self) -> Optional[pulumi.Input['ServiceEndpointAzureRMCredentialsArgs']]:
184
184
  """
185
- A `credentials` block.
185
+ A `credentials` block as defined below.
186
186
  """
187
187
  return pulumi.get(self, "credentials")
188
188
 
@@ -218,7 +218,7 @@ class ServiceEndpointAzureRMArgs:
218
218
  @pulumi.getter
219
219
  def features(self) -> Optional[pulumi.Input['ServiceEndpointAzureRMFeaturesArgs']]:
220
220
  """
221
- A `features` block.
221
+ A `features` block as defined below.
222
222
  """
223
223
  return pulumi.get(self, "features")
224
224
 
@@ -256,7 +256,7 @@ class ServiceEndpointAzureRMArgs:
256
256
  @pulumi.getter(name="serviceEndpointAuthenticationScheme")
257
257
  def service_endpoint_authentication_scheme(self) -> Optional[pulumi.Input[str]]:
258
258
  """
259
- Specifies the type of azurerm endpoint, either `WorkloadIdentityFederation`, `ManagedServiceIdentity` or `ServicePrincipal`. Defaults to `ServicePrincipal` for backwards compatibility.
259
+ Specifies the type of Azure Resource Manager Service Endpoint. Possible values are `WorkloadIdentityFederation`, `ManagedServiceIdentity` or `ServicePrincipal`. Defaults to `ServicePrincipal` for backwards compatibility.
260
260
 
261
261
  > **NOTE:** The `WorkloadIdentityFederation` authentication scheme is currently in private preview. Your organisation must be part of the preview and the feature toggle must be turned on to use it. More details can be found [here](https://aka.ms/azdo-rm-workload-identity).
262
262
  """
@@ -295,16 +295,16 @@ class _ServiceEndpointAzureRMState:
295
295
  :param pulumi.Input[str] azurerm_spn_tenantid: The Tenant ID of the service principal.
296
296
  :param pulumi.Input[str] azurerm_subscription_id: The Subscription ID of the Azure targets.
297
297
  :param pulumi.Input[str] azurerm_subscription_name: The Subscription Name of the targets.
298
- :param pulumi.Input['ServiceEndpointAzureRMCredentialsArgs'] credentials: A `credentials` block.
298
+ :param pulumi.Input['ServiceEndpointAzureRMCredentialsArgs'] credentials: A `credentials` block as defined below.
299
299
  :param pulumi.Input[str] description: Service connection description.
300
300
  :param pulumi.Input[str] environment: The Cloud Environment to use. Defaults to `AzureCloud`. Possible values are `AzureCloud`, `AzureChinaCloud`, `AzureUSGovernment`, `AzureGermanCloud` and `AzureStack`. Changing this forces a new resource to be created.
301
- :param pulumi.Input['ServiceEndpointAzureRMFeaturesArgs'] features: A `features` block.
301
+ :param pulumi.Input['ServiceEndpointAzureRMFeaturesArgs'] features: A `features` block as defined below.
302
302
  :param pulumi.Input[str] project_id: The ID of the project.
303
303
  :param pulumi.Input[str] resource_group: The resource group used for scope of automatic service endpoint.
304
304
  :param pulumi.Input[str] server_url: The server URL of the service endpoint. Changing this forces a new resource to be created.
305
305
 
306
306
  > **NOTE:** One of either `Subscription` scoped i.e. `azurerm_subscription_id`, `azurerm_subscription_name` or `ManagementGroup` scoped i.e. `azurerm_management_group_id`, `azurerm_management_group_name` values must be specified.
307
- :param pulumi.Input[str] service_endpoint_authentication_scheme: Specifies the type of azurerm endpoint, either `WorkloadIdentityFederation`, `ManagedServiceIdentity` or `ServicePrincipal`. Defaults to `ServicePrincipal` for backwards compatibility.
307
+ :param pulumi.Input[str] service_endpoint_authentication_scheme: Specifies the type of Azure Resource Manager Service Endpoint. Possible values are `WorkloadIdentityFederation`, `ManagedServiceIdentity` or `ServicePrincipal`. Defaults to `ServicePrincipal` for backwards compatibility.
308
308
 
309
309
  > **NOTE:** The `WorkloadIdentityFederation` authentication scheme is currently in private preview. Your organisation must be part of the preview and the feature toggle must be turned on to use it. More details can be found [here](https://aka.ms/azdo-rm-workload-identity).
310
310
  :param pulumi.Input[str] service_endpoint_name: The Service Endpoint Name.
@@ -422,7 +422,7 @@ class _ServiceEndpointAzureRMState:
422
422
  @pulumi.getter
423
423
  def credentials(self) -> Optional[pulumi.Input['ServiceEndpointAzureRMCredentialsArgs']]:
424
424
  """
425
- A `credentials` block.
425
+ A `credentials` block as defined below.
426
426
  """
427
427
  return pulumi.get(self, "credentials")
428
428
 
@@ -458,7 +458,7 @@ class _ServiceEndpointAzureRMState:
458
458
  @pulumi.getter
459
459
  def features(self) -> Optional[pulumi.Input['ServiceEndpointAzureRMFeaturesArgs']]:
460
460
  """
461
- A `features` block.
461
+ A `features` block as defined below.
462
462
  """
463
463
  return pulumi.get(self, "features")
464
464
 
@@ -508,7 +508,7 @@ class _ServiceEndpointAzureRMState:
508
508
  @pulumi.getter(name="serviceEndpointAuthenticationScheme")
509
509
  def service_endpoint_authentication_scheme(self) -> Optional[pulumi.Input[str]]:
510
510
  """
511
- Specifies the type of azurerm endpoint, either `WorkloadIdentityFederation`, `ManagedServiceIdentity` or `ServicePrincipal`. Defaults to `ServicePrincipal` for backwards compatibility.
511
+ Specifies the type of Azure Resource Manager Service Endpoint. Possible values are `WorkloadIdentityFederation`, `ManagedServiceIdentity` or `ServicePrincipal`. Defaults to `ServicePrincipal` for backwards compatibility.
512
512
 
513
513
  > **NOTE:** The `WorkloadIdentityFederation` authentication scheme is currently in private preview. Your organisation must be part of the preview and the feature toggle must be turned on to use it. More details can be found [here](https://aka.ms/azdo-rm-workload-identity).
514
514
  """
@@ -589,7 +589,7 @@ class ServiceEndpointAzureRM(pulumi.CustomResource):
589
589
  service_endpoint_name: Optional[pulumi.Input[str]] = None,
590
590
  __props__=None):
591
591
  """
592
- Manages Manual or Automatic AzureRM service endpoint within Azure DevOps.
592
+ Manages Manual or Automatic Azure Resource Manager service endpoint within Azure DevOps.
593
593
 
594
594
  ## Requirements (Manual AzureRM Service Endpoint)
595
595
 
@@ -758,7 +758,7 @@ class ServiceEndpointAzureRM(pulumi.CustomResource):
758
758
 
759
759
  ## Import
760
760
 
761
- Azure DevOps Service Endpoint Azure Resource Manage can be imported using **projectID/serviceEndpointID** or **projectName/serviceEndpointID**
761
+ Azure DevOps Azure Resource Manager Service Endpoint can be imported using **projectID/serviceEndpointID** or **projectName/serviceEndpointID**
762
762
 
763
763
  ```sh
764
764
  $ pulumi import azuredevops:index/serviceEndpointAzureRM:ServiceEndpointAzureRM example 00000000-0000-0000-0000-000000000000/00000000-0000-0000-0000-000000000000
@@ -771,16 +771,16 @@ class ServiceEndpointAzureRM(pulumi.CustomResource):
771
771
  :param pulumi.Input[str] azurerm_spn_tenantid: The Tenant ID of the service principal.
772
772
  :param pulumi.Input[str] azurerm_subscription_id: The Subscription ID of the Azure targets.
773
773
  :param pulumi.Input[str] azurerm_subscription_name: The Subscription Name of the targets.
774
- :param pulumi.Input[Union['ServiceEndpointAzureRMCredentialsArgs', 'ServiceEndpointAzureRMCredentialsArgsDict']] credentials: A `credentials` block.
774
+ :param pulumi.Input[Union['ServiceEndpointAzureRMCredentialsArgs', 'ServiceEndpointAzureRMCredentialsArgsDict']] credentials: A `credentials` block as defined below.
775
775
  :param pulumi.Input[str] description: Service connection description.
776
776
  :param pulumi.Input[str] environment: The Cloud Environment to use. Defaults to `AzureCloud`. Possible values are `AzureCloud`, `AzureChinaCloud`, `AzureUSGovernment`, `AzureGermanCloud` and `AzureStack`. Changing this forces a new resource to be created.
777
- :param pulumi.Input[Union['ServiceEndpointAzureRMFeaturesArgs', 'ServiceEndpointAzureRMFeaturesArgsDict']] features: A `features` block.
777
+ :param pulumi.Input[Union['ServiceEndpointAzureRMFeaturesArgs', 'ServiceEndpointAzureRMFeaturesArgsDict']] features: A `features` block as defined below.
778
778
  :param pulumi.Input[str] project_id: The ID of the project.
779
779
  :param pulumi.Input[str] resource_group: The resource group used for scope of automatic service endpoint.
780
780
  :param pulumi.Input[str] server_url: The server URL of the service endpoint. Changing this forces a new resource to be created.
781
781
 
782
782
  > **NOTE:** One of either `Subscription` scoped i.e. `azurerm_subscription_id`, `azurerm_subscription_name` or `ManagementGroup` scoped i.e. `azurerm_management_group_id`, `azurerm_management_group_name` values must be specified.
783
- :param pulumi.Input[str] service_endpoint_authentication_scheme: Specifies the type of azurerm endpoint, either `WorkloadIdentityFederation`, `ManagedServiceIdentity` or `ServicePrincipal`. Defaults to `ServicePrincipal` for backwards compatibility.
783
+ :param pulumi.Input[str] service_endpoint_authentication_scheme: Specifies the type of Azure Resource Manager Service Endpoint. Possible values are `WorkloadIdentityFederation`, `ManagedServiceIdentity` or `ServicePrincipal`. Defaults to `ServicePrincipal` for backwards compatibility.
784
784
 
785
785
  > **NOTE:** The `WorkloadIdentityFederation` authentication scheme is currently in private preview. Your organisation must be part of the preview and the feature toggle must be turned on to use it. More details can be found [here](https://aka.ms/azdo-rm-workload-identity).
786
786
  :param pulumi.Input[str] service_endpoint_name: The Service Endpoint Name.
@@ -792,7 +792,7 @@ class ServiceEndpointAzureRM(pulumi.CustomResource):
792
792
  args: ServiceEndpointAzureRMArgs,
793
793
  opts: Optional[pulumi.ResourceOptions] = None):
794
794
  """
795
- Manages Manual or Automatic AzureRM service endpoint within Azure DevOps.
795
+ Manages Manual or Automatic Azure Resource Manager service endpoint within Azure DevOps.
796
796
 
797
797
  ## Requirements (Manual AzureRM Service Endpoint)
798
798
 
@@ -961,7 +961,7 @@ class ServiceEndpointAzureRM(pulumi.CustomResource):
961
961
 
962
962
  ## Import
963
963
 
964
- Azure DevOps Service Endpoint Azure Resource Manage can be imported using **projectID/serviceEndpointID** or **projectName/serviceEndpointID**
964
+ Azure DevOps Azure Resource Manager Service Endpoint can be imported using **projectID/serviceEndpointID** or **projectName/serviceEndpointID**
965
965
 
966
966
  ```sh
967
967
  $ pulumi import azuredevops:index/serviceEndpointAzureRM:ServiceEndpointAzureRM example 00000000-0000-0000-0000-000000000000/00000000-0000-0000-0000-000000000000
@@ -1070,16 +1070,16 @@ class ServiceEndpointAzureRM(pulumi.CustomResource):
1070
1070
  :param pulumi.Input[str] azurerm_spn_tenantid: The Tenant ID of the service principal.
1071
1071
  :param pulumi.Input[str] azurerm_subscription_id: The Subscription ID of the Azure targets.
1072
1072
  :param pulumi.Input[str] azurerm_subscription_name: The Subscription Name of the targets.
1073
- :param pulumi.Input[Union['ServiceEndpointAzureRMCredentialsArgs', 'ServiceEndpointAzureRMCredentialsArgsDict']] credentials: A `credentials` block.
1073
+ :param pulumi.Input[Union['ServiceEndpointAzureRMCredentialsArgs', 'ServiceEndpointAzureRMCredentialsArgsDict']] credentials: A `credentials` block as defined below.
1074
1074
  :param pulumi.Input[str] description: Service connection description.
1075
1075
  :param pulumi.Input[str] environment: The Cloud Environment to use. Defaults to `AzureCloud`. Possible values are `AzureCloud`, `AzureChinaCloud`, `AzureUSGovernment`, `AzureGermanCloud` and `AzureStack`. Changing this forces a new resource to be created.
1076
- :param pulumi.Input[Union['ServiceEndpointAzureRMFeaturesArgs', 'ServiceEndpointAzureRMFeaturesArgsDict']] features: A `features` block.
1076
+ :param pulumi.Input[Union['ServiceEndpointAzureRMFeaturesArgs', 'ServiceEndpointAzureRMFeaturesArgsDict']] features: A `features` block as defined below.
1077
1077
  :param pulumi.Input[str] project_id: The ID of the project.
1078
1078
  :param pulumi.Input[str] resource_group: The resource group used for scope of automatic service endpoint.
1079
1079
  :param pulumi.Input[str] server_url: The server URL of the service endpoint. Changing this forces a new resource to be created.
1080
1080
 
1081
1081
  > **NOTE:** One of either `Subscription` scoped i.e. `azurerm_subscription_id`, `azurerm_subscription_name` or `ManagementGroup` scoped i.e. `azurerm_management_group_id`, `azurerm_management_group_name` values must be specified.
1082
- :param pulumi.Input[str] service_endpoint_authentication_scheme: Specifies the type of azurerm endpoint, either `WorkloadIdentityFederation`, `ManagedServiceIdentity` or `ServicePrincipal`. Defaults to `ServicePrincipal` for backwards compatibility.
1082
+ :param pulumi.Input[str] service_endpoint_authentication_scheme: Specifies the type of Azure Resource Manager Service Endpoint. Possible values are `WorkloadIdentityFederation`, `ManagedServiceIdentity` or `ServicePrincipal`. Defaults to `ServicePrincipal` for backwards compatibility.
1083
1083
 
1084
1084
  > **NOTE:** The `WorkloadIdentityFederation` authentication scheme is currently in private preview. Your organisation must be part of the preview and the feature toggle must be turned on to use it. More details can be found [here](https://aka.ms/azdo-rm-workload-identity).
1085
1085
  :param pulumi.Input[str] service_endpoint_name: The Service Endpoint Name.
@@ -1160,7 +1160,7 @@ class ServiceEndpointAzureRM(pulumi.CustomResource):
1160
1160
  @pulumi.getter
1161
1161
  def credentials(self) -> pulumi.Output[Optional['outputs.ServiceEndpointAzureRMCredentials']]:
1162
1162
  """
1163
- A `credentials` block.
1163
+ A `credentials` block as defined below.
1164
1164
  """
1165
1165
  return pulumi.get(self, "credentials")
1166
1166
 
@@ -1184,7 +1184,7 @@ class ServiceEndpointAzureRM(pulumi.CustomResource):
1184
1184
  @pulumi.getter
1185
1185
  def features(self) -> pulumi.Output[Optional['outputs.ServiceEndpointAzureRMFeatures']]:
1186
1186
  """
1187
- A `features` block.
1187
+ A `features` block as defined below.
1188
1188
  """
1189
1189
  return pulumi.get(self, "features")
1190
1190
 
@@ -1218,7 +1218,7 @@ class ServiceEndpointAzureRM(pulumi.CustomResource):
1218
1218
  @pulumi.getter(name="serviceEndpointAuthenticationScheme")
1219
1219
  def service_endpoint_authentication_scheme(self) -> pulumi.Output[Optional[str]]:
1220
1220
  """
1221
- Specifies the type of azurerm endpoint, either `WorkloadIdentityFederation`, `ManagedServiceIdentity` or `ServicePrincipal`. Defaults to `ServicePrincipal` for backwards compatibility.
1221
+ Specifies the type of Azure Resource Manager Service Endpoint. Possible values are `WorkloadIdentityFederation`, `ManagedServiceIdentity` or `ServicePrincipal`. Defaults to `ServicePrincipal` for backwards compatibility.
1222
1222
 
1223
1223
  > **NOTE:** The `WorkloadIdentityFederation` authentication scheme is currently in private preview. Your organisation must be part of the preview and the feature toggle must be turned on to use it. More details can be found [here](https://aka.ms/azdo-rm-workload-identity).
1224
1224
  """
@@ -245,7 +245,7 @@ class ServiceEndpointBitBucket(pulumi.CustomResource):
245
245
 
246
246
  ## Import
247
247
 
248
- Azure DevOps Service Endpoint Bitbucket can be imported using **projectID/serviceEndpointID** or **projectName/serviceEndpointID**
248
+ Azure DevOps Bitbucket Service Endpoint can be imported using **projectID/serviceEndpointID** or **projectName/serviceEndpointID**
249
249
 
250
250
  ```sh
251
251
  $ pulumi import azuredevops:index/serviceEndpointBitBucket:ServiceEndpointBitBucket example 00000000-0000-0000-0000-000000000000/00000000-0000-0000-0000-000000000000
@@ -293,7 +293,7 @@ class ServiceEndpointBitBucket(pulumi.CustomResource):
293
293
 
294
294
  ## Import
295
295
 
296
- Azure DevOps Service Endpoint Bitbucket can be imported using **projectID/serviceEndpointID** or **projectName/serviceEndpointID**
296
+ Azure DevOps Bitbucket Service Endpoint can be imported using **projectID/serviceEndpointID** or **projectName/serviceEndpointID**
297
297
 
298
298
  ```sh
299
299
  $ pulumi import azuredevops:index/serviceEndpointBitBucket:ServiceEndpointBitBucket example 00000000-0000-0000-0000-000000000000/00000000-0000-0000-0000-000000000000
@@ -355,7 +355,7 @@ class ServiceEndpointDockerRegistry(pulumi.CustomResource):
355
355
 
356
356
  ## Import
357
357
 
358
- Azure DevOps Service Endpoint Docker Registry can be imported using **projectID/serviceEndpointID** or **projectName/serviceEndpointID**
358
+ Azure DevOps Docker Registry Service Endpoint can be imported using **projectID/serviceEndpointID** or **projectName/serviceEndpointID**
359
359
 
360
360
  ```sh
361
361
  $ pulumi import azuredevops:index/serviceEndpointDockerRegistry:ServiceEndpointDockerRegistry example 00000000-0000-0000-0000-000000000000/00000000-0000-0000-0000-000000000000
@@ -417,7 +417,7 @@ class ServiceEndpointDockerRegistry(pulumi.CustomResource):
417
417
 
418
418
  ## Import
419
419
 
420
- Azure DevOps Service Endpoint Docker Registry can be imported using **projectID/serviceEndpointID** or **projectName/serviceEndpointID**
420
+ Azure DevOps Docker Registry Service Endpoint can be imported using **projectID/serviceEndpointID** or **projectName/serviceEndpointID**
421
421
 
422
422
  ```sh
423
423
  $ pulumi import azuredevops:index/serviceEndpointDockerRegistry:ServiceEndpointDockerRegistry example 00000000-0000-0000-0000-000000000000/00000000-0000-0000-0000-000000000000
@@ -281,7 +281,7 @@ class ServiceEndpointGeneric(pulumi.CustomResource):
281
281
 
282
282
  ## Import
283
283
 
284
- Azure DevOps Service Endpoint Generic can be imported using **projectID/serviceEndpointID** or **projectName/serviceEndpointID**
284
+ Azure DevOps Generic Service Endpoint can be imported using **projectID/serviceEndpointID** or **projectName/serviceEndpointID**
285
285
 
286
286
  ```sh
287
287
  $ pulumi import azuredevops:index/serviceEndpointGeneric:ServiceEndpointGeneric example 00000000-0000-0000-0000-000000000000/00000000-0000-0000-0000-000000000000
@@ -332,7 +332,7 @@ class ServiceEndpointGeneric(pulumi.CustomResource):
332
332
 
333
333
  ## Import
334
334
 
335
- Azure DevOps Service Endpoint Generic can be imported using **projectID/serviceEndpointID** or **projectName/serviceEndpointID**
335
+ Azure DevOps Generic Service Endpoint can be imported using **projectID/serviceEndpointID** or **projectName/serviceEndpointID**
336
336
 
337
337
  ```sh
338
338
  $ pulumi import azuredevops:index/serviceEndpointGeneric:ServiceEndpointGeneric example 00000000-0000-0000-0000-000000000000/00000000-0000-0000-0000-000000000000
@@ -292,7 +292,7 @@ class ServiceEndpointGenericGit(pulumi.CustomResource):
292
292
  username: Optional[pulumi.Input[str]] = None,
293
293
  __props__=None):
294
294
  """
295
- Manages a generic service endpoint within Azure DevOps, which can be used to authenticate to any external git service
295
+ Manages an Other Git service endpoint within Azure DevOps, which can be used to authenticate to any external git service
296
296
  using basic authentication via a username and password. This is mostly useful for importing private git repositories.
297
297
 
298
298
  ## Example Usage
@@ -322,9 +322,7 @@ class ServiceEndpointGenericGit(pulumi.CustomResource):
322
322
 
323
323
  ## Import
324
324
 
325
- Azure DevOps Service Endpoint Generic Git can be imported using **projectID/serviceEndpointID** or
326
-
327
- **projectName/serviceEndpointID**
325
+ Azure DevOps Other Git Service Endpoint can be imported using **projectID/serviceEndpointID** or **projectName/serviceEndpointID**
328
326
 
329
327
  ```sh
330
328
  $ pulumi import azuredevops:index/serviceEndpointGenericGit:ServiceEndpointGenericGit example 00000000-0000-0000-0000-000000000000/00000000-0000-0000-0000-000000000000
@@ -348,7 +346,7 @@ class ServiceEndpointGenericGit(pulumi.CustomResource):
348
346
  args: ServiceEndpointGenericGitArgs,
349
347
  opts: Optional[pulumi.ResourceOptions] = None):
350
348
  """
351
- Manages a generic service endpoint within Azure DevOps, which can be used to authenticate to any external git service
349
+ Manages an Other Git service endpoint within Azure DevOps, which can be used to authenticate to any external git service
352
350
  using basic authentication via a username and password. This is mostly useful for importing private git repositories.
353
351
 
354
352
  ## Example Usage
@@ -378,9 +376,7 @@ class ServiceEndpointGenericGit(pulumi.CustomResource):
378
376
 
379
377
  ## Import
380
378
 
381
- Azure DevOps Service Endpoint Generic Git can be imported using **projectID/serviceEndpointID** or
382
-
383
- **projectName/serviceEndpointID**
379
+ Azure DevOps Other Git Service Endpoint can be imported using **projectID/serviceEndpointID** or **projectName/serviceEndpointID**
384
380
 
385
381
  ```sh
386
382
  $ pulumi import azuredevops:index/serviceEndpointGenericGit:ServiceEndpointGenericGit example 00000000-0000-0000-0000-000000000000/00000000-0000-0000-0000-000000000000
@@ -31,6 +31,7 @@ class ServiceEndpointGitHubArgs:
31
31
  The set of arguments for constructing a ServiceEndpointGitHub resource.
32
32
  :param pulumi.Input[str] project_id: The ID of the project.
33
33
  :param pulumi.Input[str] service_endpoint_name: The Service Endpoint name.
34
+ :param pulumi.Input['ServiceEndpointGitHubAuthOauthArgs'] auth_oauth: An `auth_oauth` block as documented below. Allows connecting using an Oauth token.
34
35
  :param pulumi.Input['ServiceEndpointGitHubAuthPersonalArgs'] auth_personal: An `auth_personal` block as documented below. Allows connecting using a personal access token.
35
36
  """
36
37
  pulumi.set(__self__, "project_id", project_id)
@@ -71,6 +72,9 @@ class ServiceEndpointGitHubArgs:
71
72
  @property
72
73
  @pulumi.getter(name="authOauth")
73
74
  def auth_oauth(self) -> Optional[pulumi.Input['ServiceEndpointGitHubAuthOauthArgs']]:
75
+ """
76
+ An `auth_oauth` block as documented below. Allows connecting using an Oauth token.
77
+ """
74
78
  return pulumi.get(self, "auth_oauth")
75
79
 
76
80
  @auth_oauth.setter
@@ -119,6 +123,7 @@ class _ServiceEndpointGitHubState:
119
123
  service_endpoint_name: Optional[pulumi.Input[str]] = None):
120
124
  """
121
125
  Input properties used for looking up and filtering ServiceEndpointGitHub resources.
126
+ :param pulumi.Input['ServiceEndpointGitHubAuthOauthArgs'] auth_oauth: An `auth_oauth` block as documented below. Allows connecting using an Oauth token.
122
127
  :param pulumi.Input['ServiceEndpointGitHubAuthPersonalArgs'] auth_personal: An `auth_personal` block as documented below. Allows connecting using a personal access token.
123
128
  :param pulumi.Input[str] project_id: The ID of the project.
124
129
  :param pulumi.Input[str] service_endpoint_name: The Service Endpoint name.
@@ -139,6 +144,9 @@ class _ServiceEndpointGitHubState:
139
144
  @property
140
145
  @pulumi.getter(name="authOauth")
141
146
  def auth_oauth(self) -> Optional[pulumi.Input['ServiceEndpointGitHubAuthOauthArgs']]:
147
+ """
148
+ An `auth_oauth` block as documented below. Allows connecting using an Oauth token.
149
+ """
142
150
  return pulumi.get(self, "auth_oauth")
143
151
 
144
152
  @auth_oauth.setter
@@ -275,7 +283,7 @@ class ServiceEndpointGitHub(pulumi.CustomResource):
275
283
 
276
284
  ## Import
277
285
 
278
- Azure DevOps Service Endpoint GitHub can be imported using **projectID/serviceEndpointID** or **projectName/serviceEndpointID**
286
+ Azure DevOps GitHub Service Endpoint can be imported using **projectID/serviceEndpointID** or **projectName/serviceEndpointID**
279
287
 
280
288
  ```sh
281
289
  $ pulumi import azuredevops:index/serviceEndpointGitHub:ServiceEndpointGitHub example 00000000-0000-0000-0000-000000000000/00000000-0000-0000-0000-000000000000
@@ -283,6 +291,7 @@ class ServiceEndpointGitHub(pulumi.CustomResource):
283
291
 
284
292
  :param str resource_name: The name of the resource.
285
293
  :param pulumi.ResourceOptions opts: Options for the resource.
294
+ :param pulumi.Input[Union['ServiceEndpointGitHubAuthOauthArgs', 'ServiceEndpointGitHubAuthOauthArgsDict']] auth_oauth: An `auth_oauth` block as documented below. Allows connecting using an Oauth token.
286
295
  :param pulumi.Input[Union['ServiceEndpointGitHubAuthPersonalArgs', 'ServiceEndpointGitHubAuthPersonalArgsDict']] auth_personal: An `auth_personal` block as documented below. Allows connecting using a personal access token.
287
296
  :param pulumi.Input[str] project_id: The ID of the project.
288
297
  :param pulumi.Input[str] service_endpoint_name: The Service Endpoint name.
@@ -356,7 +365,7 @@ class ServiceEndpointGitHub(pulumi.CustomResource):
356
365
 
357
366
  ## Import
358
367
 
359
- Azure DevOps Service Endpoint GitHub can be imported using **projectID/serviceEndpointID** or **projectName/serviceEndpointID**
368
+ Azure DevOps GitHub Service Endpoint can be imported using **projectID/serviceEndpointID** or **projectName/serviceEndpointID**
360
369
 
361
370
  ```sh
362
371
  $ pulumi import azuredevops:index/serviceEndpointGitHub:ServiceEndpointGitHub example 00000000-0000-0000-0000-000000000000/00000000-0000-0000-0000-000000000000
@@ -425,6 +434,7 @@ class ServiceEndpointGitHub(pulumi.CustomResource):
425
434
  :param str resource_name: The unique name of the resulting resource.
426
435
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
427
436
  :param pulumi.ResourceOptions opts: Options for the resource.
437
+ :param pulumi.Input[Union['ServiceEndpointGitHubAuthOauthArgs', 'ServiceEndpointGitHubAuthOauthArgsDict']] auth_oauth: An `auth_oauth` block as documented below. Allows connecting using an Oauth token.
428
438
  :param pulumi.Input[Union['ServiceEndpointGitHubAuthPersonalArgs', 'ServiceEndpointGitHubAuthPersonalArgsDict']] auth_personal: An `auth_personal` block as documented below. Allows connecting using a personal access token.
429
439
  :param pulumi.Input[str] project_id: The ID of the project.
430
440
  :param pulumi.Input[str] service_endpoint_name: The Service Endpoint name.
@@ -444,6 +454,9 @@ class ServiceEndpointGitHub(pulumi.CustomResource):
444
454
  @property
445
455
  @pulumi.getter(name="authOauth")
446
456
  def auth_oauth(self) -> pulumi.Output[Optional['outputs.ServiceEndpointGitHubAuthOauth']]:
457
+ """
458
+ An `auth_oauth` block as documented below. Allows connecting using an Oauth token.
459
+ """
447
460
  return pulumi.get(self, "auth_oauth")
448
461
 
449
462
  @property
@@ -29,6 +29,7 @@ class ServiceEndpointGitHubEnterpriseArgs:
29
29
  description: Optional[pulumi.Input[str]] = None):
30
30
  """
31
31
  The set of arguments for constructing a ServiceEndpointGitHubEnterprise resource.
32
+ :param pulumi.Input['ServiceEndpointGitHubEnterpriseAuthPersonalArgs'] auth_personal: An `auth_personal` block as documented below. Allows connecting using a personal access token.
32
33
  :param pulumi.Input[str] project_id: The ID of the project.
33
34
  :param pulumi.Input[str] service_endpoint_name: The Service Endpoint name.
34
35
  :param pulumi.Input[str] url: GitHub Enterprise Server Url.
@@ -45,6 +46,9 @@ class ServiceEndpointGitHubEnterpriseArgs:
45
46
  @property
46
47
  @pulumi.getter(name="authPersonal")
47
48
  def auth_personal(self) -> pulumi.Input['ServiceEndpointGitHubEnterpriseAuthPersonalArgs']:
49
+ """
50
+ An `auth_personal` block as documented below. Allows connecting using a personal access token.
51
+ """
48
52
  return pulumi.get(self, "auth_personal")
49
53
 
50
54
  @auth_personal.setter
@@ -117,6 +121,7 @@ class _ServiceEndpointGitHubEnterpriseState:
117
121
  url: Optional[pulumi.Input[str]] = None):
118
122
  """
119
123
  Input properties used for looking up and filtering ServiceEndpointGitHubEnterprise resources.
124
+ :param pulumi.Input['ServiceEndpointGitHubEnterpriseAuthPersonalArgs'] auth_personal: An `auth_personal` block as documented below. Allows connecting using a personal access token.
120
125
  :param pulumi.Input[str] project_id: The ID of the project.
121
126
  :param pulumi.Input[str] service_endpoint_name: The Service Endpoint name.
122
127
  :param pulumi.Input[str] url: GitHub Enterprise Server Url.
@@ -137,6 +142,9 @@ class _ServiceEndpointGitHubEnterpriseState:
137
142
  @property
138
143
  @pulumi.getter(name="authPersonal")
139
144
  def auth_personal(self) -> Optional[pulumi.Input['ServiceEndpointGitHubEnterpriseAuthPersonalArgs']]:
145
+ """
146
+ An `auth_personal` block as documented below. Allows connecting using a personal access token.
147
+ """
140
148
  return pulumi.get(self, "auth_personal")
141
149
 
142
150
  @auth_personal.setter
@@ -241,7 +249,7 @@ class ServiceEndpointGitHubEnterprise(pulumi.CustomResource):
241
249
 
242
250
  ## Import
243
251
 
244
- Azure DevOps Service Endpoint GitHub Enterprise Server can be imported using **projectID/serviceEndpointID** or **projectName/serviceEndpointID**
252
+ Azure DevOps GitHub Enterprise Server Service Endpoint can be imported using **projectID/serviceEndpointID** or **projectName/serviceEndpointID**
245
253
 
246
254
  ```sh
247
255
  $ pulumi import azuredevops:index/serviceEndpointGitHubEnterprise:ServiceEndpointGitHubEnterprise example 00000000-0000-0000-0000-000000000000/00000000-0000-0000-0000-000000000000
@@ -249,6 +257,7 @@ class ServiceEndpointGitHubEnterprise(pulumi.CustomResource):
249
257
 
250
258
  :param str resource_name: The name of the resource.
251
259
  :param pulumi.ResourceOptions opts: Options for the resource.
260
+ :param pulumi.Input[Union['ServiceEndpointGitHubEnterpriseAuthPersonalArgs', 'ServiceEndpointGitHubEnterpriseAuthPersonalArgsDict']] auth_personal: An `auth_personal` block as documented below. Allows connecting using a personal access token.
252
261
  :param pulumi.Input[str] project_id: The ID of the project.
253
262
  :param pulumi.Input[str] service_endpoint_name: The Service Endpoint name.
254
263
  :param pulumi.Input[str] url: GitHub Enterprise Server Url.
@@ -290,7 +299,7 @@ class ServiceEndpointGitHubEnterprise(pulumi.CustomResource):
290
299
 
291
300
  ## Import
292
301
 
293
- Azure DevOps Service Endpoint GitHub Enterprise Server can be imported using **projectID/serviceEndpointID** or **projectName/serviceEndpointID**
302
+ Azure DevOps GitHub Enterprise Server Service Endpoint can be imported using **projectID/serviceEndpointID** or **projectName/serviceEndpointID**
294
303
 
295
304
  ```sh
296
305
  $ pulumi import azuredevops:index/serviceEndpointGitHubEnterprise:ServiceEndpointGitHubEnterprise example 00000000-0000-0000-0000-000000000000/00000000-0000-0000-0000-000000000000
@@ -363,6 +372,7 @@ class ServiceEndpointGitHubEnterprise(pulumi.CustomResource):
363
372
  :param str resource_name: The unique name of the resulting resource.
364
373
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
365
374
  :param pulumi.ResourceOptions opts: Options for the resource.
375
+ :param pulumi.Input[Union['ServiceEndpointGitHubEnterpriseAuthPersonalArgs', 'ServiceEndpointGitHubEnterpriseAuthPersonalArgsDict']] auth_personal: An `auth_personal` block as documented below. Allows connecting using a personal access token.
366
376
  :param pulumi.Input[str] project_id: The ID of the project.
367
377
  :param pulumi.Input[str] service_endpoint_name: The Service Endpoint name.
368
378
  :param pulumi.Input[str] url: GitHub Enterprise Server Url.
@@ -382,6 +392,9 @@ class ServiceEndpointGitHubEnterprise(pulumi.CustomResource):
382
392
  @property
383
393
  @pulumi.getter(name="authPersonal")
384
394
  def auth_personal(self) -> pulumi.Output['outputs.ServiceEndpointGitHubEnterpriseAuthPersonal']:
395
+ """
396
+ An `auth_personal` block as documented below. Allows connecting using a personal access token.
397
+ """
385
398
  return pulumi.get(self, "auth_personal")
386
399
 
387
400
  @property
@@ -36,9 +36,9 @@ class ServiceEndpointKubernetesArgs:
36
36
  :param pulumi.Input[str] authorization_type: The authentication method used to authenticate on the Kubernetes cluster. The value should be one of AzureSubscription, Kubeconfig, ServiceAccount.
37
37
  :param pulumi.Input[str] project_id: The ID of the project.
38
38
  :param pulumi.Input[str] service_endpoint_name: The Service Endpoint name.
39
- :param pulumi.Input[Sequence[pulumi.Input['ServiceEndpointKubernetesAzureSubscriptionArgs']]] azure_subscriptions: A `azure_subscription` block defined blow.
40
- :param pulumi.Input['ServiceEndpointKubernetesKubeconfigArgs'] kubeconfig: A `kubeconfig` block defined blow.
41
- :param pulumi.Input['ServiceEndpointKubernetesServiceAccountArgs'] service_account: A `service_account` block defined blow.
39
+ :param pulumi.Input[Sequence[pulumi.Input['ServiceEndpointKubernetesAzureSubscriptionArgs']]] azure_subscriptions: An `azure_subscription` block as defined below.
40
+ :param pulumi.Input['ServiceEndpointKubernetesKubeconfigArgs'] kubeconfig: A `kubeconfig` block as defined below.
41
+ :param pulumi.Input['ServiceEndpointKubernetesServiceAccountArgs'] service_account: A `service_account` block as defined below.
42
42
  """
43
43
  pulumi.set(__self__, "apiserver_url", apiserver_url)
44
44
  pulumi.set(__self__, "authorization_type", authorization_type)
@@ -116,7 +116,7 @@ class ServiceEndpointKubernetesArgs:
116
116
  @pulumi.getter(name="azureSubscriptions")
117
117
  def azure_subscriptions(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ServiceEndpointKubernetesAzureSubscriptionArgs']]]]:
118
118
  """
119
- A `azure_subscription` block defined blow.
119
+ An `azure_subscription` block as defined below.
120
120
  """
121
121
  return pulumi.get(self, "azure_subscriptions")
122
122
 
@@ -137,7 +137,7 @@ class ServiceEndpointKubernetesArgs:
137
137
  @pulumi.getter
138
138
  def kubeconfig(self) -> Optional[pulumi.Input['ServiceEndpointKubernetesKubeconfigArgs']]:
139
139
  """
140
- A `kubeconfig` block defined blow.
140
+ A `kubeconfig` block as defined below.
141
141
  """
142
142
  return pulumi.get(self, "kubeconfig")
143
143
 
@@ -149,7 +149,7 @@ class ServiceEndpointKubernetesArgs:
149
149
  @pulumi.getter(name="serviceAccount")
150
150
  def service_account(self) -> Optional[pulumi.Input['ServiceEndpointKubernetesServiceAccountArgs']]:
151
151
  """
152
- A `service_account` block defined blow.
152
+ A `service_account` block as defined below.
153
153
  """
154
154
  return pulumi.get(self, "service_account")
155
155
 
@@ -174,10 +174,10 @@ class _ServiceEndpointKubernetesState:
174
174
  Input properties used for looking up and filtering ServiceEndpointKubernetes resources.
175
175
  :param pulumi.Input[str] apiserver_url: The hostname (in form of URI) of the Kubernetes API.
176
176
  :param pulumi.Input[str] authorization_type: The authentication method used to authenticate on the Kubernetes cluster. The value should be one of AzureSubscription, Kubeconfig, ServiceAccount.
177
- :param pulumi.Input[Sequence[pulumi.Input['ServiceEndpointKubernetesAzureSubscriptionArgs']]] azure_subscriptions: A `azure_subscription` block defined blow.
178
- :param pulumi.Input['ServiceEndpointKubernetesKubeconfigArgs'] kubeconfig: A `kubeconfig` block defined blow.
177
+ :param pulumi.Input[Sequence[pulumi.Input['ServiceEndpointKubernetesAzureSubscriptionArgs']]] azure_subscriptions: An `azure_subscription` block as defined below.
178
+ :param pulumi.Input['ServiceEndpointKubernetesKubeconfigArgs'] kubeconfig: A `kubeconfig` block as defined below.
179
179
  :param pulumi.Input[str] project_id: The ID of the project.
180
- :param pulumi.Input['ServiceEndpointKubernetesServiceAccountArgs'] service_account: A `service_account` block defined blow.
180
+ :param pulumi.Input['ServiceEndpointKubernetesServiceAccountArgs'] service_account: A `service_account` block as defined below.
181
181
  :param pulumi.Input[str] service_endpoint_name: The Service Endpoint name.
182
182
  """
183
183
  if apiserver_url is not None:
@@ -236,7 +236,7 @@ class _ServiceEndpointKubernetesState:
236
236
  @pulumi.getter(name="azureSubscriptions")
237
237
  def azure_subscriptions(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ServiceEndpointKubernetesAzureSubscriptionArgs']]]]:
238
238
  """
239
- A `azure_subscription` block defined blow.
239
+ An `azure_subscription` block as defined below.
240
240
  """
241
241
  return pulumi.get(self, "azure_subscriptions")
242
242
 
@@ -257,7 +257,7 @@ class _ServiceEndpointKubernetesState:
257
257
  @pulumi.getter
258
258
  def kubeconfig(self) -> Optional[pulumi.Input['ServiceEndpointKubernetesKubeconfigArgs']]:
259
259
  """
260
- A `kubeconfig` block defined blow.
260
+ A `kubeconfig` block as defined below.
261
261
  """
262
262
  return pulumi.get(self, "kubeconfig")
263
263
 
@@ -281,7 +281,7 @@ class _ServiceEndpointKubernetesState:
281
281
  @pulumi.getter(name="serviceAccount")
282
282
  def service_account(self) -> Optional[pulumi.Input['ServiceEndpointKubernetesServiceAccountArgs']]:
283
283
  """
284
- A `service_account` block defined blow.
284
+ A `service_account` block as defined below.
285
285
  """
286
286
  return pulumi.get(self, "service_account")
287
287
 
@@ -392,7 +392,7 @@ class ServiceEndpointKubernetes(pulumi.CustomResource):
392
392
 
393
393
  ## Import
394
394
 
395
- Azure DevOps Service Endpoint Kubernetes can be imported using **projectID/serviceEndpointID** or **projectName/serviceEndpointID**
395
+ Azure DevOps Kubernetes Service Endpoint can be imported using **projectID/serviceEndpointID** or **projectName/serviceEndpointID**
396
396
 
397
397
  ```sh
398
398
  $ pulumi import azuredevops:index/serviceEndpointKubernetes:ServiceEndpointKubernetes example 00000000-0000-0000-0000-000000000000/00000000-0000-0000-0000-000000000000
@@ -402,10 +402,10 @@ class ServiceEndpointKubernetes(pulumi.CustomResource):
402
402
  :param pulumi.ResourceOptions opts: Options for the resource.
403
403
  :param pulumi.Input[str] apiserver_url: The hostname (in form of URI) of the Kubernetes API.
404
404
  :param pulumi.Input[str] authorization_type: The authentication method used to authenticate on the Kubernetes cluster. The value should be one of AzureSubscription, Kubeconfig, ServiceAccount.
405
- :param pulumi.Input[Sequence[pulumi.Input[Union['ServiceEndpointKubernetesAzureSubscriptionArgs', 'ServiceEndpointKubernetesAzureSubscriptionArgsDict']]]] azure_subscriptions: A `azure_subscription` block defined blow.
406
- :param pulumi.Input[Union['ServiceEndpointKubernetesKubeconfigArgs', 'ServiceEndpointKubernetesKubeconfigArgsDict']] kubeconfig: A `kubeconfig` block defined blow.
405
+ :param pulumi.Input[Sequence[pulumi.Input[Union['ServiceEndpointKubernetesAzureSubscriptionArgs', 'ServiceEndpointKubernetesAzureSubscriptionArgsDict']]]] azure_subscriptions: An `azure_subscription` block as defined below.
406
+ :param pulumi.Input[Union['ServiceEndpointKubernetesKubeconfigArgs', 'ServiceEndpointKubernetesKubeconfigArgsDict']] kubeconfig: A `kubeconfig` block as defined below.
407
407
  :param pulumi.Input[str] project_id: The ID of the project.
408
- :param pulumi.Input[Union['ServiceEndpointKubernetesServiceAccountArgs', 'ServiceEndpointKubernetesServiceAccountArgsDict']] service_account: A `service_account` block defined blow.
408
+ :param pulumi.Input[Union['ServiceEndpointKubernetesServiceAccountArgs', 'ServiceEndpointKubernetesServiceAccountArgsDict']] service_account: A `service_account` block as defined below.
409
409
  :param pulumi.Input[str] service_endpoint_name: The Service Endpoint name.
410
410
  """
411
411
  ...
@@ -489,7 +489,7 @@ class ServiceEndpointKubernetes(pulumi.CustomResource):
489
489
 
490
490
  ## Import
491
491
 
492
- Azure DevOps Service Endpoint Kubernetes can be imported using **projectID/serviceEndpointID** or **projectName/serviceEndpointID**
492
+ Azure DevOps Kubernetes Service Endpoint can be imported using **projectID/serviceEndpointID** or **projectName/serviceEndpointID**
493
493
 
494
494
  ```sh
495
495
  $ pulumi import azuredevops:index/serviceEndpointKubernetes:ServiceEndpointKubernetes example 00000000-0000-0000-0000-000000000000/00000000-0000-0000-0000-000000000000
@@ -573,10 +573,10 @@ class ServiceEndpointKubernetes(pulumi.CustomResource):
573
573
  :param pulumi.ResourceOptions opts: Options for the resource.
574
574
  :param pulumi.Input[str] apiserver_url: The hostname (in form of URI) of the Kubernetes API.
575
575
  :param pulumi.Input[str] authorization_type: The authentication method used to authenticate on the Kubernetes cluster. The value should be one of AzureSubscription, Kubeconfig, ServiceAccount.
576
- :param pulumi.Input[Sequence[pulumi.Input[Union['ServiceEndpointKubernetesAzureSubscriptionArgs', 'ServiceEndpointKubernetesAzureSubscriptionArgsDict']]]] azure_subscriptions: A `azure_subscription` block defined blow.
577
- :param pulumi.Input[Union['ServiceEndpointKubernetesKubeconfigArgs', 'ServiceEndpointKubernetesKubeconfigArgsDict']] kubeconfig: A `kubeconfig` block defined blow.
576
+ :param pulumi.Input[Sequence[pulumi.Input[Union['ServiceEndpointKubernetesAzureSubscriptionArgs', 'ServiceEndpointKubernetesAzureSubscriptionArgsDict']]]] azure_subscriptions: An `azure_subscription` block as defined below.
577
+ :param pulumi.Input[Union['ServiceEndpointKubernetesKubeconfigArgs', 'ServiceEndpointKubernetesKubeconfigArgsDict']] kubeconfig: A `kubeconfig` block as defined below.
578
578
  :param pulumi.Input[str] project_id: The ID of the project.
579
- :param pulumi.Input[Union['ServiceEndpointKubernetesServiceAccountArgs', 'ServiceEndpointKubernetesServiceAccountArgsDict']] service_account: A `service_account` block defined blow.
579
+ :param pulumi.Input[Union['ServiceEndpointKubernetesServiceAccountArgs', 'ServiceEndpointKubernetesServiceAccountArgsDict']] service_account: A `service_account` block as defined below.
580
580
  :param pulumi.Input[str] service_endpoint_name: The Service Endpoint name.
581
581
  """
582
582
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
@@ -619,7 +619,7 @@ class ServiceEndpointKubernetes(pulumi.CustomResource):
619
619
  @pulumi.getter(name="azureSubscriptions")
620
620
  def azure_subscriptions(self) -> pulumi.Output[Optional[Sequence['outputs.ServiceEndpointKubernetesAzureSubscription']]]:
621
621
  """
622
- A `azure_subscription` block defined blow.
622
+ An `azure_subscription` block as defined below.
623
623
  """
624
624
  return pulumi.get(self, "azure_subscriptions")
625
625
 
@@ -632,7 +632,7 @@ class ServiceEndpointKubernetes(pulumi.CustomResource):
632
632
  @pulumi.getter
633
633
  def kubeconfig(self) -> pulumi.Output[Optional['outputs.ServiceEndpointKubernetesKubeconfig']]:
634
634
  """
635
- A `kubeconfig` block defined blow.
635
+ A `kubeconfig` block as defined below.
636
636
  """
637
637
  return pulumi.get(self, "kubeconfig")
638
638
 
@@ -648,7 +648,7 @@ class ServiceEndpointKubernetes(pulumi.CustomResource):
648
648
  @pulumi.getter(name="serviceAccount")
649
649
  def service_account(self) -> pulumi.Output[Optional['outputs.ServiceEndpointKubernetesServiceAccount']]:
650
650
  """
651
- A `service_account` block defined blow.
651
+ A `service_account` block as defined below.
652
652
  """
653
653
  return pulumi.get(self, "service_account")
654
654