pulumi-azuredevops 3.8.0a1741843418__py3-none-any.whl → 3.9.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 (155) hide show
  1. pulumi_azuredevops/__init__.py +21 -0
  2. pulumi_azuredevops/_inputs.py +1492 -956
  3. pulumi_azuredevops/area_permissions.py +71 -70
  4. pulumi_azuredevops/branch_policy_auto_reviewers.py +43 -42
  5. pulumi_azuredevops/branch_policy_build_validation.py +43 -42
  6. pulumi_azuredevops/branch_policy_comment_resolution.py +43 -42
  7. pulumi_azuredevops/branch_policy_merge_types.py +43 -42
  8. pulumi_azuredevops/branch_policy_min_reviewers.py +43 -42
  9. pulumi_azuredevops/branch_policy_status_check.py +43 -42
  10. pulumi_azuredevops/branch_policy_work_item_linking.py +43 -42
  11. pulumi_azuredevops/build_definition.py +427 -91
  12. pulumi_azuredevops/build_definition_permissions.py +71 -70
  13. pulumi_azuredevops/build_folder.py +43 -42
  14. pulumi_azuredevops/build_folder_permissions.py +78 -70
  15. pulumi_azuredevops/check_approval.py +120 -119
  16. pulumi_azuredevops/check_branch_control.py +120 -119
  17. pulumi_azuredevops/check_business_hours.py +218 -217
  18. pulumi_azuredevops/check_exclusive_lock.py +64 -63
  19. pulumi_azuredevops/check_required_template.py +50 -49
  20. pulumi_azuredevops/check_rest_api.py +218 -217
  21. pulumi_azuredevops/config/__init__.py +1 -0
  22. pulumi_azuredevops/config/__init__.pyi +1 -0
  23. pulumi_azuredevops/config/vars.py +1 -0
  24. pulumi_azuredevops/dashboard.py +78 -77
  25. pulumi_azuredevops/elastic_pool.py +169 -168
  26. pulumi_azuredevops/environment.py +43 -42
  27. pulumi_azuredevops/environment_resource_kubernetes.py +99 -98
  28. pulumi_azuredevops/extension.py +426 -0
  29. pulumi_azuredevops/feed.py +29 -28
  30. pulumi_azuredevops/feed_permission.py +106 -77
  31. pulumi_azuredevops/feed_retention_policy.py +57 -56
  32. pulumi_azuredevops/get_agent_queue.py +13 -12
  33. pulumi_azuredevops/get_area.py +19 -18
  34. pulumi_azuredevops/get_build_definition.py +64 -21
  35. pulumi_azuredevops/get_client_config.py +64 -7
  36. pulumi_azuredevops/get_descriptor.py +8 -7
  37. pulumi_azuredevops/get_environment.py +18 -17
  38. pulumi_azuredevops/get_feed.py +17 -16
  39. pulumi_azuredevops/get_git_repository.py +20 -19
  40. pulumi_azuredevops/get_git_repository_file.py +201 -0
  41. pulumi_azuredevops/get_group.py +16 -15
  42. pulumi_azuredevops/get_group_membership.py +132 -0
  43. pulumi_azuredevops/get_groups.py +7 -6
  44. pulumi_azuredevops/get_identity_group.py +14 -13
  45. pulumi_azuredevops/get_identity_groups.py +7 -6
  46. pulumi_azuredevops/get_identity_users.py +14 -13
  47. pulumi_azuredevops/get_iteration.py +19 -18
  48. pulumi_azuredevops/get_pool.py +10 -9
  49. pulumi_azuredevops/get_pools.py +2 -1
  50. pulumi_azuredevops/get_project.py +18 -17
  51. pulumi_azuredevops/get_projects.py +12 -11
  52. pulumi_azuredevops/get_repositories.py +17 -16
  53. pulumi_azuredevops/get_securityrole_definitions.py +7 -6
  54. pulumi_azuredevops/get_service_endpoint_azure_rm.py +31 -30
  55. pulumi_azuredevops/get_service_endpoint_github.py +19 -18
  56. pulumi_azuredevops/get_service_principal.py +10 -9
  57. pulumi_azuredevops/get_serviceendpoint_azurecr.py +29 -28
  58. pulumi_azuredevops/get_serviceendpoint_bitbucket.py +19 -18
  59. pulumi_azuredevops/get_serviceendpoint_npm.py +20 -19
  60. pulumi_azuredevops/get_serviceendpoint_sonarcloud.py +19 -18
  61. pulumi_azuredevops/get_storage_key.py +8 -7
  62. pulumi_azuredevops/get_team.py +21 -20
  63. pulumi_azuredevops/get_teams.py +14 -13
  64. pulumi_azuredevops/get_user.py +14 -13
  65. pulumi_azuredevops/get_users.py +88 -21
  66. pulumi_azuredevops/get_variable_group.py +14 -13
  67. pulumi_azuredevops/git.py +113 -112
  68. pulumi_azuredevops/git_permissions.py +85 -84
  69. pulumi_azuredevops/git_repository_branch.py +78 -77
  70. pulumi_azuredevops/git_repository_file.py +342 -85
  71. pulumi_azuredevops/group.py +134 -133
  72. pulumi_azuredevops/group_entitlement.py +85 -84
  73. pulumi_azuredevops/group_membership.py +43 -42
  74. pulumi_azuredevops/iterative_permissions.py +71 -70
  75. pulumi_azuredevops/library_permissions.py +57 -56
  76. pulumi_azuredevops/outputs.py +1569 -918
  77. pulumi_azuredevops/pipeline_authorization.py +71 -70
  78. pulumi_azuredevops/pool.py +57 -56
  79. pulumi_azuredevops/project.py +92 -91
  80. pulumi_azuredevops/project_features.py +25 -24
  81. pulumi_azuredevops/project_permissions.py +57 -56
  82. pulumi_azuredevops/project_pipeline_settings.py +99 -98
  83. pulumi_azuredevops/project_tags.py +29 -28
  84. pulumi_azuredevops/provider.py +157 -156
  85. pulumi_azuredevops/pulumi-plugin.json +1 -1
  86. pulumi_azuredevops/queue.py +43 -42
  87. pulumi_azuredevops/repository_policy_author_email_pattern.py +71 -70
  88. pulumi_azuredevops/repository_policy_case_enforcement.py +71 -70
  89. pulumi_azuredevops/repository_policy_check_credentials.py +57 -56
  90. pulumi_azuredevops/repository_policy_file_path_pattern.py +71 -70
  91. pulumi_azuredevops/repository_policy_max_file_size.py +71 -70
  92. pulumi_azuredevops/repository_policy_max_path_length.py +71 -70
  93. pulumi_azuredevops/repository_policy_reserved_names.py +57 -56
  94. pulumi_azuredevops/resource_authorization.py +71 -70
  95. pulumi_azuredevops/securityrole_assignment.py +57 -56
  96. pulumi_azuredevops/service_endpoint_artifactory.py +62 -61
  97. pulumi_azuredevops/service_endpoint_aws.py +144 -143
  98. pulumi_azuredevops/service_endpoint_azure_dev_ops.py +86 -85
  99. pulumi_azuredevops/service_endpoint_azure_ecr.py +175 -174
  100. pulumi_azuredevops/service_endpoint_azure_rm.py +203 -194
  101. pulumi_azuredevops/service_endpoint_bit_bucket.py +72 -71
  102. pulumi_azuredevops/service_endpoint_docker_registry.py +114 -113
  103. pulumi_azuredevops/service_endpoint_generic.py +86 -85
  104. pulumi_azuredevops/service_endpoint_generic_git.py +100 -99
  105. pulumi_azuredevops/service_endpoint_git_hub.py +44 -43
  106. pulumi_azuredevops/service_endpoint_git_hub_enterprise.py +174 -82
  107. pulumi_azuredevops/service_endpoint_git_lab.py +86 -85
  108. pulumi_azuredevops/service_endpoint_kubernetes.py +72 -71
  109. pulumi_azuredevops/service_endpoint_npm.py +76 -75
  110. pulumi_azuredevops/service_endpoint_pipeline.py +58 -57
  111. pulumi_azuredevops/service_endpoint_service_fabric.py +58 -57
  112. pulumi_azuredevops/service_endpoint_sonar_cloud.py +62 -61
  113. pulumi_azuredevops/service_endpoint_sonar_qube.py +76 -75
  114. pulumi_azuredevops/service_endpoint_ssh.py +114 -113
  115. pulumi_azuredevops/service_principal_entitlement.py +71 -70
  116. pulumi_azuredevops/serviceendpoint_argocd.py +62 -61
  117. pulumi_azuredevops/serviceendpoint_azure_service_bus.py +72 -71
  118. pulumi_azuredevops/serviceendpoint_checkmarx_one.py +114 -113
  119. pulumi_azuredevops/serviceendpoint_checkmarx_sast.py +114 -113
  120. pulumi_azuredevops/serviceendpoint_checkmarx_sca.py +142 -141
  121. pulumi_azuredevops/serviceendpoint_dynamics_lifecycle_services.py +114 -113
  122. pulumi_azuredevops/serviceendpoint_externaltfs.py +58 -57
  123. pulumi_azuredevops/serviceendpoint_gcp_terraform.py +116 -115
  124. pulumi_azuredevops/serviceendpoint_incomingwebhook.py +86 -85
  125. pulumi_azuredevops/serviceendpoint_jenkins.py +100 -99
  126. pulumi_azuredevops/serviceendpoint_jfrog_artifactory_v2.py +62 -61
  127. pulumi_azuredevops/serviceendpoint_jfrog_distribution_v2.py +62 -61
  128. pulumi_azuredevops/serviceendpoint_jfrog_platform_v2.py +62 -61
  129. pulumi_azuredevops/serviceendpoint_jfrog_xray_v2.py +62 -61
  130. pulumi_azuredevops/serviceendpoint_maven.py +72 -71
  131. pulumi_azuredevops/serviceendpoint_nexus.py +86 -85
  132. pulumi_azuredevops/serviceendpoint_nuget.py +114 -113
  133. pulumi_azuredevops/serviceendpoint_octopusdeploy.py +86 -85
  134. pulumi_azuredevops/serviceendpoint_openshift.py +688 -0
  135. pulumi_azuredevops/serviceendpoint_permissions.py +71 -70
  136. pulumi_azuredevops/serviceendpoint_snyk.py +72 -71
  137. pulumi_azuredevops/serviceendpoint_visualstudiomarketplace.py +58 -57
  138. pulumi_azuredevops/servicehook_permissions.py +57 -56
  139. pulumi_azuredevops/servicehook_storage_queue_pipelines.py +85 -84
  140. pulumi_azuredevops/tagging_permissions.py +57 -56
  141. pulumi_azuredevops/team.py +78 -77
  142. pulumi_azuredevops/team_administrators.py +57 -56
  143. pulumi_azuredevops/team_members.py +57 -56
  144. pulumi_azuredevops/user.py +78 -77
  145. pulumi_azuredevops/variable_group.py +57 -56
  146. pulumi_azuredevops/variable_group_permissions.py +71 -70
  147. pulumi_azuredevops/wiki.py +99 -98
  148. pulumi_azuredevops/wiki_page.py +67 -66
  149. pulumi_azuredevops/work_item_query_permissions.py +71 -70
  150. pulumi_azuredevops/workitem.py +113 -112
  151. {pulumi_azuredevops-3.8.0a1741843418.dist-info → pulumi_azuredevops-3.9.0.dist-info}/METADATA +2 -2
  152. pulumi_azuredevops-3.9.0.dist-info/RECORD +156 -0
  153. {pulumi_azuredevops-3.8.0a1741843418.dist-info → pulumi_azuredevops-3.9.0.dist-info}/WHEEL +1 -1
  154. pulumi_azuredevops-3.8.0a1741843418.dist-info/RECORD +0 -152
  155. {pulumi_azuredevops-3.8.0a1741843418.dist-info → pulumi_azuredevops-3.9.0.dist-info}/top_level.txt +0 -0
