pulumi-azuredevops 3.6.0a1737523387__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.0a1737523387.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.0a1737523387.dist-info/RECORD +0 -140
  118. {pulumi_azuredevops-3.6.0a1737523387.dist-info → pulumi_azuredevops-3.6.0a1737710622.dist-info}/WHEEL +0 -0
  119. {pulumi_azuredevops-3.6.0a1737523387.dist-info → pulumi_azuredevops-3.6.0a1737710622.dist-info}/top_level.txt +0 -0
@@ -31,7 +31,7 @@ class CheckBranchControlArgs:
31
31
  The set of arguments for constructing a CheckBranchControl resource.
32
32
  :param pulumi.Input[str] project_id: The project ID.
33
33
  :param pulumi.Input[str] target_resource_id: The ID of the resource being protected by the check.
34
- :param pulumi.Input[str] target_resource_type: The type of resource being protected by the check. Valid values: `endpoint`, `environment`, `queue`, `repository`, `securefile`, `variablegroup`.
34
+ :param pulumi.Input[str] target_resource_type: The type of resource being protected by the check. Possible values are: `endpoint`, `environment`, `queue`, `repository`, `securefile`, `variablegroup`.
35
35
  :param pulumi.Input[str] allowed_branches: The branches allowed to use the resource. Specify a comma separated list of allowed branches in `refs/heads/branch_name` format. To allow deployments from all branches, specify ` * ` . `refs/heads/features/* , refs/heads/releases/*` restricts deployments to all branches under features/ or releases/ . Defaults to `*`.
36
36
  :param pulumi.Input[str] display_name: The name of the branch control check displayed in the web UI.
37
37
  :param pulumi.Input[bool] ignore_unknown_protection_status: Allow deployment from branches for which protection status could not be obtained. Only relevant when verify_branch_protection is `true`. Defaults to `false`.
@@ -80,7 +80,7 @@ class CheckBranchControlArgs:
80
80
  @pulumi.getter(name="targetResourceType")
81
81
  def target_resource_type(self) -> pulumi.Input[str]:
82
82
  """
83
- The type of resource being protected by the check. Valid values: `endpoint`, `environment`, `queue`, `repository`, `securefile`, `variablegroup`.
83
+ The type of resource being protected by the check. Possible values are: `endpoint`, `environment`, `queue`, `repository`, `securefile`, `variablegroup`.
84
84
  """
85
85
  return pulumi.get(self, "target_resource_type")
86
86
 
@@ -168,7 +168,7 @@ class _CheckBranchControlState:
168
168
  :param pulumi.Input[bool] ignore_unknown_protection_status: Allow deployment from branches for which protection status could not be obtained. Only relevant when verify_branch_protection is `true`. Defaults to `false`.
169
169
  :param pulumi.Input[str] project_id: The project ID.
170
170
  :param pulumi.Input[str] target_resource_id: The ID of the resource being protected by the check.
171
- :param pulumi.Input[str] target_resource_type: The type of resource being protected by the check. Valid values: `endpoint`, `environment`, `queue`, `repository`, `securefile`, `variablegroup`.
171
+ :param pulumi.Input[str] target_resource_type: The type of resource being protected by the check. Possible values are: `endpoint`, `environment`, `queue`, `repository`, `securefile`, `variablegroup`.
172
172
  :param pulumi.Input[int] timeout: The timeout in minutes for the branch control check. Defaults to `1440`.
173
173
  :param pulumi.Input[bool] verify_branch_protection: Validate the branches being deployed are protected. Defaults to `false`.
174
174
  :param pulumi.Input[int] version: The version of the check.
@@ -256,7 +256,7 @@ class _CheckBranchControlState:
256
256
  @pulumi.getter(name="targetResourceType")
257
257
  def target_resource_type(self) -> Optional[pulumi.Input[str]]:
258
258
  """
259
- The type of resource being protected by the check. Valid values: `endpoint`, `environment`, `queue`, `repository`, `securefile`, `variablegroup`.
259
+ The type of resource being protected by the check. Possible values are: `endpoint`, `environment`, `queue`, `repository`, `securefile`, `variablegroup`.
260
260
  """
