pulumi-azuredevops 3.1.0a1710568843__py3-none-any.whl → 3.6.0a1736849250__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.
- pulumi_azuredevops/__init__.py +96 -0
- pulumi_azuredevops/_inputs.py +1740 -108
- pulumi_azuredevops/_utilities.py +41 -5
- pulumi_azuredevops/area_permissions.py +9 -6
- pulumi_azuredevops/branch_policy_auto_reviewers.py +52 -49
- pulumi_azuredevops/branch_policy_build_validation.py +86 -79
- pulumi_azuredevops/branch_policy_comment_resolution.py +60 -57
- pulumi_azuredevops/branch_policy_merge_types.py +68 -65
- pulumi_azuredevops/branch_policy_min_reviewers.py +72 -69
- pulumi_azuredevops/branch_policy_status_check.py +66 -61
- pulumi_azuredevops/branch_policy_work_item_linking.py +60 -57
- pulumi_azuredevops/build_definition.py +380 -198
- pulumi_azuredevops/build_definition_permissions.py +186 -165
- pulumi_azuredevops/build_folder.py +13 -10
- pulumi_azuredevops/build_folder_permissions.py +33 -32
- pulumi_azuredevops/check_approval.py +19 -14
- pulumi_azuredevops/check_branch_control.py +109 -108
- pulumi_azuredevops/check_business_hours.py +109 -108
- pulumi_azuredevops/check_exclusive_lock.py +77 -28
- pulumi_azuredevops/check_required_template.py +66 -65
- pulumi_azuredevops/config/__init__.pyi +5 -0
- pulumi_azuredevops/config/vars.py +5 -0
- pulumi_azuredevops/elastic_pool.py +31 -26
- pulumi_azuredevops/environment.py +17 -10
- pulumi_azuredevops/environment_resource_kubernetes.py +198 -2
- pulumi_azuredevops/feed.py +372 -0
- pulumi_azuredevops/feed_permission.py +415 -0
- pulumi_azuredevops/get_agent_queue.py +28 -19
- pulumi_azuredevops/get_area.py +28 -15
- pulumi_azuredevops/get_build_definition.py +32 -15
- pulumi_azuredevops/get_client_config.py +12 -9
- pulumi_azuredevops/get_environment.py +72 -5
- pulumi_azuredevops/get_feed.py +186 -0
- pulumi_azuredevops/get_git_repository.py +39 -10
- pulumi_azuredevops/get_group.py +45 -22
- pulumi_azuredevops/get_groups.py +18 -9
- pulumi_azuredevops/get_identity_group.py +152 -0
- pulumi_azuredevops/get_identity_groups.py +140 -0
- pulumi_azuredevops/get_identity_users.py +122 -0
- pulumi_azuredevops/get_iteration.py +24 -11
- pulumi_azuredevops/get_pool.py +16 -9
- pulumi_azuredevops/get_pools.py +12 -9
- pulumi_azuredevops/get_project.py +22 -10
- pulumi_azuredevops/get_projects.py +16 -9
- pulumi_azuredevops/get_repositories.py +22 -9
- pulumi_azuredevops/get_securityrole_definitions.py +141 -0
- pulumi_azuredevops/get_service_endpoint_azure_rm.py +70 -26
- pulumi_azuredevops/get_service_endpoint_github.py +19 -13
- pulumi_azuredevops/get_serviceendpoint_azurecr.py +31 -11
- pulumi_azuredevops/get_serviceendpoint_bitbucket.py +219 -0
- pulumi_azuredevops/get_serviceendpoint_npm.py +22 -11
- pulumi_azuredevops/get_serviceendpoint_sonarcloud.py +21 -11
- pulumi_azuredevops/get_team.py +29 -15
- pulumi_azuredevops/get_teams.py +16 -9
- pulumi_azuredevops/get_users.py +26 -87
- pulumi_azuredevops/get_variable_group.py +27 -17
- pulumi_azuredevops/git.py +57 -97
- pulumi_azuredevops/git_permissions.py +78 -75
- pulumi_azuredevops/git_repository_branch.py +29 -20
- pulumi_azuredevops/git_repository_file.py +23 -18
- pulumi_azuredevops/group.py +43 -14
- pulumi_azuredevops/group_entitlement.py +5 -8
- pulumi_azuredevops/group_membership.py +57 -28
- pulumi_azuredevops/iterative_permissions.py +9 -6
- pulumi_azuredevops/library_permissions.py +7 -4
- pulumi_azuredevops/outputs.py +447 -54
- pulumi_azuredevops/pipeline_authorization.py +101 -47
- pulumi_azuredevops/pool.py +7 -4
- pulumi_azuredevops/project.py +19 -16
- pulumi_azuredevops/project_features.py +9 -6
- pulumi_azuredevops/project_permissions.py +9 -6
- pulumi_azuredevops/project_pipeline_settings.py +15 -12
- pulumi_azuredevops/provider.py +5 -40
- pulumi_azuredevops/pulumi-plugin.json +2 -1
- pulumi_azuredevops/queue.py +23 -22
- pulumi_azuredevops/repository_policy_author_email_pattern.py +37 -34
- pulumi_azuredevops/repository_policy_case_enforcement.py +37 -34
- pulumi_azuredevops/repository_policy_check_credentials.py +37 -34
- pulumi_azuredevops/repository_policy_file_path_pattern.py +31 -28
- pulumi_azuredevops/repository_policy_max_file_size.py +44 -41
- pulumi_azuredevops/repository_policy_max_path_length.py +37 -34
- pulumi_azuredevops/repository_policy_reserved_names.py +37 -34
- pulumi_azuredevops/resource_authorization.py +23 -20
- pulumi_azuredevops/securityrole_assignment.py +295 -0
- pulumi_azuredevops/service_endpoint_artifactory.py +49 -48
- pulumi_azuredevops/service_endpoint_aws.py +99 -51
- pulumi_azuredevops/service_endpoint_azure_dev_ops.py +17 -14
- pulumi_azuredevops/service_endpoint_azure_ecr.py +275 -33
- pulumi_azuredevops/service_endpoint_azure_rm.py +236 -112
- pulumi_azuredevops/service_endpoint_bit_bucket.py +19 -16
- pulumi_azuredevops/service_endpoint_docker_registry.py +17 -14
- pulumi_azuredevops/service_endpoint_generic.py +19 -20
- pulumi_azuredevops/service_endpoint_generic_git.py +17 -14
- pulumi_azuredevops/service_endpoint_git_hub.py +57 -58
- pulumi_azuredevops/service_endpoint_git_hub_enterprise.py +26 -23
- pulumi_azuredevops/service_endpoint_git_lab.py +479 -0
- pulumi_azuredevops/service_endpoint_kubernetes.py +160 -15
- pulumi_azuredevops/service_endpoint_npm.py +17 -14
- pulumi_azuredevops/service_endpoint_pipeline.py +28 -25
- pulumi_azuredevops/service_endpoint_service_fabric.py +42 -95
- pulumi_azuredevops/service_endpoint_sonar_cloud.py +17 -14
- pulumi_azuredevops/service_endpoint_sonar_qube.py +17 -14
- pulumi_azuredevops/service_endpoint_ssh.py +17 -14
- pulumi_azuredevops/serviceendpoint_argocd.py +51 -50
- pulumi_azuredevops/serviceendpoint_azure_service_bus.py +429 -0
- pulumi_azuredevops/serviceendpoint_dynamics_lifecycle_services.py +579 -0
- pulumi_azuredevops/serviceendpoint_externaltfs.py +10 -5
- pulumi_azuredevops/serviceendpoint_gcp_terraform.py +17 -14
- pulumi_azuredevops/serviceendpoint_incomingwebhook.py +17 -14
- pulumi_azuredevops/serviceendpoint_jenkins.py +15 -12
- pulumi_azuredevops/serviceendpoint_jfrog_artifactory_v2.py +53 -52
- pulumi_azuredevops/serviceendpoint_jfrog_distribution_v2.py +53 -52
- pulumi_azuredevops/serviceendpoint_jfrog_platform_v2.py +53 -52
- pulumi_azuredevops/serviceendpoint_jfrog_xray_v2.py +53 -52
- pulumi_azuredevops/serviceendpoint_maven.py +49 -48
- pulumi_azuredevops/serviceendpoint_nexus.py +15 -12
- pulumi_azuredevops/serviceendpoint_nuget.py +17 -14
- pulumi_azuredevops/serviceendpoint_octopusdeploy.py +17 -14
- pulumi_azuredevops/serviceendpoint_permissions.py +21 -18
- pulumi_azuredevops/serviceendpoint_snyk.py +429 -0
- pulumi_azuredevops/serviceendpoint_visualstudiomarketplace.py +543 -0
- pulumi_azuredevops/servicehook_permissions.py +9 -6
- pulumi_azuredevops/servicehook_storage_queue_pipelines.py +55 -48
- pulumi_azuredevops/tagging_permissions.py +9 -6
- pulumi_azuredevops/team.py +21 -16
- pulumi_azuredevops/team_administrators.py +19 -12
- pulumi_azuredevops/team_members.py +19 -12
- pulumi_azuredevops/user.py +27 -6
- pulumi_azuredevops/variable_group.py +91 -86
- pulumi_azuredevops/variable_group_permissions.py +17 -12
- pulumi_azuredevops/wiki.py +509 -0
- pulumi_azuredevops/wiki_page.py +377 -0
- pulumi_azuredevops/work_item_query_permissions.py +17 -18
- pulumi_azuredevops/workitem.py +25 -24
- {pulumi_azuredevops-3.1.0a1710568843.dist-info → pulumi_azuredevops-3.6.0a1736849250.dist-info}/METADATA +7 -6
- pulumi_azuredevops-3.6.0a1736849250.dist-info/RECORD +140 -0
- {pulumi_azuredevops-3.1.0a1710568843.dist-info → pulumi_azuredevops-3.6.0a1736849250.dist-info}/WHEEL +1 -1
- pulumi_azuredevops-3.1.0a1710568843.dist-info/RECORD +0 -124
- {pulumi_azuredevops-3.1.0a1710568843.dist-info → pulumi_azuredevops-3.6.0a1736849250.dist-info}/top_level.txt +0 -0
pulumi_azuredevops/outputs.py
CHANGED
@@ -4,9 +4,14 @@
|
|
4
4
|
|
5
5
|
import copy
|
6
6
|
import warnings
|
7
|
+
import sys
|
7
8
|
import pulumi
|
8
9
|
import pulumi.runtime
|
9
10
|
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
11
|
+
if sys.version_info >= (3, 11):
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
13
|
+
else:
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
10
15
|
from . import _utilities
|
11
16
|
from . import outputs
|
12
17
|
|
@@ -25,6 +30,8 @@ __all__ = [
|
|
25
30
|
'BranchPolicyStatusCheckSettingsScope',
|
26
31
|
'BranchPolicyWorkItemLinkingSettings',
|
27
32
|
'BranchPolicyWorkItemLinkingSettingsScope',
|
33
|
+
'BuildDefinitionBuildCompletionTrigger',
|
34
|
+
'BuildDefinitionBuildCompletionTriggerBranchFilter',
|
28
35
|
'BuildDefinitionCiTrigger',
|
29
36
|
'BuildDefinitionCiTriggerOverride',
|
30
37
|
'BuildDefinitionCiTriggerOverrideBranchFilter',
|
@@ -40,9 +47,11 @@ __all__ = [
|
|
40
47
|
'BuildDefinitionScheduleBranchFilter',
|
41
48
|
'BuildDefinitionVariable',
|
42
49
|
'CheckRequiredTemplateRequiredTemplate',
|
50
|
+
'FeedFeature',
|
43
51
|
'GitInitialization',
|
44
52
|
'ServiceEndpointArtifactoryAuthenticationBasic',
|
45
53
|
'ServiceEndpointArtifactoryAuthenticationToken',
|
54
|
+
'ServiceEndpointAzureEcrCredentials',
|
46
55
|
'ServiceEndpointAzureRMCredentials',
|
47
56
|
'ServiceEndpointAzureRMFeatures',
|
48
57
|
'ServiceEndpointGitHubAuthOauth',
|
@@ -68,6 +77,8 @@ __all__ = [
|
|
68
77
|
'ServiceendpointJfrogXrayV2AuthenticationToken',
|
69
78
|
'ServiceendpointMavenAuthenticationBasic',
|
70
79
|
'ServiceendpointMavenAuthenticationToken',
|
80
|
+
'ServiceendpointVisualstudiomarketplaceAuthenticationBasic',
|
81
|
+
'ServiceendpointVisualstudiomarketplaceAuthenticationToken',
|
71
82
|
'ServicehookStorageQueuePipelinesRunStateChangedEvent',
|
72
83
|
'ServicehookStorageQueuePipelinesStageStateChangedEvent',
|
73
84
|
'VariableGroupKeyVault',
|
@@ -87,10 +98,12 @@ __all__ = [
|
|
87
98
|
'GetBuildDefinitionScheduleBranchFilterResult',
|
88
99
|
'GetBuildDefinitionVariableResult',
|
89
100
|
'GetGroupsGroupResult',
|
101
|
+
'GetIdentityGroupsGroupResult',
|
90
102
|
'GetIterationChildrenResult',
|
91
103
|
'GetPoolsAgentPoolResult',
|
92
104
|
'GetProjectsProjectResult',
|
93
105
|
'GetRepositoriesRepositoryResult',
|
106
|
+
'GetSecurityroleDefinitionsDefinitionResult',
|
94
107
|
'GetTeamsTeamResult',
|
95
108
|
'GetUsersFeaturesResult',
|
96
109
|
'GetUsersUserResult',
|
@@ -311,6 +324,11 @@ class BranchPolicyBuildValidationSettings(dict):
|
|
311
324
|
:param bool manual_queue_only: If set to true, the build will need to be manually queued. Defaults to `false`
|
312
325
|
:param bool queue_on_source_update_only: True if the build should queue on source updates only. Defaults to `true`.
|
313
326
|
:param int valid_duration: The number of minutes for which the build is valid. If `0`, the build will not expire. Defaults to `720` (12 hours).
|
327
|
+
|
328
|
+
> **Note** Combine `valid_duration` and `queue_on_source_update_only` to set the build expiration.
|
329
|
+
1. Expire immediately when branch is updated: `valid_duration=0` and `queue_on_source_update_only=false`
|
330
|
+
2. Expire after a period of time : `valid_duration=360` and `queue_on_source_update_only=true`
|
331
|
+
3. Never expire: `valid_duration=0` and `queue_on_source_update_only=true`
|
314
332
|
"""
|
315
333
|
pulumi.set(__self__, "build_definition_id", build_definition_id)
|
316
334
|
pulumi.set(__self__, "display_name", display_name)
|
@@ -377,6 +395,11 @@ class BranchPolicyBuildValidationSettings(dict):
|
|
377
395
|
def valid_duration(self) -> Optional[int]:
|
378
396
|
"""
|
379
397
|
The number of minutes for which the build is valid. If `0`, the build will not expire. Defaults to `720` (12 hours).
|
398
|
+
|
399
|
+
> **Note** Combine `valid_duration` and `queue_on_source_update_only` to set the build expiration.
|
400
|
+
1. Expire immediately when branch is updated: `valid_duration=0` and `queue_on_source_update_only=false`
|
401
|
+
2. Expire after a period of time : `valid_duration=360` and `queue_on_source_update_only=true`
|
402
|
+
3. Never expire: `valid_duration=0` and `queue_on_source_update_only=true`
|
380
403
|
"""
|
381
404
|
return pulumi.get(self, "valid_duration")
|
382
405
|
|
@@ -1155,6 +1178,85 @@ class BranchPolicyWorkItemLinkingSettingsScope(dict):
|
|
1155
1178
|
return pulumi.get(self, "repository_ref")
|
1156
1179
|
|
1157
1180
|
|
1181
|
+
@pulumi.output_type
|
1182
|
+
class BuildDefinitionBuildCompletionTrigger(dict):
|
1183
|
+
@staticmethod
|
1184
|
+
def __key_warning(key: str):
|
1185
|
+
suggest = None
|
1186
|
+
if key == "branchFilters":
|
1187
|
+
suggest = "branch_filters"
|
1188
|
+
elif key == "buildDefinitionId":
|
1189
|
+
suggest = "build_definition_id"
|
1190
|
+
|
1191
|
+
if suggest:
|
1192
|
+
pulumi.log.warn(f"Key '{key}' not found in BuildDefinitionBuildCompletionTrigger. Access the value via the '{suggest}' property getter instead.")
|
1193
|
+
|
1194
|
+
def __getitem__(self, key: str) -> Any:
|
1195
|
+
BuildDefinitionBuildCompletionTrigger.__key_warning(key)
|
1196
|
+
return super().__getitem__(key)
|
1197
|
+
|
1198
|
+
def get(self, key: str, default = None) -> Any:
|
1199
|
+
BuildDefinitionBuildCompletionTrigger.__key_warning(key)
|
1200
|
+
return super().get(key, default)
|
1201
|
+
|
1202
|
+
def __init__(__self__, *,
|
1203
|
+
branch_filters: Sequence['outputs.BuildDefinitionBuildCompletionTriggerBranchFilter'],
|
1204
|
+
build_definition_id: int):
|
1205
|
+
"""
|
1206
|
+
:param Sequence['BuildDefinitionBuildCompletionTriggerBranchFilterArgs'] branch_filters: The branches to include and exclude from the trigger. A `branch_filter` block as documented below.
|
1207
|
+
:param int build_definition_id: The ID of the build pipeline will be triggered.
|
1208
|
+
"""
|
1209
|
+
pulumi.set(__self__, "branch_filters", branch_filters)
|
1210
|
+
pulumi.set(__self__, "build_definition_id", build_definition_id)
|
1211
|
+
|
1212
|
+
@property
|
1213
|
+
@pulumi.getter(name="branchFilters")
|
1214
|
+
def branch_filters(self) -> Sequence['outputs.BuildDefinitionBuildCompletionTriggerBranchFilter']:
|
1215
|
+
"""
|
1216
|
+
The branches to include and exclude from the trigger. A `branch_filter` block as documented below.
|
1217
|
+
"""
|
1218
|
+
return pulumi.get(self, "branch_filters")
|
1219
|
+
|
1220
|
+
@property
|
1221
|
+
@pulumi.getter(name="buildDefinitionId")
|
1222
|
+
def build_definition_id(self) -> int:
|
1223
|
+
"""
|
1224
|
+
The ID of the build pipeline will be triggered.
|
1225
|
+
"""
|
1226
|
+
return pulumi.get(self, "build_definition_id")
|
1227
|
+
|
1228
|
+
|
1229
|
+
@pulumi.output_type
|
1230
|
+
class BuildDefinitionBuildCompletionTriggerBranchFilter(dict):
|
1231
|
+
def __init__(__self__, *,
|
1232
|
+
excludes: Optional[Sequence[str]] = None,
|
1233
|
+
includes: Optional[Sequence[str]] = None):
|
1234
|
+
"""
|
1235
|
+
:param Sequence[str] excludes: List of branch patterns to exclude.
|
1236
|
+
:param Sequence[str] includes: List of branch patterns to include.
|
1237
|
+
"""
|
1238
|
+
if excludes is not None:
|
1239
|
+
pulumi.set(__self__, "excludes", excludes)
|
1240
|
+
if includes is not None:
|
1241
|
+
pulumi.set(__self__, "includes", includes)
|
1242
|
+
|
1243
|
+
@property
|
1244
|
+
@pulumi.getter
|
1245
|
+
def excludes(self) -> Optional[Sequence[str]]:
|
1246
|
+
"""
|
1247
|
+
List of branch patterns to exclude.
|
1248
|
+
"""
|
1249
|
+
return pulumi.get(self, "excludes")
|
1250
|
+
|
1251
|
+
@property
|
1252
|
+
@pulumi.getter
|
1253
|
+
def includes(self) -> Optional[Sequence[str]]:
|
1254
|
+
"""
|
1255
|
+
List of branch patterns to include.
|
1256
|
+
"""
|
1257
|
+
return pulumi.get(self, "includes")
|
1258
|
+
|
1259
|
+
|
1158
1260
|
@pulumi.output_type
|
1159
1261
|
class BuildDefinitionCiTrigger(dict):
|
1160
1262
|
@staticmethod
|
@@ -1231,24 +1333,23 @@ class BuildDefinitionCiTriggerOverride(dict):
|
|
1231
1333
|
return super().get(key, default)
|
1232
1334
|
|
1233
1335
|
def __init__(__self__, *,
|
1336
|
+
branch_filters: Sequence['outputs.BuildDefinitionCiTriggerOverrideBranchFilter'],
|
1234
1337
|
batch: Optional[bool] = None,
|
1235
|
-
branch_filters: Optional[Sequence['outputs.BuildDefinitionCiTriggerOverrideBranchFilter']] = None,
|
1236
1338
|
max_concurrent_builds_per_branch: Optional[int] = None,
|
1237
1339
|
path_filters: Optional[Sequence['outputs.BuildDefinitionCiTriggerOverridePathFilter']] = None,
|
1238
1340
|
polling_interval: Optional[int] = None,
|
1239
1341
|
polling_job_id: Optional[str] = None):
|
1240
1342
|
"""
|
1343
|
+
:param Sequence['BuildDefinitionCiTriggerOverrideBranchFilterArgs'] branch_filters: The branches to include and exclude from the trigger. A `branch_filter` block as documented below.
|
1241
1344
|
:param bool batch: If you set batch to true, when a pipeline is running, the system waits until the run is completed, then starts another run with all changes that have not yet been built. Defaults to `true`.
|
1242
|
-
:param Sequence['BuildDefinitionCiTriggerOverrideBranchFilterArgs'] branch_filters: The branches to include and exclude from the trigger.
|
1243
1345
|
:param int max_concurrent_builds_per_branch: The number of max builds per branch. Defaults to `1`.
|
1244
1346
|
:param Sequence['BuildDefinitionCiTriggerOverridePathFilterArgs'] path_filters: Specify file paths to include or exclude. Note that the wildcard syntax is different between branches/tags and file paths.
|
1245
1347
|
:param int polling_interval: How often the external repository is polled. Defaults to `0`.
|
1246
1348
|
:param str polling_job_id: This is the ID of the polling job that polls the external repository. Once the build definition is saved/updated, this value is set.
|
1247
1349
|
"""
|
1350
|
+
pulumi.set(__self__, "branch_filters", branch_filters)
|
1248
1351
|
if batch is not None:
|
1249
1352
|
pulumi.set(__self__, "batch", batch)
|
1250
|
-
if branch_filters is not None:
|
1251
|
-
pulumi.set(__self__, "branch_filters", branch_filters)
|
1252
1353
|
if max_concurrent_builds_per_branch is not None:
|
1253
1354
|
pulumi.set(__self__, "max_concurrent_builds_per_branch", max_concurrent_builds_per_branch)
|
1254
1355
|
if path_filters is not None:
|
@@ -1259,20 +1360,20 @@ class BuildDefinitionCiTriggerOverride(dict):
|
|
1259
1360
|
pulumi.set(__self__, "polling_job_id", polling_job_id)
|
1260
1361
|
|
1261
1362
|
@property
|
1262
|
-
@pulumi.getter
|
1263
|
-
def
|
1363
|
+
@pulumi.getter(name="branchFilters")
|
1364
|
+
def branch_filters(self) -> Sequence['outputs.BuildDefinitionCiTriggerOverrideBranchFilter']:
|
1264
1365
|
"""
|
1265
|
-
|
1366
|
+
The branches to include and exclude from the trigger. A `branch_filter` block as documented below.
|
1266
1367
|
"""
|
1267
|
-
return pulumi.get(self, "
|
1368
|
+
return pulumi.get(self, "branch_filters")
|
1268
1369
|
|
1269
1370
|
@property
|
1270
|
-
@pulumi.getter
|
1271
|
-
def
|
1371
|
+
@pulumi.getter
|
1372
|
+
def batch(self) -> Optional[bool]:
|
1272
1373
|
"""
|
1273
|
-
|
1374
|
+
If you set batch to true, when a pipeline is running, the system waits until the run is completed, then starts another run with all changes that have not yet been built. Defaults to `true`.
|
1274
1375
|
"""
|
1275
|
-
return pulumi.get(self, "
|
1376
|
+
return pulumi.get(self, "batch")
|
1276
1377
|
|
1277
1378
|
@property
|
1278
1379
|
@pulumi.getter(name="maxConcurrentBuildsPerBranch")
|
@@ -1539,10 +1640,10 @@ class BuildDefinitionPullRequestTriggerOverride(dict):
|
|
1539
1640
|
@staticmethod
|
1540
1641
|
def __key_warning(key: str):
|
1541
1642
|
suggest = None
|
1542
|
-
if key == "
|
1543
|
-
suggest = "auto_cancel"
|
1544
|
-
elif key == "branchFilters":
|
1643
|
+
if key == "branchFilters":
|
1545
1644
|
suggest = "branch_filters"
|
1645
|
+
elif key == "autoCancel":
|
1646
|
+
suggest = "auto_cancel"
|
1546
1647
|
elif key == "pathFilters":
|
1547
1648
|
suggest = "path_filters"
|
1548
1649
|
|
@@ -1558,36 +1659,35 @@ class BuildDefinitionPullRequestTriggerOverride(dict):
|
|
1558
1659
|
return super().get(key, default)
|
1559
1660
|
|
1560
1661
|
def __init__(__self__, *,
|
1662
|
+
branch_filters: Sequence['outputs.BuildDefinitionPullRequestTriggerOverrideBranchFilter'],
|
1561
1663
|
auto_cancel: Optional[bool] = None,
|
1562
|
-
branch_filters: Optional[Sequence['outputs.BuildDefinitionPullRequestTriggerOverrideBranchFilter']] = None,
|
1563
1664
|
path_filters: Optional[Sequence['outputs.BuildDefinitionPullRequestTriggerOverridePathFilter']] = None):
|
1564
1665
|
"""
|
1666
|
+
:param Sequence['BuildDefinitionPullRequestTriggerOverrideBranchFilterArgs'] branch_filters: The branches to include and exclude from the trigger. A `branch_filter` block as documented below.
|
1565
1667
|
:param bool auto_cancel: . Defaults to `true`.
|
1566
|
-
:param Sequence['BuildDefinitionPullRequestTriggerOverrideBranchFilterArgs'] branch_filters: The branches to include and exclude from the trigger.
|
1567
1668
|
:param Sequence['BuildDefinitionPullRequestTriggerOverridePathFilterArgs'] path_filters: Specify file paths to include or exclude. Note that the wildcard syntax is different between branches/tags and file paths.
|
1568
1669
|
"""
|
1670
|
+
pulumi.set(__self__, "branch_filters", branch_filters)
|
1569
1671
|
if auto_cancel is not None:
|
1570
1672
|
pulumi.set(__self__, "auto_cancel", auto_cancel)
|
1571
|
-
if branch_filters is not None:
|
1572
|
-
pulumi.set(__self__, "branch_filters", branch_filters)
|
1573
1673
|
if path_filters is not None:
|
1574
1674
|
pulumi.set(__self__, "path_filters", path_filters)
|
1575
1675
|
|
1576
1676
|
@property
|
1577
|
-
@pulumi.getter(name="
|
1578
|
-
def
|
1677
|
+
@pulumi.getter(name="branchFilters")
|
1678
|
+
def branch_filters(self) -> Sequence['outputs.BuildDefinitionPullRequestTriggerOverrideBranchFilter']:
|
1579
1679
|
"""
|
1580
|
-
|
1680
|
+
The branches to include and exclude from the trigger. A `branch_filter` block as documented below.
|
1581
1681
|
"""
|
1582
|
-
return pulumi.get(self, "
|
1682
|
+
return pulumi.get(self, "branch_filters")
|
1583
1683
|
|
1584
1684
|
@property
|
1585
|
-
@pulumi.getter(name="
|
1586
|
-
def
|
1685
|
+
@pulumi.getter(name="autoCancel")
|
1686
|
+
def auto_cancel(self) -> Optional[bool]:
|
1587
1687
|
"""
|
1588
|
-
|
1688
|
+
. Defaults to `true`.
|
1589
1689
|
"""
|
1590
|
-
return pulumi.get(self, "
|
1690
|
+
return pulumi.get(self, "auto_cancel")
|
1591
1691
|
|
1592
1692
|
@property
|
1593
1693
|
@pulumi.getter(name="pathFilters")
|
@@ -1782,10 +1882,10 @@ class BuildDefinitionSchedule(dict):
|
|
1782
1882
|
@staticmethod
|
1783
1883
|
def __key_warning(key: str):
|
1784
1884
|
suggest = None
|
1785
|
-
if key == "
|
1786
|
-
suggest = "days_to_builds"
|
1787
|
-
elif key == "branchFilters":
|
1885
|
+
if key == "branchFilters":
|
1788
1886
|
suggest = "branch_filters"
|
1887
|
+
elif key == "daysToBuilds":
|
1888
|
+
suggest = "days_to_builds"
|
1789
1889
|
elif key == "scheduleJobId":
|
1790
1890
|
suggest = "schedule_job_id"
|
1791
1891
|
elif key == "scheduleOnlyWithChanges":
|
@@ -1809,16 +1909,16 @@ class BuildDefinitionSchedule(dict):
|
|
1809
1909
|
return super().get(key, default)
|
1810
1910
|
|
1811
1911
|
def __init__(__self__, *,
|
1912
|
+
branch_filters: Sequence['outputs.BuildDefinitionScheduleBranchFilter'],
|
1812
1913
|
days_to_builds: Sequence[str],
|
1813
|
-
branch_filters: Optional[Sequence['outputs.BuildDefinitionScheduleBranchFilter']] = None,
|
1814
1914
|
schedule_job_id: Optional[str] = None,
|
1815
1915
|
schedule_only_with_changes: Optional[bool] = None,
|
1816
1916
|
start_hours: Optional[int] = None,
|
1817
1917
|
start_minutes: Optional[int] = None,
|
1818
1918
|
time_zone: Optional[str] = None):
|
1819
1919
|
"""
|
1820
|
-
:param Sequence[str] days_to_builds: When to build. Valid values: `Mon`, `Tue`, `Wed`, `Thu`, `Fri`, `Sat`, `Sun`.
|
1821
1920
|
:param Sequence['BuildDefinitionScheduleBranchFilterArgs'] branch_filters: block supports the following:
|
1921
|
+
:param Sequence[str] days_to_builds: When to build. Valid values: `Mon`, `Tue`, `Wed`, `Thu`, `Fri`, `Sat`, `Sun`.
|
1822
1922
|
:param str schedule_job_id: The ID of the schedule job
|
1823
1923
|
:param bool schedule_only_with_changes: Schedule builds if the source or pipeline has changed. Defaults to `true`.
|
1824
1924
|
:param int start_hours: Build start hour. Defaults to `0`. Valid values: `0 ~ 23`.
|
@@ -1966,9 +2066,8 @@ class BuildDefinitionSchedule(dict):
|
|
1966
2066
|
`(UTC+13:00) Samoa`,
|
1967
2067
|
`(UTC+14:00) Kiritimati Island`.
|
1968
2068
|
"""
|
2069
|
+
pulumi.set(__self__, "branch_filters", branch_filters)
|
1969
2070
|
pulumi.set(__self__, "days_to_builds", days_to_builds)
|
1970
|
-
if branch_filters is not None:
|
1971
|
-
pulumi.set(__self__, "branch_filters", branch_filters)
|
1972
2071
|
if schedule_job_id is not None:
|
1973
2072
|
pulumi.set(__self__, "schedule_job_id", schedule_job_id)
|
1974
2073
|
if schedule_only_with_changes is not None:
|
@@ -1981,20 +2080,20 @@ class BuildDefinitionSchedule(dict):
|
|
1981
2080
|
pulumi.set(__self__, "time_zone", time_zone)
|
1982
2081
|
|
1983
2082
|
@property
|
1984
|
-
@pulumi.getter(name="
|
1985
|
-
def
|
2083
|
+
@pulumi.getter(name="branchFilters")
|
2084
|
+
def branch_filters(self) -> Sequence['outputs.BuildDefinitionScheduleBranchFilter']:
|
1986
2085
|
"""
|
1987
|
-
|
2086
|
+
block supports the following:
|
1988
2087
|
"""
|
1989
|
-
return pulumi.get(self, "
|
2088
|
+
return pulumi.get(self, "branch_filters")
|
1990
2089
|
|
1991
2090
|
@property
|
1992
|
-
@pulumi.getter(name="
|
1993
|
-
def
|
2091
|
+
@pulumi.getter(name="daysToBuilds")
|
2092
|
+
def days_to_builds(self) -> Sequence[str]:
|
1994
2093
|
"""
|
1995
|
-
|
2094
|
+
When to build. Valid values: `Mon`, `Tue`, `Wed`, `Thu`, `Fri`, `Sat`, `Sun`.
|
1996
2095
|
"""
|
1997
|
-
return pulumi.get(self, "
|
2096
|
+
return pulumi.get(self, "days_to_builds")
|
1998
2097
|
|
1999
2098
|
@property
|
2000
2099
|
@pulumi.getter(name="scheduleJobId")
|
@@ -2371,6 +2470,54 @@ class CheckRequiredTemplateRequiredTemplate(dict):
|
|
2371
2470
|
return pulumi.get(self, "repository_type")
|
2372
2471
|
|
2373
2472
|
|
2473
|
+
@pulumi.output_type
|
2474
|
+
class FeedFeature(dict):
|
2475
|
+
@staticmethod
|
2476
|
+
def __key_warning(key: str):
|
2477
|
+
suggest = None
|
2478
|
+
if key == "permanentDelete":
|
2479
|
+
suggest = "permanent_delete"
|
2480
|
+
|
2481
|
+
if suggest:
|
2482
|
+
pulumi.log.warn(f"Key '{key}' not found in FeedFeature. Access the value via the '{suggest}' property getter instead.")
|
2483
|
+
|
2484
|
+
def __getitem__(self, key: str) -> Any:
|
2485
|
+
FeedFeature.__key_warning(key)
|
2486
|
+
return super().__getitem__(key)
|
2487
|
+
|
2488
|
+
def get(self, key: str, default = None) -> Any:
|
2489
|
+
FeedFeature.__key_warning(key)
|
2490
|
+
return super().get(key, default)
|
2491
|
+
|
2492
|
+
def __init__(__self__, *,
|
2493
|
+
permanent_delete: Optional[bool] = None,
|
2494
|
+
restore: Optional[bool] = None):
|
2495
|
+
"""
|
2496
|
+
:param bool permanent_delete: Determines if Feed should be Permanently removed, Defaults to `false`
|
2497
|
+
:param bool restore: Determines if Feed should be Restored during creation (if possible), Defaults to `false`
|
2498
|
+
"""
|
2499
|
+
if permanent_delete is not None:
|
2500
|
+
pulumi.set(__self__, "permanent_delete", permanent_delete)
|
2501
|
+
if restore is not None:
|
2502
|
+
pulumi.set(__self__, "restore", restore)
|
2503
|
+
|
2504
|
+
@property
|
2505
|
+
@pulumi.getter(name="permanentDelete")
|
2506
|
+
def permanent_delete(self) -> Optional[bool]:
|
2507
|
+
"""
|
2508
|
+
Determines if Feed should be Permanently removed, Defaults to `false`
|
2509
|
+
"""
|
2510
|
+
return pulumi.get(self, "permanent_delete")
|
2511
|
+
|
2512
|
+
@property
|
2513
|
+
@pulumi.getter
|
2514
|
+
def restore(self) -> Optional[bool]:
|
2515
|
+
"""
|
2516
|
+
Determines if Feed should be Restored during creation (if possible), Defaults to `false`
|
2517
|
+
"""
|
2518
|
+
return pulumi.get(self, "restore")
|
2519
|
+
|
2520
|
+
|
2374
2521
|
@pulumi.output_type
|
2375
2522
|
class GitInitialization(dict):
|
2376
2523
|
@staticmethod
|
@@ -2398,22 +2545,33 @@ class GitInitialization(dict):
|
|
2398
2545
|
|
2399
2546
|
def __init__(__self__, *,
|
2400
2547
|
init_type: str,
|
2548
|
+
password: Optional[str] = None,
|
2401
2549
|
service_connection_id: Optional[str] = None,
|
2402
2550
|
source_type: Optional[str] = None,
|
2403
|
-
source_url: Optional[str] = None
|
2551
|
+
source_url: Optional[str] = None,
|
2552
|
+
username: Optional[str] = None):
|
2404
2553
|
"""
|
2405
2554
|
:param str init_type: The type of repository to create. Valid values: `Uninitialized`, `Clean` or `Import`.
|
2406
|
-
:param str
|
2555
|
+
:param str password: The password used to authenticate to a private repository for import initialization. Conflicts with `service_connection_id`.
|
2556
|
+
|
2557
|
+
~>**Note**
|
2558
|
+
At least `service_connection_id` or `username/password` needs to be set to import private repository.
|
2559
|
+
:param str service_connection_id: The ID of service connection used to authenticate to a private repository for import initialization. Conflicts with `username` and `password`.
|
2407
2560
|
:param str source_type: Type of the source repository. Used if the `init_type` is `Import`. Valid values: `Git`.
|
2408
2561
|
:param str source_url: The URL of the source repository. Used if the `init_type` is `Import`.
|
2562
|
+
:param str username: The username used to authenticate to a private repository for import initialization. Conflicts with `service_connection_id`.
|
2409
2563
|
"""
|
2410
2564
|
pulumi.set(__self__, "init_type", init_type)
|
2565
|
+
if password is not None:
|
2566
|
+
pulumi.set(__self__, "password", password)
|
2411
2567
|
if service_connection_id is not None:
|
2412
2568
|
pulumi.set(__self__, "service_connection_id", service_connection_id)
|
2413
2569
|
if source_type is not None:
|
2414
2570
|
pulumi.set(__self__, "source_type", source_type)
|
2415
2571
|
if source_url is not None:
|
2416
2572
|
pulumi.set(__self__, "source_url", source_url)
|
2573
|
+
if username is not None:
|
2574
|
+
pulumi.set(__self__, "username", username)
|
2417
2575
|
|
2418
2576
|
@property
|
2419
2577
|
@pulumi.getter(name="initType")
|
@@ -2423,11 +2581,22 @@ class GitInitialization(dict):
|
|
2423
2581
|
"""
|
2424
2582
|
return pulumi.get(self, "init_type")
|
2425
2583
|
|
2584
|
+
@property
|
2585
|
+
@pulumi.getter
|
2586
|
+
def password(self) -> Optional[str]:
|
2587
|
+
"""
|
2588
|
+
The password used to authenticate to a private repository for import initialization. Conflicts with `service_connection_id`.
|
2589
|
+
|
2590
|
+
~>**Note**
|
2591
|
+
At least `service_connection_id` or `username/password` needs to be set to import private repository.
|
2592
|
+
"""
|
2593
|
+
return pulumi.get(self, "password")
|
2594
|
+
|
2426
2595
|
@property
|
2427
2596
|
@pulumi.getter(name="serviceConnectionId")
|
2428
2597
|
def service_connection_id(self) -> Optional[str]:
|
2429
2598
|
"""
|
2430
|
-
The
|
2599
|
+
The ID of service connection used to authenticate to a private repository for import initialization. Conflicts with `username` and `password`.
|
2431
2600
|
"""
|
2432
2601
|
return pulumi.get(self, "service_connection_id")
|
2433
2602
|
|
@@ -2447,6 +2616,14 @@ class GitInitialization(dict):
|
|
2447
2616
|
"""
|
2448
2617
|
return pulumi.get(self, "source_url")
|
2449
2618
|
|
2619
|
+
@property
|
2620
|
+
@pulumi.getter
|
2621
|
+
def username(self) -> Optional[str]:
|
2622
|
+
"""
|
2623
|
+
The username used to authenticate to a private repository for import initialization. Conflicts with `service_connection_id`.
|
2624
|
+
"""
|
2625
|
+
return pulumi.get(self, "username")
|
2626
|
+
|
2450
2627
|
|
2451
2628
|
@pulumi.output_type
|
2452
2629
|
class ServiceEndpointArtifactoryAuthenticationBasic(dict):
|
@@ -2454,8 +2631,8 @@ class ServiceEndpointArtifactoryAuthenticationBasic(dict):
|
|
2454
2631
|
password: str,
|
2455
2632
|
username: str):
|
2456
2633
|
"""
|
2457
|
-
:param str password: Artifactory
|
2458
|
-
:param str username: Artifactory
|
2634
|
+
:param str password: The Artifactory password.
|
2635
|
+
:param str username: The Artifactory user name.
|
2459
2636
|
"""
|
2460
2637
|
pulumi.set(__self__, "password", password)
|
2461
2638
|
pulumi.set(__self__, "username", username)
|
@@ -2464,7 +2641,7 @@ class ServiceEndpointArtifactoryAuthenticationBasic(dict):
|
|
2464
2641
|
@pulumi.getter
|
2465
2642
|
def password(self) -> str:
|
2466
2643
|
"""
|
2467
|
-
Artifactory
|
2644
|
+
The Artifactory password.
|
2468
2645
|
"""
|
2469
2646
|
return pulumi.get(self, "password")
|
2470
2647
|
|
@@ -2472,7 +2649,7 @@ class ServiceEndpointArtifactoryAuthenticationBasic(dict):
|
|
2472
2649
|
@pulumi.getter
|
2473
2650
|
def username(self) -> str:
|
2474
2651
|
"""
|
2475
|
-
Artifactory
|
2652
|
+
The Artifactory user name.
|
2476
2653
|
"""
|
2477
2654
|
return pulumi.get(self, "username")
|
2478
2655
|
|
@@ -2482,7 +2659,7 @@ class ServiceEndpointArtifactoryAuthenticationToken(dict):
|
|
2482
2659
|
def __init__(__self__, *,
|
2483
2660
|
token: str):
|
2484
2661
|
"""
|
2485
|
-
:param str token:
|
2662
|
+
:param str token: The Artifactory access token.
|
2486
2663
|
"""
|
2487
2664
|
pulumi.set(__self__, "token", token)
|
2488
2665
|
|
@@ -2490,21 +2667,43 @@ class ServiceEndpointArtifactoryAuthenticationToken(dict):
|
|
2490
2667
|
@pulumi.getter
|
2491
2668
|
def token(self) -> str:
|
2492
2669
|
"""
|
2493
|
-
|
2670
|
+
The Artifactory access token.
|
2494
2671
|
"""
|
2495
2672
|
return pulumi.get(self, "token")
|
2496
2673
|
|
2497
2674
|
|
2675
|
+
@pulumi.output_type
|
2676
|
+
class ServiceEndpointAzureEcrCredentials(dict):
|
2677
|
+
def __init__(__self__, *,
|
2678
|
+
serviceprincipalid: str):
|
2679
|
+
"""
|
2680
|
+
:param str serviceprincipalid: The service principal application Id
|
2681
|
+
"""
|
2682
|
+
pulumi.set(__self__, "serviceprincipalid", serviceprincipalid)
|
2683
|
+
|
2684
|
+
@property
|
2685
|
+
@pulumi.getter
|
2686
|
+
def serviceprincipalid(self) -> str:
|
2687
|
+
"""
|
2688
|
+
The service principal application Id
|
2689
|
+
"""
|
2690
|
+
return pulumi.get(self, "serviceprincipalid")
|
2691
|
+
|
2692
|
+
|
2498
2693
|
@pulumi.output_type
|
2499
2694
|
class ServiceEndpointAzureRMCredentials(dict):
|
2500
2695
|
def __init__(__self__, *,
|
2501
2696
|
serviceprincipalid: str,
|
2697
|
+
serviceprincipalcertificate: Optional[str] = None,
|
2502
2698
|
serviceprincipalkey: Optional[str] = None):
|
2503
2699
|
"""
|
2504
|
-
:param str serviceprincipalid: The service principal application
|
2700
|
+
:param str serviceprincipalid: The service principal application ID
|
2701
|
+
:param str serviceprincipalcertificate: The service principal certificate. This not required if `service_endpoint_authentication_scheme` is set to `WorkloadIdentityFederation`.
|
2505
2702
|
:param str serviceprincipalkey: The service principal secret. This not required if `service_endpoint_authentication_scheme` is set to `WorkloadIdentityFederation`.
|
2506
2703
|
"""
|
2507
2704
|
pulumi.set(__self__, "serviceprincipalid", serviceprincipalid)
|
2705
|
+
if serviceprincipalcertificate is not None:
|
2706
|
+
pulumi.set(__self__, "serviceprincipalcertificate", serviceprincipalcertificate)
|
2508
2707
|
if serviceprincipalkey is not None:
|
2509
2708
|
pulumi.set(__self__, "serviceprincipalkey", serviceprincipalkey)
|
2510
2709
|
|
@@ -2512,10 +2711,18 @@ class ServiceEndpointAzureRMCredentials(dict):
|
|
2512
2711
|
@pulumi.getter
|
2513
2712
|
def serviceprincipalid(self) -> str:
|
2514
2713
|
"""
|
2515
|
-
The service principal application
|
2714
|
+
The service principal application ID
|
2516
2715
|
"""
|
2517
2716
|
return pulumi.get(self, "serviceprincipalid")
|
2518
2717
|
|
2718
|
+
@property
|
2719
|
+
@pulumi.getter
|
2720
|
+
def serviceprincipalcertificate(self) -> Optional[str]:
|
2721
|
+
"""
|
2722
|
+
The service principal certificate. This not required if `service_endpoint_authentication_scheme` is set to `WorkloadIdentityFederation`.
|
2723
|
+
"""
|
2724
|
+
return pulumi.get(self, "serviceprincipalcertificate")
|
2725
|
+
|
2519
2726
|
@property
|
2520
2727
|
@pulumi.getter
|
2521
2728
|
def serviceprincipalkey(self) -> Optional[str]:
|
@@ -2840,6 +3047,8 @@ class ServiceEndpointKubernetesServiceAccount(dict):
|
|
2840
3047
|
suggest = None
|
2841
3048
|
if key == "caCert":
|
2842
3049
|
suggest = "ca_cert"
|
3050
|
+
elif key == "acceptUntrustedCerts":
|
3051
|
+
suggest = "accept_untrusted_certs"
|
2843
3052
|
|
2844
3053
|
if suggest:
|
2845
3054
|
pulumi.log.warn(f"Key '{key}' not found in ServiceEndpointKubernetesServiceAccount. Access the value via the '{suggest}' property getter instead.")
|
@@ -2854,13 +3063,17 @@ class ServiceEndpointKubernetesServiceAccount(dict):
|
|
2854
3063
|
|
2855
3064
|
def __init__(__self__, *,
|
2856
3065
|
ca_cert: str,
|
2857
|
-
token: str
|
3066
|
+
token: str,
|
3067
|
+
accept_untrusted_certs: Optional[bool] = None):
|
2858
3068
|
"""
|
2859
3069
|
:param str ca_cert: The certificate from a Kubernetes secret object.
|
2860
3070
|
:param str token: The token from a Kubernetes secret object.
|
3071
|
+
:param bool accept_untrusted_certs: Set this option to allow clients to accept a self-signed certificate. Defaults to `false`.
|
2861
3072
|
"""
|
2862
3073
|
pulumi.set(__self__, "ca_cert", ca_cert)
|
2863
3074
|
pulumi.set(__self__, "token", token)
|
3075
|
+
if accept_untrusted_certs is not None:
|
3076
|
+
pulumi.set(__self__, "accept_untrusted_certs", accept_untrusted_certs)
|
2864
3077
|
|
2865
3078
|
@property
|
2866
3079
|
@pulumi.getter(name="caCert")
|
@@ -2878,6 +3091,14 @@ class ServiceEndpointKubernetesServiceAccount(dict):
|
|
2878
3091
|
"""
|
2879
3092
|
return pulumi.get(self, "token")
|
2880
3093
|
|
3094
|
+
@property
|
3095
|
+
@pulumi.getter(name="acceptUntrustedCerts")
|
3096
|
+
def accept_untrusted_certs(self) -> Optional[bool]:
|
3097
|
+
"""
|
3098
|
+
Set this option to allow clients to accept a self-signed certificate. Defaults to `false`.
|
3099
|
+
"""
|
3100
|
+
return pulumi.get(self, "accept_untrusted_certs")
|
3101
|
+
|
2881
3102
|
|
2882
3103
|
@pulumi.output_type
|
2883
3104
|
class ServiceEndpointPipelineAuthPersonal(dict):
|
@@ -3454,6 +3675,53 @@ class ServiceendpointMavenAuthenticationToken(dict):
|
|
3454
3675
|
return pulumi.get(self, "token")
|
3455
3676
|
|
3456
3677
|
|
3678
|
+
@pulumi.output_type
|
3679
|
+
class ServiceendpointVisualstudiomarketplaceAuthenticationBasic(dict):
|
3680
|
+
def __init__(__self__, *,
|
3681
|
+
password: str,
|
3682
|
+
username: str):
|
3683
|
+
"""
|
3684
|
+
:param str password: The password of the marketplace.
|
3685
|
+
:param str username: The username of the marketplace.
|
3686
|
+
"""
|
3687
|
+
pulumi.set(__self__, "password", password)
|
3688
|
+
pulumi.set(__self__, "username", username)
|
3689
|
+
|
3690
|
+
@property
|
3691
|
+
@pulumi.getter
|
3692
|
+
def password(self) -> str:
|
3693
|
+
"""
|
3694
|
+
The password of the marketplace.
|
3695
|
+
"""
|
3696
|
+
return pulumi.get(self, "password")
|
3697
|
+
|
3698
|
+
@property
|
3699
|
+
@pulumi.getter
|
3700
|
+
def username(self) -> str:
|
3701
|
+
"""
|
3702
|
+
The username of the marketplace.
|
3703
|
+
"""
|
3704
|
+
return pulumi.get(self, "username")
|
3705
|
+
|
3706
|
+
|
3707
|
+
@pulumi.output_type
|
3708
|
+
class ServiceendpointVisualstudiomarketplaceAuthenticationToken(dict):
|
3709
|
+
def __init__(__self__, *,
|
3710
|
+
token: str):
|
3711
|
+
"""
|
3712
|
+
:param str token: The Personal Access Token.
|
3713
|
+
"""
|
3714
|
+
pulumi.set(__self__, "token", token)
|
3715
|
+
|
3716
|
+
@property
|
3717
|
+
@pulumi.getter
|
3718
|
+
def token(self) -> str:
|
3719
|
+
"""
|
3720
|
+
The Personal Access Token.
|
3721
|
+
"""
|
3722
|
+
return pulumi.get(self, "token")
|
3723
|
+
|
3724
|
+
|
3457
3725
|
@pulumi.output_type
|
3458
3726
|
class ServicehookStorageQueuePipelinesRunStateChangedEvent(dict):
|
3459
3727
|
@staticmethod
|
@@ -4546,6 +4814,31 @@ class GetGroupsGroupResult(dict):
|
|
4546
4814
|
return pulumi.get(self, "origin_id")
|
4547
4815
|
|
4548
4816
|
|
4817
|
+
@pulumi.output_type
|
4818
|
+
class GetIdentityGroupsGroupResult(dict):
|
4819
|
+
def __init__(__self__, *,
|
4820
|
+
id: str,
|
4821
|
+
name: str):
|
4822
|
+
"""
|
4823
|
+
:param str name: This is the non-unique display name of the identity subject. To change this field, you must alter its value in the source provider.
|
4824
|
+
"""
|
4825
|
+
pulumi.set(__self__, "id", id)
|
4826
|
+
pulumi.set(__self__, "name", name)
|
4827
|
+
|
4828
|
+
@property
|
4829
|
+
@pulumi.getter
|
4830
|
+
def id(self) -> str:
|
4831
|
+
return pulumi.get(self, "id")
|
4832
|
+
|
4833
|
+
@property
|
4834
|
+
@pulumi.getter
|
4835
|
+
def name(self) -> str:
|
4836
|
+
"""
|
4837
|
+
This is the non-unique display name of the identity subject. To change this field, you must alter its value in the source provider.
|
4838
|
+
"""
|
4839
|
+
return pulumi.get(self, "name")
|
4840
|
+
|
4841
|
+
|
4549
4842
|
@pulumi.output_type
|
4550
4843
|
class GetIterationChildrenResult(dict):
|
4551
4844
|
def __init__(__self__, *,
|
@@ -4725,6 +5018,7 @@ class GetProjectsProjectResult(dict):
|
|
4725
5018
|
class GetRepositoriesRepositoryResult(dict):
|
4726
5019
|
def __init__(__self__, *,
|
4727
5020
|
default_branch: str,
|
5021
|
+
disabled: bool,
|
4728
5022
|
id: str,
|
4729
5023
|
name: str,
|
4730
5024
|
project_id: str,
|
@@ -4735,6 +5029,7 @@ class GetRepositoriesRepositoryResult(dict):
|
|
4735
5029
|
web_url: str):
|
4736
5030
|
"""
|
4737
5031
|
:param str default_branch: The ref of the default branch.
|
5032
|
+
:param bool disabled: Is the repository disabled?
|
4738
5033
|
:param str id: Git repository identifier.
|
4739
5034
|
:param str name: Name of the Git repository to retrieve; requires `project_id` to be specified as well
|
4740
5035
|
:param str project_id: ID of project to list Git repositories
|
@@ -4745,6 +5040,7 @@ class GetRepositoriesRepositoryResult(dict):
|
|
4745
5040
|
:param str web_url: Url of the Git repository web view
|
4746
5041
|
"""
|
4747
5042
|
pulumi.set(__self__, "default_branch", default_branch)
|
5043
|
+
pulumi.set(__self__, "disabled", disabled)
|
4748
5044
|
pulumi.set(__self__, "id", id)
|
4749
5045
|
pulumi.set(__self__, "name", name)
|
4750
5046
|
pulumi.set(__self__, "project_id", project_id)
|
@@ -4762,6 +5058,14 @@ class GetRepositoriesRepositoryResult(dict):
|
|
4762
5058
|
"""
|
4763
5059
|
return pulumi.get(self, "default_branch")
|
4764
5060
|
|
5061
|
+
@property
|
5062
|
+
@pulumi.getter
|
5063
|
+
def disabled(self) -> bool:
|
5064
|
+
"""
|
5065
|
+
Is the repository disabled?
|
5066
|
+
"""
|
5067
|
+
return pulumi.get(self, "disabled")
|
5068
|
+
|
4765
5069
|
@property
|
4766
5070
|
@pulumi.getter
|
4767
5071
|
def id(self) -> str:
|
@@ -4827,6 +5131,95 @@ class GetRepositoriesRepositoryResult(dict):
|
|
4827
5131
|
return pulumi.get(self, "web_url")
|
4828
5132
|
|
4829
5133
|
|
5134
|
+
@pulumi.output_type
|
5135
|
+
class GetSecurityroleDefinitionsDefinitionResult(dict):
|
5136
|
+
def __init__(__self__, *,
|
5137
|
+
allow_permissions: int,
|
5138
|
+
description: str,
|
5139
|
+
display_name: str,
|
5140
|
+
identifier: str,
|
5141
|
+
name: str,
|
5142
|
+
scope: str,
|
5143
|
+
deny_permissions: Optional[int] = None):
|
5144
|
+
"""
|
5145
|
+
:param int allow_permissions: The mask of allowed permissions of the Security Role Definition.
|
5146
|
+
:param str description: The description of the Security Role Definition.
|
5147
|
+
:param str display_name: The display name of the Security Role Definition.
|
5148
|
+
:param str identifier: The identifier of the Security Role Definition.
|
5149
|
+
:param str name: The name of the Security Role Definition.
|
5150
|
+
:param str scope: Name of the Scope for which Security Role Definitions will be returned.
|
5151
|
+
|
5152
|
+
DataSource without specifying any arguments will return all projects.
|
5153
|
+
:param int deny_permissions: The mask of the denied permissions of the Security Role Definition.
|
5154
|
+
"""
|
5155
|
+
pulumi.set(__self__, "allow_permissions", allow_permissions)
|
5156
|
+
pulumi.set(__self__, "description", description)
|
5157
|
+
pulumi.set(__self__, "display_name", display_name)
|
5158
|
+
pulumi.set(__self__, "identifier", identifier)
|
5159
|
+
pulumi.set(__self__, "name", name)
|
5160
|
+
pulumi.set(__self__, "scope", scope)
|
5161
|
+
if deny_permissions is not None:
|
5162
|
+
pulumi.set(__self__, "deny_permissions", deny_permissions)
|
5163
|
+
|
5164
|
+
@property
|
5165
|
+
@pulumi.getter(name="allowPermissions")
|
5166
|
+
def allow_permissions(self) -> int:
|
5167
|
+
"""
|
5168
|
+
The mask of allowed permissions of the Security Role Definition.
|
5169
|
+
"""
|
5170
|
+
return pulumi.get(self, "allow_permissions")
|
5171
|
+
|
5172
|
+
@property
|
5173
|
+
@pulumi.getter
|
5174
|
+
def description(self) -> str:
|
5175
|
+
"""
|
5176
|
+
The description of the Security Role Definition.
|
5177
|
+
"""
|
5178
|
+
return pulumi.get(self, "description")
|
5179
|
+
|
5180
|
+
@property
|
5181
|
+
@pulumi.getter(name="displayName")
|
5182
|
+
def display_name(self) -> str:
|
5183
|
+
"""
|
5184
|
+
The display name of the Security Role Definition.
|
5185
|
+
"""
|
5186
|
+
return pulumi.get(self, "display_name")
|
5187
|
+
|
5188
|
+
@property
|
5189
|
+
@pulumi.getter
|
5190
|
+
def identifier(self) -> str:
|
5191
|
+
"""
|
5192
|
+
The identifier of the Security Role Definition.
|
5193
|
+
"""
|
5194
|
+
return pulumi.get(self, "identifier")
|
5195
|
+
|
5196
|
+
@property
|
5197
|
+
@pulumi.getter
|
5198
|
+
def name(self) -> str:
|
5199
|
+
"""
|
5200
|
+
The name of the Security Role Definition.
|
5201
|
+
"""
|
5202
|
+
return pulumi.get(self, "name")
|
5203
|
+
|
5204
|
+
@property
|
5205
|
+
@pulumi.getter
|
5206
|
+
def scope(self) -> str:
|
5207
|
+
"""
|
5208
|
+
Name of the Scope for which Security Role Definitions will be returned.
|
5209
|
+
|
5210
|
+
DataSource without specifying any arguments will return all projects.
|
5211
|
+
"""
|
5212
|
+
return pulumi.get(self, "scope")
|
5213
|
+
|
5214
|
+
@property
|
5215
|
+
@pulumi.getter(name="denyPermissions")
|
5216
|
+
def deny_permissions(self) -> Optional[int]:
|
5217
|
+
"""
|
5218
|
+
The mask of the denied permissions of the Security Role Definition.
|
5219
|
+
"""
|
5220
|
+
return pulumi.get(self, "deny_permissions")
|
5221
|
+
|
5222
|
+
|
4830
5223
|
@pulumi.output_type
|
4831
5224
|
class GetTeamsTeamResult(dict):
|
4832
5225
|
def __init__(__self__, *,
|