@@ -2,6 +2,7 @@
2
2
  # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
3
  # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
4
 
5
+ import builtins
5
6
  import copy
6
7
  import warnings
7
8
  import sys
@@ -19,24 +20,24 @@ __all__ = ['CheckBranchControlArgs', 'CheckBranchControl']
19
20
  @pulumi.input_type
20
21
  class CheckBranchControlArgs:
21
22
  def __init__(__self__, *,
22
- project_id: pulumi.Input[str],
23
- target_resource_id: pulumi.Input[str],
24
- target_resource_type: pulumi.Input[str],
25
- allowed_branches: Optional[pulumi.Input[str]] = None,
26
- display_name: Optional[pulumi.Input[str]] = None,
27
- ignore_unknown_protection_status: Optional[pulumi.Input[bool]] = None,
28
- timeout: Optional[pulumi.Input[int]] = None,
29
- verify_branch_protection: Optional[pulumi.Input[bool]] = None):
23
+ project_id: pulumi.Input[builtins.str],
24
+ target_resource_id: pulumi.Input[builtins.str],
25
+ target_resource_type: pulumi.Input[builtins.str],
26
+ allowed_branches: Optional[pulumi.Input[builtins.str]] = None,
27
+ display_name: Optional[pulumi.Input[builtins.str]] = None,
28
+ ignore_unknown_protection_status: Optional[pulumi.Input[builtins.bool]] = None,
29
+ timeout: Optional[pulumi.Input[builtins.int]] = None,
30
+ verify_branch_protection: Optional[pulumi.Input[builtins.bool]] = None):
30
31
  """
31
32
  The set of arguments for constructing a CheckBranchControl resource.
32
- :param pulumi.Input[str] project_id: The project ID.
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. Possible values are: `endpoint`, `environment`, `queue`, `repository`, `securefile`, `variablegroup`.
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
- :param pulumi.Input[str] display_name: The name of the branch control check displayed in the web UI.
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`.
38
- :param pulumi.Input[int] timeout: The timeout in minutes for the branch control check. Defaults to `1440`.
39
- :param pulumi.Input[bool] verify_branch_protection: Validate the branches being deployed are protected. Defaults to `false`.
33
+ :param pulumi.Input[builtins.str] project_id: The project ID.
34
+ :param pulumi.Input[builtins.str] target_resource_id: The ID of the resource being protected by the check.
35
+ :param pulumi.Input[builtins.str] target_resource_type: The type of resource being protected by the check. Possible values are: `endpoint`, `environment`, `queue`, `repository`, `securefile`, `variablegroup`.
36
+ :param pulumi.Input[builtins.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 `*`.
37
+ :param pulumi.Input[builtins.str] display_name: The name of the branch control check displayed in the web UI.
38
+ :param pulumi.Input[builtins.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`.
39
+ :param pulumi.Input[builtins.int] timeout: The timeout in minutes for the branch control check. Defaults to `1440`.
40
+ :param pulumi.Input[builtins.bool] verify_branch_protection: Validate the branches being deployed are protected. Defaults to `false`.
40
41
  """