261
261
  return pulumi.get(self, "target_resource_type")
262
262
 
@@ -451,7 +451,7 @@ class CheckBranchControl(pulumi.CustomResource):
451
451
  :param pulumi.Input[bool] ignore_unknown_protection_status: Allow deployment from branches for which protection status could not be obtained. Only relevant when verify_branch_protection is `true`. Defaults to `false`.
452
452
  :param pulumi.Input[str] project_id: The project ID.
453
453
  :param pulumi.Input[str] target_resource_id: The ID of the resource being protected by the check.
454
- :param pulumi.Input[str] target_resource_type: The type of resource being protected by the check. Valid values: `endpoint`, `environment`, `queue`, `repository`, `securefile`, `variablegroup`.
454
+ :param pulumi.Input[str] target_resource_type: The type of resource being protected by the check. Possible values are: `endpoint`, `environment`, `queue`, `repository`, `securefile`, `variablegroup`.
455
455
  :param pulumi.Input[int] timeout: The timeout in minutes for the branch control check. Defaults to `1440`.
456
456
  :param pulumi.Input[bool] verify_branch_protection: Validate the branches being deployed are protected. Defaults to `false`.
457
457
  """
@@ -668,7 +668,7 @@ class CheckBranchControl(pulumi.CustomResource):
668
668
  :param pulumi.Input[bool] ignore_unknown_protection_status: Allow deployment from branches for which protection status could not be obtained. Only relevant when verify_branch_protection is `true`. Defaults to `false`.
669
669
  :param pulumi.Input[str] project_id: The project ID.
670
670
  :param pulumi.Input[str] target_resource_id: The ID of the resource being protected by the check.
671
- :param pulumi.Input[str] target_resource_type: The type of resource being protected by the check. Valid values: `endpoint`, `environment`, `queue`, `repository`, `securefile`, `variablegroup`.
671
+ :param pulumi.Input[str] target_resource_type: The type of resource being protected by the check. Possible values are: `endpoint`, `environment`, `queue`, `repository`, `securefile`, `variablegroup`.
672
672
  :param pulumi.Input[int] timeout: The timeout in minutes for the branch control check. Defaults to `1440`.
673
673
  :param pulumi.Input[bool] verify_branch_protection: Validate the branches being deployed are protected. Defaults to `false`.
674
674
  :param pulumi.Input[int] version: The version of the check.
@@ -732,7 +732,7 @@ class CheckBranchControl(pulumi.CustomResource):
732
732
  @pulumi.getter(name="targetResourceType")
733
733
  def target_resource_type(self) -> pulumi.Output[str]:
734
734
  """
735
- The type of resource being protected by the check. Valid values: `endpoint`, `environment`, `queue`, `repository`, `securefile`, `variablegroup`.
735
+ The type of resource being protected by the check. Possible values are: `endpoint`, `environment`, `queue`, `repository`, `securefile`, `variablegroup`.
736
736
  """
737
737
  return pulumi.get(self, "target_resource_type")
738
738
 
@@ -40,7 +40,7 @@ class CheckBusinessHoursArgs:
40
40
  :param pulumi.Input[str] project_id: The project ID.
41
41
  :param pulumi.Input[str] start_time: The beginning of the time period that this check will be allowed to pass, specified as 24-hour time with leading zeros.
42
42
  :param pulumi.Input[str] target_resource_id: The ID of the resource being protected by the check.
43
- :param pulumi.Input[str] target_resource_type: The type of resource being protected by the check. Valid values: `endpoint`, `environment`, `queue`, `repository`, `securefile`, `variablegroup`.
43
+ :param pulumi.Input[str] target_resource_type: The type of resource being protected by the check. Possible values are: `endpoint`, `environment`, `queue`, `repository`, `securefile`, `variablegroup`.
44
44
  :param pulumi.Input[str] time_zone: The time zone this check will be evaluated in. See below for supported values.
45
45
  :param pulumi.Input[str] display_name: The name of the business hours check displayed in the web UI.
46
46
  :param pulumi.Input[bool] friday: This check will pass on Fridays. Defaults to `false`.
@@ -129,7 +129,7 @@ class CheckBusinessHoursArgs:
129
129
  @pulumi.getter(name="targetResourceType")
130
130
  def target_resource_type(self) -> pulumi.Input[str]:
131
131
  """