41
42
  pulumi.set(__self__, "project_id", project_id)
42
43
  pulumi.set(__self__, "target_resource_id", target_resource_id)
@@ -54,124 +55,124 @@ class CheckBranchControlArgs:
54
55
 
55
56
  @property
56
57
  @pulumi.getter(name="projectId")
57
- def project_id(self) -> pulumi.Input[str]:
58
+ def project_id(self) -> pulumi.Input[builtins.str]:
58
59
  """
59
60
  The project ID.
60
61
  """
61
62
  return pulumi.get(self, "project_id")
62
63
 
63
64
  @project_id.setter
64
- def project_id(self, value: pulumi.Input[str]):
65
+ def project_id(self, value: pulumi.Input[builtins.str]):
65
66
  pulumi.set(self, "project_id", value)
66
67
 
67
68
  @property
68
69
  @pulumi.getter(name="targetResourceId")
69
- def target_resource_id(self) -> pulumi.Input[str]:
70
+ def target_resource_id(self) -> pulumi.Input[builtins.str]:
70
71
  """
71
72
  The ID of the resource being protected by the check.
72
73
  """
73
74
  return pulumi.get(self, "target_resource_id")
74
75
 
75
76
  @target_resource_id.setter
76
- def target_resource_id(self, value: pulumi.Input[str]):
77
+ def target_resource_id(self, value: pulumi.Input[builtins.str]):
77
78
  pulumi.set(self, "target_resource_id", value)
78
79
 
79
80
  @property
80
81
  @pulumi.getter(name="targetResourceType")
81
- def target_resource_type(self) -> pulumi.Input[str]:
82
+ def target_resource_type(self) -> pulumi.Input[builtins.str]:
82
83
  """
83
84
  The type of resource being protected by the check. Possible values are: `endpoint`, `environment`, `queue`, `repository`, `securefile`, `variablegroup`.
84
85
  """
85
86
  return pulumi.get(self, "target_resource_type")
86
87
 
87
88
  @target_resource_type.setter
88
- def target_resource_type(self, value: pulumi.Input[str]):
89
+ def target_resource_type(self, value: pulumi.Input[builtins.str]):
89
90
  pulumi.set(self, "target_resource_type", value)
90
91
 
91
92
  @property
92
93
  @pulumi.getter(name="allowedBranches")
93
- def allowed_branches(self) -> Optional[pulumi.Input[str]]:
94
+ def allowed_branches(self) -> Optional[pulumi.Input[builtins.str]]:
94
95
  """
95
96
  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 `*`.
96
97
  """
97
98
  return pulumi.get(self, "allowed_branches")
98
99
 
99
100
  @allowed_branches.setter
100
- def allowed_branches(self, value: Optional[pulumi.Input[str]]):
101
+ def allowed_branches(self, value: Optional[pulumi.Input[builtins.str]]):
101
102
  pulumi.set(self, "allowed_branches", value)
102
103
 
103
104
  @property
104
105
  @pulumi.getter(name="displayName")
105
- def display_name(self) -> Optional[pulumi.Input[str]]:
106
+ def display_name(self) -> Optional[pulumi.Input[builtins.str]]:
106
107
  """
107
108
  The name of the branch control check displayed in the web UI.
108
109
  """
109
110
  return pulumi.get(self, "display_name")
110
111
 
111
112
  @display_name.setter
112
- def display_name(self, value: Optional[pulumi.Input[str]]):
113
+ def display_name(self, value: Optional[pulumi.Input[builtins.str]]):
113
114
  pulumi.set(self, "display_name", value)
114
115
 
115
116
  @property
116
117
  @pulumi.getter(name="ignoreUnknownProtectionStatus")
117
- def ignore_unknown_protection_status(self) -> Optional[pulumi.Input[bool]]:
118
+ def ignore_unknown_protection_status(self) -> Optional[pulumi.Input[builtins.bool]]:
118
119
  """
119
120
  Allow deployment from branches for which protection status could not be obtained. Only relevant when verify_branch_protection is `true`. Defaults to `false`.
120
121
  """
121
122
  return pulumi.get(self, "ignore_unknown_protection_status")
122
123
 
123
124
  @ignore_unknown_protection_status.setter
124
- def ignore_unknown_protection_status(self, value: Optional[pulumi.Input[bool]]):
125
+ def ignore_unknown_protection_status(self, value: Optional[pulumi.Input[builtins.bool]]):
125
126
  pulumi.set(self, "ignore_unknown_protection_status", value)
126
127
 
127
128
  @property
128
129
  @pulumi.getter
129
- def timeout(self) -> Optional[pulumi.Input[int]]:
130
+ def timeout(self) -> Optional[pulumi.Input[builtins.int]]:
130
131
  """
131
132
  The timeout in minutes for the branch control check. Defaults to `1440`.
132
133
  """
133
134
  return pulumi.get(self, "timeout")
134
135
 
135
136
  @timeout.setter
136
- def timeout(self, value: Optional[pulumi.Input[int]]):
137
+ def timeout(self, value: Optional[pulumi.Input[builtins.int]]):
137
138
  pulumi.set(self, "timeout", value)
138
139
 
139
140
  @property
140
141
  @pulumi.getter(name="verifyBranchProtection")
141
- def verify_branch_protection(self) -> Optional[pulumi.Input[bool]]:
142
+ def verify_branch_protection(self) -> Optional[pulumi.Input[builtins.bool]]:
142
143
  """
143
144
  Validate the branches being deployed are protected. Defaults to `false`.
144
145
  """
145
146
  return pulumi.get(self, "verify_branch_protection")
146
147
 
147
148
  @verify_branch_protection.setter
148
- def verify_branch_protection(self, value: Optional[pulumi.Input[bool]]):
149
+ def verify_branch_protection(self, value: Optional[pulumi.Input[builtins.bool]]):
149
150
  pulumi.set(self, "verify_branch_protection", value)
150
151
 
151
152
 
152
153
  @pulumi.input_type
153
154
  class _CheckBranchControlState:
154
155
  def __init__(__self__, *,
155
- allowed_branches: Optional[pulumi.Input[str]] = None,
156
- display_name: Optional[pulumi.Input[str]] = None,
157
- ignore_unknown_protection_status: Optional[pulumi.Input[bool]] = None,
158
- project_id: Optional[pulumi.Input[str]] = None,
159
- target_resource_id: Optional[pulumi.Input[str]] = None,
160
- target_resource_type: Optional[pulumi.Input[str]] = None,
161
- timeout: Optional[pulumi.Input[int]] = None,
162
- verify_branch_protection: Optional[pulumi.Input[bool]] = None,
163
- version: Optional[pulumi.Input[int]] = None):
156
+ allowed_branches: Optional[pulumi.Input[builtins.str]] = None,
157
+ display_name: Optional[pulumi.Input[builtins.str]] = None,
158
+ ignore_unknown_protection_status: Optional[pulumi.Input[builtins.bool]] = None,
159
+ project_id: Optional[pulumi.Input[builtins.str]] = None,
160
+ target_resource_id: Optional[pulumi.Input[builtins.str]] = None,
161
+ target_resource_type: Optional[pulumi.Input[builtins.str]] = None,
162
+ timeout: Optional[pulumi.Input[builtins.int]] = None,
163
+ verify_branch_protection: Optional[pulumi.Input[builtins.bool]] = None,
164
+ version: Optional[pulumi.Input[builtins.int]] = None):
164
165
  """
165
166
  Input properties used for looking up and filtering CheckBranchControl resources.
166
- :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 `*`.
167
- :param pulumi.Input[str] display_name: The name of the branch control check displayed in the web UI.
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
- :param pulumi.Input[str] project_id: The project ID.
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. Possible values are: `endpoint`, `environment`, `queue`, `repository`, `securefile`, `variablegroup`.
172
- :param pulumi.Input[int] timeout: The timeout in minutes for the branch control check. Defaults to `1440`.
173
- :param pulumi.Input[bool] verify_branch_protection: Validate the branches being deployed are protected. Defaults to `false`.
174
- :param pulumi.Input[int] version: The version of the check.
167
+ :param pulumi.Input[builtins.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 `*`.
168
+ :param pulumi.Input[builtins.str] display_name: The name of the branch control check displayed in the web UI.
169
+ :param pulumi.Input[builtins.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`.
170
+ :param pulumi.Input[builtins.str] project_id: The project ID.
171
+ :param pulumi.Input[builtins.str] target_resource_id: The ID of the resource being protected by the check.
172
+ :param pulumi.Input[builtins.str] target_resource_type: The type of resource being protected by the check. Possible values are: `endpoint`, `environment`, `queue`, `repository`, `securefile`, `variablegroup`.
173
+ :param pulumi.Input[builtins.int] timeout: The timeout in minutes for the branch control check. Defaults to `1440`.
174
+ :param pulumi.Input[builtins.bool] verify_branch_protection: Validate the branches being deployed are protected. Defaults to `false`.
175
+ :param pulumi.Input[builtins.int] version: The version of the check.
175
176
  """
176
177
  if allowed_branches is not None:
177
178
  pulumi.set(__self__, "allowed_branches", allowed_branches)
@@ -194,110 +195,110 @@ class _CheckBranchControlState:
194
195
 
195
196
  @property
196
197
  @pulumi.getter(name="allowedBranches")
197
- def allowed_branches(self) -> Optional[pulumi.Input[str]]:
198
+ def allowed_branches(self) -> Optional[pulumi.Input[builtins.str]]:
198
199
  """
199
200
  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 `*`.
200
201
  """
201
202
  return pulumi.get(self, "allowed_branches")
202
203
 
203
204
  @allowed_branches.setter
204
- def allowed_branches(self, value: Optional[pulumi.Input[str]]):
205
+ def allowed_branches(self, value: Optional[pulumi.Input[builtins.str]]):
205
206
  pulumi.set(self, "allowed_branches", value)
206
207
 
207
208
  @property
208
209
  @pulumi.getter(name="displayName")
209
- def display_name(self) -> Optional[pulumi.Input[str]]:
210
+ def display_name(self) -> Optional[pulumi.Input[builtins.str]]:
210
211
  """
211
212
  The name of the branch control check displayed in the web UI.
212
213
  """
213
214
  return pulumi.get(self, "display_name")
214
215
 
215
216
  @display_name.setter
216
- def display_name(self, value: Optional[pulumi.Input[str]]):
217
+ def display_name(self, value: Optional[pulumi.Input[builtins.str]]):
217
218
  pulumi.set(self, "display_name", value)
218
219
 
219
220
  @property
220
221
  @pulumi.getter(name="ignoreUnknownProtectionStatus")
221
- def ignore_unknown_protection_status(self) -> Optional[pulumi.Input[bool]]:
222
+ def ignore_unknown_protection_status(self) -> Optional[pulumi.Input[builtins.bool]]:
222
223
  """
223
224
  Allow deployment from branches for which protection status could not be obtained. Only relevant when verify_branch_protection is `true`. Defaults to `false`.
224
225
  """
225
226
  return pulumi.get(self, "ignore_unknown_protection_status")
226
227
 
227
228
  @ignore_unknown_protection_status.setter
228
- def ignore_unknown_protection_status(self, value: Optional[pulumi.Input[bool]]):
229
+ def ignore_unknown_protection_status(self, value: Optional[pulumi.Input[builtins.bool]]):
229
230
  pulumi.set(self, "ignore_unknown_protection_status", value)
230
231
 
231
232
  @property
232
233
  @pulumi.getter(name="projectId")
233
- def project_id(self) -> Optional[pulumi.Input[str]]:
234
+ def project_id(self) -> Optional[pulumi.Input[builtins.str]]:
234
235
  """
235
236
  The project ID.
236
237
  """
237
238
  return pulumi.get(self, "project_id")
238
239
 
239
240
  @project_id.setter