132
- The type of resource being protected by the check. Valid values: `endpoint`, `environment`, `queue`, `repository`, `securefile`, `variablegroup`.
132
+ The type of resource being protected by the check. Possible values are: `endpoint`, `environment`, `queue`, `repository`, `securefile`, `variablegroup`.
133
133
  """
134
134
  return pulumi.get(self, "target_resource_type")
135
135
 
@@ -288,7 +288,7 @@ class _CheckBusinessHoursState:
288
288
  :param pulumi.Input[str] start_time: The beginning of the time period that this check will be allowed to pass, specified as 24-hour time with leading zeros.
289
289
  :param pulumi.Input[bool] sunday: This check will pass on Sundays. Defaults to `false`.
290
290
  :param pulumi.Input[str] target_resource_id: The ID of the resource being protected by the check.
291
- :param pulumi.Input[str] target_resource_type: The type of resource being protected by the check. Valid values: `endpoint`, `environment`, `queue`, `repository`, `securefile`, `variablegroup`.
291
+ :param pulumi.Input[str] target_resource_type: The type of resource being protected by the check. Possible values are: `endpoint`, `environment`, `queue`, `repository`, `securefile`, `variablegroup`.
292
292
  :param pulumi.Input[bool] thursday: This check will pass on Thursdays. Defaults to `false`.
293
293
  :param pulumi.Input[str] time_zone: The time zone this check will be evaluated in. See below for supported values.
294
294
  :param pulumi.Input[int] timeout: The timeout in minutes for the business hours check. Defaults to `1440`.
@@ -441,7 +441,7 @@ class _CheckBusinessHoursState:
441
441
  @pulumi.getter(name="targetResourceType")
442
442
  def target_resource_type(self) -> Optional[pulumi.Input[str]]:
443
443
  """
444
- The type of resource being protected by the check. Valid values: `endpoint`, `environment`, `queue`, `repository`, `securefile`, `variablegroup`.
444
+ The type of resource being protected by the check. Possible values are: `endpoint`, `environment`, `queue`, `repository`, `securefile`, `variablegroup`.
445
445
  """
446
446
  return pulumi.get(self, "target_resource_type")
447
447
 
@@ -847,7 +847,7 @@ class CheckBusinessHours(pulumi.CustomResource):
847
847
  :param pulumi.Input[str] start_time: The beginning of the time period that this check will be allowed to pass, specified as 24-hour time with leading zeros.
848
848
  :param pulumi.Input[bool] sunday: This check will pass on Sundays. Defaults to `false`.
849
849
  :param pulumi.Input[str] target_resource_id: The ID of the resource being protected by the check.
850
- :param pulumi.Input[str] target_resource_type: The type of resource being protected by the check. Valid values: `endpoint`, `environment`, `queue`, `repository`, `securefile`, `variablegroup`.
850
+ :param pulumi.Input[str] target_resource_type: The type of resource being protected by the check. Possible values are: `endpoint`, `environment`, `queue`, `repository`, `securefile`, `variablegroup`.
851
851
  :param pulumi.Input[bool] thursday: This check will pass on Thursdays. Defaults to `false`.
852
852
  :param pulumi.Input[str] time_zone: The time zone this check will be evaluated in. See below for supported values.
853
853
  :param pulumi.Input[int] timeout: The timeout in minutes for the business hours check. Defaults to `1440`.
@@ -1262,7 +1262,7 @@ class CheckBusinessHours(pulumi.CustomResource):
1262
1262
  :param pulumi.Input[str] start_time: The beginning of the time period that this check will be allowed to pass, specified as 24-hour time with leading zeros.
1263
1263
  :param pulumi.Input[bool] sunday: This check will pass on Sundays. Defaults to `false`.
1264
1264
  :param pulumi.Input[str] target_resource_id: The ID of the resource being protected by the check.
1265
- :param pulumi.Input[str] target_resource_type: The type of resource being protected by the check. Valid values: `endpoint`, `environment`, `queue`, `repository`, `securefile`, `variablegroup`.
1265
+ :param pulumi.Input[str] target_resource_type: The type of resource being protected by the check. Possible values are: `endpoint`, `environment`, `queue`, `repository`, `securefile`, `variablegroup`.
1266
1266
  :param pulumi.Input[bool] thursday: This check will pass on Thursdays. Defaults to `false`.
1267
1267
  :param pulumi.Input[str] time_zone: The time zone this check will be evaluated in. See below for supported values.
1268
1268
  :param pulumi.Input[int] timeout: The timeout in minutes for the business hours check. Defaults to `1440`.
@@ -1368,7 +1368,7 @@ class CheckBusinessHours(pulumi.CustomResource):
1368
1368
  @pulumi.getter(name="targetResourceType")
1369
1369
  def target_resource_type(self) -> pulumi.Output[str]:
1370
1370
  """