240
- def project_id(self, value: Optional[pulumi.Input[str]]):
241
+ def project_id(self, value: Optional[pulumi.Input[builtins.str]]):
241
242
  pulumi.set(self, "project_id", value)
242
243
 
243
244
  @property
244
245
  @pulumi.getter(name="targetResourceId")
245
- def target_resource_id(self) -> Optional[pulumi.Input[str]]:
246
+ def target_resource_id(self) -> Optional[pulumi.Input[builtins.str]]:
246
247
  """
247
248
  The ID of the resource being protected by the check.
248
249
  """
249
250
  return pulumi.get(self, "target_resource_id")
250
251
 
251
252
  @target_resource_id.setter
252
- def target_resource_id(self, value: Optional[pulumi.Input[str]]):
253
+ def target_resource_id(self, value: Optional[pulumi.Input[builtins.str]]):
253
254
  pulumi.set(self, "target_resource_id", value)
254
255
 
255
256
  @property
256
257
  @pulumi.getter(name="targetResourceType")
257
- def target_resource_type(self) -> Optional[pulumi.Input[str]]:
258
+ def target_resource_type(self) -> Optional[pulumi.Input[builtins.str]]:
258
259
  """
259
260
  The type of resource being protected by the check. Possible values are: `endpoint`, `environment`, `queue`, `repository`, `securefile`, `variablegroup`.
260
261
  """
261
262
  return pulumi.get(self, "target_resource_type")
262
263
 
263
264
  @target_resource_type.setter
264
- def target_resource_type(self, value: Optional[pulumi.Input[str]]):
265
+ def target_resource_type(self, value: Optional[pulumi.Input[builtins.str]]):
265
266
  pulumi.set(self, "target_resource_type", value)
266
267
 
267
268
  @property
268
269
  @pulumi.getter
269
- def timeout(self) -> Optional[pulumi.Input[int]]:
270
+ def timeout(self) -> Optional[pulumi.Input[builtins.int]]:
270
271
  """
271
272
  The timeout in minutes for the branch control check. Defaults to `1440`.
272
273
  """
273
274
  return pulumi.get(self, "timeout")
274
275
 
275
276
  @timeout.setter
276
- def timeout(self, value: Optional[pulumi.Input[int]]):
277
+ def timeout(self, value: Optional[pulumi.Input[builtins.int]]):
277
278
  pulumi.set(self, "timeout", value)
278
279
 
279
280
  @property
280
281
  @pulumi.getter(name="verifyBranchProtection")
281
- def verify_branch_protection(self) -> Optional[pulumi.Input[bool]]:
282
+ def verify_branch_protection(self) -> Optional[pulumi.Input[builtins.bool]]:
282
283
  """
283
284
  Validate the branches being deployed are protected. Defaults to `false`.
284
285
  """
285
286
  return pulumi.get(self, "verify_branch_protection")
286
287
 
287
288
  @verify_branch_protection.setter
288
- def verify_branch_protection(self, value: Optional[pulumi.Input[bool]]):
289
+ def verify_branch_protection(self, value: Optional[pulumi.Input[builtins.bool]]):
289
290
  pulumi.set(self, "verify_branch_protection", value)
290
291
 
291
292
  @property
292
293
  @pulumi.getter
293
- def version(self) -> Optional[pulumi.Input[int]]:
294
+ def version(self) -> Optional[pulumi.Input[builtins.int]]:
294
295
  """
295
296
  The version of the check.
296
297
  """
297
298
  return pulumi.get(self, "version")
298
299
 
299
300
  @version.setter
300
- def version(self, value: Optional[pulumi.Input[int]]):
301
+ def version(self, value: Optional[pulumi.Input[builtins.int]]):
301
302
  pulumi.set(self, "version", value)
302
303
 
303
304
 
@@ -306,14 +307,14 @@ class CheckBranchControl(pulumi.CustomResource):
306
307
  def __init__(__self__,
307
308
  resource_name: str,
308
309
  opts: Optional[pulumi.ResourceOptions] = None,
309
- allowed_branches: Optional[pulumi.Input[str]] = None,
310
- display_name: Optional[pulumi.Input[str]] = None,
311
- ignore_unknown_protection_status: Optional[pulumi.Input[bool]] = None,
312
- project_id: Optional[pulumi.Input[str]] = None,
313
- target_resource_id: Optional[pulumi.Input[str]] = None,
314
- target_resource_type: Optional[pulumi.Input[str]] = None,
315
- timeout: Optional[pulumi.Input[int]] = None,
316
- verify_branch_protection: Optional[pulumi.Input[bool]] = None,
310
+ allowed_branches: Optional[pulumi.Input[builtins.str]] = None,
311
+ display_name: Optional[pulumi.Input[builtins.str]] = None,
312
+ ignore_unknown_protection_status: Optional[pulumi.Input[builtins.bool]] = None,
313
+ project_id: Optional[pulumi.Input[builtins.str]] = None,
314
+ target_resource_id: Optional[pulumi.Input[builtins.str]] = None,
315
+ target_resource_type: Optional[pulumi.Input[builtins.str]] = None,
316
+ timeout: Optional[pulumi.Input[builtins.int]] = None,
317
+ verify_branch_protection: Optional[pulumi.Input[builtins.bool]] = None,
317
318
  __props__=None):