1371
- The type of resource being protected by the check. Valid values: `endpoint`, `environment`, `queue`, `repository`, `securefile`, `variablegroup`.
1371
+ The type of resource being protected by the check. Possible values are: `endpoint`, `environment`, `queue`, `repository`, `securefile`, `variablegroup`.
1372
1372
  """
1373
1373
  return pulumi.get(self, "target_resource_type")
1374
1374
 
@@ -27,7 +27,7 @@ class CheckExclusiveLockArgs:
27
27
  The set of arguments for constructing a CheckExclusiveLock resource.
28
28
  :param pulumi.Input[str] project_id: The project ID. Changing this forces a new Exclusive Lock Check to be created.
29
29
  :param pulumi.Input[str] target_resource_id: The ID of the resource being protected by the check. Changing this forces a new Exclusive Lock to be created.
30
- :param pulumi.Input[str] target_resource_type: The type of resource being protected by the check. Valid values: `endpoint`, `environment`, `queue`, `repository`, `securefile`, `variablegroup`. Changing this forces a new Exclusive Lock to be created.
30
+ :param pulumi.Input[str] target_resource_type: The type of resource being protected by the check. Possible values are: `endpoint`, `environment`, `queue`, `repository`, `securefile`, `variablegroup`. Changing this forces a new Exclusive Lock to be created.
31
31
  :param pulumi.Input[int] timeout: The timeout in minutes for the exclusive lock. Defaults to `43200`.
32
32
  """
33
33
  pulumi.set(__self__, "project_id", project_id)
@@ -64,7 +64,7 @@ class CheckExclusiveLockArgs:
64
64
  @pulumi.getter(name="targetResourceType")
65
65
  def target_resource_type(self) -> pulumi.Input[str]:
66
66
  """
67
- The type of resource being protected by the check. Valid values: `endpoint`, `environment`, `queue`, `repository`, `securefile`, `variablegroup`. Changing this forces a new Exclusive Lock to be created.
67
+ The type of resource being protected by the check. Possible values are: `endpoint`, `environment`, `queue`, `repository`, `securefile`, `variablegroup`. Changing this forces a new Exclusive Lock to be created.
68
68
  """
69
69
  return pulumi.get(self, "target_resource_type")
70
70
 
@@ -97,7 +97,7 @@ class _CheckExclusiveLockState:
97
97
  Input properties used for looking up and filtering CheckExclusiveLock resources.
98
98
  :param pulumi.Input[str] project_id: The project ID. Changing this forces a new Exclusive Lock Check to be created.
99
99
  :param pulumi.Input[str] target_resource_id: The ID of the resource being protected by the check. Changing this forces a new Exclusive Lock to be created.
100
- :param pulumi.Input[str] target_resource_type: The type of resource being protected by the check. Valid values: `endpoint`, `environment`, `queue`, `repository`, `securefile`, `variablegroup`. Changing this forces a new Exclusive Lock to be created.
100
+ :param pulumi.Input[str] target_resource_type: The type of resource being protected by the check. Possible values are: `endpoint`, `environment`, `queue`, `repository`, `securefile`, `variablegroup`. Changing this forces a new Exclusive Lock to be created.
101
101
  :param pulumi.Input[int] timeout: The timeout in minutes for the exclusive lock. Defaults to `43200`.
102
102
  :param pulumi.Input[int] version: The version of the check.
103
103
  """
@@ -140,7 +140,7 @@ class _CheckExclusiveLockState:
140
140
  @pulumi.getter(name="targetResourceType")
141
141
  def target_resource_type(self) -> Optional[pulumi.Input[str]]:
142
142
  """
143
- The type of resource being protected by the check. Valid values: `endpoint`, `environment`, `queue`, `repository`, `securefile`, `variablegroup`. Changing this forces a new Exclusive Lock to be created.
143
+ The type of resource being protected by the check. Possible values are: `endpoint`, `environment`, `queue`, `repository`, `securefile`, `variablegroup`. Changing this forces a new Exclusive Lock to be created.
144
144
  """
145
145
  return pulumi.get(self, "target_resource_type")
146
146
 
@@ -260,7 +260,7 @@ class CheckExclusiveLock(pulumi.CustomResource):
260
260
  :param pulumi.ResourceOptions opts: Options for the resource.
261
261
  :param pulumi.Input[str] project_id: The project ID. Changing this forces a new Exclusive Lock Check to be created.
262
262
  :param pulumi.Input[str] target_resource_id: The ID of the resource being protected by the check. Changing this forces a new Exclusive Lock to be created.
263
- :param pulumi.Input[str] target_resource_type: The type of resource being protected by the check. Valid values: `endpoint`, `environment`, `queue`, `repository`, `securefile`, `variablegroup`. Changing this forces a new Exclusive Lock to be created.
263
+ :param pulumi.Input[str] target_resource_type: The type of resource being protected by the check. Possible values are: `endpoint`, `environment`, `queue`, `repository`, `securefile`, `variablegroup`. Changing this forces a new Exclusive Lock to be created.
264
264
  :param pulumi.Input[int] timeout: The timeout in minutes for the exclusive lock. Defaults to `43200`.
265
265
  """
266
266
  ...
@@ -405,7 +405,7 @@ class CheckExclusiveLock(pulumi.CustomResource):
405
405
  :param pulumi.ResourceOptions opts: Options for the resource.
406
406
  :param pulumi.Input[str] project_id: The project ID. Changing this forces a new Exclusive Lock Check to be created.
407
407
  :param pulumi.Input[str] target_resource_id: The ID of the resource being protected by the check. Changing this forces a new Exclusive Lock to be created.
408
- :param pulumi.Input[str] target_resource_type: The type of resource being protected by the check. Valid values: `endpoint`, `environment`, `queue`, `repository`, `securefile`, `variablegroup`. Changing this forces a new Exclusive Lock to be created.
408
+ :param pulumi.Input[str] target_resource_type: The type of resource being protected by the check. Possible values are: `endpoint`, `environment`, `queue`, `repository`, `securefile`, `variablegroup`. Changing this forces a new Exclusive Lock to be created.
409
409
  :param pulumi.Input[int] timeout: The timeout in minutes for the exclusive lock. Defaults to `43200`.
410
410
  :param pulumi.Input[int] version: The version of the check.
411
411
  """
@@ -440,7 +440,7 @@ class CheckExclusiveLock(pulumi.CustomResource):
440
440
  @pulumi.getter(name="targetResourceType")
441
441
  def target_resource_type(self) -> pulumi.Output[str]:
442
442
  """
443
- The type of resource being protected by the check. Valid values: `endpoint`, `environment`, `queue`, `repository`, `securefile`, `variablegroup`. Changing this forces a new Exclusive Lock to be created.
443
+ The type of resource being protected by the check. Possible values are: `endpoint`, `environment`, `queue`, `repository`, `securefile`, `variablegroup`. Changing this forces a new Exclusive Lock to be created.
444
444
  """
445
445
  return pulumi.get(self, "target_resource_type")
446
446