318
319
  """
319
320
  Manages a branch control check on a resource within Azure DevOps.
@@ -446,14 +447,14 @@ class CheckBranchControl(pulumi.CustomResource):
446
447
 
447
448
  :param str resource_name: The name of the resource.
448
449
  :param pulumi.ResourceOptions opts: Options for the resource.
449
- :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 `*`.
450
- :param pulumi.Input[str] display_name: The name of the branch control check displayed in the web UI.
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
- :param pulumi.Input[str] project_id: The project ID.
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. Possible values are: `endpoint`, `environment`, `queue`, `repository`, `securefile`, `variablegroup`.
455
- :param pulumi.Input[int] timeout: The timeout in minutes for the branch control check. Defaults to `1440`.
456
- :param pulumi.Input[bool] verify_branch_protection: Validate the branches being deployed are protected. Defaults to `false`.
450
+ :param pulumi.Input[builtins.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 `*`.
451
+ :param pulumi.Input[builtins.str] display_name: The name of the branch control check displayed in the web UI.
452
+ :param pulumi.Input[builtins.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`.
453
+ :param pulumi.Input[builtins.str] project_id: The project ID.
454
+ :param pulumi.Input[builtins.str] target_resource_id: The ID of the resource being protected by the check.
455
+ :param pulumi.Input[builtins.str] target_resource_type: The type of resource being protected by the check. Possible values are: `endpoint`, `environment`, `queue`, `repository`, `securefile`, `variablegroup`.
456
+ :param pulumi.Input[builtins.int] timeout: The timeout in minutes for the branch control check. Defaults to `1440`.
457
+ :param pulumi.Input[builtins.bool] verify_branch_protection: Validate the branches being deployed are protected. Defaults to `false`.
457
458
  """
458
459
  ...
459
460
  @overload
@@ -605,14 +606,14 @@ class CheckBranchControl(pulumi.CustomResource):
605
606
  def _internal_init(__self__,
606
607
  resource_name: str,
607
608
  opts: Optional[pulumi.ResourceOptions] = None,
608
- allowed_branches: Optional[pulumi.Input[str]] = None,
609
- display_name: Optional[pulumi.Input[str]] = None,
610
- ignore_unknown_protection_status: Optional[pulumi.Input[bool]] = None,
611
- project_id: Optional[pulumi.Input[str]] = None,
612
- target_resource_id: Optional[pulumi.Input[str]] = None,
613
- target_resource_type: Optional[pulumi.Input[str]] = None,
614
- timeout: Optional[pulumi.Input[int]] = None,
615
- verify_branch_protection: Optional[pulumi.Input[bool]] = None,
609
+ allowed_branches: Optional[pulumi.Input[builtins.str]] = None,
610
+ display_name: Optional[pulumi.Input[builtins.str]] = None,
611
+ ignore_unknown_protection_status: Optional[pulumi.Input[builtins.bool]] = None,
612
+ project_id: Optional[pulumi.Input[builtins.str]] = None,
613
+ target_resource_id: Optional[pulumi.Input[builtins.str]] = None,
614
+ target_resource_type: Optional[pulumi.Input[builtins.str]] = None,
615
+ timeout: Optional[pulumi.Input[builtins.int]] = None,
616
+ verify_branch_protection: Optional[pulumi.Input[builtins.bool]] = None,
616
617
  __props__=None):
617
618
  opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
618
619
  if not isinstance(opts, pulumi.ResourceOptions):
@@ -647,15 +648,15 @@ class CheckBranchControl(pulumi.CustomResource):
647
648
  def get(resource_name: str,
648
649
  id: pulumi.Input[str],
649
650
  opts: Optional[pulumi.ResourceOptions] = None,
650
- allowed_branches: Optional[pulumi.Input[str]] = None,
651
- display_name: Optional[pulumi.Input[str]] = None,
652
- ignore_unknown_protection_status: Optional[pulumi.Input[bool]] = None,
653
- project_id: Optional[pulumi.Input[str]] = None,
654
- target_resource_id: Optional[pulumi.Input[str]] = None,
655
- target_resource_type: Optional[pulumi.Input[str]] = None,
656
- timeout: Optional[pulumi.Input[int]] = None,
657
- verify_branch_protection: Optional[pulumi.Input[bool]] = None,
658
- version: Optional[pulumi.Input[int]] = None) -> 'CheckBranchControl':
651
+ allowed_branches: Optional[pulumi.Input[builtins.str]] = None,
652
+ display_name: Optional[pulumi.Input[builtins.str]] = None,
653
+ ignore_unknown_protection_status: Optional[pulumi.Input[builtins.bool]] = None,
654
+ project_id: Optional[pulumi.Input[builtins.str]] = None,
655
+ target_resource_id: Optional[pulumi.Input[builtins.str]] = None,
656
+ target_resource_type: Optional[pulumi.Input[builtins.str]] = None,
657
+ timeout: Optional[pulumi.Input[builtins.int]] = None,
658
+ verify_branch_protection: Optional[pulumi.Input[builtins.bool]] = None,
659
+ version: Optional[pulumi.Input[builtins.int]] = None) -> 'CheckBranchControl':
659
660
  """
660
661
  Get an existing CheckBranchControl resource's state with the given name, id, and optional extra
661
662
  properties used to qualify the lookup.
@@ -663,15 +664,15 @@ class CheckBranchControl(pulumi.CustomResource):
663
664
  :param str resource_name: The unique name of the resulting resource.
664
665
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
665
666
  :param pulumi.ResourceOptions opts: Options for the resource.
666
- :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 `*`.
667
- :param pulumi.Input[str] display_name: The name of the branch control check displayed in the web UI.
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
- :param pulumi.Input[str] project_id: The project ID.
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. Possible values are: `endpoint`, `environment`, `queue`, `repository`, `securefile`, `variablegroup`.
672
- :param pulumi.Input[int] timeout: The timeout in minutes for the branch control check. Defaults to `1440`.
673
- :param pulumi.Input[bool] verify_branch_protection: Validate the branches being deployed are protected. Defaults to `false`.
674
- :param pulumi.Input[int] version: The version of the check.
667
+ :param pulumi.Input[builtins.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 `*`.
668
+ :param pulumi.Input[builtins.str] display_name: The name of the branch control check displayed in the web UI.
669
+ :param pulumi.Input[builtins.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`.
670
+ :param pulumi.Input[builtins.str] project_id: The project ID.
671
+ :param pulumi.Input[builtins.str] target_resource_id: The ID of the resource being protected by the check.
672
+ :param pulumi.Input[builtins.str] target_resource_type: The type of resource being protected by the check. Possible values are: `endpoint`, `environment`, `queue`, `repository`, `securefile`, `variablegroup`.
673
+ :param pulumi.Input[builtins.int] timeout: The timeout in minutes for the branch control check. Defaults to `1440`.
674
+ :param pulumi.Input[builtins.bool] verify_branch_protection: Validate the branches being deployed are protected. Defaults to `false`.
675
+ :param pulumi.Input[builtins.int] version: The version of the check.
675
676
  """
676
677
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
677
678
 
@@ -690,7 +691,7 @@ class CheckBranchControl(pulumi.CustomResource):
690
691
 
691
692
  @property
692
693
  @pulumi.getter(name="allowedBranches")
693
- def allowed_branches(self) -> pulumi.Output[Optional[str]]:
694
+ def allowed_branches(self) -> pulumi.Output[Optional[builtins.str]]:
694
695
  """
695
696
  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 `*`.
696
697
  """
@@ -698,7 +699,7 @@ class CheckBranchControl(pulumi.CustomResource):
698
699
 
699
700
  @property
700
701
  @pulumi.getter(name="displayName")
701
- def display_name(self) -> pulumi.Output[Optional[str]]:
702
+ def display_name(self) -> pulumi.Output[Optional[builtins.str]]:
702
703
  """
703
704
  The name of the branch control check displayed in the web UI.
704
705
  """
@@ -706,7 +707,7 @@ class CheckBranchControl(pulumi.CustomResource):
706
707
 
707
708
  @property
708
709
  @pulumi.getter(name="ignoreUnknownProtectionStatus")
709
- def ignore_unknown_protection_status(self) -> pulumi.Output[Optional[bool]]:
710
+ def ignore_unknown_protection_status(self) -> pulumi.Output[Optional[builtins.bool]]:
710
711
  """
711
712
  Allow deployment from branches for which protection status could not be obtained. Only relevant when verify_branch_protection is `true`. Defaults to `false`.
712
713
  """
@@ -714,7 +715,7 @@ class CheckBranchControl(pulumi.CustomResource):
714
715
 
715
716
  @property
716
717
  @pulumi.getter(name="projectId")
717
- def project_id(self) -> pulumi.Output[str]:
718
+ def project_id(self) -> pulumi.Output[builtins.str]:
718
719
  """
719
720
  The project ID.
720
721
  """
@@ -722,7 +723,7 @@ class CheckBranchControl(pulumi.CustomResource):
722
723
 
723
724
  @property
724
725
  @pulumi.getter(name="targetResourceId")
725
- def target_resource_id(self) -> pulumi.Output[str]:
726
+ def target_resource_id(self) -> pulumi.Output[builtins.str]:
726
727
  """
727
728
  The ID of the resource being protected by the check.
728
729
  """
@@ -730,7 +731,7 @@ class CheckBranchControl(pulumi.CustomResource):
730
731
 
731
732
  @property
732
733
  @pulumi.getter(name="targetResourceType")
733
- def target_resource_type(self) -> pulumi.Output[str]:
734
+ def target_resource_type(self) -> pulumi.Output[builtins.str]:
734
735
  """
735
736
  The type of resource being protected by the check. Possible values are: `endpoint`, `environment`, `queue`, `repository`, `securefile`, `variablegroup`.
736
737
  """
@@ -738,7 +739,7 @@ class CheckBranchControl(pulumi.CustomResource):
738
739
 
739
740
  @property
740
741
  @pulumi.getter
741
- def timeout(self) -> pulumi.Output[Optional[int]]:
742
+ def timeout(self) -> pulumi.Output[Optional[builtins.int]]:
742
743
  """
743
744
  The timeout in minutes for the branch control check. Defaults to `1440`.
744
745
  """
@@ -746,7 +747,7 @@ class CheckBranchControl(pulumi.CustomResource):
746
747
 
747
748
  @property
748
749
  @pulumi.getter(name="verifyBranchProtection")
749
- def verify_branch_protection(self) -> pulumi.Output[Optional[bool]]:
750
+ def verify_branch_protection(self) -> pulumi.Output[Optional[builtins.bool]]:
750
751
  """
751
752
  Validate the branches being deployed are protected. Defaults to `false`.
752
753
  """
@@ -754,7 +755,7 @@ class CheckBranchControl(pulumi.CustomResource):
754
755
 
755
756
  @property
756
757
  @pulumi.getter
757
- def version(self) -> pulumi.Output[int]:
758
+ def version(self) -> pulumi.Output[builtins.int]:
758
759
  """
759
760
  The version of the check.
760
761
  """